@elastic/eui 85.1.0 → 86.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/eui_charts_theme.js +26 -2
- package/dist/eui_charts_theme.js.map +1 -1
- package/es/components/combo_box/combo_box_options_list/combo_box_title.js +1 -3
- package/es/components/datagrid/body/data_grid_body.js +7 -7
- package/es/components/datagrid/body/data_grid_body_custom.js +7 -7
- package/es/components/datagrid/body/data_grid_body_virtualized.js +7 -7
- package/es/components/datagrid/body/data_grid_cell.js +14 -13
- package/es/components/datagrid/body/header/data_grid_control_header_cell.js +2 -2
- package/es/components/datagrid/body/header/data_grid_header_cell.js +1 -1
- package/es/components/datagrid/body/header/data_grid_header_row.js +5 -5
- package/es/components/datagrid/controls/data_grid_toolbar.js +31 -26
- package/es/components/datagrid/controls/display_selector.js +1 -1
- package/es/components/datagrid/data_grid.js +7 -7
- package/es/components/datagrid/utils/in_memory.js +4 -4
- package/es/components/datagrid/utils/row_heights.js +4 -4
- package/es/components/date_picker/date_picker.js +1 -1
- package/es/components/drag_and_drop/drag_drop_context.js +1 -1
- package/es/components/drag_and_drop/draggable.js +2 -2
- package/es/components/drag_and_drop/droppable.js +1 -1
- package/es/components/drag_and_drop/index.js +3 -2
- package/es/components/header/header_section/header_section_item_button.js +94 -0
- package/es/components/highlight/highlight.js +2 -2
- package/es/components/inline_edit/inline_edit_text.js +2 -3
- package/es/components/inline_edit/inline_edit_title.js +2 -3
- package/es/components/inner_text/index.js +1 -2
- package/es/components/markdown_editor/markdown_actions.js +1 -1
- package/es/components/markdown_editor/markdown_editor_text_area.js +10 -4
- package/es/components/modal/confirm_modal.js +11 -29
- package/es/components/outside_click_detector/outside_click_detector.js +10 -11
- package/es/components/page/page_template.js +8 -8
- package/es/components/popover/wrapping_popover.js +1 -9
- package/es/components/portal/portal.js +34 -24
- package/es/components/tabs/tabs.js +25 -0
- package/es/components/timeline/timeline_item_icon.js +3 -3
- package/es/components/tour/tour_step.js +16 -12
- package/es/services/color/eui_palettes.js +7 -1
- package/es/services/color/index.js +1 -1
- package/es/services/index.js +1 -1
- package/es/services/time/timer.js +3 -5
- package/es/test/rtl/component_helpers.js +1 -1
- package/es/test/rtl/index.js +2 -1
- package/es/test/rtl/render_hook.js +23 -0
- package/eui.d.ts +1234 -748
- package/i18ntokens.json +144 -144
- package/lib/components/combo_box/combo_box_options_list/combo_box_title.js +1 -3
- package/lib/components/datagrid/body/data_grid_body.js +7 -7
- package/lib/components/datagrid/body/data_grid_body_custom.js +7 -7
- package/lib/components/datagrid/body/data_grid_body_virtualized.js +7 -7
- package/lib/components/datagrid/body/data_grid_cell.js +14 -13
- package/lib/components/datagrid/body/header/data_grid_control_header_cell.js +2 -2
- package/lib/components/datagrid/body/header/data_grid_header_cell.js +1 -1
- package/lib/components/datagrid/body/header/data_grid_header_row.js +5 -5
- package/lib/components/datagrid/controls/data_grid_toolbar.js +41 -38
- package/lib/components/datagrid/controls/display_selector.js +1 -1
- package/lib/components/datagrid/data_grid.js +7 -7
- package/lib/components/datagrid/utils/in_memory.js +4 -4
- package/lib/components/datagrid/utils/row_heights.js +4 -4
- package/lib/components/date_picker/date_picker.js +1 -1
- package/lib/components/drag_and_drop/drag_drop_context.js +2 -2
- package/lib/components/drag_and_drop/draggable.js +3 -3
- package/lib/components/drag_and_drop/droppable.js +2 -2
- package/lib/components/header/header_section/header_section_item_button.js +94 -0
- package/lib/components/highlight/highlight.js +2 -2
- package/lib/components/inline_edit/inline_edit_text.js +2 -3
- package/lib/components/inline_edit/inline_edit_title.js +2 -3
- package/lib/components/inner_text/index.js +1 -8
- package/lib/components/markdown_editor/markdown_actions.js +1 -1
- package/lib/components/markdown_editor/markdown_editor_text_area.js +10 -4
- package/lib/components/modal/confirm_modal.js +10 -28
- package/lib/components/outside_click_detector/outside_click_detector.js +10 -11
- package/lib/components/page/page_template.js +8 -8
- package/lib/components/popover/wrapping_popover.js +1 -9
- package/lib/components/portal/portal.js +34 -24
- package/lib/components/tabs/tabs.js +25 -0
- package/lib/components/timeline/timeline_item_icon.js +6 -3
- package/lib/components/tour/tour_step.js +15 -11
- package/lib/services/color/eui_palettes.js +9 -2
- package/lib/services/color/index.js +7 -0
- package/lib/services/index.js +7 -0
- package/lib/services/time/timer.js +3 -5
- package/lib/test/rtl/component_helpers.js +1 -1
- package/lib/test/rtl/index.js +13 -1
- package/lib/test/rtl/render_hook.js +29 -0
- package/optimize/es/components/datagrid/body/data_grid_cell.js +10 -9
- package/optimize/es/components/datagrid/controls/data_grid_toolbar.js +31 -26
- package/optimize/es/components/datagrid/controls/display_selector.js +1 -1
- package/optimize/es/components/datagrid/utils/in_memory.js +2 -2
- package/optimize/es/components/datagrid/utils/row_heights.js +4 -4
- package/optimize/es/components/date_picker/date_picker.js +1 -1
- package/optimize/es/components/drag_and_drop/drag_drop_context.js +1 -1
- package/optimize/es/components/drag_and_drop/draggable.js +2 -2
- package/optimize/es/components/drag_and_drop/droppable.js +1 -1
- package/optimize/es/components/drag_and_drop/index.js +3 -2
- package/optimize/es/components/highlight/highlight.js +2 -2
- package/optimize/es/components/inline_edit/inline_edit_text.js +2 -3
- package/optimize/es/components/inline_edit/inline_edit_title.js +2 -3
- package/optimize/es/components/inner_text/index.js +1 -2
- package/optimize/es/components/markdown_editor/markdown_actions.js +1 -1
- package/optimize/es/components/markdown_editor/markdown_editor_text_area.js +10 -4
- package/optimize/es/components/modal/confirm_modal.js +11 -24
- package/optimize/es/components/outside_click_detector/outside_click_detector.js +10 -11
- package/optimize/es/components/popover/wrapping_popover.js +1 -9
- package/optimize/es/components/portal/portal.js +34 -25
- package/optimize/es/components/timeline/timeline_item_icon.js +3 -3
- package/optimize/es/components/tour/tour_step.js +16 -12
- package/optimize/es/services/color/eui_palettes.js +7 -1
- package/optimize/es/services/color/index.js +1 -1
- package/optimize/es/services/index.js +1 -1
- package/optimize/es/services/time/timer.js +3 -5
- package/optimize/es/test/rtl/component_helpers.js +1 -1
- package/optimize/es/test/rtl/index.js +2 -1
- package/optimize/es/test/rtl/render_hook.js +23 -0
- package/optimize/lib/components/datagrid/body/data_grid_cell.js +10 -9
- package/optimize/lib/components/datagrid/controls/data_grid_toolbar.js +36 -28
- package/optimize/lib/components/datagrid/controls/display_selector.js +1 -1
- package/optimize/lib/components/datagrid/utils/in_memory.js +2 -2
- package/optimize/lib/components/datagrid/utils/row_heights.js +4 -4
- package/optimize/lib/components/date_picker/date_picker.js +1 -1
- package/optimize/lib/components/drag_and_drop/drag_drop_context.js +2 -2
- package/optimize/lib/components/drag_and_drop/draggable.js +3 -3
- package/optimize/lib/components/drag_and_drop/droppable.js +2 -2
- package/optimize/lib/components/highlight/highlight.js +2 -2
- package/optimize/lib/components/inline_edit/inline_edit_text.js +2 -3
- package/optimize/lib/components/inline_edit/inline_edit_title.js +2 -3
- package/optimize/lib/components/inner_text/index.js +1 -8
- package/optimize/lib/components/markdown_editor/markdown_actions.js +1 -1
- package/optimize/lib/components/markdown_editor/markdown_editor_text_area.js +10 -4
- package/optimize/lib/components/modal/confirm_modal.js +10 -23
- package/optimize/lib/components/outside_click_detector/outside_click_detector.js +10 -11
- package/optimize/lib/components/popover/wrapping_popover.js +1 -9
- package/optimize/lib/components/portal/portal.js +34 -25
- package/optimize/lib/components/timeline/timeline_item_icon.js +6 -4
- package/optimize/lib/components/tour/tour_step.js +15 -11
- package/optimize/lib/services/color/eui_palettes.js +9 -2
- package/optimize/lib/services/color/index.js +7 -0
- package/optimize/lib/services/index.js +7 -0
- package/optimize/lib/services/time/timer.js +3 -5
- package/optimize/lib/test/rtl/component_helpers.js +1 -1
- package/optimize/lib/test/rtl/index.js +13 -1
- package/optimize/lib/test/rtl/render_hook.js +29 -0
- package/package.json +23 -16
- package/test-env/components/combo_box/combo_box_options_list/combo_box_title.js +1 -3
- package/test-env/components/datagrid/body/data_grid_body.js +7 -7
- package/test-env/components/datagrid/body/data_grid_body_custom.js +7 -7
- package/test-env/components/datagrid/body/data_grid_body_virtualized.js +7 -7
- package/test-env/components/datagrid/body/data_grid_cell.js +14 -13
- package/test-env/components/datagrid/body/header/data_grid_control_header_cell.js +2 -2
- package/test-env/components/datagrid/body/header/data_grid_header_cell.js +1 -1
- package/test-env/components/datagrid/body/header/data_grid_header_row.js +5 -5
- package/test-env/components/datagrid/controls/data_grid_toolbar.js +36 -28
- package/test-env/components/datagrid/controls/display_selector.js +1 -1
- package/test-env/components/datagrid/data_grid.js +7 -7
- package/test-env/components/datagrid/utils/in_memory.js +4 -4
- package/test-env/components/datagrid/utils/row_heights.js +4 -4
- package/test-env/components/date_picker/date_picker.js +1 -1
- package/test-env/components/drag_and_drop/drag_drop_context.js +2 -2
- package/test-env/components/drag_and_drop/draggable.js +3 -3
- package/test-env/components/drag_and_drop/droppable.js +2 -2
- package/test-env/components/header/header_section/header_section_item_button.js +94 -0
- package/test-env/components/highlight/highlight.js +2 -2
- package/test-env/components/inline_edit/inline_edit_text.js +2 -3
- package/test-env/components/inline_edit/inline_edit_title.js +2 -3
- package/test-env/components/inner_text/index.js +1 -8
- package/test-env/components/markdown_editor/markdown_actions.js +1 -1
- package/test-env/components/markdown_editor/markdown_editor_text_area.js +10 -4
- package/test-env/components/modal/confirm_modal.js +10 -23
- package/test-env/components/outside_click_detector/outside_click_detector.js +10 -11
- package/test-env/components/page/page_template.js +8 -8
- package/test-env/components/popover/wrapping_popover.js +1 -9
- package/test-env/components/portal/portal.js +34 -25
- package/test-env/components/tabs/tabs.js +25 -0
- package/test-env/components/timeline/timeline_item_icon.js +6 -3
- package/test-env/components/tour/tour_step.js +15 -11
- package/test-env/services/color/eui_palettes.js +9 -2
- package/test-env/services/color/index.js +7 -0
- package/test-env/services/index.js +7 -0
- package/test-env/services/time/timer.js +3 -5
- package/test-env/test/rtl/component_helpers.js +1 -1
- package/test-env/test/rtl/index.js +13 -1
- package/test-env/test/rtl/render_hook.js +29 -0
- package/es/components/inner_text/render_to_text.js +0 -47
- package/lib/components/inner_text/render_to_text.js +0 -54
- package/optimize/es/components/inner_text/render_to_text.js +0 -42
- package/optimize/lib/components/inner_text/render_to_text.js +0 -52
- package/test-env/components/inner_text/render_to_text.js +0 -52
package/i18ntokens.json
CHANGED
|
@@ -257,14 +257,14 @@
|
|
|
257
257
|
"highlighting": "string",
|
|
258
258
|
"loc": {
|
|
259
259
|
"start": {
|
|
260
|
-
"line":
|
|
260
|
+
"line": 189,
|
|
261
261
|
"column": 20,
|
|
262
|
-
"index":
|
|
262
|
+
"index": 5037
|
|
263
263
|
},
|
|
264
264
|
"end": {
|
|
265
|
-
"line":
|
|
265
|
+
"line": 192,
|
|
266
266
|
"column": 3,
|
|
267
|
-
"index":
|
|
267
|
+
"index": 5130
|
|
268
268
|
}
|
|
269
269
|
},
|
|
270
270
|
"filepath": "src/components/breadcrumbs/breadcrumb.tsx"
|
|
@@ -347,14 +347,14 @@
|
|
|
347
347
|
"highlighting": "string",
|
|
348
348
|
"loc": {
|
|
349
349
|
"start": {
|
|
350
|
-
"line":
|
|
350
|
+
"line": 37,
|
|
351
351
|
"column": 20,
|
|
352
|
-
"index":
|
|
352
|
+
"index": 1192
|
|
353
353
|
},
|
|
354
354
|
"end": {
|
|
355
|
-
"line":
|
|
355
|
+
"line": 41,
|
|
356
356
|
"column": 3,
|
|
357
|
-
"index":
|
|
357
|
+
"index": 1328
|
|
358
358
|
}
|
|
359
359
|
},
|
|
360
360
|
"filepath": "src/components/code/code_block_annotations.tsx"
|
|
@@ -383,14 +383,14 @@
|
|
|
383
383
|
"highlighting": "string",
|
|
384
384
|
"loc": {
|
|
385
385
|
"start": {
|
|
386
|
-
"line":
|
|
386
|
+
"line": 55,
|
|
387
387
|
"column": 49,
|
|
388
|
-
"index":
|
|
388
|
+
"index": 1750
|
|
389
389
|
},
|
|
390
390
|
"end": {
|
|
391
|
-
"line":
|
|
391
|
+
"line": 61,
|
|
392
392
|
"column": 3,
|
|
393
|
-
"index":
|
|
393
|
+
"index": 1905
|
|
394
394
|
}
|
|
395
395
|
},
|
|
396
396
|
"filepath": "src/components/code/code_block_full_screen.tsx"
|
|
@@ -401,14 +401,14 @@
|
|
|
401
401
|
"highlighting": "string",
|
|
402
402
|
"loc": {
|
|
403
403
|
"start": {
|
|
404
|
-
"line":
|
|
404
|
+
"line": 55,
|
|
405
405
|
"column": 49,
|
|
406
|
-
"index":
|
|
406
|
+
"index": 1750
|
|
407
407
|
},
|
|
408
408
|
"end": {
|
|
409
|
-
"line":
|
|
409
|
+
"line": 61,
|
|
410
410
|
"column": 3,
|
|
411
|
-
"index":
|
|
411
|
+
"index": 1905
|
|
412
412
|
}
|
|
413
413
|
},
|
|
414
414
|
"filepath": "src/components/code/code_block_full_screen.tsx"
|
|
@@ -977,14 +977,14 @@
|
|
|
977
977
|
"highlighting": "string",
|
|
978
978
|
"loc": {
|
|
979
979
|
"start": {
|
|
980
|
-
"line":
|
|
980
|
+
"line": 100,
|
|
981
981
|
"column": 12,
|
|
982
|
-
"index":
|
|
982
|
+
"index": 2981
|
|
983
983
|
},
|
|
984
984
|
"end": {
|
|
985
|
-
"line":
|
|
985
|
+
"line": 108,
|
|
986
986
|
"column": 14,
|
|
987
|
-
"index":
|
|
987
|
+
"index": 3288
|
|
988
988
|
}
|
|
989
989
|
},
|
|
990
990
|
"filepath": "src/components/datagrid/body/data_grid_cell.tsx"
|
|
@@ -1213,12 +1213,12 @@
|
|
|
1213
1213
|
"start": {
|
|
1214
1214
|
"line": 362,
|
|
1215
1215
|
"column": 6,
|
|
1216
|
-
"index":
|
|
1216
|
+
"index": 11042
|
|
1217
1217
|
},
|
|
1218
1218
|
"end": {
|
|
1219
1219
|
"line": 365,
|
|
1220
1220
|
"column": 8,
|
|
1221
|
-
"index":
|
|
1221
|
+
"index": 11235
|
|
1222
1222
|
}
|
|
1223
1223
|
},
|
|
1224
1224
|
"filepath": "src/components/datagrid/body/header/data_grid_header_cell.tsx"
|
|
@@ -1231,12 +1231,12 @@
|
|
|
1231
1231
|
"start": {
|
|
1232
1232
|
"line": 120,
|
|
1233
1233
|
"column": 30,
|
|
1234
|
-
"index":
|
|
1234
|
+
"index": 3633
|
|
1235
1235
|
},
|
|
1236
1236
|
"end": {
|
|
1237
1237
|
"line": 123,
|
|
1238
1238
|
"column": 3,
|
|
1239
|
-
"index":
|
|
1239
|
+
"index": 3711
|
|
1240
1240
|
}
|
|
1241
1241
|
},
|
|
1242
1242
|
"filepath": "src/components/datagrid/controls/column_selector.tsx"
|
|
@@ -1249,12 +1249,12 @@
|
|
|
1249
1249
|
"start": {
|
|
1250
1250
|
"line": 126,
|
|
1251
1251
|
"column": 4,
|
|
1252
|
-
"index":
|
|
1252
|
+
"index": 3739
|
|
1253
1253
|
},
|
|
1254
1254
|
"end": {
|
|
1255
1255
|
"line": 126,
|
|
1256
1256
|
"column": 66,
|
|
1257
|
-
"index":
|
|
1257
|
+
"index": 3801
|
|
1258
1258
|
}
|
|
1259
1259
|
},
|
|
1260
1260
|
"filepath": "src/components/datagrid/controls/column_selector.tsx"
|
|
@@ -1267,12 +1267,12 @@
|
|
|
1267
1267
|
"start": {
|
|
1268
1268
|
"line": 131,
|
|
1269
1269
|
"column": 6,
|
|
1270
|
-
"index":
|
|
1270
|
+
"index": 3869
|
|
1271
1271
|
},
|
|
1272
1272
|
"end": {
|
|
1273
1273
|
"line": 135,
|
|
1274
1274
|
"column": 8,
|
|
1275
|
-
"index":
|
|
1275
|
+
"index": 4038
|
|
1276
1276
|
}
|
|
1277
1277
|
},
|
|
1278
1278
|
"filepath": "src/components/datagrid/controls/column_selector.tsx"
|
|
@@ -1285,12 +1285,12 @@
|
|
|
1285
1285
|
"start": {
|
|
1286
1286
|
"line": 139,
|
|
1287
1287
|
"column": 6,
|
|
1288
|
-
"index":
|
|
1288
|
+
"index": 4112
|
|
1289
1289
|
},
|
|
1290
1290
|
"end": {
|
|
1291
1291
|
"line": 143,
|
|
1292
1292
|
"column": 8,
|
|
1293
|
-
"index":
|
|
1293
|
+
"index": 4280
|
|
1294
1294
|
}
|
|
1295
1295
|
},
|
|
1296
1296
|
"filepath": "src/components/datagrid/controls/column_selector.tsx"
|
|
@@ -1303,12 +1303,12 @@
|
|
|
1303
1303
|
"start": {
|
|
1304
1304
|
"line": 172,
|
|
1305
1305
|
"column": 14,
|
|
1306
|
-
"index":
|
|
1306
|
+
"index": 5066
|
|
1307
1307
|
},
|
|
1308
1308
|
"end": {
|
|
1309
1309
|
"line": 178,
|
|
1310
1310
|
"column": 15,
|
|
1311
|
-
"index":
|
|
1311
|
+
"index": 5290
|
|
1312
1312
|
}
|
|
1313
1313
|
},
|
|
1314
1314
|
"filepath": "src/components/datagrid/controls/column_selector.tsx"
|
|
@@ -1321,12 +1321,12 @@
|
|
|
1321
1321
|
"start": {
|
|
1322
1322
|
"line": 172,
|
|
1323
1323
|
"column": 14,
|
|
1324
|
-
"index":
|
|
1324
|
+
"index": 5066
|
|
1325
1325
|
},
|
|
1326
1326
|
"end": {
|
|
1327
1327
|
"line": 178,
|
|
1328
1328
|
"column": 15,
|
|
1329
|
-
"index":
|
|
1329
|
+
"index": 5290
|
|
1330
1330
|
}
|
|
1331
1331
|
},
|
|
1332
1332
|
"filepath": "src/components/datagrid/controls/column_selector.tsx"
|
|
@@ -1339,12 +1339,12 @@
|
|
|
1339
1339
|
"start": {
|
|
1340
1340
|
"line": 294,
|
|
1341
1341
|
"column": 18,
|
|
1342
|
-
"index":
|
|
1342
|
+
"index": 10539
|
|
1343
1343
|
},
|
|
1344
1344
|
"end": {
|
|
1345
1345
|
"line": 297,
|
|
1346
1346
|
"column": 20,
|
|
1347
|
-
"index":
|
|
1347
|
+
"index": 10663
|
|
1348
1348
|
}
|
|
1349
1349
|
},
|
|
1350
1350
|
"filepath": "src/components/datagrid/controls/column_selector.tsx"
|
|
@@ -1357,12 +1357,12 @@
|
|
|
1357
1357
|
"start": {
|
|
1358
1358
|
"line": 307,
|
|
1359
1359
|
"column": 18,
|
|
1360
|
-
"index":
|
|
1360
|
+
"index": 11023
|
|
1361
1361
|
},
|
|
1362
1362
|
"end": {
|
|
1363
1363
|
"line": 310,
|
|
1364
1364
|
"column": 20,
|
|
1365
|
-
"index":
|
|
1365
|
+
"index": 11145
|
|
1366
1366
|
}
|
|
1367
1367
|
},
|
|
1368
1368
|
"filepath": "src/components/datagrid/controls/column_selector.tsx"
|
|
@@ -1483,12 +1483,12 @@
|
|
|
1483
1483
|
"start": {
|
|
1484
1484
|
"line": 61,
|
|
1485
1485
|
"column": 28,
|
|
1486
|
-
"index":
|
|
1486
|
+
"index": 2274
|
|
1487
1487
|
},
|
|
1488
1488
|
"end": {
|
|
1489
1489
|
"line": 64,
|
|
1490
1490
|
"column": 3,
|
|
1491
|
-
"index":
|
|
1491
|
+
"index": 2338
|
|
1492
1492
|
}
|
|
1493
1493
|
},
|
|
1494
1494
|
"filepath": "src/components/datagrid/controls/column_sorting.tsx"
|
|
@@ -1501,12 +1501,12 @@
|
|
|
1501
1501
|
"start": {
|
|
1502
1502
|
"line": 66,
|
|
1503
1503
|
"column": 34,
|
|
1504
|
-
"index":
|
|
1504
|
+
"index": 2375
|
|
1505
1505
|
},
|
|
1506
1506
|
"end": {
|
|
1507
1507
|
"line": 75,
|
|
1508
1508
|
"column": 3,
|
|
1509
|
-
"index":
|
|
1509
|
+
"index": 2649
|
|
1510
1510
|
}
|
|
1511
1511
|
},
|
|
1512
1512
|
"filepath": "src/components/datagrid/controls/column_sorting.tsx"
|
|
@@ -1519,12 +1519,12 @@
|
|
|
1519
1519
|
"start": {
|
|
1520
1520
|
"line": 190,
|
|
1521
1521
|
"column": 12,
|
|
1522
|
-
"index":
|
|
1522
|
+
"index": 5952
|
|
1523
1523
|
},
|
|
1524
1524
|
"end": {
|
|
1525
1525
|
"line": 193,
|
|
1526
1526
|
"column": 14,
|
|
1527
|
-
"index":
|
|
1527
|
+
"index": 6082
|
|
1528
1528
|
}
|
|
1529
1529
|
},
|
|
1530
1530
|
"filepath": "src/components/datagrid/controls/column_sorting.tsx"
|
|
@@ -1537,12 +1537,12 @@
|
|
|
1537
1537
|
"start": {
|
|
1538
1538
|
"line": 223,
|
|
1539
1539
|
"column": 22,
|
|
1540
|
-
"index":
|
|
1540
|
+
"index": 7245
|
|
1541
1541
|
},
|
|
1542
1542
|
"end": {
|
|
1543
1543
|
"line": 226,
|
|
1544
1544
|
"column": 24,
|
|
1545
|
-
"index":
|
|
1545
|
+
"index": 7395
|
|
1546
1546
|
}
|
|
1547
1547
|
},
|
|
1548
1548
|
"filepath": "src/components/datagrid/controls/column_sorting.tsx"
|
|
@@ -1555,12 +1555,12 @@
|
|
|
1555
1555
|
"start": {
|
|
1556
1556
|
"line": 230,
|
|
1557
1557
|
"column": 18,
|
|
1558
|
-
"index":
|
|
1558
|
+
"index": 7490
|
|
1559
1559
|
},
|
|
1560
1560
|
"end": {
|
|
1561
1561
|
"line": 233,
|
|
1562
1562
|
"column": 19,
|
|
1563
|
-
"index":
|
|
1563
|
+
"index": 7622
|
|
1564
1564
|
}
|
|
1565
1565
|
},
|
|
1566
1566
|
"filepath": "src/components/datagrid/controls/column_sorting.tsx"
|
|
@@ -1573,12 +1573,12 @@
|
|
|
1573
1573
|
"start": {
|
|
1574
1574
|
"line": 311,
|
|
1575
1575
|
"column": 18,
|
|
1576
|
-
"index":
|
|
1576
|
+
"index": 11375
|
|
1577
1577
|
},
|
|
1578
1578
|
"end": {
|
|
1579
1579
|
"line": 314,
|
|
1580
1580
|
"column": 20,
|
|
1581
|
-
"index":
|
|
1581
|
+
"index": 11502
|
|
1582
1582
|
}
|
|
1583
1583
|
},
|
|
1584
1584
|
"filepath": "src/components/datagrid/controls/column_sorting.tsx"
|
|
@@ -1589,14 +1589,14 @@
|
|
|
1589
1589
|
"highlighting": "string",
|
|
1590
1590
|
"loc": {
|
|
1591
1591
|
"start": {
|
|
1592
|
-
"line":
|
|
1592
|
+
"line": 210,
|
|
1593
1593
|
"column": 22,
|
|
1594
|
-
"index":
|
|
1594
|
+
"index": 6874
|
|
1595
1595
|
},
|
|
1596
1596
|
"end": {
|
|
1597
|
-
"line":
|
|
1597
|
+
"line": 213,
|
|
1598
1598
|
"column": 3,
|
|
1599
|
-
"index":
|
|
1599
|
+
"index": 6948
|
|
1600
1600
|
}
|
|
1601
1601
|
},
|
|
1602
1602
|
"filepath": "src/components/datagrid/controls/display_selector.tsx"
|
|
@@ -1607,14 +1607,14 @@
|
|
|
1607
1607
|
"highlighting": "string",
|
|
1608
1608
|
"loc": {
|
|
1609
1609
|
"start": {
|
|
1610
|
-
"line":
|
|
1610
|
+
"line": 214,
|
|
1611
1611
|
"column": 27,
|
|
1612
|
-
"index":
|
|
1612
|
+
"index": 6977
|
|
1613
1613
|
},
|
|
1614
1614
|
"end": {
|
|
1615
|
-
"line":
|
|
1615
|
+
"line": 217,
|
|
1616
1616
|
"column": 3,
|
|
1617
|
-
"index":
|
|
1617
|
+
"index": 7057
|
|
1618
1618
|
}
|
|
1619
1619
|
},
|
|
1620
1620
|
"filepath": "src/components/datagrid/controls/display_selector.tsx"
|
|
@@ -1625,14 +1625,14 @@
|
|
|
1625
1625
|
"highlighting": "string",
|
|
1626
1626
|
"loc": {
|
|
1627
1627
|
"start": {
|
|
1628
|
-
"line":
|
|
1628
|
+
"line": 247,
|
|
1629
1629
|
"column": 10,
|
|
1630
|
-
"index":
|
|
1630
|
+
"index": 8042
|
|
1631
1631
|
},
|
|
1632
1632
|
"end": {
|
|
1633
|
-
"line":
|
|
1633
|
+
"line": 255,
|
|
1634
1634
|
"column": 11,
|
|
1635
|
-
"index":
|
|
1635
|
+
"index": 8363
|
|
1636
1636
|
}
|
|
1637
1637
|
},
|
|
1638
1638
|
"filepath": "src/components/datagrid/controls/display_selector.tsx"
|
|
@@ -1643,14 +1643,14 @@
|
|
|
1643
1643
|
"highlighting": "string",
|
|
1644
1644
|
"loc": {
|
|
1645
1645
|
"start": {
|
|
1646
|
-
"line":
|
|
1646
|
+
"line": 247,
|
|
1647
1647
|
"column": 10,
|
|
1648
|
-
"index":
|
|
1648
|
+
"index": 8042
|
|
1649
1649
|
},
|
|
1650
1650
|
"end": {
|
|
1651
|
-
"line":
|
|
1651
|
+
"line": 255,
|
|
1652
1652
|
"column": 11,
|
|
1653
|
-
"index":
|
|
1653
|
+
"index": 8363
|
|
1654
1654
|
}
|
|
1655
1655
|
},
|
|
1656
1656
|
"filepath": "src/components/datagrid/controls/display_selector.tsx"
|
|
@@ -1661,14 +1661,14 @@
|
|
|
1661
1661
|
"highlighting": "string",
|
|
1662
1662
|
"loc": {
|
|
1663
1663
|
"start": {
|
|
1664
|
-
"line":
|
|
1664
|
+
"line": 247,
|
|
1665
1665
|
"column": 10,
|
|
1666
|
-
"index":
|
|
1666
|
+
"index": 8042
|
|
1667
1667
|
},
|
|
1668
1668
|
"end": {
|
|
1669
|
-
"line":
|
|
1669
|
+
"line": 255,
|
|
1670
1670
|
"column": 11,
|
|
1671
|
-
"index":
|
|
1671
|
+
"index": 8363
|
|
1672
1672
|
}
|
|
1673
1673
|
},
|
|
1674
1674
|
"filepath": "src/components/datagrid/controls/display_selector.tsx"
|
|
@@ -1679,14 +1679,14 @@
|
|
|
1679
1679
|
"highlighting": "string",
|
|
1680
1680
|
"loc": {
|
|
1681
1681
|
"start": {
|
|
1682
|
-
"line":
|
|
1682
|
+
"line": 247,
|
|
1683
1683
|
"column": 10,
|
|
1684
|
-
"index":
|
|
1684
|
+
"index": 8042
|
|
1685
1685
|
},
|
|
1686
1686
|
"end": {
|
|
1687
|
-
"line":
|
|
1687
|
+
"line": 255,
|
|
1688
1688
|
"column": 11,
|
|
1689
|
-
"index":
|
|
1689
|
+
"index": 8363
|
|
1690
1690
|
}
|
|
1691
1691
|
},
|
|
1692
1692
|
"filepath": "src/components/datagrid/controls/display_selector.tsx"
|
|
@@ -1697,14 +1697,14 @@
|
|
|
1697
1697
|
"highlighting": "string",
|
|
1698
1698
|
"loc": {
|
|
1699
1699
|
"start": {
|
|
1700
|
-
"line":
|
|
1700
|
+
"line": 290,
|
|
1701
1701
|
"column": 10,
|
|
1702
|
-
"index":
|
|
1702
|
+
"index": 9470
|
|
1703
1703
|
},
|
|
1704
1704
|
"end": {
|
|
1705
|
-
"line":
|
|
1705
|
+
"line": 305,
|
|
1706
1706
|
"column": 11,
|
|
1707
|
-
"index":
|
|
1707
|
+
"index": 9943
|
|
1708
1708
|
}
|
|
1709
1709
|
},
|
|
1710
1710
|
"filepath": "src/components/datagrid/controls/display_selector.tsx"
|
|
@@ -1715,14 +1715,14 @@
|
|
|
1715
1715
|
"highlighting": "string",
|
|
1716
1716
|
"loc": {
|
|
1717
1717
|
"start": {
|
|
1718
|
-
"line":
|
|
1718
|
+
"line": 290,
|
|
1719
1719
|
"column": 10,
|
|
1720
|
-
"index":
|
|
1720
|
+
"index": 9470
|
|
1721
1721
|
},
|
|
1722
1722
|
"end": {
|
|
1723
|
-
"line":
|
|
1723
|
+
"line": 305,
|
|
1724
1724
|
"column": 11,
|
|
1725
|
-
"index":
|
|
1725
|
+
"index": 9943
|
|
1726
1726
|
}
|
|
1727
1727
|
},
|
|
1728
1728
|
"filepath": "src/components/datagrid/controls/display_selector.tsx"
|
|
@@ -1733,14 +1733,14 @@
|
|
|
1733
1733
|
"highlighting": "string",
|
|
1734
1734
|
"loc": {
|
|
1735
1735
|
"start": {
|
|
1736
|
-
"line":
|
|
1736
|
+
"line": 290,
|
|
1737
1737
|
"column": 10,
|
|
1738
|
-
"index":
|
|
1738
|
+
"index": 9470
|
|
1739
1739
|
},
|
|
1740
1740
|
"end": {
|
|
1741
|
-
"line":
|
|
1741
|
+
"line": 305,
|
|
1742
1742
|
"column": 11,
|
|
1743
|
-
"index":
|
|
1743
|
+
"index": 9943
|
|
1744
1744
|
}
|
|
1745
1745
|
},
|
|
1746
1746
|
"filepath": "src/components/datagrid/controls/display_selector.tsx"
|
|
@@ -1751,14 +1751,14 @@
|
|
|
1751
1751
|
"highlighting": "string",
|
|
1752
1752
|
"loc": {
|
|
1753
1753
|
"start": {
|
|
1754
|
-
"line":
|
|
1754
|
+
"line": 290,
|
|
1755
1755
|
"column": 10,
|
|
1756
|
-
"index":
|
|
1756
|
+
"index": 9470
|
|
1757
1757
|
},
|
|
1758
1758
|
"end": {
|
|
1759
|
-
"line":
|
|
1759
|
+
"line": 305,
|
|
1760
1760
|
"column": 11,
|
|
1761
|
-
"index":
|
|
1761
|
+
"index": 9943
|
|
1762
1762
|
}
|
|
1763
1763
|
},
|
|
1764
1764
|
"filepath": "src/components/datagrid/controls/display_selector.tsx"
|
|
@@ -1769,14 +1769,14 @@
|
|
|
1769
1769
|
"highlighting": "string",
|
|
1770
1770
|
"loc": {
|
|
1771
1771
|
"start": {
|
|
1772
|
-
"line":
|
|
1772
|
+
"line": 290,
|
|
1773
1773
|
"column": 10,
|
|
1774
|
-
"index":
|
|
1774
|
+
"index": 9470
|
|
1775
1775
|
},
|
|
1776
1776
|
"end": {
|
|
1777
|
-
"line":
|
|
1777
|
+
"line": 305,
|
|
1778
1778
|
"column": 11,
|
|
1779
|
-
"index":
|
|
1779
|
+
"index": 9943
|
|
1780
1780
|
}
|
|
1781
1781
|
},
|
|
1782
1782
|
"filepath": "src/components/datagrid/controls/display_selector.tsx"
|
|
@@ -2363,14 +2363,14 @@
|
|
|
2363
2363
|
"highlighting": "string",
|
|
2364
2364
|
"loc": {
|
|
2365
2365
|
"start": {
|
|
2366
|
-
"line":
|
|
2366
|
+
"line": 28,
|
|
2367
2367
|
"column": 34,
|
|
2368
|
-
"index":
|
|
2368
|
+
"index": 1025
|
|
2369
2369
|
},
|
|
2370
2370
|
"end": {
|
|
2371
|
-
"line":
|
|
2371
|
+
"line": 32,
|
|
2372
2372
|
"column": 3,
|
|
2373
|
-
"index":
|
|
2373
|
+
"index": 1170
|
|
2374
2374
|
}
|
|
2375
2375
|
},
|
|
2376
2376
|
"filepath": "src/components/datagrid/utils/data_grid_pagination.tsx"
|
|
@@ -2381,14 +2381,14 @@
|
|
|
2381
2381
|
"highlighting": "string",
|
|
2382
2382
|
"loc": {
|
|
2383
2383
|
"start": {
|
|
2384
|
-
"line":
|
|
2384
|
+
"line": 33,
|
|
2385
2385
|
"column": 26,
|
|
2386
|
-
"index":
|
|
2386
|
+
"index": 1198
|
|
2387
2387
|
},
|
|
2388
2388
|
"end": {
|
|
2389
|
-
"line":
|
|
2389
|
+
"line": 36,
|
|
2390
2390
|
"column": 3,
|
|
2391
|
-
"index":
|
|
2391
|
+
"index": 1294
|
|
2392
2392
|
}
|
|
2393
2393
|
},
|
|
2394
2394
|
"filepath": "src/components/datagrid/utils/data_grid_pagination.tsx"
|
|
@@ -4831,12 +4831,12 @@
|
|
|
4831
4831
|
"start": {
|
|
4832
4832
|
"line": 94,
|
|
4833
4833
|
"column": 8,
|
|
4834
|
-
"index":
|
|
4834
|
+
"index": 2536
|
|
4835
4835
|
},
|
|
4836
4836
|
"end": {
|
|
4837
4837
|
"line": 97,
|
|
4838
4838
|
"column": 9,
|
|
4839
|
-
"index":
|
|
4839
|
+
"index": 2657
|
|
4840
4840
|
}
|
|
4841
4841
|
},
|
|
4842
4842
|
"filepath": "src/components/form/form.tsx"
|
|
@@ -4991,14 +4991,14 @@
|
|
|
4991
4991
|
"highlighting": "string",
|
|
4992
4992
|
"loc": {
|
|
4993
4993
|
"start": {
|
|
4994
|
-
"line":
|
|
4994
|
+
"line": 147,
|
|
4995
4995
|
"column": 37,
|
|
4996
|
-
"index":
|
|
4996
|
+
"index": 4607
|
|
4997
4997
|
},
|
|
4998
4998
|
"end": {
|
|
4999
|
-
"line":
|
|
4999
|
+
"line": 150,
|
|
5000
5000
|
"column": 3,
|
|
5001
|
-
"index":
|
|
5001
|
+
"index": 4683
|
|
5002
5002
|
}
|
|
5003
5003
|
},
|
|
5004
5004
|
"filepath": "src/components/inline_edit/inline_edit_form.tsx"
|
|
@@ -5009,14 +5009,14 @@
|
|
|
5009
5009
|
"highlighting": "string",
|
|
5010
5010
|
"loc": {
|
|
5011
5011
|
"start": {
|
|
5012
|
-
"line":
|
|
5012
|
+
"line": 151,
|
|
5013
5013
|
"column": 39,
|
|
5014
|
-
"index":
|
|
5014
|
+
"index": 4724
|
|
5015
5015
|
},
|
|
5016
5016
|
"end": {
|
|
5017
|
-
"line":
|
|
5017
|
+
"line": 154,
|
|
5018
5018
|
"column": 3,
|
|
5019
|
-
"index":
|
|
5019
|
+
"index": 4804
|
|
5020
5020
|
}
|
|
5021
5021
|
},
|
|
5022
5022
|
"filepath": "src/components/inline_edit/inline_edit_form.tsx"
|
|
@@ -5027,14 +5027,14 @@
|
|
|
5027
5027
|
"highlighting": "string",
|
|
5028
5028
|
"loc": {
|
|
5029
5029
|
"start": {
|
|
5030
|
-
"line":
|
|
5030
|
+
"line": 261,
|
|
5031
5031
|
"column": 10,
|
|
5032
|
-
"index":
|
|
5032
|
+
"index": 8414
|
|
5033
5033
|
},
|
|
5034
5034
|
"end": {
|
|
5035
|
-
"line":
|
|
5035
|
+
"line": 264,
|
|
5036
5036
|
"column": 12,
|
|
5037
|
-
"index":
|
|
5037
|
+
"index": 8593
|
|
5038
5038
|
}
|
|
5039
5039
|
},
|
|
5040
5040
|
"filepath": "src/components/inline_edit/inline_edit_form.tsx"
|
|
@@ -5045,14 +5045,14 @@
|
|
|
5045
5045
|
"highlighting": "string",
|
|
5046
5046
|
"loc": {
|
|
5047
5047
|
"start": {
|
|
5048
|
-
"line":
|
|
5048
|
+
"line": 352,
|
|
5049
5049
|
"column": 10,
|
|
5050
|
-
"index":
|
|
5050
|
+
"index": 11487
|
|
5051
5051
|
},
|
|
5052
5052
|
"end": {
|
|
5053
|
-
"line":
|
|
5053
|
+
"line": 355,
|
|
5054
5054
|
"column": 12,
|
|
5055
|
-
"index":
|
|
5055
|
+
"index": 11628
|
|
5056
5056
|
}
|
|
5057
5057
|
},
|
|
5058
5058
|
"filepath": "src/components/inline_edit/inline_edit_form.tsx"
|
|
@@ -5963,14 +5963,14 @@
|
|
|
5963
5963
|
"highlighting": "string",
|
|
5964
5964
|
"loc": {
|
|
5965
5965
|
"start": {
|
|
5966
|
-
"line":
|
|
5966
|
+
"line": 676,
|
|
5967
5967
|
"column": 16,
|
|
5968
|
-
"index":
|
|
5968
|
+
"index": 19791
|
|
5969
5969
|
},
|
|
5970
5970
|
"end": {
|
|
5971
|
-
"line":
|
|
5971
|
+
"line": 679,
|
|
5972
5972
|
"column": 18,
|
|
5973
|
-
"index":
|
|
5973
|
+
"index": 19985
|
|
5974
5974
|
}
|
|
5975
5975
|
},
|
|
5976
5976
|
"filepath": "src/components/popover/popover.tsx"
|
|
@@ -7097,14 +7097,14 @@
|
|
|
7097
7097
|
"highlighting": "string",
|
|
7098
7098
|
"loc": {
|
|
7099
7099
|
"start": {
|
|
7100
|
-
"line":
|
|
7100
|
+
"line": 256,
|
|
7101
7101
|
"column": 10,
|
|
7102
|
-
"index":
|
|
7102
|
+
"index": 6776
|
|
7103
7103
|
},
|
|
7104
7104
|
"end": {
|
|
7105
|
-
"line":
|
|
7105
|
+
"line": 263,
|
|
7106
7106
|
"column": 11,
|
|
7107
|
-
"index":
|
|
7107
|
+
"index": 7010
|
|
7108
7108
|
}
|
|
7109
7109
|
},
|
|
7110
7110
|
"filepath": "src/components/tour/tour_step.tsx"
|
|
@@ -7115,14 +7115,14 @@
|
|
|
7115
7115
|
"highlighting": "string",
|
|
7116
7116
|
"loc": {
|
|
7117
7117
|
"start": {
|
|
7118
|
-
"line":
|
|
7118
|
+
"line": 256,
|
|
7119
7119
|
"column": 10,
|
|
7120
|
-
"index":
|
|
7120
|
+
"index": 6776
|
|
7121
7121
|
},
|
|
7122
7122
|
"end": {
|
|
7123
|
-
"line":
|
|
7123
|
+
"line": 263,
|
|
7124
7124
|
"column": 11,
|
|
7125
|
-
"index":
|
|
7125
|
+
"index": 7010
|
|
7126
7126
|
}
|
|
7127
7127
|
},
|
|
7128
7128
|
"filepath": "src/components/tour/tour_step.tsx"
|
|
@@ -7133,14 +7133,14 @@
|
|
|
7133
7133
|
"highlighting": "string",
|
|
7134
7134
|
"loc": {
|
|
7135
7135
|
"start": {
|
|
7136
|
-
"line":
|
|
7136
|
+
"line": 256,
|
|
7137
7137
|
"column": 10,
|
|
7138
|
-
"index":
|
|
7138
|
+
"index": 6776
|
|
7139
7139
|
},
|
|
7140
7140
|
"end": {
|
|
7141
|
-
"line":
|
|
7141
|
+
"line": 263,
|
|
7142
7142
|
"column": 11,
|
|
7143
|
-
"index":
|
|
7143
|
+
"index": 7010
|
|
7144
7144
|
}
|
|
7145
7145
|
},
|
|
7146
7146
|
"filepath": "src/components/tour/tour_step.tsx"
|
|
@@ -7151,14 +7151,14 @@
|
|
|
7151
7151
|
"highlighting": "string",
|
|
7152
7152
|
"loc": {
|
|
7153
7153
|
"start": {
|
|
7154
|
-
"line":
|
|
7154
|
+
"line": 283,
|
|
7155
7155
|
"column": 12,
|
|
7156
|
-
"index":
|
|
7156
|
+
"index": 7891
|
|
7157
7157
|
},
|
|
7158
7158
|
"end": {
|
|
7159
|
-
"line":
|
|
7159
|
+
"line": 286,
|
|
7160
7160
|
"column": 13,
|
|
7161
|
-
"index":
|
|
7161
|
+
"index": 8051
|
|
7162
7162
|
}
|
|
7163
7163
|
},
|
|
7164
7164
|
"filepath": "src/components/tree_view/tree_view.tsx"
|
|
@@ -7169,14 +7169,14 @@
|
|
|
7169
7169
|
"highlighting": "string",
|
|
7170
7170
|
"loc": {
|
|
7171
7171
|
"start": {
|
|
7172
|
-
"line":
|
|
7172
|
+
"line": 310,
|
|
7173
7173
|
"column": 20,
|
|
7174
|
-
"index":
|
|
7174
|
+
"index": 8930
|
|
7175
7175
|
},
|
|
7176
7176
|
"end": {
|
|
7177
|
-
"line":
|
|
7177
|
+
"line": 318,
|
|
7178
7178
|
"column": 21,
|
|
7179
|
-
"index":
|
|
7179
|
+
"index": 9305
|
|
7180
7180
|
}
|
|
7181
7181
|
},
|
|
7182
7182
|
"filepath": "src/components/tree_view/tree_view.tsx"
|