@elastic/eui 91.3.1 → 92.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_charts_theme.js.map +1 -1
- package/dist/eui_theme_dark.css +0 -513
- package/dist/eui_theme_dark.min.css +1 -1
- package/dist/eui_theme_light.css +0 -513
- package/dist/eui_theme_light.min.css +1 -1
- package/es/components/basic_table/basic_table.js +5 -5
- package/es/components/drag_and_drop/drag_and_drop.a11y.js +1 -1
- package/es/components/filter_group/filter_button.js +20 -13
- package/es/components/filter_group/filter_button.styles.js +11 -20
- package/es/components/flyout/flyout.js +4 -4
- package/es/components/flyout/flyout_resizable.js +127 -0
- package/es/components/flyout/flyout_resizable.styles.js +27 -0
- package/es/components/flyout/index.js +2 -1
- package/es/components/form/range/dual_range.js +15 -66
- package/es/components/form/range/range.js +6 -5
- package/es/components/form/range/range_slider.js +28 -22
- package/es/components/form/text_area/text_area.js +39 -3
- package/es/components/index.js +0 -2
- package/es/components/markdown_editor/markdown_editor.js +12 -13
- package/es/components/page_template/bottom_bar/page_bottom_bar.js +1 -1
- package/es/components/selectable/selectable_list/selectable_list_item.js +1 -1
- package/es/components/selectable/selectable_templates/selectable_template_sitewide.js +5 -0
- package/es/components/tree_view/tree_view.js +23 -25
- package/es/utils/prop_types/is.js +2 -2
- package/eui.d.ts +825 -1141
- package/i18ntokens.json +68 -338
- package/lib/components/basic_table/basic_table.js +5 -5
- package/lib/components/drag_and_drop/drag_and_drop.a11y.js +1 -1
- package/lib/components/filter_group/filter_button.js +20 -13
- package/lib/components/filter_group/filter_button.styles.js +11 -20
- package/lib/components/flyout/flyout.js +4 -4
- package/lib/components/flyout/flyout_resizable.js +136 -0
- package/lib/components/flyout/flyout_resizable.styles.js +32 -0
- package/lib/components/flyout/index.js +8 -1
- package/lib/components/form/range/dual_range.js +15 -66
- package/lib/components/form/range/range.js +6 -5
- package/lib/components/form/range/range_slider.js +27 -21
- package/lib/components/form/text_area/text_area.js +42 -3
- package/lib/components/index.js +0 -22
- package/lib/components/markdown_editor/markdown_editor.js +12 -13
- package/lib/components/page_template/bottom_bar/page_bottom_bar.js +1 -1
- package/lib/components/pagination/pagination_button.js +79 -2
- package/lib/components/selectable/selectable_list/selectable_list_item.js +1 -1
- package/lib/components/tree_view/tree_view.js +23 -25
- package/lib/utils/prop_types/is.js +2 -2
- package/optimize/es/components/basic_table/basic_table.js +5 -5
- package/optimize/es/components/drag_and_drop/drag_and_drop.a11y.js +1 -1
- package/optimize/es/components/filter_group/filter_button.js +20 -13
- package/optimize/es/components/filter_group/filter_button.styles.js +11 -20
- package/optimize/es/components/flyout/flyout.js +4 -4
- package/optimize/es/components/flyout/flyout_resizable.js +121 -0
- package/optimize/es/components/flyout/flyout_resizable.styles.js +27 -0
- package/optimize/es/components/flyout/index.js +2 -1
- package/optimize/es/components/form/range/dual_range.js +15 -66
- package/optimize/es/components/form/range/range.js +6 -5
- package/optimize/es/components/form/range/range_slider.js +26 -21
- package/optimize/es/components/form/text_area/text_area.js +29 -3
- package/optimize/es/components/index.js +0 -2
- package/optimize/es/components/markdown_editor/markdown_editor.js +12 -13
- package/optimize/es/components/page_template/bottom_bar/page_bottom_bar.js +1 -1
- package/optimize/es/components/selectable/selectable_list/selectable_list_item.js +1 -1
- package/optimize/es/components/tree_view/tree_view.js +23 -25
- package/optimize/es/utils/prop_types/is.js +2 -2
- package/optimize/lib/components/basic_table/basic_table.js +5 -5
- package/optimize/lib/components/drag_and_drop/drag_and_drop.a11y.js +1 -1
- package/optimize/lib/components/filter_group/filter_button.js +20 -13
- package/optimize/lib/components/filter_group/filter_button.styles.js +11 -20
- package/optimize/lib/components/flyout/flyout.js +4 -4
- package/optimize/lib/components/flyout/flyout_resizable.js +131 -0
- package/optimize/lib/components/flyout/flyout_resizable.styles.js +32 -0
- package/optimize/lib/components/flyout/index.js +8 -1
- package/optimize/lib/components/form/range/dual_range.js +15 -66
- package/optimize/lib/components/form/range/range.js +6 -5
- package/optimize/lib/components/form/range/range_slider.js +26 -21
- package/optimize/lib/components/form/text_area/text_area.js +32 -3
- package/optimize/lib/components/index.js +0 -22
- package/optimize/lib/components/markdown_editor/markdown_editor.js +12 -13
- package/optimize/lib/components/page_template/bottom_bar/page_bottom_bar.js +1 -1
- package/optimize/lib/components/selectable/selectable_list/selectable_list_item.js +1 -1
- package/optimize/lib/components/tree_view/tree_view.js +23 -25
- package/optimize/lib/utils/prop_types/is.js +2 -2
- package/package.json +2 -2
- package/src/components/index.scss +0 -2
- package/test-env/components/basic_table/basic_table.js +5 -5
- package/test-env/components/drag_and_drop/drag_and_drop.a11y.js +1 -1
- package/test-env/components/filter_group/filter_button.js +20 -13
- package/test-env/components/filter_group/filter_button.styles.js +11 -20
- package/test-env/components/flyout/flyout_resizable.js +131 -0
- package/test-env/components/flyout/flyout_resizable.styles.js +32 -0
- package/test-env/components/flyout/index.js +8 -1
- package/test-env/components/form/range/dual_range.js +15 -66
- package/test-env/components/form/range/range.js +6 -5
- package/test-env/components/form/range/range_slider.js +27 -21
- package/test-env/components/form/text_area/text_area.js +42 -3
- package/test-env/components/index.js +0 -22
- package/test-env/components/markdown_editor/markdown_editor.js +12 -13
- package/test-env/components/page_template/bottom_bar/page_bottom_bar.js +1 -1
- package/test-env/components/pagination/pagination_button.js +79 -2
- package/test-env/components/selectable/selectable_list/selectable_list_item.js +1 -1
- package/test-env/components/tree_view/tree_view.js +23 -25
- package/test-env/utils/prop_types/is.js +2 -2
- package/es/components/control_bar/control_bar.a11y.js +0 -133
- package/es/components/control_bar/control_bar.js +0 -609
- package/es/components/control_bar/index.js +0 -9
- package/es/components/notification/index.js +0 -9
- package/es/components/notification/notification_event.a11y.js +0 -104
- package/es/components/notification/notification_event.js +0 -288
- package/es/components/notification/notification_event_messages.js +0 -79
- package/es/components/notification/notification_event_meta.js +0 -148
- package/es/components/notification/notification_event_read_button.js +0 -86
- package/es/components/notification/notification_event_read_icon.js +0 -77
- package/lib/components/control_bar/control_bar.a11y.js +0 -134
- package/lib/components/control_bar/control_bar.js +0 -441
- package/lib/components/control_bar/index.js +0 -12
- package/lib/components/notification/index.js +0 -12
- package/lib/components/notification/notification_event.a11y.js +0 -105
- package/lib/components/notification/notification_event.js +0 -297
- package/lib/components/notification/notification_event_messages.js +0 -88
- package/lib/components/notification/notification_event_meta.js +0 -157
- package/lib/components/notification/notification_event_read_button.js +0 -93
- package/lib/components/notification/notification_event_read_icon.js +0 -64
- package/optimize/es/components/control_bar/control_bar.a11y.js +0 -128
- package/optimize/es/components/control_bar/control_bar.js +0 -308
- package/optimize/es/components/control_bar/index.js +0 -9
- package/optimize/es/components/notification/index.js +0 -9
- package/optimize/es/components/notification/notification_event.a11y.js +0 -99
- package/optimize/es/components/notification/notification_event.js +0 -114
- package/optimize/es/components/notification/notification_event_messages.js +0 -63
- package/optimize/es/components/notification/notification_event_meta.js +0 -106
- package/optimize/es/components/notification/notification_event_read_button.js +0 -44
- package/optimize/es/components/notification/notification_event_read_icon.js +0 -44
- package/optimize/lib/components/control_bar/control_bar.a11y.js +0 -134
- package/optimize/lib/components/control_bar/control_bar.js +0 -301
- package/optimize/lib/components/control_bar/index.js +0 -12
- package/optimize/lib/components/notification/index.js +0 -12
- package/optimize/lib/components/notification/notification_event.a11y.js +0 -105
- package/optimize/lib/components/notification/notification_event.js +0 -123
- package/optimize/lib/components/notification/notification_event_messages.js +0 -74
- package/optimize/lib/components/notification/notification_event_meta.js +0 -117
- package/optimize/lib/components/notification/notification_event_read_button.js +0 -51
- package/optimize/lib/components/notification/notification_event_read_icon.js +0 -51
- package/src/components/control_bar/_control_bar.scss +0 -232
- package/src/components/control_bar/_index.scss +0 -2
- package/src/components/control_bar/_variables.scss +0 -12
- package/src/components/notification/_index.scss +0 -5
- package/src/components/notification/_notification_event.scss +0 -40
- package/src/components/notification/_notification_event_messages.scss +0 -17
- package/src/components/notification/_notification_event_meta.scss +0 -44
- package/src/components/notification/_notification_event_read_button.scss +0 -5
- package/src/components/notification/_notification_event_read_icon.scss +0 -12
- package/test-env/components/control_bar/control_bar.a11y.js +0 -134
- package/test-env/components/control_bar/control_bar.js +0 -436
- package/test-env/components/control_bar/index.js +0 -12
- package/test-env/components/notification/index.js +0 -12
- package/test-env/components/notification/notification_event.a11y.js +0 -105
- package/test-env/components/notification/notification_event.js +0 -296
- package/test-env/components/notification/notification_event_messages.js +0 -85
- package/test-env/components/notification/notification_event_meta.js +0 -154
- package/test-env/components/notification/notification_event_read_button.js +0 -92
- package/test-env/components/notification/notification_event_read_icon.js +0 -63
package/i18ntokens.json
CHANGED
|
@@ -23,14 +23,14 @@
|
|
|
23
23
|
"highlighting": "string",
|
|
24
24
|
"loc": {
|
|
25
25
|
"start": {
|
|
26
|
-
"line":
|
|
26
|
+
"line": 334,
|
|
27
27
|
"column": 6,
|
|
28
|
-
"index":
|
|
28
|
+
"index": 8507
|
|
29
29
|
},
|
|
30
30
|
"end": {
|
|
31
|
-
"line":
|
|
31
|
+
"line": 334,
|
|
32
32
|
"column": 79,
|
|
33
|
-
"index":
|
|
33
|
+
"index": 8580
|
|
34
34
|
}
|
|
35
35
|
},
|
|
36
36
|
"filepath": "src/components/basic_table/basic_table.tsx"
|
|
@@ -41,14 +41,14 @@
|
|
|
41
41
|
"highlighting": "string",
|
|
42
42
|
"loc": {
|
|
43
43
|
"start": {
|
|
44
|
-
"line":
|
|
44
|
+
"line": 664,
|
|
45
45
|
"column": 10,
|
|
46
|
-
"index":
|
|
46
|
+
"index": 17148
|
|
47
47
|
},
|
|
48
48
|
"end": {
|
|
49
|
-
"line":
|
|
49
|
+
"line": 668,
|
|
50
50
|
"column": 12,
|
|
51
|
-
"index":
|
|
51
|
+
"index": 17351
|
|
52
52
|
}
|
|
53
53
|
},
|
|
54
54
|
"filepath": "src/components/basic_table/basic_table.tsx"
|
|
@@ -59,14 +59,14 @@
|
|
|
59
59
|
"highlighting": "string",
|
|
60
60
|
"loc": {
|
|
61
61
|
"start": {
|
|
62
|
-
"line":
|
|
62
|
+
"line": 677,
|
|
63
63
|
"column": 12,
|
|
64
|
-
"index":
|
|
64
|
+
"index": 17548
|
|
65
65
|
},
|
|
66
66
|
"end": {
|
|
67
|
-
"line":
|
|
67
|
+
"line": 681,
|
|
68
68
|
"column": 14,
|
|
69
|
-
"index":
|
|
69
|
+
"index": 17827
|
|
70
70
|
}
|
|
71
71
|
},
|
|
72
72
|
"filepath": "src/components/basic_table/basic_table.tsx"
|
|
@@ -77,14 +77,14 @@
|
|
|
77
77
|
"highlighting": "string",
|
|
78
78
|
"loc": {
|
|
79
79
|
"start": {
|
|
80
|
-
"line":
|
|
80
|
+
"line": 685,
|
|
81
81
|
"column": 12,
|
|
82
|
-
"index":
|
|
82
|
+
"index": 17899
|
|
83
83
|
},
|
|
84
84
|
"end": {
|
|
85
|
-
"line":
|
|
85
|
+
"line": 689,
|
|
86
86
|
"column": 14,
|
|
87
|
-
"index":
|
|
87
|
+
"index": 18139
|
|
88
88
|
}
|
|
89
89
|
},
|
|
90
90
|
"filepath": "src/components/basic_table/basic_table.tsx"
|
|
@@ -95,14 +95,14 @@
|
|
|
95
95
|
"highlighting": "string",
|
|
96
96
|
"loc": {
|
|
97
97
|
"start": {
|
|
98
|
-
"line":
|
|
98
|
+
"line": 694,
|
|
99
99
|
"column": 10,
|
|
100
|
-
"index":
|
|
100
|
+
"index": 18215
|
|
101
101
|
},
|
|
102
102
|
"end": {
|
|
103
|
-
"line":
|
|
103
|
+
"line": 698,
|
|
104
104
|
"column": 12,
|
|
105
|
-
"index":
|
|
105
|
+
"index": 18399
|
|
106
106
|
}
|
|
107
107
|
},
|
|
108
108
|
"filepath": "src/components/basic_table/basic_table.tsx"
|
|
@@ -113,14 +113,14 @@
|
|
|
113
113
|
"highlighting": "string",
|
|
114
114
|
"loc": {
|
|
115
115
|
"start": {
|
|
116
|
-
"line":
|
|
116
|
+
"line": 740,
|
|
117
117
|
"column": 6,
|
|
118
|
-
"index":
|
|
118
|
+
"index": 19397
|
|
119
119
|
},
|
|
120
120
|
"end": {
|
|
121
|
-
"line":
|
|
121
|
+
"line": 740,
|
|
122
122
|
"column": 77,
|
|
123
|
-
"index":
|
|
123
|
+
"index": 19468
|
|
124
124
|
}
|
|
125
125
|
},
|
|
126
126
|
"filepath": "src/components/basic_table/basic_table.tsx"
|
|
@@ -131,14 +131,14 @@
|
|
|
131
131
|
"highlighting": "string",
|
|
132
132
|
"loc": {
|
|
133
133
|
"start": {
|
|
134
|
-
"line":
|
|
134
|
+
"line": 1136,
|
|
135
135
|
"column": 8,
|
|
136
|
-
"index":
|
|
136
|
+
"index": 31279
|
|
137
137
|
},
|
|
138
138
|
"end": {
|
|
139
|
-
"line":
|
|
139
|
+
"line": 1136,
|
|
140
140
|
"column": 79,
|
|
141
|
-
"index":
|
|
141
|
+
"index": 31350
|
|
142
142
|
}
|
|
143
143
|
},
|
|
144
144
|
"filepath": "src/components/basic_table/basic_table.tsx"
|
|
@@ -149,14 +149,14 @@
|
|
|
149
149
|
"highlighting": "string",
|
|
150
150
|
"loc": {
|
|
151
151
|
"start": {
|
|
152
|
-
"line":
|
|
152
|
+
"line": 1361,
|
|
153
153
|
"column": 8,
|
|
154
|
-
"index":
|
|
154
|
+
"index": 37925
|
|
155
155
|
},
|
|
156
156
|
"end": {
|
|
157
|
-
"line":
|
|
157
|
+
"line": 1365,
|
|
158
158
|
"column": 9,
|
|
159
|
-
"index":
|
|
159
|
+
"index": 38084
|
|
160
160
|
}
|
|
161
161
|
},
|
|
162
162
|
"filepath": "src/components/basic_table/basic_table.tsx"
|
|
@@ -169,12 +169,12 @@
|
|
|
169
169
|
"start": {
|
|
170
170
|
"line": 115,
|
|
171
171
|
"column": 4,
|
|
172
|
-
"index":
|
|
172
|
+
"index": 3600
|
|
173
173
|
},
|
|
174
174
|
"end": {
|
|
175
175
|
"line": 124,
|
|
176
176
|
"column": 5,
|
|
177
|
-
"index":
|
|
177
|
+
"index": 3867
|
|
178
178
|
}
|
|
179
179
|
},
|
|
180
180
|
"filepath": "src/components/basic_table/collapsed_item_actions.tsx"
|
|
@@ -187,12 +187,12 @@
|
|
|
187
187
|
"start": {
|
|
188
188
|
"line": 115,
|
|
189
189
|
"column": 4,
|
|
190
|
-
"index":
|
|
190
|
+
"index": 3600
|
|
191
191
|
},
|
|
192
192
|
"end": {
|
|
193
193
|
"line": 124,
|
|
194
194
|
"column": 5,
|
|
195
|
-
"index":
|
|
195
|
+
"index": 3867
|
|
196
196
|
}
|
|
197
197
|
},
|
|
198
198
|
"filepath": "src/components/basic_table/collapsed_item_actions.tsx"
|
|
@@ -205,12 +205,12 @@
|
|
|
205
205
|
"start": {
|
|
206
206
|
"line": 141,
|
|
207
207
|
"column": 4,
|
|
208
|
-
"index":
|
|
208
|
+
"index": 4427
|
|
209
209
|
},
|
|
210
210
|
"end": {
|
|
211
211
|
"line": 141,
|
|
212
212
|
"column": 78,
|
|
213
|
-
"index":
|
|
213
|
+
"index": 4501
|
|
214
214
|
}
|
|
215
215
|
},
|
|
216
216
|
"filepath": "src/components/basic_table/collapsed_item_actions.tsx"
|
|
@@ -917,60 +917,6 @@
|
|
|
917
917
|
},
|
|
918
918
|
"filepath": "src/components/combo_box/combo_box.tsx"
|
|
919
919
|
},
|
|
920
|
-
{
|
|
921
|
-
"token": "euiControlBar.screenReaderHeading",
|
|
922
|
-
"defString": "Page level controls",
|
|
923
|
-
"highlighting": "string",
|
|
924
|
-
"loc": {
|
|
925
|
-
"start": {
|
|
926
|
-
"line": 425,
|
|
927
|
-
"column": 6,
|
|
928
|
-
"index": 10754
|
|
929
|
-
},
|
|
930
|
-
"end": {
|
|
931
|
-
"line": 428,
|
|
932
|
-
"column": 7,
|
|
933
|
-
"index": 10858
|
|
934
|
-
}
|
|
935
|
-
},
|
|
936
|
-
"filepath": "src/components/control_bar/control_bar.tsx"
|
|
937
|
-
},
|
|
938
|
-
{
|
|
939
|
-
"token": "euiControlBar.customScreenReaderAnnouncement",
|
|
940
|
-
"defString": "There is a new region landmark called {landmarkHeading} with page level controls at the end of the document.",
|
|
941
|
-
"highlighting": "string",
|
|
942
|
-
"loc": {
|
|
943
|
-
"start": {
|
|
944
|
-
"line": 473,
|
|
945
|
-
"column": 14,
|
|
946
|
-
"index": 12376
|
|
947
|
-
},
|
|
948
|
-
"end": {
|
|
949
|
-
"line": 477,
|
|
950
|
-
"column": 16,
|
|
951
|
-
"index": 12650
|
|
952
|
-
}
|
|
953
|
-
},
|
|
954
|
-
"filepath": "src/components/control_bar/control_bar.tsx"
|
|
955
|
-
},
|
|
956
|
-
{
|
|
957
|
-
"token": "euiControlBar.screenReaderAnnouncement",
|
|
958
|
-
"defString": "There is a new region landmark with page level controls at the end of the document.",
|
|
959
|
-
"highlighting": "string",
|
|
960
|
-
"loc": {
|
|
961
|
-
"start": {
|
|
962
|
-
"line": 479,
|
|
963
|
-
"column": 14,
|
|
964
|
-
"index": 12683
|
|
965
|
-
},
|
|
966
|
-
"end": {
|
|
967
|
-
"line": 482,
|
|
968
|
-
"column": 16,
|
|
969
|
-
"index": 12881
|
|
970
|
-
}
|
|
971
|
-
},
|
|
972
|
-
"filepath": "src/components/control_bar/control_bar.tsx"
|
|
973
|
-
},
|
|
974
920
|
{
|
|
975
921
|
"token": "euiDataGridCellActions.expandButtonTitle",
|
|
976
922
|
"defString": "Click or hit enter to interact with cell content",
|
|
@@ -4577,14 +4523,14 @@
|
|
|
4577
4523
|
"highlighting": "string",
|
|
4578
4524
|
"loc": {
|
|
4579
4525
|
"start": {
|
|
4580
|
-
"line":
|
|
4526
|
+
"line": 111,
|
|
4581
4527
|
"column": 27,
|
|
4582
|
-
"index":
|
|
4528
|
+
"index": 3220
|
|
4583
4529
|
},
|
|
4584
4530
|
"end": {
|
|
4585
|
-
"line":
|
|
4531
|
+
"line": 115,
|
|
4586
4532
|
"column": 3,
|
|
4587
|
-
"index":
|
|
4533
|
+
"index": 3341
|
|
4588
4534
|
}
|
|
4589
4535
|
},
|
|
4590
4536
|
"filepath": "src/components/filter_group/filter_button.tsx"
|
|
@@ -4595,14 +4541,14 @@
|
|
|
4595
4541
|
"highlighting": "string",
|
|
4596
4542
|
"loc": {
|
|
4597
4543
|
"start": {
|
|
4598
|
-
"line":
|
|
4544
|
+
"line": 116,
|
|
4599
4545
|
"column": 30,
|
|
4600
|
-
"index":
|
|
4546
|
+
"index": 3373
|
|
4601
4547
|
},
|
|
4602
4548
|
"end": {
|
|
4603
|
-
"line":
|
|
4549
|
+
"line": 120,
|
|
4604
4550
|
"column": 3,
|
|
4605
|
-
"index":
|
|
4551
|
+
"index": 3500
|
|
4606
4552
|
}
|
|
4607
4553
|
},
|
|
4608
4554
|
"filepath": "src/components/filter_group/filter_button.tsx"
|
|
@@ -4615,12 +4561,12 @@
|
|
|
4615
4561
|
"start": {
|
|
4616
4562
|
"line": 311,
|
|
4617
4563
|
"column": 8,
|
|
4618
|
-
"index":
|
|
4564
|
+
"index": 9897
|
|
4619
4565
|
},
|
|
4620
4566
|
"end": {
|
|
4621
4567
|
"line": 311,
|
|
4622
4568
|
"column": 78,
|
|
4623
|
-
"index":
|
|
4569
|
+
"index": 9967
|
|
4624
4570
|
}
|
|
4625
4571
|
},
|
|
4626
4572
|
"filepath": "src/components/flyout/flyout.tsx"
|
|
@@ -4633,12 +4579,12 @@
|
|
|
4633
4579
|
"start": {
|
|
4634
4580
|
"line": 385,
|
|
4635
4581
|
"column": 12,
|
|
4636
|
-
"index":
|
|
4582
|
+
"index": 12453
|
|
4637
4583
|
},
|
|
4638
4584
|
"end": {
|
|
4639
4585
|
"line": 388,
|
|
4640
4586
|
"column": 14,
|
|
4641
|
-
"index":
|
|
4587
|
+
"index": 12662
|
|
4642
4588
|
}
|
|
4643
4589
|
},
|
|
4644
4590
|
"filepath": "src/components/flyout/flyout.tsx"
|
|
@@ -4651,12 +4597,12 @@
|
|
|
4651
4597
|
"start": {
|
|
4652
4598
|
"line": 390,
|
|
4653
4599
|
"column": 12,
|
|
4654
|
-
"index":
|
|
4600
|
+
"index": 12691
|
|
4655
4601
|
},
|
|
4656
4602
|
"end": {
|
|
4657
4603
|
"line": 393,
|
|
4658
4604
|
"column": 14,
|
|
4659
|
-
"index":
|
|
4605
|
+
"index": 12863
|
|
4660
4606
|
}
|
|
4661
4607
|
},
|
|
4662
4608
|
"filepath": "src/components/flyout/flyout.tsx"
|
|
@@ -4669,12 +4615,12 @@
|
|
|
4669
4615
|
"start": {
|
|
4670
4616
|
"line": 396,
|
|
4671
4617
|
"column": 12,
|
|
4672
|
-
"index":
|
|
4618
|
+
"index": 12934
|
|
4673
4619
|
},
|
|
4674
4620
|
"end": {
|
|
4675
4621
|
"line": 399,
|
|
4676
4622
|
"column": 14,
|
|
4677
|
-
"index":
|
|
4623
|
+
"index": 13121
|
|
4678
4624
|
}
|
|
4679
4625
|
},
|
|
4680
4626
|
"filepath": "src/components/flyout/flyout.tsx"
|
|
@@ -4847,14 +4793,14 @@
|
|
|
4847
4793
|
"highlighting": "string",
|
|
4848
4794
|
"loc": {
|
|
4849
4795
|
"start": {
|
|
4850
|
-
"line":
|
|
4796
|
+
"line": 593,
|
|
4851
4797
|
"column": 6,
|
|
4852
|
-
"index":
|
|
4798
|
+
"index": 17613
|
|
4853
4799
|
},
|
|
4854
4800
|
"end": {
|
|
4855
|
-
"line":
|
|
4801
|
+
"line": 596,
|
|
4856
4802
|
"column": 8,
|
|
4857
|
-
"index":
|
|
4803
|
+
"index": 17848
|
|
4858
4804
|
}
|
|
4859
4805
|
},
|
|
4860
4806
|
"filepath": "src/components/form/range/dual_range.tsx"
|
|
@@ -4867,12 +4813,12 @@
|
|
|
4867
4813
|
"start": {
|
|
4868
4814
|
"line": 188,
|
|
4869
4815
|
"column": 6,
|
|
4870
|
-
"index":
|
|
4816
|
+
"index": 4979
|
|
4871
4817
|
},
|
|
4872
4818
|
"end": {
|
|
4873
4819
|
"line": 191,
|
|
4874
4820
|
"column": 8,
|
|
4875
|
-
"index":
|
|
4821
|
+
"index": 5156
|
|
4876
4822
|
}
|
|
4877
4823
|
},
|
|
4878
4824
|
"filepath": "src/components/form/range/range.tsx"
|
|
@@ -5489,222 +5435,6 @@
|
|
|
5489
5435
|
},
|
|
5490
5436
|
"filepath": "src/components/modal/modal.tsx"
|
|
5491
5437
|
},
|
|
5492
|
-
{
|
|
5493
|
-
"token": "euiNotificationEventMessages.accordionButtonText",
|
|
5494
|
-
"defString": "+ {messagesLength} more",
|
|
5495
|
-
"highlighting": "string",
|
|
5496
|
-
"loc": {
|
|
5497
|
-
"start": {
|
|
5498
|
-
"line": 36,
|
|
5499
|
-
"column": 30,
|
|
5500
|
-
"index": 1270
|
|
5501
|
-
},
|
|
5502
|
-
"end": {
|
|
5503
|
-
"line": 40,
|
|
5504
|
-
"column": 3,
|
|
5505
|
-
"index": 1415
|
|
5506
|
-
}
|
|
5507
|
-
},
|
|
5508
|
-
"filepath": "src/components/notification/notification_event_messages.tsx"
|
|
5509
|
-
},
|
|
5510
|
-
{
|
|
5511
|
-
"token": "euiNotificationEventMessages.accordionAriaLabelButtonText",
|
|
5512
|
-
"defString": "+ {messagesLength} messages for {eventName}",
|
|
5513
|
-
"highlighting": "string",
|
|
5514
|
-
"loc": {
|
|
5515
|
-
"start": {
|
|
5516
|
-
"line": 42,
|
|
5517
|
-
"column": 39,
|
|
5518
|
-
"index": 1457
|
|
5519
|
-
},
|
|
5520
|
-
"end": {
|
|
5521
|
-
"line": 49,
|
|
5522
|
-
"column": 3,
|
|
5523
|
-
"index": 1659
|
|
5524
|
-
}
|
|
5525
|
-
},
|
|
5526
|
-
"filepath": "src/components/notification/notification_event_messages.tsx"
|
|
5527
|
-
},
|
|
5528
|
-
{
|
|
5529
|
-
"token": "euiNotificationEventMessages.accordionHideText",
|
|
5530
|
-
"defString": "hide",
|
|
5531
|
-
"highlighting": "string",
|
|
5532
|
-
"loc": {
|
|
5533
|
-
"start": {
|
|
5534
|
-
"line": 51,
|
|
5535
|
-
"column": 28,
|
|
5536
|
-
"index": 1690
|
|
5537
|
-
},
|
|
5538
|
-
"end": {
|
|
5539
|
-
"line": 54,
|
|
5540
|
-
"column": 3,
|
|
5541
|
-
"index": 1770
|
|
5542
|
-
}
|
|
5543
|
-
},
|
|
5544
|
-
"filepath": "src/components/notification/notification_event_messages.tsx"
|
|
5545
|
-
},
|
|
5546
|
-
{
|
|
5547
|
-
"token": "euiNotificationEventMeta.contextMenuButton",
|
|
5548
|
-
"defString": "Menu for {eventName}",
|
|
5549
|
-
"highlighting": "string",
|
|
5550
|
-
"loc": {
|
|
5551
|
-
"start": {
|
|
5552
|
-
"line": 137,
|
|
5553
|
-
"column": 14,
|
|
5554
|
-
"index": 3936
|
|
5555
|
-
},
|
|
5556
|
-
"end": {
|
|
5557
|
-
"line": 143,
|
|
5558
|
-
"column": 15,
|
|
5559
|
-
"index": 4148
|
|
5560
|
-
}
|
|
5561
|
-
},
|
|
5562
|
-
"filepath": "src/components/notification/notification_event_meta.tsx"
|
|
5563
|
-
},
|
|
5564
|
-
{
|
|
5565
|
-
"token": "euiNotificationEventReadButton.markAsReadAria",
|
|
5566
|
-
"defString": "Mark {eventName} as read",
|
|
5567
|
-
"highlighting": "string",
|
|
5568
|
-
"loc": {
|
|
5569
|
-
"start": {
|
|
5570
|
-
"line": 40,
|
|
5571
|
-
"column": 25,
|
|
5572
|
-
"index": 1366
|
|
5573
|
-
},
|
|
5574
|
-
"end": {
|
|
5575
|
-
"line": 46,
|
|
5576
|
-
"column": 3,
|
|
5577
|
-
"index": 1495
|
|
5578
|
-
}
|
|
5579
|
-
},
|
|
5580
|
-
"filepath": "src/components/notification/notification_event_read_button.tsx"
|
|
5581
|
-
},
|
|
5582
|
-
{
|
|
5583
|
-
"token": "euiNotificationEventReadButton.markAsUnreadAria",
|
|
5584
|
-
"defString": "Mark {eventName} as unread",
|
|
5585
|
-
"highlighting": "string",
|
|
5586
|
-
"loc": {
|
|
5587
|
-
"start": {
|
|
5588
|
-
"line": 48,
|
|
5589
|
-
"column": 27,
|
|
5590
|
-
"index": 1525
|
|
5591
|
-
},
|
|
5592
|
-
"end": {
|
|
5593
|
-
"line": 54,
|
|
5594
|
-
"column": 3,
|
|
5595
|
-
"index": 1658
|
|
5596
|
-
}
|
|
5597
|
-
},
|
|
5598
|
-
"filepath": "src/components/notification/notification_event_read_button.tsx"
|
|
5599
|
-
},
|
|
5600
|
-
{
|
|
5601
|
-
"token": "euiNotificationEventReadButton.markAsRead",
|
|
5602
|
-
"defString": "Mark as read",
|
|
5603
|
-
"highlighting": "string",
|
|
5604
|
-
"loc": {
|
|
5605
|
-
"start": {
|
|
5606
|
-
"line": 56,
|
|
5607
|
-
"column": 21,
|
|
5608
|
-
"index": 1682
|
|
5609
|
-
},
|
|
5610
|
-
"end": {
|
|
5611
|
-
"line": 59,
|
|
5612
|
-
"column": 3,
|
|
5613
|
-
"index": 1765
|
|
5614
|
-
}
|
|
5615
|
-
},
|
|
5616
|
-
"filepath": "src/components/notification/notification_event_read_button.tsx"
|
|
5617
|
-
},
|
|
5618
|
-
{
|
|
5619
|
-
"token": "euiNotificationEventReadButton.markAsUnread",
|
|
5620
|
-
"defString": "Mark as unread",
|
|
5621
|
-
"highlighting": "string",
|
|
5622
|
-
"loc": {
|
|
5623
|
-
"start": {
|
|
5624
|
-
"line": 61,
|
|
5625
|
-
"column": 23,
|
|
5626
|
-
"index": 1791
|
|
5627
|
-
},
|
|
5628
|
-
"end": {
|
|
5629
|
-
"line": 64,
|
|
5630
|
-
"column": 3,
|
|
5631
|
-
"index": 1878
|
|
5632
|
-
}
|
|
5633
|
-
},
|
|
5634
|
-
"filepath": "src/components/notification/notification_event_read_button.tsx"
|
|
5635
|
-
},
|
|
5636
|
-
{
|
|
5637
|
-
"token": "euiNotificationEventReadIcon.readAria",
|
|
5638
|
-
"defString": "{eventName} is read",
|
|
5639
|
-
"highlighting": "string",
|
|
5640
|
-
"loc": {
|
|
5641
|
-
"start": {
|
|
5642
|
-
"line": 36,
|
|
5643
|
-
"column": 19,
|
|
5644
|
-
"index": 1203
|
|
5645
|
-
},
|
|
5646
|
-
"end": {
|
|
5647
|
-
"line": 42,
|
|
5648
|
-
"column": 3,
|
|
5649
|
-
"index": 1319
|
|
5650
|
-
}
|
|
5651
|
-
},
|
|
5652
|
-
"filepath": "src/components/notification/notification_event_read_icon.tsx"
|
|
5653
|
-
},
|
|
5654
|
-
{
|
|
5655
|
-
"token": "euiNotificationEventReadIcon.unreadAria",
|
|
5656
|
-
"defString": "{eventName} is unread",
|
|
5657
|
-
"highlighting": "string",
|
|
5658
|
-
"loc": {
|
|
5659
|
-
"start": {
|
|
5660
|
-
"line": 44,
|
|
5661
|
-
"column": 21,
|
|
5662
|
-
"index": 1343
|
|
5663
|
-
},
|
|
5664
|
-
"end": {
|
|
5665
|
-
"line": 50,
|
|
5666
|
-
"column": 3,
|
|
5667
|
-
"index": 1463
|
|
5668
|
-
}
|
|
5669
|
-
},
|
|
5670
|
-
"filepath": "src/components/notification/notification_event_read_icon.tsx"
|
|
5671
|
-
},
|
|
5672
|
-
{
|
|
5673
|
-
"token": "euiNotificationEventReadIcon.read",
|
|
5674
|
-
"defString": "Read",
|
|
5675
|
-
"highlighting": "string",
|
|
5676
|
-
"loc": {
|
|
5677
|
-
"start": {
|
|
5678
|
-
"line": 51,
|
|
5679
|
-
"column": 20,
|
|
5680
|
-
"index": 1485
|
|
5681
|
-
},
|
|
5682
|
-
"end": {
|
|
5683
|
-
"line": 51,
|
|
5684
|
-
"column": 75,
|
|
5685
|
-
"index": 1540
|
|
5686
|
-
}
|
|
5687
|
-
},
|
|
5688
|
-
"filepath": "src/components/notification/notification_event_read_icon.tsx"
|
|
5689
|
-
},
|
|
5690
|
-
{
|
|
5691
|
-
"token": "euiNotificationEventReadIcon.unread",
|
|
5692
|
-
"defString": "Unread",
|
|
5693
|
-
"highlighting": "string",
|
|
5694
|
-
"loc": {
|
|
5695
|
-
"start": {
|
|
5696
|
-
"line": 52,
|
|
5697
|
-
"column": 22,
|
|
5698
|
-
"index": 1564
|
|
5699
|
-
},
|
|
5700
|
-
"end": {
|
|
5701
|
-
"line": 55,
|
|
5702
|
-
"column": 3,
|
|
5703
|
-
"index": 1635
|
|
5704
|
-
}
|
|
5705
|
-
},
|
|
5706
|
-
"filepath": "src/components/notification/notification_event_read_icon.tsx"
|
|
5707
|
-
},
|
|
5708
5438
|
{
|
|
5709
5439
|
"token": "euiPaginationButtonArrow.firstPage",
|
|
5710
5440
|
"defString": "First page",
|
|
@@ -7133,14 +6863,14 @@
|
|
|
7133
6863
|
"highlighting": "string",
|
|
7134
6864
|
"loc": {
|
|
7135
6865
|
"start": {
|
|
7136
|
-
"line":
|
|
6866
|
+
"line": 291,
|
|
7137
6867
|
"column": 12,
|
|
7138
|
-
"index":
|
|
6868
|
+
"index": 8058
|
|
7139
6869
|
},
|
|
7140
6870
|
"end": {
|
|
7141
|
-
"line":
|
|
6871
|
+
"line": 294,
|
|
7142
6872
|
"column": 13,
|
|
7143
|
-
"index":
|
|
6873
|
+
"index": 8218
|
|
7144
6874
|
}
|
|
7145
6875
|
},
|
|
7146
6876
|
"filepath": "src/components/tree_view/tree_view.tsx"
|
|
@@ -7151,14 +6881,14 @@
|
|
|
7151
6881
|
"highlighting": "string",
|
|
7152
6882
|
"loc": {
|
|
7153
6883
|
"start": {
|
|
7154
|
-
"line":
|
|
6884
|
+
"line": 318,
|
|
7155
6885
|
"column": 20,
|
|
7156
|
-
"index":
|
|
6886
|
+
"index": 9097
|
|
7157
6887
|
},
|
|
7158
6888
|
"end": {
|
|
7159
|
-
"line":
|
|
6889
|
+
"line": 326,
|
|
7160
6890
|
"column": 21,
|
|
7161
|
-
"index":
|
|
6891
|
+
"index": 9472
|
|
7162
6892
|
}
|
|
7163
6893
|
},
|
|
7164
6894
|
"filepath": "src/components/tree_view/tree_view.tsx"
|
|
@@ -441,7 +441,7 @@ var EuiBasicTable = /*#__PURE__*/function (_Component) {
|
|
|
441
441
|
var sortDirection = _this2.resolveColumnSortDirection(column);
|
|
442
442
|
items.push({
|
|
443
443
|
name: column.name,
|
|
444
|
-
key: "_data_s_".concat(column.field, "_").concat(index),
|
|
444
|
+
key: "_data_s_".concat(String(column.field), "_").concat(index),
|
|
445
445
|
onSort: _this2.resolveColumnOnSort(column),
|
|
446
446
|
isSorted: !!sortDirection,
|
|
447
447
|
isSortAscending: sortDirection ? _services.SortDirection.isAsc(sortDirection) : undefined
|
|
@@ -594,11 +594,11 @@ var EuiBasicTable = /*#__PURE__*/function (_Component) {
|
|
|
594
594
|
}
|
|
595
595
|
}
|
|
596
596
|
headers.push((0, _react2.jsx)(_table.EuiTableHeaderCell, _extends({
|
|
597
|
-
key: "_data_h_".concat(field, "_").concat(index),
|
|
597
|
+
key: "_data_h_".concat(String(field), "_").concat(index),
|
|
598
598
|
align: columnAlign,
|
|
599
599
|
width: width,
|
|
600
600
|
mobileOptions: mobileOptions,
|
|
601
|
-
"data-test-subj": "tableHeaderCell_".concat(field, "_").concat(index),
|
|
601
|
+
"data-test-subj": "tableHeaderCell_".concat(String(field), "_").concat(index),
|
|
602
602
|
description: description
|
|
603
603
|
}, sorting), name));
|
|
604
604
|
});
|
|
@@ -635,7 +635,7 @@ var EuiBasicTable = /*#__PURE__*/function (_Component) {
|
|
|
635
635
|
|
|
636
636
|
if (footer) {
|
|
637
637
|
footers.push((0, _react2.jsx)(_table.EuiTableFooterCell, {
|
|
638
|
-
key: "footer_".concat(field, "_").concat(footers.length - 1),
|
|
638
|
+
key: "footer_".concat(String(field), "_").concat(footers.length - 1),
|
|
639
639
|
align: align
|
|
640
640
|
}, footer));
|
|
641
641
|
hasDefinedFooter = true;
|
|
@@ -875,7 +875,7 @@ var EuiBasicTable = /*#__PURE__*/function (_Component) {
|
|
|
875
875
|
var field = column.field,
|
|
876
876
|
render = column.render,
|
|
877
877
|
dataType = column.dataType;
|
|
878
|
-
var key = "_data_column_".concat(field, "_").concat(itemId, "_").concat(columnIndex);
|
|
878
|
+
var key = "_data_column_".concat(String(field), "_").concat(itemId, "_").concat(columnIndex);
|
|
879
879
|
var contentRenderer = render || this.getRendererForDataType(dataType);
|
|
880
880
|
var value = (0, _objects.get)(item, field);
|
|
881
881
|
var content = contentRenderer(value, item);
|
|
@@ -77,7 +77,7 @@ var DragAndDrop = function DragAndDrop() {
|
|
|
77
77
|
beforeEach(function () {
|
|
78
78
|
cy.realMount((0, _react2.jsx)(DragAndDrop, null));
|
|
79
79
|
});
|
|
80
|
-
describe('
|
|
80
|
+
describe('EuiDragDrop', function () {
|
|
81
81
|
describe('Automated accessibility check', function () {
|
|
82
82
|
it('has zero violations on render', function () {
|
|
83
83
|
cy.checkAxe();
|