@elastic/eui 116.3.0 → 116.3.1-snapshot.1782148316870
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/avatar/avatar.js +4 -0
- package/es/components/avatar/avatar.styles.js +16 -16
- package/es/components/banner/banner.js +1 -2
- package/es/components/banner/banner.styles.js +1 -1
- package/es/components/basic_table/basic_table.js +35 -5
- package/es/components/basic_table/basic_table.styles.js +19 -1
- package/es/components/basic_table/in_memory_table.js +17 -0
- package/es/components/basic_table/index.js +2 -1
- package/es/components/basic_table/pagination_bar.js +19 -4
- package/es/components/basic_table/pagination_bar.styles.js +21 -0
- package/es/components/basic_table/panel.styles.js +14 -0
- package/es/components/basic_table/use_panel_props.js +28 -0
- package/es/components/date_picker/auto_refresh/refresh_interval.js +176 -229
- package/es/components/date_picker/date_picker.js +1 -1
- package/es/components/flyout/flyout.component.js +10 -6
- package/es/components/flyout/flyout_menu.js +122 -19
- package/es/components/flyout/flyout_menu.styles.js +2 -1
- package/es/components/flyout/manager/actions.js +20 -0
- package/es/components/flyout/manager/flyout_child.js +23 -1
- package/es/components/flyout/manager/flyout_managed.js +65 -19
- package/es/components/flyout/manager/hooks.js +1 -1
- package/es/components/flyout/manager/index.js +2 -2
- package/es/components/flyout/manager/reducer.js +32 -8
- package/es/components/flyout/manager/selectors.js +8 -2
- package/es/components/flyout/manager/store.js +35 -2
- package/es/components/flyout/use_flyout_menu.js +2 -2
- package/es/components/form/field_password/field_password.styles.js +1 -1
- package/es/components/form/field_search/field_search.styles.js +1 -1
- package/es/components/form/form.styles.js +1 -1
- package/es/components/form/form_control_layout/form_control_layout_icons.js +95 -143
- package/es/components/form/select/select.styles.js +1 -1
- package/es/components/form/text_area/text_area.styles.js +1 -1
- package/es/components/form/validatable_control/validatable_control.js +8 -55
- package/es/components/table/mobile/table_sort_mobile.js +64 -103
- package/es/components/table/store/use_unique_column_id.js +25 -0
- package/es/components/table/table_header_cell.js +7 -8
- package/es/components/table/table_header_cell_checkbox.js +5 -6
- package/es/components/tool_tip/tool_tip.js +61 -30
- package/es/components/tool_tip/tool_tip_anchor.js +5 -5
- package/es/components/tool_tip/tool_tip_manager.js +27 -2
- package/eui.d.ts +679 -530
- package/i18ntokens.json +810 -738
- package/lib/components/avatar/avatar.js +4 -0
- package/lib/components/avatar/avatar.styles.js +16 -16
- package/lib/components/banner/banner.js +1 -2
- package/lib/components/banner/banner.styles.js +1 -1
- package/lib/components/basic_table/basic_table.js +34 -4
- package/lib/components/basic_table/basic_table.styles.js +19 -1
- package/lib/components/basic_table/in_memory_table.js +17 -0
- package/lib/components/basic_table/index.js +8 -1
- package/lib/components/basic_table/pagination_bar.js +19 -4
- package/lib/components/basic_table/pagination_bar.styles.js +26 -0
- package/lib/components/basic_table/panel.styles.js +20 -0
- package/lib/components/basic_table/use_panel_props.js +33 -0
- package/lib/components/date_picker/auto_refresh/refresh_interval.js +175 -229
- package/lib/components/date_picker/date_picker.js +1 -1
- package/lib/components/flyout/flyout.component.js +10 -6
- package/lib/components/flyout/flyout_menu.js +120 -19
- package/lib/components/flyout/flyout_menu.styles.js +2 -1
- package/lib/components/flyout/manager/actions.js +21 -1
- package/lib/components/flyout/manager/flyout_child.js +23 -1
- package/lib/components/flyout/manager/flyout_managed.js +41 -17
- package/lib/components/flyout/manager/hooks.js +6 -0
- package/lib/components/flyout/manager/index.js +12 -0
- package/lib/components/flyout/manager/reducer.js +31 -7
- package/lib/components/flyout/manager/selectors.js +9 -3
- package/lib/components/flyout/manager/store.js +34 -1
- package/lib/components/flyout/use_flyout_menu.js +2 -2
- package/lib/components/form/field_password/field_password.styles.js +1 -1
- package/lib/components/form/field_search/field_search.styles.js +1 -1
- package/lib/components/form/form.styles.js +1 -1
- package/lib/components/form/form_control_layout/form_control_layout_icons.js +95 -145
- package/lib/components/form/select/select.styles.js +1 -1
- package/lib/components/form/text_area/text_area.styles.js +1 -1
- package/lib/components/form/validatable_control/validatable_control.js +7 -52
- package/lib/components/table/mobile/table_sort_mobile.js +71 -108
- package/lib/components/table/store/use_unique_column_id.js +34 -0
- package/lib/components/table/table_header_cell.js +7 -8
- package/lib/components/table/table_header_cell_checkbox.js +5 -6
- package/lib/components/tool_tip/tool_tip.js +59 -29
- package/lib/components/tool_tip/tool_tip_anchor.js +5 -5
- package/lib/components/tool_tip/tool_tip_manager.js +27 -2
- package/optimize/es/components/avatar/avatar.js +4 -0
- package/optimize/es/components/avatar/avatar.styles.js +16 -16
- package/optimize/es/components/banner/banner.js +1 -2
- package/optimize/es/components/banner/banner.styles.js +1 -1
- package/optimize/es/components/basic_table/basic_table.js +18 -5
- package/optimize/es/components/basic_table/basic_table.styles.js +19 -1
- package/optimize/es/components/basic_table/index.js +2 -1
- package/optimize/es/components/basic_table/pagination_bar.js +19 -4
- package/optimize/es/components/basic_table/pagination_bar.styles.js +21 -0
- package/optimize/es/components/basic_table/panel.styles.js +14 -0
- package/optimize/es/components/basic_table/use_panel_props.js +28 -0
- package/optimize/es/components/date_picker/auto_refresh/refresh_interval.js +172 -196
- package/optimize/es/components/date_picker/date_picker.js +1 -1
- package/optimize/es/components/flyout/flyout.component.js +10 -6
- package/optimize/es/components/flyout/flyout_menu.js +99 -18
- package/optimize/es/components/flyout/flyout_menu.styles.js +2 -1
- package/optimize/es/components/flyout/manager/actions.js +20 -0
- package/optimize/es/components/flyout/manager/flyout_managed.js +42 -18
- package/optimize/es/components/flyout/manager/hooks.js +1 -1
- package/optimize/es/components/flyout/manager/index.js +2 -2
- package/optimize/es/components/flyout/manager/reducer.js +32 -8
- package/optimize/es/components/flyout/manager/selectors.js +8 -2
- package/optimize/es/components/flyout/manager/store.js +35 -2
- package/optimize/es/components/flyout/use_flyout_menu.js +2 -2
- package/optimize/es/components/form/field_password/field_password.styles.js +1 -1
- package/optimize/es/components/form/field_search/field_search.styles.js +1 -1
- package/optimize/es/components/form/form.styles.js +1 -1
- package/optimize/es/components/form/form_control_layout/form_control_layout_icons.js +96 -115
- package/optimize/es/components/form/select/select.styles.js +1 -1
- package/optimize/es/components/form/text_area/text_area.styles.js +1 -1
- package/optimize/es/components/form/validatable_control/validatable_control.js +7 -48
- package/optimize/es/components/table/mobile/table_sort_mobile.js +59 -82
- package/optimize/es/components/table/store/use_unique_column_id.js +25 -0
- package/optimize/es/components/table/table_header_cell.js +7 -8
- package/optimize/es/components/table/table_header_cell_checkbox.js +5 -6
- package/optimize/es/components/tool_tip/tool_tip.js +58 -30
- package/optimize/es/components/tool_tip/tool_tip_anchor.js +5 -5
- package/optimize/es/components/tool_tip/tool_tip_manager.js +27 -2
- package/optimize/lib/components/avatar/avatar.js +4 -0
- package/optimize/lib/components/avatar/avatar.styles.js +16 -16
- package/optimize/lib/components/banner/banner.js +1 -2
- package/optimize/lib/components/banner/banner.styles.js +1 -1
- package/optimize/lib/components/basic_table/basic_table.js +17 -4
- package/optimize/lib/components/basic_table/basic_table.styles.js +19 -1
- package/optimize/lib/components/basic_table/index.js +8 -1
- package/optimize/lib/components/basic_table/pagination_bar.js +19 -4
- package/optimize/lib/components/basic_table/pagination_bar.styles.js +26 -0
- package/optimize/lib/components/basic_table/panel.styles.js +20 -0
- package/optimize/lib/components/basic_table/use_panel_props.js +33 -0
- package/optimize/lib/components/date_picker/auto_refresh/refresh_interval.js +170 -194
- package/optimize/lib/components/date_picker/date_picker.js +1 -1
- package/optimize/lib/components/flyout/flyout.component.js +10 -6
- package/optimize/lib/components/flyout/flyout_menu.js +98 -18
- package/optimize/lib/components/flyout/flyout_menu.styles.js +2 -1
- package/optimize/lib/components/flyout/manager/actions.js +21 -1
- package/optimize/lib/components/flyout/manager/flyout_managed.js +41 -17
- package/optimize/lib/components/flyout/manager/hooks.js +6 -0
- package/optimize/lib/components/flyout/manager/index.js +12 -0
- package/optimize/lib/components/flyout/manager/reducer.js +31 -7
- package/optimize/lib/components/flyout/manager/selectors.js +9 -3
- package/optimize/lib/components/flyout/manager/store.js +34 -1
- package/optimize/lib/components/flyout/use_flyout_menu.js +2 -2
- package/optimize/lib/components/form/field_password/field_password.styles.js +1 -1
- package/optimize/lib/components/form/field_search/field_search.styles.js +1 -1
- package/optimize/lib/components/form/form.styles.js +1 -1
- package/optimize/lib/components/form/form_control_layout/form_control_layout_icons.js +96 -117
- package/optimize/lib/components/form/select/select.styles.js +1 -1
- package/optimize/lib/components/form/text_area/text_area.styles.js +1 -1
- package/optimize/lib/components/form/validatable_control/validatable_control.js +6 -49
- package/optimize/lib/components/table/mobile/table_sort_mobile.js +61 -83
- package/optimize/lib/components/table/store/use_unique_column_id.js +34 -0
- package/optimize/lib/components/table/table_header_cell.js +7 -8
- package/optimize/lib/components/table/table_header_cell_checkbox.js +5 -6
- package/optimize/lib/components/tool_tip/tool_tip.js +57 -29
- package/optimize/lib/components/tool_tip/tool_tip_anchor.js +5 -5
- package/optimize/lib/components/tool_tip/tool_tip_manager.js +27 -2
- package/package.json +8 -5
- package/test-env/components/avatar/avatar.js +4 -0
- package/test-env/components/avatar/avatar.styles.js +16 -16
- package/test-env/components/banner/banner.js +1 -2
- package/test-env/components/banner/banner.styles.js +1 -1
- package/test-env/components/basic_table/basic_table.js +34 -4
- package/test-env/components/basic_table/basic_table.styles.js +19 -1
- package/test-env/components/basic_table/in_memory_table.js +17 -0
- package/test-env/components/basic_table/index.js +8 -1
- package/test-env/components/basic_table/pagination_bar.js +19 -4
- package/test-env/components/basic_table/pagination_bar.styles.js +26 -0
- package/test-env/components/basic_table/panel.styles.js +20 -0
- package/test-env/components/basic_table/use_panel_props.js +33 -0
- package/test-env/components/date_picker/auto_refresh/refresh_interval.js +170 -220
- package/test-env/components/date_picker/date_picker.js +1 -1
- package/test-env/components/flyout/flyout.component.js +10 -6
- package/test-env/components/flyout/flyout_menu.js +121 -19
- package/test-env/components/flyout/flyout_menu.styles.js +2 -1
- package/test-env/components/flyout/manager/actions.js +21 -1
- package/test-env/components/flyout/manager/flyout_child.js +23 -1
- package/test-env/components/flyout/manager/flyout_managed.js +41 -17
- package/test-env/components/flyout/manager/hooks.js +6 -0
- package/test-env/components/flyout/manager/index.js +12 -0
- package/test-env/components/flyout/manager/reducer.js +31 -7
- package/test-env/components/flyout/manager/selectors.js +9 -3
- package/test-env/components/flyout/manager/store.js +34 -1
- package/test-env/components/flyout/use_flyout_menu.js +2 -2
- package/test-env/components/form/field_password/field_password.styles.js +1 -1
- package/test-env/components/form/field_search/field_search.styles.js +1 -1
- package/test-env/components/form/form.styles.js +1 -1
- package/test-env/components/form/form_control_layout/form_control_layout_icons.js +95 -139
- package/test-env/components/form/select/select.styles.js +1 -1
- package/test-env/components/form/text_area/text_area.styles.js +1 -1
- package/test-env/components/form/validatable_control/validatable_control.js +6 -48
- package/test-env/components/table/mobile/table_sort_mobile.js +61 -98
- package/test-env/components/table/store/use_unique_column_id.js +34 -0
- package/test-env/components/table/table_header_cell.js +7 -8
- package/test-env/components/table/table_header_cell_checkbox.js +5 -6
- package/test-env/components/tool_tip/tool_tip.js +57 -29
- package/test-env/components/tool_tip/tool_tip_anchor.js +5 -5
- package/test-env/components/tool_tip/tool_tip_manager.js +27 -2
package/i18ntokens.json
CHANGED
|
@@ -1,4 +1,22 @@
|
|
|
1
1
|
[
|
|
2
|
+
{
|
|
3
|
+
"token": "euiTreeView.listNavigationInstructions",
|
|
4
|
+
"defString": "You can quickly navigate this list using arrow keys.",
|
|
5
|
+
"highlighting": "string",
|
|
6
|
+
"loc": {
|
|
7
|
+
"start": {
|
|
8
|
+
"line": 294,
|
|
9
|
+
"column": 10,
|
|
10
|
+
"index": 8109
|
|
11
|
+
},
|
|
12
|
+
"end": {
|
|
13
|
+
"line": 297,
|
|
14
|
+
"column": 11,
|
|
15
|
+
"index": 8263
|
|
16
|
+
}
|
|
17
|
+
},
|
|
18
|
+
"filepath": "src/components/tree_view/tree_view.tsx"
|
|
19
|
+
},
|
|
2
20
|
{
|
|
3
21
|
"token": "euiTourStepIndicator.isActive",
|
|
4
22
|
"defString": "active",
|
|
@@ -125,24 +143,6 @@
|
|
|
125
143
|
},
|
|
126
144
|
"filepath": "src/components/tour/_tour_footer.tsx"
|
|
127
145
|
},
|
|
128
|
-
{
|
|
129
|
-
"token": "euiTreeView.listNavigationInstructions",
|
|
130
|
-
"defString": "You can quickly navigate this list using arrow keys.",
|
|
131
|
-
"highlighting": "string",
|
|
132
|
-
"loc": {
|
|
133
|
-
"start": {
|
|
134
|
-
"line": 294,
|
|
135
|
-
"column": 10,
|
|
136
|
-
"index": 8109
|
|
137
|
-
},
|
|
138
|
-
"end": {
|
|
139
|
-
"line": 297,
|
|
140
|
-
"column": 11,
|
|
141
|
-
"index": 8263
|
|
142
|
-
}
|
|
143
|
-
},
|
|
144
|
-
"filepath": "src/components/tree_view/tree_view.tsx"
|
|
145
|
-
},
|
|
146
146
|
{
|
|
147
147
|
"token": "euiIconTip.defaultAriaLabel",
|
|
148
148
|
"defString": "Info",
|
|
@@ -251,24 +251,6 @@
|
|
|
251
251
|
},
|
|
252
252
|
"filepath": "src/components/toast/global_toast_list.tsx"
|
|
253
253
|
},
|
|
254
|
-
{
|
|
255
|
-
"token": "euiStat.loadingText",
|
|
256
|
-
"defString": "Statistic is loading",
|
|
257
|
-
"highlighting": "string",
|
|
258
|
-
"loc": {
|
|
259
|
-
"start": {
|
|
260
|
-
"line": 95,
|
|
261
|
-
"column": 32,
|
|
262
|
-
"index": 2317
|
|
263
|
-
},
|
|
264
|
-
"end": {
|
|
265
|
-
"line": 98,
|
|
266
|
-
"column": 3,
|
|
267
|
-
"index": 2386
|
|
268
|
-
}
|
|
269
|
-
},
|
|
270
|
-
"filepath": "src/components/stat/stat.tsx"
|
|
271
|
-
},
|
|
272
254
|
{
|
|
273
255
|
"token": "euiStepStrings.step",
|
|
274
256
|
"defString": "Step {number}: {title}",
|
|
@@ -563,18 +545,36 @@
|
|
|
563
545
|
"highlighting": "string",
|
|
564
546
|
"loc": {
|
|
565
547
|
"start": {
|
|
566
|
-
"line":
|
|
548
|
+
"line": 146,
|
|
567
549
|
"column": 10,
|
|
568
|
-
"index":
|
|
550
|
+
"index": 4722
|
|
569
551
|
},
|
|
570
552
|
"end": {
|
|
571
|
-
"line":
|
|
553
|
+
"line": 150,
|
|
572
554
|
"column": 11,
|
|
573
|
-
"index":
|
|
555
|
+
"index": 4896
|
|
574
556
|
}
|
|
575
557
|
},
|
|
576
558
|
"filepath": "src/components/table/table_header_cell.tsx"
|
|
577
559
|
},
|
|
560
|
+
{
|
|
561
|
+
"token": "euiStat.loadingText",
|
|
562
|
+
"defString": "Statistic is loading",
|
|
563
|
+
"highlighting": "string",
|
|
564
|
+
"loc": {
|
|
565
|
+
"start": {
|
|
566
|
+
"line": 95,
|
|
567
|
+
"column": 32,
|
|
568
|
+
"index": 2317
|
|
569
|
+
},
|
|
570
|
+
"end": {
|
|
571
|
+
"line": 98,
|
|
572
|
+
"column": 3,
|
|
573
|
+
"index": 2386
|
|
574
|
+
}
|
|
575
|
+
},
|
|
576
|
+
"filepath": "src/components/stat/stat.tsx"
|
|
577
|
+
},
|
|
578
578
|
{
|
|
579
579
|
"token": "euiSkeletonLoading.loadedAriaText",
|
|
580
580
|
"defString": "Loaded {contentAriaLabel}",
|
|
@@ -611,6 +611,24 @@
|
|
|
611
611
|
},
|
|
612
612
|
"filepath": "src/components/skeleton/skeleton_loading.tsx"
|
|
613
613
|
},
|
|
614
|
+
{
|
|
615
|
+
"token": "euiSideNav.mobileToggleAriaLabel",
|
|
616
|
+
"defString": "Toggle navigation",
|
|
617
|
+
"highlighting": "string",
|
|
618
|
+
"loc": {
|
|
619
|
+
"start": {
|
|
620
|
+
"line": 208,
|
|
621
|
+
"column": 16,
|
|
622
|
+
"index": 6318
|
|
623
|
+
},
|
|
624
|
+
"end": {
|
|
625
|
+
"line": 211,
|
|
626
|
+
"column": 17,
|
|
627
|
+
"index": 6449
|
|
628
|
+
}
|
|
629
|
+
},
|
|
630
|
+
"filepath": "src/components/side_nav/side_nav.tsx"
|
|
631
|
+
},
|
|
614
632
|
{
|
|
615
633
|
"token": "euiSelectable.loadingOptions",
|
|
616
634
|
"defString": "Loading options",
|
|
@@ -743,14 +761,14 @@
|
|
|
743
761
|
"highlighting": "string",
|
|
744
762
|
"loc": {
|
|
745
763
|
"start": {
|
|
746
|
-
"line":
|
|
764
|
+
"line": 49,
|
|
747
765
|
"column": 29,
|
|
748
|
-
"index":
|
|
766
|
+
"index": 1399
|
|
749
767
|
},
|
|
750
768
|
"end": {
|
|
751
|
-
"line":
|
|
769
|
+
"line": 52,
|
|
752
770
|
"column": 3,
|
|
753
|
-
"index":
|
|
771
|
+
"index": 1462
|
|
754
772
|
}
|
|
755
773
|
},
|
|
756
774
|
"filepath": "src/components/search_bar/search_box.tsx"
|
|
@@ -761,14 +779,14 @@
|
|
|
761
779
|
"highlighting": "string",
|
|
762
780
|
"loc": {
|
|
763
781
|
"start": {
|
|
764
|
-
"line":
|
|
782
|
+
"line": 53,
|
|
765
783
|
"column": 31,
|
|
766
|
-
"index":
|
|
784
|
+
"index": 1495
|
|
767
785
|
},
|
|
768
786
|
"end": {
|
|
769
|
-
"line":
|
|
787
|
+
"line": 56,
|
|
770
788
|
"column": 3,
|
|
771
|
-
"index":
|
|
789
|
+
"index": 1649
|
|
772
790
|
}
|
|
773
791
|
},
|
|
774
792
|
"filepath": "src/components/search_bar/search_box.tsx"
|
|
@@ -779,14 +797,14 @@
|
|
|
779
797
|
"highlighting": "string",
|
|
780
798
|
"loc": {
|
|
781
799
|
"start": {
|
|
782
|
-
"line":
|
|
800
|
+
"line": 57,
|
|
783
801
|
"column": 25,
|
|
784
|
-
"index":
|
|
802
|
+
"index": 1676
|
|
785
803
|
},
|
|
786
804
|
"end": {
|
|
787
|
-
"line":
|
|
805
|
+
"line": 60,
|
|
788
806
|
"column": 3,
|
|
789
|
-
"index":
|
|
807
|
+
"index": 1825
|
|
790
808
|
}
|
|
791
809
|
},
|
|
792
810
|
"filepath": "src/components/search_bar/search_box.tsx"
|
|
@@ -863,24 +881,6 @@
|
|
|
863
881
|
},
|
|
864
882
|
"filepath": "src/components/progress/progress.tsx"
|
|
865
883
|
},
|
|
866
|
-
{
|
|
867
|
-
"token": "euiSideNav.mobileToggleAriaLabel",
|
|
868
|
-
"defString": "Toggle navigation",
|
|
869
|
-
"highlighting": "string",
|
|
870
|
-
"loc": {
|
|
871
|
-
"start": {
|
|
872
|
-
"line": 208,
|
|
873
|
-
"column": 16,
|
|
874
|
-
"index": 6318
|
|
875
|
-
},
|
|
876
|
-
"end": {
|
|
877
|
-
"line": 211,
|
|
878
|
-
"column": 17,
|
|
879
|
-
"index": 6449
|
|
880
|
-
}
|
|
881
|
-
},
|
|
882
|
-
"filepath": "src/components/side_nav/side_nav.tsx"
|
|
883
|
-
},
|
|
884
884
|
{
|
|
885
885
|
"token": "euiPopover.screenReaderAnnouncement",
|
|
886
886
|
"defString": "You are in a dialog. Press Escape, or tap/click outside the dialog to close.",
|
|
@@ -905,14 +905,14 @@
|
|
|
905
905
|
"highlighting": "string",
|
|
906
906
|
"loc": {
|
|
907
907
|
"start": {
|
|
908
|
-
"line":
|
|
908
|
+
"line": 49,
|
|
909
909
|
"column": 11,
|
|
910
|
-
"index":
|
|
910
|
+
"index": 1456
|
|
911
911
|
},
|
|
912
912
|
"end": {
|
|
913
|
-
"line":
|
|
913
|
+
"line": 49,
|
|
914
914
|
"column": 73,
|
|
915
|
-
"index":
|
|
915
|
+
"index": 1518
|
|
916
916
|
}
|
|
917
917
|
},
|
|
918
918
|
"filepath": "src/components/pagination/pagination_button_arrow.tsx"
|
|
@@ -923,14 +923,14 @@
|
|
|
923
923
|
"highlighting": "string",
|
|
924
924
|
"loc": {
|
|
925
925
|
"start": {
|
|
926
|
-
"line":
|
|
926
|
+
"line": 50,
|
|
927
927
|
"column": 14,
|
|
928
|
-
"index":
|
|
928
|
+
"index": 1534
|
|
929
929
|
},
|
|
930
930
|
"end": {
|
|
931
|
-
"line":
|
|
931
|
+
"line": 53,
|
|
932
932
|
"column": 5,
|
|
933
|
-
"index":
|
|
933
|
+
"index": 1620
|
|
934
934
|
}
|
|
935
935
|
},
|
|
936
936
|
"filepath": "src/components/pagination/pagination_button_arrow.tsx"
|
|
@@ -941,14 +941,14 @@
|
|
|
941
941
|
"highlighting": "string",
|
|
942
942
|
"loc": {
|
|
943
943
|
"start": {
|
|
944
|
-
"line":
|
|
944
|
+
"line": 54,
|
|
945
945
|
"column": 10,
|
|
946
|
-
"index":
|
|
946
|
+
"index": 1632
|
|
947
947
|
},
|
|
948
948
|
"end": {
|
|
949
|
-
"line":
|
|
949
|
+
"line": 54,
|
|
950
950
|
"column": 70,
|
|
951
|
-
"index":
|
|
951
|
+
"index": 1692
|
|
952
952
|
}
|
|
953
953
|
},
|
|
954
954
|
"filepath": "src/components/pagination/pagination_button_arrow.tsx"
|
|
@@ -959,18 +959,54 @@
|
|
|
959
959
|
"highlighting": "string",
|
|
960
960
|
"loc": {
|
|
961
961
|
"start": {
|
|
962
|
-
"line":
|
|
962
|
+
"line": 55,
|
|
963
963
|
"column": 10,
|
|
964
|
-
"index":
|
|
964
|
+
"index": 1704
|
|
965
965
|
},
|
|
966
966
|
"end": {
|
|
967
|
-
"line":
|
|
967
|
+
"line": 55,
|
|
968
968
|
"column": 70,
|
|
969
|
-
"index":
|
|
969
|
+
"index": 1764
|
|
970
970
|
}
|
|
971
971
|
},
|
|
972
972
|
"filepath": "src/components/pagination/pagination_button_arrow.tsx"
|
|
973
973
|
},
|
|
974
|
+
{
|
|
975
|
+
"token": "euiPaginationButton.longPageString",
|
|
976
|
+
"defString": "Page {page} of {totalPages}",
|
|
977
|
+
"highlighting": "string",
|
|
978
|
+
"loc": {
|
|
979
|
+
"start": {
|
|
980
|
+
"line": 66,
|
|
981
|
+
"column": 4,
|
|
982
|
+
"index": 1920
|
|
983
|
+
},
|
|
984
|
+
"end": {
|
|
985
|
+
"line": 70,
|
|
986
|
+
"column": 5,
|
|
987
|
+
"index": 2087
|
|
988
|
+
}
|
|
989
|
+
},
|
|
990
|
+
"filepath": "src/components/pagination/pagination_button.tsx"
|
|
991
|
+
},
|
|
992
|
+
{
|
|
993
|
+
"token": "euiPaginationButton.shortPageString",
|
|
994
|
+
"defString": "Page {page}",
|
|
995
|
+
"highlighting": "string",
|
|
996
|
+
"loc": {
|
|
997
|
+
"start": {
|
|
998
|
+
"line": 72,
|
|
999
|
+
"column": 8,
|
|
1000
|
+
"index": 2133
|
|
1001
|
+
},
|
|
1002
|
+
"end": {
|
|
1003
|
+
"line": 76,
|
|
1004
|
+
"column": 9,
|
|
1005
|
+
"index": 2277
|
|
1006
|
+
}
|
|
1007
|
+
},
|
|
1008
|
+
"filepath": "src/components/pagination/pagination_button.tsx"
|
|
1009
|
+
},
|
|
974
1010
|
{
|
|
975
1011
|
"token": "euiPagination.pageOfTotalCompressed",
|
|
976
1012
|
"defString": "{page} of {total}",
|
|
@@ -1116,40 +1152,40 @@
|
|
|
1116
1152
|
"filepath": "src/components/pagination/pagination.tsx"
|
|
1117
1153
|
},
|
|
1118
1154
|
{
|
|
1119
|
-
"token": "
|
|
1120
|
-
"defString": "
|
|
1155
|
+
"token": "euiModal.screenReaderModalDialog",
|
|
1156
|
+
"defString": "You are in a modal dialog. Press Escape or tap/click outside the dialog on the shadowed overlay to close.",
|
|
1121
1157
|
"highlighting": "string",
|
|
1122
1158
|
"loc": {
|
|
1123
1159
|
"start": {
|
|
1124
|
-
"line":
|
|
1125
|
-
"column":
|
|
1126
|
-
"index":
|
|
1160
|
+
"line": 133,
|
|
1161
|
+
"column": 8,
|
|
1162
|
+
"index": 4057
|
|
1127
1163
|
},
|
|
1128
1164
|
"end": {
|
|
1129
|
-
"line":
|
|
1130
|
-
"column":
|
|
1131
|
-
"index":
|
|
1165
|
+
"line": 136,
|
|
1166
|
+
"column": 10,
|
|
1167
|
+
"index": 4253
|
|
1132
1168
|
}
|
|
1133
1169
|
},
|
|
1134
|
-
"filepath": "src/components/
|
|
1170
|
+
"filepath": "src/components/modal/modal.tsx"
|
|
1135
1171
|
},
|
|
1136
1172
|
{
|
|
1137
|
-
"token": "
|
|
1138
|
-
"defString": "
|
|
1173
|
+
"token": "euiModal.closeModal",
|
|
1174
|
+
"defString": "Closes this modal window",
|
|
1139
1175
|
"highlighting": "string",
|
|
1140
1176
|
"loc": {
|
|
1141
1177
|
"start": {
|
|
1142
|
-
"line":
|
|
1143
|
-
"column":
|
|
1144
|
-
"index":
|
|
1178
|
+
"line": 163,
|
|
1179
|
+
"column": 10,
|
|
1180
|
+
"index": 4871
|
|
1145
1181
|
},
|
|
1146
1182
|
"end": {
|
|
1147
|
-
"line":
|
|
1148
|
-
"column":
|
|
1149
|
-
"index":
|
|
1183
|
+
"line": 166,
|
|
1184
|
+
"column": 11,
|
|
1185
|
+
"index": 4978
|
|
1150
1186
|
}
|
|
1151
1187
|
},
|
|
1152
|
-
"filepath": "src/components/
|
|
1188
|
+
"filepath": "src/components/modal/modal.tsx"
|
|
1153
1189
|
},
|
|
1154
1190
|
{
|
|
1155
1191
|
"token": "euiMark.highlightStart",
|
|
@@ -1187,42 +1223,6 @@
|
|
|
1187
1223
|
},
|
|
1188
1224
|
"filepath": "src/components/mark/mark.tsx"
|
|
1189
1225
|
},
|
|
1190
|
-
{
|
|
1191
|
-
"token": "euiModal.screenReaderModalDialog",
|
|
1192
|
-
"defString": "You are in a modal dialog. Press Escape or tap/click outside the dialog on the shadowed overlay to close.",
|
|
1193
|
-
"highlighting": "string",
|
|
1194
|
-
"loc": {
|
|
1195
|
-
"start": {
|
|
1196
|
-
"line": 133,
|
|
1197
|
-
"column": 8,
|
|
1198
|
-
"index": 4057
|
|
1199
|
-
},
|
|
1200
|
-
"end": {
|
|
1201
|
-
"line": 136,
|
|
1202
|
-
"column": 10,
|
|
1203
|
-
"index": 4253
|
|
1204
|
-
}
|
|
1205
|
-
},
|
|
1206
|
-
"filepath": "src/components/modal/modal.tsx"
|
|
1207
|
-
},
|
|
1208
|
-
{
|
|
1209
|
-
"token": "euiModal.closeModal",
|
|
1210
|
-
"defString": "Closes this modal window",
|
|
1211
|
-
"highlighting": "string",
|
|
1212
|
-
"loc": {
|
|
1213
|
-
"start": {
|
|
1214
|
-
"line": 163,
|
|
1215
|
-
"column": 10,
|
|
1216
|
-
"index": 4871
|
|
1217
|
-
},
|
|
1218
|
-
"end": {
|
|
1219
|
-
"line": 166,
|
|
1220
|
-
"column": 11,
|
|
1221
|
-
"index": 4978
|
|
1222
|
-
}
|
|
1223
|
-
},
|
|
1224
|
-
"filepath": "src/components/modal/modal.tsx"
|
|
1225
|
-
},
|
|
1226
1226
|
{
|
|
1227
1227
|
"token": "euiMarkdownEditorToolbar.editor",
|
|
1228
1228
|
"defString": "Editor",
|
|
@@ -1319,14 +1319,14 @@
|
|
|
1319
1319
|
"highlighting": "string",
|
|
1320
1320
|
"loc": {
|
|
1321
1321
|
"start": {
|
|
1322
|
-
"line":
|
|
1322
|
+
"line": 105,
|
|
1323
1323
|
"column": 16,
|
|
1324
|
-
"index":
|
|
1324
|
+
"index": 3582
|
|
1325
1325
|
},
|
|
1326
1326
|
"end": {
|
|
1327
|
-
"line":
|
|
1327
|
+
"line": 114,
|
|
1328
1328
|
"column": 17,
|
|
1329
|
-
"index":
|
|
1329
|
+
"index": 4018
|
|
1330
1330
|
}
|
|
1331
1331
|
},
|
|
1332
1332
|
"filepath": "src/components/markdown_editor/markdown_editor_help_button.tsx"
|
|
@@ -1337,14 +1337,14 @@
|
|
|
1337
1337
|
"highlighting": "string",
|
|
1338
1338
|
"loc": {
|
|
1339
1339
|
"start": {
|
|
1340
|
-
"line":
|
|
1340
|
+
"line": 105,
|
|
1341
1341
|
"column": 16,
|
|
1342
|
-
"index":
|
|
1342
|
+
"index": 3582
|
|
1343
1343
|
},
|
|
1344
1344
|
"end": {
|
|
1345
|
-
"line":
|
|
1345
|
+
"line": 114,
|
|
1346
1346
|
"column": 17,
|
|
1347
|
-
"index":
|
|
1347
|
+
"index": 4018
|
|
1348
1348
|
}
|
|
1349
1349
|
},
|
|
1350
1350
|
"filepath": "src/components/markdown_editor/markdown_editor_help_button.tsx"
|
|
@@ -1355,14 +1355,14 @@
|
|
|
1355
1355
|
"highlighting": "string",
|
|
1356
1356
|
"loc": {
|
|
1357
1357
|
"start": {
|
|
1358
|
-
"line":
|
|
1358
|
+
"line": 143,
|
|
1359
1359
|
"column": 16,
|
|
1360
|
-
"index":
|
|
1360
|
+
"index": 5077
|
|
1361
1361
|
},
|
|
1362
1362
|
"end": {
|
|
1363
|
-
"line":
|
|
1363
|
+
"line": 146,
|
|
1364
1364
|
"column": 18,
|
|
1365
|
-
"index":
|
|
1365
|
+
"index": 5204
|
|
1366
1366
|
}
|
|
1367
1367
|
},
|
|
1368
1368
|
"filepath": "src/components/markdown_editor/markdown_editor_help_button.tsx"
|
|
@@ -1373,14 +1373,14 @@
|
|
|
1373
1373
|
"highlighting": "string",
|
|
1374
1374
|
"loc": {
|
|
1375
1375
|
"start": {
|
|
1376
|
-
"line":
|
|
1376
|
+
"line": 175,
|
|
1377
1377
|
"column": 8,
|
|
1378
|
-
"index":
|
|
1378
|
+
"index": 6083
|
|
1379
1379
|
},
|
|
1380
1380
|
"end": {
|
|
1381
|
-
"line":
|
|
1381
|
+
"line": 178,
|
|
1382
1382
|
"column": 9,
|
|
1383
|
-
"index":
|
|
1383
|
+
"index": 6219
|
|
1384
1384
|
}
|
|
1385
1385
|
},
|
|
1386
1386
|
"filepath": "src/components/markdown_editor/markdown_editor_help_button.tsx"
|
|
@@ -1655,20 +1655,38 @@
|
|
|
1655
1655
|
},
|
|
1656
1656
|
"filepath": "src/components/image/image_button.tsx"
|
|
1657
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
|
+
},
|
|
1658
1676
|
{
|
|
1659
1677
|
"token": "euiFlyoutMenu.back",
|
|
1660
1678
|
"defString": "Back",
|
|
1661
1679
|
"highlighting": "string",
|
|
1662
1680
|
"loc": {
|
|
1663
1681
|
"start": {
|
|
1664
|
-
"line":
|
|
1682
|
+
"line": 168,
|
|
1665
1683
|
"column": 6,
|
|
1666
|
-
"index":
|
|
1684
|
+
"index": 4663
|
|
1667
1685
|
},
|
|
1668
1686
|
"end": {
|
|
1669
|
-
"line":
|
|
1687
|
+
"line": 168,
|
|
1670
1688
|
"column": 59,
|
|
1671
|
-
"index":
|
|
1689
|
+
"index": 4716
|
|
1672
1690
|
}
|
|
1673
1691
|
},
|
|
1674
1692
|
"filepath": "src/components/flyout/flyout_menu.tsx"
|
|
@@ -1679,14 +1697,86 @@
|
|
|
1679
1697
|
"highlighting": "string",
|
|
1680
1698
|
"loc": {
|
|
1681
1699
|
"start": {
|
|
1682
|
-
"line":
|
|
1700
|
+
"line": 187,
|
|
1683
1701
|
"column": 22,
|
|
1684
|
-
"index":
|
|
1702
|
+
"index": 5133
|
|
1685
1703
|
},
|
|
1686
1704
|
"end": {
|
|
1687
|
-
"line":
|
|
1705
|
+
"line": 187,
|
|
1688
1706
|
"column": 68,
|
|
1689
|
-
"index":
|
|
1707
|
+
"index": 5179
|
|
1708
|
+
}
|
|
1709
|
+
},
|
|
1710
|
+
"filepath": "src/components/flyout/flyout_menu.tsx"
|
|
1711
|
+
},
|
|
1712
|
+
{
|
|
1713
|
+
"token": "euiFlyoutMenu.pagination.previous",
|
|
1714
|
+
"defString": "Previous",
|
|
1715
|
+
"highlighting": "string",
|
|
1716
|
+
"loc": {
|
|
1717
|
+
"start": {
|
|
1718
|
+
"line": 222,
|
|
1719
|
+
"column": 20,
|
|
1720
|
+
"index": 6191
|
|
1721
|
+
},
|
|
1722
|
+
"end": {
|
|
1723
|
+
"line": 222,
|
|
1724
|
+
"column": 79,
|
|
1725
|
+
"index": 6250
|
|
1726
|
+
}
|
|
1727
|
+
},
|
|
1728
|
+
"filepath": "src/components/flyout/flyout_menu.tsx"
|
|
1729
|
+
},
|
|
1730
|
+
{
|
|
1731
|
+
"token": "euiFlyoutMenu.pagination.next",
|
|
1732
|
+
"defString": "Next",
|
|
1733
|
+
"highlighting": "string",
|
|
1734
|
+
"loc": {
|
|
1735
|
+
"start": {
|
|
1736
|
+
"line": 223,
|
|
1737
|
+
"column": 20,
|
|
1738
|
+
"index": 6272
|
|
1739
|
+
},
|
|
1740
|
+
"end": {
|
|
1741
|
+
"line": 223,
|
|
1742
|
+
"column": 71,
|
|
1743
|
+
"index": 6323
|
|
1744
|
+
}
|
|
1745
|
+
},
|
|
1746
|
+
"filepath": "src/components/flyout/flyout_menu.tsx"
|
|
1747
|
+
},
|
|
1748
|
+
{
|
|
1749
|
+
"token": "euiFlyoutMenu.pagination.counter",
|
|
1750
|
+
"defString": "{position} of {total}",
|
|
1751
|
+
"highlighting": "string",
|
|
1752
|
+
"loc": {
|
|
1753
|
+
"start": {
|
|
1754
|
+
"line": 270,
|
|
1755
|
+
"column": 12,
|
|
1756
|
+
"index": 7521
|
|
1757
|
+
},
|
|
1758
|
+
"end": {
|
|
1759
|
+
"line": 274,
|
|
1760
|
+
"column": 14,
|
|
1761
|
+
"index": 7706
|
|
1762
|
+
}
|
|
1763
|
+
},
|
|
1764
|
+
"filepath": "src/components/flyout/flyout_menu.tsx"
|
|
1765
|
+
},
|
|
1766
|
+
{
|
|
1767
|
+
"token": "euiFlyoutMenu.pagination.counter",
|
|
1768
|
+
"defString": "{position} of {total}",
|
|
1769
|
+
"highlighting": "string",
|
|
1770
|
+
"loc": {
|
|
1771
|
+
"start": {
|
|
1772
|
+
"line": 277,
|
|
1773
|
+
"column": 12,
|
|
1774
|
+
"index": 7772
|
|
1775
|
+
},
|
|
1776
|
+
"end": {
|
|
1777
|
+
"line": 281,
|
|
1778
|
+
"column": 14,
|
|
1779
|
+
"index": 7957
|
|
1690
1780
|
}
|
|
1691
1781
|
},
|
|
1692
1782
|
"filepath": "src/components/flyout/flyout_menu.tsx"
|
|
@@ -1697,14 +1787,14 @@
|
|
|
1697
1787
|
"highlighting": "string",
|
|
1698
1788
|
"loc": {
|
|
1699
1789
|
"start": {
|
|
1700
|
-
"line":
|
|
1790
|
+
"line": 1022,
|
|
1701
1791
|
"column": 14,
|
|
1702
|
-
"index":
|
|
1792
|
+
"index": 36294
|
|
1703
1793
|
},
|
|
1704
1794
|
"end": {
|
|
1705
|
-
"line":
|
|
1795
|
+
"line": 1025,
|
|
1706
1796
|
"column": 16,
|
|
1707
|
-
"index":
|
|
1797
|
+
"index": 36509
|
|
1708
1798
|
}
|
|
1709
1799
|
},
|
|
1710
1800
|
"filepath": "src/components/flyout/flyout.component.tsx"
|
|
@@ -1715,14 +1805,14 @@
|
|
|
1715
1805
|
"highlighting": "string",
|
|
1716
1806
|
"loc": {
|
|
1717
1807
|
"start": {
|
|
1718
|
-
"line":
|
|
1808
|
+
"line": 1027,
|
|
1719
1809
|
"column": 14,
|
|
1720
|
-
"index":
|
|
1810
|
+
"index": 36542
|
|
1721
1811
|
},
|
|
1722
1812
|
"end": {
|
|
1723
|
-
"line":
|
|
1813
|
+
"line": 1030,
|
|
1724
1814
|
"column": 16,
|
|
1725
|
-
"index":
|
|
1815
|
+
"index": 36721
|
|
1726
1816
|
}
|
|
1727
1817
|
},
|
|
1728
1818
|
"filepath": "src/components/flyout/flyout.component.tsx"
|
|
@@ -1733,14 +1823,14 @@
|
|
|
1733
1823
|
"highlighting": "string",
|
|
1734
1824
|
"loc": {
|
|
1735
1825
|
"start": {
|
|
1736
|
-
"line":
|
|
1826
|
+
"line": 1033,
|
|
1737
1827
|
"column": 14,
|
|
1738
|
-
"index":
|
|
1828
|
+
"index": 36801
|
|
1739
1829
|
},
|
|
1740
1830
|
"end": {
|
|
1741
|
-
"line":
|
|
1831
|
+
"line": 1036,
|
|
1742
1832
|
"column": 16,
|
|
1743
|
-
"index":
|
|
1833
|
+
"index": 36982
|
|
1744
1834
|
}
|
|
1745
1835
|
},
|
|
1746
1836
|
"filepath": "src/components/flyout/flyout.component.tsx"
|
|
@@ -1763,24 +1853,6 @@
|
|
|
1763
1853
|
},
|
|
1764
1854
|
"filepath": "src/components/flyout/_flyout_close_button.tsx"
|
|
1765
1855
|
},
|
|
1766
|
-
{
|
|
1767
|
-
"token": "euiForm.addressFormErrors",
|
|
1768
|
-
"defString": "Please address the highlighted errors.",
|
|
1769
|
-
"highlighting": "string",
|
|
1770
|
-
"loc": {
|
|
1771
|
-
"start": {
|
|
1772
|
-
"line": 98,
|
|
1773
|
-
"column": 8,
|
|
1774
|
-
"index": 2588
|
|
1775
|
-
},
|
|
1776
|
-
"end": {
|
|
1777
|
-
"line": 101,
|
|
1778
|
-
"column": 9,
|
|
1779
|
-
"index": 2709
|
|
1780
|
-
}
|
|
1781
|
-
},
|
|
1782
|
-
"filepath": "src/components/form/form.tsx"
|
|
1783
|
-
},
|
|
1784
1856
|
{
|
|
1785
1857
|
"token": "euiFilterButton.filterBadgeActiveAriaLabel",
|
|
1786
1858
|
"defString": "{count} active filters",
|
|
@@ -2231,24 +2303,6 @@
|
|
|
2231
2303
|
},
|
|
2232
2304
|
"filepath": "src/components/collapsible_nav_beta/collapsible_nav_beta.tsx"
|
|
2233
2305
|
},
|
|
2234
|
-
{
|
|
2235
|
-
"token": "euiCallOut.dismissAriaLabel",
|
|
2236
|
-
"defString": "Dismiss this callout",
|
|
2237
|
-
"highlighting": "string",
|
|
2238
|
-
"loc": {
|
|
2239
|
-
"start": {
|
|
2240
|
-
"line": 114,
|
|
2241
|
-
"column": 8,
|
|
2242
|
-
"index": 3269
|
|
2243
|
-
},
|
|
2244
|
-
"end": {
|
|
2245
|
-
"line": 117,
|
|
2246
|
-
"column": 9,
|
|
2247
|
-
"index": 3374
|
|
2248
|
-
}
|
|
2249
|
-
},
|
|
2250
|
-
"filepath": "src/components/call_out/call_out.tsx"
|
|
2251
|
-
},
|
|
2252
2306
|
{
|
|
2253
2307
|
"token": "euiCodeBlockFullScreen.fullscreenCollapse",
|
|
2254
2308
|
"defString": "Collapse",
|
|
@@ -2357,6 +2411,24 @@
|
|
|
2357
2411
|
},
|
|
2358
2412
|
"filepath": "src/components/code/code_block.tsx"
|
|
2359
2413
|
},
|
|
2414
|
+
{
|
|
2415
|
+
"token": "euiCallOut.dismissAriaLabel",
|
|
2416
|
+
"defString": "Dismiss this callout",
|
|
2417
|
+
"highlighting": "string",
|
|
2418
|
+
"loc": {
|
|
2419
|
+
"start": {
|
|
2420
|
+
"line": 114,
|
|
2421
|
+
"column": 8,
|
|
2422
|
+
"index": 3269
|
|
2423
|
+
},
|
|
2424
|
+
"end": {
|
|
2425
|
+
"line": 117,
|
|
2426
|
+
"column": 9,
|
|
2427
|
+
"index": 3374
|
|
2428
|
+
}
|
|
2429
|
+
},
|
|
2430
|
+
"filepath": "src/components/call_out/call_out.tsx"
|
|
2431
|
+
},
|
|
2360
2432
|
{
|
|
2361
2433
|
"token": "euiBreadcrumbs.nav.ariaLabel",
|
|
2362
2434
|
"defString": "Breadcrumbs",
|
|
@@ -2399,14 +2471,14 @@
|
|
|
2399
2471
|
"highlighting": "string",
|
|
2400
2472
|
"loc": {
|
|
2401
2473
|
"start": {
|
|
2402
|
-
"line":
|
|
2474
|
+
"line": 183,
|
|
2403
2475
|
"column": 29,
|
|
2404
|
-
"index":
|
|
2476
|
+
"index": 5213
|
|
2405
2477
|
},
|
|
2406
2478
|
"end": {
|
|
2407
|
-
"line":
|
|
2479
|
+
"line": 189,
|
|
2408
2480
|
"column": 5,
|
|
2409
|
-
"index":
|
|
2481
|
+
"index": 5546
|
|
2410
2482
|
}
|
|
2411
2483
|
},
|
|
2412
2484
|
"filepath": "src/components/breadcrumbs/_breadcrumb_content.tsx"
|
|
@@ -2525,14 +2597,14 @@
|
|
|
2525
2597
|
"highlighting": "string",
|
|
2526
2598
|
"loc": {
|
|
2527
2599
|
"start": {
|
|
2528
|
-
"line":
|
|
2600
|
+
"line": 333,
|
|
2529
2601
|
"column": 6,
|
|
2530
|
-
"index":
|
|
2602
|
+
"index": 8623
|
|
2531
2603
|
},
|
|
2532
2604
|
"end": {
|
|
2533
|
-
"line":
|
|
2605
|
+
"line": 333,
|
|
2534
2606
|
"column": 79,
|
|
2535
|
-
"index":
|
|
2607
|
+
"index": 8696
|
|
2536
2608
|
}
|
|
2537
2609
|
},
|
|
2538
2610
|
"filepath": "src/components/basic_table/basic_table.tsx"
|
|
@@ -2543,14 +2615,14 @@
|
|
|
2543
2615
|
"highlighting": "string",
|
|
2544
2616
|
"loc": {
|
|
2545
2617
|
"start": {
|
|
2546
|
-
"line":
|
|
2618
|
+
"line": 683,
|
|
2547
2619
|
"column": 10,
|
|
2548
|
-
"index":
|
|
2620
|
+
"index": 17693
|
|
2549
2621
|
},
|
|
2550
2622
|
"end": {
|
|
2551
|
-
"line":
|
|
2623
|
+
"line": 687,
|
|
2552
2624
|
"column": 12,
|
|
2553
|
-
"index":
|
|
2625
|
+
"index": 17913
|
|
2554
2626
|
}
|
|
2555
2627
|
},
|
|
2556
2628
|
"filepath": "src/components/basic_table/basic_table.tsx"
|
|
@@ -2561,14 +2633,14 @@
|
|
|
2561
2633
|
"highlighting": "string",
|
|
2562
2634
|
"loc": {
|
|
2563
2635
|
"start": {
|
|
2564
|
-
"line":
|
|
2636
|
+
"line": 696,
|
|
2565
2637
|
"column": 10,
|
|
2566
|
-
"index":
|
|
2638
|
+
"index": 18077
|
|
2567
2639
|
},
|
|
2568
2640
|
"end": {
|
|
2569
|
-
"line":
|
|
2641
|
+
"line": 700,
|
|
2570
2642
|
"column": 12,
|
|
2571
|
-
"index":
|
|
2643
|
+
"index": 18260
|
|
2572
2644
|
}
|
|
2573
2645
|
},
|
|
2574
2646
|
"filepath": "src/components/basic_table/basic_table.tsx"
|
|
@@ -2579,14 +2651,14 @@
|
|
|
2579
2651
|
"highlighting": "string",
|
|
2580
2652
|
"loc": {
|
|
2581
2653
|
"start": {
|
|
2582
|
-
"line":
|
|
2654
|
+
"line": 712,
|
|
2583
2655
|
"column": 16,
|
|
2584
|
-
"index":
|
|
2656
|
+
"index": 18549
|
|
2585
2657
|
},
|
|
2586
2658
|
"end": {
|
|
2587
|
-
"line":
|
|
2659
|
+
"line": 715,
|
|
2588
2660
|
"column": 18,
|
|
2589
|
-
"index":
|
|
2661
|
+
"index": 18673
|
|
2590
2662
|
}
|
|
2591
2663
|
},
|
|
2592
2664
|
"filepath": "src/components/basic_table/basic_table.tsx"
|
|
@@ -2597,14 +2669,14 @@
|
|
|
2597
2669
|
"highlighting": "string",
|
|
2598
2670
|
"loc": {
|
|
2599
2671
|
"start": {
|
|
2600
|
-
"line":
|
|
2672
|
+
"line": 720,
|
|
2601
2673
|
"column": 18,
|
|
2602
|
-
"index":
|
|
2674
|
+
"index": 18788
|
|
2603
2675
|
},
|
|
2604
2676
|
"end": {
|
|
2605
|
-
"line":
|
|
2677
|
+
"line": 723,
|
|
2606
2678
|
"column": 20,
|
|
2607
|
-
"index":
|
|
2679
|
+
"index": 18916
|
|
2608
2680
|
}
|
|
2609
2681
|
},
|
|
2610
2682
|
"filepath": "src/components/basic_table/basic_table.tsx"
|
|
@@ -2615,14 +2687,14 @@
|
|
|
2615
2687
|
"highlighting": "string",
|
|
2616
2688
|
"loc": {
|
|
2617
2689
|
"start": {
|
|
2618
|
-
"line":
|
|
2690
|
+
"line": 772,
|
|
2619
2691
|
"column": 6,
|
|
2620
|
-
"index":
|
|
2692
|
+
"index": 20121
|
|
2621
2693
|
},
|
|
2622
2694
|
"end": {
|
|
2623
|
-
"line":
|
|
2695
|
+
"line": 775,
|
|
2624
2696
|
"column": 7,
|
|
2625
|
-
"index":
|
|
2697
|
+
"index": 20272
|
|
2626
2698
|
}
|
|
2627
2699
|
},
|
|
2628
2700
|
"filepath": "src/components/basic_table/basic_table.tsx"
|
|
@@ -2633,14 +2705,14 @@
|
|
|
2633
2705
|
"highlighting": "string",
|
|
2634
2706
|
"loc": {
|
|
2635
2707
|
"start": {
|
|
2636
|
-
"line":
|
|
2708
|
+
"line": 772,
|
|
2637
2709
|
"column": 6,
|
|
2638
|
-
"index":
|
|
2710
|
+
"index": 20121
|
|
2639
2711
|
},
|
|
2640
2712
|
"end": {
|
|
2641
|
-
"line":
|
|
2713
|
+
"line": 775,
|
|
2642
2714
|
"column": 7,
|
|
2643
|
-
"index":
|
|
2715
|
+
"index": 20272
|
|
2644
2716
|
}
|
|
2645
2717
|
},
|
|
2646
2718
|
"filepath": "src/components/basic_table/basic_table.tsx"
|
|
@@ -2651,14 +2723,14 @@
|
|
|
2651
2723
|
"highlighting": "string",
|
|
2652
2724
|
"loc": {
|
|
2653
2725
|
"start": {
|
|
2654
|
-
"line":
|
|
2726
|
+
"line": 1220,
|
|
2655
2727
|
"column": 8,
|
|
2656
|
-
"index":
|
|
2728
|
+
"index": 33514
|
|
2657
2729
|
},
|
|
2658
2730
|
"end": {
|
|
2659
|
-
"line":
|
|
2731
|
+
"line": 1224,
|
|
2660
2732
|
"column": 9,
|
|
2661
|
-
"index":
|
|
2733
|
+
"index": 33669
|
|
2662
2734
|
}
|
|
2663
2735
|
},
|
|
2664
2736
|
"filepath": "src/components/basic_table/basic_table.tsx"
|
|
@@ -2669,14 +2741,14 @@
|
|
|
2669
2741
|
"highlighting": "string",
|
|
2670
2742
|
"loc": {
|
|
2671
2743
|
"start": {
|
|
2672
|
-
"line":
|
|
2744
|
+
"line": 1482,
|
|
2673
2745
|
"column": 8,
|
|
2674
|
-
"index":
|
|
2746
|
+
"index": 41138
|
|
2675
2747
|
},
|
|
2676
2748
|
"end": {
|
|
2677
|
-
"line":
|
|
2749
|
+
"line": 1486,
|
|
2678
2750
|
"column": 9,
|
|
2679
|
-
"index":
|
|
2751
|
+
"index": 41297
|
|
2680
2752
|
}
|
|
2681
2753
|
},
|
|
2682
2754
|
"filepath": "src/components/basic_table/basic_table.tsx"
|
|
@@ -2777,14 +2849,14 @@
|
|
|
2777
2849
|
"highlighting": "string",
|
|
2778
2850
|
"loc": {
|
|
2779
2851
|
"start": {
|
|
2780
|
-
"line":
|
|
2781
|
-
"column":
|
|
2782
|
-
"index":
|
|
2852
|
+
"line": 65,
|
|
2853
|
+
"column": 6,
|
|
2854
|
+
"index": 1799
|
|
2783
2855
|
},
|
|
2784
2856
|
"end": {
|
|
2785
|
-
"line":
|
|
2786
|
-
"column":
|
|
2787
|
-
"index":
|
|
2857
|
+
"line": 65,
|
|
2858
|
+
"column": 70,
|
|
2859
|
+
"index": 1863
|
|
2788
2860
|
}
|
|
2789
2861
|
},
|
|
2790
2862
|
"filepath": "src/components/table/mobile/table_sort_mobile.tsx"
|
|
@@ -3113,24 +3185,6 @@
|
|
|
3113
3185
|
},
|
|
3114
3186
|
"filepath": "src/components/header/header_links/header_links.tsx"
|
|
3115
3187
|
},
|
|
3116
|
-
{
|
|
3117
|
-
"token": "euiFlyoutManaged.defaultTitle",
|
|
3118
|
-
"defString": "Unknown Flyout",
|
|
3119
|
-
"highlighting": "string",
|
|
3120
|
-
"loc": {
|
|
3121
|
-
"start": {
|
|
3122
|
-
"line": 169,
|
|
3123
|
-
"column": 25,
|
|
3124
|
-
"index": 5638
|
|
3125
|
-
},
|
|
3126
|
-
"end": {
|
|
3127
|
-
"line": 172,
|
|
3128
|
-
"column": 5,
|
|
3129
|
-
"index": 5717
|
|
3130
|
-
}
|
|
3131
|
-
},
|
|
3132
|
-
"filepath": "src/components/flyout/manager/flyout_managed.tsx"
|
|
3133
|
-
},
|
|
3134
3188
|
{
|
|
3135
3189
|
"token": "euiSuperSelect.screenReaderAnnouncement",
|
|
3136
3190
|
"defString": "You are in a form selector and must select a single option.\n Use the Up and Down arrow keys to navigate or Escape to close.",
|
|
@@ -3239,24 +3293,6 @@
|
|
|
3239
3293
|
},
|
|
3240
3294
|
"filepath": "src/components/form/form_control_layout/form_control_layout_clear_button.tsx"
|
|
3241
3295
|
},
|
|
3242
|
-
{
|
|
3243
|
-
"token": "euiFieldSearch.clearSearchButtonLabel",
|
|
3244
|
-
"defString": "Clear search input",
|
|
3245
|
-
"highlighting": "string",
|
|
3246
|
-
"loc": {
|
|
3247
|
-
"start": {
|
|
3248
|
-
"line": 260,
|
|
3249
|
-
"column": 6,
|
|
3250
|
-
"index": 7437
|
|
3251
|
-
},
|
|
3252
|
-
"end": {
|
|
3253
|
-
"line": 263,
|
|
3254
|
-
"column": 7,
|
|
3255
|
-
"index": 7544
|
|
3256
|
-
}
|
|
3257
|
-
},
|
|
3258
|
-
"filepath": "src/components/form/field_search/field_search.tsx"
|
|
3259
|
-
},
|
|
3260
3296
|
{
|
|
3261
3297
|
"token": "euiFilePicker.promptText",
|
|
3262
3298
|
"defString": "Select or drag and drop a file",
|
|
@@ -3329,20 +3365,38 @@
|
|
|
3329
3365
|
},
|
|
3330
3366
|
"filepath": "src/components/form/file_picker/file_picker.tsx"
|
|
3331
3367
|
},
|
|
3368
|
+
{
|
|
3369
|
+
"token": "euiFieldSearch.clearSearchButtonLabel",
|
|
3370
|
+
"defString": "Clear search input",
|
|
3371
|
+
"highlighting": "string",
|
|
3372
|
+
"loc": {
|
|
3373
|
+
"start": {
|
|
3374
|
+
"line": 260,
|
|
3375
|
+
"column": 6,
|
|
3376
|
+
"index": 7437
|
|
3377
|
+
},
|
|
3378
|
+
"end": {
|
|
3379
|
+
"line": 263,
|
|
3380
|
+
"column": 7,
|
|
3381
|
+
"index": 7544
|
|
3382
|
+
}
|
|
3383
|
+
},
|
|
3384
|
+
"filepath": "src/components/form/field_search/field_search.tsx"
|
|
3385
|
+
},
|
|
3332
3386
|
{
|
|
3333
3387
|
"token": "euiFieldPassword.showPassword",
|
|
3334
3388
|
"defString": "Show password as plain text. Note: this will visually expose your password on the screen.",
|
|
3335
3389
|
"highlighting": "string",
|
|
3336
3390
|
"loc": {
|
|
3337
3391
|
"start": {
|
|
3338
|
-
"line":
|
|
3392
|
+
"line": 107,
|
|
3339
3393
|
"column": 49,
|
|
3340
|
-
"index":
|
|
3394
|
+
"index": 3019
|
|
3341
3395
|
},
|
|
3342
3396
|
"end": {
|
|
3343
|
-
"line":
|
|
3397
|
+
"line": 113,
|
|
3344
3398
|
"column": 3,
|
|
3345
|
-
"index":
|
|
3399
|
+
"index": 3240
|
|
3346
3400
|
}
|
|
3347
3401
|
},
|
|
3348
3402
|
"filepath": "src/components/form/field_password/field_password.tsx"
|
|
@@ -3353,53 +3407,251 @@
|
|
|
3353
3407
|
"highlighting": "string",
|
|
3354
3408
|
"loc": {
|
|
3355
3409
|
"start": {
|
|
3356
|
-
"line":
|
|
3410
|
+
"line": 107,
|
|
3357
3411
|
"column": 49,
|
|
3358
|
-
"index":
|
|
3412
|
+
"index": 3019
|
|
3359
3413
|
},
|
|
3360
3414
|
"end": {
|
|
3361
|
-
"line":
|
|
3415
|
+
"line": 113,
|
|
3362
3416
|
"column": 3,
|
|
3363
|
-
"index":
|
|
3417
|
+
"index": 3240
|
|
3364
3418
|
}
|
|
3365
3419
|
},
|
|
3366
3420
|
"filepath": "src/components/form/field_password/field_password.tsx"
|
|
3367
3421
|
},
|
|
3368
3422
|
{
|
|
3369
|
-
"token": "
|
|
3370
|
-
"defString": "
|
|
3423
|
+
"token": "euiFlyoutManaged.defaultTitle",
|
|
3424
|
+
"defString": "Unknown Flyout",
|
|
3371
3425
|
"highlighting": "string",
|
|
3372
3426
|
"loc": {
|
|
3373
3427
|
"start": {
|
|
3374
|
-
"line":
|
|
3428
|
+
"line": 173,
|
|
3375
3429
|
"column": 25,
|
|
3376
|
-
"index":
|
|
3430
|
+
"index": 5686
|
|
3377
3431
|
},
|
|
3378
3432
|
"end": {
|
|
3379
|
-
"line":
|
|
3380
|
-
"column":
|
|
3381
|
-
"index":
|
|
3433
|
+
"line": 176,
|
|
3434
|
+
"column": 5,
|
|
3435
|
+
"index": 5765
|
|
3382
3436
|
}
|
|
3383
3437
|
},
|
|
3384
|
-
"filepath": "src/components/
|
|
3438
|
+
"filepath": "src/components/flyout/manager/flyout_managed.tsx"
|
|
3385
3439
|
},
|
|
3386
3440
|
{
|
|
3387
|
-
"token": "
|
|
3388
|
-
"defString": "
|
|
3441
|
+
"token": "euiTimeWindowButtons.previousDescription",
|
|
3442
|
+
"defString": "Previous {displayInterval}",
|
|
3389
3443
|
"highlighting": "string",
|
|
3390
3444
|
"loc": {
|
|
3391
3445
|
"start": {
|
|
3392
|
-
"line":
|
|
3393
|
-
"column":
|
|
3394
|
-
"index":
|
|
3446
|
+
"line": 88,
|
|
3447
|
+
"column": 30,
|
|
3448
|
+
"index": 2577
|
|
3395
3449
|
},
|
|
3396
3450
|
"end": {
|
|
3397
|
-
"line":
|
|
3398
|
-
"column":
|
|
3399
|
-
"index":
|
|
3451
|
+
"line": 92,
|
|
3452
|
+
"column": 3,
|
|
3453
|
+
"index": 2698
|
|
3400
3454
|
}
|
|
3401
3455
|
},
|
|
3402
|
-
"filepath": "src/components/date_picker/super_date_picker/
|
|
3456
|
+
"filepath": "src/components/date_picker/super_date_picker/time_window_buttons.tsx"
|
|
3457
|
+
},
|
|
3458
|
+
{
|
|
3459
|
+
"token": "euiTimeWindowButtons.nextDescription",
|
|
3460
|
+
"defString": "Next {displayInterval}",
|
|
3461
|
+
"highlighting": "string",
|
|
3462
|
+
"loc": {
|
|
3463
|
+
"start": {
|
|
3464
|
+
"line": 93,
|
|
3465
|
+
"column": 26,
|
|
3466
|
+
"index": 2726
|
|
3467
|
+
},
|
|
3468
|
+
"end": {
|
|
3469
|
+
"line": 97,
|
|
3470
|
+
"column": 3,
|
|
3471
|
+
"index": 2839
|
|
3472
|
+
}
|
|
3473
|
+
},
|
|
3474
|
+
"filepath": "src/components/date_picker/super_date_picker/time_window_buttons.tsx"
|
|
3475
|
+
},
|
|
3476
|
+
{
|
|
3477
|
+
"token": "euiTimeWindowButtons.invalidShiftLabel",
|
|
3478
|
+
"defString": "Cannot shift invalid time window",
|
|
3479
|
+
"highlighting": "string",
|
|
3480
|
+
"loc": {
|
|
3481
|
+
"start": {
|
|
3482
|
+
"line": 98,
|
|
3483
|
+
"column": 34,
|
|
3484
|
+
"index": 2875
|
|
3485
|
+
},
|
|
3486
|
+
"end": {
|
|
3487
|
+
"line": 101,
|
|
3488
|
+
"column": 3,
|
|
3489
|
+
"index": 2975
|
|
3490
|
+
}
|
|
3491
|
+
},
|
|
3492
|
+
"filepath": "src/components/date_picker/super_date_picker/time_window_buttons.tsx"
|
|
3493
|
+
},
|
|
3494
|
+
{
|
|
3495
|
+
"token": "euiTimeWindowButtons.invalidZoomInLabel",
|
|
3496
|
+
"defString": "Cannot zoom in invalid time window",
|
|
3497
|
+
"highlighting": "string",
|
|
3498
|
+
"loc": {
|
|
3499
|
+
"start": {
|
|
3500
|
+
"line": 102,
|
|
3501
|
+
"column": 35,
|
|
3502
|
+
"index": 3012
|
|
3503
|
+
},
|
|
3504
|
+
"end": {
|
|
3505
|
+
"line": 105,
|
|
3506
|
+
"column": 3,
|
|
3507
|
+
"index": 3115
|
|
3508
|
+
}
|
|
3509
|
+
},
|
|
3510
|
+
"filepath": "src/components/date_picker/super_date_picker/time_window_buttons.tsx"
|
|
3511
|
+
},
|
|
3512
|
+
{
|
|
3513
|
+
"token": "euiTimeWindowButtons.cannotZoomInLabel",
|
|
3514
|
+
"defString": "Cannot zoom in any further",
|
|
3515
|
+
"highlighting": "string",
|
|
3516
|
+
"loc": {
|
|
3517
|
+
"start": {
|
|
3518
|
+
"line": 106,
|
|
3519
|
+
"column": 34,
|
|
3520
|
+
"index": 3151
|
|
3521
|
+
},
|
|
3522
|
+
"end": {
|
|
3523
|
+
"line": 109,
|
|
3524
|
+
"column": 3,
|
|
3525
|
+
"index": 3245
|
|
3526
|
+
}
|
|
3527
|
+
},
|
|
3528
|
+
"filepath": "src/components/date_picker/super_date_picker/time_window_buttons.tsx"
|
|
3529
|
+
},
|
|
3530
|
+
{
|
|
3531
|
+
"token": "euiTimeWindowButtons.invalidZoomOutLabel",
|
|
3532
|
+
"defString": "Cannot zoom out invalid time window",
|
|
3533
|
+
"highlighting": "string",
|
|
3534
|
+
"loc": {
|
|
3535
|
+
"start": {
|
|
3536
|
+
"line": 110,
|
|
3537
|
+
"column": 36,
|
|
3538
|
+
"index": 3283
|
|
3539
|
+
},
|
|
3540
|
+
"end": {
|
|
3541
|
+
"line": 113,
|
|
3542
|
+
"column": 3,
|
|
3543
|
+
"index": 3388
|
|
3544
|
+
}
|
|
3545
|
+
},
|
|
3546
|
+
"filepath": "src/components/date_picker/super_date_picker/time_window_buttons.tsx"
|
|
3547
|
+
},
|
|
3548
|
+
{
|
|
3549
|
+
"token": "euiTimeWindowButtons.previousLabel",
|
|
3550
|
+
"defString": "Previous",
|
|
3551
|
+
"highlighting": "string",
|
|
3552
|
+
"loc": {
|
|
3553
|
+
"start": {
|
|
3554
|
+
"line": 116,
|
|
3555
|
+
"column": 24,
|
|
3556
|
+
"index": 3480
|
|
3557
|
+
},
|
|
3558
|
+
"end": {
|
|
3559
|
+
"line": 119,
|
|
3560
|
+
"column": 3,
|
|
3561
|
+
"index": 3552
|
|
3562
|
+
}
|
|
3563
|
+
},
|
|
3564
|
+
"filepath": "src/components/date_picker/super_date_picker/time_window_buttons.tsx"
|
|
3565
|
+
},
|
|
3566
|
+
{
|
|
3567
|
+
"token": "euiTimeWindowButtons.zoomInLabel",
|
|
3568
|
+
"defString": "Zoom in",
|
|
3569
|
+
"highlighting": "string",
|
|
3570
|
+
"loc": {
|
|
3571
|
+
"start": {
|
|
3572
|
+
"line": 125,
|
|
3573
|
+
"column": 22,
|
|
3574
|
+
"index": 3739
|
|
3575
|
+
},
|
|
3576
|
+
"end": {
|
|
3577
|
+
"line": 125,
|
|
3578
|
+
"column": 79,
|
|
3579
|
+
"index": 3796
|
|
3580
|
+
}
|
|
3581
|
+
},
|
|
3582
|
+
"filepath": "src/components/date_picker/super_date_picker/time_window_buttons.tsx"
|
|
3583
|
+
},
|
|
3584
|
+
{
|
|
3585
|
+
"token": "euiTimeWindowButtons.zoomOutLabel",
|
|
3586
|
+
"defString": "Zoom out",
|
|
3587
|
+
"highlighting": "string",
|
|
3588
|
+
"loc": {
|
|
3589
|
+
"start": {
|
|
3590
|
+
"line": 133,
|
|
3591
|
+
"column": 23,
|
|
3592
|
+
"index": 4034
|
|
3593
|
+
},
|
|
3594
|
+
"end": {
|
|
3595
|
+
"line": 136,
|
|
3596
|
+
"column": 3,
|
|
3597
|
+
"index": 4105
|
|
3598
|
+
}
|
|
3599
|
+
},
|
|
3600
|
+
"filepath": "src/components/date_picker/super_date_picker/time_window_buttons.tsx"
|
|
3601
|
+
},
|
|
3602
|
+
{
|
|
3603
|
+
"token": "euiTimeWindowButtons.nextLabel",
|
|
3604
|
+
"defString": "Next",
|
|
3605
|
+
"highlighting": "string",
|
|
3606
|
+
"loc": {
|
|
3607
|
+
"start": {
|
|
3608
|
+
"line": 142,
|
|
3609
|
+
"column": 20,
|
|
3610
|
+
"index": 4279
|
|
3611
|
+
},
|
|
3612
|
+
"end": {
|
|
3613
|
+
"line": 142,
|
|
3614
|
+
"column": 72,
|
|
3615
|
+
"index": 4331
|
|
3616
|
+
}
|
|
3617
|
+
},
|
|
3618
|
+
"filepath": "src/components/date_picker/super_date_picker/time_window_buttons.tsx"
|
|
3619
|
+
},
|
|
3620
|
+
{
|
|
3621
|
+
"token": "euiTimeOptions.last",
|
|
3622
|
+
"defString": "Last",
|
|
3623
|
+
"highlighting": "string",
|
|
3624
|
+
"loc": {
|
|
3625
|
+
"start": {
|
|
3626
|
+
"line": 35,
|
|
3627
|
+
"column": 25,
|
|
3628
|
+
"index": 1138
|
|
3629
|
+
},
|
|
3630
|
+
"end": {
|
|
3631
|
+
"line": 35,
|
|
3632
|
+
"column": 66,
|
|
3633
|
+
"index": 1179
|
|
3634
|
+
}
|
|
3635
|
+
},
|
|
3636
|
+
"filepath": "src/components/date_picker/super_date_picker/time_options.tsx"
|
|
3637
|
+
},
|
|
3638
|
+
{
|
|
3639
|
+
"token": "euiTimeOptions.next",
|
|
3640
|
+
"defString": "Next",
|
|
3641
|
+
"highlighting": "string",
|
|
3642
|
+
"loc": {
|
|
3643
|
+
"start": {
|
|
3644
|
+
"line": 36,
|
|
3645
|
+
"column": 25,
|
|
3646
|
+
"index": 1208
|
|
3647
|
+
},
|
|
3648
|
+
"end": {
|
|
3649
|
+
"line": 36,
|
|
3650
|
+
"column": 66,
|
|
3651
|
+
"index": 1249
|
|
3652
|
+
}
|
|
3653
|
+
},
|
|
3654
|
+
"filepath": "src/components/date_picker/super_date_picker/time_options.tsx"
|
|
3403
3655
|
},
|
|
3404
3656
|
{
|
|
3405
3657
|
"token": "euiTimeOptions.seconds",
|
|
@@ -3982,252 +4234,72 @@
|
|
|
3982
4234
|
"defString": "Yesterday",
|
|
3983
4235
|
"highlighting": "string",
|
|
3984
4236
|
"loc": {
|
|
3985
|
-
"start": {
|
|
3986
|
-
"line": 155,
|
|
3987
|
-
"column": 13,
|
|
3988
|
-
"index": 4652
|
|
3989
|
-
},
|
|
3990
|
-
"end": {
|
|
3991
|
-
"line": 155,
|
|
3992
|
-
"column": 64,
|
|
3993
|
-
"index": 4703
|
|
3994
|
-
}
|
|
3995
|
-
},
|
|
3996
|
-
"filepath": "src/components/date_picker/super_date_picker/time_options.tsx"
|
|
3997
|
-
},
|
|
3998
|
-
{
|
|
3999
|
-
"token": "euiTimeOptions.weekToDate",
|
|
4000
|
-
"defString": "Week to date",
|
|
4001
|
-
"highlighting": "string",
|
|
4002
|
-
"loc": {
|
|
4003
|
-
"start": {
|
|
4004
|
-
"line": 160,
|
|
4005
|
-
"column": 13,
|
|
4006
|
-
"index": 4771
|
|
4007
|
-
},
|
|
4008
|
-
"end": {
|
|
4009
|
-
"line": 160,
|
|
4010
|
-
"column": 68,
|
|
4011
|
-
"index": 4826
|
|
4012
|
-
}
|
|
4013
|
-
},
|
|
4014
|
-
"filepath": "src/components/date_picker/super_date_picker/time_options.tsx"
|
|
4015
|
-
},
|
|
4016
|
-
{
|
|
4017
|
-
"token": "euiTimeOptions.monthToDate",
|
|
4018
|
-
"defString": "Month to date",
|
|
4019
|
-
"highlighting": "string",
|
|
4020
|
-
"loc": {
|
|
4021
|
-
"start": {
|
|
4022
|
-
"line": 165,
|
|
4023
|
-
"column": 13,
|
|
4024
|
-
"index": 4894
|
|
4025
|
-
},
|
|
4026
|
-
"end": {
|
|
4027
|
-
"line": 165,
|
|
4028
|
-
"column": 70,
|
|
4029
|
-
"index": 4951
|
|
4030
|
-
}
|
|
4031
|
-
},
|
|
4032
|
-
"filepath": "src/components/date_picker/super_date_picker/time_options.tsx"
|
|
4033
|
-
},
|
|
4034
|
-
{
|
|
4035
|
-
"token": "euiTimeOptions.yearToDate",
|
|
4036
|
-
"defString": "Year to date",
|
|
4037
|
-
"highlighting": "string",
|
|
4038
|
-
"loc": {
|
|
4039
|
-
"start": {
|
|
4040
|
-
"line": 170,
|
|
4041
|
-
"column": 13,
|
|
4042
|
-
"index": 5019
|
|
4043
|
-
},
|
|
4044
|
-
"end": {
|
|
4045
|
-
"line": 170,
|
|
4046
|
-
"column": 68,
|
|
4047
|
-
"index": 5074
|
|
4048
|
-
}
|
|
4049
|
-
},
|
|
4050
|
-
"filepath": "src/components/date_picker/super_date_picker/time_options.tsx"
|
|
4051
|
-
},
|
|
4052
|
-
{
|
|
4053
|
-
"token": "euiTimeWindowButtons.previousDescription",
|
|
4054
|
-
"defString": "Previous {displayInterval}",
|
|
4055
|
-
"highlighting": "string",
|
|
4056
|
-
"loc": {
|
|
4057
|
-
"start": {
|
|
4058
|
-
"line": 88,
|
|
4059
|
-
"column": 30,
|
|
4060
|
-
"index": 2577
|
|
4061
|
-
},
|
|
4062
|
-
"end": {
|
|
4063
|
-
"line": 92,
|
|
4064
|
-
"column": 3,
|
|
4065
|
-
"index": 2698
|
|
4066
|
-
}
|
|
4067
|
-
},
|
|
4068
|
-
"filepath": "src/components/date_picker/super_date_picker/time_window_buttons.tsx"
|
|
4069
|
-
},
|
|
4070
|
-
{
|
|
4071
|
-
"token": "euiTimeWindowButtons.nextDescription",
|
|
4072
|
-
"defString": "Next {displayInterval}",
|
|
4073
|
-
"highlighting": "string",
|
|
4074
|
-
"loc": {
|
|
4075
|
-
"start": {
|
|
4076
|
-
"line": 93,
|
|
4077
|
-
"column": 26,
|
|
4078
|
-
"index": 2726
|
|
4079
|
-
},
|
|
4080
|
-
"end": {
|
|
4081
|
-
"line": 97,
|
|
4082
|
-
"column": 3,
|
|
4083
|
-
"index": 2839
|
|
4084
|
-
}
|
|
4085
|
-
},
|
|
4086
|
-
"filepath": "src/components/date_picker/super_date_picker/time_window_buttons.tsx"
|
|
4087
|
-
},
|
|
4088
|
-
{
|
|
4089
|
-
"token": "euiTimeWindowButtons.invalidShiftLabel",
|
|
4090
|
-
"defString": "Cannot shift invalid time window",
|
|
4091
|
-
"highlighting": "string",
|
|
4092
|
-
"loc": {
|
|
4093
|
-
"start": {
|
|
4094
|
-
"line": 98,
|
|
4095
|
-
"column": 34,
|
|
4096
|
-
"index": 2875
|
|
4097
|
-
},
|
|
4098
|
-
"end": {
|
|
4099
|
-
"line": 101,
|
|
4100
|
-
"column": 3,
|
|
4101
|
-
"index": 2975
|
|
4102
|
-
}
|
|
4103
|
-
},
|
|
4104
|
-
"filepath": "src/components/date_picker/super_date_picker/time_window_buttons.tsx"
|
|
4105
|
-
},
|
|
4106
|
-
{
|
|
4107
|
-
"token": "euiTimeWindowButtons.invalidZoomInLabel",
|
|
4108
|
-
"defString": "Cannot zoom in invalid time window",
|
|
4109
|
-
"highlighting": "string",
|
|
4110
|
-
"loc": {
|
|
4111
|
-
"start": {
|
|
4112
|
-
"line": 102,
|
|
4113
|
-
"column": 35,
|
|
4114
|
-
"index": 3012
|
|
4115
|
-
},
|
|
4116
|
-
"end": {
|
|
4117
|
-
"line": 105,
|
|
4118
|
-
"column": 3,
|
|
4119
|
-
"index": 3115
|
|
4120
|
-
}
|
|
4121
|
-
},
|
|
4122
|
-
"filepath": "src/components/date_picker/super_date_picker/time_window_buttons.tsx"
|
|
4123
|
-
},
|
|
4124
|
-
{
|
|
4125
|
-
"token": "euiTimeWindowButtons.cannotZoomInLabel",
|
|
4126
|
-
"defString": "Cannot zoom in any further",
|
|
4127
|
-
"highlighting": "string",
|
|
4128
|
-
"loc": {
|
|
4129
|
-
"start": {
|
|
4130
|
-
"line": 106,
|
|
4131
|
-
"column": 34,
|
|
4132
|
-
"index": 3151
|
|
4133
|
-
},
|
|
4134
|
-
"end": {
|
|
4135
|
-
"line": 109,
|
|
4136
|
-
"column": 3,
|
|
4137
|
-
"index": 3245
|
|
4138
|
-
}
|
|
4139
|
-
},
|
|
4140
|
-
"filepath": "src/components/date_picker/super_date_picker/time_window_buttons.tsx"
|
|
4141
|
-
},
|
|
4142
|
-
{
|
|
4143
|
-
"token": "euiTimeWindowButtons.invalidZoomOutLabel",
|
|
4144
|
-
"defString": "Cannot zoom out invalid time window",
|
|
4145
|
-
"highlighting": "string",
|
|
4146
|
-
"loc": {
|
|
4147
|
-
"start": {
|
|
4148
|
-
"line": 110,
|
|
4149
|
-
"column": 36,
|
|
4150
|
-
"index": 3283
|
|
4151
|
-
},
|
|
4152
|
-
"end": {
|
|
4153
|
-
"line": 113,
|
|
4154
|
-
"column": 3,
|
|
4155
|
-
"index": 3388
|
|
4156
|
-
}
|
|
4157
|
-
},
|
|
4158
|
-
"filepath": "src/components/date_picker/super_date_picker/time_window_buttons.tsx"
|
|
4159
|
-
},
|
|
4160
|
-
{
|
|
4161
|
-
"token": "euiTimeWindowButtons.previousLabel",
|
|
4162
|
-
"defString": "Previous",
|
|
4163
|
-
"highlighting": "string",
|
|
4164
|
-
"loc": {
|
|
4165
|
-
"start": {
|
|
4166
|
-
"line": 116,
|
|
4167
|
-
"column": 24,
|
|
4168
|
-
"index": 3480
|
|
4237
|
+
"start": {
|
|
4238
|
+
"line": 155,
|
|
4239
|
+
"column": 13,
|
|
4240
|
+
"index": 4652
|
|
4169
4241
|
},
|
|
4170
4242
|
"end": {
|
|
4171
|
-
"line":
|
|
4172
|
-
"column":
|
|
4173
|
-
"index":
|
|
4243
|
+
"line": 155,
|
|
4244
|
+
"column": 64,
|
|
4245
|
+
"index": 4703
|
|
4174
4246
|
}
|
|
4175
4247
|
},
|
|
4176
|
-
"filepath": "src/components/date_picker/super_date_picker/
|
|
4248
|
+
"filepath": "src/components/date_picker/super_date_picker/time_options.tsx"
|
|
4177
4249
|
},
|
|
4178
4250
|
{
|
|
4179
|
-
"token": "
|
|
4180
|
-
"defString": "
|
|
4251
|
+
"token": "euiTimeOptions.weekToDate",
|
|
4252
|
+
"defString": "Week to date",
|
|
4181
4253
|
"highlighting": "string",
|
|
4182
4254
|
"loc": {
|
|
4183
4255
|
"start": {
|
|
4184
|
-
"line":
|
|
4185
|
-
"column":
|
|
4186
|
-
"index":
|
|
4256
|
+
"line": 160,
|
|
4257
|
+
"column": 13,
|
|
4258
|
+
"index": 4771
|
|
4187
4259
|
},
|
|
4188
4260
|
"end": {
|
|
4189
|
-
"line":
|
|
4190
|
-
"column":
|
|
4191
|
-
"index":
|
|
4261
|
+
"line": 160,
|
|
4262
|
+
"column": 68,
|
|
4263
|
+
"index": 4826
|
|
4192
4264
|
}
|
|
4193
4265
|
},
|
|
4194
|
-
"filepath": "src/components/date_picker/super_date_picker/
|
|
4266
|
+
"filepath": "src/components/date_picker/super_date_picker/time_options.tsx"
|
|
4195
4267
|
},
|
|
4196
4268
|
{
|
|
4197
|
-
"token": "
|
|
4198
|
-
"defString": "
|
|
4269
|
+
"token": "euiTimeOptions.monthToDate",
|
|
4270
|
+
"defString": "Month to date",
|
|
4199
4271
|
"highlighting": "string",
|
|
4200
4272
|
"loc": {
|
|
4201
4273
|
"start": {
|
|
4202
|
-
"line":
|
|
4203
|
-
"column":
|
|
4204
|
-
"index":
|
|
4274
|
+
"line": 165,
|
|
4275
|
+
"column": 13,
|
|
4276
|
+
"index": 4894
|
|
4205
4277
|
},
|
|
4206
4278
|
"end": {
|
|
4207
|
-
"line":
|
|
4208
|
-
"column":
|
|
4209
|
-
"index":
|
|
4279
|
+
"line": 165,
|
|
4280
|
+
"column": 70,
|
|
4281
|
+
"index": 4951
|
|
4210
4282
|
}
|
|
4211
4283
|
},
|
|
4212
|
-
"filepath": "src/components/date_picker/super_date_picker/
|
|
4284
|
+
"filepath": "src/components/date_picker/super_date_picker/time_options.tsx"
|
|
4213
4285
|
},
|
|
4214
4286
|
{
|
|
4215
|
-
"token": "
|
|
4216
|
-
"defString": "
|
|
4287
|
+
"token": "euiTimeOptions.yearToDate",
|
|
4288
|
+
"defString": "Year to date",
|
|
4217
4289
|
"highlighting": "string",
|
|
4218
4290
|
"loc": {
|
|
4219
4291
|
"start": {
|
|
4220
|
-
"line":
|
|
4221
|
-
"column":
|
|
4222
|
-
"index":
|
|
4292
|
+
"line": 170,
|
|
4293
|
+
"column": 13,
|
|
4294
|
+
"index": 5019
|
|
4223
4295
|
},
|
|
4224
4296
|
"end": {
|
|
4225
|
-
"line":
|
|
4226
|
-
"column":
|
|
4227
|
-
"index":
|
|
4297
|
+
"line": 170,
|
|
4298
|
+
"column": 68,
|
|
4299
|
+
"index": 5074
|
|
4228
4300
|
}
|
|
4229
4301
|
},
|
|
4230
|
-
"filepath": "src/components/date_picker/super_date_picker/
|
|
4302
|
+
"filepath": "src/components/date_picker/super_date_picker/time_options.tsx"
|
|
4231
4303
|
},
|
|
4232
4304
|
{
|
|
4233
4305
|
"token": "euiSuperUpdateButton.updatingButtonLabel",
|
|
@@ -4919,14 +4991,14 @@
|
|
|
4919
4991
|
"highlighting": "string",
|
|
4920
4992
|
"loc": {
|
|
4921
4993
|
"start": {
|
|
4922
|
-
"line":
|
|
4994
|
+
"line": 207,
|
|
4923
4995
|
"column": 6,
|
|
4924
|
-
"index":
|
|
4996
|
+
"index": 5780
|
|
4925
4997
|
},
|
|
4926
4998
|
"end": {
|
|
4927
|
-
"line":
|
|
4999
|
+
"line": 214,
|
|
4928
5000
|
"column": 8,
|
|
4929
|
-
"index":
|
|
5001
|
+
"index": 6010
|
|
4930
5002
|
}
|
|
4931
5003
|
},
|
|
4932
5004
|
"filepath": "src/components/date_picker/auto_refresh/refresh_interval.tsx"
|
|
@@ -4937,14 +5009,14 @@
|
|
|
4937
5009
|
"highlighting": "string",
|
|
4938
5010
|
"loc": {
|
|
4939
5011
|
"start": {
|
|
4940
|
-
"line":
|
|
5012
|
+
"line": 216,
|
|
4941
5013
|
"column": 6,
|
|
4942
|
-
"index":
|
|
5014
|
+
"index": 6027
|
|
4943
5015
|
},
|
|
4944
5016
|
"end": {
|
|
4945
|
-
"line":
|
|
5017
|
+
"line": 223,
|
|
4946
5018
|
"column": 8,
|
|
4947
|
-
"index":
|
|
5019
|
+
"index": 6255
|
|
4948
5020
|
}
|
|
4949
5021
|
},
|
|
4950
5022
|
"filepath": "src/components/date_picker/auto_refresh/refresh_interval.tsx"
|
|
@@ -4955,14 +5027,14 @@
|
|
|
4955
5027
|
"highlighting": "string",
|
|
4956
5028
|
"loc": {
|
|
4957
5029
|
"start": {
|
|
4958
|
-
"line":
|
|
4959
|
-
"column":
|
|
4960
|
-
"index":
|
|
5030
|
+
"line": 236,
|
|
5031
|
+
"column": 4,
|
|
5032
|
+
"index": 6459
|
|
4961
5033
|
},
|
|
4962
5034
|
"end": {
|
|
4963
|
-
"line":
|
|
4964
|
-
"column":
|
|
4965
|
-
"index":
|
|
5035
|
+
"line": 249,
|
|
5036
|
+
"column": 5,
|
|
5037
|
+
"index": 6822
|
|
4966
5038
|
}
|
|
4967
5039
|
},
|
|
4968
5040
|
"filepath": "src/components/date_picker/auto_refresh/refresh_interval.tsx"
|
|
@@ -4973,14 +5045,14 @@
|
|
|
4973
5045
|
"highlighting": "string",
|
|
4974
5046
|
"loc": {
|
|
4975
5047
|
"start": {
|
|
4976
|
-
"line":
|
|
4977
|
-
"column":
|
|
4978
|
-
"index":
|
|
5048
|
+
"line": 236,
|
|
5049
|
+
"column": 4,
|
|
5050
|
+
"index": 6459
|
|
4979
5051
|
},
|
|
4980
5052
|
"end": {
|
|
4981
|
-
"line":
|
|
4982
|
-
"column":
|
|
4983
|
-
"index":
|
|
5053
|
+
"line": 249,
|
|
5054
|
+
"column": 5,
|
|
5055
|
+
"index": 6822
|
|
4984
5056
|
}
|
|
4985
5057
|
},
|
|
4986
5058
|
"filepath": "src/components/date_picker/auto_refresh/refresh_interval.tsx"
|
|
@@ -4991,14 +5063,14 @@
|
|
|
4991
5063
|
"highlighting": "string",
|
|
4992
5064
|
"loc": {
|
|
4993
5065
|
"start": {
|
|
4994
|
-
"line":
|
|
4995
|
-
"column":
|
|
4996
|
-
"index":
|
|
5066
|
+
"line": 236,
|
|
5067
|
+
"column": 4,
|
|
5068
|
+
"index": 6459
|
|
4997
5069
|
},
|
|
4998
5070
|
"end": {
|
|
4999
|
-
"line":
|
|
5000
|
-
"column":
|
|
5001
|
-
"index":
|
|
5071
|
+
"line": 249,
|
|
5072
|
+
"column": 5,
|
|
5073
|
+
"index": 6822
|
|
5002
5074
|
}
|
|
5003
5075
|
},
|
|
5004
5076
|
"filepath": "src/components/date_picker/auto_refresh/refresh_interval.tsx"
|
|
@@ -5009,14 +5081,14 @@
|
|
|
5009
5081
|
"highlighting": "string",
|
|
5010
5082
|
"loc": {
|
|
5011
5083
|
"start": {
|
|
5012
|
-
"line":
|
|
5013
|
-
"column":
|
|
5014
|
-
"index":
|
|
5084
|
+
"line": 236,
|
|
5085
|
+
"column": 4,
|
|
5086
|
+
"index": 6459
|
|
5015
5087
|
},
|
|
5016
5088
|
"end": {
|
|
5017
|
-
"line":
|
|
5018
|
-
"column":
|
|
5019
|
-
"index":
|
|
5089
|
+
"line": 249,
|
|
5090
|
+
"column": 5,
|
|
5091
|
+
"index": 6822
|
|
5020
5092
|
}
|
|
5021
5093
|
},
|
|
5022
5094
|
"filepath": "src/components/date_picker/auto_refresh/refresh_interval.tsx"
|
|
@@ -5027,14 +5099,14 @@
|
|
|
5027
5099
|
"highlighting": "string",
|
|
5028
5100
|
"loc": {
|
|
5029
5101
|
"start": {
|
|
5030
|
-
"line":
|
|
5102
|
+
"line": 51,
|
|
5031
5103
|
"column": 26,
|
|
5032
|
-
"index":
|
|
5104
|
+
"index": 1720
|
|
5033
5105
|
},
|
|
5034
5106
|
"end": {
|
|
5035
|
-
"line":
|
|
5107
|
+
"line": 54,
|
|
5036
5108
|
"column": 3,
|
|
5037
|
-
"index":
|
|
5109
|
+
"index": 1793
|
|
5038
5110
|
}
|
|
5039
5111
|
},
|
|
5040
5112
|
"filepath": "src/components/date_picker/auto_refresh/auto_refresh.tsx"
|
|
@@ -5045,14 +5117,14 @@
|
|
|
5045
5117
|
"highlighting": "string",
|
|
5046
5118
|
"loc": {
|
|
5047
5119
|
"start": {
|
|
5048
|
-
"line":
|
|
5120
|
+
"line": 126,
|
|
5049
5121
|
"column": 29,
|
|
5050
|
-
"index":
|
|
5122
|
+
"index": 3683
|
|
5051
5123
|
},
|
|
5052
5124
|
"end": {
|
|
5053
|
-
"line":
|
|
5125
|
+
"line": 129,
|
|
5054
5126
|
"column": 3,
|
|
5055
|
-
"index":
|
|
5127
|
+
"index": 3761
|
|
5056
5128
|
}
|
|
5057
5129
|
},
|
|
5058
5130
|
"filepath": "src/components/date_picker/auto_refresh/auto_refresh.tsx"
|
|
@@ -5063,54 +5135,18 @@
|
|
|
5063
5135
|
"highlighting": "string",
|
|
5064
5136
|
"loc": {
|
|
5065
5137
|
"start": {
|
|
5066
|
-
"line":
|
|
5138
|
+
"line": 130,
|
|
5067
5139
|
"column": 28,
|
|
5068
|
-
"index":
|
|
5140
|
+
"index": 3791
|
|
5069
5141
|
},
|
|
5070
5142
|
"end": {
|
|
5071
|
-
"line":
|
|
5143
|
+
"line": 138,
|
|
5072
5144
|
"column": 3,
|
|
5073
|
-
"index":
|
|
5145
|
+
"index": 4025
|
|
5074
5146
|
}
|
|
5075
5147
|
},
|
|
5076
5148
|
"filepath": "src/components/date_picker/auto_refresh/auto_refresh.tsx"
|
|
5077
5149
|
},
|
|
5078
|
-
{
|
|
5079
|
-
"token": "euiDataGridPagination.detailedPaginationLabel",
|
|
5080
|
-
"defString": "Pagination for preceding grid: {label}",
|
|
5081
|
-
"highlighting": "string",
|
|
5082
|
-
"loc": {
|
|
5083
|
-
"start": {
|
|
5084
|
-
"line": 51,
|
|
5085
|
-
"column": 34,
|
|
5086
|
-
"index": 1785
|
|
5087
|
-
},
|
|
5088
|
-
"end": {
|
|
5089
|
-
"line": 55,
|
|
5090
|
-
"column": 3,
|
|
5091
|
-
"index": 1930
|
|
5092
|
-
}
|
|
5093
|
-
},
|
|
5094
|
-
"filepath": "src/components/datagrid/pagination/data_grid_pagination.tsx"
|
|
5095
|
-
},
|
|
5096
|
-
{
|
|
5097
|
-
"token": "euiDataGridPagination.paginationLabel",
|
|
5098
|
-
"defString": "Pagination for preceding grid",
|
|
5099
|
-
"highlighting": "string",
|
|
5100
|
-
"loc": {
|
|
5101
|
-
"start": {
|
|
5102
|
-
"line": 56,
|
|
5103
|
-
"column": 26,
|
|
5104
|
-
"index": 1958
|
|
5105
|
-
},
|
|
5106
|
-
"end": {
|
|
5107
|
-
"line": 59,
|
|
5108
|
-
"column": 3,
|
|
5109
|
-
"index": 2054
|
|
5110
|
-
}
|
|
5111
|
-
},
|
|
5112
|
-
"filepath": "src/components/datagrid/pagination/data_grid_pagination.tsx"
|
|
5113
|
-
},
|
|
5114
5150
|
{
|
|
5115
5151
|
"token": "euiDataGridSchema.booleanSortTextAsc",
|
|
5116
5152
|
"defString": "False-True",
|
|
@@ -5291,6 +5327,42 @@
|
|
|
5291
5327
|
},
|
|
5292
5328
|
"filepath": "src/components/datagrid/utils/data_grid_schema.tsx"
|
|
5293
5329
|
},
|
|
5330
|
+
{
|
|
5331
|
+
"token": "euiDataGridPagination.detailedPaginationLabel",
|
|
5332
|
+
"defString": "Pagination for preceding grid: {label}",
|
|
5333
|
+
"highlighting": "string",
|
|
5334
|
+
"loc": {
|
|
5335
|
+
"start": {
|
|
5336
|
+
"line": 51,
|
|
5337
|
+
"column": 34,
|
|
5338
|
+
"index": 1785
|
|
5339
|
+
},
|
|
5340
|
+
"end": {
|
|
5341
|
+
"line": 55,
|
|
5342
|
+
"column": 3,
|
|
5343
|
+
"index": 1930
|
|
5344
|
+
}
|
|
5345
|
+
},
|
|
5346
|
+
"filepath": "src/components/datagrid/pagination/data_grid_pagination.tsx"
|
|
5347
|
+
},
|
|
5348
|
+
{
|
|
5349
|
+
"token": "euiDataGridPagination.paginationLabel",
|
|
5350
|
+
"defString": "Pagination for preceding grid",
|
|
5351
|
+
"highlighting": "string",
|
|
5352
|
+
"loc": {
|
|
5353
|
+
"start": {
|
|
5354
|
+
"line": 56,
|
|
5355
|
+
"column": 26,
|
|
5356
|
+
"index": 1958
|
|
5357
|
+
},
|
|
5358
|
+
"end": {
|
|
5359
|
+
"line": 59,
|
|
5360
|
+
"column": 3,
|
|
5361
|
+
"index": 2054
|
|
5362
|
+
}
|
|
5363
|
+
},
|
|
5364
|
+
"filepath": "src/components/datagrid/pagination/data_grid_pagination.tsx"
|
|
5365
|
+
},
|
|
5294
5366
|
{
|
|
5295
5367
|
"token": "euiKeyboardShortcuts.title",
|
|
5296
5368
|
"defString": "Keyboard shortcuts",
|
|
@@ -5317,12 +5389,12 @@
|
|
|
5317
5389
|
"start": {
|
|
5318
5390
|
"line": 70,
|
|
5319
5391
|
"column": 20,
|
|
5320
|
-
"index":
|
|
5392
|
+
"index": 2433
|
|
5321
5393
|
},
|
|
5322
5394
|
"end": {
|
|
5323
5395
|
"line": 73,
|
|
5324
5396
|
"column": 22,
|
|
5325
|
-
"index":
|
|
5397
|
+
"index": 2569
|
|
5326
5398
|
}
|
|
5327
5399
|
},
|
|
5328
5400
|
"filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
|
|
@@ -5335,12 +5407,12 @@
|
|
|
5335
5407
|
"start": {
|
|
5336
5408
|
"line": 77,
|
|
5337
5409
|
"column": 18,
|
|
5338
|
-
"index":
|
|
5410
|
+
"index": 2663
|
|
5339
5411
|
},
|
|
5340
5412
|
"end": {
|
|
5341
5413
|
"line": 80,
|
|
5342
5414
|
"column": 20,
|
|
5343
|
-
"index":
|
|
5415
|
+
"index": 2807
|
|
5344
5416
|
}
|
|
5345
5417
|
},
|
|
5346
5418
|
"filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
|
|
@@ -5353,12 +5425,12 @@
|
|
|
5353
5425
|
"start": {
|
|
5354
5426
|
"line": 86,
|
|
5355
5427
|
"column": 20,
|
|
5356
|
-
"index":
|
|
5428
|
+
"index": 2929
|
|
5357
5429
|
},
|
|
5358
5430
|
"end": {
|
|
5359
5431
|
"line": 89,
|
|
5360
5432
|
"column": 22,
|
|
5361
|
-
"index":
|
|
5433
|
+
"index": 3069
|
|
5362
5434
|
}
|
|
5363
5435
|
},
|
|
5364
5436
|
"filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
|
|
@@ -5371,12 +5443,12 @@
|
|
|
5371
5443
|
"start": {
|
|
5372
5444
|
"line": 93,
|
|
5373
5445
|
"column": 18,
|
|
5374
|
-
"index":
|
|
5446
|
+
"index": 3163
|
|
5375
5447
|
},
|
|
5376
5448
|
"end": {
|
|
5377
5449
|
"line": 96,
|
|
5378
5450
|
"column": 20,
|
|
5379
|
-
"index":
|
|
5451
|
+
"index": 3311
|
|
5380
5452
|
}
|
|
5381
5453
|
},
|
|
5382
5454
|
"filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
|
|
@@ -5389,12 +5461,12 @@
|
|
|
5389
5461
|
"start": {
|
|
5390
5462
|
"line": 102,
|
|
5391
5463
|
"column": 20,
|
|
5392
|
-
"index":
|
|
5464
|
+
"index": 3433
|
|
5393
5465
|
},
|
|
5394
5466
|
"end": {
|
|
5395
5467
|
"line": 105,
|
|
5396
5468
|
"column": 22,
|
|
5397
|
-
"index":
|
|
5469
|
+
"index": 3575
|
|
5398
5470
|
}
|
|
5399
5471
|
},
|
|
5400
5472
|
"filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
|
|
@@ -5407,12 +5479,12 @@
|
|
|
5407
5479
|
"start": {
|
|
5408
5480
|
"line": 109,
|
|
5409
5481
|
"column": 18,
|
|
5410
|
-
"index":
|
|
5482
|
+
"index": 3669
|
|
5411
5483
|
},
|
|
5412
5484
|
"end": {
|
|
5413
5485
|
"line": 112,
|
|
5414
5486
|
"column": 20,
|
|
5415
|
-
"index":
|
|
5487
|
+
"index": 3819
|
|
5416
5488
|
}
|
|
5417
5489
|
},
|
|
5418
5490
|
"filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
|
|
@@ -5425,12 +5497,12 @@
|
|
|
5425
5497
|
"start": {
|
|
5426
5498
|
"line": 118,
|
|
5427
5499
|
"column": 20,
|
|
5428
|
-
"index":
|
|
5500
|
+
"index": 3941
|
|
5429
5501
|
},
|
|
5430
5502
|
"end": {
|
|
5431
5503
|
"line": 121,
|
|
5432
5504
|
"column": 22,
|
|
5433
|
-
"index":
|
|
5505
|
+
"index": 4081
|
|
5434
5506
|
}
|
|
5435
5507
|
},
|
|
5436
5508
|
"filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
|
|
@@ -5443,12 +5515,12 @@
|
|
|
5443
5515
|
"start": {
|
|
5444
5516
|
"line": 125,
|
|
5445
5517
|
"column": 18,
|
|
5446
|
-
"index":
|
|
5518
|
+
"index": 4175
|
|
5447
5519
|
},
|
|
5448
5520
|
"end": {
|
|
5449
5521
|
"line": 128,
|
|
5450
5522
|
"column": 20,
|
|
5451
|
-
"index":
|
|
5523
|
+
"index": 4323
|
|
5452
5524
|
}
|
|
5453
5525
|
},
|
|
5454
5526
|
"filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
|
|
@@ -5461,12 +5533,12 @@
|
|
|
5461
5533
|
"start": {
|
|
5462
5534
|
"line": 134,
|
|
5463
5535
|
"column": 20,
|
|
5464
|
-
"index":
|
|
5536
|
+
"index": 4445
|
|
5465
5537
|
},
|
|
5466
5538
|
"end": {
|
|
5467
5539
|
"line": 137,
|
|
5468
5540
|
"column": 22,
|
|
5469
|
-
"index":
|
|
5541
|
+
"index": 4574
|
|
5470
5542
|
}
|
|
5471
5543
|
},
|
|
5472
5544
|
"filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
|
|
@@ -5479,12 +5551,12 @@
|
|
|
5479
5551
|
"start": {
|
|
5480
5552
|
"line": 141,
|
|
5481
5553
|
"column": 18,
|
|
5482
|
-
"index":
|
|
5554
|
+
"index": 4668
|
|
5483
5555
|
},
|
|
5484
5556
|
"end": {
|
|
5485
5557
|
"line": 144,
|
|
5486
5558
|
"column": 20,
|
|
5487
|
-
"index":
|
|
5559
|
+
"index": 4834
|
|
5488
5560
|
}
|
|
5489
5561
|
},
|
|
5490
5562
|
"filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
|
|
@@ -5497,12 +5569,12 @@
|
|
|
5497
5569
|
"start": {
|
|
5498
5570
|
"line": 150,
|
|
5499
5571
|
"column": 20,
|
|
5500
|
-
"index":
|
|
5572
|
+
"index": 4956
|
|
5501
5573
|
},
|
|
5502
5574
|
"end": {
|
|
5503
5575
|
"line": 153,
|
|
5504
5576
|
"column": 22,
|
|
5505
|
-
"index":
|
|
5577
|
+
"index": 5083
|
|
5506
5578
|
}
|
|
5507
5579
|
},
|
|
5508
5580
|
"filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
|
|
@@ -5515,12 +5587,12 @@
|
|
|
5515
5587
|
"start": {
|
|
5516
5588
|
"line": 157,
|
|
5517
5589
|
"column": 18,
|
|
5518
|
-
"index":
|
|
5590
|
+
"index": 5177
|
|
5519
5591
|
},
|
|
5520
5592
|
"end": {
|
|
5521
5593
|
"line": 160,
|
|
5522
5594
|
"column": 20,
|
|
5523
|
-
"index":
|
|
5595
|
+
"index": 5341
|
|
5524
5596
|
}
|
|
5525
5597
|
},
|
|
5526
5598
|
"filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
|
|
@@ -5533,12 +5605,12 @@
|
|
|
5533
5605
|
"start": {
|
|
5534
5606
|
"line": 167,
|
|
5535
5607
|
"column": 22,
|
|
5536
|
-
"index":
|
|
5608
|
+
"index": 5488
|
|
5537
5609
|
},
|
|
5538
5610
|
"end": {
|
|
5539
5611
|
"line": 170,
|
|
5540
5612
|
"column": 24,
|
|
5541
|
-
"index":
|
|
5613
|
+
"index": 5618
|
|
5542
5614
|
}
|
|
5543
5615
|
},
|
|
5544
5616
|
"filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
|
|
@@ -5551,12 +5623,12 @@
|
|
|
5551
5623
|
"start": {
|
|
5552
5624
|
"line": 173,
|
|
5553
5625
|
"column": 22,
|
|
5554
|
-
"index":
|
|
5626
|
+
"index": 5699
|
|
5555
5627
|
},
|
|
5556
5628
|
"end": {
|
|
5557
5629
|
"line": 176,
|
|
5558
5630
|
"column": 24,
|
|
5559
|
-
"index":
|
|
5631
|
+
"index": 5834
|
|
5560
5632
|
}
|
|
5561
5633
|
},
|
|
5562
5634
|
"filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
|
|
@@ -5569,12 +5641,12 @@
|
|
|
5569
5641
|
"start": {
|
|
5570
5642
|
"line": 181,
|
|
5571
5643
|
"column": 18,
|
|
5572
|
-
"index":
|
|
5644
|
+
"index": 5952
|
|
5573
5645
|
},
|
|
5574
5646
|
"end": {
|
|
5575
5647
|
"line": 184,
|
|
5576
5648
|
"column": 20,
|
|
5577
|
-
"index":
|
|
5649
|
+
"index": 6123
|
|
5578
5650
|
}
|
|
5579
5651
|
},
|
|
5580
5652
|
"filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
|
|
@@ -5587,12 +5659,12 @@
|
|
|
5587
5659
|
"start": {
|
|
5588
5660
|
"line": 191,
|
|
5589
5661
|
"column": 22,
|
|
5590
|
-
"index":
|
|
5662
|
+
"index": 6270
|
|
5591
5663
|
},
|
|
5592
5664
|
"end": {
|
|
5593
5665
|
"line": 194,
|
|
5594
5666
|
"column": 24,
|
|
5595
|
-
"index":
|
|
5667
|
+
"index": 6400
|
|
5596
5668
|
}
|
|
5597
5669
|
},
|
|
5598
5670
|
"filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
|
|
@@ -5605,12 +5677,12 @@
|
|
|
5605
5677
|
"start": {
|
|
5606
5678
|
"line": 197,
|
|
5607
5679
|
"column": 22,
|
|
5608
|
-
"index":
|
|
5680
|
+
"index": 6481
|
|
5609
5681
|
},
|
|
5610
5682
|
"end": {
|
|
5611
5683
|
"line": 200,
|
|
5612
5684
|
"column": 24,
|
|
5613
|
-
"index":
|
|
5685
|
+
"index": 6614
|
|
5614
5686
|
}
|
|
5615
5687
|
},
|
|
5616
5688
|
"filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
|
|
@@ -5623,12 +5695,12 @@
|
|
|
5623
5695
|
"start": {
|
|
5624
5696
|
"line": 205,
|
|
5625
5697
|
"column": 18,
|
|
5626
|
-
"index":
|
|
5698
|
+
"index": 6732
|
|
5627
5699
|
},
|
|
5628
5700
|
"end": {
|
|
5629
5701
|
"line": 208,
|
|
5630
5702
|
"column": 20,
|
|
5631
|
-
"index":
|
|
5703
|
+
"index": 6901
|
|
5632
5704
|
}
|
|
5633
5705
|
},
|
|
5634
5706
|
"filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
|
|
@@ -5641,12 +5713,12 @@
|
|
|
5641
5713
|
"start": {
|
|
5642
5714
|
"line": 214,
|
|
5643
5715
|
"column": 20,
|
|
5644
|
-
"index":
|
|
5716
|
+
"index": 7023
|
|
5645
5717
|
},
|
|
5646
5718
|
"end": {
|
|
5647
5719
|
"line": 217,
|
|
5648
5720
|
"column": 22,
|
|
5649
|
-
"index":
|
|
5721
|
+
"index": 7157
|
|
5650
5722
|
}
|
|
5651
5723
|
},
|
|
5652
5724
|
"filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
|
|
@@ -5659,12 +5731,12 @@
|
|
|
5659
5731
|
"start": {
|
|
5660
5732
|
"line": 221,
|
|
5661
5733
|
"column": 18,
|
|
5662
|
-
"index":
|
|
5734
|
+
"index": 7251
|
|
5663
5735
|
},
|
|
5664
5736
|
"end": {
|
|
5665
5737
|
"line": 224,
|
|
5666
5738
|
"column": 20,
|
|
5667
|
-
"index":
|
|
5739
|
+
"index": 7417
|
|
5668
5740
|
}
|
|
5669
5741
|
},
|
|
5670
5742
|
"filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
|
|
@@ -5677,12 +5749,12 @@
|
|
|
5677
5749
|
"start": {
|
|
5678
5750
|
"line": 230,
|
|
5679
5751
|
"column": 20,
|
|
5680
|
-
"index":
|
|
5752
|
+
"index": 7539
|
|
5681
5753
|
},
|
|
5682
5754
|
"end": {
|
|
5683
5755
|
"line": 233,
|
|
5684
5756
|
"column": 22,
|
|
5685
|
-
"index":
|
|
5757
|
+
"index": 7677
|
|
5686
5758
|
}
|
|
5687
5759
|
},
|
|
5688
5760
|
"filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
|
|
@@ -5695,12 +5767,12 @@
|
|
|
5695
5767
|
"start": {
|
|
5696
5768
|
"line": 237,
|
|
5697
5769
|
"column": 18,
|
|
5698
|
-
"index":
|
|
5770
|
+
"index": 7771
|
|
5699
5771
|
},
|
|
5700
5772
|
"end": {
|
|
5701
5773
|
"line": 240,
|
|
5702
5774
|
"column": 20,
|
|
5703
|
-
"index":
|
|
5775
|
+
"index": 7936
|
|
5704
5776
|
}
|
|
5705
5777
|
},
|
|
5706
5778
|
"filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
|
|
@@ -5713,12 +5785,12 @@
|
|
|
5713
5785
|
"start": {
|
|
5714
5786
|
"line": 246,
|
|
5715
5787
|
"column": 20,
|
|
5716
|
-
"index":
|
|
5788
|
+
"index": 8058
|
|
5717
5789
|
},
|
|
5718
5790
|
"end": {
|
|
5719
5791
|
"line": 249,
|
|
5720
5792
|
"column": 22,
|
|
5721
|
-
"index":
|
|
5793
|
+
"index": 8189
|
|
5722
5794
|
}
|
|
5723
5795
|
},
|
|
5724
5796
|
"filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
|
|
@@ -5731,12 +5803,12 @@
|
|
|
5731
5803
|
"start": {
|
|
5732
5804
|
"line": 253,
|
|
5733
5805
|
"column": 18,
|
|
5734
|
-
"index":
|
|
5806
|
+
"index": 8283
|
|
5735
5807
|
},
|
|
5736
5808
|
"end": {
|
|
5737
5809
|
"line": 256,
|
|
5738
5810
|
"column": 20,
|
|
5739
|
-
"index":
|
|
5811
|
+
"index": 8438
|
|
5740
5812
|
}
|
|
5741
5813
|
},
|
|
5742
5814
|
"filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
|
|
@@ -5749,12 +5821,12 @@
|
|
|
5749
5821
|
"start": {
|
|
5750
5822
|
"line": 262,
|
|
5751
5823
|
"column": 20,
|
|
5752
|
-
"index":
|
|
5824
|
+
"index": 8560
|
|
5753
5825
|
},
|
|
5754
5826
|
"end": {
|
|
5755
5827
|
"line": 265,
|
|
5756
5828
|
"column": 22,
|
|
5757
|
-
"index":
|
|
5829
|
+
"index": 8693
|
|
5758
5830
|
}
|
|
5759
5831
|
},
|
|
5760
5832
|
"filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
|
|
@@ -5767,12 +5839,12 @@
|
|
|
5767
5839
|
"start": {
|
|
5768
5840
|
"line": 269,
|
|
5769
5841
|
"column": 18,
|
|
5770
|
-
"index":
|
|
5842
|
+
"index": 8787
|
|
5771
5843
|
},
|
|
5772
5844
|
"end": {
|
|
5773
5845
|
"line": 272,
|
|
5774
5846
|
"column": 20,
|
|
5775
|
-
"index":
|
|
5847
|
+
"index": 8944
|
|
5776
5848
|
}
|
|
5777
5849
|
},
|
|
5778
5850
|
"filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
|
|
@@ -5983,12 +6055,12 @@
|
|
|
5983
6055
|
"start": {
|
|
5984
6056
|
"line": 472,
|
|
5985
6057
|
"column": 27,
|
|
5986
|
-
"index":
|
|
6058
|
+
"index": 14026
|
|
5987
6059
|
},
|
|
5988
6060
|
"end": {
|
|
5989
6061
|
"line": 475,
|
|
5990
6062
|
"column": 3,
|
|
5991
|
-
"index":
|
|
6063
|
+
"index": 14106
|
|
5992
6064
|
}
|
|
5993
6065
|
},
|
|
5994
6066
|
"filepath": "src/components/datagrid/controls/display_selector.tsx"
|
|
@@ -6323,14 +6395,14 @@
|
|
|
6323
6395
|
"highlighting": "string",
|
|
6324
6396
|
"loc": {
|
|
6325
6397
|
"start": {
|
|
6326
|
-
"line":
|
|
6398
|
+
"line": 447,
|
|
6327
6399
|
"column": 12,
|
|
6328
|
-
"index":
|
|
6400
|
+
"index": 13207
|
|
6329
6401
|
},
|
|
6330
6402
|
"end": {
|
|
6331
|
-
"line":
|
|
6403
|
+
"line": 450,
|
|
6332
6404
|
"column": 14,
|
|
6333
|
-
"index":
|
|
6405
|
+
"index": 13330
|
|
6334
6406
|
}
|
|
6335
6407
|
},
|
|
6336
6408
|
"filepath": "src/components/combo_box/combo_box_options_list/combo_box_options_list.tsx"
|
|
@@ -6341,14 +6413,14 @@
|
|
|
6341
6413
|
"highlighting": "string",
|
|
6342
6414
|
"loc": {
|
|
6343
6415
|
"start": {
|
|
6344
|
-
"line":
|
|
6416
|
+
"line": 460,
|
|
6345
6417
|
"column": 16,
|
|
6346
|
-
"index":
|
|
6418
|
+
"index": 13769
|
|
6347
6419
|
},
|
|
6348
6420
|
"end": {
|
|
6349
|
-
"line":
|
|
6421
|
+
"line": 464,
|
|
6350
6422
|
"column": 18,
|
|
6351
|
-
"index":
|
|
6423
|
+
"index": 14000
|
|
6352
6424
|
}
|
|
6353
6425
|
},
|
|
6354
6426
|
"filepath": "src/components/combo_box/combo_box_options_list/combo_box_options_list.tsx"
|
|
@@ -6359,14 +6431,14 @@
|
|
|
6359
6431
|
"highlighting": "string",
|
|
6360
6432
|
"loc": {
|
|
6361
6433
|
"start": {
|
|
6362
|
-
"line":
|
|
6434
|
+
"line": 479,
|
|
6363
6435
|
"column": 16,
|
|
6364
|
-
"index":
|
|
6436
|
+
"index": 14429
|
|
6365
6437
|
},
|
|
6366
6438
|
"end": {
|
|
6367
|
-
"line":
|
|
6439
|
+
"line": 485,
|
|
6368
6440
|
"column": 18,
|
|
6369
|
-
"index":
|
|
6441
|
+
"index": 14702
|
|
6370
6442
|
}
|
|
6371
6443
|
},
|
|
6372
6444
|
"filepath": "src/components/combo_box/combo_box_options_list/combo_box_options_list.tsx"
|
|
@@ -6377,14 +6449,14 @@
|
|
|
6377
6449
|
"highlighting": "string",
|
|
6378
6450
|
"loc": {
|
|
6379
6451
|
"start": {
|
|
6380
|
-
"line":
|
|
6452
|
+
"line": 514,
|
|
6381
6453
|
"column": 20,
|
|
6382
|
-
"index":
|
|
6454
|
+
"index": 15693
|
|
6383
6455
|
},
|
|
6384
6456
|
"end": {
|
|
6385
|
-
"line":
|
|
6457
|
+
"line": 520,
|
|
6386
6458
|
"column": 22,
|
|
6387
|
-
"index":
|
|
6459
|
+
"index": 15991
|
|
6388
6460
|
}
|
|
6389
6461
|
},
|
|
6390
6462
|
"filepath": "src/components/combo_box/combo_box_options_list/combo_box_options_list.tsx"
|
|
@@ -6395,14 +6467,14 @@
|
|
|
6395
6467
|
"highlighting": "string",
|
|
6396
6468
|
"loc": {
|
|
6397
6469
|
"start": {
|
|
6398
|
-
"line":
|
|
6470
|
+
"line": 531,
|
|
6399
6471
|
"column": 12,
|
|
6400
|
-
"index":
|
|
6472
|
+
"index": 16195
|
|
6401
6473
|
},
|
|
6402
6474
|
"end": {
|
|
6403
|
-
"line":
|
|
6475
|
+
"line": 535,
|
|
6404
6476
|
"column": 14,
|
|
6405
|
-
"index":
|
|
6477
|
+
"index": 16416
|
|
6406
6478
|
}
|
|
6407
6479
|
},
|
|
6408
6480
|
"filepath": "src/components/combo_box/combo_box_options_list/combo_box_options_list.tsx"
|
|
@@ -6413,14 +6485,14 @@
|
|
|
6413
6485
|
"highlighting": "string",
|
|
6414
6486
|
"loc": {
|
|
6415
6487
|
"start": {
|
|
6416
|
-
"line":
|
|
6488
|
+
"line": 542,
|
|
6417
6489
|
"column": 10,
|
|
6418
|
-
"index":
|
|
6490
|
+
"index": 16535
|
|
6419
6491
|
},
|
|
6420
6492
|
"end": {
|
|
6421
|
-
"line":
|
|
6493
|
+
"line": 545,
|
|
6422
6494
|
"column": 12,
|
|
6423
|
-
"index":
|
|
6495
|
+
"index": 16675
|
|
6424
6496
|
}
|
|
6425
6497
|
},
|
|
6426
6498
|
"filepath": "src/components/combo_box/combo_box_options_list/combo_box_options_list.tsx"
|
|
@@ -6431,14 +6503,14 @@
|
|
|
6431
6503
|
"highlighting": "string",
|
|
6432
6504
|
"loc": {
|
|
6433
6505
|
"start": {
|
|
6434
|
-
"line":
|
|
6506
|
+
"line": 551,
|
|
6435
6507
|
"column": 10,
|
|
6436
|
-
"index":
|
|
6508
|
+
"index": 16788
|
|
6437
6509
|
},
|
|
6438
6510
|
"end": {
|
|
6439
|
-
"line":
|
|
6511
|
+
"line": 554,
|
|
6440
6512
|
"column": 12,
|
|
6441
|
-
"index":
|
|
6513
|
+
"index": 16931
|
|
6442
6514
|
}
|
|
6443
6515
|
},
|
|
6444
6516
|
"filepath": "src/components/combo_box/combo_box_options_list/combo_box_options_list.tsx"
|
|
@@ -6683,36 +6755,18 @@
|
|
|
6683
6755
|
"highlighting": "string",
|
|
6684
6756
|
"loc": {
|
|
6685
6757
|
"start": {
|
|
6686
|
-
"line":
|
|
6758
|
+
"line": 97,
|
|
6687
6759
|
"column": 22,
|
|
6688
|
-
"index":
|
|
6760
|
+
"index": 3258
|
|
6689
6761
|
},
|
|
6690
6762
|
"end": {
|
|
6691
|
-
"line":
|
|
6763
|
+
"line": 100,
|
|
6692
6764
|
"column": 3,
|
|
6693
|
-
"index":
|
|
6765
|
+
"index": 3338
|
|
6694
6766
|
}
|
|
6695
6767
|
},
|
|
6696
6768
|
"filepath": "src/components/date_picker/super_date_picker/quick_select_popover/quick_select_popover.tsx"
|
|
6697
6769
|
},
|
|
6698
|
-
{
|
|
6699
|
-
"token": "euiCommonlyUsedTimeRanges.legend",
|
|
6700
|
-
"defString": "Commonly used",
|
|
6701
|
-
"highlighting": "string",
|
|
6702
|
-
"loc": {
|
|
6703
|
-
"start": {
|
|
6704
|
-
"line": 27,
|
|
6705
|
-
"column": 16,
|
|
6706
|
-
"index": 995
|
|
6707
|
-
},
|
|
6708
|
-
"end": {
|
|
6709
|
-
"line": 27,
|
|
6710
|
-
"column": 79,
|
|
6711
|
-
"index": 1058
|
|
6712
|
-
}
|
|
6713
|
-
},
|
|
6714
|
-
"filepath": "src/components/date_picker/super_date_picker/quick_select_popover/commonly_used_time_ranges.tsx"
|
|
6715
|
-
},
|
|
6716
6770
|
{
|
|
6717
6771
|
"token": "euiQuickSelect.quickSelectTitle",
|
|
6718
6772
|
"defString": "Quick select",
|
|
@@ -6857,6 +6911,24 @@
|
|
|
6857
6911
|
},
|
|
6858
6912
|
"filepath": "src/components/date_picker/super_date_picker/quick_select_popover/quick_select.tsx"
|
|
6859
6913
|
},
|
|
6914
|
+
{
|
|
6915
|
+
"token": "euiCommonlyUsedTimeRanges.legend",
|
|
6916
|
+
"defString": "Commonly used",
|
|
6917
|
+
"highlighting": "string",
|
|
6918
|
+
"loc": {
|
|
6919
|
+
"start": {
|
|
6920
|
+
"line": 27,
|
|
6921
|
+
"column": 16,
|
|
6922
|
+
"index": 995
|
|
6923
|
+
},
|
|
6924
|
+
"end": {
|
|
6925
|
+
"line": 27,
|
|
6926
|
+
"column": 79,
|
|
6927
|
+
"index": 1058
|
|
6928
|
+
}
|
|
6929
|
+
},
|
|
6930
|
+
"filepath": "src/components/date_picker/super_date_picker/quick_select_popover/commonly_used_time_ranges.tsx"
|
|
6931
|
+
},
|
|
6860
6932
|
{
|
|
6861
6933
|
"token": "euiRelativeTab.numberInputLabel",
|
|
6862
6934
|
"defString": "Time span amount",
|
|
@@ -7097,14 +7169,14 @@
|
|
|
7097
7169
|
"highlighting": "string",
|
|
7098
7170
|
"loc": {
|
|
7099
7171
|
"start": {
|
|
7100
|
-
"line":
|
|
7172
|
+
"line": 108,
|
|
7101
7173
|
"column": 23,
|
|
7102
|
-
"index":
|
|
7174
|
+
"index": 3102
|
|
7103
7175
|
},
|
|
7104
7176
|
"end": {
|
|
7105
|
-
"line":
|
|
7177
|
+
"line": 112,
|
|
7106
7178
|
"column": 3,
|
|
7107
|
-
"index":
|
|
7179
|
+
"index": 3201
|
|
7108
7180
|
}
|
|
7109
7181
|
},
|
|
7110
7182
|
"filepath": "src/components/date_picker/super_date_picker/date_popover/date_popover_button.tsx"
|
|
@@ -7115,14 +7187,14 @@
|
|
|
7115
7187
|
"highlighting": "string",
|
|
7116
7188
|
"loc": {
|
|
7117
7189
|
"start": {
|
|
7118
|
-
"line":
|
|
7190
|
+
"line": 113,
|
|
7119
7191
|
"column": 24,
|
|
7120
|
-
"index":
|
|
7192
|
+
"index": 3227
|
|
7121
7193
|
},
|
|
7122
7194
|
"end": {
|
|
7123
|
-
"line":
|
|
7195
|
+
"line": 117,
|
|
7124
7196
|
"column": 3,
|
|
7125
|
-
"index":
|
|
7197
|
+
"index": 3328
|
|
7126
7198
|
}
|
|
7127
7199
|
},
|
|
7128
7200
|
"filepath": "src/components/date_picker/super_date_picker/date_popover/date_popover_button.tsx"
|
|
@@ -7133,14 +7205,14 @@
|
|
|
7133
7205
|
"highlighting": "string",
|
|
7134
7206
|
"loc": {
|
|
7135
7207
|
"start": {
|
|
7136
|
-
"line":
|
|
7208
|
+
"line": 96,
|
|
7137
7209
|
"column": 28,
|
|
7138
|
-
"index":
|
|
7210
|
+
"index": 2900
|
|
7139
7211
|
},
|
|
7140
7212
|
"end": {
|
|
7141
|
-
"line":
|
|
7213
|
+
"line": 99,
|
|
7142
7214
|
"column": 3,
|
|
7143
|
-
"index":
|
|
7215
|
+
"index": 2976
|
|
7144
7216
|
}
|
|
7145
7217
|
},
|
|
7146
7218
|
"filepath": "src/components/date_picker/super_date_picker/date_popover/absolute_tab.tsx"
|
|
@@ -7151,14 +7223,14 @@
|
|
|
7151
7223
|
"highlighting": "string",
|
|
7152
7224
|
"loc": {
|
|
7153
7225
|
"start": {
|
|
7154
|
-
"line":
|
|
7226
|
+
"line": 100,
|
|
7155
7227
|
"column": 26,
|
|
7156
|
-
"index":
|
|
7228
|
+
"index": 3004
|
|
7157
7229
|
},
|
|
7158
7230
|
"end": {
|
|
7159
|
-
"line":
|
|
7231
|
+
"line": 104,
|
|
7160
7232
|
"column": 3,
|
|
7161
|
-
"index":
|
|
7233
|
+
"index": 3186
|
|
7162
7234
|
}
|
|
7163
7235
|
},
|
|
7164
7236
|
"filepath": "src/components/date_picker/super_date_picker/date_popover/absolute_tab.tsx"
|
|
@@ -7223,14 +7295,14 @@
|
|
|
7223
7295
|
"highlighting": "string",
|
|
7224
7296
|
"loc": {
|
|
7225
7297
|
"start": {
|
|
7226
|
-
"line":
|
|
7298
|
+
"line": 50,
|
|
7227
7299
|
"column": 6,
|
|
7228
|
-
"index":
|
|
7300
|
+
"index": 1716
|
|
7229
7301
|
},
|
|
7230
7302
|
"end": {
|
|
7231
|
-
"line":
|
|
7303
|
+
"line": 54,
|
|
7232
7304
|
"column": 7,
|
|
7233
|
-
"index":
|
|
7305
|
+
"index": 1879
|
|
7234
7306
|
}
|
|
7235
7307
|
},
|
|
7236
7308
|
"filepath": "src/components/datagrid/body/cell/data_grid_cell_actions.tsx"
|