-
Notifications
You must be signed in to change notification settings - Fork 842
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into rk/launchlaunch
- Loading branch information
Showing
538 changed files
with
8,275 additions
and
3,569 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
## 🏠/.buildkite/pipelines/pipeline_prune_staging_docs.yml | ||
|
||
steps: | ||
- agents: | ||
provider: "gcp" | ||
command: .buildkite/scripts/pipelines/pipeline_prune_staging_docs.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
41 changes: 41 additions & 0 deletions
41
.buildkite/scripts/pipelines/pipeline_prune_staging_docs.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
#!/bin/bash | ||
|
||
set -euo pipefail | ||
set +x | ||
|
||
# Expected env variables: | ||
# * GPROJECT - GCE project name, e.g. elastic-bekitzur | ||
# * GCE_ACCOUNT - credentials for the google service account (JSON blob) | ||
if [[ -z "${GCE_ACCOUNT}" ]]; then | ||
echo ":fire: GCP credentials not set." 1>&2 | ||
exit 1 | ||
fi | ||
if [[ -z "${GPROJECT}" ]]; then | ||
echo "GPROJECT is not set, e.g. 'GPROJECT=elastic-bekitzur'" | ||
exit 1 | ||
fi | ||
|
||
# Login to the cloud with the service account | ||
gcloud auth activate-service-account --key-file <(echo "${GCE_ACCOUNT}") | ||
unset GCE_ACCOUNT | ||
|
||
EUI_DOCS_PROJECT=eui-docs-live | ||
BUCKET=${GPROJECT}-${EUI_DOCS_PROJECT} | ||
|
||
# https://cloud.google.com/storage/docs/gsutil/commands/ls | ||
ls_options=( | ||
-d # only list directories | ||
-l # include additional details about the subdir, notably the date as a second field | ||
) | ||
echo "Getting all but the most recent 50 PR staging links..." | ||
list=$(gsutil ls "${ls_options[@]}" "gs://${BUCKET}/pr_*" \ | ||
| sort -k 2 `# sort by the 2nd field returned by -l which is a timestamp` \ | ||
| head -n -50 `# remove the last 50 items, so basically keep the latest 50 staging docs` \ | ||
) | ||
while IFS= read -r line || [[ -n $line ]]; do | ||
url="$(echo -e "${line}" | tr -d '[:space:]')" # trim the leading whitespaces | ||
url=${url%/} # trim the trailing slash | ||
echo "Deleting $url" | ||
# https://cloud.google.com/storage/docs/gsutil/commands/rm | ||
gsutil -m rm -r "$url" | ||
done < <(printf '%s' "$list") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
current | ||
difference |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+2.66 KB
.loki/reference/chrome_desktop_Display_EuiBadge_EuiBadgeGroup_Playground.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+1.44 KB
.loki/reference/chrome_desktop_Display_EuiBadge_EuiBadge_Playground.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+3.65 KB
.loki/reference/chrome_desktop_Display_EuiCheckableCard_Playground.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+6.95 KB
.loki/reference/chrome_desktop_Display_EuiComment_EuiCommentEvent_Custom.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+15.1 KB
.loki/reference/chrome_desktop_Display_EuiComment_EuiCommentEvent_Regular.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+5.57 KB
.loki/reference/chrome_desktop_Display_EuiComment_EuiCommentEvent_Update.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+48.9 KB
.loki/reference/chrome_desktop_Display_EuiComment_EuiCommentList_Playground.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+10.3 KB
.loki/reference/chrome_desktop_Display_EuiComment_EuiComment_Playground.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+53.8 KB
.loki/reference/chrome_desktop_Display_EuiEmptyPrompt_Page_Template.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+2.3 KB
...i/reference/chrome_desktop_Display_EuiListGroup_EuiListGroupItem_Playground.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+6.28 KB
.loki/reference/chrome_desktop_Display_EuiListGroup_EuiListGroup_Playground.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+189 Bytes
.loki/reference/chrome_desktop_Display_EuiLoadingChart_Playground.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+635 Bytes
.loki/reference/chrome_desktop_Display_EuiLoadingElastic_Playground.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+477 Bytes
.loki/reference/chrome_desktop_Display_EuiLoadingLogo_Playground.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+519 Bytes
.loki/reference/chrome_desktop_Display_EuiLoadingSpinner_Custom_Color.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+513 Bytes
.loki/reference/chrome_desktop_Display_EuiLoadingSpinner_Playground.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+446 Bytes
.loki/reference/chrome_desktop_Display_EuiNotificationBadge_Playground.png
Oops, something went wrong.
Binary file added
BIN
+14.8 KB
.loki/reference/chrome_desktop_Display_EuiPinnableListGroup_Playground.png
Oops, something went wrong.
Binary file added
BIN
+3.72 KB
.loki/reference/chrome_desktop_Editors_Syntax_EuiCodeBlock_Playground.png
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+29.9 KB
...ce/chrome_desktop_Editors_Syntax_EuiMarkdownEditor_EuiMarkdownEditor_Errors.png
Oops, something went wrong.
Binary file added
BIN
+29.3 KB
...hrome_desktop_Editors_Syntax_EuiMarkdownEditor_EuiMarkdownEditor_Playground.png
Oops, something went wrong.
Binary file added
BIN
+42 KB
...chrome_desktop_Editors_Syntax_EuiMarkdownEditor_EuiMarkdownEditor_View_Mode.png
Oops, something went wrong.
Binary file added
BIN
+38.5 KB
...hrome_desktop_Editors_Syntax_EuiMarkdownEditor_EuiMarkdownFormat_Playground.png
Oops, something went wrong.
Binary file added
BIN
+566 Bytes
...hrome_desktop_Forms_EuiColorPalettePicker_EuiColorPaletteDisplay_Playground.png
Oops, something went wrong.
Binary file added
BIN
+1.23 KB
...chrome_desktop_Forms_EuiColorPalettePicker_EuiColorPalettePicker_Playground.png
Oops, something went wrong.
Binary file added
BIN
+209 Bytes
...ference/chrome_desktop_Forms_EuiColorPicker_EuiColorPickerSwatch_Playground.png
Oops, something went wrong.
Binary file added
BIN
+2.8 KB
.loki/reference/chrome_desktop_Forms_EuiColorPicker_EuiColorPicker_Playground.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+873 Bytes
.loki/reference/chrome_desktop_Forms_EuiFieldNumber_Controlled_Component.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+7.11 KB
.loki/reference/chrome_desktop_Forms_EuiFilterButton_Full_Width_And_Grow.png
Oops, something went wrong.
Binary file added
BIN
+4.19 KB
.loki/reference/chrome_desktop_Forms_EuiFilterButton_Multiple_Buttons.png
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+3.38 KB
.loki/reference/chrome_desktop_Forms_EuiFilterGroup_Multiple_Popovers.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+2.57 KB
.loki/reference/chrome_desktop_Forms_EuiInlineEditText_Playground.png
Oops, something went wrong.
Binary file added
BIN
+4.37 KB
.loki/reference/chrome_desktop_Forms_EuiInlineEditTitle_Edit_Mode.png
Oops, something went wrong.
Binary file added
BIN
+3.57 KB
.loki/reference/chrome_desktop_Forms_EuiInlineEditTitle_Playground.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+11.5 KB
.loki/reference/chrome_desktop_Layout_EuiFlyout_EuiFlyoutBody_Playground.png
Oops, something went wrong.
Binary file added
BIN
+10.7 KB
.loki/reference/chrome_desktop_Layout_EuiFlyout_EuiFlyoutFooter_Playground.png
Oops, something went wrong.
Binary file added
BIN
+12.1 KB
.loki/reference/chrome_desktop_Layout_EuiFlyout_EuiFlyoutHeader_Playground.png
Oops, something went wrong.
Binary file added
BIN
+23.1 KB
.loki/reference/chrome_desktop_Layout_EuiFlyout_EuiFlyoutResizable_Playground.png
Oops, something went wrong.
Binary file added
BIN
+17.2 KB
.loki/reference/chrome_desktop_Layout_EuiFlyout_EuiFlyout_Playground.png
Oops, something went wrong.
Binary file added
BIN
+127 KB
.loki/reference/chrome_desktop_Layout_EuiFlyout_EuiFlyout_Push_Flyouts.png
Oops, something went wrong.
Binary file added
BIN
+1.19 KB
.loki/reference/chrome_desktop_Layout_EuiHeader_EuiHeaderAlert_Flyout_Example.png
Oops, something went wrong.
Binary file added
BIN
+12.6 KB
.loki/reference/chrome_desktop_Layout_EuiHeader_EuiHeaderAlert_Playground.png
Oops, something went wrong.
Binary file added
BIN
+1.5 KB
.loki/reference/chrome_desktop_Layout_EuiHeader_EuiHeaderAlert_Popover_Example.png
Oops, something went wrong.
Binary file added
BIN
+4.29 KB
...i/reference/chrome_desktop_Layout_EuiHeader_EuiHeaderBreadcrumbs_Playground.png
Oops, something went wrong.
Binary file added
BIN
+1.38 KB
.loki/reference/chrome_desktop_Layout_EuiHeader_EuiHeaderLink_Playground.png
Oops, something went wrong.
Binary file added
BIN
+3.3 KB
.loki/reference/chrome_desktop_Layout_EuiHeader_EuiHeaderLinks_Playground.png
Oops, something went wrong.
Binary file added
BIN
+2.5 KB
.loki/reference/chrome_desktop_Layout_EuiHeader_EuiHeaderLogo_Playground.png
Oops, something went wrong.
Binary file added
BIN
+2.5 KB
.loki/reference/chrome_desktop_Layout_EuiHeader_EuiHeaderLogo_With_Text.png
Oops, something went wrong.
Binary file added
BIN
+2.88 KB
...ktop_Layout_EuiHeader_EuiHeaderSection_EuiHeaderSectionItemButton_Animation.png
Oops, something went wrong.
Binary file added
BIN
+2 KB
...p_Layout_EuiHeader_EuiHeaderSection_EuiHeaderSectionItemButton_Notification.png
Oops, something went wrong.
Binary file added
BIN
+1.81 KB
...top_Layout_EuiHeader_EuiHeaderSection_EuiHeaderSectionItemButton_Playground.png
Oops, something went wrong.
Binary file added
BIN
+1.93 KB
...e_desktop_Layout_EuiHeader_EuiHeaderSection_EuiHeaderSectionItem_Playground.png
Oops, something went wrong.
Binary file added
BIN
+1.67 KB
...hrome_desktop_Layout_EuiHeader_EuiHeaderSection_EuiHeaderSection_Playground.png
Oops, something went wrong.
Binary file added
BIN
+29.3 KB
.../reference/chrome_desktop_Layout_EuiHeader_EuiHeader_Multiple_Fixed_Headers.png
Oops, something went wrong.
Binary file added
BIN
+498 Bytes
.loki/reference/chrome_desktop_Layout_EuiHeader_EuiHeader_Playground.png
Oops, something went wrong.
Binary file added
BIN
+9.48 KB
.loki/reference/chrome_desktop_Layout_EuiHeader_EuiHeader_Sections.png
Oops, something went wrong.
Binary file added
BIN
+120 Bytes
.loki/reference/chrome_desktop_Layout_EuiHorizontalRule_Playground.png
Oops, something went wrong.
Binary file added
BIN
+11.1 KB
.loki/reference/chrome_desktop_Layout_EuiModal_EuiModalBody_Playground.png
Oops, something went wrong.
Binary file added
BIN
+11.4 KB
.loki/reference/chrome_desktop_Layout_EuiModal_EuiModalFooter_Playground.png
Oops, something went wrong.
Binary file added
BIN
+14.5 KB
.loki/reference/chrome_desktop_Layout_EuiModal_EuiModalHeaderTitle_Playground.png
Oops, something went wrong.
Binary file added
BIN
+11.6 KB
.loki/reference/chrome_desktop_Layout_EuiModal_EuiModalHeader_Playground.png
Oops, something went wrong.
Binary file added
BIN
+19.2 KB
.loki/reference/chrome_desktop_Layout_EuiModal_EuiModal_Initial_Focus.png
Oops, something went wrong.
Binary file added
BIN
+16.5 KB
.loki/reference/chrome_desktop_Layout_EuiModal_EuiModal_Playground.png
Oops, something went wrong.
Binary file added
BIN
+18.5 KB
.loki/reference/chrome_desktop_Layout_EuiModal_EuiModal_Toggle_Example.png
Oops, something went wrong.
Binary file added
BIN
+3.26 KB
.loki/reference/chrome_desktop_Layout_EuiPage_EuiPageBody_Playground.png
Oops, something went wrong.
Binary file added
BIN
+17.7 KB
...chrome_desktop_Layout_EuiPage_EuiPageHeader_EuiPageHeaderContent_Playground.png
Oops, something went wrong.
Binary file added
BIN
+5.56 KB
...chrome_desktop_Layout_EuiPage_EuiPageHeader_EuiPageHeaderSection_Playground.png
Oops, something went wrong.
Binary file added
BIN
+17.7 KB
...erence/chrome_desktop_Layout_EuiPage_EuiPageHeader_EuiPageHeader_Playground.png
Oops, something went wrong.
Binary file added
BIN
+7.3 KB
.loki/reference/chrome_desktop_Layout_EuiPage_EuiPageSection_Playground.png
Oops, something went wrong.
Binary file added
BIN
+11.6 KB
.loki/reference/chrome_desktop_Layout_EuiPage_EuiPageSidebar_Playground.png
Oops, something went wrong.
Binary file added
BIN
+12.7 KB
.loki/reference/chrome_desktop_Layout_EuiPage_EuiPageSidebar_Sticky_Offset.png
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+4.45 KB
.loki/reference/chrome_desktop_Layout_EuiPage_EuiPage_Restrict_Width.png
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+746 Bytes
...e/chrome_desktop_Layout_EuiResizableContainer_EuiResizableButton_Playground.png
Oops, something went wrong.
Binary file added
BIN
+1.54 KB
..._desktop_Layout_EuiResizableContainer_EuiResizableCollapseButton_Playground.png
Oops, something went wrong.
Binary file added
BIN
+13.3 KB
...op_Layout_EuiResizableContainer_EuiResizableCollapseButton_Production_Usage.png
Oops, something went wrong.
Binary file added
BIN
+17.5 KB
.loki/reference/chrome_desktop_Layout_EuiSplitPanel_Split_Panel_Inner.png
Oops, something went wrong.
Binary file added
BIN
+5.2 KB
.loki/reference/chrome_desktop_Layout_EuiSplitPanel_Split_Panel_Outer.png
Oops, something went wrong.
Binary file added
BIN
+4.5 KB
.loki/reference/chrome_desktop_Navigation_EuiBreadcrumbs_Playground.png
Oops, something went wrong.
Binary file added
BIN
+1.79 KB
.loki/reference/chrome_desktop_Navigation_EuiButtonEmpty_Playground.png
Oops, something went wrong.
Binary file added
BIN
+3.82 KB
.loki/reference/chrome_desktop_Navigation_EuiButtonGroup_Multi_Selection.png
Oops, something went wrong.
Binary file added
BIN
+3.82 KB
.loki/reference/chrome_desktop_Navigation_EuiButtonGroup_Single_Selection.png
Oops, something went wrong.
Binary file added
BIN
+2.3 KB
.loki/reference/chrome_desktop_Navigation_EuiButtonGroup_With_Tooltips.png
Oops, something went wrong.
Binary file added
BIN
+818 Bytes
.loki/reference/chrome_desktop_Navigation_EuiButtonIcon_Playground.png
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+424 Bytes
...e/chrome_desktop_Navigation_EuiCollapsibleNav_EuiCollapsedNavItem_Accordion.png
Oops, something went wrong.
Binary file added
BIN
+424 Bytes
...erence/chrome_desktop_Navigation_EuiCollapsibleNav_EuiCollapsedNavItem_Link.png
Oops, something went wrong.
Binary file added
BIN
+15.3 KB
...on_EuiCollapsibleNav_EuiCollapsibleNavBeta_Collapsed_State_In_Local_Storage.png
Oops, something went wrong.
Binary file added
BIN
+15.8 KB
...e_desktop_Navigation_EuiCollapsibleNav_EuiCollapsibleNavBeta_Flyout_Overlay.png
Oops, something went wrong.
Binary file added
BIN
+25.4 KB
...ktop_Navigation_EuiCollapsibleNav_EuiCollapsibleNavBeta_Global_CSS_Variable.png
Oops, something went wrong.
Binary file added
BIN
+13.8 KB
..._Navigation_EuiCollapsibleNav_EuiCollapsibleNavBeta_Group_Edge_Case_Testing.png
Oops, something went wrong.
Binary file added
BIN
+15.4 KB
...desktop_Navigation_EuiCollapsibleNav_EuiCollapsibleNavBeta_Group_Playground.png
Oops, something went wrong.
Binary file added
BIN
+34.9 KB
...e_desktop_Navigation_EuiCollapsibleNav_EuiCollapsibleNavBeta_Kibana_Example.png
Oops, something went wrong.
Binary file added
BIN
+35.9 KB
...desktop_Navigation_EuiCollapsibleNav_EuiCollapsibleNavBeta_Security_Example.png
Oops, something went wrong.
Binary file added
BIN
+8.35 KB
...hrome_desktop_Navigation_EuiCollapsibleNav_EuiCollapsibleNavGroup_Accordion.png
Oops, something went wrong.
Binary file added
BIN
+3.06 KB
...chrome_desktop_Navigation_EuiCollapsibleNav_EuiCollapsibleNavGroup_No_Title.png
Oops, something went wrong.
Binary file added
BIN
+2.88 KB
...e_desktop_Navigation_EuiCollapsibleNav_EuiCollapsibleNavGroup_Non_Accordion.png
Oops, something went wrong.
Binary file added
BIN
+42.1 KB
...esktop_Navigation_EuiCollapsibleNav_EuiCollapsibleNavItem_Edge_Case_Testing.png
Oops, something went wrong.
Binary file added
BIN
+5.2 KB
...hrome_desktop_Navigation_EuiCollapsibleNav_EuiCollapsibleNavItem_Playground.png
Oops, something went wrong.
Binary file added
BIN
+241 Bytes
...ce/chrome_desktop_Navigation_EuiCollapsibleNav_EuiCollapsibleNav_Playground.png
Oops, something went wrong.
Binary file added
BIN
+3.05 KB
...ence/chrome_desktop_Navigation_EuiContextMenu_EuiContextMenuItem_Playground.png
Oops, something went wrong.
Binary file added
BIN
+11 KB
...nce/chrome_desktop_Navigation_EuiContextMenu_EuiContextMenuPanel_Playground.png
Oops, something went wrong.
Binary file added
BIN
+3.6 KB
...eference/chrome_desktop_Navigation_EuiContextMenu_EuiContextMenu_In_Popover.png
Oops, something went wrong.
Binary file added
BIN
+19.4 KB
...eference/chrome_desktop_Navigation_EuiContextMenu_EuiContextMenu_Playground.png
Oops, something went wrong.
Binary file added
BIN
+1.92 KB
.loki/reference/chrome_desktop_Navigation_EuiFacetButton_Playground.png
Oops, something went wrong.
Binary file added
BIN
+6.3 KB
.loki/reference/chrome_desktop_Navigation_EuiFacetGroup_Playground.png
Oops, something went wrong.
Binary file added
BIN
+2.42 KB
...erence/chrome_desktop_Navigation_EuiKeyPadMenu_EuiKeyPadMenuItem_Playground.png
Oops, something went wrong.
Binary file added
BIN
+15.9 KB
...rence/chrome_desktop_Navigation_EuiKeyPadMenu_EuiKeyPadMenu_Checkable_Multi.png
Oops, something went wrong.
Binary file added
BIN
+16.1 KB
...ence/chrome_desktop_Navigation_EuiKeyPadMenu_EuiKeyPadMenu_Checkable_Single.png
Oops, something went wrong.
Binary file added
BIN
+11.9 KB
.../reference/chrome_desktop_Navigation_EuiKeyPadMenu_EuiKeyPadMenu_Playground.png
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+387 Bytes
...chrome_desktop_Navigation_EuiPagination_EuiPaginationButtonArrow_Playground.png
Oops, something went wrong.
Binary file added
BIN
+260 Bytes
...ence/chrome_desktop_Navigation_EuiPagination_EuiPaginationButton_Playground.png
Oops, something went wrong.
Binary file added
BIN
+2.8 KB
.../reference/chrome_desktop_Navigation_EuiPagination_EuiPagination_Playground.png
Oops, something went wrong.
Binary file added
BIN
+29.7 KB
.loki/reference/chrome_desktop_Navigation_EuiSideNav_Mobile_Side_Nav.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+1.82 KB
...reference/chrome_desktop_Navigation_EuiTreeView_EuiTreeView_Item_Playground.png
Oops, something went wrong.
Binary file added
BIN
+7.04 KB
.loki/reference/chrome_desktop_Navigation_EuiTreeView_EuiTreeView_Playground.png
Oops, something went wrong.
Binary file added
BIN
+40.7 KB
.loki/reference/chrome_desktop_Tabular_Content_EuiInMemoryTable_Kitchen_Sink.png
Oops, something went wrong.
Binary file added
BIN
+3.92 KB
.loki/reference/chrome_desktop_Tabular_Content_EuiTable_EuiTableRow_Playground.png
Oops, something went wrong.
Binary file added
BIN
+174 KB
.loki/reference/chrome_desktop_Tabular_Content_EuiTable_EuiTable_Playground.png
Oops, something went wrong.
Binary file added
BIN
+31.5 KB
.loki/reference/chrome_desktop_Templates_EuiPageTemplate_Playground.png
Oops, something went wrong.
Binary file added
BIN
+4.2 KB
.loki/reference/chrome_desktop_Theming_EuiProvider_Font_Default_Units.png
Oops, something went wrong.
Binary file added
BIN
+16.5 KB
.loki/reference/chrome_desktop_Theming_EuiThemeProvider_CSS_Variables_Global.png
Oops, something went wrong.
Binary file added
BIN
+15.1 KB
.loki/reference/chrome_desktop_Theming_EuiThemeProvider_CSS_Variables_Nearest.png
Oops, something went wrong.
Binary file added
BIN
+5.1 KB
.loki/reference/chrome_desktop_Theming_EuiThemeProvider_Wrapper_Clone_Element.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+13.4 KB
.loki/reference/chrome_desktop_Utilities_EuiErrorBoundary_Playground.png
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+4.88 KB
.loki/reference/chrome_desktop_Utilities_EuiHighlight_Multiple_Search_Strings.png
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+8.73 KB
.loki/reference/chrome_desktop_Utilities_EuiI18nNumber_Multiple_Values.png
Oops, something went wrong.
Binary file added
BIN
+3.15 KB
.loki/reference/chrome_desktop_Utilities_EuiI18nNumber_Single_Value.png
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+9.86 KB
.loki/reference/chrome_desktop_Utilities_EuiI18n_Multiple_Token_Interpolation.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+10.6 KB
.loki/reference/chrome_desktop_Utilities_EuiMutationObserver_Playground.png
Oops, something went wrong.
Binary file added
BIN
+6.15 KB
.loki/reference/chrome_desktop_Utilities_EuiOutsideClickDetector_Playground.png
Oops, something went wrong.
Binary file added
BIN
+504 Bytes
.loki/reference/chrome_desktop_Utilities_EuiOverlayMask_Playground.png
Oops, something went wrong.
Binary file added
BIN
+13.1 KB
.loki/reference/chrome_desktop_Utilities_EuiResizeObserver_Playground.png
Oops, something went wrong.
Binary file added
BIN
+6.86 KB
.loki/reference/chrome_desktop_Utilities_EuiTextBlockTruncate_Playground.png
Oops, something went wrong.
Binary file added
BIN
+2.76 KB
.loki/reference/chrome_desktop_Utilities_EuiTextTruncate_Playground.png
Oops, something went wrong.
Binary file added
BIN
+10.5 KB
.loki/reference/chrome_desktop_Utilities_EuiTextTruncate_Resize_Observer.png
Oops, something went wrong.
Binary file added
BIN
+8.8 KB
...erence/chrome_desktop_Utilities_EuiTextTruncate_Start_End_Anchor_For_Search.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+6.6 KB
.loki/reference/chrome_mobile_Display_EuiBadge_EuiBadgeGroup_Playground.png
Oops, something went wrong.
Binary file added
BIN
+3.42 KB
.loki/reference/chrome_mobile_Display_EuiBadge_EuiBadge_Playground.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+7.75 KB
.loki/reference/chrome_mobile_Display_EuiCheckableCard_Playground.png
Oops, something went wrong.
Binary file added
BIN
+19.4 KB
.loki/reference/chrome_mobile_Display_EuiComment_EuiCommentEvent_Custom.png
Oops, something went wrong.
Binary file added
BIN
+43.1 KB
.loki/reference/chrome_mobile_Display_EuiComment_EuiCommentEvent_Regular.png
Oops, something went wrong.
Binary file added
BIN
+12.4 KB
.loki/reference/chrome_mobile_Display_EuiComment_EuiCommentEvent_Update.png
Oops, something went wrong.
Binary file added
BIN
+119 KB
.loki/reference/chrome_mobile_Display_EuiComment_EuiCommentList_Playground.png
Oops, something went wrong.
Binary file added
BIN
+22.8 KB
.loki/reference/chrome_mobile_Display_EuiComment_EuiComment_Playground.png
Oops, something went wrong.
Binary file added
BIN
+114 KB
.loki/reference/chrome_mobile_Display_EuiEmptyPrompt_Page_Template.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+5.08 KB
.loki/reference/chrome_mobile_Display_EuiListGroup_EuiListGroupItem_Playground.png
Oops, something went wrong.
Binary file added
BIN
+14.9 KB
.loki/reference/chrome_mobile_Display_EuiListGroup_EuiListGroup_Playground.png
Oops, something went wrong.
Binary file added
BIN
+203 Bytes
.loki/reference/chrome_mobile_Display_EuiLoadingChart_Playground.png
Oops, something went wrong.
Binary file added
BIN
+1.26 KB
.loki/reference/chrome_mobile_Display_EuiLoadingElastic_Playground.png
Oops, something went wrong.
Binary file added
BIN
+885 Bytes
.loki/reference/chrome_mobile_Display_EuiLoadingLogo_Playground.png
Oops, something went wrong.
Binary file added
BIN
+1.05 KB
.loki/reference/chrome_mobile_Display_EuiLoadingSpinner_Custom_Color.png
Oops, something went wrong.
Binary file added
BIN
+1.05 KB
.loki/reference/chrome_mobile_Display_EuiLoadingSpinner_Playground.png
Oops, something went wrong.
Binary file added
BIN
+934 Bytes
.loki/reference/chrome_mobile_Display_EuiNotificationBadge_Playground.png
Oops, something went wrong.
Binary file added
BIN
+35.4 KB
.loki/reference/chrome_mobile_Display_EuiPinnableListGroup_Playground.png
Oops, something went wrong.
Binary file added
BIN
+7.68 KB
.loki/reference/chrome_mobile_Editors_Syntax_EuiCodeBlock_Playground.png
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+66 KB
...nce/chrome_mobile_Editors_Syntax_EuiMarkdownEditor_EuiMarkdownEditor_Errors.png
Oops, something went wrong.
Binary file added
BIN
+64.8 KB
...chrome_mobile_Editors_Syntax_EuiMarkdownEditor_EuiMarkdownEditor_Playground.png
Oops, something went wrong.
Binary file added
BIN
+110 KB
.../chrome_mobile_Editors_Syntax_EuiMarkdownEditor_EuiMarkdownEditor_View_Mode.png
Oops, something went wrong.
Binary file added
BIN
+97.6 KB
...chrome_mobile_Editors_Syntax_EuiMarkdownEditor_EuiMarkdownFormat_Playground.png
Oops, something went wrong.
Binary file added
BIN
+917 Bytes
...chrome_mobile_Forms_EuiColorPalettePicker_EuiColorPaletteDisplay_Playground.png
Oops, something went wrong.
Binary file added
BIN
+2.6 KB
.../chrome_mobile_Forms_EuiColorPalettePicker_EuiColorPalettePicker_Playground.png
Oops, something went wrong.
Binary file added
BIN
+409 Bytes
...eference/chrome_mobile_Forms_EuiColorPicker_EuiColorPickerSwatch_Playground.png
Oops, something went wrong.
Binary file added
BIN
+5.86 KB
.loki/reference/chrome_mobile_Forms_EuiColorPicker_EuiColorPicker_Playground.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+1.94 KB
.loki/reference/chrome_mobile_Forms_EuiFieldNumber_Controlled_Component.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+17.5 KB
.loki/reference/chrome_mobile_Forms_EuiFilterButton_Full_Width_And_Grow.png
Oops, something went wrong.
Binary file added
BIN
+12.1 KB
.loki/reference/chrome_mobile_Forms_EuiFilterButton_Multiple_Buttons.png
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+11.9 KB
.loki/reference/chrome_mobile_Forms_EuiFilterGroup_Multiple_Popovers.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+6.39 KB
.loki/reference/chrome_mobile_Forms_EuiInlineEditTitle_Playground.png
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+16.8 KB
.loki/reference/chrome_mobile_Layout_EuiFlyout_EuiFlyoutBody_Playground.png
Oops, something went wrong.
Binary file added
BIN
+14.9 KB
.loki/reference/chrome_mobile_Layout_EuiFlyout_EuiFlyoutFooter_Playground.png
Oops, something went wrong.
Binary file added
BIN
+15.7 KB
.loki/reference/chrome_mobile_Layout_EuiFlyout_EuiFlyoutHeader_Playground.png
Oops, something went wrong.
Binary file added
BIN
+54 KB
.loki/reference/chrome_mobile_Layout_EuiFlyout_EuiFlyoutResizable_Playground.png
Oops, something went wrong.
Binary file added
BIN
+24.1 KB
.loki/reference/chrome_mobile_Layout_EuiFlyout_EuiFlyout_Playground.png
Oops, something went wrong.
Binary file added
BIN
+359 KB
.loki/reference/chrome_mobile_Layout_EuiFlyout_EuiFlyout_Push_Flyouts.png
Oops, something went wrong.
Binary file added
BIN
+1.91 KB
.loki/reference/chrome_mobile_Layout_EuiHeader_EuiHeaderAlert_Flyout_Example.png
Oops, something went wrong.
Binary file added
BIN
+30.8 KB
.loki/reference/chrome_mobile_Layout_EuiHeader_EuiHeaderAlert_Playground.png
Oops, something went wrong.
Binary file added
BIN
+2.82 KB
.loki/reference/chrome_mobile_Layout_EuiHeader_EuiHeaderAlert_Popover_Example.png
Oops, something went wrong.
Binary file added
BIN
+3.33 KB
.loki/reference/chrome_mobile_Layout_EuiHeader_EuiHeaderBreadcrumbs_Playground.png
Oops, something went wrong.
Binary file added
BIN
+3.23 KB
.loki/reference/chrome_mobile_Layout_EuiHeader_EuiHeaderLink_Playground.png
Oops, something went wrong.
Binary file added
BIN
+654 Bytes
.loki/reference/chrome_mobile_Layout_EuiHeader_EuiHeaderLinks_Playground.png
Oops, something went wrong.
Binary file added
BIN
+5.01 KB
.loki/reference/chrome_mobile_Layout_EuiHeader_EuiHeaderLogo_Playground.png
Oops, something went wrong.
Binary file added
BIN
+5.01 KB
.loki/reference/chrome_mobile_Layout_EuiHeader_EuiHeaderLogo_With_Text.png
Oops, something went wrong.
Binary file added
BIN
+6 KB
...bile_Layout_EuiHeader_EuiHeaderSection_EuiHeaderSectionItemButton_Animation.png
Oops, something went wrong.
Binary file added
BIN
+3.87 KB
...e_Layout_EuiHeader_EuiHeaderSection_EuiHeaderSectionItemButton_Notification.png
Oops, something went wrong.
Binary file added
BIN
+3.45 KB
...ile_Layout_EuiHeader_EuiHeaderSection_EuiHeaderSectionItemButton_Playground.png
Oops, something went wrong.
Binary file added
BIN
+3.64 KB
...me_mobile_Layout_EuiHeader_EuiHeaderSection_EuiHeaderSectionItem_Playground.png
Oops, something went wrong.
Binary file added
BIN
+3.79 KB
...chrome_mobile_Layout_EuiHeader_EuiHeaderSection_EuiHeaderSection_Playground.png
Oops, something went wrong.
Binary file added
BIN
+67.8 KB
...i/reference/chrome_mobile_Layout_EuiHeader_EuiHeader_Multiple_Fixed_Headers.png
Oops, something went wrong.
Binary file added
BIN
+596 Bytes
.loki/reference/chrome_mobile_Layout_EuiHeader_EuiHeader_Playground.png
Oops, something went wrong.
Binary file added
BIN
+9.24 KB
.loki/reference/chrome_mobile_Layout_EuiHeader_EuiHeader_Sections.png
Oops, something went wrong.
Binary file added
BIN
+129 Bytes
.loki/reference/chrome_mobile_Layout_EuiHorizontalRule_Playground.png
Oops, something went wrong.
Binary file added
BIN
+11.8 KB
.loki/reference/chrome_mobile_Layout_EuiModal_EuiModalBody_Playground.png
Oops, something went wrong.
Binary file added
BIN
+12 KB
.loki/reference/chrome_mobile_Layout_EuiModal_EuiModalFooter_Playground.png
Oops, something went wrong.
Binary file added
BIN
+14.4 KB
.loki/reference/chrome_mobile_Layout_EuiModal_EuiModalHeaderTitle_Playground.png
Oops, something went wrong.
Binary file added
BIN
+12.2 KB
.loki/reference/chrome_mobile_Layout_EuiModal_EuiModalHeader_Playground.png
Oops, something went wrong.
Binary file added
BIN
+22.5 KB
.loki/reference/chrome_mobile_Layout_EuiModal_EuiModal_Initial_Focus.png
Oops, something went wrong.
Binary file added
BIN
+22.1 KB
.loki/reference/chrome_mobile_Layout_EuiModal_EuiModal_Playground.png
Oops, something went wrong.
Binary file added
BIN
+22.1 KB
.loki/reference/chrome_mobile_Layout_EuiModal_EuiModal_Toggle_Example.png
Oops, something went wrong.
Binary file added
BIN
+5.2 KB
.loki/reference/chrome_mobile_Layout_EuiPage_EuiPageBody_Playground.png
Oops, something went wrong.
Binary file added
BIN
+35.6 KB
.../chrome_mobile_Layout_EuiPage_EuiPageHeader_EuiPageHeaderContent_Playground.png
Oops, something went wrong.
Binary file added
BIN
+12.5 KB
.../chrome_mobile_Layout_EuiPage_EuiPageHeader_EuiPageHeaderSection_Playground.png
Oops, something went wrong.
Binary file added
BIN
+35.6 KB
...ference/chrome_mobile_Layout_EuiPage_EuiPageHeader_EuiPageHeader_Playground.png
Oops, something went wrong.
Binary file added
BIN
+7.28 KB
.loki/reference/chrome_mobile_Layout_EuiPage_EuiPageSection_Playground.png
Oops, something went wrong.
Binary file added
BIN
+12.6 KB
.loki/reference/chrome_mobile_Layout_EuiPage_EuiPageSidebar_Playground.png
Oops, something went wrong.
Binary file added
BIN
+15.2 KB
.loki/reference/chrome_mobile_Layout_EuiPage_EuiPageSidebar_Sticky_Offset.png
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+10.5 KB
.loki/reference/chrome_mobile_Layout_EuiPage_EuiPage_Restrict_Width.png
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+1.72 KB
...ce/chrome_mobile_Layout_EuiResizableContainer_EuiResizableButton_Playground.png
Oops, something went wrong.
Binary file added
BIN
+3.44 KB
...e_mobile_Layout_EuiResizableContainer_EuiResizableCollapseButton_Playground.png
Oops, something went wrong.
Binary file added
BIN
+29.3 KB
...le_Layout_EuiResizableContainer_EuiResizableCollapseButton_Production_Usage.png
Oops, something went wrong.
Binary file added
BIN
+32.8 KB
.loki/reference/chrome_mobile_Layout_EuiSplitPanel_Split_Panel_Inner.png
Oops, something went wrong.
Binary file added
BIN
+11.2 KB
.loki/reference/chrome_mobile_Layout_EuiSplitPanel_Split_Panel_Outer.png
Oops, something went wrong.
Binary file added
BIN
+3.37 KB
.loki/reference/chrome_mobile_Navigation_EuiBreadcrumbs_Playground.png
Oops, something went wrong.
Binary file added
BIN
+4.27 KB
.loki/reference/chrome_mobile_Navigation_EuiButtonEmpty_Playground.png
Oops, something went wrong.
Binary file added
BIN
+9.82 KB
.loki/reference/chrome_mobile_Navigation_EuiButtonGroup_Multi_Selection.png
Oops, something went wrong.
Binary file added
BIN
+9.82 KB
.loki/reference/chrome_mobile_Navigation_EuiButtonGroup_Single_Selection.png
Oops, something went wrong.
Binary file added
BIN
+4.93 KB
.loki/reference/chrome_mobile_Navigation_EuiButtonGroup_With_Tooltips.png
Oops, something went wrong.
Binary file added
BIN
+1.83 KB
.loki/reference/chrome_mobile_Navigation_EuiButtonIcon_Playground.png
Oops, something went wrong.
Oops, something went wrong.
Binary file added
BIN
+911 Bytes
...ce/chrome_mobile_Navigation_EuiCollapsibleNav_EuiCollapsedNavItem_Accordion.png
Oops, something went wrong.
Binary file added
BIN
+911 Bytes
...ference/chrome_mobile_Navigation_EuiCollapsibleNav_EuiCollapsedNavItem_Link.png
Oops, something went wrong.
Binary file added
BIN
+35.3 KB
...on_EuiCollapsibleNav_EuiCollapsibleNavBeta_Collapsed_State_In_Local_Storage.png
Oops, something went wrong.
Binary file added
BIN
+5.19 KB
...me_mobile_Navigation_EuiCollapsibleNav_EuiCollapsibleNavBeta_Flyout_Overlay.png
Oops, something went wrong.
Binary file added
BIN
+698 Bytes
...bile_Navigation_EuiCollapsibleNav_EuiCollapsibleNavBeta_Global_CSS_Variable.png
Oops, something went wrong.
Oops, something went wrong.