@elastic/eui 72.1.0 → 73.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6185 -0
- package/dist/eui_theme_dark.css +15 -15
- package/dist/eui_theme_dark.min.css +1 -1
- package/dist/eui_theme_light.css +15 -15
- package/dist/eui_theme_light.min.css +1 -1
- package/es/components/accordion/accordion.js +1 -1
- package/es/components/datagrid/controls/column_selector.js +23 -7
- package/es/components/datagrid/controls/column_sorting_draggable.js +17 -8
- package/es/components/datagrid/data_grid.a11y.js +3 -2
- package/es/components/date_picker/super_date_picker/super_date_picker.js +9 -0
- package/es/components/date_picker/super_date_picker/super_update_button.js +8 -0
- package/es/components/image/image.js +9 -2
- package/es/components/image/image_fullscreen_wrapper.js +3 -1
- package/es/components/image/image_wrapper.js +3 -1
- package/es/components/markdown_editor/markdown_format.styles.js +2 -5
- package/es/components/notification/notification_event.a11y.js +113 -0
- package/es/components/page/page_header/page_header.a11y.js +32 -0
- package/es/components/portal/portal.a11y.js +70 -0
- package/es/components/text/text.styles.js +6 -3
- package/es/components/tool_tip/icon_tip.js +8 -0
- package/es/components/tool_tip/tool_tip.js +34 -6
- package/es/components/tool_tip/tool_tip_manager.js +42 -0
- package/es/components/tour/tour.styles.js +1 -1
- package/eui.d.ts +23 -1
- package/i18ntokens.json +36 -20
- package/lib/components/accordion/accordion.js +1 -1
- package/lib/components/datagrid/controls/column_selector.js +21 -6
- package/lib/components/datagrid/controls/column_sorting_draggable.js +17 -8
- package/lib/components/datagrid/data_grid.a11y.js +3 -2
- package/lib/components/date_picker/super_date_picker/super_date_picker.js +9 -0
- package/lib/components/date_picker/super_date_picker/super_update_button.js +8 -0
- package/lib/components/image/image.js +9 -2
- package/lib/components/image/image_fullscreen_wrapper.js +3 -1
- package/lib/components/image/image_wrapper.js +3 -1
- package/lib/components/markdown_editor/markdown_format.styles.js +1 -4
- package/lib/components/notification/notification_event.a11y.js +117 -0
- package/lib/components/page/page_header/page_header.a11y.js +40 -0
- package/lib/components/portal/portal.a11y.js +73 -0
- package/lib/components/text/text.styles.js +5 -2
- package/lib/components/tool_tip/icon_tip.js +8 -0
- package/lib/components/tool_tip/tool_tip.js +37 -8
- package/lib/components/tool_tip/tool_tip_manager.js +50 -0
- package/lib/components/tour/tour.styles.js +1 -1
- package/optimize/es/components/accordion/accordion.js +1 -1
- package/optimize/es/components/datagrid/controls/column_selector.js +22 -7
- package/optimize/es/components/datagrid/controls/column_sorting_draggable.js +17 -8
- package/optimize/es/components/datagrid/data_grid.a11y.js +3 -2
- package/optimize/es/components/image/image.js +4 -2
- package/optimize/es/components/image/image_fullscreen_wrapper.js +3 -1
- package/optimize/es/components/image/image_wrapper.js +3 -1
- package/optimize/es/components/markdown_editor/markdown_format.styles.js +2 -5
- package/optimize/es/components/notification/notification_event.a11y.js +103 -0
- package/optimize/es/components/page/page_header/page_header.a11y.js +32 -0
- package/optimize/es/components/portal/portal.a11y.js +60 -0
- package/optimize/es/components/text/text.styles.js +6 -3
- package/optimize/es/components/tool_tip/tool_tip.js +26 -6
- package/optimize/es/components/tool_tip/tool_tip_manager.js +41 -0
- package/optimize/es/components/tour/tour.styles.js +1 -1
- package/optimize/lib/components/accordion/accordion.js +1 -1
- package/optimize/lib/components/datagrid/controls/column_selector.js +21 -6
- package/optimize/lib/components/datagrid/controls/column_sorting_draggable.js +17 -8
- package/optimize/lib/components/datagrid/data_grid.a11y.js +3 -2
- package/optimize/lib/components/image/image.js +4 -2
- package/optimize/lib/components/image/image_fullscreen_wrapper.js +3 -1
- package/optimize/lib/components/image/image_wrapper.js +3 -1
- package/optimize/lib/components/markdown_editor/markdown_format.styles.js +1 -4
- package/optimize/lib/components/notification/notification_event.a11y.js +117 -0
- package/optimize/lib/components/page/page_header/page_header.a11y.js +40 -0
- package/optimize/lib/components/portal/portal.a11y.js +73 -0
- package/optimize/lib/components/text/text.styles.js +5 -2
- package/optimize/lib/components/tool_tip/tool_tip.js +29 -8
- package/optimize/lib/components/tool_tip/tool_tip_manager.js +49 -0
- package/optimize/lib/components/tour/tour.styles.js +1 -1
- package/package.json +2 -2
- package/src/components/datagrid/controls/_data_grid_column_sorting.scss +14 -13
- package/src/components/date_picker/react-datepicker/LICENSE +21 -0
- package/src/components/date_picker/react-datepicker/README.md +168 -0
- package/src/components/markdown_editor/_markdown_format.scss +0 -4
- package/src/services/theme/README.md +153 -0
- package/src/test/README.md +59 -0
- package/test-env/components/accordion/accordion.js +1 -1
- package/test-env/components/datagrid/controls/column_selector.js +21 -6
- package/test-env/components/datagrid/controls/column_sorting_draggable.js +17 -8
- package/test-env/components/datagrid/data_grid.a11y.js +3 -2
- package/test-env/components/date_picker/super_date_picker/super_date_picker.js +9 -0
- package/test-env/components/date_picker/super_date_picker/super_update_button.js +8 -0
- package/test-env/components/image/image.js +9 -2
- package/test-env/components/image/image_fullscreen_wrapper.js +3 -1
- package/test-env/components/image/image_wrapper.js +3 -1
- package/test-env/components/markdown_editor/markdown_format.styles.js +1 -4
- package/test-env/components/notification/notification_event.a11y.js +117 -0
- package/test-env/components/page/page_header/page_header.a11y.js +40 -0
- package/test-env/components/portal/portal.a11y.js +73 -0
- package/test-env/components/text/text.styles.js +5 -2
- package/test-env/components/tool_tip/icon_tip.js +8 -0
- package/test-env/components/tool_tip/tool_tip.js +37 -8
- package/test-env/components/tool_tip/tool_tip_manager.js +49 -0
- package/test-env/components/tour/tour.styles.js +1 -1
package/dist/eui_theme_dark.css
CHANGED
|
@@ -3951,35 +3951,38 @@ The following files still use the Sass version:
|
|
|
3951
3951
|
color: #515761;
|
|
3952
3952
|
}
|
|
3953
3953
|
|
|
3954
|
-
.
|
|
3955
|
-
padding-
|
|
3954
|
+
.euiDataGridColumnSorting__name {
|
|
3955
|
+
padding-right: 24px;
|
|
3956
3956
|
}
|
|
3957
3957
|
@media only screen and (max-width: 574px) {
|
|
3958
|
-
.
|
|
3959
|
-
padding-
|
|
3958
|
+
.euiDataGridColumnSorting__name {
|
|
3959
|
+
padding-right: 4px;
|
|
3960
3960
|
}
|
|
3961
3961
|
}
|
|
3962
3962
|
@media only screen and (min-width: 575px) and (max-width: 767px) {
|
|
3963
|
-
.
|
|
3964
|
-
padding-
|
|
3963
|
+
.euiDataGridColumnSorting__name {
|
|
3964
|
+
padding-right: 4px;
|
|
3965
3965
|
}
|
|
3966
3966
|
}
|
|
3967
|
-
|
|
3967
|
+
|
|
3968
|
+
.euiDataGridColumnSorting__order {
|
|
3968
3969
|
min-width: 200px;
|
|
3969
|
-
border: none;
|
|
3970
3970
|
}
|
|
3971
3971
|
@media only screen and (max-width: 574px) {
|
|
3972
|
-
.
|
|
3972
|
+
.euiDataGridColumnSorting__order {
|
|
3973
3973
|
min-width: unset;
|
|
3974
3974
|
}
|
|
3975
3975
|
}
|
|
3976
3976
|
@media only screen and (min-width: 575px) and (max-width: 767px) {
|
|
3977
|
-
.
|
|
3977
|
+
.euiDataGridColumnSorting__order {
|
|
3978
3978
|
min-width: unset;
|
|
3979
3979
|
}
|
|
3980
3980
|
}
|
|
3981
|
-
.
|
|
3982
|
-
|
|
3981
|
+
.euiDataGridColumnSorting__order .euiButtonGroup__buttons {
|
|
3982
|
+
border: none;
|
|
3983
|
+
}
|
|
3984
|
+
.euiDataGridColumnSorting__order .euiButtonGroupButton {
|
|
3985
|
+
font-size: 12px;
|
|
3983
3986
|
}
|
|
3984
3987
|
|
|
3985
3988
|
.euiDataGrid__displayPopoverPanel {
|
|
@@ -7684,9 +7687,6 @@ The following files still use the Sass version:
|
|
|
7684
7687
|
.euiMarkdownFormat[class*=euiTextColor-custom] .euiMarkdownFormat__table tr {
|
|
7685
7688
|
border-top: 1px solid currentColor;
|
|
7686
7689
|
}
|
|
7687
|
-
.euiMarkdownFormat .euiMarkdownFormat__blockquote {
|
|
7688
|
-
border-left-style: solid;
|
|
7689
|
-
}
|
|
7690
7690
|
.euiMarkdownFormat .euiCheckbox {
|
|
7691
7691
|
margin-bottom: 0 !important;
|
|
7692
7692
|
}
|