@elastic/eui 106.1.0-amsterdam.0 → 106.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/es/components/call_out/call_out.js +2 -1
- package/es/components/card/checkable_card/checkable_card.js +30 -5
- package/es/components/code/code_block.js +5 -2
- package/es/components/code/code_block_virtualized.js +5 -3
- package/es/components/markdown_editor/index.js +1 -0
- package/es/components/markdown_editor/markdown_editor.js +15 -4
- package/es/components/markdown_editor/markdown_editor_drop_zone.js +5 -3
- package/es/components/markdown_editor/markdown_editor_footer.js +12 -120
- package/es/components/markdown_editor/markdown_editor_footer.styles.js +0 -2
- package/es/components/markdown_editor/markdown_editor_help_button.js +144 -0
- package/es/components/markdown_editor/markdown_editor_help_button.styles.js +16 -0
- package/es/components/markdown_editor/markdown_editor_toolbar.js +28 -23
- package/es/components/popover/popover.js +2 -1
- package/es/components/provider/provider.js +2 -2
- package/es/services/color/vis_color_store.js +1 -1
- package/es/services/theme/context.js +2 -2
- package/eui.d.ts +432 -400
- package/i18ntokens.json +624 -624
- package/lib/components/call_out/call_out.js +3 -2
- package/lib/components/card/checkable_card/checkable_card.js +29 -4
- package/lib/components/code/code_block.js +5 -2
- package/lib/components/code/code_block_virtualized.js +5 -3
- package/lib/components/markdown_editor/index.js +7 -0
- package/lib/components/markdown_editor/markdown_editor.js +15 -4
- package/lib/components/markdown_editor/markdown_editor_drop_zone.js +5 -3
- package/lib/components/markdown_editor/markdown_editor_footer.js +10 -117
- package/lib/components/markdown_editor/markdown_editor_footer.styles.js +0 -2
- package/lib/components/markdown_editor/markdown_editor_help_button.js +151 -0
- package/lib/components/markdown_editor/markdown_editor_help_button.styles.js +22 -0
- package/lib/components/markdown_editor/markdown_editor_toolbar.js +28 -23
- package/lib/components/popover/popover.js +2 -1
- package/lib/components/provider/provider.js +2 -2
- package/lib/services/color/vis_color_store.js +2 -2
- package/lib/services/theme/context.js +2 -2
- package/optimize/es/components/call_out/call_out.js +1 -0
- package/optimize/es/components/card/checkable_card/checkable_card.js +25 -5
- package/optimize/es/components/code/code_block.js +5 -2
- package/optimize/es/components/code/code_block_virtualized.js +5 -3
- package/optimize/es/components/markdown_editor/index.js +1 -0
- package/optimize/es/components/markdown_editor/markdown_editor.js +7 -3
- package/optimize/es/components/markdown_editor/markdown_editor_drop_zone.js +3 -2
- package/optimize/es/components/markdown_editor/markdown_editor_footer.js +12 -120
- package/optimize/es/components/markdown_editor/markdown_editor_footer.styles.js +0 -2
- package/optimize/es/components/markdown_editor/markdown_editor_help_button.js +139 -0
- package/optimize/es/components/markdown_editor/markdown_editor_help_button.styles.js +16 -0
- package/optimize/es/components/markdown_editor/markdown_editor_toolbar.js +20 -16
- package/optimize/es/components/popover/popover.js +2 -1
- package/optimize/es/components/provider/provider.js +2 -2
- package/optimize/es/services/color/vis_color_store.js +1 -1
- package/optimize/es/services/theme/context.js +2 -2
- package/optimize/lib/components/call_out/call_out.js +2 -1
- package/optimize/lib/components/card/checkable_card/checkable_card.js +24 -4
- package/optimize/lib/components/code/code_block.js +5 -2
- package/optimize/lib/components/code/code_block_virtualized.js +5 -3
- package/optimize/lib/components/markdown_editor/index.js +7 -0
- package/optimize/lib/components/markdown_editor/markdown_editor.js +7 -3
- package/optimize/lib/components/markdown_editor/markdown_editor_drop_zone.js +3 -2
- package/optimize/lib/components/markdown_editor/markdown_editor_footer.js +9 -118
- package/optimize/lib/components/markdown_editor/markdown_editor_footer.styles.js +0 -2
- package/optimize/lib/components/markdown_editor/markdown_editor_help_button.js +150 -0
- package/optimize/lib/components/markdown_editor/markdown_editor_help_button.styles.js +22 -0
- package/optimize/lib/components/markdown_editor/markdown_editor_toolbar.js +20 -16
- package/optimize/lib/components/popover/popover.js +2 -1
- package/optimize/lib/components/provider/provider.js +2 -2
- package/optimize/lib/services/color/vis_color_store.js +2 -2
- package/optimize/lib/services/theme/context.js +2 -2
- package/package.json +1 -1
- package/test-env/components/call_out/call_out.js +3 -2
- package/test-env/components/card/checkable_card/checkable_card.js +24 -4
- package/test-env/components/code/code_block_virtualized.js +5 -3
- package/test-env/components/markdown_editor/index.js +7 -0
- package/test-env/components/markdown_editor/markdown_editor.js +15 -4
- package/test-env/components/markdown_editor/markdown_editor_drop_zone.js +5 -3
- package/test-env/components/markdown_editor/markdown_editor_footer.js +9 -118
- package/test-env/components/markdown_editor/markdown_editor_footer.styles.js +0 -2
- package/test-env/components/markdown_editor/markdown_editor_help_button.js +150 -0
- package/test-env/components/markdown_editor/markdown_editor_help_button.styles.js +22 -0
- package/test-env/components/markdown_editor/markdown_editor_toolbar.js +28 -23
- package/test-env/components/popover/popover.js +2 -1
- package/test-env/components/provider/provider.js +2 -2
- package/test-env/services/color/vis_color_store.js +2 -2
- package/test-env/services/theme/context.js +2 -2
package/i18ntokens.json
CHANGED
|
@@ -143,6 +143,24 @@
|
|
|
143
143
|
},
|
|
144
144
|
"filepath": "src/components/tour/_tour_footer.tsx"
|
|
145
145
|
},
|
|
146
|
+
{
|
|
147
|
+
"token": "euiIconTip.defaultAriaLabel",
|
|
148
|
+
"defString": "Info",
|
|
149
|
+
"highlighting": "string",
|
|
150
|
+
"loc": {
|
|
151
|
+
"start": {
|
|
152
|
+
"line": 63,
|
|
153
|
+
"column": 27,
|
|
154
|
+
"index": 1811
|
|
155
|
+
},
|
|
156
|
+
"end": {
|
|
157
|
+
"line": 63,
|
|
158
|
+
"column": 76,
|
|
159
|
+
"index": 1860
|
|
160
|
+
}
|
|
161
|
+
},
|
|
162
|
+
"filepath": "src/components/tool_tip/icon_tip.tsx"
|
|
163
|
+
},
|
|
146
164
|
{
|
|
147
165
|
"token": "euiToast.newNotification",
|
|
148
166
|
"defString": "A new notification appears",
|
|
@@ -234,22 +252,22 @@
|
|
|
234
252
|
"filepath": "src/components/toast/global_toast_list.tsx"
|
|
235
253
|
},
|
|
236
254
|
{
|
|
237
|
-
"token": "
|
|
238
|
-
"defString": "
|
|
255
|
+
"token": "euiTableHeaderCell.titleTextWithDesc",
|
|
256
|
+
"defString": "{innerText}; {description}",
|
|
239
257
|
"highlighting": "string",
|
|
240
258
|
"loc": {
|
|
241
259
|
"start": {
|
|
242
|
-
"line":
|
|
243
|
-
"column":
|
|
244
|
-
"index":
|
|
260
|
+
"line": 113,
|
|
261
|
+
"column": 10,
|
|
262
|
+
"index": 3512
|
|
245
263
|
},
|
|
246
264
|
"end": {
|
|
247
|
-
"line":
|
|
248
|
-
"column":
|
|
249
|
-
"index":
|
|
265
|
+
"line": 117,
|
|
266
|
+
"column": 11,
|
|
267
|
+
"index": 3686
|
|
250
268
|
}
|
|
251
269
|
},
|
|
252
|
-
"filepath": "src/components/
|
|
270
|
+
"filepath": "src/components/table/table_header_cell.tsx"
|
|
253
271
|
},
|
|
254
272
|
{
|
|
255
273
|
"token": "euiStepStrings.step",
|
|
@@ -539,24 +557,6 @@
|
|
|
539
557
|
},
|
|
540
558
|
"filepath": "src/components/steps/step_strings.tsx"
|
|
541
559
|
},
|
|
542
|
-
{
|
|
543
|
-
"token": "euiTableHeaderCell.titleTextWithDesc",
|
|
544
|
-
"defString": "{innerText}; {description}",
|
|
545
|
-
"highlighting": "string",
|
|
546
|
-
"loc": {
|
|
547
|
-
"start": {
|
|
548
|
-
"line": 113,
|
|
549
|
-
"column": 10,
|
|
550
|
-
"index": 3512
|
|
551
|
-
},
|
|
552
|
-
"end": {
|
|
553
|
-
"line": 117,
|
|
554
|
-
"column": 11,
|
|
555
|
-
"index": 3686
|
|
556
|
-
}
|
|
557
|
-
},
|
|
558
|
-
"filepath": "src/components/table/table_header_cell.tsx"
|
|
559
|
-
},
|
|
560
560
|
{
|
|
561
561
|
"token": "euiStat.loadingText",
|
|
562
562
|
"defString": "Statistic is loading",
|
|
@@ -887,14 +887,14 @@
|
|
|
887
887
|
"highlighting": "string",
|
|
888
888
|
"loc": {
|
|
889
889
|
"start": {
|
|
890
|
-
"line":
|
|
890
|
+
"line": 694,
|
|
891
891
|
"column": 16,
|
|
892
|
-
"index":
|
|
892
|
+
"index": 20642
|
|
893
893
|
},
|
|
894
894
|
"end": {
|
|
895
|
-
"line":
|
|
895
|
+
"line": 697,
|
|
896
896
|
"column": 18,
|
|
897
|
-
"index":
|
|
897
|
+
"index": 20836
|
|
898
898
|
}
|
|
899
899
|
},
|
|
900
900
|
"filepath": "src/components/popover/popover.tsx"
|
|
@@ -1170,130 +1170,166 @@
|
|
|
1170
1170
|
"filepath": "src/components/modal/modal.tsx"
|
|
1171
1171
|
},
|
|
1172
1172
|
{
|
|
1173
|
-
"token": "
|
|
1174
|
-
"defString": "
|
|
1173
|
+
"token": "euiMarkdownEditorToolbar.editor",
|
|
1174
|
+
"defString": "Editor",
|
|
1175
1175
|
"highlighting": "string",
|
|
1176
1176
|
"loc": {
|
|
1177
1177
|
"start": {
|
|
1178
|
-
"line":
|
|
1179
|
-
"column":
|
|
1180
|
-
"index":
|
|
1178
|
+
"line": 285,
|
|
1179
|
+
"column": 8,
|
|
1180
|
+
"index": 7699
|
|
1181
1181
|
},
|
|
1182
1182
|
"end": {
|
|
1183
|
-
"line":
|
|
1184
|
-
"column":
|
|
1185
|
-
"index":
|
|
1183
|
+
"line": 285,
|
|
1184
|
+
"column": 76,
|
|
1185
|
+
"index": 7767
|
|
1186
1186
|
}
|
|
1187
1187
|
},
|
|
1188
|
-
"filepath": "src/components/
|
|
1188
|
+
"filepath": "src/components/markdown_editor/markdown_editor_toolbar.tsx"
|
|
1189
1189
|
},
|
|
1190
1190
|
{
|
|
1191
|
-
"token": "
|
|
1192
|
-
"defString": "
|
|
1191
|
+
"token": "euiMarkdownEditorToolbar.previewMarkdown",
|
|
1192
|
+
"defString": "Preview",
|
|
1193
1193
|
"highlighting": "string",
|
|
1194
1194
|
"loc": {
|
|
1195
1195
|
"start": {
|
|
1196
|
-
"line":
|
|
1197
|
-
"column":
|
|
1198
|
-
"index":
|
|
1196
|
+
"line": 287,
|
|
1197
|
+
"column": 8,
|
|
1198
|
+
"index": 7788
|
|
1199
1199
|
},
|
|
1200
1200
|
"end": {
|
|
1201
|
-
"line":
|
|
1202
|
-
"column":
|
|
1203
|
-
"index":
|
|
1201
|
+
"line": 290,
|
|
1202
|
+
"column": 10,
|
|
1203
|
+
"index": 7894
|
|
1204
1204
|
}
|
|
1205
1205
|
},
|
|
1206
|
-
"filepath": "src/components/
|
|
1206
|
+
"filepath": "src/components/markdown_editor/markdown_editor_toolbar.tsx"
|
|
1207
1207
|
},
|
|
1208
1208
|
{
|
|
1209
|
-
"token": "
|
|
1210
|
-
"defString": "
|
|
1209
|
+
"token": "euiMarkdownEditorHelpButton.mdSyntaxLink",
|
|
1210
|
+
"defString": "GitHub flavored markdown",
|
|
1211
1211
|
"highlighting": "string",
|
|
1212
1212
|
"loc": {
|
|
1213
1213
|
"start": {
|
|
1214
|
-
"line":
|
|
1215
|
-
"column":
|
|
1216
|
-
"index":
|
|
1214
|
+
"line": 41,
|
|
1215
|
+
"column": 4,
|
|
1216
|
+
"index": 1514
|
|
1217
1217
|
},
|
|
1218
1218
|
"end": {
|
|
1219
|
-
"line":
|
|
1220
|
-
"column":
|
|
1221
|
-
"index":
|
|
1219
|
+
"line": 44,
|
|
1220
|
+
"column": 6,
|
|
1221
|
+
"index": 1625
|
|
1222
1222
|
}
|
|
1223
1223
|
},
|
|
1224
|
-
"filepath": "src/components/
|
|
1224
|
+
"filepath": "src/components/markdown_editor/markdown_editor_help_button.tsx"
|
|
1225
1225
|
},
|
|
1226
1226
|
{
|
|
1227
|
-
"token": "
|
|
1228
|
-
"defString": "
|
|
1227
|
+
"token": "euiMarkdownEditorHelpButton.syntaxTitle",
|
|
1228
|
+
"defString": "Syntax help",
|
|
1229
1229
|
"highlighting": "string",
|
|
1230
1230
|
"loc": {
|
|
1231
1231
|
"start": {
|
|
1232
1232
|
"line": 56,
|
|
1233
|
-
"column":
|
|
1234
|
-
"index":
|
|
1233
|
+
"column": 22,
|
|
1234
|
+
"index": 2042
|
|
1235
1235
|
},
|
|
1236
1236
|
"end": {
|
|
1237
1237
|
"line": 59,
|
|
1238
|
-
"column":
|
|
1239
|
-
"index":
|
|
1238
|
+
"column": 3,
|
|
1239
|
+
"index": 2122
|
|
1240
1240
|
}
|
|
1241
1241
|
},
|
|
1242
|
-
"filepath": "src/components/
|
|
1242
|
+
"filepath": "src/components/markdown_editor/markdown_editor_help_button.tsx"
|
|
1243
1243
|
},
|
|
1244
1244
|
{
|
|
1245
|
-
"token": "
|
|
1246
|
-
"defString": "
|
|
1245
|
+
"token": "euiMarkdownEditorHelpButton.showMarkdownHelp",
|
|
1246
|
+
"defString": "Show markdown help",
|
|
1247
1247
|
"highlighting": "string",
|
|
1248
1248
|
"loc": {
|
|
1249
1249
|
"start": {
|
|
1250
|
-
"line":
|
|
1251
|
-
"column":
|
|
1252
|
-
"index":
|
|
1250
|
+
"line": 61,
|
|
1251
|
+
"column": 22,
|
|
1252
|
+
"index": 2169
|
|
1253
1253
|
},
|
|
1254
1254
|
"end": {
|
|
1255
|
-
"line":
|
|
1256
|
-
"column":
|
|
1257
|
-
"index":
|
|
1255
|
+
"line": 64,
|
|
1256
|
+
"column": 5,
|
|
1257
|
+
"index": 2267
|
|
1258
1258
|
}
|
|
1259
1259
|
},
|
|
1260
|
-
"filepath": "src/components/
|
|
1260
|
+
"filepath": "src/components/markdown_editor/markdown_editor_help_button.tsx"
|
|
1261
1261
|
},
|
|
1262
1262
|
{
|
|
1263
|
-
"token": "
|
|
1264
|
-
"defString": "
|
|
1263
|
+
"token": "euiMarkdownEditorHelpButton.syntaxModalDescriptionPrefix",
|
|
1264
|
+
"defString": "This editor uses",
|
|
1265
1265
|
"highlighting": "string",
|
|
1266
1266
|
"loc": {
|
|
1267
1267
|
"start": {
|
|
1268
|
-
"line":
|
|
1269
|
-
"column":
|
|
1270
|
-
"index":
|
|
1268
|
+
"line": 99,
|
|
1269
|
+
"column": 16,
|
|
1270
|
+
"index": 3402
|
|
1271
1271
|
},
|
|
1272
1272
|
"end": {
|
|
1273
|
-
"line":
|
|
1274
|
-
"column":
|
|
1275
|
-
"index":
|
|
1273
|
+
"line": 108,
|
|
1274
|
+
"column": 17,
|
|
1275
|
+
"index": 3838
|
|
1276
1276
|
}
|
|
1277
1277
|
},
|
|
1278
|
-
"filepath": "src/components/markdown_editor/
|
|
1278
|
+
"filepath": "src/components/markdown_editor/markdown_editor_help_button.tsx"
|
|
1279
1279
|
},
|
|
1280
1280
|
{
|
|
1281
|
-
"token": "
|
|
1282
|
-
"defString": "
|
|
1281
|
+
"token": "euiMarkdownEditorHelpButton.syntaxModalDescriptionSuffix",
|
|
1282
|
+
"defString": "You can also utilize these additional syntax plugins to add rich content to your text.",
|
|
1283
1283
|
"highlighting": "string",
|
|
1284
1284
|
"loc": {
|
|
1285
1285
|
"start": {
|
|
1286
|
-
"line":
|
|
1287
|
-
"column":
|
|
1288
|
-
"index":
|
|
1286
|
+
"line": 99,
|
|
1287
|
+
"column": 16,
|
|
1288
|
+
"index": 3402
|
|
1289
1289
|
},
|
|
1290
1290
|
"end": {
|
|
1291
|
-
"line":
|
|
1292
|
-
"column":
|
|
1293
|
-
"index":
|
|
1291
|
+
"line": 108,
|
|
1292
|
+
"column": 17,
|
|
1293
|
+
"index": 3838
|
|
1294
1294
|
}
|
|
1295
1295
|
},
|
|
1296
|
-
"filepath": "src/components/markdown_editor/
|
|
1296
|
+
"filepath": "src/components/markdown_editor/markdown_editor_help_button.tsx"
|
|
1297
|
+
},
|
|
1298
|
+
{
|
|
1299
|
+
"token": "euiMarkdownEditorHelpButton.closeButton",
|
|
1300
|
+
"defString": "Close",
|
|
1301
|
+
"highlighting": "string",
|
|
1302
|
+
"loc": {
|
|
1303
|
+
"start": {
|
|
1304
|
+
"line": 137,
|
|
1305
|
+
"column": 16,
|
|
1306
|
+
"index": 4897
|
|
1307
|
+
},
|
|
1308
|
+
"end": {
|
|
1309
|
+
"line": 140,
|
|
1310
|
+
"column": 18,
|
|
1311
|
+
"index": 5024
|
|
1312
|
+
}
|
|
1313
|
+
},
|
|
1314
|
+
"filepath": "src/components/markdown_editor/markdown_editor_help_button.tsx"
|
|
1315
|
+
},
|
|
1316
|
+
{
|
|
1317
|
+
"token": "euiMarkdownEditorHelpButton.syntaxPopoverDescription",
|
|
1318
|
+
"defString": "This editor uses",
|
|
1319
|
+
"highlighting": "string",
|
|
1320
|
+
"loc": {
|
|
1321
|
+
"start": {
|
|
1322
|
+
"line": 168,
|
|
1323
|
+
"column": 8,
|
|
1324
|
+
"index": 5822
|
|
1325
|
+
},
|
|
1326
|
+
"end": {
|
|
1327
|
+
"line": 171,
|
|
1328
|
+
"column": 9,
|
|
1329
|
+
"index": 5958
|
|
1330
|
+
}
|
|
1331
|
+
},
|
|
1332
|
+
"filepath": "src/components/markdown_editor/markdown_editor_help_button.tsx"
|
|
1297
1333
|
},
|
|
1298
1334
|
{
|
|
1299
1335
|
"token": "euiMarkdownEditorFooter.uploadingFiles",
|
|
@@ -1301,14 +1337,14 @@
|
|
|
1301
1337
|
"highlighting": "string",
|
|
1302
1338
|
"loc": {
|
|
1303
1339
|
"start": {
|
|
1304
|
-
"line":
|
|
1340
|
+
"line": 67,
|
|
1305
1341
|
"column": 20,
|
|
1306
|
-
"index":
|
|
1342
|
+
"index": 2134
|
|
1307
1343
|
},
|
|
1308
1344
|
"end": {
|
|
1309
|
-
"line":
|
|
1345
|
+
"line": 70,
|
|
1310
1346
|
"column": 5,
|
|
1311
|
-
"index":
|
|
1347
|
+
"index": 2229
|
|
1312
1348
|
}
|
|
1313
1349
|
},
|
|
1314
1350
|
"filepath": "src/components/markdown_editor/markdown_editor_footer.tsx"
|
|
@@ -1319,14 +1355,14 @@
|
|
|
1319
1355
|
"highlighting": "string",
|
|
1320
1356
|
"loc": {
|
|
1321
1357
|
"start": {
|
|
1322
|
-
"line":
|
|
1358
|
+
"line": 71,
|
|
1323
1359
|
"column": 21,
|
|
1324
|
-
"index":
|
|
1360
|
+
"index": 2252
|
|
1325
1361
|
},
|
|
1326
1362
|
"end": {
|
|
1327
|
-
"line":
|
|
1363
|
+
"line": 74,
|
|
1328
1364
|
"column": 5,
|
|
1329
|
-
"index":
|
|
1365
|
+
"index": 2350
|
|
1330
1366
|
}
|
|
1331
1367
|
},
|
|
1332
1368
|
"filepath": "src/components/markdown_editor/markdown_editor_footer.tsx"
|
|
@@ -1337,14 +1373,14 @@
|
|
|
1337
1373
|
"highlighting": "string",
|
|
1338
1374
|
"loc": {
|
|
1339
1375
|
"start": {
|
|
1340
|
-
"line":
|
|
1376
|
+
"line": 75,
|
|
1341
1377
|
"column": 25,
|
|
1342
|
-
"index":
|
|
1378
|
+
"index": 2377
|
|
1343
1379
|
},
|
|
1344
1380
|
"end": {
|
|
1345
|
-
"line":
|
|
1381
|
+
"line": 78,
|
|
1346
1382
|
"column": 5,
|
|
1347
|
-
"index":
|
|
1383
|
+
"index": 2479
|
|
1348
1384
|
}
|
|
1349
1385
|
},
|
|
1350
1386
|
"filepath": "src/components/markdown_editor/markdown_editor_footer.tsx"
|
|
@@ -1355,14 +1391,14 @@
|
|
|
1355
1391
|
"highlighting": "string",
|
|
1356
1392
|
"loc": {
|
|
1357
1393
|
"start": {
|
|
1358
|
-
"line":
|
|
1394
|
+
"line": 79,
|
|
1359
1395
|
"column": 24,
|
|
1360
|
-
"index":
|
|
1396
|
+
"index": 2505
|
|
1361
1397
|
},
|
|
1362
1398
|
"end": {
|
|
1363
|
-
"line":
|
|
1399
|
+
"line": 83,
|
|
1364
1400
|
"column": 5,
|
|
1365
|
-
"index":
|
|
1401
|
+
"index": 2650
|
|
1366
1402
|
}
|
|
1367
1403
|
},
|
|
1368
1404
|
"filepath": "src/components/markdown_editor/markdown_editor_footer.tsx"
|
|
@@ -1373,161 +1409,161 @@
|
|
|
1373
1409
|
"highlighting": "string",
|
|
1374
1410
|
"loc": {
|
|
1375
1411
|
"start": {
|
|
1376
|
-
"line":
|
|
1412
|
+
"line": 84,
|
|
1377
1413
|
"column": 22,
|
|
1378
|
-
"index":
|
|
1414
|
+
"index": 2674
|
|
1379
1415
|
},
|
|
1380
1416
|
"end": {
|
|
1381
|
-
"line":
|
|
1417
|
+
"line": 87,
|
|
1382
1418
|
"column": 5,
|
|
1383
|
-
"index":
|
|
1419
|
+
"index": 2761
|
|
1384
1420
|
}
|
|
1385
1421
|
},
|
|
1386
1422
|
"filepath": "src/components/markdown_editor/markdown_editor_footer.tsx"
|
|
1387
1423
|
},
|
|
1388
1424
|
{
|
|
1389
|
-
"token": "euiMarkdownEditorFooter.
|
|
1390
|
-
"defString": "
|
|
1425
|
+
"token": "euiMarkdownEditorFooter.errorsTitle",
|
|
1426
|
+
"defString": "Errors",
|
|
1391
1427
|
"highlighting": "string",
|
|
1392
1428
|
"loc": {
|
|
1393
1429
|
"start": {
|
|
1394
|
-
"line":
|
|
1395
|
-
"column":
|
|
1396
|
-
"index":
|
|
1430
|
+
"line": 158,
|
|
1431
|
+
"column": 12,
|
|
1432
|
+
"index": 4712
|
|
1397
1433
|
},
|
|
1398
1434
|
"end": {
|
|
1399
|
-
"line":
|
|
1400
|
-
"column":
|
|
1401
|
-
"index":
|
|
1435
|
+
"line": 161,
|
|
1436
|
+
"column": 14,
|
|
1437
|
+
"index": 4824
|
|
1402
1438
|
}
|
|
1403
1439
|
},
|
|
1404
1440
|
"filepath": "src/components/markdown_editor/markdown_editor_footer.tsx"
|
|
1405
1441
|
},
|
|
1406
1442
|
{
|
|
1407
|
-
"token": "
|
|
1408
|
-
"defString": "
|
|
1443
|
+
"token": "euiMark.highlightStart",
|
|
1444
|
+
"defString": "highlight start",
|
|
1409
1445
|
"highlighting": "string",
|
|
1410
1446
|
"loc": {
|
|
1411
1447
|
"start": {
|
|
1412
|
-
"line":
|
|
1413
|
-
"column":
|
|
1414
|
-
"index":
|
|
1448
|
+
"line": 44,
|
|
1449
|
+
"column": 25,
|
|
1450
|
+
"index": 1289
|
|
1415
1451
|
},
|
|
1416
1452
|
"end": {
|
|
1417
|
-
"line":
|
|
1453
|
+
"line": 47,
|
|
1418
1454
|
"column": 3,
|
|
1419
|
-
"index":
|
|
1455
|
+
"index": 1356
|
|
1420
1456
|
}
|
|
1421
1457
|
},
|
|
1422
|
-
"filepath": "src/components/
|
|
1458
|
+
"filepath": "src/components/mark/mark.tsx"
|
|
1423
1459
|
},
|
|
1424
1460
|
{
|
|
1425
|
-
"token": "
|
|
1426
|
-
"defString": "
|
|
1461
|
+
"token": "euiMark.highlightEnd",
|
|
1462
|
+
"defString": "highlight end",
|
|
1427
1463
|
"highlighting": "string",
|
|
1428
1464
|
"loc": {
|
|
1429
1465
|
"start": {
|
|
1430
|
-
"line":
|
|
1431
|
-
"column":
|
|
1432
|
-
"index":
|
|
1466
|
+
"line": 48,
|
|
1467
|
+
"column": 23,
|
|
1468
|
+
"index": 1381
|
|
1433
1469
|
},
|
|
1434
1470
|
"end": {
|
|
1435
|
-
"line":
|
|
1436
|
-
"column":
|
|
1437
|
-
"index":
|
|
1471
|
+
"line": 48,
|
|
1472
|
+
"column": 74,
|
|
1473
|
+
"index": 1432
|
|
1438
1474
|
}
|
|
1439
1475
|
},
|
|
1440
|
-
"filepath": "src/components/
|
|
1476
|
+
"filepath": "src/components/mark/mark.tsx"
|
|
1441
1477
|
},
|
|
1442
1478
|
{
|
|
1443
|
-
"token": "
|
|
1444
|
-
"defString": "
|
|
1479
|
+
"token": "euiLoadingStrings.ariaLabel",
|
|
1480
|
+
"defString": "Loading",
|
|
1445
1481
|
"highlighting": "string",
|
|
1446
1482
|
"loc": {
|
|
1447
1483
|
"start": {
|
|
1448
|
-
"line":
|
|
1449
|
-
"column":
|
|
1450
|
-
"index":
|
|
1484
|
+
"line": 12,
|
|
1485
|
+
"column": 9,
|
|
1486
|
+
"index": 454
|
|
1451
1487
|
},
|
|
1452
1488
|
"end": {
|
|
1453
|
-
"line":
|
|
1454
|
-
"column":
|
|
1455
|
-
"index":
|
|
1489
|
+
"line": 12,
|
|
1490
|
+
"column": 61,
|
|
1491
|
+
"index": 506
|
|
1456
1492
|
}
|
|
1457
1493
|
},
|
|
1458
|
-
"filepath": "src/components/
|
|
1494
|
+
"filepath": "src/components/loading/_loading_strings.tsx"
|
|
1459
1495
|
},
|
|
1460
1496
|
{
|
|
1461
|
-
"token": "
|
|
1462
|
-
"defString": "
|
|
1497
|
+
"token": "euiExternalLinkIcon.newTarget.screenReaderOnlyText",
|
|
1498
|
+
"defString": "(external, opens in a new tab or window)",
|
|
1463
1499
|
"highlighting": "string",
|
|
1464
1500
|
"loc": {
|
|
1465
1501
|
"start": {
|
|
1466
|
-
"line":
|
|
1502
|
+
"line": 56,
|
|
1467
1503
|
"column": 16,
|
|
1468
|
-
"index":
|
|
1504
|
+
"index": 1824
|
|
1469
1505
|
},
|
|
1470
1506
|
"end": {
|
|
1471
|
-
"line":
|
|
1472
|
-
"column":
|
|
1473
|
-
"index":
|
|
1507
|
+
"line": 59,
|
|
1508
|
+
"column": 18,
|
|
1509
|
+
"index": 1997
|
|
1474
1510
|
}
|
|
1475
1511
|
},
|
|
1476
|
-
"filepath": "src/components/
|
|
1512
|
+
"filepath": "src/components/link/external_link_icon.tsx"
|
|
1477
1513
|
},
|
|
1478
1514
|
{
|
|
1479
|
-
"token": "
|
|
1480
|
-
"defString": "
|
|
1515
|
+
"token": "euiExternalLinkIcon.externalTarget.screenReaderOnlyText",
|
|
1516
|
+
"defString": "(external)",
|
|
1481
1517
|
"highlighting": "string",
|
|
1482
1518
|
"loc": {
|
|
1483
1519
|
"start": {
|
|
1484
|
-
"line":
|
|
1485
|
-
"column":
|
|
1486
|
-
"index":
|
|
1520
|
+
"line": 66,
|
|
1521
|
+
"column": 18,
|
|
1522
|
+
"index": 2163
|
|
1487
1523
|
},
|
|
1488
1524
|
"end": {
|
|
1489
|
-
"line":
|
|
1490
|
-
"column":
|
|
1491
|
-
"index":
|
|
1525
|
+
"line": 69,
|
|
1526
|
+
"column": 20,
|
|
1527
|
+
"index": 2317
|
|
1492
1528
|
}
|
|
1493
1529
|
},
|
|
1494
|
-
"filepath": "src/components/
|
|
1530
|
+
"filepath": "src/components/link/external_link_icon.tsx"
|
|
1495
1531
|
},
|
|
1496
1532
|
{
|
|
1497
|
-
"token": "
|
|
1498
|
-
"defString": "
|
|
1533
|
+
"token": "euiImageButton.openFullScreen",
|
|
1534
|
+
"defString": "Click to open this image in fullscreen mode",
|
|
1499
1535
|
"highlighting": "string",
|
|
1500
1536
|
"loc": {
|
|
1501
1537
|
"start": {
|
|
1502
|
-
"line":
|
|
1503
|
-
"column":
|
|
1504
|
-
"index":
|
|
1538
|
+
"line": 57,
|
|
1539
|
+
"column": 37,
|
|
1540
|
+
"index": 1585
|
|
1505
1541
|
},
|
|
1506
1542
|
"end": {
|
|
1507
|
-
"line":
|
|
1508
|
-
"column":
|
|
1509
|
-
"index":
|
|
1543
|
+
"line": 60,
|
|
1544
|
+
"column": 3,
|
|
1545
|
+
"index": 1687
|
|
1510
1546
|
}
|
|
1511
1547
|
},
|
|
1512
|
-
"filepath": "src/components/
|
|
1548
|
+
"filepath": "src/components/image/image_button.tsx"
|
|
1513
1549
|
},
|
|
1514
1550
|
{
|
|
1515
|
-
"token": "
|
|
1516
|
-
"defString": "
|
|
1551
|
+
"token": "euiImageButton.closeFullScreen",
|
|
1552
|
+
"defString": "Press Escape or click to close image fullscreen mode",
|
|
1517
1553
|
"highlighting": "string",
|
|
1518
1554
|
"loc": {
|
|
1519
1555
|
"start": {
|
|
1520
|
-
"line":
|
|
1521
|
-
"column":
|
|
1522
|
-
"index":
|
|
1556
|
+
"line": 61,
|
|
1557
|
+
"column": 38,
|
|
1558
|
+
"index": 1727
|
|
1523
1559
|
},
|
|
1524
1560
|
"end": {
|
|
1525
|
-
"line":
|
|
1526
|
-
"column":
|
|
1527
|
-
"index":
|
|
1561
|
+
"line": 64,
|
|
1562
|
+
"column": 3,
|
|
1563
|
+
"index": 1839
|
|
1528
1564
|
}
|
|
1529
1565
|
},
|
|
1530
|
-
"filepath": "src/components/
|
|
1566
|
+
"filepath": "src/components/image/image_button.tsx"
|
|
1531
1567
|
},
|
|
1532
1568
|
{
|
|
1533
1569
|
"token": "euiInlineEditForm.saveButtonAriaLabel",
|
|
@@ -1602,40 +1638,22 @@
|
|
|
1602
1638
|
"filepath": "src/components/inline_edit/inline_edit_form.tsx"
|
|
1603
1639
|
},
|
|
1604
1640
|
{
|
|
1605
|
-
"token": "
|
|
1606
|
-
"defString": "
|
|
1607
|
-
"highlighting": "string",
|
|
1608
|
-
"loc": {
|
|
1609
|
-
"start": {
|
|
1610
|
-
"line": 57,
|
|
1611
|
-
"column": 37,
|
|
1612
|
-
"index": 1585
|
|
1613
|
-
},
|
|
1614
|
-
"end": {
|
|
1615
|
-
"line": 60,
|
|
1616
|
-
"column": 3,
|
|
1617
|
-
"index": 1687
|
|
1618
|
-
}
|
|
1619
|
-
},
|
|
1620
|
-
"filepath": "src/components/image/image_button.tsx"
|
|
1621
|
-
},
|
|
1622
|
-
{
|
|
1623
|
-
"token": "euiImageButton.closeFullScreen",
|
|
1624
|
-
"defString": "Press Escape or click to close image fullscreen mode",
|
|
1641
|
+
"token": "euiForm.addressFormErrors",
|
|
1642
|
+
"defString": "Please address the highlighted errors.",
|
|
1625
1643
|
"highlighting": "string",
|
|
1626
1644
|
"loc": {
|
|
1627
1645
|
"start": {
|
|
1628
|
-
"line":
|
|
1629
|
-
"column":
|
|
1630
|
-
"index":
|
|
1646
|
+
"line": 98,
|
|
1647
|
+
"column": 8,
|
|
1648
|
+
"index": 2588
|
|
1631
1649
|
},
|
|
1632
1650
|
"end": {
|
|
1633
|
-
"line":
|
|
1634
|
-
"column":
|
|
1635
|
-
"index":
|
|
1651
|
+
"line": 101,
|
|
1652
|
+
"column": 9,
|
|
1653
|
+
"index": 2709
|
|
1636
1654
|
}
|
|
1637
1655
|
},
|
|
1638
|
-
"filepath": "src/components/
|
|
1656
|
+
"filepath": "src/components/form/form.tsx"
|
|
1639
1657
|
},
|
|
1640
1658
|
{
|
|
1641
1659
|
"token": "euiFlyout.screenReaderModalDialog",
|
|
@@ -1709,24 +1727,6 @@
|
|
|
1709
1727
|
},
|
|
1710
1728
|
"filepath": "src/components/flyout/_flyout_close_button.tsx"
|
|
1711
1729
|
},
|
|
1712
|
-
{
|
|
1713
|
-
"token": "euiForm.addressFormErrors",
|
|
1714
|
-
"defString": "Please address the highlighted errors.",
|
|
1715
|
-
"highlighting": "string",
|
|
1716
|
-
"loc": {
|
|
1717
|
-
"start": {
|
|
1718
|
-
"line": 98,
|
|
1719
|
-
"column": 8,
|
|
1720
|
-
"index": 2588
|
|
1721
|
-
},
|
|
1722
|
-
"end": {
|
|
1723
|
-
"line": 101,
|
|
1724
|
-
"column": 9,
|
|
1725
|
-
"index": 2709
|
|
1726
|
-
}
|
|
1727
|
-
},
|
|
1728
|
-
"filepath": "src/components/form/form.tsx"
|
|
1729
|
-
},
|
|
1730
1730
|
{
|
|
1731
1731
|
"token": "euiFilterButton.filterBadgeActiveAriaLabel",
|
|
1732
1732
|
"defString": "{count} active filters",
|
|
@@ -1907,6 +1907,24 @@
|
|
|
1907
1907
|
},
|
|
1908
1908
|
"filepath": "src/components/color_picker/saturation.tsx"
|
|
1909
1909
|
},
|
|
1910
|
+
{
|
|
1911
|
+
"token": "euiColorPickerSwatch.ariaLabel",
|
|
1912
|
+
"defString": "Select {color} as the color",
|
|
1913
|
+
"highlighting": "string",
|
|
1914
|
+
"loc": {
|
|
1915
|
+
"start": {
|
|
1916
|
+
"line": 54,
|
|
1917
|
+
"column": 22,
|
|
1918
|
+
"index": 1870
|
|
1919
|
+
},
|
|
1920
|
+
"end": {
|
|
1921
|
+
"line": 58,
|
|
1922
|
+
"column": 5,
|
|
1923
|
+
"index": 1980
|
|
1924
|
+
}
|
|
1925
|
+
},
|
|
1926
|
+
"filepath": "src/components/color_picker/color_picker_swatch.tsx"
|
|
1927
|
+
},
|
|
1910
1928
|
{
|
|
1911
1929
|
"token": "euiHue.ariaValueText",
|
|
1912
1930
|
"defString": "Hue",
|
|
@@ -1961,24 +1979,6 @@
|
|
|
1961
1979
|
},
|
|
1962
1980
|
"filepath": "src/components/color_picker/hue.tsx"
|
|
1963
1981
|
},
|
|
1964
|
-
{
|
|
1965
|
-
"token": "euiColorPickerSwatch.ariaLabel",
|
|
1966
|
-
"defString": "Select {color} as the color",
|
|
1967
|
-
"highlighting": "string",
|
|
1968
|
-
"loc": {
|
|
1969
|
-
"start": {
|
|
1970
|
-
"line": 54,
|
|
1971
|
-
"column": 22,
|
|
1972
|
-
"index": 1870
|
|
1973
|
-
},
|
|
1974
|
-
"end": {
|
|
1975
|
-
"line": 58,
|
|
1976
|
-
"column": 5,
|
|
1977
|
-
"index": 1980
|
|
1978
|
-
}
|
|
1979
|
-
},
|
|
1980
|
-
"filepath": "src/components/color_picker/color_picker_swatch.tsx"
|
|
1981
|
-
},
|
|
1982
1982
|
{
|
|
1983
1983
|
"token": "euiColorPicker.popoverLabel",
|
|
1984
1984
|
"defString": "Color selection dialog",
|
|
@@ -2141,6 +2141,24 @@
|
|
|
2141
2141
|
},
|
|
2142
2142
|
"filepath": "src/components/collapsible_nav_beta/collapsible_nav_beta.tsx"
|
|
2143
2143
|
},
|
|
2144
|
+
{
|
|
2145
|
+
"token": "euiCodeBlockCopy.copy",
|
|
2146
|
+
"defString": "Copy",
|
|
2147
|
+
"highlighting": "string",
|
|
2148
|
+
"loc": {
|
|
2149
|
+
"start": {
|
|
2150
|
+
"line": 54,
|
|
2151
|
+
"column": 31,
|
|
2152
|
+
"index": 1895
|
|
2153
|
+
},
|
|
2154
|
+
"end": {
|
|
2155
|
+
"line": 54,
|
|
2156
|
+
"column": 74,
|
|
2157
|
+
"index": 1938
|
|
2158
|
+
}
|
|
2159
|
+
},
|
|
2160
|
+
"filepath": "src/components/code/code_block_copy.tsx"
|
|
2161
|
+
},
|
|
2144
2162
|
{
|
|
2145
2163
|
"token": "euiCodeBlockFullScreen.fullscreenCollapse",
|
|
2146
2164
|
"defString": "Collapse",
|
|
@@ -2195,24 +2213,6 @@
|
|
|
2195
2213
|
},
|
|
2196
2214
|
"filepath": "src/components/code/code_block_full_screen.tsx"
|
|
2197
2215
|
},
|
|
2198
|
-
{
|
|
2199
|
-
"token": "euiCodeBlockCopy.copy",
|
|
2200
|
-
"defString": "Copy",
|
|
2201
|
-
"highlighting": "string",
|
|
2202
|
-
"loc": {
|
|
2203
|
-
"start": {
|
|
2204
|
-
"line": 54,
|
|
2205
|
-
"column": 31,
|
|
2206
|
-
"index": 1895
|
|
2207
|
-
},
|
|
2208
|
-
"end": {
|
|
2209
|
-
"line": 54,
|
|
2210
|
-
"column": 74,
|
|
2211
|
-
"index": 1938
|
|
2212
|
-
}
|
|
2213
|
-
},
|
|
2214
|
-
"filepath": "src/components/code/code_block_copy.tsx"
|
|
2215
|
-
},
|
|
2216
2216
|
{
|
|
2217
2217
|
"token": "euiCodeBlockAnnotations.ariaLabel",
|
|
2218
2218
|
"defString": "Click to view a code annotation for line {lineNumber}",
|
|
@@ -2237,14 +2237,14 @@
|
|
|
2237
2237
|
"highlighting": "string",
|
|
2238
2238
|
"loc": {
|
|
2239
2239
|
"start": {
|
|
2240
|
-
"line":
|
|
2240
|
+
"line": 269,
|
|
2241
2241
|
"column": 25,
|
|
2242
|
-
"index":
|
|
2242
|
+
"index": 7663
|
|
2243
2243
|
},
|
|
2244
2244
|
"end": {
|
|
2245
|
-
"line":
|
|
2245
|
+
"line": 275,
|
|
2246
2246
|
"column": 3,
|
|
2247
|
-
"index":
|
|
2247
|
+
"index": 7762
|
|
2248
2248
|
}
|
|
2249
2249
|
},
|
|
2250
2250
|
"filepath": "src/components/code/code_block.tsx"
|
|
@@ -2255,14 +2255,14 @@
|
|
|
2255
2255
|
"highlighting": "string",
|
|
2256
2256
|
"loc": {
|
|
2257
2257
|
"start": {
|
|
2258
|
-
"line":
|
|
2258
|
+
"line": 96,
|
|
2259
2259
|
"column": 8,
|
|
2260
|
-
"index":
|
|
2260
|
+
"index": 2634
|
|
2261
2261
|
},
|
|
2262
2262
|
"end": {
|
|
2263
|
-
"line":
|
|
2263
|
+
"line": 99,
|
|
2264
2264
|
"column": 9,
|
|
2265
|
-
"index":
|
|
2265
|
+
"index": 2739
|
|
2266
2266
|
}
|
|
2267
2267
|
},
|
|
2268
2268
|
"filepath": "src/components/call_out/call_out.tsx"
|
|
@@ -2591,6 +2591,24 @@
|
|
|
2591
2591
|
},
|
|
2592
2592
|
"filepath": "src/components/basic_table/basic_table.tsx"
|
|
2593
2593
|
},
|
|
2594
|
+
{
|
|
2595
|
+
"token": "euiTableSortMobile.sorting",
|
|
2596
|
+
"defString": "Sorting",
|
|
2597
|
+
"highlighting": "string",
|
|
2598
|
+
"loc": {
|
|
2599
|
+
"start": {
|
|
2600
|
+
"line": 76,
|
|
2601
|
+
"column": 8,
|
|
2602
|
+
"index": 1963
|
|
2603
|
+
},
|
|
2604
|
+
"end": {
|
|
2605
|
+
"line": 76,
|
|
2606
|
+
"column": 72,
|
|
2607
|
+
"index": 2027
|
|
2608
|
+
}
|
|
2609
|
+
},
|
|
2610
|
+
"filepath": "src/components/table/mobile/table_sort_mobile.tsx"
|
|
2611
|
+
},
|
|
2594
2612
|
{
|
|
2595
2613
|
"token": "euiTablePagination.allRows",
|
|
2596
2614
|
"defString": "Showing all rows",
|
|
@@ -2663,24 +2681,6 @@
|
|
|
2663
2681
|
},
|
|
2664
2682
|
"filepath": "src/components/table/table_pagination/table_pagination.tsx"
|
|
2665
2683
|
},
|
|
2666
|
-
{
|
|
2667
|
-
"token": "euiTableSortMobile.sorting",
|
|
2668
|
-
"defString": "Sorting",
|
|
2669
|
-
"highlighting": "string",
|
|
2670
|
-
"loc": {
|
|
2671
|
-
"start": {
|
|
2672
|
-
"line": 76,
|
|
2673
|
-
"column": 8,
|
|
2674
|
-
"index": 1963
|
|
2675
|
-
},
|
|
2676
|
-
"end": {
|
|
2677
|
-
"line": 76,
|
|
2678
|
-
"column": 72,
|
|
2679
|
-
"index": 2027
|
|
2680
|
-
}
|
|
2681
|
-
},
|
|
2682
|
-
"filepath": "src/components/table/mobile/table_sort_mobile.tsx"
|
|
2683
|
-
},
|
|
2684
2684
|
{
|
|
2685
2685
|
"token": "euiSelectableTemplateSitewide.searchPlaceholder",
|
|
2686
2686
|
"defString": "Search for anything...",
|
|
@@ -3077,6 +3077,42 @@
|
|
|
3077
3077
|
},
|
|
3078
3078
|
"filepath": "src/components/form/range/dual_range.tsx"
|
|
3079
3079
|
},
|
|
3080
|
+
{
|
|
3081
|
+
"token": "euiFormControlLayoutDelimited.delimiterLabel",
|
|
3082
|
+
"defString": "to",
|
|
3083
|
+
"highlighting": "string",
|
|
3084
|
+
"loc": {
|
|
3085
|
+
"start": {
|
|
3086
|
+
"line": 135,
|
|
3087
|
+
"column": 27,
|
|
3088
|
+
"index": 3846
|
|
3089
|
+
},
|
|
3090
|
+
"end": {
|
|
3091
|
+
"line": 138,
|
|
3092
|
+
"column": 3,
|
|
3093
|
+
"index": 3922
|
|
3094
|
+
}
|
|
3095
|
+
},
|
|
3096
|
+
"filepath": "src/components/form/form_control_layout/form_control_layout_delimited.tsx"
|
|
3097
|
+
},
|
|
3098
|
+
{
|
|
3099
|
+
"token": "euiFormControlLayoutClearButton.label",
|
|
3100
|
+
"defString": "Clear input",
|
|
3101
|
+
"highlighting": "string",
|
|
3102
|
+
"loc": {
|
|
3103
|
+
"start": {
|
|
3104
|
+
"line": 35,
|
|
3105
|
+
"column": 20,
|
|
3106
|
+
"index": 1412
|
|
3107
|
+
},
|
|
3108
|
+
"end": {
|
|
3109
|
+
"line": 38,
|
|
3110
|
+
"column": 3,
|
|
3111
|
+
"index": 1490
|
|
3112
|
+
}
|
|
3113
|
+
},
|
|
3114
|
+
"filepath": "src/components/form/form_control_layout/form_control_layout_clear_button.tsx"
|
|
3115
|
+
},
|
|
3080
3116
|
{
|
|
3081
3117
|
"token": "euiFilePicker.promptText",
|
|
3082
3118
|
"defString": "Select or drag and drop a file",
|
|
@@ -3150,44 +3186,8 @@
|
|
|
3150
3186
|
"filepath": "src/components/form/file_picker/file_picker.tsx"
|
|
3151
3187
|
},
|
|
3152
3188
|
{
|
|
3153
|
-
"token": "
|
|
3154
|
-
"defString": "
|
|
3155
|
-
"highlighting": "string",
|
|
3156
|
-
"loc": {
|
|
3157
|
-
"start": {
|
|
3158
|
-
"line": 135,
|
|
3159
|
-
"column": 27,
|
|
3160
|
-
"index": 3846
|
|
3161
|
-
},
|
|
3162
|
-
"end": {
|
|
3163
|
-
"line": 138,
|
|
3164
|
-
"column": 3,
|
|
3165
|
-
"index": 3922
|
|
3166
|
-
}
|
|
3167
|
-
},
|
|
3168
|
-
"filepath": "src/components/form/form_control_layout/form_control_layout_delimited.tsx"
|
|
3169
|
-
},
|
|
3170
|
-
{
|
|
3171
|
-
"token": "euiFormControlLayoutClearButton.label",
|
|
3172
|
-
"defString": "Clear input",
|
|
3173
|
-
"highlighting": "string",
|
|
3174
|
-
"loc": {
|
|
3175
|
-
"start": {
|
|
3176
|
-
"line": 35,
|
|
3177
|
-
"column": 20,
|
|
3178
|
-
"index": 1412
|
|
3179
|
-
},
|
|
3180
|
-
"end": {
|
|
3181
|
-
"line": 38,
|
|
3182
|
-
"column": 3,
|
|
3183
|
-
"index": 1490
|
|
3184
|
-
}
|
|
3185
|
-
},
|
|
3186
|
-
"filepath": "src/components/form/form_control_layout/form_control_layout_clear_button.tsx"
|
|
3187
|
-
},
|
|
3188
|
-
{
|
|
3189
|
-
"token": "euiFieldSearch.clearSearchButtonLabel",
|
|
3190
|
-
"defString": "Clear search input",
|
|
3189
|
+
"token": "euiFieldSearch.clearSearchButtonLabel",
|
|
3190
|
+
"defString": "Clear search input",
|
|
3191
3191
|
"highlighting": "string",
|
|
3192
3192
|
"loc": {
|
|
3193
3193
|
"start": {
|
|
@@ -3239,258 +3239,6 @@
|
|
|
3239
3239
|
},
|
|
3240
3240
|
"filepath": "src/components/form/field_password/field_password.tsx"
|
|
3241
3241
|
},
|
|
3242
|
-
{
|
|
3243
|
-
"token": "euiRefreshInterval.fullDescriptionOff",
|
|
3244
|
-
"defString": "Refresh is off, interval set to {optionValue} {optionText}.",
|
|
3245
|
-
"highlighting": "string",
|
|
3246
|
-
"loc": {
|
|
3247
|
-
"start": {
|
|
3248
|
-
"line": 221,
|
|
3249
|
-
"column": 6,
|
|
3250
|
-
"index": 5894
|
|
3251
|
-
},
|
|
3252
|
-
"end": {
|
|
3253
|
-
"line": 228,
|
|
3254
|
-
"column": 8,
|
|
3255
|
-
"index": 6124
|
|
3256
|
-
}
|
|
3257
|
-
},
|
|
3258
|
-
"filepath": "src/components/date_picker/auto_refresh/refresh_interval.tsx"
|
|
3259
|
-
},
|
|
3260
|
-
{
|
|
3261
|
-
"token": "euiRefreshInterval.fullDescriptionOn",
|
|
3262
|
-
"defString": "Refresh is on, interval set to {optionValue} {optionText}.",
|
|
3263
|
-
"highlighting": "string",
|
|
3264
|
-
"loc": {
|
|
3265
|
-
"start": {
|
|
3266
|
-
"line": 230,
|
|
3267
|
-
"column": 6,
|
|
3268
|
-
"index": 6141
|
|
3269
|
-
},
|
|
3270
|
-
"end": {
|
|
3271
|
-
"line": 237,
|
|
3272
|
-
"column": 8,
|
|
3273
|
-
"index": 6369
|
|
3274
|
-
}
|
|
3275
|
-
},
|
|
3276
|
-
"filepath": "src/components/date_picker/auto_refresh/refresh_interval.tsx"
|
|
3277
|
-
},
|
|
3278
|
-
{
|
|
3279
|
-
"token": "euiRefreshInterval.toggleLabel",
|
|
3280
|
-
"defString": "Refresh every",
|
|
3281
|
-
"highlighting": "string",
|
|
3282
|
-
"loc": {
|
|
3283
|
-
"start": {
|
|
3284
|
-
"line": 252,
|
|
3285
|
-
"column": 6,
|
|
3286
|
-
"index": 6639
|
|
3287
|
-
},
|
|
3288
|
-
"end": {
|
|
3289
|
-
"line": 265,
|
|
3290
|
-
"column": 7,
|
|
3291
|
-
"index": 7028
|
|
3292
|
-
}
|
|
3293
|
-
},
|
|
3294
|
-
"filepath": "src/components/date_picker/auto_refresh/refresh_interval.tsx"
|
|
3295
|
-
},
|
|
3296
|
-
{
|
|
3297
|
-
"token": "euiRefreshInterval.toggleAriaLabel",
|
|
3298
|
-
"defString": "Toggle refresh",
|
|
3299
|
-
"highlighting": "string",
|
|
3300
|
-
"loc": {
|
|
3301
|
-
"start": {
|
|
3302
|
-
"line": 252,
|
|
3303
|
-
"column": 6,
|
|
3304
|
-
"index": 6639
|
|
3305
|
-
},
|
|
3306
|
-
"end": {
|
|
3307
|
-
"line": 265,
|
|
3308
|
-
"column": 7,
|
|
3309
|
-
"index": 7028
|
|
3310
|
-
}
|
|
3311
|
-
},
|
|
3312
|
-
"filepath": "src/components/date_picker/auto_refresh/refresh_interval.tsx"
|
|
3313
|
-
},
|
|
3314
|
-
{
|
|
3315
|
-
"token": "euiRefreshInterval.valueAriaLabel",
|
|
3316
|
-
"defString": "Refresh interval value",
|
|
3317
|
-
"highlighting": "string",
|
|
3318
|
-
"loc": {
|
|
3319
|
-
"start": {
|
|
3320
|
-
"line": 252,
|
|
3321
|
-
"column": 6,
|
|
3322
|
-
"index": 6639
|
|
3323
|
-
},
|
|
3324
|
-
"end": {
|
|
3325
|
-
"line": 265,
|
|
3326
|
-
"column": 7,
|
|
3327
|
-
"index": 7028
|
|
3328
|
-
}
|
|
3329
|
-
},
|
|
3330
|
-
"filepath": "src/components/date_picker/auto_refresh/refresh_interval.tsx"
|
|
3331
|
-
},
|
|
3332
|
-
{
|
|
3333
|
-
"token": "euiRefreshInterval.unitsAriaLabel",
|
|
3334
|
-
"defString": "Refresh interval units",
|
|
3335
|
-
"highlighting": "string",
|
|
3336
|
-
"loc": {
|
|
3337
|
-
"start": {
|
|
3338
|
-
"line": 252,
|
|
3339
|
-
"column": 6,
|
|
3340
|
-
"index": 6639
|
|
3341
|
-
},
|
|
3342
|
-
"end": {
|
|
3343
|
-
"line": 265,
|
|
3344
|
-
"column": 7,
|
|
3345
|
-
"index": 7028
|
|
3346
|
-
}
|
|
3347
|
-
},
|
|
3348
|
-
"filepath": "src/components/date_picker/auto_refresh/refresh_interval.tsx"
|
|
3349
|
-
},
|
|
3350
|
-
{
|
|
3351
|
-
"token": "euiAutoRefresh.autoRefreshLabel",
|
|
3352
|
-
"defString": "Auto refresh",
|
|
3353
|
-
"highlighting": "string",
|
|
3354
|
-
"loc": {
|
|
3355
|
-
"start": {
|
|
3356
|
-
"line": 50,
|
|
3357
|
-
"column": 26,
|
|
3358
|
-
"index": 1659
|
|
3359
|
-
},
|
|
3360
|
-
"end": {
|
|
3361
|
-
"line": 53,
|
|
3362
|
-
"column": 3,
|
|
3363
|
-
"index": 1732
|
|
3364
|
-
}
|
|
3365
|
-
},
|
|
3366
|
-
"filepath": "src/components/date_picker/auto_refresh/auto_refresh.tsx"
|
|
3367
|
-
},
|
|
3368
|
-
{
|
|
3369
|
-
"token": "euiAutoRefresh.buttonLabelOff",
|
|
3370
|
-
"defString": "Auto refresh is off",
|
|
3371
|
-
"highlighting": "string",
|
|
3372
|
-
"loc": {
|
|
3373
|
-
"start": {
|
|
3374
|
-
"line": 129,
|
|
3375
|
-
"column": 29,
|
|
3376
|
-
"index": 3709
|
|
3377
|
-
},
|
|
3378
|
-
"end": {
|
|
3379
|
-
"line": 132,
|
|
3380
|
-
"column": 3,
|
|
3381
|
-
"index": 3787
|
|
3382
|
-
}
|
|
3383
|
-
},
|
|
3384
|
-
"filepath": "src/components/date_picker/auto_refresh/auto_refresh.tsx"
|
|
3385
|
-
},
|
|
3386
|
-
{
|
|
3387
|
-
"token": "euiAutoRefresh.buttonLabelOn",
|
|
3388
|
-
"defString": "Auto refresh is on and set to {prettyInterval}",
|
|
3389
|
-
"highlighting": "string",
|
|
3390
|
-
"loc": {
|
|
3391
|
-
"start": {
|
|
3392
|
-
"line": 133,
|
|
3393
|
-
"column": 28,
|
|
3394
|
-
"index": 3817
|
|
3395
|
-
},
|
|
3396
|
-
"end": {
|
|
3397
|
-
"line": 141,
|
|
3398
|
-
"column": 3,
|
|
3399
|
-
"index": 4051
|
|
3400
|
-
}
|
|
3401
|
-
},
|
|
3402
|
-
"filepath": "src/components/date_picker/auto_refresh/auto_refresh.tsx"
|
|
3403
|
-
},
|
|
3404
|
-
{
|
|
3405
|
-
"token": "euiSuperUpdateButton.updatingButtonLabel",
|
|
3406
|
-
"defString": "Updating",
|
|
3407
|
-
"highlighting": "string",
|
|
3408
|
-
"loc": {
|
|
3409
|
-
"start": {
|
|
3410
|
-
"line": 204,
|
|
3411
|
-
"column": 8,
|
|
3412
|
-
"index": 5158
|
|
3413
|
-
},
|
|
3414
|
-
"end": {
|
|
3415
|
-
"line": 207,
|
|
3416
|
-
"column": 10,
|
|
3417
|
-
"index": 5265
|
|
3418
|
-
}
|
|
3419
|
-
},
|
|
3420
|
-
"filepath": "src/components/date_picker/super_date_picker/super_update_button.tsx"
|
|
3421
|
-
},
|
|
3422
|
-
{
|
|
3423
|
-
"token": "euiSuperUpdateButton.updateButtonLabel",
|
|
3424
|
-
"defString": "Update",
|
|
3425
|
-
"highlighting": "string",
|
|
3426
|
-
"loc": {
|
|
3427
|
-
"start": {
|
|
3428
|
-
"line": 213,
|
|
3429
|
-
"column": 8,
|
|
3430
|
-
"index": 5328
|
|
3431
|
-
},
|
|
3432
|
-
"end": {
|
|
3433
|
-
"line": 216,
|
|
3434
|
-
"column": 10,
|
|
3435
|
-
"index": 5431
|
|
3436
|
-
}
|
|
3437
|
-
},
|
|
3438
|
-
"filepath": "src/components/date_picker/super_date_picker/super_update_button.tsx"
|
|
3439
|
-
},
|
|
3440
|
-
{
|
|
3441
|
-
"token": "euiSuperUpdateButton.refreshButtonLabel",
|
|
3442
|
-
"defString": "Refresh",
|
|
3443
|
-
"highlighting": "string",
|
|
3444
|
-
"loc": {
|
|
3445
|
-
"start": {
|
|
3446
|
-
"line": 221,
|
|
3447
|
-
"column": 6,
|
|
3448
|
-
"index": 5467
|
|
3449
|
-
},
|
|
3450
|
-
"end": {
|
|
3451
|
-
"line": 224,
|
|
3452
|
-
"column": 8,
|
|
3453
|
-
"index": 5566
|
|
3454
|
-
}
|
|
3455
|
-
},
|
|
3456
|
-
"filepath": "src/components/date_picker/super_date_picker/super_update_button.tsx"
|
|
3457
|
-
},
|
|
3458
|
-
{
|
|
3459
|
-
"token": "euiSuperUpdateButton.cannotUpdateTooltip",
|
|
3460
|
-
"defString": "Cannot update",
|
|
3461
|
-
"highlighting": "string",
|
|
3462
|
-
"loc": {
|
|
3463
|
-
"start": {
|
|
3464
|
-
"line": 231,
|
|
3465
|
-
"column": 8,
|
|
3466
|
-
"index": 5681
|
|
3467
|
-
},
|
|
3468
|
-
"end": {
|
|
3469
|
-
"line": 234,
|
|
3470
|
-
"column": 10,
|
|
3471
|
-
"index": 5793
|
|
3472
|
-
}
|
|
3473
|
-
},
|
|
3474
|
-
"filepath": "src/components/date_picker/super_date_picker/super_update_button.tsx"
|
|
3475
|
-
},
|
|
3476
|
-
{
|
|
3477
|
-
"token": "euiSuperUpdateButton.clickToApplyTooltip",
|
|
3478
|
-
"defString": "Click to apply",
|
|
3479
|
-
"highlighting": "string",
|
|
3480
|
-
"loc": {
|
|
3481
|
-
"start": {
|
|
3482
|
-
"line": 240,
|
|
3483
|
-
"column": 8,
|
|
3484
|
-
"index": 5892
|
|
3485
|
-
},
|
|
3486
|
-
"end": {
|
|
3487
|
-
"line": 243,
|
|
3488
|
-
"column": 10,
|
|
3489
|
-
"index": 6005
|
|
3490
|
-
}
|
|
3491
|
-
},
|
|
3492
|
-
"filepath": "src/components/date_picker/super_date_picker/super_update_button.tsx"
|
|
3493
|
-
},
|
|
3494
3242
|
{
|
|
3495
3243
|
"token": "euiTimeOptions.last",
|
|
3496
3244
|
"defString": "Last",
|
|
@@ -4155,25 +3903,115 @@
|
|
|
4155
3903
|
"index": 4951
|
|
4156
3904
|
}
|
|
4157
3905
|
},
|
|
4158
|
-
"filepath": "src/components/date_picker/super_date_picker/time_options.tsx"
|
|
3906
|
+
"filepath": "src/components/date_picker/super_date_picker/time_options.tsx"
|
|
3907
|
+
},
|
|
3908
|
+
{
|
|
3909
|
+
"token": "euiTimeOptions.yearToDate",
|
|
3910
|
+
"defString": "Year to date",
|
|
3911
|
+
"highlighting": "string",
|
|
3912
|
+
"loc": {
|
|
3913
|
+
"start": {
|
|
3914
|
+
"line": 170,
|
|
3915
|
+
"column": 13,
|
|
3916
|
+
"index": 5019
|
|
3917
|
+
},
|
|
3918
|
+
"end": {
|
|
3919
|
+
"line": 170,
|
|
3920
|
+
"column": 68,
|
|
3921
|
+
"index": 5074
|
|
3922
|
+
}
|
|
3923
|
+
},
|
|
3924
|
+
"filepath": "src/components/date_picker/super_date_picker/time_options.tsx"
|
|
3925
|
+
},
|
|
3926
|
+
{
|
|
3927
|
+
"token": "euiSuperUpdateButton.updatingButtonLabel",
|
|
3928
|
+
"defString": "Updating",
|
|
3929
|
+
"highlighting": "string",
|
|
3930
|
+
"loc": {
|
|
3931
|
+
"start": {
|
|
3932
|
+
"line": 204,
|
|
3933
|
+
"column": 8,
|
|
3934
|
+
"index": 5158
|
|
3935
|
+
},
|
|
3936
|
+
"end": {
|
|
3937
|
+
"line": 207,
|
|
3938
|
+
"column": 10,
|
|
3939
|
+
"index": 5265
|
|
3940
|
+
}
|
|
3941
|
+
},
|
|
3942
|
+
"filepath": "src/components/date_picker/super_date_picker/super_update_button.tsx"
|
|
3943
|
+
},
|
|
3944
|
+
{
|
|
3945
|
+
"token": "euiSuperUpdateButton.updateButtonLabel",
|
|
3946
|
+
"defString": "Update",
|
|
3947
|
+
"highlighting": "string",
|
|
3948
|
+
"loc": {
|
|
3949
|
+
"start": {
|
|
3950
|
+
"line": 213,
|
|
3951
|
+
"column": 8,
|
|
3952
|
+
"index": 5328
|
|
3953
|
+
},
|
|
3954
|
+
"end": {
|
|
3955
|
+
"line": 216,
|
|
3956
|
+
"column": 10,
|
|
3957
|
+
"index": 5431
|
|
3958
|
+
}
|
|
3959
|
+
},
|
|
3960
|
+
"filepath": "src/components/date_picker/super_date_picker/super_update_button.tsx"
|
|
3961
|
+
},
|
|
3962
|
+
{
|
|
3963
|
+
"token": "euiSuperUpdateButton.refreshButtonLabel",
|
|
3964
|
+
"defString": "Refresh",
|
|
3965
|
+
"highlighting": "string",
|
|
3966
|
+
"loc": {
|
|
3967
|
+
"start": {
|
|
3968
|
+
"line": 221,
|
|
3969
|
+
"column": 6,
|
|
3970
|
+
"index": 5467
|
|
3971
|
+
},
|
|
3972
|
+
"end": {
|
|
3973
|
+
"line": 224,
|
|
3974
|
+
"column": 8,
|
|
3975
|
+
"index": 5566
|
|
3976
|
+
}
|
|
3977
|
+
},
|
|
3978
|
+
"filepath": "src/components/date_picker/super_date_picker/super_update_button.tsx"
|
|
3979
|
+
},
|
|
3980
|
+
{
|
|
3981
|
+
"token": "euiSuperUpdateButton.cannotUpdateTooltip",
|
|
3982
|
+
"defString": "Cannot update",
|
|
3983
|
+
"highlighting": "string",
|
|
3984
|
+
"loc": {
|
|
3985
|
+
"start": {
|
|
3986
|
+
"line": 231,
|
|
3987
|
+
"column": 8,
|
|
3988
|
+
"index": 5681
|
|
3989
|
+
},
|
|
3990
|
+
"end": {
|
|
3991
|
+
"line": 234,
|
|
3992
|
+
"column": 10,
|
|
3993
|
+
"index": 5793
|
|
3994
|
+
}
|
|
3995
|
+
},
|
|
3996
|
+
"filepath": "src/components/date_picker/super_date_picker/super_update_button.tsx"
|
|
4159
3997
|
},
|
|
4160
3998
|
{
|
|
4161
|
-
"token": "
|
|
4162
|
-
"defString": "
|
|
3999
|
+
"token": "euiSuperUpdateButton.clickToApplyTooltip",
|
|
4000
|
+
"defString": "Click to apply",
|
|
4163
4001
|
"highlighting": "string",
|
|
4164
4002
|
"loc": {
|
|
4165
4003
|
"start": {
|
|
4166
|
-
"line":
|
|
4167
|
-
"column":
|
|
4168
|
-
"index":
|
|
4004
|
+
"line": 240,
|
|
4005
|
+
"column": 8,
|
|
4006
|
+
"index": 5892
|
|
4169
4007
|
},
|
|
4170
4008
|
"end": {
|
|
4171
|
-
"line":
|
|
4172
|
-
"column":
|
|
4173
|
-
"index":
|
|
4009
|
+
"line": 243,
|
|
4010
|
+
"column": 10,
|
|
4011
|
+
"index": 6005
|
|
4174
4012
|
}
|
|
4175
4013
|
},
|
|
4176
|
-
"filepath": "src/components/date_picker/super_date_picker/
|
|
4014
|
+
"filepath": "src/components/date_picker/super_date_picker/super_update_button.tsx"
|
|
4177
4015
|
},
|
|
4178
4016
|
{
|
|
4179
4017
|
"token": "euiPrettyInterval.seconds",
|
|
@@ -4769,6 +4607,204 @@
|
|
|
4769
4607
|
},
|
|
4770
4608
|
"filepath": "src/components/date_picker/super_date_picker/pretty_duration.tsx"
|
|
4771
4609
|
},
|
|
4610
|
+
{
|
|
4611
|
+
"token": "euiRefreshInterval.fullDescriptionOff",
|
|
4612
|
+
"defString": "Refresh is off, interval set to {optionValue} {optionText}.",
|
|
4613
|
+
"highlighting": "string",
|
|
4614
|
+
"loc": {
|
|
4615
|
+
"start": {
|
|
4616
|
+
"line": 221,
|
|
4617
|
+
"column": 6,
|
|
4618
|
+
"index": 5894
|
|
4619
|
+
},
|
|
4620
|
+
"end": {
|
|
4621
|
+
"line": 228,
|
|
4622
|
+
"column": 8,
|
|
4623
|
+
"index": 6124
|
|
4624
|
+
}
|
|
4625
|
+
},
|
|
4626
|
+
"filepath": "src/components/date_picker/auto_refresh/refresh_interval.tsx"
|
|
4627
|
+
},
|
|
4628
|
+
{
|
|
4629
|
+
"token": "euiRefreshInterval.fullDescriptionOn",
|
|
4630
|
+
"defString": "Refresh is on, interval set to {optionValue} {optionText}.",
|
|
4631
|
+
"highlighting": "string",
|
|
4632
|
+
"loc": {
|
|
4633
|
+
"start": {
|
|
4634
|
+
"line": 230,
|
|
4635
|
+
"column": 6,
|
|
4636
|
+
"index": 6141
|
|
4637
|
+
},
|
|
4638
|
+
"end": {
|
|
4639
|
+
"line": 237,
|
|
4640
|
+
"column": 8,
|
|
4641
|
+
"index": 6369
|
|
4642
|
+
}
|
|
4643
|
+
},
|
|
4644
|
+
"filepath": "src/components/date_picker/auto_refresh/refresh_interval.tsx"
|
|
4645
|
+
},
|
|
4646
|
+
{
|
|
4647
|
+
"token": "euiRefreshInterval.toggleLabel",
|
|
4648
|
+
"defString": "Refresh every",
|
|
4649
|
+
"highlighting": "string",
|
|
4650
|
+
"loc": {
|
|
4651
|
+
"start": {
|
|
4652
|
+
"line": 252,
|
|
4653
|
+
"column": 6,
|
|
4654
|
+
"index": 6639
|
|
4655
|
+
},
|
|
4656
|
+
"end": {
|
|
4657
|
+
"line": 265,
|
|
4658
|
+
"column": 7,
|
|
4659
|
+
"index": 7028
|
|
4660
|
+
}
|
|
4661
|
+
},
|
|
4662
|
+
"filepath": "src/components/date_picker/auto_refresh/refresh_interval.tsx"
|
|
4663
|
+
},
|
|
4664
|
+
{
|
|
4665
|
+
"token": "euiRefreshInterval.toggleAriaLabel",
|
|
4666
|
+
"defString": "Toggle refresh",
|
|
4667
|
+
"highlighting": "string",
|
|
4668
|
+
"loc": {
|
|
4669
|
+
"start": {
|
|
4670
|
+
"line": 252,
|
|
4671
|
+
"column": 6,
|
|
4672
|
+
"index": 6639
|
|
4673
|
+
},
|
|
4674
|
+
"end": {
|
|
4675
|
+
"line": 265,
|
|
4676
|
+
"column": 7,
|
|
4677
|
+
"index": 7028
|
|
4678
|
+
}
|
|
4679
|
+
},
|
|
4680
|
+
"filepath": "src/components/date_picker/auto_refresh/refresh_interval.tsx"
|
|
4681
|
+
},
|
|
4682
|
+
{
|
|
4683
|
+
"token": "euiRefreshInterval.valueAriaLabel",
|
|
4684
|
+
"defString": "Refresh interval value",
|
|
4685
|
+
"highlighting": "string",
|
|
4686
|
+
"loc": {
|
|
4687
|
+
"start": {
|
|
4688
|
+
"line": 252,
|
|
4689
|
+
"column": 6,
|
|
4690
|
+
"index": 6639
|
|
4691
|
+
},
|
|
4692
|
+
"end": {
|
|
4693
|
+
"line": 265,
|
|
4694
|
+
"column": 7,
|
|
4695
|
+
"index": 7028
|
|
4696
|
+
}
|
|
4697
|
+
},
|
|
4698
|
+
"filepath": "src/components/date_picker/auto_refresh/refresh_interval.tsx"
|
|
4699
|
+
},
|
|
4700
|
+
{
|
|
4701
|
+
"token": "euiRefreshInterval.unitsAriaLabel",
|
|
4702
|
+
"defString": "Refresh interval units",
|
|
4703
|
+
"highlighting": "string",
|
|
4704
|
+
"loc": {
|
|
4705
|
+
"start": {
|
|
4706
|
+
"line": 252,
|
|
4707
|
+
"column": 6,
|
|
4708
|
+
"index": 6639
|
|
4709
|
+
},
|
|
4710
|
+
"end": {
|
|
4711
|
+
"line": 265,
|
|
4712
|
+
"column": 7,
|
|
4713
|
+
"index": 7028
|
|
4714
|
+
}
|
|
4715
|
+
},
|
|
4716
|
+
"filepath": "src/components/date_picker/auto_refresh/refresh_interval.tsx"
|
|
4717
|
+
},
|
|
4718
|
+
{
|
|
4719
|
+
"token": "euiAutoRefresh.autoRefreshLabel",
|
|
4720
|
+
"defString": "Auto refresh",
|
|
4721
|
+
"highlighting": "string",
|
|
4722
|
+
"loc": {
|
|
4723
|
+
"start": {
|
|
4724
|
+
"line": 50,
|
|
4725
|
+
"column": 26,
|
|
4726
|
+
"index": 1659
|
|
4727
|
+
},
|
|
4728
|
+
"end": {
|
|
4729
|
+
"line": 53,
|
|
4730
|
+
"column": 3,
|
|
4731
|
+
"index": 1732
|
|
4732
|
+
}
|
|
4733
|
+
},
|
|
4734
|
+
"filepath": "src/components/date_picker/auto_refresh/auto_refresh.tsx"
|
|
4735
|
+
},
|
|
4736
|
+
{
|
|
4737
|
+
"token": "euiAutoRefresh.buttonLabelOff",
|
|
4738
|
+
"defString": "Auto refresh is off",
|
|
4739
|
+
"highlighting": "string",
|
|
4740
|
+
"loc": {
|
|
4741
|
+
"start": {
|
|
4742
|
+
"line": 129,
|
|
4743
|
+
"column": 29,
|
|
4744
|
+
"index": 3709
|
|
4745
|
+
},
|
|
4746
|
+
"end": {
|
|
4747
|
+
"line": 132,
|
|
4748
|
+
"column": 3,
|
|
4749
|
+
"index": 3787
|
|
4750
|
+
}
|
|
4751
|
+
},
|
|
4752
|
+
"filepath": "src/components/date_picker/auto_refresh/auto_refresh.tsx"
|
|
4753
|
+
},
|
|
4754
|
+
{
|
|
4755
|
+
"token": "euiAutoRefresh.buttonLabelOn",
|
|
4756
|
+
"defString": "Auto refresh is on and set to {prettyInterval}",
|
|
4757
|
+
"highlighting": "string",
|
|
4758
|
+
"loc": {
|
|
4759
|
+
"start": {
|
|
4760
|
+
"line": 133,
|
|
4761
|
+
"column": 28,
|
|
4762
|
+
"index": 3817
|
|
4763
|
+
},
|
|
4764
|
+
"end": {
|
|
4765
|
+
"line": 141,
|
|
4766
|
+
"column": 3,
|
|
4767
|
+
"index": 4051
|
|
4768
|
+
}
|
|
4769
|
+
},
|
|
4770
|
+
"filepath": "src/components/date_picker/auto_refresh/auto_refresh.tsx"
|
|
4771
|
+
},
|
|
4772
|
+
{
|
|
4773
|
+
"token": "euiDataGridPagination.detailedPaginationLabel",
|
|
4774
|
+
"defString": "Pagination for preceding grid: {label}",
|
|
4775
|
+
"highlighting": "string",
|
|
4776
|
+
"loc": {
|
|
4777
|
+
"start": {
|
|
4778
|
+
"line": 51,
|
|
4779
|
+
"column": 34,
|
|
4780
|
+
"index": 1785
|
|
4781
|
+
},
|
|
4782
|
+
"end": {
|
|
4783
|
+
"line": 55,
|
|
4784
|
+
"column": 3,
|
|
4785
|
+
"index": 1930
|
|
4786
|
+
}
|
|
4787
|
+
},
|
|
4788
|
+
"filepath": "src/components/datagrid/pagination/data_grid_pagination.tsx"
|
|
4789
|
+
},
|
|
4790
|
+
{
|
|
4791
|
+
"token": "euiDataGridPagination.paginationLabel",
|
|
4792
|
+
"defString": "Pagination for preceding grid",
|
|
4793
|
+
"highlighting": "string",
|
|
4794
|
+
"loc": {
|
|
4795
|
+
"start": {
|
|
4796
|
+
"line": 56,
|
|
4797
|
+
"column": 26,
|
|
4798
|
+
"index": 1958
|
|
4799
|
+
},
|
|
4800
|
+
"end": {
|
|
4801
|
+
"line": 59,
|
|
4802
|
+
"column": 3,
|
|
4803
|
+
"index": 2054
|
|
4804
|
+
}
|
|
4805
|
+
},
|
|
4806
|
+
"filepath": "src/components/datagrid/pagination/data_grid_pagination.tsx"
|
|
4807
|
+
},
|
|
4772
4808
|
{
|
|
4773
4809
|
"token": "euiDataGridSchema.booleanSortTextAsc",
|
|
4774
4810
|
"defString": "False-True",
|
|
@@ -4949,42 +4985,6 @@
|
|
|
4949
4985
|
},
|
|
4950
4986
|
"filepath": "src/components/datagrid/utils/data_grid_schema.tsx"
|
|
4951
4987
|
},
|
|
4952
|
-
{
|
|
4953
|
-
"token": "euiDataGridPagination.detailedPaginationLabel",
|
|
4954
|
-
"defString": "Pagination for preceding grid: {label}",
|
|
4955
|
-
"highlighting": "string",
|
|
4956
|
-
"loc": {
|
|
4957
|
-
"start": {
|
|
4958
|
-
"line": 51,
|
|
4959
|
-
"column": 34,
|
|
4960
|
-
"index": 1785
|
|
4961
|
-
},
|
|
4962
|
-
"end": {
|
|
4963
|
-
"line": 55,
|
|
4964
|
-
"column": 3,
|
|
4965
|
-
"index": 1930
|
|
4966
|
-
}
|
|
4967
|
-
},
|
|
4968
|
-
"filepath": "src/components/datagrid/pagination/data_grid_pagination.tsx"
|
|
4969
|
-
},
|
|
4970
|
-
{
|
|
4971
|
-
"token": "euiDataGridPagination.paginationLabel",
|
|
4972
|
-
"defString": "Pagination for preceding grid",
|
|
4973
|
-
"highlighting": "string",
|
|
4974
|
-
"loc": {
|
|
4975
|
-
"start": {
|
|
4976
|
-
"line": 56,
|
|
4977
|
-
"column": 26,
|
|
4978
|
-
"index": 1958
|
|
4979
|
-
},
|
|
4980
|
-
"end": {
|
|
4981
|
-
"line": 59,
|
|
4982
|
-
"column": 3,
|
|
4983
|
-
"index": 2054
|
|
4984
|
-
}
|
|
4985
|
-
},
|
|
4986
|
-
"filepath": "src/components/datagrid/pagination/data_grid_pagination.tsx"
|
|
4987
|
-
},
|
|
4988
4988
|
{
|
|
4989
4989
|
"token": "euiKeyboardShortcuts.title",
|
|
4990
4990
|
"defString": "Keyboard shortcuts",
|