@elastic/eui 113.2.1 → 114.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/es/components/basic_table/collapsed_item_actions.js +2 -0
- package/es/components/button/split_button/split_button.js +13 -0
- package/es/components/button/split_button/split_button_actions.js +15 -0
- package/es/components/collapsible_nav/collapsible_nav.js +5 -0
- package/es/components/color_picker/color_picker.js +31 -8
- package/es/components/context_menu/context_menu_item.js +9 -3
- package/es/components/context_menu/context_menu_item.styles.js +6 -2
- package/es/components/datagrid/utils/scrolling.js +39 -10
- package/es/components/date_picker/super_date_picker/time_window_buttons.js +17 -3
- package/es/components/flyout/_flyout_overlay.js +34 -4
- package/es/components/flyout/const.js +10 -0
- package/es/components/flyout/flyout.component.js +49 -57
- package/es/components/flyout/flyout.js +10 -2
- package/es/components/flyout/flyout.styles.js +2 -2
- package/es/components/flyout/flyout_menu.js +19 -5
- package/es/components/flyout/flyout_resizable.js +5 -0
- package/es/components/flyout/manager/actions.js +12 -5
- package/es/components/flyout/manager/flyout_child.js +9 -2
- package/es/components/flyout/manager/flyout_managed.js +27 -14
- package/es/components/flyout/manager/reducer.js +251 -54
- package/es/components/flyout/manager/store.js +74 -12
- package/es/components/flyout/use_flyout_menu.js +70 -0
- package/es/components/form/file_picker/file_picker.js +46 -18
- package/es/components/markdown_editor/plugins/markdown_default_plugins/parsing_plugins.js +2 -1
- package/es/components/markdown_editor/plugins/remark/remark_intraword_underscore.js +172 -0
- package/es/components/overlay_mask/overlay_mask.js +10 -3
- package/es/components/tree_view/tree_view_item.styles.js +1 -1
- package/es/services/hooks/index.js +8 -8
- package/es/services/hooks/useIsPointerDown.js +6 -15
- package/es/services/index.js +1 -1
- package/eui.d.ts +477 -63
- package/i18ntokens.json +661 -643
- package/lib/components/basic_table/collapsed_item_actions.js +2 -0
- package/lib/components/button/split_button/split_button.js +13 -0
- package/lib/components/button/split_button/split_button_actions.js +15 -0
- package/lib/components/collapsible_nav/collapsible_nav.js +5 -0
- package/lib/components/color_picker/color_picker.js +30 -7
- package/lib/components/context_menu/context_menu_item.js +9 -3
- package/lib/components/context_menu/context_menu_item.styles.js +5 -1
- package/lib/components/datagrid/utils/scrolling.js +37 -8
- package/lib/components/date_picker/super_date_picker/time_window_buttons.js +17 -3
- package/lib/components/flyout/_flyout_overlay.js +33 -3
- package/lib/components/flyout/const.js +11 -1
- package/lib/components/flyout/flyout.component.js +48 -56
- package/lib/components/flyout/flyout.js +15 -1
- package/lib/components/flyout/flyout.styles.js +2 -2
- package/lib/components/flyout/flyout_menu.js +19 -5
- package/lib/components/flyout/flyout_resizable.js +5 -0
- package/lib/components/flyout/manager/actions.js +12 -5
- package/lib/components/flyout/manager/flyout_child.js +9 -2
- package/lib/components/flyout/manager/flyout_managed.js +19 -12
- package/lib/components/flyout/manager/reducer.js +250 -53
- package/lib/components/flyout/manager/store.js +74 -14
- package/lib/components/flyout/use_flyout_menu.js +75 -0
- package/lib/components/form/file_picker/file_picker.js +46 -18
- package/lib/components/markdown_editor/plugins/markdown_default_plugins/parsing_plugins.js +2 -1
- package/lib/components/markdown_editor/plugins/remark/remark_intraword_underscore.js +179 -0
- package/lib/components/overlay_mask/overlay_mask.js +10 -3
- package/lib/components/tree_view/tree_view_item.styles.js +1 -1
- package/lib/services/hooks/index.js +60 -91
- package/lib/services/hooks/useIsPointerDown.js +7 -14
- package/lib/services/index.js +70 -11
- package/optimize/es/components/basic_table/collapsed_item_actions.js +2 -0
- package/optimize/es/components/color_picker/color_picker.js +31 -8
- package/optimize/es/components/context_menu/context_menu_item.js +3 -2
- package/optimize/es/components/context_menu/context_menu_item.styles.js +6 -2
- package/optimize/es/components/datagrid/utils/scrolling.js +39 -10
- package/optimize/es/components/date_picker/super_date_picker/time_window_buttons.js +17 -3
- package/optimize/es/components/flyout/_flyout_overlay.js +34 -4
- package/optimize/es/components/flyout/const.js +10 -0
- package/optimize/es/components/flyout/flyout.component.js +49 -57
- package/optimize/es/components/flyout/flyout.js +5 -2
- package/optimize/es/components/flyout/flyout.styles.js +2 -2
- package/optimize/es/components/flyout/flyout_menu.js +7 -3
- package/optimize/es/components/flyout/manager/actions.js +12 -5
- package/optimize/es/components/flyout/manager/flyout_managed.js +18 -12
- package/optimize/es/components/flyout/manager/reducer.js +251 -54
- package/optimize/es/components/flyout/manager/store.js +69 -12
- package/optimize/es/components/flyout/use_flyout_menu.js +69 -0
- package/optimize/es/components/form/file_picker/file_picker.js +35 -18
- package/optimize/es/components/markdown_editor/plugins/markdown_default_plugins/parsing_plugins.js +2 -1
- package/optimize/es/components/markdown_editor/plugins/remark/remark_intraword_underscore.js +172 -0
- package/optimize/es/components/overlay_mask/overlay_mask.js +4 -2
- package/optimize/es/components/tree_view/tree_view_item.styles.js +1 -1
- package/optimize/es/services/hooks/index.js +8 -8
- package/optimize/es/services/hooks/useIsPointerDown.js +6 -10
- package/optimize/es/services/index.js +1 -1
- package/optimize/lib/components/basic_table/collapsed_item_actions.js +2 -0
- package/optimize/lib/components/color_picker/color_picker.js +30 -7
- package/optimize/lib/components/context_menu/context_menu_item.js +3 -2
- package/optimize/lib/components/context_menu/context_menu_item.styles.js +5 -1
- package/optimize/lib/components/datagrid/utils/scrolling.js +37 -8
- package/optimize/lib/components/date_picker/super_date_picker/time_window_buttons.js +17 -3
- package/optimize/lib/components/flyout/_flyout_overlay.js +33 -3
- package/optimize/lib/components/flyout/const.js +11 -1
- package/optimize/lib/components/flyout/flyout.component.js +48 -56
- package/optimize/lib/components/flyout/flyout.js +10 -1
- package/optimize/lib/components/flyout/flyout.styles.js +2 -2
- package/optimize/lib/components/flyout/flyout_menu.js +7 -3
- package/optimize/lib/components/flyout/manager/actions.js +12 -5
- package/optimize/lib/components/flyout/manager/flyout_managed.js +18 -12
- package/optimize/lib/components/flyout/manager/reducer.js +250 -53
- package/optimize/lib/components/flyout/manager/store.js +70 -12
- package/optimize/lib/components/flyout/use_flyout_menu.js +74 -0
- package/optimize/lib/components/form/file_picker/file_picker.js +35 -18
- package/optimize/lib/components/markdown_editor/plugins/markdown_default_plugins/parsing_plugins.js +2 -1
- package/optimize/lib/components/markdown_editor/plugins/remark/remark_intraword_underscore.js +179 -0
- package/optimize/lib/components/overlay_mask/overlay_mask.js +4 -2
- package/optimize/lib/components/tree_view/tree_view_item.styles.js +1 -1
- package/optimize/lib/services/hooks/index.js +60 -91
- package/optimize/lib/services/hooks/useIsPointerDown.js +5 -10
- package/optimize/lib/services/index.js +70 -11
- package/package.json +4 -4
- package/test-env/components/basic_table/collapsed_item_actions.js +2 -0
- package/test-env/components/button/split_button/split_button.js +13 -0
- package/test-env/components/button/split_button/split_button_actions.js +15 -0
- package/test-env/components/collapsible_nav/collapsible_nav.js +5 -0
- package/test-env/components/color_picker/color_picker.js +30 -7
- package/test-env/components/context_menu/context_menu_item.js +9 -3
- package/test-env/components/context_menu/context_menu_item.styles.js +5 -1
- package/test-env/components/datagrid/utils/scrolling.js +37 -8
- package/test-env/components/date_picker/super_date_picker/time_window_buttons.js +17 -3
- package/test-env/components/flyout/_flyout_overlay.js +33 -3
- package/test-env/components/flyout/const.js +11 -1
- package/test-env/components/flyout/flyout.component.js +48 -56
- package/test-env/components/flyout/flyout.styles.js +2 -2
- package/test-env/components/flyout/flyout_menu.js +19 -5
- package/test-env/components/flyout/flyout_resizable.js +5 -0
- package/test-env/components/flyout/manager/actions.js +12 -5
- package/test-env/components/flyout/manager/flyout_child.js +9 -2
- package/test-env/components/flyout/manager/flyout_managed.js +19 -12
- package/test-env/components/flyout/manager/reducer.js +250 -53
- package/test-env/components/flyout/manager/store.js +70 -12
- package/test-env/components/flyout/use_flyout_menu.js +74 -0
- package/test-env/components/form/file_picker/file_picker.js +46 -18
- package/test-env/components/markdown_editor/plugins/markdown_default_plugins/parsing_plugins.js +2 -1
- package/test-env/components/markdown_editor/plugins/remark/remark_intraword_underscore.js +179 -0
- package/test-env/components/overlay_mask/overlay_mask.js +10 -3
- package/test-env/components/tree_view/tree_view_item.styles.js +1 -1
- package/test-env/services/hooks/index.js +60 -91
- package/test-env/services/hooks/useIsPointerDown.js +5 -10
- package/test-env/services/index.js +70 -11
package/i18ntokens.json
CHANGED
|
@@ -251,42 +251,6 @@
|
|
|
251
251
|
},
|
|
252
252
|
"filepath": "src/components/toast/global_toast_list.tsx"
|
|
253
253
|
},
|
|
254
|
-
{
|
|
255
|
-
"token": "euiTableHeaderCell.titleTextWithDesc",
|
|
256
|
-
"defString": "{innerText}; {description}",
|
|
257
|
-
"highlighting": "string",
|
|
258
|
-
"loc": {
|
|
259
|
-
"start": {
|
|
260
|
-
"line": 139,
|
|
261
|
-
"column": 10,
|
|
262
|
-
"index": 4414
|
|
263
|
-
},
|
|
264
|
-
"end": {
|
|
265
|
-
"line": 143,
|
|
266
|
-
"column": 11,
|
|
267
|
-
"index": 4588
|
|
268
|
-
}
|
|
269
|
-
},
|
|
270
|
-
"filepath": "src/components/table/table_header_cell.tsx"
|
|
271
|
-
},
|
|
272
|
-
{
|
|
273
|
-
"token": "euiStat.loadingText",
|
|
274
|
-
"defString": "Statistic is loading",
|
|
275
|
-
"highlighting": "string",
|
|
276
|
-
"loc": {
|
|
277
|
-
"start": {
|
|
278
|
-
"line": 95,
|
|
279
|
-
"column": 32,
|
|
280
|
-
"index": 2317
|
|
281
|
-
},
|
|
282
|
-
"end": {
|
|
283
|
-
"line": 98,
|
|
284
|
-
"column": 3,
|
|
285
|
-
"index": 2386
|
|
286
|
-
}
|
|
287
|
-
},
|
|
288
|
-
"filepath": "src/components/stat/stat.tsx"
|
|
289
|
-
},
|
|
290
254
|
{
|
|
291
255
|
"token": "euiStepStrings.step",
|
|
292
256
|
"defString": "Step {number}: {title}",
|
|
@@ -576,40 +540,40 @@
|
|
|
576
540
|
"filepath": "src/components/steps/step_strings.tsx"
|
|
577
541
|
},
|
|
578
542
|
{
|
|
579
|
-
"token": "
|
|
580
|
-
"defString": "
|
|
543
|
+
"token": "euiTableHeaderCell.titleTextWithDesc",
|
|
544
|
+
"defString": "{innerText}; {description}",
|
|
581
545
|
"highlighting": "string",
|
|
582
546
|
"loc": {
|
|
583
547
|
"start": {
|
|
584
|
-
"line":
|
|
585
|
-
"column":
|
|
586
|
-
"index":
|
|
548
|
+
"line": 139,
|
|
549
|
+
"column": 10,
|
|
550
|
+
"index": 4414
|
|
587
551
|
},
|
|
588
552
|
"end": {
|
|
589
|
-
"line":
|
|
590
|
-
"column":
|
|
591
|
-
"index":
|
|
553
|
+
"line": 143,
|
|
554
|
+
"column": 11,
|
|
555
|
+
"index": 4588
|
|
592
556
|
}
|
|
593
557
|
},
|
|
594
|
-
"filepath": "src/components/
|
|
558
|
+
"filepath": "src/components/table/table_header_cell.tsx"
|
|
595
559
|
},
|
|
596
560
|
{
|
|
597
|
-
"token": "
|
|
598
|
-
"defString": "
|
|
561
|
+
"token": "euiStat.loadingText",
|
|
562
|
+
"defString": "Statistic is loading",
|
|
599
563
|
"highlighting": "string",
|
|
600
564
|
"loc": {
|
|
601
565
|
"start": {
|
|
602
|
-
"line":
|
|
603
|
-
"column":
|
|
604
|
-
"index":
|
|
566
|
+
"line": 95,
|
|
567
|
+
"column": 32,
|
|
568
|
+
"index": 2317
|
|
605
569
|
},
|
|
606
570
|
"end": {
|
|
607
|
-
"line":
|
|
571
|
+
"line": 98,
|
|
608
572
|
"column": 3,
|
|
609
|
-
"index":
|
|
573
|
+
"index": 2386
|
|
610
574
|
}
|
|
611
575
|
},
|
|
612
|
-
"filepath": "src/components/
|
|
576
|
+
"filepath": "src/components/stat/stat.tsx"
|
|
613
577
|
},
|
|
614
578
|
{
|
|
615
579
|
"token": "euiSelectable.loadingOptions",
|
|
@@ -738,22 +702,40 @@
|
|
|
738
702
|
"filepath": "src/components/selectable/selectable.tsx"
|
|
739
703
|
},
|
|
740
704
|
{
|
|
741
|
-
"token": "
|
|
742
|
-
"defString": "
|
|
705
|
+
"token": "euiSkeletonLoading.loadedAriaText",
|
|
706
|
+
"defString": "Loaded {contentAriaLabel}",
|
|
743
707
|
"highlighting": "string",
|
|
744
708
|
"loc": {
|
|
745
709
|
"start": {
|
|
746
|
-
"line":
|
|
747
|
-
"column":
|
|
748
|
-
"index":
|
|
710
|
+
"line": 73,
|
|
711
|
+
"column": 25,
|
|
712
|
+
"index": 2343
|
|
749
713
|
},
|
|
750
714
|
"end": {
|
|
751
|
-
"line":
|
|
752
|
-
"column":
|
|
753
|
-
"index":
|
|
715
|
+
"line": 77,
|
|
716
|
+
"column": 3,
|
|
717
|
+
"index": 2457
|
|
754
718
|
}
|
|
755
719
|
},
|
|
756
|
-
"filepath": "src/components/
|
|
720
|
+
"filepath": "src/components/skeleton/skeleton_loading.tsx"
|
|
721
|
+
},
|
|
722
|
+
{
|
|
723
|
+
"token": "euiSkeletonLoading.loadingAriaText",
|
|
724
|
+
"defString": "Loading {contentAriaLabel}",
|
|
725
|
+
"highlighting": "string",
|
|
726
|
+
"loc": {
|
|
727
|
+
"start": {
|
|
728
|
+
"line": 79,
|
|
729
|
+
"column": 27,
|
|
730
|
+
"index": 2487
|
|
731
|
+
},
|
|
732
|
+
"end": {
|
|
733
|
+
"line": 83,
|
|
734
|
+
"column": 3,
|
|
735
|
+
"index": 2603
|
|
736
|
+
}
|
|
737
|
+
},
|
|
738
|
+
"filepath": "src/components/skeleton/skeleton_loading.tsx"
|
|
757
739
|
},
|
|
758
740
|
{
|
|
759
741
|
"token": "euiSearchBox.placeholder",
|
|
@@ -809,6 +791,24 @@
|
|
|
809
791
|
},
|
|
810
792
|
"filepath": "src/components/search_bar/search_box.tsx"
|
|
811
793
|
},
|
|
794
|
+
{
|
|
795
|
+
"token": "euiSideNav.mobileToggleAriaLabel",
|
|
796
|
+
"defString": "Toggle navigation",
|
|
797
|
+
"highlighting": "string",
|
|
798
|
+
"loc": {
|
|
799
|
+
"start": {
|
|
800
|
+
"line": 208,
|
|
801
|
+
"column": 16,
|
|
802
|
+
"index": 6318
|
|
803
|
+
},
|
|
804
|
+
"end": {
|
|
805
|
+
"line": 211,
|
|
806
|
+
"column": 17,
|
|
807
|
+
"index": 6449
|
|
808
|
+
}
|
|
809
|
+
},
|
|
810
|
+
"filepath": "src/components/side_nav/side_nav.tsx"
|
|
811
|
+
},
|
|
812
812
|
{
|
|
813
813
|
"token": "euiResizablePanel.toggleButtonAriaLabel",
|
|
814
814
|
"defString": "Press to toggle this panel",
|
|
@@ -1151,42 +1151,6 @@
|
|
|
1151
1151
|
},
|
|
1152
1152
|
"filepath": "src/components/pagination/pagination.tsx"
|
|
1153
1153
|
},
|
|
1154
|
-
{
|
|
1155
|
-
"token": "euiMark.highlightStart",
|
|
1156
|
-
"defString": "highlight start",
|
|
1157
|
-
"highlighting": "string",
|
|
1158
|
-
"loc": {
|
|
1159
|
-
"start": {
|
|
1160
|
-
"line": 44,
|
|
1161
|
-
"column": 25,
|
|
1162
|
-
"index": 1289
|
|
1163
|
-
},
|
|
1164
|
-
"end": {
|
|
1165
|
-
"line": 47,
|
|
1166
|
-
"column": 3,
|
|
1167
|
-
"index": 1356
|
|
1168
|
-
}
|
|
1169
|
-
},
|
|
1170
|
-
"filepath": "src/components/mark/mark.tsx"
|
|
1171
|
-
},
|
|
1172
|
-
{
|
|
1173
|
-
"token": "euiMark.highlightEnd",
|
|
1174
|
-
"defString": "highlight end",
|
|
1175
|
-
"highlighting": "string",
|
|
1176
|
-
"loc": {
|
|
1177
|
-
"start": {
|
|
1178
|
-
"line": 48,
|
|
1179
|
-
"column": 23,
|
|
1180
|
-
"index": 1381
|
|
1181
|
-
},
|
|
1182
|
-
"end": {
|
|
1183
|
-
"line": 48,
|
|
1184
|
-
"column": 74,
|
|
1185
|
-
"index": 1432
|
|
1186
|
-
}
|
|
1187
|
-
},
|
|
1188
|
-
"filepath": "src/components/mark/mark.tsx"
|
|
1189
|
-
},
|
|
1190
1154
|
{
|
|
1191
1155
|
"token": "euiModal.screenReaderModalDialog",
|
|
1192
1156
|
"defString": "You are in a modal dialog. Press Escape or tap/click outside the dialog on the shadowed overlay to close.",
|
|
@@ -1223,6 +1187,42 @@
|
|
|
1223
1187
|
},
|
|
1224
1188
|
"filepath": "src/components/modal/modal.tsx"
|
|
1225
1189
|
},
|
|
1190
|
+
{
|
|
1191
|
+
"token": "euiMark.highlightStart",
|
|
1192
|
+
"defString": "highlight start",
|
|
1193
|
+
"highlighting": "string",
|
|
1194
|
+
"loc": {
|
|
1195
|
+
"start": {
|
|
1196
|
+
"line": 44,
|
|
1197
|
+
"column": 25,
|
|
1198
|
+
"index": 1289
|
|
1199
|
+
},
|
|
1200
|
+
"end": {
|
|
1201
|
+
"line": 47,
|
|
1202
|
+
"column": 3,
|
|
1203
|
+
"index": 1356
|
|
1204
|
+
}
|
|
1205
|
+
},
|
|
1206
|
+
"filepath": "src/components/mark/mark.tsx"
|
|
1207
|
+
},
|
|
1208
|
+
{
|
|
1209
|
+
"token": "euiMark.highlightEnd",
|
|
1210
|
+
"defString": "highlight end",
|
|
1211
|
+
"highlighting": "string",
|
|
1212
|
+
"loc": {
|
|
1213
|
+
"start": {
|
|
1214
|
+
"line": 48,
|
|
1215
|
+
"column": 23,
|
|
1216
|
+
"index": 1381
|
|
1217
|
+
},
|
|
1218
|
+
"end": {
|
|
1219
|
+
"line": 48,
|
|
1220
|
+
"column": 74,
|
|
1221
|
+
"index": 1432
|
|
1222
|
+
}
|
|
1223
|
+
},
|
|
1224
|
+
"filepath": "src/components/mark/mark.tsx"
|
|
1225
|
+
},
|
|
1226
1226
|
{
|
|
1227
1227
|
"token": "euiMarkdownEditorToolbar.editor",
|
|
1228
1228
|
"defString": "Editor",
|
|
@@ -1547,6 +1547,42 @@
|
|
|
1547
1547
|
},
|
|
1548
1548
|
"filepath": "src/components/link/external_link_icon.tsx"
|
|
1549
1549
|
},
|
|
1550
|
+
{
|
|
1551
|
+
"token": "euiImageButton.openFullScreen",
|
|
1552
|
+
"defString": "Click to open this image in fullscreen mode",
|
|
1553
|
+
"highlighting": "string",
|
|
1554
|
+
"loc": {
|
|
1555
|
+
"start": {
|
|
1556
|
+
"line": 57,
|
|
1557
|
+
"column": 37,
|
|
1558
|
+
"index": 1585
|
|
1559
|
+
},
|
|
1560
|
+
"end": {
|
|
1561
|
+
"line": 60,
|
|
1562
|
+
"column": 3,
|
|
1563
|
+
"index": 1687
|
|
1564
|
+
}
|
|
1565
|
+
},
|
|
1566
|
+
"filepath": "src/components/image/image_button.tsx"
|
|
1567
|
+
},
|
|
1568
|
+
{
|
|
1569
|
+
"token": "euiImageButton.closeFullScreen",
|
|
1570
|
+
"defString": "Press Escape or click to close image fullscreen mode",
|
|
1571
|
+
"highlighting": "string",
|
|
1572
|
+
"loc": {
|
|
1573
|
+
"start": {
|
|
1574
|
+
"line": 61,
|
|
1575
|
+
"column": 38,
|
|
1576
|
+
"index": 1727
|
|
1577
|
+
},
|
|
1578
|
+
"end": {
|
|
1579
|
+
"line": 64,
|
|
1580
|
+
"column": 3,
|
|
1581
|
+
"index": 1839
|
|
1582
|
+
}
|
|
1583
|
+
},
|
|
1584
|
+
"filepath": "src/components/image/image_button.tsx"
|
|
1585
|
+
},
|
|
1550
1586
|
{
|
|
1551
1587
|
"token": "euiInlineEditForm.saveButtonAriaLabel",
|
|
1552
1588
|
"defString": "Save edit",
|
|
@@ -1620,109 +1656,37 @@
|
|
|
1620
1656
|
"filepath": "src/components/inline_edit/inline_edit_form.tsx"
|
|
1621
1657
|
},
|
|
1622
1658
|
{
|
|
1623
|
-
"token": "
|
|
1624
|
-
"defString": "
|
|
1659
|
+
"token": "euiForm.addressFormErrors",
|
|
1660
|
+
"defString": "Please address the highlighted errors.",
|
|
1625
1661
|
"highlighting": "string",
|
|
1626
1662
|
"loc": {
|
|
1627
1663
|
"start": {
|
|
1628
|
-
"line":
|
|
1629
|
-
"column":
|
|
1630
|
-
"index":
|
|
1664
|
+
"line": 98,
|
|
1665
|
+
"column": 8,
|
|
1666
|
+
"index": 2588
|
|
1631
1667
|
},
|
|
1632
1668
|
"end": {
|
|
1633
|
-
"line":
|
|
1634
|
-
"column":
|
|
1635
|
-
"index":
|
|
1669
|
+
"line": 101,
|
|
1670
|
+
"column": 9,
|
|
1671
|
+
"index": 2709
|
|
1636
1672
|
}
|
|
1637
1673
|
},
|
|
1638
|
-
"filepath": "src/components/
|
|
1674
|
+
"filepath": "src/components/form/form.tsx"
|
|
1639
1675
|
},
|
|
1640
1676
|
{
|
|
1641
|
-
"token": "
|
|
1642
|
-
"defString": "
|
|
1677
|
+
"token": "euiFlyoutMenu.back",
|
|
1678
|
+
"defString": "Back",
|
|
1643
1679
|
"highlighting": "string",
|
|
1644
1680
|
"loc": {
|
|
1645
1681
|
"start": {
|
|
1646
|
-
"line":
|
|
1647
|
-
"column": 38,
|
|
1648
|
-
"index": 1727
|
|
1649
|
-
},
|
|
1650
|
-
"end": {
|
|
1651
|
-
"line": 64,
|
|
1652
|
-
"column": 3,
|
|
1653
|
-
"index": 1839
|
|
1654
|
-
}
|
|
1655
|
-
},
|
|
1656
|
-
"filepath": "src/components/image/image_button.tsx"
|
|
1657
|
-
},
|
|
1658
|
-
{
|
|
1659
|
-
"token": "euiForm.addressFormErrors",
|
|
1660
|
-
"defString": "Please address the highlighted errors.",
|
|
1661
|
-
"highlighting": "string",
|
|
1662
|
-
"loc": {
|
|
1663
|
-
"start": {
|
|
1664
|
-
"line": 98,
|
|
1665
|
-
"column": 8,
|
|
1666
|
-
"index": 2588
|
|
1667
|
-
},
|
|
1668
|
-
"end": {
|
|
1669
|
-
"line": 101,
|
|
1670
|
-
"column": 9,
|
|
1671
|
-
"index": 2709
|
|
1672
|
-
}
|
|
1673
|
-
},
|
|
1674
|
-
"filepath": "src/components/form/form.tsx"
|
|
1675
|
-
},
|
|
1676
|
-
{
|
|
1677
|
-
"token": "euiFilterButton.filterBadgeActiveAriaLabel",
|
|
1678
|
-
"defString": "{count} active filters",
|
|
1679
|
-
"highlighting": "string",
|
|
1680
|
-
"loc": {
|
|
1681
|
-
"start": {
|
|
1682
|
-
"line": 175,
|
|
1683
|
-
"column": 27,
|
|
1684
|
-
"index": 5404
|
|
1685
|
-
},
|
|
1686
|
-
"end": {
|
|
1687
|
-
"line": 179,
|
|
1688
|
-
"column": 3,
|
|
1689
|
-
"index": 5525
|
|
1690
|
-
}
|
|
1691
|
-
},
|
|
1692
|
-
"filepath": "src/components/filter_group/filter_button.tsx"
|
|
1693
|
-
},
|
|
1694
|
-
{
|
|
1695
|
-
"token": "euiFilterButton.filterBadgeAvailableAriaLabel",
|
|
1696
|
-
"defString": "{count} available filters",
|
|
1697
|
-
"highlighting": "string",
|
|
1698
|
-
"loc": {
|
|
1699
|
-
"start": {
|
|
1700
|
-
"line": 180,
|
|
1701
|
-
"column": 30,
|
|
1702
|
-
"index": 5557
|
|
1703
|
-
},
|
|
1704
|
-
"end": {
|
|
1705
|
-
"line": 184,
|
|
1706
|
-
"column": 3,
|
|
1707
|
-
"index": 5684
|
|
1708
|
-
}
|
|
1709
|
-
},
|
|
1710
|
-
"filepath": "src/components/filter_group/filter_button.tsx"
|
|
1711
|
-
},
|
|
1712
|
-
{
|
|
1713
|
-
"token": "euiFlyoutMenu.back",
|
|
1714
|
-
"defString": "Back",
|
|
1715
|
-
"highlighting": "string",
|
|
1716
|
-
"loc": {
|
|
1717
|
-
"start": {
|
|
1718
|
-
"line": 127,
|
|
1682
|
+
"line": 138,
|
|
1719
1683
|
"column": 6,
|
|
1720
|
-
"index":
|
|
1684
|
+
"index": 3891
|
|
1721
1685
|
},
|
|
1722
1686
|
"end": {
|
|
1723
|
-
"line":
|
|
1687
|
+
"line": 138,
|
|
1724
1688
|
"column": 59,
|
|
1725
|
-
"index":
|
|
1689
|
+
"index": 3944
|
|
1726
1690
|
}
|
|
1727
1691
|
},
|
|
1728
1692
|
"filepath": "src/components/flyout/flyout_menu.tsx"
|
|
@@ -1733,14 +1697,14 @@
|
|
|
1733
1697
|
"highlighting": "string",
|
|
1734
1698
|
"loc": {
|
|
1735
1699
|
"start": {
|
|
1736
|
-
"line":
|
|
1700
|
+
"line": 157,
|
|
1737
1701
|
"column": 22,
|
|
1738
|
-
"index":
|
|
1702
|
+
"index": 4361
|
|
1739
1703
|
},
|
|
1740
1704
|
"end": {
|
|
1741
|
-
"line":
|
|
1705
|
+
"line": 157,
|
|
1742
1706
|
"column": 68,
|
|
1743
|
-
"index":
|
|
1707
|
+
"index": 4407
|
|
1744
1708
|
}
|
|
1745
1709
|
},
|
|
1746
1710
|
"filepath": "src/components/flyout/flyout_menu.tsx"
|
|
@@ -1751,14 +1715,14 @@
|
|
|
1751
1715
|
"highlighting": "string",
|
|
1752
1716
|
"loc": {
|
|
1753
1717
|
"start": {
|
|
1754
|
-
"line":
|
|
1718
|
+
"line": 1009,
|
|
1755
1719
|
"column": 14,
|
|
1756
|
-
"index":
|
|
1720
|
+
"index": 35844
|
|
1757
1721
|
},
|
|
1758
1722
|
"end": {
|
|
1759
|
-
"line":
|
|
1723
|
+
"line": 1012,
|
|
1760
1724
|
"column": 16,
|
|
1761
|
-
"index":
|
|
1725
|
+
"index": 36059
|
|
1762
1726
|
}
|
|
1763
1727
|
},
|
|
1764
1728
|
"filepath": "src/components/flyout/flyout.component.tsx"
|
|
@@ -1769,14 +1733,14 @@
|
|
|
1769
1733
|
"highlighting": "string",
|
|
1770
1734
|
"loc": {
|
|
1771
1735
|
"start": {
|
|
1772
|
-
"line":
|
|
1736
|
+
"line": 1014,
|
|
1773
1737
|
"column": 14,
|
|
1774
|
-
"index":
|
|
1738
|
+
"index": 36092
|
|
1775
1739
|
},
|
|
1776
1740
|
"end": {
|
|
1777
|
-
"line":
|
|
1741
|
+
"line": 1017,
|
|
1778
1742
|
"column": 16,
|
|
1779
|
-
"index":
|
|
1743
|
+
"index": 36271
|
|
1780
1744
|
}
|
|
1781
1745
|
},
|
|
1782
1746
|
"filepath": "src/components/flyout/flyout.component.tsx"
|
|
@@ -1787,14 +1751,14 @@
|
|
|
1787
1751
|
"highlighting": "string",
|
|
1788
1752
|
"loc": {
|
|
1789
1753
|
"start": {
|
|
1790
|
-
"line":
|
|
1754
|
+
"line": 1020,
|
|
1791
1755
|
"column": 14,
|
|
1792
|
-
"index":
|
|
1756
|
+
"index": 36351
|
|
1793
1757
|
},
|
|
1794
1758
|
"end": {
|
|
1795
|
-
"line":
|
|
1759
|
+
"line": 1023,
|
|
1796
1760
|
"column": 16,
|
|
1797
|
-
"index":
|
|
1761
|
+
"index": 36532
|
|
1798
1762
|
}
|
|
1799
1763
|
},
|
|
1800
1764
|
"filepath": "src/components/flyout/flyout.component.tsx"
|
|
@@ -1817,6 +1781,42 @@
|
|
|
1817
1781
|
},
|
|
1818
1782
|
"filepath": "src/components/flyout/_flyout_close_button.tsx"
|
|
1819
1783
|
},
|
|
1784
|
+
{
|
|
1785
|
+
"token": "euiFilterButton.filterBadgeActiveAriaLabel",
|
|
1786
|
+
"defString": "{count} active filters",
|
|
1787
|
+
"highlighting": "string",
|
|
1788
|
+
"loc": {
|
|
1789
|
+
"start": {
|
|
1790
|
+
"line": 175,
|
|
1791
|
+
"column": 27,
|
|
1792
|
+
"index": 5404
|
|
1793
|
+
},
|
|
1794
|
+
"end": {
|
|
1795
|
+
"line": 179,
|
|
1796
|
+
"column": 3,
|
|
1797
|
+
"index": 5525
|
|
1798
|
+
}
|
|
1799
|
+
},
|
|
1800
|
+
"filepath": "src/components/filter_group/filter_button.tsx"
|
|
1801
|
+
},
|
|
1802
|
+
{
|
|
1803
|
+
"token": "euiFilterButton.filterBadgeAvailableAriaLabel",
|
|
1804
|
+
"defString": "{count} available filters",
|
|
1805
|
+
"highlighting": "string",
|
|
1806
|
+
"loc": {
|
|
1807
|
+
"start": {
|
|
1808
|
+
"line": 180,
|
|
1809
|
+
"column": 30,
|
|
1810
|
+
"index": 5557
|
|
1811
|
+
},
|
|
1812
|
+
"end": {
|
|
1813
|
+
"line": 184,
|
|
1814
|
+
"column": 3,
|
|
1815
|
+
"index": 5684
|
|
1816
|
+
}
|
|
1817
|
+
},
|
|
1818
|
+
"filepath": "src/components/filter_group/filter_button.tsx"
|
|
1819
|
+
},
|
|
1820
1820
|
{
|
|
1821
1821
|
"token": "euiErrorBoundary.error",
|
|
1822
1822
|
"defString": "Error",
|
|
@@ -1890,58 +1890,22 @@
|
|
|
1890
1890
|
"filepath": "src/components/datagrid/data_grid.tsx"
|
|
1891
1891
|
},
|
|
1892
1892
|
{
|
|
1893
|
-
"token": "
|
|
1894
|
-
"defString": "
|
|
1895
|
-
"highlighting": "string",
|
|
1896
|
-
"loc": {
|
|
1897
|
-
"start": {
|
|
1898
|
-
"line": 47,
|
|
1899
|
-
"column": 47,
|
|
1900
|
-
"index": 1268
|
|
1901
|
-
},
|
|
1902
|
-
"end": {
|
|
1903
|
-
"line": 50,
|
|
1904
|
-
"column": 3,
|
|
1905
|
-
"index": 1369
|
|
1906
|
-
}
|
|
1907
|
-
},
|
|
1908
|
-
"filepath": "src/components/color_picker/hue.tsx"
|
|
1909
|
-
},
|
|
1910
|
-
{
|
|
1911
|
-
"token": "euiHue.ariaRoleDescription",
|
|
1912
|
-
"defString": "Hue slider",
|
|
1913
|
-
"highlighting": "string",
|
|
1914
|
-
"loc": {
|
|
1915
|
-
"start": {
|
|
1916
|
-
"line": 47,
|
|
1917
|
-
"column": 47,
|
|
1918
|
-
"index": 1268
|
|
1919
|
-
},
|
|
1920
|
-
"end": {
|
|
1921
|
-
"line": 50,
|
|
1922
|
-
"column": 3,
|
|
1923
|
-
"index": 1369
|
|
1924
|
-
}
|
|
1925
|
-
},
|
|
1926
|
-
"filepath": "src/components/color_picker/hue.tsx"
|
|
1927
|
-
},
|
|
1928
|
-
{
|
|
1929
|
-
"token": "euiHue.label",
|
|
1930
|
-
"defString": "Select the HSV color mode 'hue' value",
|
|
1893
|
+
"token": "euiComboBox.listboxAriaLabel",
|
|
1894
|
+
"defString": "Choose from the following options",
|
|
1931
1895
|
"highlighting": "string",
|
|
1932
1896
|
"loc": {
|
|
1933
1897
|
"start": {
|
|
1934
|
-
"line":
|
|
1935
|
-
"column":
|
|
1936
|
-
"index":
|
|
1898
|
+
"line": 813,
|
|
1899
|
+
"column": 8,
|
|
1900
|
+
"index": 24080
|
|
1937
1901
|
},
|
|
1938
1902
|
"end": {
|
|
1939
|
-
"line":
|
|
1940
|
-
"column":
|
|
1941
|
-
"index":
|
|
1903
|
+
"line": 816,
|
|
1904
|
+
"column": 9,
|
|
1905
|
+
"index": 24199
|
|
1942
1906
|
}
|
|
1943
1907
|
},
|
|
1944
|
-
"filepath": "src/components/
|
|
1908
|
+
"filepath": "src/components/combo_box/combo_box.tsx"
|
|
1945
1909
|
},
|
|
1946
1910
|
{
|
|
1947
1911
|
"token": "euiSaturation.ariaLabel",
|
|
@@ -1997,6 +1961,60 @@
|
|
|
1997
1961
|
},
|
|
1998
1962
|
"filepath": "src/components/color_picker/saturation.tsx"
|
|
1999
1963
|
},
|
|
1964
|
+
{
|
|
1965
|
+
"token": "euiHue.ariaValueText",
|
|
1966
|
+
"defString": "Hue",
|
|
1967
|
+
"highlighting": "string",
|
|
1968
|
+
"loc": {
|
|
1969
|
+
"start": {
|
|
1970
|
+
"line": 47,
|
|
1971
|
+
"column": 47,
|
|
1972
|
+
"index": 1268
|
|
1973
|
+
},
|
|
1974
|
+
"end": {
|
|
1975
|
+
"line": 50,
|
|
1976
|
+
"column": 3,
|
|
1977
|
+
"index": 1369
|
|
1978
|
+
}
|
|
1979
|
+
},
|
|
1980
|
+
"filepath": "src/components/color_picker/hue.tsx"
|
|
1981
|
+
},
|
|
1982
|
+
{
|
|
1983
|
+
"token": "euiHue.ariaRoleDescription",
|
|
1984
|
+
"defString": "Hue slider",
|
|
1985
|
+
"highlighting": "string",
|
|
1986
|
+
"loc": {
|
|
1987
|
+
"start": {
|
|
1988
|
+
"line": 47,
|
|
1989
|
+
"column": 47,
|
|
1990
|
+
"index": 1268
|
|
1991
|
+
},
|
|
1992
|
+
"end": {
|
|
1993
|
+
"line": 50,
|
|
1994
|
+
"column": 3,
|
|
1995
|
+
"index": 1369
|
|
1996
|
+
}
|
|
1997
|
+
},
|
|
1998
|
+
"filepath": "src/components/color_picker/hue.tsx"
|
|
1999
|
+
},
|
|
2000
|
+
{
|
|
2001
|
+
"token": "euiHue.label",
|
|
2002
|
+
"defString": "Select the HSV color mode 'hue' value",
|
|
2003
|
+
"highlighting": "string",
|
|
2004
|
+
"loc": {
|
|
2005
|
+
"start": {
|
|
2006
|
+
"line": 65,
|
|
2007
|
+
"column": 10,
|
|
2008
|
+
"index": 1826
|
|
2009
|
+
},
|
|
2010
|
+
"end": {
|
|
2011
|
+
"line": 68,
|
|
2012
|
+
"column": 12,
|
|
2013
|
+
"index": 1940
|
|
2014
|
+
}
|
|
2015
|
+
},
|
|
2016
|
+
"filepath": "src/components/color_picker/hue.tsx"
|
|
2017
|
+
},
|
|
2000
2018
|
{
|
|
2001
2019
|
"token": "euiColorPickerSwatch.ariaLabel",
|
|
2002
2020
|
"defString": "Select {color} as the color",
|
|
@@ -2021,14 +2039,14 @@
|
|
|
2021
2039
|
"highlighting": "string",
|
|
2022
2040
|
"loc": {
|
|
2023
2041
|
"start": {
|
|
2024
|
-
"line":
|
|
2042
|
+
"line": 227,
|
|
2025
2043
|
"column": 6,
|
|
2026
|
-
"index":
|
|
2044
|
+
"index": 6102
|
|
2027
2045
|
},
|
|
2028
2046
|
"end": {
|
|
2029
|
-
"line":
|
|
2047
|
+
"line": 250,
|
|
2030
2048
|
"column": 3,
|
|
2031
|
-
"index":
|
|
2049
|
+
"index": 6785
|
|
2032
2050
|
}
|
|
2033
2051
|
},
|
|
2034
2052
|
"filepath": "src/components/color_picker/color_picker.tsx"
|
|
@@ -2039,14 +2057,14 @@
|
|
|
2039
2057
|
"highlighting": "string",
|
|
2040
2058
|
"loc": {
|
|
2041
2059
|
"start": {
|
|
2042
|
-
"line":
|
|
2060
|
+
"line": 227,
|
|
2043
2061
|
"column": 6,
|
|
2044
|
-
"index":
|
|
2062
|
+
"index": 6102
|
|
2045
2063
|
},
|
|
2046
2064
|
"end": {
|
|
2047
|
-
"line":
|
|
2065
|
+
"line": 250,
|
|
2048
2066
|
"column": 3,
|
|
2049
|
-
"index":
|
|
2067
|
+
"index": 6785
|
|
2050
2068
|
}
|
|
2051
2069
|
},
|
|
2052
2070
|
"filepath": "src/components/color_picker/color_picker.tsx"
|
|
@@ -2057,14 +2075,14 @@
|
|
|
2057
2075
|
"highlighting": "string",
|
|
2058
2076
|
"loc": {
|
|
2059
2077
|
"start": {
|
|
2060
|
-
"line":
|
|
2078
|
+
"line": 227,
|
|
2061
2079
|
"column": 6,
|
|
2062
|
-
"index":
|
|
2080
|
+
"index": 6102
|
|
2063
2081
|
},
|
|
2064
2082
|
"end": {
|
|
2065
|
-
"line":
|
|
2083
|
+
"line": 250,
|
|
2066
2084
|
"column": 3,
|
|
2067
|
-
"index":
|
|
2085
|
+
"index": 6785
|
|
2068
2086
|
}
|
|
2069
2087
|
},
|
|
2070
2088
|
"filepath": "src/components/color_picker/color_picker.tsx"
|
|
@@ -2075,14 +2093,14 @@
|
|
|
2075
2093
|
"highlighting": "string",
|
|
2076
2094
|
"loc": {
|
|
2077
2095
|
"start": {
|
|
2078
|
-
"line":
|
|
2096
|
+
"line": 227,
|
|
2079
2097
|
"column": 6,
|
|
2080
|
-
"index":
|
|
2098
|
+
"index": 6102
|
|
2081
2099
|
},
|
|
2082
2100
|
"end": {
|
|
2083
|
-
"line":
|
|
2101
|
+
"line": 250,
|
|
2084
2102
|
"column": 3,
|
|
2085
|
-
"index":
|
|
2103
|
+
"index": 6785
|
|
2086
2104
|
}
|
|
2087
2105
|
},
|
|
2088
2106
|
"filepath": "src/components/color_picker/color_picker.tsx"
|
|
@@ -2093,14 +2111,14 @@
|
|
|
2093
2111
|
"highlighting": "string",
|
|
2094
2112
|
"loc": {
|
|
2095
2113
|
"start": {
|
|
2096
|
-
"line":
|
|
2114
|
+
"line": 227,
|
|
2097
2115
|
"column": 6,
|
|
2098
|
-
"index":
|
|
2116
|
+
"index": 6102
|
|
2099
2117
|
},
|
|
2100
2118
|
"end": {
|
|
2101
|
-
"line":
|
|
2119
|
+
"line": 250,
|
|
2102
2120
|
"column": 3,
|
|
2103
|
-
"index":
|
|
2121
|
+
"index": 6785
|
|
2104
2122
|
}
|
|
2105
2123
|
},
|
|
2106
2124
|
"filepath": "src/components/color_picker/color_picker.tsx"
|
|
@@ -2111,14 +2129,14 @@
|
|
|
2111
2129
|
"highlighting": "string",
|
|
2112
2130
|
"loc": {
|
|
2113
2131
|
"start": {
|
|
2114
|
-
"line":
|
|
2132
|
+
"line": 227,
|
|
2115
2133
|
"column": 6,
|
|
2116
|
-
"index":
|
|
2134
|
+
"index": 6102
|
|
2117
2135
|
},
|
|
2118
2136
|
"end": {
|
|
2119
|
-
"line":
|
|
2137
|
+
"line": 250,
|
|
2120
2138
|
"column": 3,
|
|
2121
|
-
"index":
|
|
2139
|
+
"index": 6785
|
|
2122
2140
|
}
|
|
2123
2141
|
},
|
|
2124
2142
|
"filepath": "src/components/color_picker/color_picker.tsx"
|
|
@@ -2129,14 +2147,14 @@
|
|
|
2129
2147
|
"highlighting": "string",
|
|
2130
2148
|
"loc": {
|
|
2131
2149
|
"start": {
|
|
2132
|
-
"line":
|
|
2150
|
+
"line": 227,
|
|
2133
2151
|
"column": 6,
|
|
2134
|
-
"index":
|
|
2152
|
+
"index": 6102
|
|
2135
2153
|
},
|
|
2136
2154
|
"end": {
|
|
2137
|
-
"line":
|
|
2155
|
+
"line": 250,
|
|
2138
2156
|
"column": 3,
|
|
2139
|
-
"index":
|
|
2157
|
+
"index": 6785
|
|
2140
2158
|
}
|
|
2141
2159
|
},
|
|
2142
2160
|
"filepath": "src/components/color_picker/color_picker.tsx"
|
|
@@ -2147,53 +2165,53 @@
|
|
|
2147
2165
|
"highlighting": "string",
|
|
2148
2166
|
"loc": {
|
|
2149
2167
|
"start": {
|
|
2150
|
-
"line":
|
|
2168
|
+
"line": 227,
|
|
2151
2169
|
"column": 6,
|
|
2152
|
-
"index":
|
|
2170
|
+
"index": 6102
|
|
2153
2171
|
},
|
|
2154
2172
|
"end": {
|
|
2155
|
-
"line":
|
|
2173
|
+
"line": 250,
|
|
2156
2174
|
"column": 3,
|
|
2157
|
-
"index":
|
|
2175
|
+
"index": 6785
|
|
2158
2176
|
}
|
|
2159
2177
|
},
|
|
2160
2178
|
"filepath": "src/components/color_picker/color_picker.tsx"
|
|
2161
2179
|
},
|
|
2162
2180
|
{
|
|
2163
|
-
"token": "
|
|
2164
|
-
"defString": "
|
|
2181
|
+
"token": "euiColorPicker.ariaLabel",
|
|
2182
|
+
"defString": "Select a color",
|
|
2165
2183
|
"highlighting": "string",
|
|
2166
2184
|
"loc": {
|
|
2167
2185
|
"start": {
|
|
2168
|
-
"line":
|
|
2169
|
-
"column":
|
|
2170
|
-
"index":
|
|
2186
|
+
"line": 227,
|
|
2187
|
+
"column": 6,
|
|
2188
|
+
"index": 6102
|
|
2171
2189
|
},
|
|
2172
2190
|
"end": {
|
|
2173
|
-
"line":
|
|
2191
|
+
"line": 250,
|
|
2174
2192
|
"column": 3,
|
|
2175
|
-
"index":
|
|
2193
|
+
"index": 6785
|
|
2176
2194
|
}
|
|
2177
2195
|
},
|
|
2178
|
-
"filepath": "src/components/
|
|
2196
|
+
"filepath": "src/components/color_picker/color_picker.tsx"
|
|
2179
2197
|
},
|
|
2180
2198
|
{
|
|
2181
|
-
"token": "
|
|
2182
|
-
"defString": "
|
|
2199
|
+
"token": "euiCollapsibleNavBeta.ariaLabel",
|
|
2200
|
+
"defString": "Site menu",
|
|
2183
2201
|
"highlighting": "string",
|
|
2184
2202
|
"loc": {
|
|
2185
2203
|
"start": {
|
|
2186
|
-
"line":
|
|
2187
|
-
"column":
|
|
2188
|
-
"index":
|
|
2204
|
+
"line": 181,
|
|
2205
|
+
"column": 27,
|
|
2206
|
+
"index": 6041
|
|
2189
2207
|
},
|
|
2190
2208
|
"end": {
|
|
2191
|
-
"line":
|
|
2192
|
-
"column":
|
|
2193
|
-
"index":
|
|
2209
|
+
"line": 184,
|
|
2210
|
+
"column": 3,
|
|
2211
|
+
"index": 6111
|
|
2194
2212
|
}
|
|
2195
2213
|
},
|
|
2196
|
-
"filepath": "src/components/
|
|
2214
|
+
"filepath": "src/components/collapsible_nav_beta/collapsible_nav_beta.tsx"
|
|
2197
2215
|
},
|
|
2198
2216
|
{
|
|
2199
2217
|
"token": "euiCodeBlockFullScreen.fullscreenCollapse",
|
|
@@ -2249,24 +2267,6 @@
|
|
|
2249
2267
|
},
|
|
2250
2268
|
"filepath": "src/components/code/code_block_full_screen.tsx"
|
|
2251
2269
|
},
|
|
2252
|
-
{
|
|
2253
|
-
"token": "euiCodeBlockAnnotations.ariaLabel",
|
|
2254
|
-
"defString": "Click to view a code annotation for line {lineNumber}",
|
|
2255
|
-
"highlighting": "string",
|
|
2256
|
-
"loc": {
|
|
2257
|
-
"start": {
|
|
2258
|
-
"line": 37,
|
|
2259
|
-
"column": 20,
|
|
2260
|
-
"index": 1198
|
|
2261
|
-
},
|
|
2262
|
-
"end": {
|
|
2263
|
-
"line": 41,
|
|
2264
|
-
"column": 3,
|
|
2265
|
-
"index": 1334
|
|
2266
|
-
}
|
|
2267
|
-
},
|
|
2268
|
-
"filepath": "src/components/code/code_block_annotations.tsx"
|
|
2269
|
-
},
|
|
2270
2270
|
{
|
|
2271
2271
|
"token": "euiCodeBlockCopy.copy",
|
|
2272
2272
|
"defString": "Copy",
|
|
@@ -2285,6 +2285,24 @@
|
|
|
2285
2285
|
},
|
|
2286
2286
|
"filepath": "src/components/code/code_block_copy.tsx"
|
|
2287
2287
|
},
|
|
2288
|
+
{
|
|
2289
|
+
"token": "euiCodeBlockAnnotations.ariaLabel",
|
|
2290
|
+
"defString": "Click to view a code annotation for line {lineNumber}",
|
|
2291
|
+
"highlighting": "string",
|
|
2292
|
+
"loc": {
|
|
2293
|
+
"start": {
|
|
2294
|
+
"line": 37,
|
|
2295
|
+
"column": 20,
|
|
2296
|
+
"index": 1198
|
|
2297
|
+
},
|
|
2298
|
+
"end": {
|
|
2299
|
+
"line": 41,
|
|
2300
|
+
"column": 3,
|
|
2301
|
+
"index": 1334
|
|
2302
|
+
}
|
|
2303
|
+
},
|
|
2304
|
+
"filepath": "src/components/code/code_block_annotations.tsx"
|
|
2305
|
+
},
|
|
2288
2306
|
{
|
|
2289
2307
|
"token": "euiCodeBlock.label",
|
|
2290
2308
|
"defString": "{language} code block:",
|
|
@@ -3173,14 +3191,14 @@
|
|
|
3173
3191
|
"highlighting": "string",
|
|
3174
3192
|
"loc": {
|
|
3175
3193
|
"start": {
|
|
3176
|
-
"line":
|
|
3194
|
+
"line": 87,
|
|
3177
3195
|
"column": 6,
|
|
3178
|
-
"index":
|
|
3196
|
+
"index": 2900
|
|
3179
3197
|
},
|
|
3180
3198
|
"end": {
|
|
3181
|
-
"line":
|
|
3199
|
+
"line": 90,
|
|
3182
3200
|
"column": 8,
|
|
3183
|
-
"index":
|
|
3201
|
+
"index": 3007
|
|
3184
3202
|
}
|
|
3185
3203
|
},
|
|
3186
3204
|
"filepath": "src/components/form/file_picker/file_picker.tsx"
|
|
@@ -3191,14 +3209,14 @@
|
|
|
3191
3209
|
"highlighting": "string",
|
|
3192
3210
|
"loc": {
|
|
3193
3211
|
"start": {
|
|
3194
|
-
"line":
|
|
3195
|
-
"column":
|
|
3196
|
-
"index":
|
|
3212
|
+
"line": 108,
|
|
3213
|
+
"column": 8,
|
|
3214
|
+
"index": 3364
|
|
3197
3215
|
},
|
|
3198
3216
|
"end": {
|
|
3199
|
-
"line":
|
|
3200
|
-
"column":
|
|
3201
|
-
"index":
|
|
3217
|
+
"line": 112,
|
|
3218
|
+
"column": 10,
|
|
3219
|
+
"index": 3523
|
|
3202
3220
|
}
|
|
3203
3221
|
},
|
|
3204
3222
|
"filepath": "src/components/form/file_picker/file_picker.tsx"
|
|
@@ -3209,14 +3227,14 @@
|
|
|
3209
3227
|
"highlighting": "string",
|
|
3210
3228
|
"loc": {
|
|
3211
3229
|
"start": {
|
|
3212
|
-
"line":
|
|
3230
|
+
"line": 189,
|
|
3213
3231
|
"column": 6,
|
|
3214
|
-
"index":
|
|
3232
|
+
"index": 5225
|
|
3215
3233
|
},
|
|
3216
3234
|
"end": {
|
|
3217
|
-
"line":
|
|
3235
|
+
"line": 192,
|
|
3218
3236
|
"column": 7,
|
|
3219
|
-
"index":
|
|
3237
|
+
"index": 5335
|
|
3220
3238
|
}
|
|
3221
3239
|
},
|
|
3222
3240
|
"filepath": "src/components/form/file_picker/file_picker.tsx"
|
|
@@ -3227,14 +3245,14 @@
|
|
|
3227
3245
|
"highlighting": "string",
|
|
3228
3246
|
"loc": {
|
|
3229
3247
|
"start": {
|
|
3230
|
-
"line":
|
|
3248
|
+
"line": 307,
|
|
3231
3249
|
"column": 18,
|
|
3232
|
-
"index":
|
|
3250
|
+
"index": 9342
|
|
3233
3251
|
},
|
|
3234
3252
|
"end": {
|
|
3235
|
-
"line":
|
|
3253
|
+
"line": 310,
|
|
3236
3254
|
"column": 20,
|
|
3237
|
-
"index":
|
|
3255
|
+
"index": 9465
|
|
3238
3256
|
}
|
|
3239
3257
|
},
|
|
3240
3258
|
"filepath": "src/components/form/file_picker/file_picker.tsx"
|
|
@@ -3299,14 +3317,14 @@
|
|
|
3299
3317
|
"highlighting": "string",
|
|
3300
3318
|
"loc": {
|
|
3301
3319
|
"start": {
|
|
3302
|
-
"line":
|
|
3320
|
+
"line": 161,
|
|
3303
3321
|
"column": 25,
|
|
3304
|
-
"index":
|
|
3322
|
+
"index": 5271
|
|
3305
3323
|
},
|
|
3306
3324
|
"end": {
|
|
3307
|
-
"line":
|
|
3325
|
+
"line": 164,
|
|
3308
3326
|
"column": 5,
|
|
3309
|
-
"index":
|
|
3327
|
+
"index": 5350
|
|
3310
3328
|
}
|
|
3311
3329
|
},
|
|
3312
3330
|
"filepath": "src/components/flyout/manager/flyout_managed.tsx"
|
|
@@ -5759,24 +5777,6 @@
|
|
|
5759
5777
|
},
|
|
5760
5778
|
"filepath": "src/components/datagrid/controls/fullscreen_selector.tsx"
|
|
5761
5779
|
},
|
|
5762
|
-
{
|
|
5763
|
-
"token": "euiDataGridToolbarControl.badgeAriaLabel",
|
|
5764
|
-
"defString": "Active: {count}",
|
|
5765
|
-
"highlighting": "string",
|
|
5766
|
-
"loc": {
|
|
5767
|
-
"start": {
|
|
5768
|
-
"line": 31,
|
|
5769
|
-
"column": 25,
|
|
5770
|
-
"index": 1211
|
|
5771
|
-
},
|
|
5772
|
-
"end": {
|
|
5773
|
-
"line": 40,
|
|
5774
|
-
"column": 3,
|
|
5775
|
-
"index": 1441
|
|
5776
|
-
}
|
|
5777
|
-
},
|
|
5778
|
-
"filepath": "src/components/datagrid/controls/data_grid_toolbar_control.tsx"
|
|
5779
|
-
},
|
|
5780
5780
|
{
|
|
5781
5781
|
"token": "euiDisplaySelector.densityLabel",
|
|
5782
5782
|
"defString": "Density",
|
|
@@ -5958,202 +5958,22 @@
|
|
|
5958
5958
|
"filepath": "src/components/datagrid/controls/display_selector.tsx"
|
|
5959
5959
|
},
|
|
5960
5960
|
{
|
|
5961
|
-
"token": "
|
|
5962
|
-
"defString": "
|
|
5963
|
-
"highlighting": "string",
|
|
5964
|
-
"loc": {
|
|
5965
|
-
"start": {
|
|
5966
|
-
"line": 66,
|
|
5967
|
-
"column": 30,
|
|
5968
|
-
"index": 2120
|
|
5969
|
-
},
|
|
5970
|
-
"end": {
|
|
5971
|
-
"line": 69,
|
|
5972
|
-
"column": 5,
|
|
5973
|
-
"index": 2190
|
|
5974
|
-
}
|
|
5975
|
-
},
|
|
5976
|
-
"filepath": "src/components/datagrid/controls/column_sorting.tsx"
|
|
5977
|
-
},
|
|
5978
|
-
{
|
|
5979
|
-
"token": "euiColumnSorting.sortFieldAriaLabel",
|
|
5980
|
-
"defString": "Sort by: ",
|
|
5981
|
-
"highlighting": "string",
|
|
5982
|
-
"loc": {
|
|
5983
|
-
"start": {
|
|
5984
|
-
"line": 70,
|
|
5985
|
-
"column": 31,
|
|
5986
|
-
"index": 2223
|
|
5987
|
-
},
|
|
5988
|
-
"end": {
|
|
5989
|
-
"line": 73,
|
|
5990
|
-
"column": 5,
|
|
5991
|
-
"index": 2303
|
|
5992
|
-
}
|
|
5993
|
-
},
|
|
5994
|
-
"filepath": "src/components/datagrid/controls/column_sorting.tsx"
|
|
5995
|
-
},
|
|
5996
|
-
{
|
|
5997
|
-
"token": "euiColumnSorting.emptySorting",
|
|
5998
|
-
"defString": "Currently no fields are sorted",
|
|
5999
|
-
"highlighting": "string",
|
|
6000
|
-
"loc": {
|
|
6001
|
-
"start": {
|
|
6002
|
-
"line": 220,
|
|
6003
|
-
"column": 14,
|
|
6004
|
-
"index": 6937
|
|
6005
|
-
},
|
|
6006
|
-
"end": {
|
|
6007
|
-
"line": 223,
|
|
6008
|
-
"column": 16,
|
|
6009
|
-
"index": 7073
|
|
6010
|
-
}
|
|
6011
|
-
},
|
|
6012
|
-
"filepath": "src/components/datagrid/controls/column_sorting.tsx"
|
|
6013
|
-
},
|
|
6014
|
-
{
|
|
6015
|
-
"token": "euiColumnSorting.pickFields",
|
|
6016
|
-
"defString": "Pick fields to sort by",
|
|
6017
|
-
"highlighting": "string",
|
|
6018
|
-
"loc": {
|
|
6019
|
-
"start": {
|
|
6020
|
-
"line": 253,
|
|
6021
|
-
"column": 24,
|
|
6022
|
-
"index": 8304
|
|
6023
|
-
},
|
|
6024
|
-
"end": {
|
|
6025
|
-
"line": 256,
|
|
6026
|
-
"column": 26,
|
|
6027
|
-
"index": 8460
|
|
6028
|
-
}
|
|
6029
|
-
},
|
|
6030
|
-
"filepath": "src/components/datagrid/controls/column_sorting.tsx"
|
|
6031
|
-
},
|
|
6032
|
-
{
|
|
6033
|
-
"token": "euiColumnSorting.clearAll",
|
|
6034
|
-
"defString": "Clear sorting",
|
|
6035
|
-
"highlighting": "string",
|
|
6036
|
-
"loc": {
|
|
6037
|
-
"start": {
|
|
6038
|
-
"line": 328,
|
|
6039
|
-
"column": 20,
|
|
6040
|
-
"index": 11814
|
|
6041
|
-
},
|
|
6042
|
-
"end": {
|
|
6043
|
-
"line": 331,
|
|
6044
|
-
"column": 22,
|
|
6045
|
-
"index": 11947
|
|
6046
|
-
}
|
|
6047
|
-
},
|
|
6048
|
-
"filepath": "src/components/datagrid/controls/column_sorting.tsx"
|
|
6049
|
-
},
|
|
6050
|
-
{
|
|
6051
|
-
"token": "euiColumnSelector.dragHandleAriaLabel",
|
|
6052
|
-
"defString": "drag handle",
|
|
5961
|
+
"token": "euiDataGridToolbarControl.badgeAriaLabel",
|
|
5962
|
+
"defString": "Active: {count}",
|
|
6053
5963
|
"highlighting": "string",
|
|
6054
5964
|
"loc": {
|
|
6055
5965
|
"start": {
|
|
6056
|
-
"line":
|
|
6057
|
-
"column":
|
|
6058
|
-
"index":
|
|
5966
|
+
"line": 31,
|
|
5967
|
+
"column": 25,
|
|
5968
|
+
"index": 1211
|
|
6059
5969
|
},
|
|
6060
5970
|
"end": {
|
|
6061
|
-
"line":
|
|
5971
|
+
"line": 40,
|
|
6062
5972
|
"column": 3,
|
|
6063
|
-
"index":
|
|
6064
|
-
}
|
|
6065
|
-
},
|
|
6066
|
-
"filepath": "src/components/datagrid/controls/column_selector.tsx"
|
|
6067
|
-
},
|
|
6068
|
-
{
|
|
6069
|
-
"token": "euiColumnSelector.button",
|
|
6070
|
-
"defString": "Columns",
|
|
6071
|
-
"highlighting": "string",
|
|
6072
|
-
"loc": {
|
|
6073
|
-
"start": {
|
|
6074
|
-
"line": 203,
|
|
6075
|
-
"column": 12,
|
|
6076
|
-
"index": 6382
|
|
6077
|
-
},
|
|
6078
|
-
"end": {
|
|
6079
|
-
"line": 203,
|
|
6080
|
-
"column": 74,
|
|
6081
|
-
"index": 6444
|
|
6082
|
-
}
|
|
6083
|
-
},
|
|
6084
|
-
"filepath": "src/components/datagrid/controls/column_selector.tsx"
|
|
6085
|
-
},
|
|
6086
|
-
{
|
|
6087
|
-
"token": "euiColumnSelector.search",
|
|
6088
|
-
"defString": "Search",
|
|
6089
|
-
"highlighting": "string",
|
|
6090
|
-
"loc": {
|
|
6091
|
-
"start": {
|
|
6092
|
-
"line": 209,
|
|
6093
|
-
"column": 12,
|
|
6094
|
-
"index": 6590
|
|
6095
|
-
},
|
|
6096
|
-
"end": {
|
|
6097
|
-
"line": 215,
|
|
6098
|
-
"column": 13,
|
|
6099
|
-
"index": 6802
|
|
6100
|
-
}
|
|
6101
|
-
},
|
|
6102
|
-
"filepath": "src/components/datagrid/controls/column_selector.tsx"
|
|
6103
|
-
},
|
|
6104
|
-
{
|
|
6105
|
-
"token": "euiColumnSelector.searchcolumns",
|
|
6106
|
-
"defString": "Search columns",
|
|
6107
|
-
"highlighting": "string",
|
|
6108
|
-
"loc": {
|
|
6109
|
-
"start": {
|
|
6110
|
-
"line": 209,
|
|
6111
|
-
"column": 12,
|
|
6112
|
-
"index": 6590
|
|
6113
|
-
},
|
|
6114
|
-
"end": {
|
|
6115
|
-
"line": 215,
|
|
6116
|
-
"column": 13,
|
|
6117
|
-
"index": 6802
|
|
6118
|
-
}
|
|
6119
|
-
},
|
|
6120
|
-
"filepath": "src/components/datagrid/controls/column_selector.tsx"
|
|
6121
|
-
},
|
|
6122
|
-
{
|
|
6123
|
-
"token": "euiColumnSelector.selectAll",
|
|
6124
|
-
"defString": "Show all",
|
|
6125
|
-
"highlighting": "string",
|
|
6126
|
-
"loc": {
|
|
6127
|
-
"start": {
|
|
6128
|
-
"line": 340,
|
|
6129
|
-
"column": 18,
|
|
6130
|
-
"index": 12118
|
|
6131
|
-
},
|
|
6132
|
-
"end": {
|
|
6133
|
-
"line": 343,
|
|
6134
|
-
"column": 20,
|
|
6135
|
-
"index": 12242
|
|
6136
|
-
}
|
|
6137
|
-
},
|
|
6138
|
-
"filepath": "src/components/datagrid/controls/column_selector.tsx"
|
|
6139
|
-
},
|
|
6140
|
-
{
|
|
6141
|
-
"token": "euiColumnSelector.hideAll",
|
|
6142
|
-
"defString": "Hide all",
|
|
6143
|
-
"highlighting": "string",
|
|
6144
|
-
"loc": {
|
|
6145
|
-
"start": {
|
|
6146
|
-
"line": 353,
|
|
6147
|
-
"column": 18,
|
|
6148
|
-
"index": 12602
|
|
6149
|
-
},
|
|
6150
|
-
"end": {
|
|
6151
|
-
"line": 356,
|
|
6152
|
-
"column": 20,
|
|
6153
|
-
"index": 12724
|
|
5973
|
+
"index": 1441
|
|
6154
5974
|
}
|
|
6155
5975
|
},
|
|
6156
|
-
"filepath": "src/components/datagrid/controls/
|
|
5976
|
+
"filepath": "src/components/datagrid/controls/data_grid_toolbar_control.tsx"
|
|
6157
5977
|
},
|
|
6158
5978
|
{
|
|
6159
5979
|
"token": "euiColumnSortingDraggable.defaultSortAsc",
|
|
@@ -6264,130 +6084,220 @@
|
|
|
6264
6084
|
"filepath": "src/components/datagrid/controls/column_sorting_draggable.tsx"
|
|
6265
6085
|
},
|
|
6266
6086
|
{
|
|
6267
|
-
"token": "
|
|
6268
|
-
"defString": "
|
|
6087
|
+
"token": "euiColumnSorting.button",
|
|
6088
|
+
"defString": "Sort fields",
|
|
6269
6089
|
"highlighting": "string",
|
|
6270
6090
|
"loc": {
|
|
6271
6091
|
"start": {
|
|
6272
|
-
"line":
|
|
6273
|
-
"column":
|
|
6274
|
-
"index":
|
|
6092
|
+
"line": 66,
|
|
6093
|
+
"column": 30,
|
|
6094
|
+
"index": 2120
|
|
6275
6095
|
},
|
|
6276
6096
|
"end": {
|
|
6277
|
-
"line":
|
|
6278
|
-
"column":
|
|
6279
|
-
"index":
|
|
6097
|
+
"line": 69,
|
|
6098
|
+
"column": 5,
|
|
6099
|
+
"index": 2190
|
|
6280
6100
|
}
|
|
6281
6101
|
},
|
|
6282
|
-
"filepath": "src/components/
|
|
6102
|
+
"filepath": "src/components/datagrid/controls/column_sorting.tsx"
|
|
6283
6103
|
},
|
|
6284
6104
|
{
|
|
6285
|
-
"token": "
|
|
6286
|
-
"defString": "
|
|
6105
|
+
"token": "euiColumnSorting.sortFieldAriaLabel",
|
|
6106
|
+
"defString": "Sort by: ",
|
|
6287
6107
|
"highlighting": "string",
|
|
6288
6108
|
"loc": {
|
|
6289
6109
|
"start": {
|
|
6290
|
-
"line":
|
|
6291
|
-
"column":
|
|
6292
|
-
"index":
|
|
6110
|
+
"line": 70,
|
|
6111
|
+
"column": 31,
|
|
6112
|
+
"index": 2223
|
|
6293
6113
|
},
|
|
6294
6114
|
"end": {
|
|
6295
|
-
"line":
|
|
6296
|
-
"column":
|
|
6297
|
-
"index":
|
|
6115
|
+
"line": 73,
|
|
6116
|
+
"column": 5,
|
|
6117
|
+
"index": 2303
|
|
6298
6118
|
}
|
|
6299
6119
|
},
|
|
6300
|
-
"filepath": "src/components/
|
|
6120
|
+
"filepath": "src/components/datagrid/controls/column_sorting.tsx"
|
|
6301
6121
|
},
|
|
6302
6122
|
{
|
|
6303
|
-
"token": "
|
|
6304
|
-
"defString": "
|
|
6123
|
+
"token": "euiColumnSorting.emptySorting",
|
|
6124
|
+
"defString": "Currently no fields are sorted",
|
|
6305
6125
|
"highlighting": "string",
|
|
6306
6126
|
"loc": {
|
|
6307
6127
|
"start": {
|
|
6308
|
-
"line":
|
|
6128
|
+
"line": 220,
|
|
6129
|
+
"column": 14,
|
|
6130
|
+
"index": 6937
|
|
6131
|
+
},
|
|
6132
|
+
"end": {
|
|
6133
|
+
"line": 223,
|
|
6134
|
+
"column": 16,
|
|
6135
|
+
"index": 7073
|
|
6136
|
+
}
|
|
6137
|
+
},
|
|
6138
|
+
"filepath": "src/components/datagrid/controls/column_sorting.tsx"
|
|
6139
|
+
},
|
|
6140
|
+
{
|
|
6141
|
+
"token": "euiColumnSorting.pickFields",
|
|
6142
|
+
"defString": "Pick fields to sort by",
|
|
6143
|
+
"highlighting": "string",
|
|
6144
|
+
"loc": {
|
|
6145
|
+
"start": {
|
|
6146
|
+
"line": 253,
|
|
6147
|
+
"column": 24,
|
|
6148
|
+
"index": 8304
|
|
6149
|
+
},
|
|
6150
|
+
"end": {
|
|
6151
|
+
"line": 256,
|
|
6309
6152
|
"column": 26,
|
|
6310
|
-
"index":
|
|
6153
|
+
"index": 8460
|
|
6154
|
+
}
|
|
6155
|
+
},
|
|
6156
|
+
"filepath": "src/components/datagrid/controls/column_sorting.tsx"
|
|
6157
|
+
},
|
|
6158
|
+
{
|
|
6159
|
+
"token": "euiColumnSorting.clearAll",
|
|
6160
|
+
"defString": "Clear sorting",
|
|
6161
|
+
"highlighting": "string",
|
|
6162
|
+
"loc": {
|
|
6163
|
+
"start": {
|
|
6164
|
+
"line": 328,
|
|
6165
|
+
"column": 20,
|
|
6166
|
+
"index": 11814
|
|
6311
6167
|
},
|
|
6312
6168
|
"end": {
|
|
6313
|
-
"line":
|
|
6169
|
+
"line": 331,
|
|
6170
|
+
"column": 22,
|
|
6171
|
+
"index": 11947
|
|
6172
|
+
}
|
|
6173
|
+
},
|
|
6174
|
+
"filepath": "src/components/datagrid/controls/column_sorting.tsx"
|
|
6175
|
+
},
|
|
6176
|
+
{
|
|
6177
|
+
"token": "euiColumnSelector.dragHandleAriaLabel",
|
|
6178
|
+
"defString": "drag handle",
|
|
6179
|
+
"highlighting": "string",
|
|
6180
|
+
"loc": {
|
|
6181
|
+
"start": {
|
|
6182
|
+
"line": 164,
|
|
6183
|
+
"column": 30,
|
|
6184
|
+
"index": 5119
|
|
6185
|
+
},
|
|
6186
|
+
"end": {
|
|
6187
|
+
"line": 167,
|
|
6314
6188
|
"column": 3,
|
|
6315
|
-
"index":
|
|
6189
|
+
"index": 5197
|
|
6316
6190
|
}
|
|
6317
6191
|
},
|
|
6318
|
-
"filepath": "src/components/
|
|
6192
|
+
"filepath": "src/components/datagrid/controls/column_selector.tsx"
|
|
6319
6193
|
},
|
|
6320
6194
|
{
|
|
6321
|
-
"token": "
|
|
6322
|
-
"defString": "
|
|
6195
|
+
"token": "euiColumnSelector.button",
|
|
6196
|
+
"defString": "Columns",
|
|
6323
6197
|
"highlighting": "string",
|
|
6324
6198
|
"loc": {
|
|
6325
6199
|
"start": {
|
|
6326
|
-
"line":
|
|
6327
|
-
"column":
|
|
6328
|
-
"index":
|
|
6200
|
+
"line": 203,
|
|
6201
|
+
"column": 12,
|
|
6202
|
+
"index": 6382
|
|
6203
|
+
},
|
|
6204
|
+
"end": {
|
|
6205
|
+
"line": 203,
|
|
6206
|
+
"column": 74,
|
|
6207
|
+
"index": 6444
|
|
6208
|
+
}
|
|
6209
|
+
},
|
|
6210
|
+
"filepath": "src/components/datagrid/controls/column_selector.tsx"
|
|
6211
|
+
},
|
|
6212
|
+
{
|
|
6213
|
+
"token": "euiColumnSelector.search",
|
|
6214
|
+
"defString": "Search",
|
|
6215
|
+
"highlighting": "string",
|
|
6216
|
+
"loc": {
|
|
6217
|
+
"start": {
|
|
6218
|
+
"line": 209,
|
|
6219
|
+
"column": 12,
|
|
6220
|
+
"index": 6590
|
|
6221
|
+
},
|
|
6222
|
+
"end": {
|
|
6223
|
+
"line": 215,
|
|
6224
|
+
"column": 13,
|
|
6225
|
+
"index": 6802
|
|
6226
|
+
}
|
|
6227
|
+
},
|
|
6228
|
+
"filepath": "src/components/datagrid/controls/column_selector.tsx"
|
|
6229
|
+
},
|
|
6230
|
+
{
|
|
6231
|
+
"token": "euiColumnSelector.searchcolumns",
|
|
6232
|
+
"defString": "Search columns",
|
|
6233
|
+
"highlighting": "string",
|
|
6234
|
+
"loc": {
|
|
6235
|
+
"start": {
|
|
6236
|
+
"line": 209,
|
|
6237
|
+
"column": 12,
|
|
6238
|
+
"index": 6590
|
|
6329
6239
|
},
|
|
6330
6240
|
"end": {
|
|
6331
|
-
"line":
|
|
6332
|
-
"column":
|
|
6333
|
-
"index":
|
|
6241
|
+
"line": 215,
|
|
6242
|
+
"column": 13,
|
|
6243
|
+
"index": 6802
|
|
6334
6244
|
}
|
|
6335
6245
|
},
|
|
6336
|
-
"filepath": "src/components/
|
|
6246
|
+
"filepath": "src/components/datagrid/controls/column_selector.tsx"
|
|
6337
6247
|
},
|
|
6338
6248
|
{
|
|
6339
|
-
"token": "
|
|
6340
|
-
"defString": "
|
|
6249
|
+
"token": "euiColumnSelector.selectAll",
|
|
6250
|
+
"defString": "Show all",
|
|
6341
6251
|
"highlighting": "string",
|
|
6342
6252
|
"loc": {
|
|
6343
6253
|
"start": {
|
|
6344
|
-
"line":
|
|
6345
|
-
"column":
|
|
6346
|
-
"index":
|
|
6254
|
+
"line": 340,
|
|
6255
|
+
"column": 18,
|
|
6256
|
+
"index": 12118
|
|
6347
6257
|
},
|
|
6348
6258
|
"end": {
|
|
6349
|
-
"line":
|
|
6350
|
-
"column":
|
|
6351
|
-
"index":
|
|
6259
|
+
"line": 343,
|
|
6260
|
+
"column": 20,
|
|
6261
|
+
"index": 12242
|
|
6352
6262
|
}
|
|
6353
6263
|
},
|
|
6354
|
-
"filepath": "src/components/
|
|
6264
|
+
"filepath": "src/components/datagrid/controls/column_selector.tsx"
|
|
6355
6265
|
},
|
|
6356
6266
|
{
|
|
6357
|
-
"token": "
|
|
6358
|
-
"defString": "
|
|
6267
|
+
"token": "euiColumnSelector.hideAll",
|
|
6268
|
+
"defString": "Hide all",
|
|
6359
6269
|
"highlighting": "string",
|
|
6360
6270
|
"loc": {
|
|
6361
6271
|
"start": {
|
|
6362
|
-
"line":
|
|
6363
|
-
"column":
|
|
6364
|
-
"index":
|
|
6272
|
+
"line": 353,
|
|
6273
|
+
"column": 18,
|
|
6274
|
+
"index": 12602
|
|
6365
6275
|
},
|
|
6366
6276
|
"end": {
|
|
6367
|
-
"line":
|
|
6368
|
-
"column":
|
|
6369
|
-
"index":
|
|
6277
|
+
"line": 356,
|
|
6278
|
+
"column": 20,
|
|
6279
|
+
"index": 12724
|
|
6370
6280
|
}
|
|
6371
6281
|
},
|
|
6372
|
-
"filepath": "src/components/
|
|
6282
|
+
"filepath": "src/components/datagrid/controls/column_selector.tsx"
|
|
6373
6283
|
},
|
|
6374
6284
|
{
|
|
6375
|
-
"token": "
|
|
6376
|
-
"defString": "
|
|
6285
|
+
"token": "euiComboBoxPill.removeSelection",
|
|
6286
|
+
"defString": "Remove {children} from selection in this group",
|
|
6377
6287
|
"highlighting": "string",
|
|
6378
6288
|
"loc": {
|
|
6379
6289
|
"start": {
|
|
6380
|
-
"line":
|
|
6381
|
-
"column":
|
|
6382
|
-
"index":
|
|
6290
|
+
"line": 67,
|
|
6291
|
+
"column": 6,
|
|
6292
|
+
"index": 2037
|
|
6383
6293
|
},
|
|
6384
6294
|
"end": {
|
|
6385
|
-
"line":
|
|
6386
|
-
"column":
|
|
6387
|
-
"index":
|
|
6295
|
+
"line": 71,
|
|
6296
|
+
"column": 7,
|
|
6297
|
+
"index": 2196
|
|
6388
6298
|
}
|
|
6389
6299
|
},
|
|
6390
|
-
"filepath": "src/components/
|
|
6300
|
+
"filepath": "src/components/combo_box/combo_box_input/combo_box_pill.tsx"
|
|
6391
6301
|
},
|
|
6392
6302
|
{
|
|
6393
6303
|
"token": "euiComboBoxOptionsList.loadingOptions",
|
|
@@ -6516,22 +6426,130 @@
|
|
|
6516
6426
|
"filepath": "src/components/combo_box/combo_box_options_list/combo_box_options_list.tsx"
|
|
6517
6427
|
},
|
|
6518
6428
|
{
|
|
6519
|
-
"token": "
|
|
6520
|
-
"defString": "
|
|
6429
|
+
"token": "euiCollapsibleNavButton.ariaLabelExpand",
|
|
6430
|
+
"defString": "Expand navigation",
|
|
6521
6431
|
"highlighting": "string",
|
|
6522
6432
|
"loc": {
|
|
6523
6433
|
"start": {
|
|
6524
|
-
"line":
|
|
6525
|
-
"column":
|
|
6526
|
-
"index":
|
|
6434
|
+
"line": 37,
|
|
6435
|
+
"column": 28,
|
|
6436
|
+
"index": 1465
|
|
6527
6437
|
},
|
|
6528
6438
|
"end": {
|
|
6529
|
-
"line":
|
|
6530
|
-
"column":
|
|
6531
|
-
"index":
|
|
6439
|
+
"line": 40,
|
|
6440
|
+
"column": 3,
|
|
6441
|
+
"index": 1551
|
|
6532
6442
|
}
|
|
6533
6443
|
},
|
|
6534
|
-
"filepath": "src/components/
|
|
6444
|
+
"filepath": "src/components/collapsible_nav_beta/collapsible_nav_button/collapsible_nav_button.tsx"
|
|
6445
|
+
},
|
|
6446
|
+
{
|
|
6447
|
+
"token": "euiCollapsibleNavButton.ariaLabelCollapse",
|
|
6448
|
+
"defString": "Collapse navigation",
|
|
6449
|
+
"highlighting": "string",
|
|
6450
|
+
"loc": {
|
|
6451
|
+
"start": {
|
|
6452
|
+
"line": 41,
|
|
6453
|
+
"column": 30,
|
|
6454
|
+
"index": 1583
|
|
6455
|
+
},
|
|
6456
|
+
"end": {
|
|
6457
|
+
"line": 44,
|
|
6458
|
+
"column": 3,
|
|
6459
|
+
"index": 1673
|
|
6460
|
+
}
|
|
6461
|
+
},
|
|
6462
|
+
"filepath": "src/components/collapsible_nav_beta/collapsible_nav_button/collapsible_nav_button.tsx"
|
|
6463
|
+
},
|
|
6464
|
+
{
|
|
6465
|
+
"token": "euiCollapsibleNavButton.ariaLabelOpen",
|
|
6466
|
+
"defString": "Open navigation",
|
|
6467
|
+
"highlighting": "string",
|
|
6468
|
+
"loc": {
|
|
6469
|
+
"start": {
|
|
6470
|
+
"line": 45,
|
|
6471
|
+
"column": 26,
|
|
6472
|
+
"index": 1701
|
|
6473
|
+
},
|
|
6474
|
+
"end": {
|
|
6475
|
+
"line": 48,
|
|
6476
|
+
"column": 3,
|
|
6477
|
+
"index": 1783
|
|
6478
|
+
}
|
|
6479
|
+
},
|
|
6480
|
+
"filepath": "src/components/collapsible_nav_beta/collapsible_nav_button/collapsible_nav_button.tsx"
|
|
6481
|
+
},
|
|
6482
|
+
{
|
|
6483
|
+
"token": "euiCollapsibleNavButton.ariaLabelClose",
|
|
6484
|
+
"defString": "Close navigation",
|
|
6485
|
+
"highlighting": "string",
|
|
6486
|
+
"loc": {
|
|
6487
|
+
"start": {
|
|
6488
|
+
"line": 49,
|
|
6489
|
+
"column": 27,
|
|
6490
|
+
"index": 1812
|
|
6491
|
+
},
|
|
6492
|
+
"end": {
|
|
6493
|
+
"line": 52,
|
|
6494
|
+
"column": 3,
|
|
6495
|
+
"index": 1896
|
|
6496
|
+
}
|
|
6497
|
+
},
|
|
6498
|
+
"filepath": "src/components/collapsible_nav_beta/collapsible_nav_button/collapsible_nav_button.tsx"
|
|
6499
|
+
},
|
|
6500
|
+
{
|
|
6501
|
+
"token": "euiCollapsibleNavKibanaSolution.switcherTitle",
|
|
6502
|
+
"defString": "Solution view",
|
|
6503
|
+
"highlighting": "string",
|
|
6504
|
+
"loc": {
|
|
6505
|
+
"start": {
|
|
6506
|
+
"line": 73,
|
|
6507
|
+
"column": 40,
|
|
6508
|
+
"index": 2535
|
|
6509
|
+
},
|
|
6510
|
+
"end": {
|
|
6511
|
+
"line": 76,
|
|
6512
|
+
"column": 3,
|
|
6513
|
+
"index": 2623
|
|
6514
|
+
}
|
|
6515
|
+
},
|
|
6516
|
+
"filepath": "src/components/collapsible_nav_beta/_kibana_solution/collapsible_nav_kibana_solution.tsx"
|
|
6517
|
+
},
|
|
6518
|
+
{
|
|
6519
|
+
"token": "euiCollapsibleNavKibanaSolution.switcherAriaLabel",
|
|
6520
|
+
"defString": " - click to switch to another solution",
|
|
6521
|
+
"highlighting": "string",
|
|
6522
|
+
"loc": {
|
|
6523
|
+
"start": {
|
|
6524
|
+
"line": 77,
|
|
6525
|
+
"column": 44,
|
|
6526
|
+
"index": 2669
|
|
6527
|
+
},
|
|
6528
|
+
"end": {
|
|
6529
|
+
"line": 80,
|
|
6530
|
+
"column": 3,
|
|
6531
|
+
"index": 2786
|
|
6532
|
+
}
|
|
6533
|
+
},
|
|
6534
|
+
"filepath": "src/components/collapsible_nav_beta/_kibana_solution/collapsible_nav_kibana_solution.tsx"
|
|
6535
|
+
},
|
|
6536
|
+
{
|
|
6537
|
+
"token": "euiCollapsibleNavKibanaSolution.groupLabel",
|
|
6538
|
+
"defString": "Navigate to solution",
|
|
6539
|
+
"highlighting": "string",
|
|
6540
|
+
"loc": {
|
|
6541
|
+
"start": {
|
|
6542
|
+
"line": 81,
|
|
6543
|
+
"column": 37,
|
|
6544
|
+
"index": 2825
|
|
6545
|
+
},
|
|
6546
|
+
"end": {
|
|
6547
|
+
"line": 84,
|
|
6548
|
+
"column": 3,
|
|
6549
|
+
"index": 2917
|
|
6550
|
+
}
|
|
6551
|
+
},
|
|
6552
|
+
"filepath": "src/components/collapsible_nav_beta/_kibana_solution/collapsible_nav_kibana_solution.tsx"
|
|
6535
6553
|
},
|
|
6536
6554
|
{
|
|
6537
6555
|
"token": "euiCardSelect.selected",
|
|
@@ -7038,76 +7056,76 @@
|
|
|
7038
7056
|
"filepath": "src/components/date_picker/super_date_picker/date_popover/date_popover_content.tsx"
|
|
7039
7057
|
},
|
|
7040
7058
|
{
|
|
7041
|
-
"token": "
|
|
7042
|
-
"defString": "
|
|
7059
|
+
"token": "euiDatePopoverButton.invalidTitle",
|
|
7060
|
+
"defString": "Invalid date: {title}",
|
|
7043
7061
|
"highlighting": "string",
|
|
7044
7062
|
"loc": {
|
|
7045
7063
|
"start": {
|
|
7046
|
-
"line":
|
|
7047
|
-
"column":
|
|
7048
|
-
"index":
|
|
7064
|
+
"line": 107,
|
|
7065
|
+
"column": 23,
|
|
7066
|
+
"index": 3054
|
|
7049
7067
|
},
|
|
7050
7068
|
"end": {
|
|
7051
|
-
"line":
|
|
7069
|
+
"line": 111,
|
|
7052
7070
|
"column": 3,
|
|
7053
|
-
"index":
|
|
7071
|
+
"index": 3153
|
|
7054
7072
|
}
|
|
7055
7073
|
},
|
|
7056
|
-
"filepath": "src/components/date_picker/super_date_picker/date_popover/
|
|
7074
|
+
"filepath": "src/components/date_picker/super_date_picker/date_popover/date_popover_button.tsx"
|
|
7057
7075
|
},
|
|
7058
7076
|
{
|
|
7059
|
-
"token": "
|
|
7060
|
-
"defString": "
|
|
7077
|
+
"token": "euiDatePopoverButton.outdatedTitle",
|
|
7078
|
+
"defString": "Update needed: {title}",
|
|
7061
7079
|
"highlighting": "string",
|
|
7062
7080
|
"loc": {
|
|
7063
7081
|
"start": {
|
|
7064
|
-
"line":
|
|
7065
|
-
"column":
|
|
7066
|
-
"index":
|
|
7082
|
+
"line": 112,
|
|
7083
|
+
"column": 24,
|
|
7084
|
+
"index": 3179
|
|
7067
7085
|
},
|
|
7068
7086
|
"end": {
|
|
7069
|
-
"line":
|
|
7087
|
+
"line": 116,
|
|
7070
7088
|
"column": 3,
|
|
7071
|
-
"index":
|
|
7089
|
+
"index": 3280
|
|
7072
7090
|
}
|
|
7073
7091
|
},
|
|
7074
|
-
"filepath": "src/components/date_picker/super_date_picker/date_popover/
|
|
7092
|
+
"filepath": "src/components/date_picker/super_date_picker/date_popover/date_popover_button.tsx"
|
|
7075
7093
|
},
|
|
7076
7094
|
{
|
|
7077
|
-
"token": "
|
|
7078
|
-
"defString": "
|
|
7095
|
+
"token": "euiAbsoluteTab.dateFormatButtonLabel",
|
|
7096
|
+
"defString": "Parse date",
|
|
7079
7097
|
"highlighting": "string",
|
|
7080
7098
|
"loc": {
|
|
7081
7099
|
"start": {
|
|
7082
|
-
"line":
|
|
7083
|
-
"column":
|
|
7084
|
-
"index":
|
|
7100
|
+
"line": 95,
|
|
7101
|
+
"column": 28,
|
|
7102
|
+
"index": 2852
|
|
7085
7103
|
},
|
|
7086
7104
|
"end": {
|
|
7087
|
-
"line":
|
|
7105
|
+
"line": 98,
|
|
7088
7106
|
"column": 3,
|
|
7089
|
-
"index":
|
|
7107
|
+
"index": 2928
|
|
7090
7108
|
}
|
|
7091
7109
|
},
|
|
7092
|
-
"filepath": "src/components/date_picker/super_date_picker/date_popover/
|
|
7110
|
+
"filepath": "src/components/date_picker/super_date_picker/date_popover/absolute_tab.tsx"
|
|
7093
7111
|
},
|
|
7094
7112
|
{
|
|
7095
|
-
"token": "
|
|
7096
|
-
"defString": "
|
|
7113
|
+
"token": "euiAbsoluteTab.dateFormatError",
|
|
7114
|
+
"defString": "Allowed formats: {dateFormat}, ISO 8601, RFC 2822, or Unix timestamp.",
|
|
7097
7115
|
"highlighting": "string",
|
|
7098
7116
|
"loc": {
|
|
7099
7117
|
"start": {
|
|
7100
|
-
"line":
|
|
7101
|
-
"column":
|
|
7102
|
-
"index":
|
|
7118
|
+
"line": 99,
|
|
7119
|
+
"column": 26,
|
|
7120
|
+
"index": 2956
|
|
7103
7121
|
},
|
|
7104
7122
|
"end": {
|
|
7105
|
-
"line":
|
|
7123
|
+
"line": 103,
|
|
7106
7124
|
"column": 3,
|
|
7107
|
-
"index":
|
|
7125
|
+
"index": 3138
|
|
7108
7126
|
}
|
|
7109
7127
|
},
|
|
7110
|
-
"filepath": "src/components/date_picker/super_date_picker/date_popover/
|
|
7128
|
+
"filepath": "src/components/date_picker/super_date_picker/date_popover/absolute_tab.tsx"
|
|
7111
7129
|
},
|
|
7112
7130
|
{
|
|
7113
7131
|
"token": "euiDataGridHeaderCell.sortedByAscendingSingle",
|