-
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 emotion/color-pickers
- Loading branch information
Showing
617 changed files
with
3,205 additions
and
3,236 deletions.
There are no files selected for viewing
12 changes: 10 additions & 2 deletions
12
.buildkite/pipelines/pipeline_pull_request_deploy_docs.yml
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 |
---|---|---|
@@ -1,7 +1,15 @@ | ||
## 🏠/.buildkite/pipelines/pipeline_pull_request_deploy_docs.yml | ||
|
||
steps: | ||
- agents: | ||
- command: .buildkite/scripts/pipelines/pipeline_deploy_docs.sh | ||
label: ":newspaper: Build and deploy EUI documentation website" | ||
agents: | ||
provider: "gcp" | ||
command: .buildkite/scripts/pipelines/pipeline_deploy_docs.sh | ||
if: build.branch != "main" # We don't want to deploy docs on main, only on manual release | ||
- command: .buildkite/scripts/pipelines/pipeline_deploy_new_docs.sh | ||
label: ":docusaurus: Build and deploy new documentation website" | ||
agents: | ||
provider: gcp | ||
machineType: "n2-standard-2" | ||
image: "family/eui-ubuntu-2204" | ||
if: build.branch != "main" |
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,65 @@ | ||
#!/bin/bash | ||
# Build and deploy new documentation website | ||
|
||
set -eo pipefail | ||
|
||
# include .bash_profile and utils | ||
source ~/.bash_profile | ||
source .buildkite/scripts/common/utils.sh | ||
|
||
# Enable corepack to expose yarn cli command | ||
corepack enable | ||
|
||
# Print out debug information | ||
echo "Node.js version: $(node -v)" | ||
echo "Yarn version: $(yarn -v)" | ||
|
||
# Calculate paths and directories | ||
if [[ -n "${BUILDKITE_PULL_REQUEST}" ]] && [[ "${BUILDKITE_PULL_REQUEST}" != "false" ]]; then | ||
bucket_directory="pr_${BUILDKITE_PULL_REQUEST}/new-docs/" | ||
echo "Detected a PR preview environment configuration. The built files will be copied to ${bucket_directory}" | ||
else | ||
echo "The script has been triggered with no pull request or tag information. This is a no-op." | ||
exit 1 | ||
fi | ||
|
||
echo "+++ :yarn: Installing dependencies" | ||
yarn | ||
|
||
echo "+++ :yarn: Building @elastic/eui-website and its local dependencies" | ||
|
||
# Pass base url to docusaurus. It must have a leading and trailing slash included. | ||
export DOCS_BASE_URL="/${bucket_directory}" | ||
|
||
yarn workspaces foreach -Rpt --from @elastic/eui-website run build | ||
|
||
echo "+++ Configuring environment for website deployment" | ||
|
||
gcloud auth activate-service-account --key-file <(echo "${GCE_ACCOUNT}") | ||
unset GCE_ACCOUNT | ||
|
||
storage_vault="secret/ci/elastic-eui/website-storage-bucket" | ||
GCLOUD_PROJECT="$(retry 5 vault read -field=google_cloud_project "${storage_vault}")" | ||
GCLOUD_BUCKET="$(retry 5 vault read -field=google_cloud_bucket "${storage_vault}")" | ||
GCLOUD_BUCKET_FULL="${GCLOUD_PROJECT}-${GCLOUD_BUCKET}" | ||
|
||
GCLOUD_CP_ARGS=( | ||
--cache-control="public, max-age=1800, must-revalidate" # set caching policy | ||
--recursive # copy all files recursively | ||
--predefined-acl="publicRead" # ensure copied files are publicly accessible | ||
--gzip-local="js,css,html,svg,png,jpg,ico" # gzip these file extensions before copying to the bucket | ||
) | ||
|
||
# Copy files to the GCS bucket | ||
|
||
echo "+++ :bucket: Copying built files to the bucket" | ||
|
||
# additional protection layer in case bucket_directory is ever unset | ||
if [[ -z "${bucket_directory}" ]]; then | ||
bucket_directory="new-docs/" | ||
fi | ||
|
||
echo "Beginning to copy built files to /${bucket_directory}" | ||
gcloud storage cp "${GCLOUD_CP_ARGS[@]}" packages/website/build/* "gs://${GCLOUD_BUCKET_FULL}/${bucket_directory}" | ||
|
||
echo "New documentation website deployed: https://eui.elastic.co/${bucket_directory}" | buildkite-agent annotate --style "success" --context "deployed" |
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
Binary file modified
BIN
-729 Bytes
(92%)
packages/eui/.loki/reference/chrome_desktop_Display_EuiAspectRatio_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 modified
BIN
+26 Bytes
(100%)
packages/eui/.loki/reference/chrome_desktop_Display_EuiAvatar_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 modified
BIN
-1.33 KB
(50%)
...ui/.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 modified
BIN
-7 Bytes
(99%)
.../eui/.loki/reference/chrome_desktop_Display_EuiBadge_EuiBadge_Custom_Colors.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 modified
BIN
-7 Bytes
(100%)
...ges/eui/.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.
Binary file modified
BIN
-32 Bytes
(98%)
packages/eui/.loki/reference/chrome_desktop_Display_EuiBetaBadge_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 modified
BIN
+175 Bytes
(100%)
packages/eui/.loki/reference/chrome_desktop_Display_EuiCallOut_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 modified
BIN
+68 Bytes
(100%)
packages/eui/.loki/reference/chrome_desktop_Display_EuiCard_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 modified
BIN
-74 Bytes
(98%)
...ages/eui/.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 modified
BIN
-2.57 KB
(63%)
...ui/.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 modified
BIN
-4.05 KB
(73%)
...i/.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 modified
BIN
-827 Bytes
(85%)
...ui/.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 modified
BIN
-8.02 KB
(84%)
....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 modified
BIN
-1.44 KB
(86%)
...eui/.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 modified
BIN
-10 KB
(68%)
packages/eui/.loki/reference/chrome_desktop_Display_EuiDescriptionList_Column.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 modified
BIN
-8.71 KB
(64%)
packages/eui/.loki/reference/chrome_desktop_Display_EuiDescriptionList_Inline.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 modified
BIN
-9.98 KB
(69%)
...es/eui/.loki/reference/chrome_desktop_Display_EuiDescriptionList_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 modified
BIN
-9.98 KB
(69%)
packages/eui/.loki/reference/chrome_desktop_Display_EuiDescriptionList_Row.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 modified
BIN
-1.06 KB
(69%)
...y_EuiDescriptionList_Subcomponents_EuiDescriptionListDescription_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 modified
BIN
-234 Bytes
(92%)
...Display_EuiDescriptionList_Subcomponents_EuiDescriptionListTitle_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 modified
BIN
-113 Bytes
(96%)
packages/eui/.loki/reference/chrome_desktop_Display_EuiDraggable_Interactive.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 modified
BIN
-310 Bytes
(89%)
packages/eui/.loki/reference/chrome_desktop_Display_EuiDraggable_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 modified
BIN
-841 Bytes
(90%)
...es/eui/.loki/reference/chrome_desktop_Display_EuiDroppable_Clone_Draggables.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 modified
BIN
-657 Bytes
(89%)
packages/eui/.loki/reference/chrome_desktop_Display_EuiDroppable_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 modified
BIN
-8.38 KB
(84%)
...ges/eui/.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.
Binary file modified
BIN
-2.96 KB
(86%)
packages/eui/.loki/reference/chrome_desktop_Display_EuiEmptyPrompt_Playground.png
Oops, something went wrong.
Binary file modified
BIN
+48 Bytes
(100%)
packages/eui/.loki/reference/chrome_desktop_Display_EuiHealth_Playground.png
Oops, something went wrong.
Binary file modified
BIN
-394 Bytes
(97%)
packages/eui/.loki/reference/chrome_desktop_Display_EuiIconTip_Playground.png
Oops, something went wrong.
Binary file modified
BIN
+268 Bytes
(110%)
...i/reference/chrome_desktop_Display_EuiListGroup_EuiListGroupItem_Playground.png
Oops, something went wrong.
Binary file modified
BIN
+176 Bytes
(100%)
....loki/reference/chrome_desktop_Display_EuiListGroup_EuiListGroup_Playground.png
Oops, something went wrong.
Binary file modified
BIN
+8 Bytes
(100%)
.../eui/.loki/reference/chrome_desktop_Display_EuiNotificationBadge_Playground.png
Oops, something went wrong.
Binary file modified
BIN
-1.71 KB
(88%)
.../eui/.loki/reference/chrome_desktop_Display_EuiPinnableListGroup_Playground.png
Oops, something went wrong.
Binary file modified
BIN
-959 Bytes
(80%)
packages/eui/.loki/reference/chrome_desktop_Display_EuiStat_Playground.png
Oops, something went wrong.
Binary file modified
BIN
-1.52 KB
(75%)
...i/.loki/reference/chrome_desktop_Display_EuiText_EuiTextAlign_Clone_Element.png
Oops, something went wrong.
Binary file modified
BIN
-3.6 KB
(60%)
.../eui/.loki/reference/chrome_desktop_Display_EuiText_EuiTextAlign_Playground.png
Oops, something went wrong.
Binary file modified
BIN
-1.52 KB
(75%)
...i/.loki/reference/chrome_desktop_Display_EuiText_EuiTextColor_Clone_Element.png
Oops, something went wrong.
Binary file modified
BIN
-3.52 KB
(60%)
.../eui/.loki/reference/chrome_desktop_Display_EuiText_EuiTextColor_Playground.png
Oops, something went wrong.
Binary file modified
BIN
-3.64 KB
(63%)
packages/eui/.loki/reference/chrome_desktop_Display_EuiText_EuiText_Playground.png
Oops, something went wrong.
Binary file modified
BIN
-330 Bytes
(86%)
...oki/reference/chrome_desktop_Display_EuiTimeline_EuiTimelineItem_Playground.png
Oops, something went wrong.
Binary file modified
BIN
-1.1 KB
(93%)
...i/.loki/reference/chrome_desktop_Display_EuiTimeline_EuiTimeline_Playground.png
Oops, something went wrong.
Binary file modified
BIN
-535 Bytes
(75%)
...e_desktop_Display_EuiTimeline_Subcomponents_EuiTimelineItemEvent_Playground.png
Oops, something went wrong.
Binary file modified
BIN
+50 Bytes
(100%)
packages/eui/.loki/reference/chrome_desktop_Display_EuiTitle_Playground.png
Oops, something went wrong.
Binary file modified
BIN
+24 Bytes
(100%)
...sktop_Display_EuiToast_EuiGlobalToastList_EuiGlobalToastListItem_Playground.png
Oops, something went wrong.
Binary file modified
BIN
-266 Bytes
(98%)
...e_desktop_Display_EuiToast_EuiGlobalToastList_EuiGlobalToastList_Playground.png
Oops, something went wrong.
Binary file modified
BIN
-192 Bytes
(96%)
packages/eui/.loki/reference/chrome_desktop_Display_EuiToast_Playground.png
Oops, something went wrong.
Binary file modified
BIN
-515 Bytes
(97%)
packages/eui/.loki/reference/chrome_desktop_Display_EuiToolTip_Playground.png
Oops, something went wrong.
Binary file modified
BIN
+126 Bytes
(100%)
...s/eui/.loki/reference/chrome_desktop_Display_EuiTour_EuiTourStep_Playground.png
Oops, something went wrong.
Binary file modified
BIN
+405 Bytes
(100%)
packages/eui/.loki/reference/chrome_desktop_Display_EuiTour_EuiTour_Playground.png
Oops, something went wrong.
Binary file modified
BIN
-375 Bytes
(90%)
...s/eui/.loki/reference/chrome_desktop_Editors_Syntax_EuiCodeBlock_Playground.png
Oops, something went wrong.
Binary file modified
BIN
-331 Bytes
(84%)
packages/eui/.loki/reference/chrome_desktop_Editors_Syntax_EuiCode_Playground.png
Oops, something went wrong.
Binary file modified
BIN
-4.34 KB
(86%)
.../eui/.loki/reference/chrome_desktop_Editors_Syntax_EuiMarkdownEditor_Errors.png
Oops, something went wrong.
Binary file modified
BIN
-4.4 KB
(85%)
.../.loki/reference/chrome_desktop_Editors_Syntax_EuiMarkdownEditor_Playground.png
Oops, something went wrong.
Binary file modified
BIN
-6.42 KB
(85%)
...i/.loki/reference/chrome_desktop_Editors_Syntax_EuiMarkdownEditor_View_Mode.png
Oops, something went wrong.
Binary file modified
BIN
-7.17 KB
(81%)
.../.loki/reference/chrome_desktop_Editors_Syntax_EuiMarkdownFormat_Playground.png
Oops, something went wrong.
Binary file modified
BIN
+18 Bytes
(100%)
...ference/chrome_desktop_Forms_EuiAutoRefresh_EuiAutoRefreshButton_Playground.png
Oops, something went wrong.
Binary file modified
BIN
+301 Bytes
(110%)
...oki/reference/chrome_desktop_Forms_EuiAutoRefresh_EuiAutoRefresh_Playground.png
Oops, something went wrong.
Binary file modified
BIN
+683 Bytes
(110%)
packages/eui/.loki/reference/chrome_desktop_Forms_EuiCheckboxGroup_Playground.png
Oops, something went wrong.
Binary file modified
BIN
-103 Bytes
(96%)
packages/eui/.loki/reference/chrome_desktop_Forms_EuiCheckbox_Playground.png
Oops, something went wrong.
Binary file modified
BIN
-413 Bytes
(98%)
...chrome_desktop_Forms_EuiColorPicker_EuiColorPicker_Inline_With_All_Elements.png
Oops, something went wrong.
Binary file modified
BIN
-227 Bytes
(92%)
...oki/reference/chrome_desktop_Forms_EuiColorPicker_EuiColorPicker_Playground.png
Oops, something went wrong.
Binary file modified
BIN
-2.2 KB
(83%)
packages/eui/.loki/reference/chrome_desktop_Forms_EuiComboBox_Custom_Matcher.png
Oops, something went wrong.
Binary file modified
BIN
+877 Bytes
(110%)
packages/eui/.loki/reference/chrome_desktop_Forms_EuiComboBox_Groups.png
Oops, something went wrong.
Binary file modified
BIN
+877 Bytes
(110%)
.../eui/.loki/reference/chrome_desktop_Forms_EuiComboBox_Nested_Options_Groups.png
Oops, something went wrong.
Binary file modified
BIN
+111 Bytes
(110%)
packages/eui/.loki/reference/chrome_desktop_Forms_EuiComboBox_Playground.png
Oops, something went wrong.
Binary file modified
BIN
+126 Bytes
(100%)
packages/eui/.loki/reference/chrome_desktop_Forms_EuiComboBox_With_Tooltip.png
Oops, something went wrong.
Binary file modified
BIN
+71 Bytes
(110%)
...ages/eui/.loki/reference/chrome_desktop_Forms_EuiDatePickerRange_Playground.png
Oops, something went wrong.
Binary file modified
BIN
+806 Bytes
(100%)
packages/eui/.loki/reference/chrome_desktop_Forms_EuiDatePicker_Playground.png
Oops, something went wrong.
Binary file modified
BIN
-18 Bytes
(99%)
packages/eui/.loki/reference/chrome_desktop_Forms_EuiDualRange_Input.png
Oops, something went wrong.
Binary file modified
BIN
-15 Bytes
(99%)
...es/eui/.loki/reference/chrome_desktop_Forms_EuiDualRange_Input_With_Popover.png
Oops, something went wrong.
Binary file modified
BIN
-314 Bytes
(85%)
packages/eui/.loki/reference/chrome_desktop_Forms_EuiDualRange_Levels.png
Oops, something went wrong.
Binary file modified
BIN
-1.14 KB
(73%)
packages/eui/.loki/reference/chrome_desktop_Forms_EuiDualRange_Ticks.png
Oops, something went wrong.
Binary file modified
BIN
+60 Bytes
(100%)
packages/eui/.loki/reference/chrome_desktop_Forms_EuiExpression_Playground.png
Oops, something went wrong.
Binary file modified
BIN
+45 Bytes
(110%)
...ui/.loki/reference/chrome_desktop_Forms_EuiFieldNumber_Controlled_Component.png
Oops, something went wrong.
Binary file modified
BIN
+46 Bytes
(100%)
packages/eui/.loki/reference/chrome_desktop_Forms_EuiFieldNumber_Icon_Shape.png
Oops, something went wrong.
Binary file modified
BIN
+57 Bytes
(110%)
packages/eui/.loki/reference/chrome_desktop_Forms_EuiFieldNumber_Playground.png
Oops, something went wrong.
Binary file modified
BIN
-30 Bytes
(99%)
packages/eui/.loki/reference/chrome_desktop_Forms_EuiFieldText_Icon_Shape.png
Oops, something went wrong.
Binary file modified
BIN
-34 Bytes
(98%)
packages/eui/.loki/reference/chrome_desktop_Forms_EuiFieldText_Playground.png
Oops, something went wrong.
Binary file modified
BIN
-437 Bytes
(91%)
...es/eui/.loki/reference/chrome_desktop_Forms_EuiFilePicker_Non_Large_Display.png
Oops, something went wrong.
Binary file modified
BIN
-847 Bytes
(87%)
packages/eui/.loki/reference/chrome_desktop_Forms_EuiFilePicker_Playground.png
Oops, something went wrong.
Binary file modified
BIN
-302 Bytes
(96%)
...ui/.loki/reference/chrome_desktop_Forms_EuiFilterButton_Full_Width_And_Grow.png
Oops, something went wrong.
Binary file modified
BIN
-1.21 KB
(71%)
...s/eui/.loki/reference/chrome_desktop_Forms_EuiFilterButton_Multiple_Buttons.png
Oops, something went wrong.
Binary file modified
BIN
+72 Bytes
(100%)
packages/eui/.loki/reference/chrome_desktop_Forms_EuiFilterButton_Playground.png
Oops, something went wrong.
Binary file modified
BIN
-417 Bytes
(88%)
...s/eui/.loki/reference/chrome_desktop_Forms_EuiFilterGroup_Multiple_Popovers.png
Oops, something went wrong.
Binary file modified
BIN
+72 Bytes
(100%)
packages/eui/.loki/reference/chrome_desktop_Forms_EuiFilterGroup_Playground.png
Oops, something went wrong.
Binary file modified
BIN
-17 Bytes
(99%)
packages/eui/.loki/reference/chrome_desktop_Forms_EuiFilterGroup_With_Popover.png
Oops, something went wrong.
Binary file modified
BIN
-3.24 KB
(79%)
packages/eui/.loki/reference/chrome_desktop_Forms_EuiForm_Error.png
Oops, something went wrong.
Binary file modified
BIN
-388 Bytes
(96%)
...oki/reference/chrome_desktop_Forms_EuiForm_EuiDescribedFormGroup_Playground.png
Oops, something went wrong.
Binary file modified
BIN
+95 Bytes
(110%)
...rence/chrome_desktop_Forms_EuiForm_EuiFormControlLayoutDelimited_Playground.png
Oops, something went wrong.
Binary file modified
BIN
+4 Bytes
(100%)
...loki/reference/chrome_desktop_Forms_EuiForm_EuiFormControlLayout_Icon_Shape.png
Oops, something went wrong.
Binary file modified
BIN
+6 Bytes
(100%)
...loki/reference/chrome_desktop_Forms_EuiForm_EuiFormControlLayout_Playground.png
Oops, something went wrong.
Binary file modified
BIN
+336 Bytes
(110%)
...eui/.loki/reference/chrome_desktop_Forms_EuiForm_EuiFormFieldset_Playground.png
Oops, something went wrong.
Binary file modified
BIN
+86 Bytes
(110%)
...esktop_Forms_EuiForm_EuiFormFieldset_Subcomponents_EuiFormLegend_Playground.png
Oops, something went wrong.
Binary file modified
BIN
+206 Bytes
(100%)
...ages/eui/.loki/reference/chrome_desktop_Forms_EuiForm_EuiFormRow_Playground.png
Oops, something went wrong.
Binary file modified
BIN
-81 Bytes
(95%)
..._desktop_Forms_EuiForm_EuiFormRow_Subcomponents_EuiFormErrorText_Playground.png
Oops, something went wrong.
Binary file modified
BIN
+64 Bytes
(100%)
...e_desktop_Forms_EuiForm_EuiFormRow_Subcomponents_EuiFormHelpText_Playground.png
Oops, something went wrong.
Binary file modified
BIN
+137 Bytes
(110%)
...rome_desktop_Forms_EuiForm_EuiFormRow_Subcomponents_EuiFormLabel_Playground.png
Oops, something went wrong.
Binary file modified
BIN
+2 Bytes
(100%)
packages/eui/.loki/reference/chrome_desktop_Forms_EuiForm_Playground.png
Oops, something went wrong.
Binary file modified
BIN
-39 Bytes
(99%)
packages/eui/.loki/reference/chrome_desktop_Forms_EuiInlineEditText_Edit_Mode.png
Oops, something went wrong.
Binary file modified
BIN
-107 Bytes
(96%)
packages/eui/.loki/reference/chrome_desktop_Forms_EuiInlineEditText_Playground.png
Oops, something went wrong.
Binary file modified
BIN
+219 Bytes
(100%)
packages/eui/.loki/reference/chrome_desktop_Forms_EuiInlineEditTitle_Edit_Mode.png
Oops, something went wrong.
Binary file modified
BIN
+199 Bytes
(110%)
...ages/eui/.loki/reference/chrome_desktop_Forms_EuiInlineEditTitle_Playground.png
Oops, something went wrong.
Binary file modified
BIN
+482 Bytes
(110%)
packages/eui/.loki/reference/chrome_desktop_Forms_EuiRadioGroup_Playground.png
Oops, something went wrong.
Binary file modified
BIN
-46 Bytes
(98%)
packages/eui/.loki/reference/chrome_desktop_Forms_EuiRadio_Playground.png
Oops, something went wrong.
Binary file modified
BIN
+100 Bytes
(110%)
packages/eui/.loki/reference/chrome_desktop_Forms_EuiRange_Input.png
Oops, something went wrong.
Binary file modified
BIN
-291 Bytes
(84%)
packages/eui/.loki/reference/chrome_desktop_Forms_EuiRange_Levels.png
Oops, something went wrong.
Binary file modified
BIN
-1.15 KB
(72%)
packages/eui/.loki/reference/chrome_desktop_Forms_EuiRange_Ticks.png
Oops, something went wrong.
Binary file modified
BIN
+58 Bytes
(100%)
packages/eui/.loki/reference/chrome_desktop_Forms_EuiRange_Value_Tooltip.png
Oops, something went wrong.
Binary file modified
BIN
-150 Bytes
(97%)
...ages/eui/.loki/reference/chrome_desktop_Forms_EuiRefreshInterval_Playground.png
Oops, something went wrong.
Binary file modified
BIN
-148 Bytes
(97%)
.../reference/chrome_desktop_Forms_EuiSearchBar_EuiSearchBarFilters_Playground.png
Oops, something went wrong.
Binary file modified
BIN
-480 Bytes
(95%)
...i/.loki/reference/chrome_desktop_Forms_EuiSearchBar_EuiSearchBar_Playground.png
Oops, something went wrong.
Binary file modified
BIN
+219 Bytes
(110%)
packages/eui/.loki/reference/chrome_desktop_Forms_EuiSelect_Playground.png
Oops, something went wrong.
Binary file modified
BIN
-200 Bytes
(98%)
packages/eui/.loki/reference/chrome_desktop_Forms_EuiSelectable_Playground.png
Oops, something went wrong.
Binary file modified
BIN
-102 Bytes
(96%)
..._desktop_Forms_EuiSelectable_Subcomponents_EuiSelectableListItem_Playground.png
Oops, something went wrong.
Binary file modified
BIN
-1.15 KB
(95%)
...e/chrome_desktop_Forms_EuiSelectable_Subcomponents_EuiSelectableList_Groups.png
Oops, something went wrong.
Binary file modified
BIN
-1.26 KB
(94%)
...rome_desktop_Forms_EuiSelectable_Subcomponents_EuiSelectableList_Playground.png
Oops, something went wrong.
Binary file modified
BIN
-449 Bytes
(85%)
...e_desktop_Forms_EuiSelectable_Subcomponents_EuiSelectableMessage_Playground.png
Oops, something went wrong.
Binary file modified
BIN
+6 Bytes
(100%)
...me_desktop_Forms_EuiSelectable_Subcomponents_EuiSelectableSearch_Playground.png
Oops, something went wrong.
Binary file modified
BIN
-200 Bytes
(98%)
packages/eui/.loki/reference/chrome_desktop_Forms_EuiSelectable_With_Tooltip.png
Oops, something went wrong.
Binary file modified
BIN
-190 Bytes
(96%)
...sktop_Forms_EuiSuperDatePicker_EuiSuperDatePicker_Custom_Quick_Select_Panel.png
Oops, something went wrong.
Binary file modified
BIN
-190 Bytes
(96%)
...rence/chrome_desktop_Forms_EuiSuperDatePicker_EuiSuperDatePicker_Playground.png
Oops, something went wrong.
Binary file modified
BIN
-26 Bytes
(99%)
...nce/chrome_desktop_Forms_EuiSuperDatePicker_EuiSuperUpdateButton_Playground.png
Oops, something went wrong.
Binary file modified
BIN
+134 Bytes
(110%)
packages/eui/.loki/reference/chrome_desktop_Forms_EuiSuperSelect_Playground.png
Oops, something went wrong.
Binary file modified
BIN
+200 Bytes
(110%)
packages/eui/.loki/reference/chrome_desktop_Forms_EuiSwitch_Checked.png
Oops, something went wrong.
Binary file modified
BIN
+207 Bytes
(110%)
packages/eui/.loki/reference/chrome_desktop_Forms_EuiSwitch_Playground.png
Oops, something went wrong.
Binary file modified
BIN
-614 Bytes
(81%)
packages/eui/.loki/reference/chrome_desktop_Layout_EuiAccordion_Playground.png
Oops, something went wrong.
Binary file modified
BIN
-172 Bytes
(98%)
packages/eui/.loki/reference/chrome_desktop_Layout_EuiBottomBar_Playground.png
Oops, something went wrong.
Binary file modified
BIN
-492 Bytes
(98%)
packages/eui/.loki/reference/chrome_desktop_Layout_EuiConfirmModal_Playground.png
Oops, something went wrong.
Binary file modified
BIN
-269 Bytes
(94%)
packages/eui/.loki/reference/chrome_desktop_Layout_EuiFlexGrid_Playground.png
Oops, something went wrong.
Binary file modified
BIN
-1.5 KB
(54%)
packages/eui/.loki/reference/chrome_desktop_Layout_EuiFlexGroup_Playground.png
Oops, something went wrong.
Binary file modified
BIN
-84 Bytes
(94%)
packages/eui/.loki/reference/chrome_desktop_Layout_EuiFlexItem_Playground.png
Oops, something went wrong.
Binary file modified
BIN
-93 Bytes
(99%)
...ui/.loki/reference/chrome_desktop_Layout_EuiFlyout_EuiFlyoutBody_Playground.png
Oops, something went wrong.
Binary file modified
BIN
+11 Bytes
(100%)
.../.loki/reference/chrome_desktop_Layout_EuiFlyout_EuiFlyoutFooter_Playground.png
Oops, something went wrong.
Binary file modified
BIN
-331 Bytes
(97%)
.../.loki/reference/chrome_desktop_Layout_EuiFlyout_EuiFlyoutHeader_Playground.png
Oops, something went wrong.
Binary file modified
BIN
-4.7 KB
(80%)
...oki/reference/chrome_desktop_Layout_EuiFlyout_EuiFlyoutResizable_Playground.png
Oops, something went wrong.
Binary file modified
BIN
-370 Bytes
(98%)
...es/eui/.loki/reference/chrome_desktop_Layout_EuiFlyout_EuiFlyout_Playground.png
Oops, something went wrong.
Binary file modified
BIN
-41.6 KB
(67%)
.../eui/.loki/reference/chrome_desktop_Layout_EuiFlyout_EuiFlyout_Push_Flyouts.png
Oops, something went wrong.
Binary file modified
BIN
-1.42 KB
(89%)
...i/.loki/reference/chrome_desktop_Layout_EuiHeader_EuiHeaderAlert_Playground.png
Oops, something went wrong.
Binary file modified
BIN
+46 Bytes
(100%)
...ki/reference/chrome_desktop_Layout_EuiHeader_EuiHeaderAlert_Popover_Example.png
Oops, something went wrong.
Binary file modified
BIN
+157 Bytes
(100%)
...i/reference/chrome_desktop_Layout_EuiHeader_EuiHeaderBreadcrumbs_Playground.png
Oops, something went wrong.
Binary file modified
BIN
-17 Bytes
(99%)
...ui/.loki/reference/chrome_desktop_Layout_EuiHeader_EuiHeaderLink_Playground.png
Oops, something went wrong.
Binary file modified
BIN
+302 Bytes
(110%)
...i/.loki/reference/chrome_desktop_Layout_EuiHeader_EuiHeaderLinks_Playground.png
Oops, something went wrong.
Binary file modified
BIN
+160 Bytes
(110%)
...ui/.loki/reference/chrome_desktop_Layout_EuiHeader_EuiHeaderLogo_Playground.png
Oops, something went wrong.
Binary file modified
BIN
+160 Bytes
(110%)
...eui/.loki/reference/chrome_desktop_Layout_EuiHeader_EuiHeaderLogo_With_Text.png
Oops, something went wrong.
Binary file modified
BIN
-46 Bytes
(98%)
...ktop_Layout_EuiHeader_EuiHeaderSection_EuiHeaderSectionItemButton_Animation.png
Oops, something went wrong.
Binary file modified
BIN
-6 Bytes
(100%)
...p_Layout_EuiHeader_EuiHeaderSection_EuiHeaderSectionItemButton_Notification.png
Oops, something went wrong.
Binary file modified
BIN
+12 Bytes
(100%)
...top_Layout_EuiHeader_EuiHeaderSection_EuiHeaderSectionItemButton_Playground.png
Oops, something went wrong.
Binary file modified
BIN
-27 Bytes
(99%)
...e_desktop_Layout_EuiHeader_EuiHeaderSection_EuiHeaderSectionItem_Playground.png
Oops, something went wrong.
Binary file modified
BIN
+115 Bytes
(110%)
...hrome_desktop_Layout_EuiHeader_EuiHeaderSection_EuiHeaderSection_Playground.png
Oops, something went wrong.
Binary file modified
BIN
-3.28 KB
(89%)
.../reference/chrome_desktop_Layout_EuiHeader_EuiHeader_Multiple_Fixed_Headers.png
Oops, something went wrong.
Binary file modified
BIN
-209 Bytes
(98%)
...ages/eui/.loki/reference/chrome_desktop_Layout_EuiHeader_EuiHeader_Sections.png
Oops, something went wrong.
Binary file modified
BIN
-258 Bytes
(93%)
...s/eui/.loki/reference/chrome_desktop_Layout_EuiInputPopover_Anchor_Position.png
Oops, something went wrong.
Binary file modified
BIN
-631 Bytes
(84%)
packages/eui/.loki/reference/chrome_desktop_Layout_EuiInputPopover_Playground.png
Oops, something went wrong.
Binary file modified
BIN
+234 Bytes
(100%)
.../eui/.loki/reference/chrome_desktop_Layout_EuiModal_EuiModalBody_Playground.png
Oops, something went wrong.
Binary file modified
BIN
+13 Bytes
(100%)
...ui/.loki/reference/chrome_desktop_Layout_EuiModal_EuiModalFooter_Playground.png
Oops, something went wrong.
Binary file modified
BIN
-994 Bytes
(93%)
...oki/reference/chrome_desktop_Layout_EuiModal_EuiModalHeaderTitle_Playground.png
Oops, something went wrong.
Binary file modified
BIN
-143 Bytes
(99%)
...ui/.loki/reference/chrome_desktop_Layout_EuiModal_EuiModalHeader_Playground.png
Oops, something went wrong.
Binary file modified
BIN
+229 Bytes
(100%)
...s/eui/.loki/reference/chrome_desktop_Layout_EuiModal_EuiModal_Initial_Focus.png
Oops, something went wrong.
Binary file modified
BIN
+271 Bytes
(100%)
...ages/eui/.loki/reference/chrome_desktop_Layout_EuiModal_EuiModal_Playground.png
Oops, something went wrong.
Binary file modified
BIN
+188 Bytes
(100%)
.../eui/.loki/reference/chrome_desktop_Layout_EuiModal_EuiModal_Toggle_Example.png
Oops, something went wrong.
Binary file modified
BIN
-42 Bytes
(100%)
...chrome_desktop_Layout_EuiPage_EuiPageHeader_EuiPageHeaderContent_Playground.png
Oops, something went wrong.
Binary file modified
BIN
-172 Bytes
(97%)
...chrome_desktop_Layout_EuiPage_EuiPageHeader_EuiPageHeaderSection_Playground.png
Oops, something went wrong.
Binary file modified
BIN
-42 Bytes
(100%)
...erence/chrome_desktop_Layout_EuiPage_EuiPageHeader_EuiPageHeader_Playground.png
Oops, something went wrong.
Binary file modified
BIN
-175 Bytes
(93%)
packages/eui/.loki/reference/chrome_desktop_Layout_EuiPanel_Playground.png
Oops, something went wrong.
Binary file modified
BIN
-105 Bytes
(94%)
...loki/reference/chrome_desktop_Layout_EuiPopover_EuiPopoverFooter_Playground.png
Oops, something went wrong.
Binary file modified
BIN
-103 Bytes
(94%)
....loki/reference/chrome_desktop_Layout_EuiPopover_EuiPopoverTitle_Playground.png
Oops, something went wrong.
Binary file modified
BIN
-3.85 KB
(85%)
...ki/reference/chrome_desktop_Layout_EuiPopover_EuiPopover_Panel_Padding_Size.png
Oops, something went wrong.
Binary file modified
BIN
-850 Bytes
(94%)
.../eui/.loki/reference/chrome_desktop_Layout_EuiPopover_EuiPopover_Playground.png
Oops, something went wrong.
Binary file modified
BIN
-59.4 KB
(60%)
...sktop_Layout_EuiResizableContainer_EuiResizableContainer_Collapsible_Panels.png
Oops, something went wrong.
Binary file modified
BIN
-23.2 KB
(67%)
...hrome_desktop_Layout_EuiResizableContainer_EuiResizableContainer_Playground.png
Oops, something went wrong.
Binary file modified
BIN
-2.82 KB
(79%)
...esizableContainer_Subcomponents_EuiResizableCollapseButton_Production_Usage.png
Oops, something went wrong.
Binary file modified
BIN
-6.6 KB
(64%)
...top_Layout_EuiResizableContainer_Subcomponents_EuiResizablePanel_Playground.png
Oops, something went wrong.
Binary file modified
BIN
-4.32 KB
(70%)
packages/eui/.loki/reference/chrome_desktop_Layout_EuiSpacer_Playground.png
Oops, something went wrong.
Binary file modified
BIN
-2.38 KB
(86%)
...s/eui/.loki/reference/chrome_desktop_Layout_EuiSplitPanel_Split_Panel_Inner.png
Oops, something went wrong.
Binary file modified
BIN
-292 Bytes
(95%)
...s/eui/.loki/reference/chrome_desktop_Layout_EuiSplitPanel_Split_Panel_Outer.png
Oops, something went wrong.
Binary file modified
BIN
-874 Bytes
(94%)
...ges/eui/.loki/reference/chrome_desktop_Layout_EuiWrappingPopover_Playground.png
Oops, something went wrong.
Binary file modified
BIN
-27 Bytes
(99%)
...ges/eui/.loki/reference/chrome_desktop_Navigation_EuiBreadcrumbs_Playground.png
Oops, something went wrong.
Binary file modified
BIN
+5 Bytes
(100%)
...ges/eui/.loki/reference/chrome_desktop_Navigation_EuiButtonEmpty_Playground.png
Oops, something went wrong.
Binary file modified
BIN
-151 Bytes
(96%)
...ui/.loki/reference/chrome_desktop_Navigation_EuiButtonGroup_Multi_Selection.png
Oops, something went wrong.
Binary file modified
BIN
-151 Bytes
(96%)
...i/.loki/reference/chrome_desktop_Navigation_EuiButtonGroup_Single_Selection.png
Oops, something went wrong.
Binary file modified
BIN
+143 Bytes
(110%)
packages/eui/.loki/reference/chrome_desktop_Navigation_EuiButton_Playground.png
Oops, something went wrong.
Binary file modified
BIN
-905 Bytes
(89%)
...hrome_desktop_Navigation_EuiCollapsibleNav_EuiCollapsibleNavGroup_Accordion.png
Oops, something went wrong.
Binary file modified
BIN
-153 Bytes
(95%)
...chrome_desktop_Navigation_EuiCollapsibleNav_EuiCollapsibleNavGroup_No_Title.png
Oops, something went wrong.
Binary file modified
BIN
-22 Bytes
(99%)
...e_desktop_Navigation_EuiCollapsibleNav_EuiCollapsibleNavGroup_Non_Accordion.png
Oops, something went wrong.
Binary file modified
BIN
+7 Bytes
(100%)
...ce/chrome_desktop_Navigation_EuiCollapsibleNav_EuiCollapsibleNav_Playground.png
Oops, something went wrong.
Binary file modified
BIN
-2.91 KB
(81%)
...iCollapsibleNav_beta_EuiCollapsibleNavBeta_Collapsed_State_In_Local_Storage.png
Oops, something went wrong.
Binary file modified
BIN
-871 Bytes
(95%)
...ktop_Navigation_EuiCollapsibleNav_beta_EuiCollapsibleNavBeta_Flyout_Overlay.png
Oops, something went wrong.
Binary file modified
BIN
-4.54 KB
(82%)
...Navigation_EuiCollapsibleNav_beta_EuiCollapsibleNavBeta_Global_CSS_Variable.png
Oops, something went wrong.
Binary file modified
BIN
+395 Bytes
(100%)
..._desktop_Navigation_EuiCollapsibleNav_beta_EuiCollapsibleNavBeta_Playground.png
Oops, something went wrong.
Binary file modified
BIN
-838 Bytes
(98%)
...p_Navigation_EuiCollapsibleNav_beta_EuiCollapsibleNavItem_Edge_Case_Testing.png
Oops, something went wrong.
Binary file modified
BIN
+334 Bytes
(110%)
..._desktop_Navigation_EuiCollapsibleNav_beta_EuiCollapsibleNavItem_Playground.png
Oops, something went wrong.
Binary file modified
BIN
-852 Bytes
(98%)
.../chrome_desktop_Navigation_EuiCollapsibleNav_beta_KibanaSolution_Playground.png
Oops, something went wrong.
Binary file modified
BIN
-448 Bytes
(86%)
...ence/chrome_desktop_Navigation_EuiContextMenu_EuiContextMenuItem_Playground.png
Oops, something went wrong.
Binary file modified
BIN
-1.23 KB
(89%)
...nce/chrome_desktop_Navigation_EuiContextMenu_EuiContextMenuPanel_Playground.png
Oops, something went wrong.
Binary file modified
BIN
-736 Bytes
(80%)
...eference/chrome_desktop_Navigation_EuiContextMenu_EuiContextMenu_In_Popover.png
Oops, something went wrong.
Binary file modified
BIN
-1.3 KB
(93%)
...eference/chrome_desktop_Navigation_EuiContextMenu_EuiContextMenu_Playground.png
Oops, something went wrong.
Binary file modified
BIN
+197 Bytes
(110%)
...ges/eui/.loki/reference/chrome_desktop_Navigation_EuiFacetButton_Playground.png
Oops, something went wrong.
Binary file modified
BIN
+389 Bytes
(110%)
...ages/eui/.loki/reference/chrome_desktop_Navigation_EuiFacetGroup_Playground.png
Oops, something went wrong.
Binary file modified
BIN
+121 Bytes
(100%)
...erence/chrome_desktop_Navigation_EuiKeyPadMenu_EuiKeyPadMenuItem_Playground.png
Oops, something went wrong.
Binary file modified
BIN
-787 Bytes
(95%)
...rence/chrome_desktop_Navigation_EuiKeyPadMenu_EuiKeyPadMenu_Checkable_Multi.png
Oops, something went wrong.
Binary file modified
BIN
-668 Bytes
(96%)
...ence/chrome_desktop_Navigation_EuiKeyPadMenu_EuiKeyPadMenu_Checkable_Single.png
Oops, something went wrong.
Binary file modified
BIN
-656 Bytes
(95%)
.../reference/chrome_desktop_Navigation_EuiKeyPadMenu_EuiKeyPadMenu_Playground.png
Oops, something went wrong.
Binary file modified
BIN
-106 Bytes
(95%)
packages/eui/.loki/reference/chrome_desktop_Navigation_EuiLink_Playground.png
Oops, something went wrong.
Binary file modified
BIN
+350 Bytes
(110%)
.../reference/chrome_desktop_Navigation_EuiPagination_EuiPagination_Playground.png
Oops, something went wrong.
Binary file modified
BIN
-29 Bytes
(89%)
...sktop_Navigation_EuiPagination_Subcomponents_EuiPaginationButton_Playground.png
Oops, something went wrong.
Binary file modified
BIN
-3.98 KB
(87%)
...es/eui/.loki/reference/chrome_desktop_Navigation_EuiSideNav_Mobile_Side_Nav.png
Oops, something went wrong.
Binary file modified
BIN
-3.77 KB
(88%)
packages/eui/.loki/reference/chrome_desktop_Navigation_EuiSideNav_Playground.png
Oops, something went wrong.
Binary file modified
BIN
+105 Bytes
(100%)
packages/eui/.loki/reference/chrome_desktop_Navigation_EuiSideNav_Render_Item.png
Oops, something went wrong.
Binary file modified
BIN
+16 Bytes
(100%)
...desktop_Navigation_EuiSteps_EuiStepsHorizontal_EuiStepHorizontal_Playground.png
Oops, something went wrong.
Binary file modified
BIN
-459 Bytes
(97%)
.../reference/chrome_desktop_Navigation_EuiSteps_EuiStepsHorizontal_Playground.png
Oops, something went wrong.
Binary file modified
BIN
-506 Bytes
(95%)
...rence/chrome_desktop_Navigation_EuiSteps_EuiStepsHorizontal_Unordered_Steps.png
Oops, something went wrong.
Binary file modified
BIN
-1.69 KB
(85%)
...ference/chrome_desktop_Navigation_EuiSteps_EuiSteps_EuiStep_Multiline_Title.png
Oops, something went wrong.
Binary file modified
BIN
-1.98 KB
(79%)
...nce/chrome_desktop_Navigation_EuiSteps_EuiSteps_EuiStep_Multiline_Title_XXS.png
Oops, something went wrong.
Binary file modified
BIN
+174 Bytes
(100%)
...ki/reference/chrome_desktop_Navigation_EuiSteps_EuiSteps_EuiStep_Playground.png
Oops, something went wrong.
Binary file modified
BIN
+2.56 KB
(110%)
.../eui/.loki/reference/chrome_desktop_Navigation_EuiSteps_EuiSteps_Playground.png
Oops, something went wrong.
Binary file modified
BIN
+1.47 KB
(100%)
....loki/reference/chrome_desktop_Navigation_EuiSteps_EuiSteps_Unordered_Steps.png
Oops, something went wrong.
Binary file modified
BIN
-17 Bytes
(98%)
...e/chrome_desktop_Navigation_EuiSteps_Subcomponents_EuiStepNumber_Playground.png
Oops, something went wrong.
Binary file modified
BIN
-291 Bytes
(89%)
...nce/chrome_desktop_Navigation_EuiSteps_Subcomponents_EuiSubSteps_Playground.png
Oops, something went wrong.
Binary file modified
BIN
-4.02 KB
(72%)
...s/eui/.loki/reference/chrome_desktop_Navigation_EuiTabbedContent_Playground.png
Oops, something went wrong.
Binary file modified
BIN
-232 Bytes
(82%)
...ges/eui/.loki/reference/chrome_desktop_Navigation_EuiTabs_EuiTab_Playground.png
Oops, something went wrong.
Binary file modified
BIN
-249 Bytes
(91%)
...es/eui/.loki/reference/chrome_desktop_Navigation_EuiTabs_EuiTabs_Playground.png
Oops, something went wrong.
Binary file modified
BIN
+85 Bytes
(100%)
...reference/chrome_desktop_Navigation_EuiTreeView_EuiTreeView_Item_Playground.png
Oops, something went wrong.
Binary file modified
BIN
+431 Bytes
(110%)
...loki/reference/chrome_desktop_Navigation_EuiTreeView_EuiTreeView_Playground.png
Oops, something went wrong.
Binary file modified
BIN
-6.13 KB
(84%)
...i/.loki/reference/chrome_desktop_Tabular_Content_EuiBasicTable_Expanded_Row.png
Oops, something went wrong.
Binary file modified
BIN
-3.01 KB
(88%)
...eui/.loki/reference/chrome_desktop_Tabular_Content_EuiBasicTable_Playground.png
Oops, something went wrong.
Binary file modified
BIN
-4.83 KB
(90%)
...oki/reference/chrome_desktop_Tabular_Content_EuiDataGrid_Custom_Row_Heights.png
Oops, something went wrong.
Binary file modified
BIN
-5.08 KB
(89%)
...loki/reference/chrome_desktop_Tabular_Content_EuiDataGrid_Height_Line_Count.png
Oops, something went wrong.
Binary file modified
BIN
-17.4 KB
(86%)
...s/eui/.loki/reference/chrome_desktop_Tabular_Content_EuiDataGrid_Playground.png
Oops, something went wrong.
Binary file modified
BIN
-5.36 KB
(90%)
...s/eui/.loki/reference/chrome_desktop_Tabular_Content_EuiDataGrid_Row_Height.png
Oops, something went wrong.
Binary file modified
BIN
-3.7 KB
(91%)
...loki/reference/chrome_desktop_Tabular_Content_EuiInMemoryTable_Kitchen_Sink.png
Oops, something went wrong.
Binary file modified
BIN
-2.09 KB
(56%)
...i/reference/chrome_desktop_Tabular_Content_EuiTable_EuiTableBody_Playground.png
Oops, something went wrong.
Binary file modified
BIN
-627 Bytes
(72%)
...sktop_Tabular_Content_EuiTable_EuiTableFooter_EuiTableFooterCell_Playground.png
Oops, something went wrong.
Binary file modified
BIN
-1.33 KB
(76%)
...e_desktop_Tabular_Content_EuiTable_EuiTableFooter_EuiTableFooter_Playground.png
Oops, something went wrong.
Binary file modified
BIN
-189 Bytes
(93%)
...bular_Content_EuiTable_EuiTableHeader_EuiTableHeaderCellCheckbox_Playground.png
Oops, something went wrong.
Binary file modified
BIN
-289 Bytes
(87%)
...sktop_Tabular_Content_EuiTable_EuiTableHeader_EuiTableHeaderCell_Playground.png
Oops, something went wrong.
Binary file modified
BIN
-1.88 KB
(70%)
...e_desktop_Tabular_Content_EuiTable_EuiTableHeader_EuiTableHeader_Playground.png
Oops, something went wrong.
Binary file modified
BIN
+215 Bytes
(110%)
...rence/chrome_desktop_Tabular_Content_EuiTable_EuiTablePagination_Playground.png
Oops, something went wrong.
Binary file modified
BIN
-8 Bytes
(99%)
...top_Tabular_Content_EuiTable_EuiTableRow_EuiTableRowCellCheckbox_Playground.png
Oops, something went wrong.
Binary file modified
BIN
+36 Bytes
(100%)
...chrome_desktop_Tabular_Content_EuiTable_EuiTableRow_EuiTableRowCell_Actions.png
Oops, something went wrong.
Binary file modified
BIN
+1 Byte
(100%)
...hrome_desktop_Tabular_Content_EuiTable_EuiTableRow_EuiTableRowCell_Expander.png
Oops, something went wrong.
Binary file modified
BIN
-621 Bytes
(79%)
...ome_desktop_Tabular_Content_EuiTable_EuiTableRow_EuiTableRowCell_Playground.png
Oops, something went wrong.
Binary file modified
BIN
-905 Bytes
(77%)
.../chrome_desktop_Tabular_Content_EuiTable_EuiTableRow_EuiTableRow_Playground.png
Oops, something went wrong.
Binary file modified
BIN
-60 KB
(66%)
....loki/reference/chrome_desktop_Tabular_Content_EuiTable_EuiTable_Playground.png
Oops, something went wrong.
Binary file modified
BIN
-423 Bytes
(86%)
...bular_Content_EuiTable_Mobile_subcomponents_EuiTableHeaderMobile_Playground.png
Oops, something went wrong.
Binary file modified
BIN
-12 Bytes
(99%)
...lar_Content_EuiTable_Mobile_subcomponents_EuiTableSortMobileItem_Playground.png
Oops, something went wrong.
Binary file modified
BIN
+181 Bytes
(110%)
...Tabular_Content_EuiTable_Mobile_subcomponents_EuiTableSortMobile_Playground.png
Oops, something went wrong.
Binary file modified
BIN
-3.51 KB
(89%)
...ges/eui/.loki/reference/chrome_desktop_Templates_EuiPageTemplate_Playground.png
Oops, something went wrong.
Binary file modified
BIN
-152 Bytes
(96%)
...reference/chrome_desktop_Templates_EuiSelectableTemplateSitewide_Playground.png
Oops, something went wrong.
Binary file modified
BIN
-432 Bytes
(90%)
...s/eui/.loki/reference/chrome_desktop_Theming_EuiProvider_Font_Default_Units.png
Oops, something went wrong.
Binary file modified
BIN
-5.46 KB
(67%)
...loki/reference/chrome_desktop_Theming_EuiThemeProvider_CSS_Variables_Global.png
Oops, something went wrong.
Binary file modified
BIN
-4.72 KB
(69%)
...oki/reference/chrome_desktop_Theming_EuiThemeProvider_CSS_Variables_Nearest.png
Oops, something went wrong.
Binary file modified
BIN
-1.41 KB
(72%)
...oki/reference/chrome_desktop_Theming_EuiThemeProvider_Wrapper_Clone_Element.png
Oops, something went wrong.
Binary file modified
BIN
-186 Bytes
(98%)
packages/eui/.loki/reference/chrome_desktop_Utilities_EuiAutoSizer_Playground.png
Oops, something went wrong.
Binary file modified
BIN
-34 Bytes
(100%)
packages/eui/.loki/reference/chrome_desktop_Utilities_EuiContext_Playground.png
Oops, something went wrong.
Binary file modified
BIN
-38 Bytes
(98%)
packages/eui/.loki/reference/chrome_desktop_Utilities_EuiCopy_Playground.png
Oops, something went wrong.
Binary file modified
BIN
-1.37 KB
(90%)
...es/eui/.loki/reference/chrome_desktop_Utilities_EuiErrorBoundary_Playground.png
Oops, something went wrong.
Binary file modified
BIN
-381 Bytes
(92%)
...oki/reference/chrome_desktop_Utilities_EuiHighlight_Multiple_Search_Strings.png
Oops, something went wrong.
Binary file modified
BIN
-147 Bytes
(97%)
packages/eui/.loki/reference/chrome_desktop_Utilities_EuiHighlight_Playground.png
Oops, something went wrong.
Binary file modified
BIN
-784 Bytes
(91%)
.../eui/.loki/reference/chrome_desktop_Utilities_EuiI18nNumber_Multiple_Values.png
Oops, something went wrong.
Binary file modified
BIN
-251 Bytes
(92%)
...ges/eui/.loki/reference/chrome_desktop_Utilities_EuiI18nNumber_Single_Value.png
Oops, something went wrong.
Binary file modified
BIN
-57 Bytes
(98%)
packages/eui/.loki/reference/chrome_desktop_Utilities_EuiI18n_Interpolation.png
Oops, something went wrong.
Binary file modified
BIN
-1.7 KB
(83%)
...oki/reference/chrome_desktop_Utilities_EuiI18n_Multiple_Token_Interpolation.png
Oops, something went wrong.
Binary file modified
BIN
+68 Bytes
(100%)
packages/eui/.loki/reference/chrome_desktop_Utilities_EuiI18n_Multiple_Tokens.png
Oops, something went wrong.
Binary file modified
BIN
-3.17 KB
(65%)
packages/eui/.loki/reference/chrome_desktop_Utilities_EuiI18n_Single_Token.png
Oops, something went wrong.
Binary file modified
BIN
-220 Bytes
(96%)
packages/eui/.loki/reference/chrome_desktop_Utilities_EuiInnerText_Playground.png
Oops, something went wrong.
Binary file modified
BIN
-3 Bytes
(100%)
packages/eui/.loki/reference/chrome_desktop_Utilities_EuiMark_Playground.png
Oops, something went wrong.
Binary file modified
BIN
-183 Bytes
(98%)
...eui/.loki/reference/chrome_desktop_Utilities_EuiMutationObserver_Playground.png
Oops, something went wrong.
Binary file modified
BIN
-1.48 KB
(76%)
....loki/reference/chrome_desktop_Utilities_EuiOutsideClickDetector_Playground.png
Oops, something went wrong.
Binary file modified
BIN
-1.48 KB
(83%)
packages/eui/.loki/reference/chrome_desktop_Utilities_EuiPortal_Playground.png
Oops, something went wrong.
Binary file modified
BIN
-1.53 KB
(88%)
...s/eui/.loki/reference/chrome_desktop_Utilities_EuiResizeObserver_Playground.png
Oops, something went wrong.
Binary file modified
BIN
-2.27 KB
(67%)
...ui/.loki/reference/chrome_desktop_Utilities_EuiTextBlockTruncate_Playground.png
Oops, something went wrong.
Binary file modified
BIN
-265 Bytes
(91%)
...ges/eui/.loki/reference/chrome_desktop_Utilities_EuiTextTruncate_Playground.png
Oops, something went wrong.
Binary file modified
BIN
-3.05 KB
(71%)
...ui/.loki/reference/chrome_desktop_Utilities_EuiTextTruncate_Resize_Observer.png
Oops, something went wrong.
Binary file modified
BIN
-1.92 KB
(78%)
...erence/chrome_desktop_Utilities_EuiTextTruncate_Start_End_Anchor_For_Search.png
Oops, something went wrong.
Binary file modified
BIN
+152 Bytes
(110%)
...ages/eui/.loki/reference/chrome_desktop_Utilities_useEuiTextDiff_Playground.png
Oops, something went wrong.
Binary file modified
BIN
-1.6 KB
(81%)
packages/eui/.loki/reference/chrome_mobile_Display_EuiAspectRatio_Playground.png
Oops, something went wrong.
Binary file modified
BIN
-35 Bytes
(99%)
packages/eui/.loki/reference/chrome_mobile_Display_EuiAvatar_Playground.png
Oops, something went wrong.
Binary file modified
BIN
-3.52 KB
(47%)
...eui/.loki/reference/chrome_mobile_Display_EuiBadge_EuiBadgeGroup_Playground.png
Oops, something went wrong.
Binary file modified
BIN
-181 Bytes
(93%)
...s/eui/.loki/reference/chrome_mobile_Display_EuiBadge_EuiBadge_Custom_Colors.png
Oops, something went wrong.
Binary file modified
BIN
-151 Bytes
(96%)
...ages/eui/.loki/reference/chrome_mobile_Display_EuiBadge_EuiBadge_Playground.png
Oops, something went wrong.
Binary file modified
BIN
-90 Bytes
(97%)
packages/eui/.loki/reference/chrome_mobile_Display_EuiBetaBadge_Playground.png
Oops, something went wrong.
Binary file modified
BIN
-513 Bytes
(94%)
packages/eui/.loki/reference/chrome_mobile_Display_EuiCallOut_Playground.png
Oops, something went wrong.
Binary file modified
BIN
-404 Bytes
(96%)
packages/eui/.loki/reference/chrome_mobile_Display_EuiCard_Playground.png
Oops, something went wrong.
Binary file modified
BIN
-239 Bytes
(97%)
packages/eui/.loki/reference/chrome_mobile_Display_EuiCheckableCard_Playground.png
Oops, something went wrong.
Binary file modified
BIN
-6.93 KB
(64%)
...eui/.loki/reference/chrome_mobile_Display_EuiComment_EuiCommentEvent_Custom.png
Oops, something went wrong.
Binary file modified
BIN
-11.6 KB
(73%)
...ui/.loki/reference/chrome_mobile_Display_EuiComment_EuiCommentEvent_Regular.png
Oops, something went wrong.
Binary file modified
BIN
-2.58 KB
(79%)
...eui/.loki/reference/chrome_mobile_Display_EuiComment_EuiCommentEvent_Update.png
Oops, something went wrong.
Binary file modified
BIN
-15.8 KB
(87%)
.../.loki/reference/chrome_mobile_Display_EuiComment_EuiCommentList_Playground.png
Oops, something went wrong.
Binary file modified
BIN
-4.53 KB
(80%)
.../eui/.loki/reference/chrome_mobile_Display_EuiComment_EuiComment_Playground.png
Oops, something went wrong.
Binary file modified
BIN
-18 KB
(82%)
packages/eui/.loki/reference/chrome_mobile_Display_EuiDescriptionList_Column.png
Oops, something went wrong.
Binary file modified
BIN
-20.8 KB
(74%)
packages/eui/.loki/reference/chrome_mobile_Display_EuiDescriptionList_Inline.png
Oops, something went wrong.
Binary file modified
BIN
-28.2 KB
(68%)
...ges/eui/.loki/reference/chrome_mobile_Display_EuiDescriptionList_Playground.png
Oops, something went wrong.
Binary file modified
BIN
-28.2 KB
(68%)
packages/eui/.loki/reference/chrome_mobile_Display_EuiDescriptionList_Row.png
Oops, something went wrong.
Binary file modified
BIN
-2.55 KB
(65%)
...y_EuiDescriptionList_Subcomponents_EuiDescriptionListDescription_Playground.png
Oops, something went wrong.
Binary file modified
BIN
-1.42 KB
(77%)
...Display_EuiDescriptionList_Subcomponents_EuiDescriptionListTitle_Playground.png
Oops, something went wrong.
Binary file modified
BIN
-1.27 KB
(81%)
packages/eui/.loki/reference/chrome_mobile_Display_EuiDraggable_Interactive.png
Oops, something went wrong.
Oops, something went wrong.