@elastic/eui 116.3.0 → 116.3.1-snapshot.1782218964187
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/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/form_control_layout/form_control_layout_icons.js +95 -143
- package/es/components/notification_icon/assets/info_fill.js +34 -0
- package/es/components/notification_icon/assets/warning_static.js +40 -0
- package/es/components/notification_icon/notification_icon.js +87 -0
- package/es/components/notification_icon/notification_icon.styles.js +22 -0
- 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/toast/global_toast_list.js +132 -6
- package/es/components/toast/global_toast_list.styles.js +31 -7
- package/es/components/toast/toast.js +242 -47
- package/es/components/toast/toast.styles.js +35 -47
- package/es/components/toast/toast_action.js +34 -0
- package/es/components/toast/types.js +9 -0
- 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 +811 -552
- package/i18ntokens.json +981 -927
- 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/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/form_control_layout/form_control_layout_icons.js +95 -145
- package/lib/components/notification_icon/assets/info_fill.js +41 -0
- package/lib/components/notification_icon/assets/warning_static.js +47 -0
- package/lib/components/notification_icon/notification_icon.js +93 -0
- package/lib/components/notification_icon/notification_icon.styles.js +28 -0
- package/lib/components/notification_icon/svgs/info_fill.svg +3 -0
- package/lib/components/notification_icon/svgs/warning_static.svg +5 -0
- 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/toast/global_toast_list.js +132 -6
- package/lib/components/toast/global_toast_list.styles.js +31 -8
- package/lib/components/toast/toast.js +244 -47
- package/lib/components/toast/toast.styles.js +32 -45
- package/lib/components/toast/toast_action.js +40 -0
- package/lib/components/toast/types.js +15 -0
- 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/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/form_control_layout/form_control_layout_icons.js +96 -115
- package/optimize/es/components/notification_icon/assets/info_fill.js +33 -0
- package/optimize/es/components/notification_icon/assets/warning_static.js +39 -0
- package/optimize/es/components/notification_icon/notification_icon.js +77 -0
- package/optimize/es/components/notification_icon/notification_icon.styles.js +22 -0
- 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/toast/global_toast_list.js +31 -6
- package/optimize/es/components/toast/global_toast_list.styles.js +31 -7
- package/optimize/es/components/toast/toast.js +143 -47
- package/optimize/es/components/toast/toast.styles.js +35 -47
- package/optimize/es/components/toast/toast_action.js +33 -0
- package/optimize/es/components/toast/types.js +9 -0
- 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/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/form_control_layout/form_control_layout_icons.js +96 -117
- package/optimize/lib/components/notification_icon/assets/info_fill.js +41 -0
- package/optimize/lib/components/notification_icon/assets/warning_static.js +47 -0
- package/optimize/lib/components/notification_icon/notification_icon.js +83 -0
- package/optimize/lib/components/notification_icon/notification_icon.styles.js +28 -0
- package/optimize/lib/components/notification_icon/svgs/info_fill.svg +3 -0
- package/optimize/lib/components/notification_icon/svgs/warning_static.svg +5 -0
- 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/toast/global_toast_list.js +31 -6
- package/optimize/lib/components/toast/global_toast_list.styles.js +30 -7
- package/optimize/lib/components/toast/toast.js +146 -47
- package/optimize/lib/components/toast/toast.styles.js +33 -45
- package/optimize/lib/components/toast/toast_action.js +39 -0
- package/optimize/lib/components/toast/types.js +15 -0
- 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 +9 -6
- 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/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/form_control_layout/form_control_layout_icons.js +95 -139
- package/test-env/components/notification_icon/assets/info_fill.js +41 -0
- package/test-env/components/notification_icon/assets/warning_static.js +47 -0
- package/test-env/components/notification_icon/notification_icon.js +46 -0
- package/test-env/components/notification_icon/notification_icon.styles.js +28 -0
- 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/toast/global_toast_list.js +132 -6
- package/test-env/components/toast/global_toast_list.styles.js +30 -7
- package/test-env/components/toast/toast.js +242 -47
- package/test-env/components/toast/toast.styles.js +33 -45
- package/test-env/components/toast/toast_action.js +39 -0
- package/test-env/components/toast/types.js +15 -0
- 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",
|
|
@@ -162,55 +162,37 @@
|
|
|
162
162
|
"filepath": "src/components/tool_tip/icon_tip.tsx"
|
|
163
163
|
},
|
|
164
164
|
{
|
|
165
|
-
"token": "euiToast.
|
|
166
|
-
"defString": "
|
|
167
|
-
"highlighting": "string",
|
|
168
|
-
"loc": {
|
|
169
|
-
"start": {
|
|
170
|
-
"line": 59,
|
|
171
|
-
"column": 10,
|
|
172
|
-
"index": 1830
|
|
173
|
-
},
|
|
174
|
-
"end": {
|
|
175
|
-
"line": 62,
|
|
176
|
-
"column": 12,
|
|
177
|
-
"index": 1945
|
|
178
|
-
}
|
|
179
|
-
},
|
|
180
|
-
"filepath": "src/components/toast/toast.tsx"
|
|
181
|
-
},
|
|
182
|
-
{
|
|
183
|
-
"token": "euiToast.notification",
|
|
184
|
-
"defString": "Notification",
|
|
165
|
+
"token": "euiToast.dismissToast",
|
|
166
|
+
"defString": "Dismiss toast",
|
|
185
167
|
"highlighting": "string",
|
|
186
168
|
"loc": {
|
|
187
169
|
"start": {
|
|
188
|
-
"line":
|
|
170
|
+
"line": 146,
|
|
189
171
|
"column": 6,
|
|
190
|
-
"index":
|
|
172
|
+
"index": 4465
|
|
191
173
|
},
|
|
192
174
|
"end": {
|
|
193
|
-
"line":
|
|
194
|
-
"column":
|
|
195
|
-
"index":
|
|
175
|
+
"line": 146,
|
|
176
|
+
"column": 69,
|
|
177
|
+
"index": 4528
|
|
196
178
|
}
|
|
197
179
|
},
|
|
198
180
|
"filepath": "src/components/toast/toast.tsx"
|
|
199
181
|
},
|
|
200
182
|
{
|
|
201
|
-
"token": "euiToast.
|
|
202
|
-
"defString": "
|
|
183
|
+
"token": "euiToast.newNotification",
|
|
184
|
+
"defString": "A new notification appears",
|
|
203
185
|
"highlighting": "string",
|
|
204
186
|
"loc": {
|
|
205
187
|
"start": {
|
|
206
|
-
"line":
|
|
207
|
-
"column":
|
|
208
|
-
"index":
|
|
188
|
+
"line": 275,
|
|
189
|
+
"column": 10,
|
|
190
|
+
"index": 7659
|
|
209
191
|
},
|
|
210
192
|
"end": {
|
|
211
|
-
"line":
|
|
212
|
-
"column":
|
|
213
|
-
"index":
|
|
193
|
+
"line": 278,
|
|
194
|
+
"column": 12,
|
|
195
|
+
"index": 7774
|
|
214
196
|
}
|
|
215
197
|
},
|
|
216
198
|
"filepath": "src/components/toast/toast.tsx"
|
|
@@ -221,14 +203,14 @@
|
|
|
221
203
|
"highlighting": "string",
|
|
222
204
|
"loc": {
|
|
223
205
|
"start": {
|
|
224
|
-
"line":
|
|
206
|
+
"line": 339,
|
|
225
207
|
"column": 8,
|
|
226
|
-
"index":
|
|
208
|
+
"index": 11435
|
|
227
209
|
},
|
|
228
210
|
"end": {
|
|
229
|
-
"line":
|
|
211
|
+
"line": 346,
|
|
230
212
|
"column": 9,
|
|
231
|
-
"index":
|
|
213
|
+
"index": 11718
|
|
232
214
|
}
|
|
233
215
|
},
|
|
234
216
|
"filepath": "src/components/toast/global_toast_list.tsx"
|
|
@@ -239,35 +221,35 @@
|
|
|
239
221
|
"highlighting": "string",
|
|
240
222
|
"loc": {
|
|
241
223
|
"start": {
|
|
242
|
-
"line":
|
|
224
|
+
"line": 339,
|
|
243
225
|
"column": 8,
|
|
244
|
-
"index":
|
|
226
|
+
"index": 11435
|
|
245
227
|
},
|
|
246
228
|
"end": {
|
|
247
|
-
"line":
|
|
229
|
+
"line": 346,
|
|
248
230
|
"column": 9,
|
|
249
|
-
"index":
|
|
231
|
+
"index": 11718
|
|
250
232
|
}
|
|
251
233
|
},
|
|
252
234
|
"filepath": "src/components/toast/global_toast_list.tsx"
|
|
253
235
|
},
|
|
254
236
|
{
|
|
255
|
-
"token": "
|
|
256
|
-
"defString": "
|
|
237
|
+
"token": "euiTableHeaderCell.titleTextWithDesc",
|
|
238
|
+
"defString": "{innerText}; {description}",
|
|
257
239
|
"highlighting": "string",
|
|
258
240
|
"loc": {
|
|
259
241
|
"start": {
|
|
260
|
-
"line":
|
|
261
|
-
"column":
|
|
262
|
-
"index":
|
|
242
|
+
"line": 146,
|
|
243
|
+
"column": 10,
|
|
244
|
+
"index": 4722
|
|
263
245
|
},
|
|
264
246
|
"end": {
|
|
265
|
-
"line":
|
|
266
|
-
"column":
|
|
267
|
-
"index":
|
|
247
|
+
"line": 150,
|
|
248
|
+
"column": 11,
|
|
249
|
+
"index": 4896
|
|
268
250
|
}
|
|
269
251
|
},
|
|
270
|
-
"filepath": "src/components/
|
|
252
|
+
"filepath": "src/components/table/table_header_cell.tsx"
|
|
271
253
|
},
|
|
272
254
|
{
|
|
273
255
|
"token": "euiStepStrings.step",
|
|
@@ -558,22 +540,22 @@
|
|
|
558
540
|
"filepath": "src/components/steps/step_strings.tsx"
|
|
559
541
|
},
|
|
560
542
|
{
|
|
561
|
-
"token": "
|
|
562
|
-
"defString": "
|
|
543
|
+
"token": "euiStat.loadingText",
|
|
544
|
+
"defString": "Statistic is loading",
|
|
563
545
|
"highlighting": "string",
|
|
564
546
|
"loc": {
|
|
565
547
|
"start": {
|
|
566
|
-
"line":
|
|
567
|
-
"column":
|
|
568
|
-
"index":
|
|
548
|
+
"line": 95,
|
|
549
|
+
"column": 32,
|
|
550
|
+
"index": 2317
|
|
569
551
|
},
|
|
570
552
|
"end": {
|
|
571
|
-
"line":
|
|
572
|
-
"column":
|
|
573
|
-
"index":
|
|
553
|
+
"line": 98,
|
|
554
|
+
"column": 3,
|
|
555
|
+
"index": 2386
|
|
574
556
|
}
|
|
575
557
|
},
|
|
576
|
-
"filepath": "src/components/
|
|
558
|
+
"filepath": "src/components/stat/stat.tsx"
|
|
577
559
|
},
|
|
578
560
|
{
|
|
579
561
|
"token": "euiSkeletonLoading.loadedAriaText",
|
|
@@ -611,6 +593,24 @@
|
|
|
611
593
|
},
|
|
612
594
|
"filepath": "src/components/skeleton/skeleton_loading.tsx"
|
|
613
595
|
},
|
|
596
|
+
{
|
|
597
|
+
"token": "euiSideNav.mobileToggleAriaLabel",
|
|
598
|
+
"defString": "Toggle navigation",
|
|
599
|
+
"highlighting": "string",
|
|
600
|
+
"loc": {
|
|
601
|
+
"start": {
|
|
602
|
+
"line": 208,
|
|
603
|
+
"column": 16,
|
|
604
|
+
"index": 6318
|
|
605
|
+
},
|
|
606
|
+
"end": {
|
|
607
|
+
"line": 211,
|
|
608
|
+
"column": 17,
|
|
609
|
+
"index": 6449
|
|
610
|
+
}
|
|
611
|
+
},
|
|
612
|
+
"filepath": "src/components/side_nav/side_nav.tsx"
|
|
613
|
+
},
|
|
614
614
|
{
|
|
615
615
|
"token": "euiSelectable.loadingOptions",
|
|
616
616
|
"defString": "Loading options",
|
|
@@ -743,14 +743,14 @@
|
|
|
743
743
|
"highlighting": "string",
|
|
744
744
|
"loc": {
|
|
745
745
|
"start": {
|
|
746
|
-
"line":
|
|
746
|
+
"line": 49,
|
|
747
747
|
"column": 29,
|
|
748
|
-
"index":
|
|
748
|
+
"index": 1399
|
|
749
749
|
},
|
|
750
750
|
"end": {
|
|
751
|
-
"line":
|
|
751
|
+
"line": 52,
|
|
752
752
|
"column": 3,
|
|
753
|
-
"index":
|
|
753
|
+
"index": 1462
|
|
754
754
|
}
|
|
755
755
|
},
|
|
756
756
|
"filepath": "src/components/search_bar/search_box.tsx"
|
|
@@ -761,14 +761,14 @@
|
|
|
761
761
|
"highlighting": "string",
|
|
762
762
|
"loc": {
|
|
763
763
|
"start": {
|
|
764
|
-
"line":
|
|
764
|
+
"line": 53,
|
|
765
765
|
"column": 31,
|
|
766
|
-
"index":
|
|
766
|
+
"index": 1495
|
|
767
767
|
},
|
|
768
768
|
"end": {
|
|
769
|
-
"line":
|
|
769
|
+
"line": 56,
|
|
770
770
|
"column": 3,
|
|
771
|
-
"index":
|
|
771
|
+
"index": 1649
|
|
772
772
|
}
|
|
773
773
|
},
|
|
774
774
|
"filepath": "src/components/search_bar/search_box.tsx"
|
|
@@ -779,14 +779,14 @@
|
|
|
779
779
|
"highlighting": "string",
|
|
780
780
|
"loc": {
|
|
781
781
|
"start": {
|
|
782
|
-
"line":
|
|
782
|
+
"line": 57,
|
|
783
783
|
"column": 25,
|
|
784
|
-
"index":
|
|
784
|
+
"index": 1676
|
|
785
785
|
},
|
|
786
786
|
"end": {
|
|
787
|
-
"line":
|
|
787
|
+
"line": 60,
|
|
788
788
|
"column": 3,
|
|
789
|
-
"index":
|
|
789
|
+
"index": 1825
|
|
790
790
|
}
|
|
791
791
|
},
|
|
792
792
|
"filepath": "src/components/search_bar/search_box.tsx"
|
|
@@ -863,24 +863,6 @@
|
|
|
863
863
|
},
|
|
864
864
|
"filepath": "src/components/progress/progress.tsx"
|
|
865
865
|
},
|
|
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
866
|
{
|
|
885
867
|
"token": "euiPopover.screenReaderAnnouncement",
|
|
886
868
|
"defString": "You are in a dialog. Press Escape, or tap/click outside the dialog to close.",
|
|
@@ -905,14 +887,14 @@
|
|
|
905
887
|
"highlighting": "string",
|
|
906
888
|
"loc": {
|
|
907
889
|
"start": {
|
|
908
|
-
"line":
|
|
890
|
+
"line": 49,
|
|
909
891
|
"column": 11,
|
|
910
|
-
"index":
|
|
892
|
+
"index": 1456
|
|
911
893
|
},
|
|
912
894
|
"end": {
|
|
913
|
-
"line":
|
|
895
|
+
"line": 49,
|
|
914
896
|
"column": 73,
|
|
915
|
-
"index":
|
|
897
|
+
"index": 1518
|
|
916
898
|
}
|
|
917
899
|
},
|
|
918
900
|
"filepath": "src/components/pagination/pagination_button_arrow.tsx"
|
|
@@ -923,14 +905,14 @@
|
|
|
923
905
|
"highlighting": "string",
|
|
924
906
|
"loc": {
|
|
925
907
|
"start": {
|
|
926
|
-
"line":
|
|
908
|
+
"line": 50,
|
|
927
909
|
"column": 14,
|
|
928
|
-
"index":
|
|
910
|
+
"index": 1534
|
|
929
911
|
},
|
|
930
912
|
"end": {
|
|
931
|
-
"line":
|
|
913
|
+
"line": 53,
|
|
932
914
|
"column": 5,
|
|
933
|
-
"index":
|
|
915
|
+
"index": 1620
|
|
934
916
|
}
|
|
935
917
|
},
|
|
936
918
|
"filepath": "src/components/pagination/pagination_button_arrow.tsx"
|
|
@@ -941,14 +923,14 @@
|
|
|
941
923
|
"highlighting": "string",
|
|
942
924
|
"loc": {
|
|
943
925
|
"start": {
|
|
944
|
-
"line":
|
|
926
|
+
"line": 54,
|
|
945
927
|
"column": 10,
|
|
946
|
-
"index":
|
|
928
|
+
"index": 1632
|
|
947
929
|
},
|
|
948
930
|
"end": {
|
|
949
|
-
"line":
|
|
931
|
+
"line": 54,
|
|
950
932
|
"column": 70,
|
|
951
|
-
"index":
|
|
933
|
+
"index": 1692
|
|
952
934
|
}
|
|
953
935
|
},
|
|
954
936
|
"filepath": "src/components/pagination/pagination_button_arrow.tsx"
|
|
@@ -959,18 +941,54 @@
|
|
|
959
941
|
"highlighting": "string",
|
|
960
942
|
"loc": {
|
|
961
943
|
"start": {
|
|
962
|
-
"line":
|
|
944
|
+
"line": 55,
|
|
963
945
|
"column": 10,
|
|
964
|
-
"index":
|
|
946
|
+
"index": 1704
|
|
965
947
|
},
|
|
966
948
|
"end": {
|
|
967
|
-
"line":
|
|
949
|
+
"line": 55,
|
|
968
950
|
"column": 70,
|
|
969
|
-
"index":
|
|
951
|
+
"index": 1764
|
|
970
952
|
}
|
|
971
953
|
},
|
|
972
954
|
"filepath": "src/components/pagination/pagination_button_arrow.tsx"
|
|
973
955
|
},
|
|
956
|
+
{
|
|
957
|
+
"token": "euiPaginationButton.longPageString",
|
|
958
|
+
"defString": "Page {page} of {totalPages}",
|
|
959
|
+
"highlighting": "string",
|
|
960
|
+
"loc": {
|
|
961
|
+
"start": {
|
|
962
|
+
"line": 66,
|
|
963
|
+
"column": 4,
|
|
964
|
+
"index": 1920
|
|
965
|
+
},
|
|
966
|
+
"end": {
|
|
967
|
+
"line": 70,
|
|
968
|
+
"column": 5,
|
|
969
|
+
"index": 2087
|
|
970
|
+
}
|
|
971
|
+
},
|
|
972
|
+
"filepath": "src/components/pagination/pagination_button.tsx"
|
|
973
|
+
},
|
|
974
|
+
{
|
|
975
|
+
"token": "euiPaginationButton.shortPageString",
|
|
976
|
+
"defString": "Page {page}",
|
|
977
|
+
"highlighting": "string",
|
|
978
|
+
"loc": {
|
|
979
|
+
"start": {
|
|
980
|
+
"line": 72,
|
|
981
|
+
"column": 8,
|
|
982
|
+
"index": 2133
|
|
983
|
+
},
|
|
984
|
+
"end": {
|
|
985
|
+
"line": 76,
|
|
986
|
+
"column": 9,
|
|
987
|
+
"index": 2277
|
|
988
|
+
}
|
|
989
|
+
},
|
|
990
|
+
"filepath": "src/components/pagination/pagination_button.tsx"
|
|
991
|
+
},
|
|
974
992
|
{
|
|
975
993
|
"token": "euiPagination.pageOfTotalCompressed",
|
|
976
994
|
"defString": "{page} of {total}",
|
|
@@ -1116,127 +1134,55 @@
|
|
|
1116
1134
|
"filepath": "src/components/pagination/pagination.tsx"
|
|
1117
1135
|
},
|
|
1118
1136
|
{
|
|
1119
|
-
"token": "
|
|
1120
|
-
"defString": "
|
|
1137
|
+
"token": "euiModal.screenReaderModalDialog",
|
|
1138
|
+
"defString": "You are in a modal dialog. Press Escape or tap/click outside the dialog on the shadowed overlay to close.",
|
|
1121
1139
|
"highlighting": "string",
|
|
1122
1140
|
"loc": {
|
|
1123
1141
|
"start": {
|
|
1124
|
-
"line":
|
|
1125
|
-
"column":
|
|
1126
|
-
"index":
|
|
1142
|
+
"line": 133,
|
|
1143
|
+
"column": 8,
|
|
1144
|
+
"index": 4057
|
|
1127
1145
|
},
|
|
1128
1146
|
"end": {
|
|
1129
|
-
"line":
|
|
1130
|
-
"column":
|
|
1131
|
-
"index":
|
|
1147
|
+
"line": 136,
|
|
1148
|
+
"column": 10,
|
|
1149
|
+
"index": 4253
|
|
1132
1150
|
}
|
|
1133
1151
|
},
|
|
1134
|
-
"filepath": "src/components/
|
|
1152
|
+
"filepath": "src/components/modal/modal.tsx"
|
|
1135
1153
|
},
|
|
1136
1154
|
{
|
|
1137
|
-
"token": "
|
|
1138
|
-
"defString": "
|
|
1155
|
+
"token": "euiModal.closeModal",
|
|
1156
|
+
"defString": "Closes this modal window",
|
|
1139
1157
|
"highlighting": "string",
|
|
1140
1158
|
"loc": {
|
|
1141
1159
|
"start": {
|
|
1142
|
-
"line":
|
|
1143
|
-
"column":
|
|
1144
|
-
"index":
|
|
1160
|
+
"line": 163,
|
|
1161
|
+
"column": 10,
|
|
1162
|
+
"index": 4871
|
|
1145
1163
|
},
|
|
1146
1164
|
"end": {
|
|
1147
|
-
"line":
|
|
1148
|
-
"column":
|
|
1149
|
-
"index":
|
|
1165
|
+
"line": 166,
|
|
1166
|
+
"column": 11,
|
|
1167
|
+
"index": 4978
|
|
1150
1168
|
}
|
|
1151
1169
|
},
|
|
1152
|
-
"filepath": "src/components/
|
|
1170
|
+
"filepath": "src/components/modal/modal.tsx"
|
|
1153
1171
|
},
|
|
1154
1172
|
{
|
|
1155
|
-
"token": "
|
|
1156
|
-
"defString": "
|
|
1173
|
+
"token": "euiMarkdownEditorToolbar.editor",
|
|
1174
|
+
"defString": "Editor",
|
|
1157
1175
|
"highlighting": "string",
|
|
1158
1176
|
"loc": {
|
|
1159
1177
|
"start": {
|
|
1160
|
-
"line":
|
|
1161
|
-
"column":
|
|
1162
|
-
"index":
|
|
1178
|
+
"line": 304,
|
|
1179
|
+
"column": 8,
|
|
1180
|
+
"index": 8138
|
|
1163
1181
|
},
|
|
1164
1182
|
"end": {
|
|
1165
|
-
"line":
|
|
1166
|
-
"column":
|
|
1167
|
-
"index":
|
|
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
|
-
{
|
|
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
|
-
{
|
|
1227
|
-
"token": "euiMarkdownEditorToolbar.editor",
|
|
1228
|
-
"defString": "Editor",
|
|
1229
|
-
"highlighting": "string",
|
|
1230
|
-
"loc": {
|
|
1231
|
-
"start": {
|
|
1232
|
-
"line": 304,
|
|
1233
|
-
"column": 8,
|
|
1234
|
-
"index": 8138
|
|
1235
|
-
},
|
|
1236
|
-
"end": {
|
|
1237
|
-
"line": 304,
|
|
1238
|
-
"column": 76,
|
|
1239
|
-
"index": 8206
|
|
1183
|
+
"line": 304,
|
|
1184
|
+
"column": 76,
|
|
1185
|
+
"index": 8206
|
|
1240
1186
|
}
|
|
1241
1187
|
},
|
|
1242
1188
|
"filepath": "src/components/markdown_editor/markdown_editor_toolbar.tsx"
|
|
@@ -1319,14 +1265,14 @@
|
|
|
1319
1265
|
"highlighting": "string",
|
|
1320
1266
|
"loc": {
|
|
1321
1267
|
"start": {
|
|
1322
|
-
"line":
|
|
1268
|
+
"line": 105,
|
|
1323
1269
|
"column": 16,
|
|
1324
|
-
"index":
|
|
1270
|
+
"index": 3582
|
|
1325
1271
|
},
|
|
1326
1272
|
"end": {
|
|
1327
|
-
"line":
|
|
1273
|
+
"line": 114,
|
|
1328
1274
|
"column": 17,
|
|
1329
|
-
"index":
|
|
1275
|
+
"index": 4018
|
|
1330
1276
|
}
|
|
1331
1277
|
},
|
|
1332
1278
|
"filepath": "src/components/markdown_editor/markdown_editor_help_button.tsx"
|
|
@@ -1337,14 +1283,14 @@
|
|
|
1337
1283
|
"highlighting": "string",
|
|
1338
1284
|
"loc": {
|
|
1339
1285
|
"start": {
|
|
1340
|
-
"line":
|
|
1286
|
+
"line": 105,
|
|
1341
1287
|
"column": 16,
|
|
1342
|
-
"index":
|
|
1288
|
+
"index": 3582
|
|
1343
1289
|
},
|
|
1344
1290
|
"end": {
|
|
1345
|
-
"line":
|
|
1291
|
+
"line": 114,
|
|
1346
1292
|
"column": 17,
|
|
1347
|
-
"index":
|
|
1293
|
+
"index": 4018
|
|
1348
1294
|
}
|
|
1349
1295
|
},
|
|
1350
1296
|
"filepath": "src/components/markdown_editor/markdown_editor_help_button.tsx"
|
|
@@ -1355,14 +1301,14 @@
|
|
|
1355
1301
|
"highlighting": "string",
|
|
1356
1302
|
"loc": {
|
|
1357
1303
|
"start": {
|
|
1358
|
-
"line":
|
|
1304
|
+
"line": 143,
|
|
1359
1305
|
"column": 16,
|
|
1360
|
-
"index":
|
|
1306
|
+
"index": 5077
|
|
1361
1307
|
},
|
|
1362
1308
|
"end": {
|
|
1363
|
-
"line":
|
|
1309
|
+
"line": 146,
|
|
1364
1310
|
"column": 18,
|
|
1365
|
-
"index":
|
|
1311
|
+
"index": 5204
|
|
1366
1312
|
}
|
|
1367
1313
|
},
|
|
1368
1314
|
"filepath": "src/components/markdown_editor/markdown_editor_help_button.tsx"
|
|
@@ -1373,14 +1319,14 @@
|
|
|
1373
1319
|
"highlighting": "string",
|
|
1374
1320
|
"loc": {
|
|
1375
1321
|
"start": {
|
|
1376
|
-
"line":
|
|
1322
|
+
"line": 175,
|
|
1377
1323
|
"column": 8,
|
|
1378
|
-
"index":
|
|
1324
|
+
"index": 6083
|
|
1379
1325
|
},
|
|
1380
1326
|
"end": {
|
|
1381
|
-
"line":
|
|
1327
|
+
"line": 178,
|
|
1382
1328
|
"column": 9,
|
|
1383
|
-
"index":
|
|
1329
|
+
"index": 6219
|
|
1384
1330
|
}
|
|
1385
1331
|
},
|
|
1386
1332
|
"filepath": "src/components/markdown_editor/markdown_editor_help_button.tsx"
|
|
@@ -1493,6 +1439,42 @@
|
|
|
1493
1439
|
},
|
|
1494
1440
|
"filepath": "src/components/markdown_editor/markdown_editor_footer.tsx"
|
|
1495
1441
|
},
|
|
1442
|
+
{
|
|
1443
|
+
"token": "euiMark.highlightStart",
|
|
1444
|
+
"defString": "highlight start",
|
|
1445
|
+
"highlighting": "string",
|
|
1446
|
+
"loc": {
|
|
1447
|
+
"start": {
|
|
1448
|
+
"line": 44,
|
|
1449
|
+
"column": 25,
|
|
1450
|
+
"index": 1289
|
|
1451
|
+
},
|
|
1452
|
+
"end": {
|
|
1453
|
+
"line": 47,
|
|
1454
|
+
"column": 3,
|
|
1455
|
+
"index": 1356
|
|
1456
|
+
}
|
|
1457
|
+
},
|
|
1458
|
+
"filepath": "src/components/mark/mark.tsx"
|
|
1459
|
+
},
|
|
1460
|
+
{
|
|
1461
|
+
"token": "euiMark.highlightEnd",
|
|
1462
|
+
"defString": "highlight end",
|
|
1463
|
+
"highlighting": "string",
|
|
1464
|
+
"loc": {
|
|
1465
|
+
"start": {
|
|
1466
|
+
"line": 48,
|
|
1467
|
+
"column": 23,
|
|
1468
|
+
"index": 1381
|
|
1469
|
+
},
|
|
1470
|
+
"end": {
|
|
1471
|
+
"line": 48,
|
|
1472
|
+
"column": 74,
|
|
1473
|
+
"index": 1432
|
|
1474
|
+
}
|
|
1475
|
+
},
|
|
1476
|
+
"filepath": "src/components/mark/mark.tsx"
|
|
1477
|
+
},
|
|
1496
1478
|
{
|
|
1497
1479
|
"token": "euiLoadingStrings.ariaLabel",
|
|
1498
1480
|
"defString": "Loading",
|
|
@@ -1655,20 +1637,38 @@
|
|
|
1655
1637
|
},
|
|
1656
1638
|
"filepath": "src/components/image/image_button.tsx"
|
|
1657
1639
|
},
|
|
1640
|
+
{
|
|
1641
|
+
"token": "euiForm.addressFormErrors",
|
|
1642
|
+
"defString": "Please address the highlighted errors.",
|
|
1643
|
+
"highlighting": "string",
|
|
1644
|
+
"loc": {
|
|
1645
|
+
"start": {
|
|
1646
|
+
"line": 98,
|
|
1647
|
+
"column": 8,
|
|
1648
|
+
"index": 2588
|
|
1649
|
+
},
|
|
1650
|
+
"end": {
|
|
1651
|
+
"line": 101,
|
|
1652
|
+
"column": 9,
|
|
1653
|
+
"index": 2709
|
|
1654
|
+
}
|
|
1655
|
+
},
|
|
1656
|
+
"filepath": "src/components/form/form.tsx"
|
|
1657
|
+
},
|
|
1658
1658
|
{
|
|
1659
1659
|
"token": "euiFlyoutMenu.back",
|
|
1660
1660
|
"defString": "Back",
|
|
1661
1661
|
"highlighting": "string",
|
|
1662
1662
|
"loc": {
|
|
1663
1663
|
"start": {
|
|
1664
|
-
"line":
|
|
1664
|
+
"line": 168,
|
|
1665
1665
|
"column": 6,
|
|
1666
|
-
"index":
|
|
1666
|
+
"index": 4663
|
|
1667
1667
|
},
|
|
1668
1668
|
"end": {
|
|
1669
|
-
"line":
|
|
1669
|
+
"line": 168,
|
|
1670
1670
|
"column": 59,
|
|
1671
|
-
"index":
|
|
1671
|
+
"index": 4716
|
|
1672
1672
|
}
|
|
1673
1673
|
},
|
|
1674
1674
|
"filepath": "src/components/flyout/flyout_menu.tsx"
|
|
@@ -1679,14 +1679,86 @@
|
|
|
1679
1679
|
"highlighting": "string",
|
|
1680
1680
|
"loc": {
|
|
1681
1681
|
"start": {
|
|
1682
|
-
"line":
|
|
1682
|
+
"line": 187,
|
|
1683
1683
|
"column": 22,
|
|
1684
|
-
"index":
|
|
1684
|
+
"index": 5133
|
|
1685
1685
|
},
|
|
1686
1686
|
"end": {
|
|
1687
|
-
"line":
|
|
1687
|
+
"line": 187,
|
|
1688
1688
|
"column": 68,
|
|
1689
|
-
"index":
|
|
1689
|
+
"index": 5179
|
|
1690
|
+
}
|
|
1691
|
+
},
|
|
1692
|
+
"filepath": "src/components/flyout/flyout_menu.tsx"
|
|
1693
|
+
},
|
|
1694
|
+
{
|
|
1695
|
+
"token": "euiFlyoutMenu.pagination.previous",
|
|
1696
|
+
"defString": "Previous",
|
|
1697
|
+
"highlighting": "string",
|
|
1698
|
+
"loc": {
|
|
1699
|
+
"start": {
|
|
1700
|
+
"line": 222,
|
|
1701
|
+
"column": 20,
|
|
1702
|
+
"index": 6191
|
|
1703
|
+
},
|
|
1704
|
+
"end": {
|
|
1705
|
+
"line": 222,
|
|
1706
|
+
"column": 79,
|
|
1707
|
+
"index": 6250
|
|
1708
|
+
}
|
|
1709
|
+
},
|
|
1710
|
+
"filepath": "src/components/flyout/flyout_menu.tsx"
|
|
1711
|
+
},
|
|
1712
|
+
{
|
|
1713
|
+
"token": "euiFlyoutMenu.pagination.next",
|
|
1714
|
+
"defString": "Next",
|
|
1715
|
+
"highlighting": "string",
|
|
1716
|
+
"loc": {
|
|
1717
|
+
"start": {
|
|
1718
|
+
"line": 223,
|
|
1719
|
+
"column": 20,
|
|
1720
|
+
"index": 6272
|
|
1721
|
+
},
|
|
1722
|
+
"end": {
|
|
1723
|
+
"line": 223,
|
|
1724
|
+
"column": 71,
|
|
1725
|
+
"index": 6323
|
|
1726
|
+
}
|
|
1727
|
+
},
|
|
1728
|
+
"filepath": "src/components/flyout/flyout_menu.tsx"
|
|
1729
|
+
},
|
|
1730
|
+
{
|
|
1731
|
+
"token": "euiFlyoutMenu.pagination.counter",
|
|
1732
|
+
"defString": "{position} of {total}",
|
|
1733
|
+
"highlighting": "string",
|
|
1734
|
+
"loc": {
|
|
1735
|
+
"start": {
|
|
1736
|
+
"line": 270,
|
|
1737
|
+
"column": 12,
|
|
1738
|
+
"index": 7521
|
|
1739
|
+
},
|
|
1740
|
+
"end": {
|
|
1741
|
+
"line": 274,
|
|
1742
|
+
"column": 14,
|
|
1743
|
+
"index": 7706
|
|
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": 277,
|
|
1755
|
+
"column": 12,
|
|
1756
|
+
"index": 7772
|
|
1757
|
+
},
|
|
1758
|
+
"end": {
|
|
1759
|
+
"line": 281,
|
|
1760
|
+
"column": 14,
|
|
1761
|
+
"index": 7957
|
|
1690
1762
|
}
|
|
1691
1763
|
},
|
|
1692
1764
|
"filepath": "src/components/flyout/flyout_menu.tsx"
|
|
@@ -1697,14 +1769,14 @@
|
|
|
1697
1769
|
"highlighting": "string",
|
|
1698
1770
|
"loc": {
|
|
1699
1771
|
"start": {
|
|
1700
|
-
"line":
|
|
1772
|
+
"line": 1022,
|
|
1701
1773
|
"column": 14,
|
|
1702
|
-
"index":
|
|
1774
|
+
"index": 36294
|
|
1703
1775
|
},
|
|
1704
1776
|
"end": {
|
|
1705
|
-
"line":
|
|
1777
|
+
"line": 1025,
|
|
1706
1778
|
"column": 16,
|
|
1707
|
-
"index":
|
|
1779
|
+
"index": 36509
|
|
1708
1780
|
}
|
|
1709
1781
|
},
|
|
1710
1782
|
"filepath": "src/components/flyout/flyout.component.tsx"
|
|
@@ -1715,14 +1787,14 @@
|
|
|
1715
1787
|
"highlighting": "string",
|
|
1716
1788
|
"loc": {
|
|
1717
1789
|
"start": {
|
|
1718
|
-
"line":
|
|
1790
|
+
"line": 1027,
|
|
1719
1791
|
"column": 14,
|
|
1720
|
-
"index":
|
|
1792
|
+
"index": 36542
|
|
1721
1793
|
},
|
|
1722
1794
|
"end": {
|
|
1723
|
-
"line":
|
|
1795
|
+
"line": 1030,
|
|
1724
1796
|
"column": 16,
|
|
1725
|
-
"index":
|
|
1797
|
+
"index": 36721
|
|
1726
1798
|
}
|
|
1727
1799
|
},
|
|
1728
1800
|
"filepath": "src/components/flyout/flyout.component.tsx"
|
|
@@ -1733,14 +1805,14 @@
|
|
|
1733
1805
|
"highlighting": "string",
|
|
1734
1806
|
"loc": {
|
|
1735
1807
|
"start": {
|
|
1736
|
-
"line":
|
|
1808
|
+
"line": 1033,
|
|
1737
1809
|
"column": 14,
|
|
1738
|
-
"index":
|
|
1810
|
+
"index": 36801
|
|
1739
1811
|
},
|
|
1740
1812
|
"end": {
|
|
1741
|
-
"line":
|
|
1813
|
+
"line": 1036,
|
|
1742
1814
|
"column": 16,
|
|
1743
|
-
"index":
|
|
1815
|
+
"index": 36982
|
|
1744
1816
|
}
|
|
1745
1817
|
},
|
|
1746
1818
|
"filepath": "src/components/flyout/flyout.component.tsx"
|
|
@@ -1763,24 +1835,6 @@
|
|
|
1763
1835
|
},
|
|
1764
1836
|
"filepath": "src/components/flyout/_flyout_close_button.tsx"
|
|
1765
1837
|
},
|
|
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
1838
|
{
|
|
1785
1839
|
"token": "euiFilterButton.filterBadgeActiveAriaLabel",
|
|
1786
1840
|
"defString": "{count} active filters",
|
|
@@ -2231,24 +2285,6 @@
|
|
|
2231
2285
|
},
|
|
2232
2286
|
"filepath": "src/components/collapsible_nav_beta/collapsible_nav_beta.tsx"
|
|
2233
2287
|
},
|
|
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
2288
|
{
|
|
2253
2289
|
"token": "euiCodeBlockFullScreen.fullscreenCollapse",
|
|
2254
2290
|
"defString": "Collapse",
|
|
@@ -2358,18 +2394,36 @@
|
|
|
2358
2394
|
"filepath": "src/components/code/code_block.tsx"
|
|
2359
2395
|
},
|
|
2360
2396
|
{
|
|
2361
|
-
"token": "
|
|
2362
|
-
"defString": "
|
|
2397
|
+
"token": "euiCallOut.dismissAriaLabel",
|
|
2398
|
+
"defString": "Dismiss this callout",
|
|
2363
2399
|
"highlighting": "string",
|
|
2364
2400
|
"loc": {
|
|
2365
2401
|
"start": {
|
|
2366
|
-
"line":
|
|
2367
|
-
"column":
|
|
2368
|
-
"index":
|
|
2402
|
+
"line": 114,
|
|
2403
|
+
"column": 8,
|
|
2404
|
+
"index": 3269
|
|
2369
2405
|
},
|
|
2370
2406
|
"end": {
|
|
2371
|
-
"line":
|
|
2372
|
-
"column":
|
|
2407
|
+
"line": 117,
|
|
2408
|
+
"column": 9,
|
|
2409
|
+
"index": 3374
|
|
2410
|
+
}
|
|
2411
|
+
},
|
|
2412
|
+
"filepath": "src/components/call_out/call_out.tsx"
|
|
2413
|
+
},
|
|
2414
|
+
{
|
|
2415
|
+
"token": "euiBreadcrumbs.nav.ariaLabel",
|
|
2416
|
+
"defString": "Breadcrumbs",
|
|
2417
|
+
"highlighting": "string",
|
|
2418
|
+
"loc": {
|
|
2419
|
+
"start": {
|
|
2420
|
+
"line": 42,
|
|
2421
|
+
"column": 20,
|
|
2422
|
+
"index": 1274
|
|
2423
|
+
},
|
|
2424
|
+
"end": {
|
|
2425
|
+
"line": 42,
|
|
2426
|
+
"column": 77,
|
|
2373
2427
|
"index": 1331
|
|
2374
2428
|
}
|
|
2375
2429
|
},
|
|
@@ -2399,14 +2453,14 @@
|
|
|
2399
2453
|
"highlighting": "string",
|
|
2400
2454
|
"loc": {
|
|
2401
2455
|
"start": {
|
|
2402
|
-
"line":
|
|
2456
|
+
"line": 183,
|
|
2403
2457
|
"column": 29,
|
|
2404
|
-
"index":
|
|
2458
|
+
"index": 5213
|
|
2405
2459
|
},
|
|
2406
2460
|
"end": {
|
|
2407
|
-
"line":
|
|
2461
|
+
"line": 189,
|
|
2408
2462
|
"column": 5,
|
|
2409
|
-
"index":
|
|
2463
|
+
"index": 5546
|
|
2410
2464
|
}
|
|
2411
2465
|
},
|
|
2412
2466
|
"filepath": "src/components/breadcrumbs/_breadcrumb_content.tsx"
|
|
@@ -2525,14 +2579,14 @@
|
|
|
2525
2579
|
"highlighting": "string",
|
|
2526
2580
|
"loc": {
|
|
2527
2581
|
"start": {
|
|
2528
|
-
"line":
|
|
2582
|
+
"line": 333,
|
|
2529
2583
|
"column": 6,
|
|
2530
|
-
"index":
|
|
2584
|
+
"index": 8623
|
|
2531
2585
|
},
|
|
2532
2586
|
"end": {
|
|
2533
|
-
"line":
|
|
2587
|
+
"line": 333,
|
|
2534
2588
|
"column": 79,
|
|
2535
|
-
"index":
|
|
2589
|
+
"index": 8696
|
|
2536
2590
|
}
|
|
2537
2591
|
},
|
|
2538
2592
|
"filepath": "src/components/basic_table/basic_table.tsx"
|
|
@@ -2543,14 +2597,14 @@
|
|
|
2543
2597
|
"highlighting": "string",
|
|
2544
2598
|
"loc": {
|
|
2545
2599
|
"start": {
|
|
2546
|
-
"line":
|
|
2600
|
+
"line": 683,
|
|
2547
2601
|
"column": 10,
|
|
2548
|
-
"index":
|
|
2602
|
+
"index": 17693
|
|
2549
2603
|
},
|
|
2550
2604
|
"end": {
|
|
2551
|
-
"line":
|
|
2605
|
+
"line": 687,
|
|
2552
2606
|
"column": 12,
|
|
2553
|
-
"index":
|
|
2607
|
+
"index": 17913
|
|
2554
2608
|
}
|
|
2555
2609
|
},
|
|
2556
2610
|
"filepath": "src/components/basic_table/basic_table.tsx"
|
|
@@ -2561,14 +2615,14 @@
|
|
|
2561
2615
|
"highlighting": "string",
|
|
2562
2616
|
"loc": {
|
|
2563
2617
|
"start": {
|
|
2564
|
-
"line":
|
|
2618
|
+
"line": 696,
|
|
2565
2619
|
"column": 10,
|
|
2566
|
-
"index":
|
|
2620
|
+
"index": 18077
|
|
2567
2621
|
},
|
|
2568
2622
|
"end": {
|
|
2569
|
-
"line":
|
|
2623
|
+
"line": 700,
|
|
2570
2624
|
"column": 12,
|
|
2571
|
-
"index":
|
|
2625
|
+
"index": 18260
|
|
2572
2626
|
}
|
|
2573
2627
|
},
|
|
2574
2628
|
"filepath": "src/components/basic_table/basic_table.tsx"
|
|
@@ -2579,14 +2633,14 @@
|
|
|
2579
2633
|
"highlighting": "string",
|
|
2580
2634
|
"loc": {
|
|
2581
2635
|
"start": {
|
|
2582
|
-
"line":
|
|
2636
|
+
"line": 712,
|
|
2583
2637
|
"column": 16,
|
|
2584
|
-
"index":
|
|
2638
|
+
"index": 18549
|
|
2585
2639
|
},
|
|
2586
2640
|
"end": {
|
|
2587
|
-
"line":
|
|
2641
|
+
"line": 715,
|
|
2588
2642
|
"column": 18,
|
|
2589
|
-
"index":
|
|
2643
|
+
"index": 18673
|
|
2590
2644
|
}
|
|
2591
2645
|
},
|
|
2592
2646
|
"filepath": "src/components/basic_table/basic_table.tsx"
|
|
@@ -2597,14 +2651,14 @@
|
|
|
2597
2651
|
"highlighting": "string",
|
|
2598
2652
|
"loc": {
|
|
2599
2653
|
"start": {
|
|
2600
|
-
"line":
|
|
2654
|
+
"line": 720,
|
|
2601
2655
|
"column": 18,
|
|
2602
|
-
"index":
|
|
2656
|
+
"index": 18788
|
|
2603
2657
|
},
|
|
2604
2658
|
"end": {
|
|
2605
|
-
"line":
|
|
2659
|
+
"line": 723,
|
|
2606
2660
|
"column": 20,
|
|
2607
|
-
"index":
|
|
2661
|
+
"index": 18916
|
|
2608
2662
|
}
|
|
2609
2663
|
},
|
|
2610
2664
|
"filepath": "src/components/basic_table/basic_table.tsx"
|
|
@@ -2615,14 +2669,14 @@
|
|
|
2615
2669
|
"highlighting": "string",
|
|
2616
2670
|
"loc": {
|
|
2617
2671
|
"start": {
|
|
2618
|
-
"line":
|
|
2672
|
+
"line": 772,
|
|
2619
2673
|
"column": 6,
|
|
2620
|
-
"index":
|
|
2674
|
+
"index": 20121
|
|
2621
2675
|
},
|
|
2622
2676
|
"end": {
|
|
2623
|
-
"line":
|
|
2677
|
+
"line": 775,
|
|
2624
2678
|
"column": 7,
|
|
2625
|
-
"index":
|
|
2679
|
+
"index": 20272
|
|
2626
2680
|
}
|
|
2627
2681
|
},
|
|
2628
2682
|
"filepath": "src/components/basic_table/basic_table.tsx"
|
|
@@ -2633,14 +2687,14 @@
|
|
|
2633
2687
|
"highlighting": "string",
|
|
2634
2688
|
"loc": {
|
|
2635
2689
|
"start": {
|
|
2636
|
-
"line":
|
|
2690
|
+
"line": 772,
|
|
2637
2691
|
"column": 6,
|
|
2638
|
-
"index":
|
|
2692
|
+
"index": 20121
|
|
2639
2693
|
},
|
|
2640
2694
|
"end": {
|
|
2641
|
-
"line":
|
|
2695
|
+
"line": 775,
|
|
2642
2696
|
"column": 7,
|
|
2643
|
-
"index":
|
|
2697
|
+
"index": 20272
|
|
2644
2698
|
}
|
|
2645
2699
|
},
|
|
2646
2700
|
"filepath": "src/components/basic_table/basic_table.tsx"
|
|
@@ -2651,14 +2705,14 @@
|
|
|
2651
2705
|
"highlighting": "string",
|
|
2652
2706
|
"loc": {
|
|
2653
2707
|
"start": {
|
|
2654
|
-
"line":
|
|
2708
|
+
"line": 1220,
|
|
2655
2709
|
"column": 8,
|
|
2656
|
-
"index":
|
|
2710
|
+
"index": 33514
|
|
2657
2711
|
},
|
|
2658
2712
|
"end": {
|
|
2659
|
-
"line":
|
|
2713
|
+
"line": 1224,
|
|
2660
2714
|
"column": 9,
|
|
2661
|
-
"index":
|
|
2715
|
+
"index": 33669
|
|
2662
2716
|
}
|
|
2663
2717
|
},
|
|
2664
2718
|
"filepath": "src/components/basic_table/basic_table.tsx"
|
|
@@ -2669,14 +2723,14 @@
|
|
|
2669
2723
|
"highlighting": "string",
|
|
2670
2724
|
"loc": {
|
|
2671
2725
|
"start": {
|
|
2672
|
-
"line":
|
|
2726
|
+
"line": 1482,
|
|
2673
2727
|
"column": 8,
|
|
2674
|
-
"index":
|
|
2728
|
+
"index": 41138
|
|
2675
2729
|
},
|
|
2676
2730
|
"end": {
|
|
2677
|
-
"line":
|
|
2731
|
+
"line": 1486,
|
|
2678
2732
|
"column": 9,
|
|
2679
|
-
"index":
|
|
2733
|
+
"index": 41297
|
|
2680
2734
|
}
|
|
2681
2735
|
},
|
|
2682
2736
|
"filepath": "src/components/basic_table/basic_table.tsx"
|
|
@@ -2777,14 +2831,14 @@
|
|
|
2777
2831
|
"highlighting": "string",
|
|
2778
2832
|
"loc": {
|
|
2779
2833
|
"start": {
|
|
2780
|
-
"line":
|
|
2781
|
-
"column":
|
|
2782
|
-
"index":
|
|
2834
|
+
"line": 65,
|
|
2835
|
+
"column": 6,
|
|
2836
|
+
"index": 1799
|
|
2783
2837
|
},
|
|
2784
2838
|
"end": {
|
|
2785
|
-
"line":
|
|
2786
|
-
"column":
|
|
2787
|
-
"index":
|
|
2839
|
+
"line": 65,
|
|
2840
|
+
"column": 70,
|
|
2841
|
+
"index": 1863
|
|
2788
2842
|
}
|
|
2789
2843
|
},
|
|
2790
2844
|
"filepath": "src/components/table/mobile/table_sort_mobile.tsx"
|
|
@@ -3113,24 +3167,6 @@
|
|
|
3113
3167
|
},
|
|
3114
3168
|
"filepath": "src/components/header/header_links/header_links.tsx"
|
|
3115
3169
|
},
|
|
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
3170
|
{
|
|
3135
3171
|
"token": "euiSuperSelect.screenReaderAnnouncement",
|
|
3136
3172
|
"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 +3275,6 @@
|
|
|
3239
3275
|
},
|
|
3240
3276
|
"filepath": "src/components/form/form_control_layout/form_control_layout_clear_button.tsx"
|
|
3241
3277
|
},
|
|
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
3278
|
{
|
|
3261
3279
|
"token": "euiFilePicker.promptText",
|
|
3262
3280
|
"defString": "Select or drag and drop a file",
|
|
@@ -3329,20 +3347,38 @@
|
|
|
3329
3347
|
},
|
|
3330
3348
|
"filepath": "src/components/form/file_picker/file_picker.tsx"
|
|
3331
3349
|
},
|
|
3350
|
+
{
|
|
3351
|
+
"token": "euiFieldSearch.clearSearchButtonLabel",
|
|
3352
|
+
"defString": "Clear search input",
|
|
3353
|
+
"highlighting": "string",
|
|
3354
|
+
"loc": {
|
|
3355
|
+
"start": {
|
|
3356
|
+
"line": 260,
|
|
3357
|
+
"column": 6,
|
|
3358
|
+
"index": 7437
|
|
3359
|
+
},
|
|
3360
|
+
"end": {
|
|
3361
|
+
"line": 263,
|
|
3362
|
+
"column": 7,
|
|
3363
|
+
"index": 7544
|
|
3364
|
+
}
|
|
3365
|
+
},
|
|
3366
|
+
"filepath": "src/components/form/field_search/field_search.tsx"
|
|
3367
|
+
},
|
|
3332
3368
|
{
|
|
3333
3369
|
"token": "euiFieldPassword.showPassword",
|
|
3334
3370
|
"defString": "Show password as plain text. Note: this will visually expose your password on the screen.",
|
|
3335
3371
|
"highlighting": "string",
|
|
3336
3372
|
"loc": {
|
|
3337
3373
|
"start": {
|
|
3338
|
-
"line":
|
|
3374
|
+
"line": 107,
|
|
3339
3375
|
"column": 49,
|
|
3340
|
-
"index":
|
|
3376
|
+
"index": 3019
|
|
3341
3377
|
},
|
|
3342
3378
|
"end": {
|
|
3343
|
-
"line":
|
|
3379
|
+
"line": 113,
|
|
3344
3380
|
"column": 3,
|
|
3345
|
-
"index":
|
|
3381
|
+
"index": 3240
|
|
3346
3382
|
}
|
|
3347
3383
|
},
|
|
3348
3384
|
"filepath": "src/components/form/field_password/field_password.tsx"
|
|
@@ -3353,187 +3389,385 @@
|
|
|
3353
3389
|
"highlighting": "string",
|
|
3354
3390
|
"loc": {
|
|
3355
3391
|
"start": {
|
|
3356
|
-
"line":
|
|
3392
|
+
"line": 107,
|
|
3357
3393
|
"column": 49,
|
|
3358
|
-
"index":
|
|
3394
|
+
"index": 3019
|
|
3359
3395
|
},
|
|
3360
3396
|
"end": {
|
|
3361
|
-
"line":
|
|
3397
|
+
"line": 113,
|
|
3362
3398
|
"column": 3,
|
|
3363
|
-
"index":
|
|
3399
|
+
"index": 3240
|
|
3364
3400
|
}
|
|
3365
3401
|
},
|
|
3366
3402
|
"filepath": "src/components/form/field_password/field_password.tsx"
|
|
3367
3403
|
},
|
|
3368
3404
|
{
|
|
3369
|
-
"token": "
|
|
3370
|
-
"defString": "
|
|
3405
|
+
"token": "euiFlyoutManaged.defaultTitle",
|
|
3406
|
+
"defString": "Unknown Flyout",
|
|
3371
3407
|
"highlighting": "string",
|
|
3372
3408
|
"loc": {
|
|
3373
3409
|
"start": {
|
|
3374
|
-
"line":
|
|
3410
|
+
"line": 173,
|
|
3375
3411
|
"column": 25,
|
|
3376
|
-
"index":
|
|
3412
|
+
"index": 5686
|
|
3377
3413
|
},
|
|
3378
3414
|
"end": {
|
|
3379
|
-
"line":
|
|
3380
|
-
"column":
|
|
3381
|
-
"index":
|
|
3415
|
+
"line": 176,
|
|
3416
|
+
"column": 5,
|
|
3417
|
+
"index": 5765
|
|
3382
3418
|
}
|
|
3383
3419
|
},
|
|
3384
|
-
"filepath": "src/components/
|
|
3420
|
+
"filepath": "src/components/flyout/manager/flyout_managed.tsx"
|
|
3385
3421
|
},
|
|
3386
3422
|
{
|
|
3387
|
-
"token": "
|
|
3388
|
-
"defString": "
|
|
3423
|
+
"token": "euiTimeWindowButtons.previousDescription",
|
|
3424
|
+
"defString": "Previous {displayInterval}",
|
|
3389
3425
|
"highlighting": "string",
|
|
3390
3426
|
"loc": {
|
|
3391
3427
|
"start": {
|
|
3392
|
-
"line":
|
|
3393
|
-
"column":
|
|
3394
|
-
"index":
|
|
3428
|
+
"line": 88,
|
|
3429
|
+
"column": 30,
|
|
3430
|
+
"index": 2577
|
|
3395
3431
|
},
|
|
3396
3432
|
"end": {
|
|
3397
|
-
"line":
|
|
3398
|
-
"column":
|
|
3399
|
-
"index":
|
|
3433
|
+
"line": 92,
|
|
3434
|
+
"column": 3,
|
|
3435
|
+
"index": 2698
|
|
3400
3436
|
}
|
|
3401
3437
|
},
|
|
3402
|
-
"filepath": "src/components/date_picker/super_date_picker/
|
|
3438
|
+
"filepath": "src/components/date_picker/super_date_picker/time_window_buttons.tsx"
|
|
3403
3439
|
},
|
|
3404
3440
|
{
|
|
3405
|
-
"token": "
|
|
3406
|
-
"defString": "
|
|
3441
|
+
"token": "euiTimeWindowButtons.nextDescription",
|
|
3442
|
+
"defString": "Next {displayInterval}",
|
|
3407
3443
|
"highlighting": "string",
|
|
3408
3444
|
"loc": {
|
|
3409
3445
|
"start": {
|
|
3410
|
-
"line":
|
|
3411
|
-
"column":
|
|
3412
|
-
"index":
|
|
3446
|
+
"line": 93,
|
|
3447
|
+
"column": 26,
|
|
3448
|
+
"index": 2726
|
|
3413
3449
|
},
|
|
3414
3450
|
"end": {
|
|
3415
|
-
"line":
|
|
3416
|
-
"column":
|
|
3417
|
-
"index":
|
|
3451
|
+
"line": 97,
|
|
3452
|
+
"column": 3,
|
|
3453
|
+
"index": 2839
|
|
3418
3454
|
}
|
|
3419
3455
|
},
|
|
3420
|
-
"filepath": "src/components/date_picker/super_date_picker/
|
|
3456
|
+
"filepath": "src/components/date_picker/super_date_picker/time_window_buttons.tsx"
|
|
3421
3457
|
},
|
|
3422
3458
|
{
|
|
3423
|
-
"token": "
|
|
3424
|
-
"defString": "
|
|
3459
|
+
"token": "euiTimeWindowButtons.invalidShiftLabel",
|
|
3460
|
+
"defString": "Cannot shift invalid time window",
|
|
3425
3461
|
"highlighting": "string",
|
|
3426
3462
|
"loc": {
|
|
3427
3463
|
"start": {
|
|
3428
|
-
"line":
|
|
3429
|
-
"column":
|
|
3430
|
-
"index":
|
|
3464
|
+
"line": 98,
|
|
3465
|
+
"column": 34,
|
|
3466
|
+
"index": 2875
|
|
3431
3467
|
},
|
|
3432
3468
|
"end": {
|
|
3433
|
-
"line":
|
|
3434
|
-
"column":
|
|
3435
|
-
"index":
|
|
3469
|
+
"line": 101,
|
|
3470
|
+
"column": 3,
|
|
3471
|
+
"index": 2975
|
|
3436
3472
|
}
|
|
3437
3473
|
},
|
|
3438
|
-
"filepath": "src/components/date_picker/super_date_picker/
|
|
3474
|
+
"filepath": "src/components/date_picker/super_date_picker/time_window_buttons.tsx"
|
|
3439
3475
|
},
|
|
3440
3476
|
{
|
|
3441
|
-
"token": "
|
|
3442
|
-
"defString": "
|
|
3477
|
+
"token": "euiTimeWindowButtons.invalidZoomInLabel",
|
|
3478
|
+
"defString": "Cannot zoom in invalid time window",
|
|
3443
3479
|
"highlighting": "string",
|
|
3444
3480
|
"loc": {
|
|
3445
3481
|
"start": {
|
|
3446
|
-
"line":
|
|
3447
|
-
"column":
|
|
3448
|
-
"index":
|
|
3482
|
+
"line": 102,
|
|
3483
|
+
"column": 35,
|
|
3484
|
+
"index": 3012
|
|
3449
3485
|
},
|
|
3450
3486
|
"end": {
|
|
3451
|
-
"line":
|
|
3452
|
-
"column":
|
|
3453
|
-
"index":
|
|
3487
|
+
"line": 105,
|
|
3488
|
+
"column": 3,
|
|
3489
|
+
"index": 3115
|
|
3454
3490
|
}
|
|
3455
3491
|
},
|
|
3456
|
-
"filepath": "src/components/date_picker/super_date_picker/
|
|
3492
|
+
"filepath": "src/components/date_picker/super_date_picker/time_window_buttons.tsx"
|
|
3457
3493
|
},
|
|
3458
3494
|
{
|
|
3459
|
-
"token": "
|
|
3460
|
-
"defString": "
|
|
3495
|
+
"token": "euiTimeWindowButtons.cannotZoomInLabel",
|
|
3496
|
+
"defString": "Cannot zoom in any further",
|
|
3461
3497
|
"highlighting": "string",
|
|
3462
3498
|
"loc": {
|
|
3463
3499
|
"start": {
|
|
3464
|
-
"line":
|
|
3465
|
-
"column":
|
|
3466
|
-
"index":
|
|
3500
|
+
"line": 106,
|
|
3501
|
+
"column": 34,
|
|
3502
|
+
"index": 3151
|
|
3467
3503
|
},
|
|
3468
3504
|
"end": {
|
|
3469
|
-
"line":
|
|
3470
|
-
"column":
|
|
3471
|
-
"index":
|
|
3505
|
+
"line": 109,
|
|
3506
|
+
"column": 3,
|
|
3507
|
+
"index": 3245
|
|
3472
3508
|
}
|
|
3473
3509
|
},
|
|
3474
|
-
"filepath": "src/components/date_picker/super_date_picker/
|
|
3510
|
+
"filepath": "src/components/date_picker/super_date_picker/time_window_buttons.tsx"
|
|
3475
3511
|
},
|
|
3476
3512
|
{
|
|
3477
|
-
"token": "
|
|
3478
|
-
"defString": "
|
|
3513
|
+
"token": "euiTimeWindowButtons.invalidZoomOutLabel",
|
|
3514
|
+
"defString": "Cannot zoom out invalid time window",
|
|
3479
3515
|
"highlighting": "string",
|
|
3480
3516
|
"loc": {
|
|
3481
3517
|
"start": {
|
|
3482
|
-
"line":
|
|
3483
|
-
"column":
|
|
3484
|
-
"index":
|
|
3518
|
+
"line": 110,
|
|
3519
|
+
"column": 36,
|
|
3520
|
+
"index": 3283
|
|
3485
3521
|
},
|
|
3486
3522
|
"end": {
|
|
3487
|
-
"line":
|
|
3488
|
-
"column":
|
|
3489
|
-
"index":
|
|
3523
|
+
"line": 113,
|
|
3524
|
+
"column": 3,
|
|
3525
|
+
"index": 3388
|
|
3490
3526
|
}
|
|
3491
3527
|
},
|
|
3492
|
-
"filepath": "src/components/date_picker/super_date_picker/
|
|
3528
|
+
"filepath": "src/components/date_picker/super_date_picker/time_window_buttons.tsx"
|
|
3493
3529
|
},
|
|
3494
3530
|
{
|
|
3495
|
-
"token": "
|
|
3496
|
-
"defString": "
|
|
3531
|
+
"token": "euiTimeWindowButtons.previousLabel",
|
|
3532
|
+
"defString": "Previous",
|
|
3497
3533
|
"highlighting": "string",
|
|
3498
3534
|
"loc": {
|
|
3499
3535
|
"start": {
|
|
3500
|
-
"line":
|
|
3536
|
+
"line": 116,
|
|
3501
3537
|
"column": 24,
|
|
3502
|
-
"index":
|
|
3538
|
+
"index": 3480
|
|
3503
3539
|
},
|
|
3504
3540
|
"end": {
|
|
3505
|
-
"line":
|
|
3506
|
-
"column":
|
|
3507
|
-
"index":
|
|
3541
|
+
"line": 119,
|
|
3542
|
+
"column": 3,
|
|
3543
|
+
"index": 3552
|
|
3508
3544
|
}
|
|
3509
3545
|
},
|
|
3510
|
-
"filepath": "src/components/date_picker/super_date_picker/
|
|
3546
|
+
"filepath": "src/components/date_picker/super_date_picker/time_window_buttons.tsx"
|
|
3511
3547
|
},
|
|
3512
3548
|
{
|
|
3513
|
-
"token": "
|
|
3514
|
-
"defString": "
|
|
3549
|
+
"token": "euiTimeWindowButtons.zoomInLabel",
|
|
3550
|
+
"defString": "Zoom in",
|
|
3515
3551
|
"highlighting": "string",
|
|
3516
3552
|
"loc": {
|
|
3517
3553
|
"start": {
|
|
3518
|
-
"line":
|
|
3519
|
-
"column":
|
|
3520
|
-
"index":
|
|
3554
|
+
"line": 125,
|
|
3555
|
+
"column": 22,
|
|
3556
|
+
"index": 3739
|
|
3521
3557
|
},
|
|
3522
3558
|
"end": {
|
|
3523
|
-
"line":
|
|
3524
|
-
"column":
|
|
3525
|
-
"index":
|
|
3559
|
+
"line": 125,
|
|
3560
|
+
"column": 79,
|
|
3561
|
+
"index": 3796
|
|
3526
3562
|
}
|
|
3527
3563
|
},
|
|
3528
|
-
"filepath": "src/components/date_picker/super_date_picker/
|
|
3564
|
+
"filepath": "src/components/date_picker/super_date_picker/time_window_buttons.tsx"
|
|
3529
3565
|
},
|
|
3530
3566
|
{
|
|
3531
|
-
"token": "
|
|
3532
|
-
"defString": "
|
|
3567
|
+
"token": "euiTimeWindowButtons.zoomOutLabel",
|
|
3568
|
+
"defString": "Zoom out",
|
|
3533
3569
|
"highlighting": "string",
|
|
3534
3570
|
"loc": {
|
|
3535
3571
|
"start": {
|
|
3536
|
-
"line":
|
|
3572
|
+
"line": 133,
|
|
3573
|
+
"column": 23,
|
|
3574
|
+
"index": 4034
|
|
3575
|
+
},
|
|
3576
|
+
"end": {
|
|
3577
|
+
"line": 136,
|
|
3578
|
+
"column": 3,
|
|
3579
|
+
"index": 4105
|
|
3580
|
+
}
|
|
3581
|
+
},
|
|
3582
|
+
"filepath": "src/components/date_picker/super_date_picker/time_window_buttons.tsx"
|
|
3583
|
+
},
|
|
3584
|
+
{
|
|
3585
|
+
"token": "euiTimeWindowButtons.nextLabel",
|
|
3586
|
+
"defString": "Next",
|
|
3587
|
+
"highlighting": "string",
|
|
3588
|
+
"loc": {
|
|
3589
|
+
"start": {
|
|
3590
|
+
"line": 142,
|
|
3591
|
+
"column": 20,
|
|
3592
|
+
"index": 4279
|
|
3593
|
+
},
|
|
3594
|
+
"end": {
|
|
3595
|
+
"line": 142,
|
|
3596
|
+
"column": 72,
|
|
3597
|
+
"index": 4331
|
|
3598
|
+
}
|
|
3599
|
+
},
|
|
3600
|
+
"filepath": "src/components/date_picker/super_date_picker/time_window_buttons.tsx"
|
|
3601
|
+
},
|
|
3602
|
+
{
|
|
3603
|
+
"token": "euiTimeOptions.last",
|
|
3604
|
+
"defString": "Last",
|
|
3605
|
+
"highlighting": "string",
|
|
3606
|
+
"loc": {
|
|
3607
|
+
"start": {
|
|
3608
|
+
"line": 35,
|
|
3609
|
+
"column": 25,
|
|
3610
|
+
"index": 1138
|
|
3611
|
+
},
|
|
3612
|
+
"end": {
|
|
3613
|
+
"line": 35,
|
|
3614
|
+
"column": 66,
|
|
3615
|
+
"index": 1179
|
|
3616
|
+
}
|
|
3617
|
+
},
|
|
3618
|
+
"filepath": "src/components/date_picker/super_date_picker/time_options.tsx"
|
|
3619
|
+
},
|
|
3620
|
+
{
|
|
3621
|
+
"token": "euiTimeOptions.next",
|
|
3622
|
+
"defString": "Next",
|
|
3623
|
+
"highlighting": "string",
|
|
3624
|
+
"loc": {
|
|
3625
|
+
"start": {
|
|
3626
|
+
"line": 36,
|
|
3627
|
+
"column": 25,
|
|
3628
|
+
"index": 1208
|
|
3629
|
+
},
|
|
3630
|
+
"end": {
|
|
3631
|
+
"line": 36,
|
|
3632
|
+
"column": 66,
|
|
3633
|
+
"index": 1249
|
|
3634
|
+
}
|
|
3635
|
+
},
|
|
3636
|
+
"filepath": "src/components/date_picker/super_date_picker/time_options.tsx"
|
|
3637
|
+
},
|
|
3638
|
+
{
|
|
3639
|
+
"token": "euiTimeOptions.seconds",
|
|
3640
|
+
"defString": "Seconds",
|
|
3641
|
+
"highlighting": "string",
|
|
3642
|
+
"loc": {
|
|
3643
|
+
"start": {
|
|
3644
|
+
"line": 40,
|
|
3645
|
+
"column": 24,
|
|
3646
|
+
"index": 1312
|
|
3647
|
+
},
|
|
3648
|
+
"end": {
|
|
3649
|
+
"line": 40,
|
|
3650
|
+
"column": 71,
|
|
3651
|
+
"index": 1359
|
|
3652
|
+
}
|
|
3653
|
+
},
|
|
3654
|
+
"filepath": "src/components/date_picker/super_date_picker/time_options.tsx"
|
|
3655
|
+
},
|
|
3656
|
+
{
|
|
3657
|
+
"token": "euiTimeOptions.minutes",
|
|
3658
|
+
"defString": "Minutes",
|
|
3659
|
+
"highlighting": "string",
|
|
3660
|
+
"loc": {
|
|
3661
|
+
"start": {
|
|
3662
|
+
"line": 41,
|
|
3663
|
+
"column": 24,
|
|
3664
|
+
"index": 1387
|
|
3665
|
+
},
|
|
3666
|
+
"end": {
|
|
3667
|
+
"line": 41,
|
|
3668
|
+
"column": 71,
|
|
3669
|
+
"index": 1434
|
|
3670
|
+
}
|
|
3671
|
+
},
|
|
3672
|
+
"filepath": "src/components/date_picker/super_date_picker/time_options.tsx"
|
|
3673
|
+
},
|
|
3674
|
+
{
|
|
3675
|
+
"token": "euiTimeOptions.hours",
|
|
3676
|
+
"defString": "Hours",
|
|
3677
|
+
"highlighting": "string",
|
|
3678
|
+
"loc": {
|
|
3679
|
+
"start": {
|
|
3680
|
+
"line": 42,
|
|
3681
|
+
"column": 24,
|
|
3682
|
+
"index": 1462
|
|
3683
|
+
},
|
|
3684
|
+
"end": {
|
|
3685
|
+
"line": 42,
|
|
3686
|
+
"column": 67,
|
|
3687
|
+
"index": 1505
|
|
3688
|
+
}
|
|
3689
|
+
},
|
|
3690
|
+
"filepath": "src/components/date_picker/super_date_picker/time_options.tsx"
|
|
3691
|
+
},
|
|
3692
|
+
{
|
|
3693
|
+
"token": "euiTimeOptions.days",
|
|
3694
|
+
"defString": "Days",
|
|
3695
|
+
"highlighting": "string",
|
|
3696
|
+
"loc": {
|
|
3697
|
+
"start": {
|
|
3698
|
+
"line": 43,
|
|
3699
|
+
"column": 24,
|
|
3700
|
+
"index": 1533
|
|
3701
|
+
},
|
|
3702
|
+
"end": {
|
|
3703
|
+
"line": 43,
|
|
3704
|
+
"column": 65,
|
|
3705
|
+
"index": 1574
|
|
3706
|
+
}
|
|
3707
|
+
},
|
|
3708
|
+
"filepath": "src/components/date_picker/super_date_picker/time_options.tsx"
|
|
3709
|
+
},
|
|
3710
|
+
{
|
|
3711
|
+
"token": "euiTimeOptions.weeks",
|
|
3712
|
+
"defString": "Weeks",
|
|
3713
|
+
"highlighting": "string",
|
|
3714
|
+
"loc": {
|
|
3715
|
+
"start": {
|
|
3716
|
+
"line": 44,
|
|
3717
|
+
"column": 24,
|
|
3718
|
+
"index": 1602
|
|
3719
|
+
},
|
|
3720
|
+
"end": {
|
|
3721
|
+
"line": 44,
|
|
3722
|
+
"column": 67,
|
|
3723
|
+
"index": 1645
|
|
3724
|
+
}
|
|
3725
|
+
},
|
|
3726
|
+
"filepath": "src/components/date_picker/super_date_picker/time_options.tsx"
|
|
3727
|
+
},
|
|
3728
|
+
{
|
|
3729
|
+
"token": "euiTimeOptions.months",
|
|
3730
|
+
"defString": "Months",
|
|
3731
|
+
"highlighting": "string",
|
|
3732
|
+
"loc": {
|
|
3733
|
+
"start": {
|
|
3734
|
+
"line": 45,
|
|
3735
|
+
"column": 24,
|
|
3736
|
+
"index": 1673
|
|
3737
|
+
},
|
|
3738
|
+
"end": {
|
|
3739
|
+
"line": 45,
|
|
3740
|
+
"column": 69,
|
|
3741
|
+
"index": 1718
|
|
3742
|
+
}
|
|
3743
|
+
},
|
|
3744
|
+
"filepath": "src/components/date_picker/super_date_picker/time_options.tsx"
|
|
3745
|
+
},
|
|
3746
|
+
{
|
|
3747
|
+
"token": "euiTimeOptions.years",
|
|
3748
|
+
"defString": "Years",
|
|
3749
|
+
"highlighting": "string",
|
|
3750
|
+
"loc": {
|
|
3751
|
+
"start": {
|
|
3752
|
+
"line": 46,
|
|
3753
|
+
"column": 24,
|
|
3754
|
+
"index": 1746
|
|
3755
|
+
},
|
|
3756
|
+
"end": {
|
|
3757
|
+
"line": 46,
|
|
3758
|
+
"column": 67,
|
|
3759
|
+
"index": 1789
|
|
3760
|
+
}
|
|
3761
|
+
},
|
|
3762
|
+
"filepath": "src/components/date_picker/super_date_picker/time_options.tsx"
|
|
3763
|
+
},
|
|
3764
|
+
{
|
|
3765
|
+
"token": "euiTimeOptions.secondsAgo",
|
|
3766
|
+
"defString": "Seconds ago",
|
|
3767
|
+
"highlighting": "string",
|
|
3768
|
+
"loc": {
|
|
3769
|
+
"start": {
|
|
3770
|
+
"line": 54,
|
|
3537
3771
|
"column": 12,
|
|
3538
3772
|
"index": 1893
|
|
3539
3773
|
},
|
|
@@ -4049,186 +4283,6 @@
|
|
|
4049
4283
|
},
|
|
4050
4284
|
"filepath": "src/components/date_picker/super_date_picker/time_options.tsx"
|
|
4051
4285
|
},
|
|
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
|
|
4169
|
-
},
|
|
4170
|
-
"end": {
|
|
4171
|
-
"line": 119,
|
|
4172
|
-
"column": 3,
|
|
4173
|
-
"index": 3552
|
|
4174
|
-
}
|
|
4175
|
-
},
|
|
4176
|
-
"filepath": "src/components/date_picker/super_date_picker/time_window_buttons.tsx"
|
|
4177
|
-
},
|
|
4178
|
-
{
|
|
4179
|
-
"token": "euiTimeWindowButtons.zoomInLabel",
|
|
4180
|
-
"defString": "Zoom in",
|
|
4181
|
-
"highlighting": "string",
|
|
4182
|
-
"loc": {
|
|
4183
|
-
"start": {
|
|
4184
|
-
"line": 125,
|
|
4185
|
-
"column": 22,
|
|
4186
|
-
"index": 3739
|
|
4187
|
-
},
|
|
4188
|
-
"end": {
|
|
4189
|
-
"line": 125,
|
|
4190
|
-
"column": 79,
|
|
4191
|
-
"index": 3796
|
|
4192
|
-
}
|
|
4193
|
-
},
|
|
4194
|
-
"filepath": "src/components/date_picker/super_date_picker/time_window_buttons.tsx"
|
|
4195
|
-
},
|
|
4196
|
-
{
|
|
4197
|
-
"token": "euiTimeWindowButtons.zoomOutLabel",
|
|
4198
|
-
"defString": "Zoom out",
|
|
4199
|
-
"highlighting": "string",
|
|
4200
|
-
"loc": {
|
|
4201
|
-
"start": {
|
|
4202
|
-
"line": 133,
|
|
4203
|
-
"column": 23,
|
|
4204
|
-
"index": 4034
|
|
4205
|
-
},
|
|
4206
|
-
"end": {
|
|
4207
|
-
"line": 136,
|
|
4208
|
-
"column": 3,
|
|
4209
|
-
"index": 4105
|
|
4210
|
-
}
|
|
4211
|
-
},
|
|
4212
|
-
"filepath": "src/components/date_picker/super_date_picker/time_window_buttons.tsx"
|
|
4213
|
-
},
|
|
4214
|
-
{
|
|
4215
|
-
"token": "euiTimeWindowButtons.nextLabel",
|
|
4216
|
-
"defString": "Next",
|
|
4217
|
-
"highlighting": "string",
|
|
4218
|
-
"loc": {
|
|
4219
|
-
"start": {
|
|
4220
|
-
"line": 142,
|
|
4221
|
-
"column": 20,
|
|
4222
|
-
"index": 4279
|
|
4223
|
-
},
|
|
4224
|
-
"end": {
|
|
4225
|
-
"line": 142,
|
|
4226
|
-
"column": 72,
|
|
4227
|
-
"index": 4331
|
|
4228
|
-
}
|
|
4229
|
-
},
|
|
4230
|
-
"filepath": "src/components/date_picker/super_date_picker/time_window_buttons.tsx"
|
|
4231
|
-
},
|
|
4232
4286
|
{
|
|
4233
4287
|
"token": "euiSuperUpdateButton.updatingButtonLabel",
|
|
4234
4288
|
"defString": "Updating",
|
|
@@ -4919,14 +4973,14 @@
|
|
|
4919
4973
|
"highlighting": "string",
|
|
4920
4974
|
"loc": {
|
|
4921
4975
|
"start": {
|
|
4922
|
-
"line":
|
|
4976
|
+
"line": 207,
|
|
4923
4977
|
"column": 6,
|
|
4924
|
-
"index":
|
|
4978
|
+
"index": 5780
|
|
4925
4979
|
},
|
|
4926
4980
|
"end": {
|
|
4927
|
-
"line":
|
|
4981
|
+
"line": 214,
|
|
4928
4982
|
"column": 8,
|
|
4929
|
-
"index":
|
|
4983
|
+
"index": 6010
|
|
4930
4984
|
}
|
|
4931
4985
|
},
|
|
4932
4986
|
"filepath": "src/components/date_picker/auto_refresh/refresh_interval.tsx"
|
|
@@ -4937,14 +4991,14 @@
|
|
|
4937
4991
|
"highlighting": "string",
|
|
4938
4992
|
"loc": {
|
|
4939
4993
|
"start": {
|
|
4940
|
-
"line":
|
|
4994
|
+
"line": 216,
|
|
4941
4995
|
"column": 6,
|
|
4942
|
-
"index":
|
|
4996
|
+
"index": 6027
|
|
4943
4997
|
},
|
|
4944
4998
|
"end": {
|
|
4945
|
-
"line":
|
|
4999
|
+
"line": 223,
|
|
4946
5000
|
"column": 8,
|
|
4947
|
-
"index":
|
|
5001
|
+
"index": 6255
|
|
4948
5002
|
}
|
|
4949
5003
|
},
|
|
4950
5004
|
"filepath": "src/components/date_picker/auto_refresh/refresh_interval.tsx"
|
|
@@ -4955,14 +5009,14 @@
|
|
|
4955
5009
|
"highlighting": "string",
|
|
4956
5010
|
"loc": {
|
|
4957
5011
|
"start": {
|
|
4958
|
-
"line":
|
|
4959
|
-
"column":
|
|
4960
|
-
"index":
|
|
5012
|
+
"line": 236,
|
|
5013
|
+
"column": 4,
|
|
5014
|
+
"index": 6459
|
|
4961
5015
|
},
|
|
4962
5016
|
"end": {
|
|
4963
|
-
"line":
|
|
4964
|
-
"column":
|
|
4965
|
-
"index":
|
|
5017
|
+
"line": 249,
|
|
5018
|
+
"column": 5,
|
|
5019
|
+
"index": 6822
|
|
4966
5020
|
}
|
|
4967
5021
|
},
|
|
4968
5022
|
"filepath": "src/components/date_picker/auto_refresh/refresh_interval.tsx"
|
|
@@ -4973,14 +5027,14 @@
|
|
|
4973
5027
|
"highlighting": "string",
|
|
4974
5028
|
"loc": {
|
|
4975
5029
|
"start": {
|
|
4976
|
-
"line":
|
|
4977
|
-
"column":
|
|
4978
|
-
"index":
|
|
5030
|
+
"line": 236,
|
|
5031
|
+
"column": 4,
|
|
5032
|
+
"index": 6459
|
|
4979
5033
|
},
|
|
4980
5034
|
"end": {
|
|
4981
|
-
"line":
|
|
4982
|
-
"column":
|
|
4983
|
-
"index":
|
|
5035
|
+
"line": 249,
|
|
5036
|
+
"column": 5,
|
|
5037
|
+
"index": 6822
|
|
4984
5038
|
}
|
|
4985
5039
|
},
|
|
4986
5040
|
"filepath": "src/components/date_picker/auto_refresh/refresh_interval.tsx"
|
|
@@ -4991,14 +5045,14 @@
|
|
|
4991
5045
|
"highlighting": "string",
|
|
4992
5046
|
"loc": {
|
|
4993
5047
|
"start": {
|
|
4994
|
-
"line":
|
|
4995
|
-
"column":
|
|
4996
|
-
"index":
|
|
5048
|
+
"line": 236,
|
|
5049
|
+
"column": 4,
|
|
5050
|
+
"index": 6459
|
|
4997
5051
|
},
|
|
4998
5052
|
"end": {
|
|
4999
|
-
"line":
|
|
5000
|
-
"column":
|
|
5001
|
-
"index":
|
|
5053
|
+
"line": 249,
|
|
5054
|
+
"column": 5,
|
|
5055
|
+
"index": 6822
|
|
5002
5056
|
}
|
|
5003
5057
|
},
|
|
5004
5058
|
"filepath": "src/components/date_picker/auto_refresh/refresh_interval.tsx"
|
|
@@ -5009,14 +5063,14 @@
|
|
|
5009
5063
|
"highlighting": "string",
|
|
5010
5064
|
"loc": {
|
|
5011
5065
|
"start": {
|
|
5012
|
-
"line":
|
|
5013
|
-
"column":
|
|
5014
|
-
"index":
|
|
5066
|
+
"line": 236,
|
|
5067
|
+
"column": 4,
|
|
5068
|
+
"index": 6459
|
|
5015
5069
|
},
|
|
5016
5070
|
"end": {
|
|
5017
|
-
"line":
|
|
5018
|
-
"column":
|
|
5019
|
-
"index":
|
|
5071
|
+
"line": 249,
|
|
5072
|
+
"column": 5,
|
|
5073
|
+
"index": 6822
|
|
5020
5074
|
}
|
|
5021
5075
|
},
|
|
5022
5076
|
"filepath": "src/components/date_picker/auto_refresh/refresh_interval.tsx"
|
|
@@ -5027,14 +5081,14 @@
|
|
|
5027
5081
|
"highlighting": "string",
|
|
5028
5082
|
"loc": {
|
|
5029
5083
|
"start": {
|
|
5030
|
-
"line":
|
|
5084
|
+
"line": 51,
|
|
5031
5085
|
"column": 26,
|
|
5032
|
-
"index":
|
|
5086
|
+
"index": 1720
|
|
5033
5087
|
},
|
|
5034
5088
|
"end": {
|
|
5035
|
-
"line":
|
|
5089
|
+
"line": 54,
|
|
5036
5090
|
"column": 3,
|
|
5037
|
-
"index":
|
|
5091
|
+
"index": 1793
|
|
5038
5092
|
}
|
|
5039
5093
|
},
|
|
5040
5094
|
"filepath": "src/components/date_picker/auto_refresh/auto_refresh.tsx"
|
|
@@ -5045,14 +5099,14 @@
|
|
|
5045
5099
|
"highlighting": "string",
|
|
5046
5100
|
"loc": {
|
|
5047
5101
|
"start": {
|
|
5048
|
-
"line":
|
|
5102
|
+
"line": 126,
|
|
5049
5103
|
"column": 29,
|
|
5050
|
-
"index":
|
|
5104
|
+
"index": 3683
|
|
5051
5105
|
},
|
|
5052
5106
|
"end": {
|
|
5053
|
-
"line":
|
|
5107
|
+
"line": 129,
|
|
5054
5108
|
"column": 3,
|
|
5055
|
-
"index":
|
|
5109
|
+
"index": 3761
|
|
5056
5110
|
}
|
|
5057
5111
|
},
|
|
5058
5112
|
"filepath": "src/components/date_picker/auto_refresh/auto_refresh.tsx"
|
|
@@ -5063,14 +5117,14 @@
|
|
|
5063
5117
|
"highlighting": "string",
|
|
5064
5118
|
"loc": {
|
|
5065
5119
|
"start": {
|
|
5066
|
-
"line":
|
|
5120
|
+
"line": 130,
|
|
5067
5121
|
"column": 28,
|
|
5068
|
-
"index":
|
|
5122
|
+
"index": 3791
|
|
5069
5123
|
},
|
|
5070
5124
|
"end": {
|
|
5071
|
-
"line":
|
|
5125
|
+
"line": 138,
|
|
5072
5126
|
"column": 3,
|
|
5073
|
-
"index":
|
|
5127
|
+
"index": 4025
|
|
5074
5128
|
}
|
|
5075
5129
|
},
|
|
5076
5130
|
"filepath": "src/components/date_picker/auto_refresh/auto_refresh.tsx"
|
|
@@ -5317,12 +5371,12 @@
|
|
|
5317
5371
|
"start": {
|
|
5318
5372
|
"line": 70,
|
|
5319
5373
|
"column": 20,
|
|
5320
|
-
"index":
|
|
5374
|
+
"index": 2433
|
|
5321
5375
|
},
|
|
5322
5376
|
"end": {
|
|
5323
5377
|
"line": 73,
|
|
5324
5378
|
"column": 22,
|
|
5325
|
-
"index":
|
|
5379
|
+
"index": 2569
|
|
5326
5380
|
}
|
|
5327
5381
|
},
|
|
5328
5382
|
"filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
|
|
@@ -5335,12 +5389,12 @@
|
|
|
5335
5389
|
"start": {
|
|
5336
5390
|
"line": 77,
|
|
5337
5391
|
"column": 18,
|
|
5338
|
-
"index":
|
|
5392
|
+
"index": 2663
|
|
5339
5393
|
},
|
|
5340
5394
|
"end": {
|
|
5341
5395
|
"line": 80,
|
|
5342
5396
|
"column": 20,
|
|
5343
|
-
"index":
|
|
5397
|
+
"index": 2807
|
|
5344
5398
|
}
|
|
5345
5399
|
},
|
|
5346
5400
|
"filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
|
|
@@ -5353,12 +5407,12 @@
|
|
|
5353
5407
|
"start": {
|
|
5354
5408
|
"line": 86,
|
|
5355
5409
|
"column": 20,
|
|
5356
|
-
"index":
|
|
5410
|
+
"index": 2929
|
|
5357
5411
|
},
|
|
5358
5412
|
"end": {
|
|
5359
5413
|
"line": 89,
|
|
5360
5414
|
"column": 22,
|
|
5361
|
-
"index":
|
|
5415
|
+
"index": 3069
|
|
5362
5416
|
}
|
|
5363
5417
|
},
|
|
5364
5418
|
"filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
|
|
@@ -5371,12 +5425,12 @@
|
|
|
5371
5425
|
"start": {
|
|
5372
5426
|
"line": 93,
|
|
5373
5427
|
"column": 18,
|
|
5374
|
-
"index":
|
|
5428
|
+
"index": 3163
|
|
5375
5429
|
},
|
|
5376
5430
|
"end": {
|
|
5377
5431
|
"line": 96,
|
|
5378
5432
|
"column": 20,
|
|
5379
|
-
"index":
|
|
5433
|
+
"index": 3311
|
|
5380
5434
|
}
|
|
5381
5435
|
},
|
|
5382
5436
|
"filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
|
|
@@ -5389,12 +5443,12 @@
|
|
|
5389
5443
|
"start": {
|
|
5390
5444
|
"line": 102,
|
|
5391
5445
|
"column": 20,
|
|
5392
|
-
"index":
|
|
5446
|
+
"index": 3433
|
|
5393
5447
|
},
|
|
5394
5448
|
"end": {
|
|
5395
5449
|
"line": 105,
|
|
5396
5450
|
"column": 22,
|
|
5397
|
-
"index":
|
|
5451
|
+
"index": 3575
|
|
5398
5452
|
}
|
|
5399
5453
|
},
|
|
5400
5454
|
"filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
|
|
@@ -5407,12 +5461,12 @@
|
|
|
5407
5461
|
"start": {
|
|
5408
5462
|
"line": 109,
|
|
5409
5463
|
"column": 18,
|
|
5410
|
-
"index":
|
|
5464
|
+
"index": 3669
|
|
5411
5465
|
},
|
|
5412
5466
|
"end": {
|
|
5413
5467
|
"line": 112,
|
|
5414
5468
|
"column": 20,
|
|
5415
|
-
"index":
|
|
5469
|
+
"index": 3819
|
|
5416
5470
|
}
|
|
5417
5471
|
},
|
|
5418
5472
|
"filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
|
|
@@ -5425,12 +5479,12 @@
|
|
|
5425
5479
|
"start": {
|
|
5426
5480
|
"line": 118,
|
|
5427
5481
|
"column": 20,
|
|
5428
|
-
"index":
|
|
5482
|
+
"index": 3941
|
|
5429
5483
|
},
|
|
5430
5484
|
"end": {
|
|
5431
5485
|
"line": 121,
|
|
5432
5486
|
"column": 22,
|
|
5433
|
-
"index":
|
|
5487
|
+
"index": 4081
|
|
5434
5488
|
}
|
|
5435
5489
|
},
|
|
5436
5490
|
"filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
|
|
@@ -5443,12 +5497,12 @@
|
|
|
5443
5497
|
"start": {
|
|
5444
5498
|
"line": 125,
|
|
5445
5499
|
"column": 18,
|
|
5446
|
-
"index":
|
|
5500
|
+
"index": 4175
|
|
5447
5501
|
},
|
|
5448
5502
|
"end": {
|
|
5449
5503
|
"line": 128,
|
|
5450
5504
|
"column": 20,
|
|
5451
|
-
"index":
|
|
5505
|
+
"index": 4323
|
|
5452
5506
|
}
|
|
5453
5507
|
},
|
|
5454
5508
|
"filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
|
|
@@ -5461,12 +5515,12 @@
|
|
|
5461
5515
|
"start": {
|
|
5462
5516
|
"line": 134,
|
|
5463
5517
|
"column": 20,
|
|
5464
|
-
"index":
|
|
5518
|
+
"index": 4445
|
|
5465
5519
|
},
|
|
5466
5520
|
"end": {
|
|
5467
5521
|
"line": 137,
|
|
5468
5522
|
"column": 22,
|
|
5469
|
-
"index":
|
|
5523
|
+
"index": 4574
|
|
5470
5524
|
}
|
|
5471
5525
|
},
|
|
5472
5526
|
"filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
|
|
@@ -5479,12 +5533,12 @@
|
|
|
5479
5533
|
"start": {
|
|
5480
5534
|
"line": 141,
|
|
5481
5535
|
"column": 18,
|
|
5482
|
-
"index":
|
|
5536
|
+
"index": 4668
|
|
5483
5537
|
},
|
|
5484
5538
|
"end": {
|
|
5485
5539
|
"line": 144,
|
|
5486
5540
|
"column": 20,
|
|
5487
|
-
"index":
|
|
5541
|
+
"index": 4834
|
|
5488
5542
|
}
|
|
5489
5543
|
},
|
|
5490
5544
|
"filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
|
|
@@ -5497,12 +5551,12 @@
|
|
|
5497
5551
|
"start": {
|
|
5498
5552
|
"line": 150,
|
|
5499
5553
|
"column": 20,
|
|
5500
|
-
"index":
|
|
5554
|
+
"index": 4956
|
|
5501
5555
|
},
|
|
5502
5556
|
"end": {
|
|
5503
5557
|
"line": 153,
|
|
5504
5558
|
"column": 22,
|
|
5505
|
-
"index":
|
|
5559
|
+
"index": 5083
|
|
5506
5560
|
}
|
|
5507
5561
|
},
|
|
5508
5562
|
"filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
|
|
@@ -5515,12 +5569,12 @@
|
|
|
5515
5569
|
"start": {
|
|
5516
5570
|
"line": 157,
|
|
5517
5571
|
"column": 18,
|
|
5518
|
-
"index":
|
|
5572
|
+
"index": 5177
|
|
5519
5573
|
},
|
|
5520
5574
|
"end": {
|
|
5521
5575
|
"line": 160,
|
|
5522
5576
|
"column": 20,
|
|
5523
|
-
"index":
|
|
5577
|
+
"index": 5341
|
|
5524
5578
|
}
|
|
5525
5579
|
},
|
|
5526
5580
|
"filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
|
|
@@ -5533,12 +5587,12 @@
|
|
|
5533
5587
|
"start": {
|
|
5534
5588
|
"line": 167,
|
|
5535
5589
|
"column": 22,
|
|
5536
|
-
"index":
|
|
5590
|
+
"index": 5488
|
|
5537
5591
|
},
|
|
5538
5592
|
"end": {
|
|
5539
5593
|
"line": 170,
|
|
5540
5594
|
"column": 24,
|
|
5541
|
-
"index":
|
|
5595
|
+
"index": 5618
|
|
5542
5596
|
}
|
|
5543
5597
|
},
|
|
5544
5598
|
"filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
|
|
@@ -5551,12 +5605,12 @@
|
|
|
5551
5605
|
"start": {
|
|
5552
5606
|
"line": 173,
|
|
5553
5607
|
"column": 22,
|
|
5554
|
-
"index":
|
|
5608
|
+
"index": 5699
|
|
5555
5609
|
},
|
|
5556
5610
|
"end": {
|
|
5557
5611
|
"line": 176,
|
|
5558
5612
|
"column": 24,
|
|
5559
|
-
"index":
|
|
5613
|
+
"index": 5834
|
|
5560
5614
|
}
|
|
5561
5615
|
},
|
|
5562
5616
|
"filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
|
|
@@ -5569,12 +5623,12 @@
|
|
|
5569
5623
|
"start": {
|
|
5570
5624
|
"line": 181,
|
|
5571
5625
|
"column": 18,
|
|
5572
|
-
"index":
|
|
5626
|
+
"index": 5952
|
|
5573
5627
|
},
|
|
5574
5628
|
"end": {
|
|
5575
5629
|
"line": 184,
|
|
5576
5630
|
"column": 20,
|
|
5577
|
-
"index":
|
|
5631
|
+
"index": 6123
|
|
5578
5632
|
}
|
|
5579
5633
|
},
|
|
5580
5634
|
"filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
|
|
@@ -5587,12 +5641,12 @@
|
|
|
5587
5641
|
"start": {
|
|
5588
5642
|
"line": 191,
|
|
5589
5643
|
"column": 22,
|
|
5590
|
-
"index":
|
|
5644
|
+
"index": 6270
|
|
5591
5645
|
},
|
|
5592
5646
|
"end": {
|
|
5593
5647
|
"line": 194,
|
|
5594
5648
|
"column": 24,
|
|
5595
|
-
"index":
|
|
5649
|
+
"index": 6400
|
|
5596
5650
|
}
|
|
5597
5651
|
},
|
|
5598
5652
|
"filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
|
|
@@ -5605,12 +5659,12 @@
|
|
|
5605
5659
|
"start": {
|
|
5606
5660
|
"line": 197,
|
|
5607
5661
|
"column": 22,
|
|
5608
|
-
"index":
|
|
5662
|
+
"index": 6481
|
|
5609
5663
|
},
|
|
5610
5664
|
"end": {
|
|
5611
5665
|
"line": 200,
|
|
5612
5666
|
"column": 24,
|
|
5613
|
-
"index":
|
|
5667
|
+
"index": 6614
|
|
5614
5668
|
}
|
|
5615
5669
|
},
|
|
5616
5670
|
"filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
|
|
@@ -5623,12 +5677,12 @@
|
|
|
5623
5677
|
"start": {
|
|
5624
5678
|
"line": 205,
|
|
5625
5679
|
"column": 18,
|
|
5626
|
-
"index":
|
|
5680
|
+
"index": 6732
|
|
5627
5681
|
},
|
|
5628
5682
|
"end": {
|
|
5629
5683
|
"line": 208,
|
|
5630
5684
|
"column": 20,
|
|
5631
|
-
"index":
|
|
5685
|
+
"index": 6901
|
|
5632
5686
|
}
|
|
5633
5687
|
},
|
|
5634
5688
|
"filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
|
|
@@ -5641,12 +5695,12 @@
|
|
|
5641
5695
|
"start": {
|
|
5642
5696
|
"line": 214,
|
|
5643
5697
|
"column": 20,
|
|
5644
|
-
"index":
|
|
5698
|
+
"index": 7023
|
|
5645
5699
|
},
|
|
5646
5700
|
"end": {
|
|
5647
5701
|
"line": 217,
|
|
5648
5702
|
"column": 22,
|
|
5649
|
-
"index":
|
|
5703
|
+
"index": 7157
|
|
5650
5704
|
}
|
|
5651
5705
|
},
|
|
5652
5706
|
"filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
|
|
@@ -5659,12 +5713,12 @@
|
|
|
5659
5713
|
"start": {
|
|
5660
5714
|
"line": 221,
|
|
5661
5715
|
"column": 18,
|
|
5662
|
-
"index":
|
|
5716
|
+
"index": 7251
|
|
5663
5717
|
},
|
|
5664
5718
|
"end": {
|
|
5665
5719
|
"line": 224,
|
|
5666
5720
|
"column": 20,
|
|
5667
|
-
"index":
|
|
5721
|
+
"index": 7417
|
|
5668
5722
|
}
|
|
5669
5723
|
},
|
|
5670
5724
|
"filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
|
|
@@ -5677,12 +5731,12 @@
|
|
|
5677
5731
|
"start": {
|
|
5678
5732
|
"line": 230,
|
|
5679
5733
|
"column": 20,
|
|
5680
|
-
"index":
|
|
5734
|
+
"index": 7539
|
|
5681
5735
|
},
|
|
5682
5736
|
"end": {
|
|
5683
5737
|
"line": 233,
|
|
5684
5738
|
"column": 22,
|
|
5685
|
-
"index":
|
|
5739
|
+
"index": 7677
|
|
5686
5740
|
}
|
|
5687
5741
|
},
|
|
5688
5742
|
"filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
|
|
@@ -5695,12 +5749,12 @@
|
|
|
5695
5749
|
"start": {
|
|
5696
5750
|
"line": 237,
|
|
5697
5751
|
"column": 18,
|
|
5698
|
-
"index":
|
|
5752
|
+
"index": 7771
|
|
5699
5753
|
},
|
|
5700
5754
|
"end": {
|
|
5701
5755
|
"line": 240,
|
|
5702
5756
|
"column": 20,
|
|
5703
|
-
"index":
|
|
5757
|
+
"index": 7936
|
|
5704
5758
|
}
|
|
5705
5759
|
},
|
|
5706
5760
|
"filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
|
|
@@ -5713,12 +5767,12 @@
|
|
|
5713
5767
|
"start": {
|
|
5714
5768
|
"line": 246,
|
|
5715
5769
|
"column": 20,
|
|
5716
|
-
"index":
|
|
5770
|
+
"index": 8058
|
|
5717
5771
|
},
|
|
5718
5772
|
"end": {
|
|
5719
5773
|
"line": 249,
|
|
5720
5774
|
"column": 22,
|
|
5721
|
-
"index":
|
|
5775
|
+
"index": 8189
|
|
5722
5776
|
}
|
|
5723
5777
|
},
|
|
5724
5778
|
"filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
|
|
@@ -5731,12 +5785,12 @@
|
|
|
5731
5785
|
"start": {
|
|
5732
5786
|
"line": 253,
|
|
5733
5787
|
"column": 18,
|
|
5734
|
-
"index":
|
|
5788
|
+
"index": 8283
|
|
5735
5789
|
},
|
|
5736
5790
|
"end": {
|
|
5737
5791
|
"line": 256,
|
|
5738
5792
|
"column": 20,
|
|
5739
|
-
"index":
|
|
5793
|
+
"index": 8438
|
|
5740
5794
|
}
|
|
5741
5795
|
},
|
|
5742
5796
|
"filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
|
|
@@ -5749,12 +5803,12 @@
|
|
|
5749
5803
|
"start": {
|
|
5750
5804
|
"line": 262,
|
|
5751
5805
|
"column": 20,
|
|
5752
|
-
"index":
|
|
5806
|
+
"index": 8560
|
|
5753
5807
|
},
|
|
5754
5808
|
"end": {
|
|
5755
5809
|
"line": 265,
|
|
5756
5810
|
"column": 22,
|
|
5757
|
-
"index":
|
|
5811
|
+
"index": 8693
|
|
5758
5812
|
}
|
|
5759
5813
|
},
|
|
5760
5814
|
"filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
|
|
@@ -5767,12 +5821,12 @@
|
|
|
5767
5821
|
"start": {
|
|
5768
5822
|
"line": 269,
|
|
5769
5823
|
"column": 18,
|
|
5770
|
-
"index":
|
|
5824
|
+
"index": 8787
|
|
5771
5825
|
},
|
|
5772
5826
|
"end": {
|
|
5773
5827
|
"line": 272,
|
|
5774
5828
|
"column": 20,
|
|
5775
|
-
"index":
|
|
5829
|
+
"index": 8944
|
|
5776
5830
|
}
|
|
5777
5831
|
},
|
|
5778
5832
|
"filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
|
|
@@ -5983,12 +6037,12 @@
|
|
|
5983
6037
|
"start": {
|
|
5984
6038
|
"line": 472,
|
|
5985
6039
|
"column": 27,
|
|
5986
|
-
"index":
|
|
6040
|
+
"index": 14026
|
|
5987
6041
|
},
|
|
5988
6042
|
"end": {
|
|
5989
6043
|
"line": 475,
|
|
5990
6044
|
"column": 3,
|
|
5991
|
-
"index":
|
|
6045
|
+
"index": 14106
|
|
5992
6046
|
}
|
|
5993
6047
|
},
|
|
5994
6048
|
"filepath": "src/components/datagrid/controls/display_selector.tsx"
|
|
@@ -6323,14 +6377,14 @@
|
|
|
6323
6377
|
"highlighting": "string",
|
|
6324
6378
|
"loc": {
|
|
6325
6379
|
"start": {
|
|
6326
|
-
"line":
|
|
6380
|
+
"line": 447,
|
|
6327
6381
|
"column": 12,
|
|
6328
|
-
"index":
|
|
6382
|
+
"index": 13207
|
|
6329
6383
|
},
|
|
6330
6384
|
"end": {
|
|
6331
|
-
"line":
|
|
6385
|
+
"line": 450,
|
|
6332
6386
|
"column": 14,
|
|
6333
|
-
"index":
|
|
6387
|
+
"index": 13330
|
|
6334
6388
|
}
|
|
6335
6389
|
},
|
|
6336
6390
|
"filepath": "src/components/combo_box/combo_box_options_list/combo_box_options_list.tsx"
|
|
@@ -6341,14 +6395,14 @@
|
|
|
6341
6395
|
"highlighting": "string",
|
|
6342
6396
|
"loc": {
|
|
6343
6397
|
"start": {
|
|
6344
|
-
"line":
|
|
6398
|
+
"line": 460,
|
|
6345
6399
|
"column": 16,
|
|
6346
|
-
"index":
|
|
6400
|
+
"index": 13769
|
|
6347
6401
|
},
|
|
6348
6402
|
"end": {
|
|
6349
|
-
"line":
|
|
6403
|
+
"line": 464,
|
|
6350
6404
|
"column": 18,
|
|
6351
|
-
"index":
|
|
6405
|
+
"index": 14000
|
|
6352
6406
|
}
|
|
6353
6407
|
},
|
|
6354
6408
|
"filepath": "src/components/combo_box/combo_box_options_list/combo_box_options_list.tsx"
|
|
@@ -6359,14 +6413,14 @@
|
|
|
6359
6413
|
"highlighting": "string",
|
|
6360
6414
|
"loc": {
|
|
6361
6415
|
"start": {
|
|
6362
|
-
"line":
|
|
6416
|
+
"line": 479,
|
|
6363
6417
|
"column": 16,
|
|
6364
|
-
"index":
|
|
6418
|
+
"index": 14429
|
|
6365
6419
|
},
|
|
6366
6420
|
"end": {
|
|
6367
|
-
"line":
|
|
6421
|
+
"line": 485,
|
|
6368
6422
|
"column": 18,
|
|
6369
|
-
"index":
|
|
6423
|
+
"index": 14702
|
|
6370
6424
|
}
|
|
6371
6425
|
},
|
|
6372
6426
|
"filepath": "src/components/combo_box/combo_box_options_list/combo_box_options_list.tsx"
|
|
@@ -6377,14 +6431,14 @@
|
|
|
6377
6431
|
"highlighting": "string",
|
|
6378
6432
|
"loc": {
|
|
6379
6433
|
"start": {
|
|
6380
|
-
"line":
|
|
6434
|
+
"line": 514,
|
|
6381
6435
|
"column": 20,
|
|
6382
|
-
"index":
|
|
6436
|
+
"index": 15693
|
|
6383
6437
|
},
|
|
6384
6438
|
"end": {
|
|
6385
|
-
"line":
|
|
6439
|
+
"line": 520,
|
|
6386
6440
|
"column": 22,
|
|
6387
|
-
"index":
|
|
6441
|
+
"index": 15991
|
|
6388
6442
|
}
|
|
6389
6443
|
},
|
|
6390
6444
|
"filepath": "src/components/combo_box/combo_box_options_list/combo_box_options_list.tsx"
|
|
@@ -6395,14 +6449,14 @@
|
|
|
6395
6449
|
"highlighting": "string",
|
|
6396
6450
|
"loc": {
|
|
6397
6451
|
"start": {
|
|
6398
|
-
"line":
|
|
6452
|
+
"line": 531,
|
|
6399
6453
|
"column": 12,
|
|
6400
|
-
"index":
|
|
6454
|
+
"index": 16195
|
|
6401
6455
|
},
|
|
6402
6456
|
"end": {
|
|
6403
|
-
"line":
|
|
6457
|
+
"line": 535,
|
|
6404
6458
|
"column": 14,
|
|
6405
|
-
"index":
|
|
6459
|
+
"index": 16416
|
|
6406
6460
|
}
|
|
6407
6461
|
},
|
|
6408
6462
|
"filepath": "src/components/combo_box/combo_box_options_list/combo_box_options_list.tsx"
|
|
@@ -6413,14 +6467,14 @@
|
|
|
6413
6467
|
"highlighting": "string",
|
|
6414
6468
|
"loc": {
|
|
6415
6469
|
"start": {
|
|
6416
|
-
"line":
|
|
6470
|
+
"line": 542,
|
|
6417
6471
|
"column": 10,
|
|
6418
|
-
"index":
|
|
6472
|
+
"index": 16535
|
|
6419
6473
|
},
|
|
6420
6474
|
"end": {
|
|
6421
|
-
"line":
|
|
6475
|
+
"line": 545,
|
|
6422
6476
|
"column": 12,
|
|
6423
|
-
"index":
|
|
6477
|
+
"index": 16675
|
|
6424
6478
|
}
|
|
6425
6479
|
},
|
|
6426
6480
|
"filepath": "src/components/combo_box/combo_box_options_list/combo_box_options_list.tsx"
|
|
@@ -6431,14 +6485,14 @@
|
|
|
6431
6485
|
"highlighting": "string",
|
|
6432
6486
|
"loc": {
|
|
6433
6487
|
"start": {
|
|
6434
|
-
"line":
|
|
6488
|
+
"line": 551,
|
|
6435
6489
|
"column": 10,
|
|
6436
|
-
"index":
|
|
6490
|
+
"index": 16788
|
|
6437
6491
|
},
|
|
6438
6492
|
"end": {
|
|
6439
|
-
"line":
|
|
6493
|
+
"line": 554,
|
|
6440
6494
|
"column": 12,
|
|
6441
|
-
"index":
|
|
6495
|
+
"index": 16931
|
|
6442
6496
|
}
|
|
6443
6497
|
},
|
|
6444
6498
|
"filepath": "src/components/combo_box/combo_box_options_list/combo_box_options_list.tsx"
|
|
@@ -6683,35 +6737,17 @@
|
|
|
6683
6737
|
"highlighting": "string",
|
|
6684
6738
|
"loc": {
|
|
6685
6739
|
"start": {
|
|
6686
|
-
"line":
|
|
6687
|
-
"column": 22,
|
|
6688
|
-
"index":
|
|
6689
|
-
},
|
|
6690
|
-
"end": {
|
|
6691
|
-
"line": 99,
|
|
6692
|
-
"column": 3,
|
|
6693
|
-
"index": 3290
|
|
6694
|
-
}
|
|
6695
|
-
},
|
|
6696
|
-
"filepath": "src/components/date_picker/super_date_picker/quick_select_popover/quick_select_popover.tsx"
|
|
6697
|
-
},
|
|
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
|
|
6740
|
+
"line": 97,
|
|
6741
|
+
"column": 22,
|
|
6742
|
+
"index": 3258
|
|
6707
6743
|
},
|
|
6708
6744
|
"end": {
|
|
6709
|
-
"line":
|
|
6710
|
-
"column":
|
|
6711
|
-
"index":
|
|
6745
|
+
"line": 100,
|
|
6746
|
+
"column": 3,
|
|
6747
|
+
"index": 3338
|
|
6712
6748
|
}
|
|
6713
6749
|
},
|
|
6714
|
-
"filepath": "src/components/date_picker/super_date_picker/quick_select_popover/
|
|
6750
|
+
"filepath": "src/components/date_picker/super_date_picker/quick_select_popover/quick_select_popover.tsx"
|
|
6715
6751
|
},
|
|
6716
6752
|
{
|
|
6717
6753
|
"token": "euiQuickSelect.quickSelectTitle",
|
|
@@ -6857,6 +6893,24 @@
|
|
|
6857
6893
|
},
|
|
6858
6894
|
"filepath": "src/components/date_picker/super_date_picker/quick_select_popover/quick_select.tsx"
|
|
6859
6895
|
},
|
|
6896
|
+
{
|
|
6897
|
+
"token": "euiCommonlyUsedTimeRanges.legend",
|
|
6898
|
+
"defString": "Commonly used",
|
|
6899
|
+
"highlighting": "string",
|
|
6900
|
+
"loc": {
|
|
6901
|
+
"start": {
|
|
6902
|
+
"line": 27,
|
|
6903
|
+
"column": 16,
|
|
6904
|
+
"index": 995
|
|
6905
|
+
},
|
|
6906
|
+
"end": {
|
|
6907
|
+
"line": 27,
|
|
6908
|
+
"column": 79,
|
|
6909
|
+
"index": 1058
|
|
6910
|
+
}
|
|
6911
|
+
},
|
|
6912
|
+
"filepath": "src/components/date_picker/super_date_picker/quick_select_popover/commonly_used_time_ranges.tsx"
|
|
6913
|
+
},
|
|
6860
6914
|
{
|
|
6861
6915
|
"token": "euiRelativeTab.numberInputLabel",
|
|
6862
6916
|
"defString": "Time span amount",
|
|
@@ -7097,14 +7151,14 @@
|
|
|
7097
7151
|
"highlighting": "string",
|
|
7098
7152
|
"loc": {
|
|
7099
7153
|
"start": {
|
|
7100
|
-
"line":
|
|
7154
|
+
"line": 108,
|
|
7101
7155
|
"column": 23,
|
|
7102
|
-
"index":
|
|
7156
|
+
"index": 3102
|
|
7103
7157
|
},
|
|
7104
7158
|
"end": {
|
|
7105
|
-
"line":
|
|
7159
|
+
"line": 112,
|
|
7106
7160
|
"column": 3,
|
|
7107
|
-
"index":
|
|
7161
|
+
"index": 3201
|
|
7108
7162
|
}
|
|
7109
7163
|
},
|
|
7110
7164
|
"filepath": "src/components/date_picker/super_date_picker/date_popover/date_popover_button.tsx"
|
|
@@ -7115,14 +7169,14 @@
|
|
|
7115
7169
|
"highlighting": "string",
|
|
7116
7170
|
"loc": {
|
|
7117
7171
|
"start": {
|
|
7118
|
-
"line":
|
|
7172
|
+
"line": 113,
|
|
7119
7173
|
"column": 24,
|
|
7120
|
-
"index":
|
|
7174
|
+
"index": 3227
|
|
7121
7175
|
},
|
|
7122
7176
|
"end": {
|
|
7123
|
-
"line":
|
|
7177
|
+
"line": 117,
|
|
7124
7178
|
"column": 3,
|
|
7125
|
-
"index":
|
|
7179
|
+
"index": 3328
|
|
7126
7180
|
}
|
|
7127
7181
|
},
|
|
7128
7182
|
"filepath": "src/components/date_picker/super_date_picker/date_popover/date_popover_button.tsx"
|
|
@@ -7133,14 +7187,14 @@
|
|
|
7133
7187
|
"highlighting": "string",
|
|
7134
7188
|
"loc": {
|
|
7135
7189
|
"start": {
|
|
7136
|
-
"line":
|
|
7190
|
+
"line": 96,
|
|
7137
7191
|
"column": 28,
|
|
7138
|
-
"index":
|
|
7192
|
+
"index": 2900
|
|
7139
7193
|
},
|
|
7140
7194
|
"end": {
|
|
7141
|
-
"line":
|
|
7195
|
+
"line": 99,
|
|
7142
7196
|
"column": 3,
|
|
7143
|
-
"index":
|
|
7197
|
+
"index": 2976
|
|
7144
7198
|
}
|
|
7145
7199
|
},
|
|
7146
7200
|
"filepath": "src/components/date_picker/super_date_picker/date_popover/absolute_tab.tsx"
|
|
@@ -7151,126 +7205,18 @@
|
|
|
7151
7205
|
"highlighting": "string",
|
|
7152
7206
|
"loc": {
|
|
7153
7207
|
"start": {
|
|
7154
|
-
"line":
|
|
7208
|
+
"line": 100,
|
|
7155
7209
|
"column": 26,
|
|
7156
|
-
"index":
|
|
7210
|
+
"index": 3004
|
|
7157
7211
|
},
|
|
7158
7212
|
"end": {
|
|
7159
|
-
"line":
|
|
7213
|
+
"line": 104,
|
|
7160
7214
|
"column": 3,
|
|
7161
|
-
"index":
|
|
7215
|
+
"index": 3186
|
|
7162
7216
|
}
|
|
7163
7217
|
},
|
|
7164
7218
|
"filepath": "src/components/date_picker/super_date_picker/date_popover/absolute_tab.tsx"
|
|
7165
7219
|
},
|
|
7166
|
-
{
|
|
7167
|
-
"token": "euiDataGridCell.focusTrapExitPrompt",
|
|
7168
|
-
"defString": "Exited cell content.",
|
|
7169
|
-
"highlighting": "string",
|
|
7170
|
-
"loc": {
|
|
7171
|
-
"start": {
|
|
7172
|
-
"line": 193,
|
|
7173
|
-
"column": 10,
|
|
7174
|
-
"index": 6845
|
|
7175
|
-
},
|
|
7176
|
-
"end": {
|
|
7177
|
-
"line": 197,
|
|
7178
|
-
"column": 12,
|
|
7179
|
-
"index": 7016
|
|
7180
|
-
}
|
|
7181
|
-
},
|
|
7182
|
-
"filepath": "src/components/datagrid/body/cell/focus_utils.tsx"
|
|
7183
|
-
},
|
|
7184
|
-
{
|
|
7185
|
-
"token": "euiDataGridCell.focusTrapEnterPrompt",
|
|
7186
|
-
"defString": "Press the Enter key to interact with this cell's contents.",
|
|
7187
|
-
"highlighting": "string",
|
|
7188
|
-
"loc": {
|
|
7189
|
-
"start": {
|
|
7190
|
-
"line": 200,
|
|
7191
|
-
"column": 10,
|
|
7192
|
-
"index": 7067
|
|
7193
|
-
},
|
|
7194
|
-
"end": {
|
|
7195
|
-
"line": 204,
|
|
7196
|
-
"column": 12,
|
|
7197
|
-
"index": 7277
|
|
7198
|
-
}
|
|
7199
|
-
},
|
|
7200
|
-
"filepath": "src/components/datagrid/body/cell/focus_utils.tsx"
|
|
7201
|
-
},
|
|
7202
|
-
{
|
|
7203
|
-
"token": "euiDataGridCell.focusTrapEnteredExitPrompt",
|
|
7204
|
-
"defString": "Press the Escape key to exit the cell.",
|
|
7205
|
-
"highlighting": "string",
|
|
7206
|
-
"loc": {
|
|
7207
|
-
"start": {
|
|
7208
|
-
"line": 209,
|
|
7209
|
-
"column": 10,
|
|
7210
|
-
"index": 7383
|
|
7211
|
-
},
|
|
7212
|
-
"end": {
|
|
7213
|
-
"line": 213,
|
|
7214
|
-
"column": 12,
|
|
7215
|
-
"index": 7579
|
|
7216
|
-
}
|
|
7217
|
-
},
|
|
7218
|
-
"filepath": "src/components/datagrid/body/cell/focus_utils.tsx"
|
|
7219
|
-
},
|
|
7220
|
-
{
|
|
7221
|
-
"token": "euiDataGridCellActions.expandButtonTitle",
|
|
7222
|
-
"defString": "Click or hit enter to interact with cell content",
|
|
7223
|
-
"highlighting": "string",
|
|
7224
|
-
"loc": {
|
|
7225
|
-
"start": {
|
|
7226
|
-
"line": 49,
|
|
7227
|
-
"column": 6,
|
|
7228
|
-
"index": 1668
|
|
7229
|
-
},
|
|
7230
|
-
"end": {
|
|
7231
|
-
"line": 53,
|
|
7232
|
-
"column": 7,
|
|
7233
|
-
"index": 1831
|
|
7234
|
-
}
|
|
7235
|
-
},
|
|
7236
|
-
"filepath": "src/components/datagrid/body/cell/data_grid_cell_actions.tsx"
|
|
7237
|
-
},
|
|
7238
|
-
{
|
|
7239
|
-
"token": "euiDataGridCell.position",
|
|
7240
|
-
"defString": "{columnName}, column {columnIndex}, row {rowIndex}",
|
|
7241
|
-
"highlighting": "string",
|
|
7242
|
-
"loc": {
|
|
7243
|
-
"start": {
|
|
7244
|
-
"line": 748,
|
|
7245
|
-
"column": 23,
|
|
7246
|
-
"index": 23788
|
|
7247
|
-
},
|
|
7248
|
-
"end": {
|
|
7249
|
-
"line": 752,
|
|
7250
|
-
"column": 3,
|
|
7251
|
-
"index": 23935
|
|
7252
|
-
}
|
|
7253
|
-
},
|
|
7254
|
-
"filepath": "src/components/datagrid/body/cell/data_grid_cell.tsx"
|
|
7255
|
-
},
|
|
7256
|
-
{
|
|
7257
|
-
"token": "euiDataGridCell.expansionEnterPrompt",
|
|
7258
|
-
"defString": "Press the Enter key to expand this cell.",
|
|
7259
|
-
"highlighting": "string",
|
|
7260
|
-
"loc": {
|
|
7261
|
-
"start": {
|
|
7262
|
-
"line": 753,
|
|
7263
|
-
"column": 25,
|
|
7264
|
-
"index": 23962
|
|
7265
|
-
},
|
|
7266
|
-
"end": {
|
|
7267
|
-
"line": 756,
|
|
7268
|
-
"column": 3,
|
|
7269
|
-
"index": 24068
|
|
7270
|
-
}
|
|
7271
|
-
},
|
|
7272
|
-
"filepath": "src/components/datagrid/body/cell/data_grid_cell.tsx"
|
|
7273
|
-
},
|
|
7274
7220
|
{
|
|
7275
7221
|
"token": "euiDataGridHeaderCell.sortedByAscendingSingle",
|
|
7276
7222
|
"defString": "Sorted ascending",
|
|
@@ -7559,6 +7505,114 @@
|
|
|
7559
7505
|
},
|
|
7560
7506
|
"filepath": "src/components/datagrid/body/header/column_actions.tsx"
|
|
7561
7507
|
},
|
|
7508
|
+
{
|
|
7509
|
+
"token": "euiDataGridCell.focusTrapExitPrompt",
|
|
7510
|
+
"defString": "Exited cell content.",
|
|
7511
|
+
"highlighting": "string",
|
|
7512
|
+
"loc": {
|
|
7513
|
+
"start": {
|
|
7514
|
+
"line": 193,
|
|
7515
|
+
"column": 10,
|
|
7516
|
+
"index": 6845
|
|
7517
|
+
},
|
|
7518
|
+
"end": {
|
|
7519
|
+
"line": 197,
|
|
7520
|
+
"column": 12,
|
|
7521
|
+
"index": 7016
|
|
7522
|
+
}
|
|
7523
|
+
},
|
|
7524
|
+
"filepath": "src/components/datagrid/body/cell/focus_utils.tsx"
|
|
7525
|
+
},
|
|
7526
|
+
{
|
|
7527
|
+
"token": "euiDataGridCell.focusTrapEnterPrompt",
|
|
7528
|
+
"defString": "Press the Enter key to interact with this cell's contents.",
|
|
7529
|
+
"highlighting": "string",
|
|
7530
|
+
"loc": {
|
|
7531
|
+
"start": {
|
|
7532
|
+
"line": 200,
|
|
7533
|
+
"column": 10,
|
|
7534
|
+
"index": 7067
|
|
7535
|
+
},
|
|
7536
|
+
"end": {
|
|
7537
|
+
"line": 204,
|
|
7538
|
+
"column": 12,
|
|
7539
|
+
"index": 7277
|
|
7540
|
+
}
|
|
7541
|
+
},
|
|
7542
|
+
"filepath": "src/components/datagrid/body/cell/focus_utils.tsx"
|
|
7543
|
+
},
|
|
7544
|
+
{
|
|
7545
|
+
"token": "euiDataGridCell.focusTrapEnteredExitPrompt",
|
|
7546
|
+
"defString": "Press the Escape key to exit the cell.",
|
|
7547
|
+
"highlighting": "string",
|
|
7548
|
+
"loc": {
|
|
7549
|
+
"start": {
|
|
7550
|
+
"line": 209,
|
|
7551
|
+
"column": 10,
|
|
7552
|
+
"index": 7383
|
|
7553
|
+
},
|
|
7554
|
+
"end": {
|
|
7555
|
+
"line": 213,
|
|
7556
|
+
"column": 12,
|
|
7557
|
+
"index": 7579
|
|
7558
|
+
}
|
|
7559
|
+
},
|
|
7560
|
+
"filepath": "src/components/datagrid/body/cell/focus_utils.tsx"
|
|
7561
|
+
},
|
|
7562
|
+
{
|
|
7563
|
+
"token": "euiDataGridCellActions.expandButtonTitle",
|
|
7564
|
+
"defString": "Click or hit enter to interact with cell content",
|
|
7565
|
+
"highlighting": "string",
|
|
7566
|
+
"loc": {
|
|
7567
|
+
"start": {
|
|
7568
|
+
"line": 50,
|
|
7569
|
+
"column": 6,
|
|
7570
|
+
"index": 1716
|
|
7571
|
+
},
|
|
7572
|
+
"end": {
|
|
7573
|
+
"line": 54,
|
|
7574
|
+
"column": 7,
|
|
7575
|
+
"index": 1879
|
|
7576
|
+
}
|
|
7577
|
+
},
|
|
7578
|
+
"filepath": "src/components/datagrid/body/cell/data_grid_cell_actions.tsx"
|
|
7579
|
+
},
|
|
7580
|
+
{
|
|
7581
|
+
"token": "euiDataGridCell.position",
|
|
7582
|
+
"defString": "{columnName}, column {columnIndex}, row {rowIndex}",
|
|
7583
|
+
"highlighting": "string",
|
|
7584
|
+
"loc": {
|
|
7585
|
+
"start": {
|
|
7586
|
+
"line": 748,
|
|
7587
|
+
"column": 23,
|
|
7588
|
+
"index": 23788
|
|
7589
|
+
},
|
|
7590
|
+
"end": {
|
|
7591
|
+
"line": 752,
|
|
7592
|
+
"column": 3,
|
|
7593
|
+
"index": 23935
|
|
7594
|
+
}
|
|
7595
|
+
},
|
|
7596
|
+
"filepath": "src/components/datagrid/body/cell/data_grid_cell.tsx"
|
|
7597
|
+
},
|
|
7598
|
+
{
|
|
7599
|
+
"token": "euiDataGridCell.expansionEnterPrompt",
|
|
7600
|
+
"defString": "Press the Enter key to expand this cell.",
|
|
7601
|
+
"highlighting": "string",
|
|
7602
|
+
"loc": {
|
|
7603
|
+
"start": {
|
|
7604
|
+
"line": 753,
|
|
7605
|
+
"column": 25,
|
|
7606
|
+
"index": 23962
|
|
7607
|
+
},
|
|
7608
|
+
"end": {
|
|
7609
|
+
"line": 756,
|
|
7610
|
+
"column": 3,
|
|
7611
|
+
"index": 24068
|
|
7612
|
+
}
|
|
7613
|
+
},
|
|
7614
|
+
"filepath": "src/components/datagrid/body/cell/data_grid_cell.tsx"
|
|
7615
|
+
},
|
|
7562
7616
|
{
|
|
7563
7617
|
"token": "euiCollapsedNavButton.ariaLabelButtonIcon",
|
|
7564
7618
|
"defString": "{title}, quick navigation menu",
|