@elastic/eui 72.2.0 → 74.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/dist/eui_theme_dark.css +15 -67
- package/dist/eui_theme_dark.min.css +1 -1
- package/dist/eui_theme_light.css +15 -67
- package/dist/eui_theme_light.min.css +1 -1
- package/es/components/basic_table/basic_table.js +56 -101
- package/es/components/basic_table/basic_table.styles.js +45 -0
- 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/modal/confirm_modal.js +5 -3
- package/es/components/modal/modal.a11y.js +1 -1
- package/es/components/modal/modal_header_title.js +12 -3
- 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/resizable_container/resizable_panel.js +5 -0
- package/es/components/tool_tip/tool_tip.js +10 -5
- package/es/components/tool_tip/tool_tip_manager.js +42 -0
- package/es/services/security/get_secure_rel_for_target.js +2 -8
- package/es/services/theme/hooks.js +18 -0
- package/es/services/theme/index.js +1 -1
- package/eui.d.ts +57 -19
- package/i18ntokens.json +54 -38
- package/lib/components/basic_table/basic_table.js +56 -100
- package/lib/components/basic_table/basic_table.styles.js +54 -0
- 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/modal/confirm_modal.js +5 -3
- package/lib/components/modal/modal.a11y.js +1 -1
- package/lib/components/modal/modal_header_title.js +12 -3
- 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/resizable_container/resizable_panel.js +5 -0
- package/lib/components/tool_tip/tool_tip.js +13 -7
- package/lib/components/tool_tip/tool_tip_manager.js +50 -0
- package/lib/services/security/get_secure_rel_for_target.js +2 -9
- package/lib/services/theme/hooks.js +22 -2
- package/lib/services/theme/index.js +6 -0
- package/optimize/es/components/basic_table/basic_table.js +56 -101
- package/optimize/es/components/basic_table/basic_table.styles.js +45 -0
- 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/modal/confirm_modal.js +4 -3
- package/optimize/es/components/modal/modal.a11y.js +1 -1
- package/optimize/es/components/modal/modal_header_title.js +4 -2
- 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/tool_tip/tool_tip.js +10 -5
- package/optimize/es/components/tool_tip/tool_tip_manager.js +41 -0
- package/optimize/es/services/security/get_secure_rel_for_target.js +2 -8
- package/optimize/es/services/theme/hooks.js +18 -0
- package/optimize/es/services/theme/index.js +1 -1
- package/optimize/lib/components/basic_table/basic_table.js +56 -95
- package/optimize/lib/components/basic_table/basic_table.styles.js +56 -0
- 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/modal/confirm_modal.js +4 -3
- package/optimize/lib/components/modal/modal.a11y.js +1 -1
- package/optimize/lib/components/modal/modal_header_title.js +4 -2
- 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/tool_tip/tool_tip.js +13 -7
- package/optimize/lib/components/tool_tip/tool_tip_manager.js +49 -0
- package/optimize/lib/services/security/get_secure_rel_for_target.js +2 -9
- package/optimize/lib/services/theme/hooks.js +22 -2
- package/optimize/lib/services/theme/index.js +6 -0
- package/package.json +1 -1
- package/src/components/datagrid/controls/_data_grid_column_sorting.scss +14 -13
- package/src/components/index.scss +0 -1
- package/test-env/components/basic_table/basic_table.js +56 -95
- package/test-env/components/basic_table/basic_table.styles.js +56 -0
- 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/modal/confirm_modal.js +5 -3
- package/test-env/components/modal/modal.a11y.js +1 -1
- package/test-env/components/modal/modal_header_title.js +12 -3
- 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/resizable_container/resizable_panel.js +5 -0
- package/test-env/components/tool_tip/tool_tip.js +13 -7
- package/test-env/components/tool_tip/tool_tip_manager.js +49 -0
- package/test-env/services/security/get_secure_rel_for_target.js +2 -9
- package/test-env/services/theme/hooks.js +22 -2
- package/test-env/services/theme/index.js +6 -0
- package/es/services/url.js +0 -23
- package/lib/services/url.js +0 -32
- package/optimize/es/services/url.js +0 -23
- package/optimize/lib/services/url.js +0 -32
- package/src/components/basic_table/_basic_table.scss +0 -41
- package/src/components/basic_table/_index.scss +0 -1
- package/test-env/services/url.js +0 -32
package/dist/eui_theme_light.css
CHANGED
|
@@ -890,61 +890,6 @@ The following files still use the Sass version:
|
|
|
890
890
|
visibility: visible;
|
|
891
891
|
}
|
|
892
892
|
|
|
893
|
-
.euiBasicTable-loading {
|
|
894
|
-
position: relative;
|
|
895
|
-
}
|
|
896
|
-
.euiBasicTable-loading tbody {
|
|
897
|
-
overflow: hidden;
|
|
898
|
-
}
|
|
899
|
-
.euiBasicTable-loading tbody::before {
|
|
900
|
-
position: absolute;
|
|
901
|
-
content: "";
|
|
902
|
-
width: 100%;
|
|
903
|
-
height: 2px;
|
|
904
|
-
background-color: #07C;
|
|
905
|
-
-webkit-animation: euiBasicTableLoading 1000ms linear;
|
|
906
|
-
animation: euiBasicTableLoading 1000ms linear;
|
|
907
|
-
-webkit-animation-iteration-count: infinite;
|
|
908
|
-
animation-iteration-count: infinite;
|
|
909
|
-
}
|
|
910
|
-
|
|
911
|
-
@-webkit-keyframes euiBasicTableLoading {
|
|
912
|
-
from {
|
|
913
|
-
left: 0;
|
|
914
|
-
width: 0;
|
|
915
|
-
}
|
|
916
|
-
20% {
|
|
917
|
-
left: 0;
|
|
918
|
-
width: 40%;
|
|
919
|
-
}
|
|
920
|
-
80% {
|
|
921
|
-
left: 60%;
|
|
922
|
-
width: 40%;
|
|
923
|
-
}
|
|
924
|
-
100% {
|
|
925
|
-
left: 100%;
|
|
926
|
-
width: 0;
|
|
927
|
-
}
|
|
928
|
-
}
|
|
929
|
-
|
|
930
|
-
@keyframes euiBasicTableLoading {
|
|
931
|
-
from {
|
|
932
|
-
left: 0;
|
|
933
|
-
width: 0;
|
|
934
|
-
}
|
|
935
|
-
20% {
|
|
936
|
-
left: 0;
|
|
937
|
-
width: 40%;
|
|
938
|
-
}
|
|
939
|
-
80% {
|
|
940
|
-
left: 60%;
|
|
941
|
-
width: 40%;
|
|
942
|
-
}
|
|
943
|
-
100% {
|
|
944
|
-
left: 100%;
|
|
945
|
-
width: 0;
|
|
946
|
-
}
|
|
947
|
-
}
|
|
948
893
|
.euiButtonContent {
|
|
949
894
|
height: 100%;
|
|
950
895
|
width: 100%;
|
|
@@ -3951,35 +3896,38 @@ The following files still use the Sass version:
|
|
|
3951
3896
|
color: #ABB4C4;
|
|
3952
3897
|
}
|
|
3953
3898
|
|
|
3954
|
-
.
|
|
3955
|
-
padding-
|
|
3899
|
+
.euiDataGridColumnSorting__name {
|
|
3900
|
+
padding-right: 24px;
|
|
3956
3901
|
}
|
|
3957
3902
|
@media only screen and (max-width: 574px) {
|
|
3958
|
-
.
|
|
3959
|
-
padding-
|
|
3903
|
+
.euiDataGridColumnSorting__name {
|
|
3904
|
+
padding-right: 4px;
|
|
3960
3905
|
}
|
|
3961
3906
|
}
|
|
3962
3907
|
@media only screen and (min-width: 575px) and (max-width: 767px) {
|
|
3963
|
-
.
|
|
3964
|
-
padding-
|
|
3908
|
+
.euiDataGridColumnSorting__name {
|
|
3909
|
+
padding-right: 4px;
|
|
3965
3910
|
}
|
|
3966
3911
|
}
|
|
3967
|
-
|
|
3912
|
+
|
|
3913
|
+
.euiDataGridColumnSorting__order {
|
|
3968
3914
|
min-width: 200px;
|
|
3969
|
-
border: none;
|
|
3970
3915
|
}
|
|
3971
3916
|
@media only screen and (max-width: 574px) {
|
|
3972
|
-
.
|
|
3917
|
+
.euiDataGridColumnSorting__order {
|
|
3973
3918
|
min-width: unset;
|
|
3974
3919
|
}
|
|
3975
3920
|
}
|
|
3976
3921
|
@media only screen and (min-width: 575px) and (max-width: 767px) {
|
|
3977
|
-
.
|
|
3922
|
+
.euiDataGridColumnSorting__order {
|
|
3978
3923
|
min-width: unset;
|
|
3979
3924
|
}
|
|
3980
3925
|
}
|
|
3981
|
-
.
|
|
3982
|
-
|
|
3926
|
+
.euiDataGridColumnSorting__order .euiButtonGroup__buttons {
|
|
3927
|
+
border: none;
|
|
3928
|
+
}
|
|
3929
|
+
.euiDataGridColumnSorting__order .euiButtonGroupButton {
|
|
3930
|
+
font-size: 12px;
|
|
3983
3931
|
}
|
|
3984
3932
|
|
|
3985
3933
|
.euiDataGrid__displayPopoverPanel {
|