@elastic/eui 95.10.0 → 95.11.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_theme_dark.css +0 -923
- package/dist/eui_theme_dark.min.css +1 -1
- package/dist/eui_theme_light.css +0 -923
- package/dist/eui_theme_light.min.css +1 -1
- package/es/components/basic_table/basic_table.js +4 -3
- package/es/components/basic_table/collapsed_item_actions.js +24 -31
- package/es/components/datagrid/body/cell/data_grid_cell.js +98 -86
- package/es/components/datagrid/body/cell/data_grid_cell.styles.js +107 -0
- package/es/components/datagrid/body/cell/data_grid_cell_actions.js +13 -3
- package/es/components/datagrid/body/cell/data_grid_cell_actions.styles.js +33 -0
- package/es/components/datagrid/body/cell/data_grid_cell_popover.js +21 -12
- package/es/components/datagrid/body/cell/data_grid_cell_popover.styles.js +19 -0
- package/es/components/datagrid/body/cell/focus_utils.js +18 -20
- package/es/components/datagrid/body/data_grid_body.js +20 -4
- package/es/components/datagrid/body/data_grid_body.styles.js +26 -0
- package/es/components/datagrid/body/data_grid_body_custom.js +18 -6
- package/es/components/datagrid/body/data_grid_body_virtualized.js +18 -6
- package/es/components/datagrid/body/footer/data_grid_footer.styles.js +24 -0
- package/es/components/datagrid/body/footer/data_grid_footer_row.js +10 -5
- package/es/components/datagrid/body/header/column_actions.js +16 -4
- package/es/components/datagrid/body/header/data_grid_column_resizer.js +14 -7
- package/es/components/datagrid/body/header/data_grid_column_resizer.styles.js +36 -0
- package/es/components/datagrid/body/header/data_grid_control_header_cell.js +1 -3
- package/es/components/datagrid/body/header/data_grid_header_cell.js +40 -66
- package/es/components/datagrid/body/header/data_grid_header_cell.styles.js +29 -0
- package/es/components/datagrid/body/header/data_grid_header_cell_wrapper.js +4 -1
- package/es/components/datagrid/body/header/data_grid_header_cell_wrapper.styles.js +27 -0
- package/es/components/datagrid/body/header/data_grid_header_row.js +8 -2
- package/es/components/datagrid/body/header/data_grid_header_row.styles.js +21 -0
- package/es/components/datagrid/controls/column_selector.js +17 -8
- package/es/components/datagrid/controls/column_selector.styles.js +22 -0
- package/es/components/datagrid/controls/column_sorting.js +7 -2
- package/es/components/datagrid/controls/column_sorting.styles.js +35 -0
- package/es/components/datagrid/controls/column_sorting_draggable.js +19 -14
- package/es/components/datagrid/controls/data_grid_toolbar.js +8 -1
- package/es/components/datagrid/controls/data_grid_toolbar.styles.js +18 -0
- package/es/components/datagrid/controls/data_grid_toolbar_control.js +27 -27
- package/es/components/datagrid/controls/display_selector.js +14 -3
- package/es/components/datagrid/controls/fullscreen_selector.js +8 -5
- package/es/components/datagrid/controls/fullscreen_selector.styles.js +20 -0
- package/es/components/datagrid/controls/keyboard_shortcuts.js +7 -3
- package/es/components/datagrid/controls/keyboard_shortcuts.styles.js +18 -0
- package/es/components/datagrid/data_grid.a11y.js +1 -0
- package/es/components/datagrid/data_grid.js +16 -8
- package/es/components/datagrid/data_grid.stories.utils.js +1386 -0
- package/es/components/datagrid/data_grid.styles.js +88 -0
- package/es/components/datagrid/{utils → pagination}/data_grid_pagination.js +30 -30
- package/es/components/datagrid/pagination/data_grid_pagination.styles.js +16 -0
- package/es/components/datagrid/pagination/index.js +9 -0
- package/es/components/datagrid/utils/row_heights.js +13 -15
- package/es/components/datagrid/utils/scrolling.js +14 -7
- package/es/components/datagrid/utils/scrolling.styles.js +30 -0
- package/es/components/flyout/flyout_resizable.js +6 -2
- package/es/components/flyout/flyout_resizable.styles.js +34 -5
- package/es/components/popover/popover.js +1 -1
- package/es/components/text/text.js +25 -9
- package/es/components/text/text_align.js +19 -6
- package/es/components/text/text_color.js +14 -11
- package/es/components/text/types.js +1 -0
- package/eui.d.ts +581 -108
- package/i18ntokens.json +392 -356
- package/lib/components/basic_table/basic_table.js +4 -3
- package/lib/components/basic_table/collapsed_item_actions.js +23 -30
- package/lib/components/datagrid/body/cell/data_grid_cell.js +95 -83
- package/lib/components/datagrid/body/cell/data_grid_cell.styles.js +111 -0
- package/lib/components/datagrid/body/cell/data_grid_cell_actions.js +13 -3
- package/lib/components/datagrid/body/cell/data_grid_cell_actions.styles.js +38 -0
- package/lib/components/datagrid/body/cell/data_grid_cell_popover.js +20 -11
- package/lib/components/datagrid/body/cell/data_grid_cell_popover.styles.js +24 -0
- package/lib/components/datagrid/body/cell/focus_utils.js +17 -19
- package/lib/components/datagrid/body/data_grid_body.js +20 -4
- package/lib/components/datagrid/body/data_grid_body.styles.js +30 -0
- package/lib/components/datagrid/body/data_grid_body_custom.js +18 -6
- package/lib/components/datagrid/body/data_grid_body_virtualized.js +18 -6
- package/lib/components/datagrid/body/footer/data_grid_footer.styles.js +30 -0
- package/lib/components/datagrid/body/footer/data_grid_footer_row.js +11 -6
- package/lib/components/datagrid/body/header/column_actions.js +16 -4
- package/lib/components/datagrid/body/header/data_grid_column_resizer.js +14 -7
- package/lib/components/datagrid/body/header/data_grid_column_resizer.styles.js +39 -0
- package/lib/components/datagrid/body/header/data_grid_control_header_cell.js +1 -3
- package/lib/components/datagrid/body/header/data_grid_header_cell.js +47 -74
- package/lib/components/datagrid/body/header/data_grid_header_cell.styles.js +34 -0
- package/lib/components/datagrid/body/header/data_grid_header_cell_wrapper.js +3 -0
- package/lib/components/datagrid/body/header/data_grid_header_cell_wrapper.styles.js +32 -0
- package/lib/components/datagrid/body/header/data_grid_header_row.js +8 -2
- package/lib/components/datagrid/body/header/data_grid_header_row.styles.js +27 -0
- package/lib/components/datagrid/controls/column_selector.js +17 -8
- package/lib/components/datagrid/controls/column_selector.styles.js +28 -0
- package/lib/components/datagrid/controls/column_sorting.js +7 -2
- package/lib/components/datagrid/controls/column_sorting.styles.js +41 -0
- package/lib/components/datagrid/controls/column_sorting_draggable.js +19 -14
- package/lib/components/datagrid/controls/data_grid_toolbar.js +8 -1
- package/lib/components/datagrid/controls/data_grid_toolbar.styles.js +24 -0
- package/lib/components/datagrid/controls/data_grid_toolbar_control.js +27 -27
- package/lib/components/datagrid/controls/display_selector.js +13 -2
- package/lib/components/datagrid/controls/fullscreen_selector.js +7 -4
- package/lib/components/datagrid/controls/fullscreen_selector.styles.js +26 -0
- package/lib/components/datagrid/controls/keyboard_shortcuts.js +6 -2
- package/lib/components/datagrid/controls/keyboard_shortcuts.styles.js +24 -0
- package/lib/components/datagrid/data_grid.a11y.js +1 -0
- package/lib/components/datagrid/data_grid.js +15 -7
- package/lib/components/datagrid/data_grid.stories.utils.js +1391 -0
- package/lib/components/datagrid/data_grid.styles.js +94 -0
- package/lib/components/datagrid/{utils → pagination}/data_grid_pagination.js +30 -30
- package/lib/components/datagrid/pagination/data_grid_pagination.styles.js +22 -0
- package/lib/components/datagrid/pagination/index.js +18 -0
- package/lib/components/datagrid/utils/row_heights.js +13 -14
- package/lib/components/datagrid/utils/scrolling.js +14 -7
- package/lib/components/datagrid/utils/scrolling.styles.js +36 -0
- package/lib/components/flyout/flyout_resizable.js +6 -2
- package/lib/components/flyout/flyout_resizable.styles.js +34 -5
- package/lib/components/popover/popover.js +1 -1
- package/lib/components/text/text.js +25 -9
- package/lib/components/text/text_align.js +19 -6
- package/lib/components/text/text_color.js +14 -11
- package/lib/components/text/types.js +5 -0
- package/optimize/es/components/basic_table/basic_table.js +4 -3
- package/optimize/es/components/basic_table/collapsed_item_actions.js +24 -31
- package/optimize/es/components/datagrid/body/cell/data_grid_cell.js +87 -81
- package/optimize/es/components/datagrid/body/cell/data_grid_cell.styles.js +107 -0
- package/optimize/es/components/datagrid/body/cell/data_grid_cell_actions.js +13 -3
- package/optimize/es/components/datagrid/body/cell/data_grid_cell_actions.styles.js +33 -0
- package/optimize/es/components/datagrid/body/cell/data_grid_cell_popover.js +21 -12
- package/optimize/es/components/datagrid/body/cell/data_grid_cell_popover.styles.js +19 -0
- package/optimize/es/components/datagrid/body/cell/focus_utils.js +18 -20
- package/optimize/es/components/datagrid/body/data_grid_body.js +9 -2
- package/optimize/es/components/datagrid/body/data_grid_body.styles.js +26 -0
- package/optimize/es/components/datagrid/body/data_grid_body_custom.js +7 -4
- package/optimize/es/components/datagrid/body/data_grid_body_virtualized.js +7 -4
- package/optimize/es/components/datagrid/body/footer/data_grid_footer.styles.js +24 -0
- package/optimize/es/components/datagrid/body/footer/data_grid_footer_row.js +10 -5
- package/optimize/es/components/datagrid/body/header/column_actions.js +16 -4
- package/optimize/es/components/datagrid/body/header/data_grid_column_resizer.js +14 -7
- package/optimize/es/components/datagrid/body/header/data_grid_column_resizer.styles.js +36 -0
- package/optimize/es/components/datagrid/body/header/data_grid_control_header_cell.js +1 -3
- package/optimize/es/components/datagrid/body/header/data_grid_header_cell.js +40 -61
- package/optimize/es/components/datagrid/body/header/data_grid_header_cell.styles.js +29 -0
- package/optimize/es/components/datagrid/body/header/data_grid_header_cell_wrapper.js +4 -1
- package/optimize/es/components/datagrid/body/header/data_grid_header_cell_wrapper.styles.js +27 -0
- package/optimize/es/components/datagrid/body/header/data_grid_header_row.js +8 -2
- package/optimize/es/components/datagrid/body/header/data_grid_header_row.styles.js +21 -0
- package/optimize/es/components/datagrid/controls/column_selector.js +17 -8
- package/optimize/es/components/datagrid/controls/column_selector.styles.js +22 -0
- package/optimize/es/components/datagrid/controls/column_sorting.js +7 -2
- package/optimize/es/components/datagrid/controls/column_sorting.styles.js +35 -0
- package/optimize/es/components/datagrid/controls/column_sorting_draggable.js +19 -14
- package/optimize/es/components/datagrid/controls/data_grid_toolbar.js +8 -1
- package/optimize/es/components/datagrid/controls/data_grid_toolbar.styles.js +18 -0
- package/optimize/es/components/datagrid/controls/data_grid_toolbar_control.js +27 -27
- package/optimize/es/components/datagrid/controls/display_selector.js +14 -3
- package/optimize/es/components/datagrid/controls/fullscreen_selector.js +8 -5
- package/optimize/es/components/datagrid/controls/fullscreen_selector.styles.js +20 -0
- package/optimize/es/components/datagrid/controls/keyboard_shortcuts.js +7 -3
- package/optimize/es/components/datagrid/controls/keyboard_shortcuts.styles.js +18 -0
- package/optimize/es/components/datagrid/data_grid.a11y.js +1 -0
- package/optimize/es/components/datagrid/data_grid.js +16 -8
- package/optimize/es/components/datagrid/data_grid.stories.utils.js +333 -0
- package/optimize/es/components/datagrid/data_grid.styles.js +88 -0
- package/optimize/es/components/datagrid/{utils → pagination}/data_grid_pagination.js +30 -30
- package/optimize/es/components/datagrid/pagination/data_grid_pagination.styles.js +16 -0
- package/optimize/es/components/datagrid/pagination/index.js +9 -0
- package/optimize/es/components/datagrid/utils/row_heights.js +13 -15
- package/optimize/es/components/datagrid/utils/scrolling.js +14 -7
- package/optimize/es/components/datagrid/utils/scrolling.styles.js +30 -0
- package/optimize/es/components/flyout/flyout_resizable.js +6 -2
- package/optimize/es/components/flyout/flyout_resizable.styles.js +34 -5
- package/optimize/es/components/popover/popover.js +1 -1
- package/optimize/es/components/text/text.js +9 -4
- package/optimize/es/components/text/text_align.js +4 -2
- package/optimize/es/components/text/text_color.js +1 -2
- package/optimize/es/components/text/types.js +1 -0
- package/optimize/lib/components/basic_table/basic_table.js +4 -3
- package/optimize/lib/components/basic_table/collapsed_item_actions.js +23 -30
- package/optimize/lib/components/datagrid/body/cell/data_grid_cell.js +84 -78
- package/optimize/lib/components/datagrid/body/cell/data_grid_cell.styles.js +111 -0
- package/optimize/lib/components/datagrid/body/cell/data_grid_cell_actions.js +13 -3
- package/optimize/lib/components/datagrid/body/cell/data_grid_cell_actions.styles.js +39 -0
- package/optimize/lib/components/datagrid/body/cell/data_grid_cell_popover.js +20 -11
- package/optimize/lib/components/datagrid/body/cell/data_grid_cell_popover.styles.js +25 -0
- package/optimize/lib/components/datagrid/body/cell/focus_utils.js +17 -19
- package/optimize/lib/components/datagrid/body/data_grid_body.js +9 -2
- package/optimize/lib/components/datagrid/body/data_grid_body.styles.js +30 -0
- package/optimize/lib/components/datagrid/body/data_grid_body_custom.js +7 -4
- package/optimize/lib/components/datagrid/body/data_grid_body_virtualized.js +7 -4
- package/optimize/lib/components/datagrid/body/footer/data_grid_footer.styles.js +30 -0
- package/optimize/lib/components/datagrid/body/footer/data_grid_footer_row.js +10 -5
- package/optimize/lib/components/datagrid/body/header/column_actions.js +16 -4
- package/optimize/lib/components/datagrid/body/header/data_grid_column_resizer.js +14 -7
- package/optimize/lib/components/datagrid/body/header/data_grid_column_resizer.styles.js +39 -0
- package/optimize/lib/components/datagrid/body/header/data_grid_control_header_cell.js +1 -3
- package/optimize/lib/components/datagrid/body/header/data_grid_header_cell.js +43 -63
- package/optimize/lib/components/datagrid/body/header/data_grid_header_cell.styles.js +34 -0
- package/optimize/lib/components/datagrid/body/header/data_grid_header_cell_wrapper.js +3 -0
- package/optimize/lib/components/datagrid/body/header/data_grid_header_cell_wrapper.styles.js +32 -0
- package/optimize/lib/components/datagrid/body/header/data_grid_header_row.js +8 -2
- package/optimize/lib/components/datagrid/body/header/data_grid_header_row.styles.js +27 -0
- package/optimize/lib/components/datagrid/controls/column_selector.js +17 -8
- package/optimize/lib/components/datagrid/controls/column_selector.styles.js +28 -0
- package/optimize/lib/components/datagrid/controls/column_sorting.js +7 -2
- package/optimize/lib/components/datagrid/controls/column_sorting.styles.js +41 -0
- package/optimize/lib/components/datagrid/controls/column_sorting_draggable.js +19 -14
- package/optimize/lib/components/datagrid/controls/data_grid_toolbar.js +8 -1
- package/optimize/lib/components/datagrid/controls/data_grid_toolbar.styles.js +24 -0
- package/optimize/lib/components/datagrid/controls/data_grid_toolbar_control.js +27 -27
- package/optimize/lib/components/datagrid/controls/display_selector.js +13 -2
- package/optimize/lib/components/datagrid/controls/fullscreen_selector.js +7 -4
- package/optimize/lib/components/datagrid/controls/fullscreen_selector.styles.js +26 -0
- package/optimize/lib/components/datagrid/controls/keyboard_shortcuts.js +6 -2
- package/optimize/lib/components/datagrid/controls/keyboard_shortcuts.styles.js +24 -0
- package/optimize/lib/components/datagrid/data_grid.a11y.js +1 -0
- package/optimize/lib/components/datagrid/data_grid.js +15 -7
- package/optimize/lib/components/datagrid/data_grid.stories.utils.js +341 -0
- package/optimize/lib/components/datagrid/data_grid.styles.js +94 -0
- package/{test-env/components/datagrid/utils → optimize/lib/components/datagrid/pagination}/data_grid_pagination.js +29 -31
- package/optimize/lib/components/datagrid/pagination/data_grid_pagination.styles.js +22 -0
- package/optimize/lib/components/datagrid/pagination/index.js +18 -0
- package/optimize/lib/components/datagrid/utils/row_heights.js +13 -14
- package/optimize/lib/components/datagrid/utils/scrolling.js +14 -7
- package/optimize/lib/components/datagrid/utils/scrolling.styles.js +36 -0
- package/optimize/lib/components/flyout/flyout_resizable.js +6 -2
- package/optimize/lib/components/flyout/flyout_resizable.styles.js +34 -5
- package/optimize/lib/components/popover/popover.js +1 -1
- package/optimize/lib/components/text/text.js +9 -4
- package/optimize/lib/components/text/text_align.js +4 -2
- package/optimize/lib/components/text/text_color.js +1 -2
- package/optimize/lib/components/text/types.js +5 -0
- package/package.json +3 -3
- package/src/themes/amsterdam/theme_dark.scss +0 -7
- package/src/themes/amsterdam/theme_light.scss +0 -7
- package/test-env/components/basic_table/basic_table.js +4 -3
- package/test-env/components/basic_table/collapsed_item_actions.js +23 -30
- package/test-env/components/datagrid/body/cell/data_grid_cell.js +90 -83
- package/test-env/components/datagrid/body/cell/data_grid_cell.styles.js +111 -0
- package/test-env/components/datagrid/body/cell/data_grid_cell_actions.js +13 -3
- package/test-env/components/datagrid/body/cell/data_grid_cell_actions.styles.js +39 -0
- package/test-env/components/datagrid/body/cell/data_grid_cell_popover.js +20 -11
- package/test-env/components/datagrid/body/cell/data_grid_cell_popover.styles.js +25 -0
- package/test-env/components/datagrid/body/cell/focus_utils.js +17 -19
- package/test-env/components/datagrid/body/data_grid_body.js +20 -4
- package/test-env/components/datagrid/body/data_grid_body.styles.js +30 -0
- package/test-env/components/datagrid/body/data_grid_body_custom.js +18 -6
- package/test-env/components/datagrid/body/data_grid_body_virtualized.js +18 -6
- package/test-env/components/datagrid/body/footer/data_grid_footer.styles.js +30 -0
- package/test-env/components/datagrid/body/footer/data_grid_footer_row.js +10 -5
- package/test-env/components/datagrid/body/header/column_actions.js +16 -4
- package/test-env/components/datagrid/body/header/data_grid_column_resizer.js +14 -7
- package/test-env/components/datagrid/body/header/data_grid_column_resizer.styles.js +39 -0
- package/test-env/components/datagrid/body/header/data_grid_control_header_cell.js +1 -3
- package/test-env/components/datagrid/body/header/data_grid_header_cell.js +43 -67
- package/test-env/components/datagrid/body/header/data_grid_header_cell.styles.js +34 -0
- package/test-env/components/datagrid/body/header/data_grid_header_cell_wrapper.js +3 -0
- package/test-env/components/datagrid/body/header/data_grid_header_cell_wrapper.styles.js +32 -0
- package/test-env/components/datagrid/body/header/data_grid_header_row.js +8 -2
- package/test-env/components/datagrid/body/header/data_grid_header_row.styles.js +27 -0
- package/test-env/components/datagrid/controls/column_selector.js +17 -8
- package/test-env/components/datagrid/controls/column_selector.styles.js +28 -0
- package/test-env/components/datagrid/controls/column_sorting.js +7 -2
- package/test-env/components/datagrid/controls/column_sorting.styles.js +41 -0
- package/test-env/components/datagrid/controls/column_sorting_draggable.js +19 -14
- package/test-env/components/datagrid/controls/data_grid_toolbar.js +8 -1
- package/test-env/components/datagrid/controls/data_grid_toolbar.styles.js +24 -0
- package/test-env/components/datagrid/controls/data_grid_toolbar_control.js +27 -27
- package/test-env/components/datagrid/controls/display_selector.js +13 -2
- package/test-env/components/datagrid/controls/fullscreen_selector.js +7 -4
- package/test-env/components/datagrid/controls/fullscreen_selector.styles.js +26 -0
- package/test-env/components/datagrid/controls/keyboard_shortcuts.js +6 -2
- package/test-env/components/datagrid/controls/keyboard_shortcuts.styles.js +24 -0
- package/test-env/components/datagrid/data_grid.a11y.js +1 -0
- package/test-env/components/datagrid/data_grid.js +15 -7
- package/test-env/components/datagrid/data_grid.stories.utils.js +1386 -0
- package/test-env/components/datagrid/data_grid.styles.js +94 -0
- package/{optimize/lib/components/datagrid/utils → test-env/components/datagrid/pagination}/data_grid_pagination.js +29 -31
- package/test-env/components/datagrid/pagination/data_grid_pagination.styles.js +22 -0
- package/test-env/components/datagrid/pagination/index.js +18 -0
- package/test-env/components/datagrid/utils/row_heights.js +13 -14
- package/test-env/components/datagrid/utils/scrolling.js +14 -7
- package/test-env/components/datagrid/utils/scrolling.styles.js +36 -0
- package/test-env/components/flyout/flyout_resizable.js +6 -2
- package/test-env/components/flyout/flyout_resizable.styles.js +34 -5
- package/test-env/components/popover/popover.js +1 -1
- package/test-env/components/text/text.js +25 -9
- package/test-env/components/text/text_align.js +19 -6
- package/test-env/components/text/text_color.js +14 -11
- package/test-env/components/text/types.js +5 -0
- package/src/components/datagrid/_data_grid.scss +0 -121
- package/src/components/datagrid/_data_grid_data_row.scss +0 -303
- package/src/components/datagrid/_index.scss +0 -12
- package/src/components/datagrid/_mixins.scss +0 -84
- package/src/components/datagrid/_variables.scss +0 -11
- package/src/components/datagrid/body/footer/_data_grid_footer_row.scss +0 -47
- package/src/components/datagrid/body/header/_data_grid_column_resizer.scss +0 -48
- package/src/components/datagrid/body/header/_data_grid_header_row.scss +0 -219
- package/src/components/datagrid/controls/_data_grid_column_selector.scss +0 -19
- package/src/components/datagrid/controls/_data_grid_column_sorting.scss +0 -43
- package/src/components/datagrid/controls/_data_grid_display.scss +0 -3
- package/src/components/datagrid/controls/_data_grid_keyboard_shortcuts.scss +0 -11
- package/src/components/datagrid/controls/_data_grid_toolbar.scss +0 -55
- package/src/components/index.scss +0 -3
- package/src/themes/amsterdam/overrides/_data_grid.scss +0 -5
- package/src/themes/amsterdam/overrides/_index.scss +0 -1
package/i18ntokens.json
CHANGED
|
@@ -149,14 +149,14 @@
|
|
|
149
149
|
"highlighting": "string",
|
|
150
150
|
"loc": {
|
|
151
151
|
"start": {
|
|
152
|
-
"line":
|
|
152
|
+
"line": 1119,
|
|
153
153
|
"column": 8,
|
|
154
|
-
"index":
|
|
154
|
+
"index": 31058
|
|
155
155
|
},
|
|
156
156
|
"end": {
|
|
157
|
-
"line":
|
|
157
|
+
"line": 1123,
|
|
158
158
|
"column": 9,
|
|
159
|
-
"index":
|
|
159
|
+
"index": 31213
|
|
160
160
|
}
|
|
161
161
|
},
|
|
162
162
|
"filepath": "src/components/basic_table/basic_table.tsx"
|
|
@@ -167,68 +167,68 @@
|
|
|
167
167
|
"highlighting": "string",
|
|
168
168
|
"loc": {
|
|
169
169
|
"start": {
|
|
170
|
-
"line":
|
|
170
|
+
"line": 1350,
|
|
171
171
|
"column": 8,
|
|
172
|
-
"index":
|
|
172
|
+
"index": 37993
|
|
173
173
|
},
|
|
174
174
|
"end": {
|
|
175
|
-
"line":
|
|
175
|
+
"line": 1354,
|
|
176
176
|
"column": 9,
|
|
177
|
-
"index":
|
|
177
|
+
"index": 38152
|
|
178
178
|
}
|
|
179
179
|
},
|
|
180
180
|
"filepath": "src/components/basic_table/basic_table.tsx"
|
|
181
181
|
},
|
|
182
182
|
{
|
|
183
|
-
"token": "euiCollapsedItemActions.
|
|
183
|
+
"token": "euiCollapsedItemActions.allActionsTooltip",
|
|
184
184
|
"defString": "All actions",
|
|
185
185
|
"highlighting": "string",
|
|
186
186
|
"loc": {
|
|
187
187
|
"start": {
|
|
188
|
-
"line":
|
|
189
|
-
"column":
|
|
190
|
-
"index":
|
|
188
|
+
"line": 45,
|
|
189
|
+
"column": 28,
|
|
190
|
+
"index": 1373
|
|
191
191
|
},
|
|
192
192
|
"end": {
|
|
193
|
-
"line":
|
|
194
|
-
"column":
|
|
195
|
-
"index":
|
|
193
|
+
"line": 48,
|
|
194
|
+
"column": 3,
|
|
195
|
+
"index": 1455
|
|
196
196
|
}
|
|
197
197
|
},
|
|
198
198
|
"filepath": "src/components/basic_table/collapsed_item_actions.tsx"
|
|
199
199
|
},
|
|
200
200
|
{
|
|
201
|
-
"token": "euiCollapsedItemActions.
|
|
202
|
-
"defString": "
|
|
201
|
+
"token": "euiCollapsedItemActions.allActions",
|
|
202
|
+
"defString": "All actions, row {index}",
|
|
203
203
|
"highlighting": "string",
|
|
204
204
|
"loc": {
|
|
205
205
|
"start": {
|
|
206
|
-
"line":
|
|
207
|
-
"column":
|
|
208
|
-
"index":
|
|
206
|
+
"line": 50,
|
|
207
|
+
"column": 36,
|
|
208
|
+
"index": 1494
|
|
209
209
|
},
|
|
210
210
|
"end": {
|
|
211
|
-
"line":
|
|
212
|
-
"column":
|
|
213
|
-
"index":
|
|
211
|
+
"line": 56,
|
|
212
|
+
"column": 3,
|
|
213
|
+
"index": 1631
|
|
214
214
|
}
|
|
215
215
|
},
|
|
216
216
|
"filepath": "src/components/basic_table/collapsed_item_actions.tsx"
|
|
217
217
|
},
|
|
218
218
|
{
|
|
219
|
-
"token": "euiCollapsedItemActions.
|
|
220
|
-
"defString": "
|
|
219
|
+
"token": "euiCollapsedItemActions.allActionsDisabled",
|
|
220
|
+
"defString": "Individual item actions are disabled when rows are being selected.",
|
|
221
221
|
"highlighting": "string",
|
|
222
222
|
"loc": {
|
|
223
223
|
"start": {
|
|
224
|
-
"line":
|
|
225
|
-
"column":
|
|
226
|
-
"index":
|
|
224
|
+
"line": 58,
|
|
225
|
+
"column": 44,
|
|
226
|
+
"index": 1678
|
|
227
227
|
},
|
|
228
228
|
"end": {
|
|
229
|
-
"line":
|
|
230
|
-
"column":
|
|
231
|
-
"index":
|
|
229
|
+
"line": 61,
|
|
230
|
+
"column": 3,
|
|
231
|
+
"index": 1816
|
|
232
232
|
}
|
|
233
233
|
},
|
|
234
234
|
"filepath": "src/components/basic_table/collapsed_item_actions.tsx"
|
|
@@ -1013,32 +1013,32 @@
|
|
|
1013
1013
|
"highlighting": "string",
|
|
1014
1014
|
"loc": {
|
|
1015
1015
|
"start": {
|
|
1016
|
-
"line":
|
|
1016
|
+
"line": 49,
|
|
1017
1017
|
"column": 6,
|
|
1018
|
-
"index":
|
|
1018
|
+
"index": 1668
|
|
1019
1019
|
},
|
|
1020
1020
|
"end": {
|
|
1021
|
-
"line":
|
|
1021
|
+
"line": 53,
|
|
1022
1022
|
"column": 7,
|
|
1023
|
-
"index":
|
|
1023
|
+
"index": 1831
|
|
1024
1024
|
}
|
|
1025
1025
|
},
|
|
1026
1026
|
"filepath": "src/components/datagrid/body/cell/data_grid_cell_actions.tsx"
|
|
1027
1027
|
},
|
|
1028
1028
|
{
|
|
1029
1029
|
"token": "euiDataGridCell.position",
|
|
1030
|
-
"defString": "{
|
|
1030
|
+
"defString": "{columnName}, column {columnIndex}, row {rowIndex}",
|
|
1031
1031
|
"highlighting": "string",
|
|
1032
1032
|
"loc": {
|
|
1033
1033
|
"start": {
|
|
1034
|
-
"line":
|
|
1035
|
-
"column":
|
|
1036
|
-
"index":
|
|
1034
|
+
"line": 722,
|
|
1035
|
+
"column": 23,
|
|
1036
|
+
"index": 22753
|
|
1037
1037
|
},
|
|
1038
1038
|
"end": {
|
|
1039
|
-
"line":
|
|
1040
|
-
"column":
|
|
1041
|
-
"index":
|
|
1039
|
+
"line": 726,
|
|
1040
|
+
"column": 3,
|
|
1041
|
+
"index": 22900
|
|
1042
1042
|
}
|
|
1043
1043
|
},
|
|
1044
1044
|
"filepath": "src/components/datagrid/body/cell/data_grid_cell.tsx"
|
|
@@ -1049,14 +1049,14 @@
|
|
|
1049
1049
|
"highlighting": "string",
|
|
1050
1050
|
"loc": {
|
|
1051
1051
|
"start": {
|
|
1052
|
-
"line":
|
|
1053
|
-
"column":
|
|
1054
|
-
"index":
|
|
1052
|
+
"line": 727,
|
|
1053
|
+
"column": 25,
|
|
1054
|
+
"index": 22927
|
|
1055
1055
|
},
|
|
1056
1056
|
"end": {
|
|
1057
|
-
"line":
|
|
1058
|
-
"column":
|
|
1059
|
-
"index":
|
|
1057
|
+
"line": 730,
|
|
1058
|
+
"column": 3,
|
|
1059
|
+
"index": 23033
|
|
1060
1060
|
}
|
|
1061
1061
|
},
|
|
1062
1062
|
"filepath": "src/components/datagrid/body/cell/data_grid_cell.tsx"
|
|
@@ -1068,13 +1068,13 @@
|
|
|
1068
1068
|
"loc": {
|
|
1069
1069
|
"start": {
|
|
1070
1070
|
"line": 187,
|
|
1071
|
-
"column":
|
|
1072
|
-
"index":
|
|
1071
|
+
"column": 10,
|
|
1072
|
+
"index": 6439
|
|
1073
1073
|
},
|
|
1074
1074
|
"end": {
|
|
1075
1075
|
"line": 191,
|
|
1076
|
-
"column":
|
|
1077
|
-
"index":
|
|
1076
|
+
"column": 12,
|
|
1077
|
+
"index": 6610
|
|
1078
1078
|
}
|
|
1079
1079
|
},
|
|
1080
1080
|
"filepath": "src/components/datagrid/body/cell/focus_utils.tsx"
|
|
@@ -1085,14 +1085,14 @@
|
|
|
1085
1085
|
"highlighting": "string",
|
|
1086
1086
|
"loc": {
|
|
1087
1087
|
"start": {
|
|
1088
|
-
"line":
|
|
1089
|
-
"column":
|
|
1090
|
-
"index":
|
|
1088
|
+
"line": 194,
|
|
1089
|
+
"column": 10,
|
|
1090
|
+
"index": 6661
|
|
1091
1091
|
},
|
|
1092
1092
|
"end": {
|
|
1093
|
-
"line":
|
|
1094
|
-
"column":
|
|
1095
|
-
"index":
|
|
1093
|
+
"line": 198,
|
|
1094
|
+
"column": 12,
|
|
1095
|
+
"index": 6871
|
|
1096
1096
|
}
|
|
1097
1097
|
},
|
|
1098
1098
|
"filepath": "src/components/datagrid/body/cell/focus_utils.tsx"
|
|
@@ -1151,20 +1151,56 @@
|
|
|
1151
1151
|
},
|
|
1152
1152
|
"filepath": "src/components/datagrid/body/header/column_actions.tsx"
|
|
1153
1153
|
},
|
|
1154
|
+
{
|
|
1155
|
+
"token": "euiColumnActions.unsort",
|
|
1156
|
+
"defString": "Unsort {schemaLabel}",
|
|
1157
|
+
"highlighting": "string",
|
|
1158
|
+
"loc": {
|
|
1159
|
+
"start": {
|
|
1160
|
+
"line": 283,
|
|
1161
|
+
"column": 8,
|
|
1162
|
+
"index": 7566
|
|
1163
|
+
},
|
|
1164
|
+
"end": {
|
|
1165
|
+
"line": 287,
|
|
1166
|
+
"column": 10,
|
|
1167
|
+
"index": 7710
|
|
1168
|
+
}
|
|
1169
|
+
},
|
|
1170
|
+
"filepath": "src/components/datagrid/body/header/column_actions.tsx"
|
|
1171
|
+
},
|
|
1154
1172
|
{
|
|
1155
1173
|
"token": "euiColumnActions.sort",
|
|
1156
1174
|
"defString": "Sort {schemaLabel}",
|
|
1157
1175
|
"highlighting": "string",
|
|
1158
1176
|
"loc": {
|
|
1159
1177
|
"start": {
|
|
1160
|
-
"line":
|
|
1178
|
+
"line": 289,
|
|
1161
1179
|
"column": 8,
|
|
1162
|
-
"index":
|
|
1180
|
+
"index": 7731
|
|
1163
1181
|
},
|
|
1164
1182
|
"end": {
|
|
1165
|
-
"line":
|
|
1183
|
+
"line": 293,
|
|
1166
1184
|
"column": 10,
|
|
1167
|
-
"index":
|
|
1185
|
+
"index": 7871
|
|
1186
|
+
}
|
|
1187
|
+
},
|
|
1188
|
+
"filepath": "src/components/datagrid/body/header/column_actions.tsx"
|
|
1189
|
+
},
|
|
1190
|
+
{
|
|
1191
|
+
"token": "euiColumnActions.unsort",
|
|
1192
|
+
"defString": "Unsort {schemaLabel}",
|
|
1193
|
+
"highlighting": "string",
|
|
1194
|
+
"loc": {
|
|
1195
|
+
"start": {
|
|
1196
|
+
"line": 319,
|
|
1197
|
+
"column": 8,
|
|
1198
|
+
"index": 8519
|
|
1199
|
+
},
|
|
1200
|
+
"end": {
|
|
1201
|
+
"line": 323,
|
|
1202
|
+
"column": 10,
|
|
1203
|
+
"index": 8663
|
|
1168
1204
|
}
|
|
1169
1205
|
},
|
|
1170
1206
|
"filepath": "src/components/datagrid/body/header/column_actions.tsx"
|
|
@@ -1175,14 +1211,14 @@
|
|
|
1175
1211
|
"highlighting": "string",
|
|
1176
1212
|
"loc": {
|
|
1177
1213
|
"start": {
|
|
1178
|
-
"line":
|
|
1214
|
+
"line": 325,
|
|
1179
1215
|
"column": 8,
|
|
1180
|
-
"index":
|
|
1216
|
+
"index": 8684
|
|
1181
1217
|
},
|
|
1182
1218
|
"end": {
|
|
1183
|
-
"line":
|
|
1219
|
+
"line": 329,
|
|
1184
1220
|
"column": 10,
|
|
1185
|
-
"index":
|
|
1221
|
+
"index": 8824
|
|
1186
1222
|
}
|
|
1187
1223
|
},
|
|
1188
1224
|
"filepath": "src/components/datagrid/body/header/column_actions.tsx"
|
|
@@ -1193,14 +1229,14 @@
|
|
|
1193
1229
|
"highlighting": "string",
|
|
1194
1230
|
"loc": {
|
|
1195
1231
|
"start": {
|
|
1196
|
-
"line":
|
|
1232
|
+
"line": 112,
|
|
1197
1233
|
"column": 37,
|
|
1198
|
-
"index":
|
|
1234
|
+
"index": 3493
|
|
1199
1235
|
},
|
|
1200
1236
|
"end": {
|
|
1201
|
-
"line":
|
|
1237
|
+
"line": 116,
|
|
1202
1238
|
"column": 7,
|
|
1203
|
-
"index":
|
|
1239
|
+
"index": 3643
|
|
1204
1240
|
}
|
|
1205
1241
|
},
|
|
1206
1242
|
"filepath": "src/components/datagrid/body/header/data_grid_header_cell.tsx"
|
|
@@ -1211,14 +1247,14 @@
|
|
|
1211
1247
|
"highlighting": "string",
|
|
1212
1248
|
"loc": {
|
|
1213
1249
|
"start": {
|
|
1214
|
-
"line":
|
|
1250
|
+
"line": 117,
|
|
1215
1251
|
"column": 42,
|
|
1216
|
-
"index":
|
|
1252
|
+
"index": 3687
|
|
1217
1253
|
},
|
|
1218
1254
|
"end": {
|
|
1219
|
-
"line":
|
|
1255
|
+
"line": 120,
|
|
1220
1256
|
"column": 7,
|
|
1221
|
-
"index":
|
|
1257
|
+
"index": 3827
|
|
1222
1258
|
}
|
|
1223
1259
|
},
|
|
1224
1260
|
"filepath": "src/components/datagrid/body/header/data_grid_header_cell.tsx"
|
|
@@ -1229,14 +1265,14 @@
|
|
|
1229
1265
|
"highlighting": "string",
|
|
1230
1266
|
"loc": {
|
|
1231
1267
|
"start": {
|
|
1232
|
-
"line":
|
|
1268
|
+
"line": 304,
|
|
1233
1269
|
"column": 16,
|
|
1234
|
-
"index":
|
|
1270
|
+
"index": 9927
|
|
1235
1271
|
},
|
|
1236
1272
|
"end": {
|
|
1237
|
-
"line":
|
|
1273
|
+
"line": 308,
|
|
1238
1274
|
"column": 18,
|
|
1239
|
-
"index":
|
|
1275
|
+
"index": 10101
|
|
1240
1276
|
}
|
|
1241
1277
|
},
|
|
1242
1278
|
"filepath": "src/components/datagrid/body/header/data_grid_header_cell.tsx"
|
|
@@ -1247,14 +1283,14 @@
|
|
|
1247
1283
|
"highlighting": "string",
|
|
1248
1284
|
"loc": {
|
|
1249
1285
|
"start": {
|
|
1250
|
-
"line":
|
|
1286
|
+
"line": 312,
|
|
1251
1287
|
"column": 16,
|
|
1252
|
-
"index":
|
|
1288
|
+
"index": 10179
|
|
1253
1289
|
},
|
|
1254
1290
|
"end": {
|
|
1255
|
-
"line":
|
|
1291
|
+
"line": 316,
|
|
1256
1292
|
"column": 18,
|
|
1257
|
-
"index":
|
|
1293
|
+
"index": 10355
|
|
1258
1294
|
}
|
|
1259
1295
|
},
|
|
1260
1296
|
"filepath": "src/components/datagrid/body/header/data_grid_header_cell.tsx"
|
|
@@ -1265,14 +1301,14 @@
|
|
|
1265
1301
|
"highlighting": "string",
|
|
1266
1302
|
"loc": {
|
|
1267
1303
|
"start": {
|
|
1268
|
-
"line":
|
|
1304
|
+
"line": 322,
|
|
1269
1305
|
"column": 16,
|
|
1270
|
-
"index":
|
|
1306
|
+
"index": 10501
|
|
1271
1307
|
},
|
|
1272
1308
|
"end": {
|
|
1273
|
-
"line":
|
|
1309
|
+
"line": 327,
|
|
1274
1310
|
"column": 18,
|
|
1275
|
-
"index":
|
|
1311
|
+
"index": 10729
|
|
1276
1312
|
}
|
|
1277
1313
|
},
|
|
1278
1314
|
"filepath": "src/components/datagrid/body/header/data_grid_header_cell.tsx"
|
|
@@ -1283,14 +1319,14 @@
|
|
|
1283
1319
|
"highlighting": "string",
|
|
1284
1320
|
"loc": {
|
|
1285
1321
|
"start": {
|
|
1286
|
-
"line":
|
|
1322
|
+
"line": 331,
|
|
1287
1323
|
"column": 16,
|
|
1288
|
-
"index":
|
|
1324
|
+
"index": 10807
|
|
1289
1325
|
},
|
|
1290
1326
|
"end": {
|
|
1291
|
-
"line":
|
|
1327
|
+
"line": 336,
|
|
1292
1328
|
"column": 18,
|
|
1293
|
-
"index":
|
|
1329
|
+
"index": 11037
|
|
1294
1330
|
}
|
|
1295
1331
|
},
|
|
1296
1332
|
"filepath": "src/components/datagrid/body/header/data_grid_header_cell.tsx"
|
|
@@ -1301,14 +1337,14 @@
|
|
|
1301
1337
|
"highlighting": "string",
|
|
1302
1338
|
"loc": {
|
|
1303
1339
|
"start": {
|
|
1304
|
-
"line":
|
|
1340
|
+
"line": 342,
|
|
1305
1341
|
"column": 16,
|
|
1306
|
-
"index":
|
|
1342
|
+
"index": 11166
|
|
1307
1343
|
},
|
|
1308
1344
|
"end": {
|
|
1309
|
-
"line":
|
|
1345
|
+
"line": 347,
|
|
1310
1346
|
"column": 18,
|
|
1311
|
-
"index":
|
|
1347
|
+
"index": 11404
|
|
1312
1348
|
}
|
|
1313
1349
|
},
|
|
1314
1350
|
"filepath": "src/components/datagrid/body/header/data_grid_header_cell.tsx"
|
|
@@ -1319,14 +1355,14 @@
|
|
|
1319
1355
|
"highlighting": "string",
|
|
1320
1356
|
"loc": {
|
|
1321
1357
|
"start": {
|
|
1322
|
-
"line":
|
|
1358
|
+
"line": 351,
|
|
1323
1359
|
"column": 16,
|
|
1324
|
-
"index":
|
|
1360
|
+
"index": 11482
|
|
1325
1361
|
},
|
|
1326
1362
|
"end": {
|
|
1327
|
-
"line":
|
|
1363
|
+
"line": 356,
|
|
1328
1364
|
"column": 18,
|
|
1329
|
-
"index":
|
|
1365
|
+
"index": 11722
|
|
1330
1366
|
}
|
|
1331
1367
|
},
|
|
1332
1368
|
"filepath": "src/components/datagrid/body/header/data_grid_header_cell.tsx"
|
|
@@ -1337,14 +1373,14 @@
|
|
|
1337
1373
|
"highlighting": "string",
|
|
1338
1374
|
"loc": {
|
|
1339
1375
|
"start": {
|
|
1340
|
-
"line":
|
|
1376
|
+
"line": 421,
|
|
1341
1377
|
"column": 6,
|
|
1342
|
-
"index":
|
|
1378
|
+
"index": 13568
|
|
1343
1379
|
},
|
|
1344
1380
|
"end": {
|
|
1345
|
-
"line":
|
|
1381
|
+
"line": 424,
|
|
1346
1382
|
"column": 8,
|
|
1347
|
-
"index":
|
|
1383
|
+
"index": 13761
|
|
1348
1384
|
}
|
|
1349
1385
|
},
|
|
1350
1386
|
"filepath": "src/components/datagrid/body/header/data_grid_header_cell.tsx"
|
|
@@ -1355,14 +1391,14 @@
|
|
|
1355
1391
|
"highlighting": "string",
|
|
1356
1392
|
"loc": {
|
|
1357
1393
|
"start": {
|
|
1358
|
-
"line":
|
|
1394
|
+
"line": 119,
|
|
1359
1395
|
"column": 30,
|
|
1360
|
-
"index":
|
|
1396
|
+
"index": 3691
|
|
1361
1397
|
},
|
|
1362
1398
|
"end": {
|
|
1363
|
-
"line":
|
|
1399
|
+
"line": 122,
|
|
1364
1400
|
"column": 3,
|
|
1365
|
-
"index":
|
|
1401
|
+
"index": 3769
|
|
1366
1402
|
}
|
|
1367
1403
|
},
|
|
1368
1404
|
"filepath": "src/components/datagrid/controls/column_selector.tsx"
|
|
@@ -1373,14 +1409,14 @@
|
|
|
1373
1409
|
"highlighting": "string",
|
|
1374
1410
|
"loc": {
|
|
1375
1411
|
"start": {
|
|
1376
|
-
"line":
|
|
1412
|
+
"line": 159,
|
|
1377
1413
|
"column": 12,
|
|
1378
|
-
"index":
|
|
1414
|
+
"index": 4993
|
|
1379
1415
|
},
|
|
1380
1416
|
"end": {
|
|
1381
|
-
"line":
|
|
1417
|
+
"line": 159,
|
|
1382
1418
|
"column": 74,
|
|
1383
|
-
"index":
|
|
1419
|
+
"index": 5055
|
|
1384
1420
|
}
|
|
1385
1421
|
},
|
|
1386
1422
|
"filepath": "src/components/datagrid/controls/column_selector.tsx"
|
|
@@ -1391,14 +1427,14 @@
|
|
|
1391
1427
|
"highlighting": "string",
|
|
1392
1428
|
"loc": {
|
|
1393
1429
|
"start": {
|
|
1394
|
-
"line":
|
|
1430
|
+
"line": 165,
|
|
1395
1431
|
"column": 12,
|
|
1396
|
-
"index":
|
|
1432
|
+
"index": 5201
|
|
1397
1433
|
},
|
|
1398
1434
|
"end": {
|
|
1399
|
-
"line":
|
|
1435
|
+
"line": 171,
|
|
1400
1436
|
"column": 13,
|
|
1401
|
-
"index":
|
|
1437
|
+
"index": 5413
|
|
1402
1438
|
}
|
|
1403
1439
|
},
|
|
1404
1440
|
"filepath": "src/components/datagrid/controls/column_selector.tsx"
|
|
@@ -1409,14 +1445,14 @@
|
|
|
1409
1445
|
"highlighting": "string",
|
|
1410
1446
|
"loc": {
|
|
1411
1447
|
"start": {
|
|
1412
|
-
"line":
|
|
1448
|
+
"line": 165,
|
|
1413
1449
|
"column": 12,
|
|
1414
|
-
"index":
|
|
1450
|
+
"index": 5201
|
|
1415
1451
|
},
|
|
1416
1452
|
"end": {
|
|
1417
|
-
"line":
|
|
1453
|
+
"line": 171,
|
|
1418
1454
|
"column": 13,
|
|
1419
|
-
"index":
|
|
1455
|
+
"index": 5413
|
|
1420
1456
|
}
|
|
1421
1457
|
},
|
|
1422
1458
|
"filepath": "src/components/datagrid/controls/column_selector.tsx"
|
|
@@ -1427,14 +1463,14 @@
|
|
|
1427
1463
|
"highlighting": "string",
|
|
1428
1464
|
"loc": {
|
|
1429
1465
|
"start": {
|
|
1430
|
-
"line":
|
|
1466
|
+
"line": 288,
|
|
1431
1467
|
"column": 18,
|
|
1432
|
-
"index":
|
|
1468
|
+
"index": 10378
|
|
1433
1469
|
},
|
|
1434
1470
|
"end": {
|
|
1435
|
-
"line":
|
|
1471
|
+
"line": 291,
|
|
1436
1472
|
"column": 20,
|
|
1437
|
-
"index":
|
|
1473
|
+
"index": 10502
|
|
1438
1474
|
}
|
|
1439
1475
|
},
|
|
1440
1476
|
"filepath": "src/components/datagrid/controls/column_selector.tsx"
|
|
@@ -1445,14 +1481,14 @@
|
|
|
1445
1481
|
"highlighting": "string",
|
|
1446
1482
|
"loc": {
|
|
1447
1483
|
"start": {
|
|
1448
|
-
"line":
|
|
1484
|
+
"line": 301,
|
|
1449
1485
|
"column": 18,
|
|
1450
|
-
"index":
|
|
1486
|
+
"index": 10862
|
|
1451
1487
|
},
|
|
1452
1488
|
"end": {
|
|
1453
|
-
"line":
|
|
1489
|
+
"line": 304,
|
|
1454
1490
|
"column": 20,
|
|
1455
|
-
"index":
|
|
1491
|
+
"index": 10984
|
|
1456
1492
|
}
|
|
1457
1493
|
},
|
|
1458
1494
|
"filepath": "src/components/datagrid/controls/column_selector.tsx"
|
|
@@ -1463,14 +1499,14 @@
|
|
|
1463
1499
|
"highlighting": "string",
|
|
1464
1500
|
"loc": {
|
|
1465
1501
|
"start": {
|
|
1466
|
-
"line":
|
|
1502
|
+
"line": 27,
|
|
1467
1503
|
"column": 2,
|
|
1468
|
-
"index":
|
|
1504
|
+
"index": 1166
|
|
1469
1505
|
},
|
|
1470
1506
|
"end": {
|
|
1471
|
-
"line":
|
|
1507
|
+
"line": 27,
|
|
1472
1508
|
"column": 76,
|
|
1473
|
-
"index":
|
|
1509
|
+
"index": 1240
|
|
1474
1510
|
}
|
|
1475
1511
|
},
|
|
1476
1512
|
"filepath": "src/components/datagrid/controls/column_sorting_draggable.tsx"
|
|
@@ -1481,14 +1517,14 @@
|
|
|
1481
1517
|
"highlighting": "string",
|
|
1482
1518
|
"loc": {
|
|
1483
1519
|
"start": {
|
|
1484
|
-
"line":
|
|
1520
|
+
"line": 30,
|
|
1485
1521
|
"column": 2,
|
|
1486
|
-
"index":
|
|
1522
|
+
"index": 1284
|
|
1487
1523
|
},
|
|
1488
1524
|
"end": {
|
|
1489
|
-
"line":
|
|
1525
|
+
"line": 30,
|
|
1490
1526
|
"column": 77,
|
|
1491
|
-
"index":
|
|
1527
|
+
"index": 1359
|
|
1492
1528
|
}
|
|
1493
1529
|
},
|
|
1494
1530
|
"filepath": "src/components/datagrid/controls/column_sorting_draggable.tsx"
|
|
@@ -1499,14 +1535,14 @@
|
|
|
1499
1535
|
"highlighting": "string",
|
|
1500
1536
|
"loc": {
|
|
1501
1537
|
"start": {
|
|
1502
|
-
"line":
|
|
1538
|
+
"line": 71,
|
|
1503
1539
|
"column": 30,
|
|
1504
|
-
"index":
|
|
1540
|
+
"index": 2323
|
|
1505
1541
|
},
|
|
1506
1542
|
"end": {
|
|
1507
|
-
"line":
|
|
1543
|
+
"line": 74,
|
|
1508
1544
|
"column": 3,
|
|
1509
|
-
"index":
|
|
1545
|
+
"index": 2409
|
|
1510
1546
|
}
|
|
1511
1547
|
},
|
|
1512
1548
|
"filepath": "src/components/datagrid/controls/column_sorting_draggable.tsx"
|
|
@@ -1517,14 +1553,14 @@
|
|
|
1517
1553
|
"highlighting": "string",
|
|
1518
1554
|
"loc": {
|
|
1519
1555
|
"start": {
|
|
1520
|
-
"line":
|
|
1556
|
+
"line": 119,
|
|
1521
1557
|
"column": 14,
|
|
1522
|
-
"index":
|
|
1558
|
+
"index": 3743
|
|
1523
1559
|
},
|
|
1524
1560
|
"end": {
|
|
1525
|
-
"line":
|
|
1561
|
+
"line": 123,
|
|
1526
1562
|
"column": 15,
|
|
1527
|
-
"index":
|
|
1563
|
+
"index": 3932
|
|
1528
1564
|
}
|
|
1529
1565
|
},
|
|
1530
1566
|
"filepath": "src/components/datagrid/controls/column_sorting_draggable.tsx"
|
|
@@ -1535,14 +1571,14 @@
|
|
|
1535
1571
|
"highlighting": "string",
|
|
1536
1572
|
"loc": {
|
|
1537
1573
|
"start": {
|
|
1538
|
-
"line":
|
|
1539
|
-
"column":
|
|
1540
|
-
"index":
|
|
1574
|
+
"line": 129,
|
|
1575
|
+
"column": 12,
|
|
1576
|
+
"index": 4120
|
|
1541
1577
|
},
|
|
1542
1578
|
"end": {
|
|
1543
|
-
"line":
|
|
1544
|
-
"column":
|
|
1545
|
-
"index":
|
|
1579
|
+
"line": 133,
|
|
1580
|
+
"column": 13,
|
|
1581
|
+
"index": 4302
|
|
1546
1582
|
}
|
|
1547
1583
|
},
|
|
1548
1584
|
"filepath": "src/components/datagrid/controls/column_sorting_draggable.tsx"
|
|
@@ -1553,14 +1589,14 @@
|
|
|
1553
1589
|
"highlighting": "string",
|
|
1554
1590
|
"loc": {
|
|
1555
1591
|
"start": {
|
|
1556
|
-
"line":
|
|
1557
|
-
"column":
|
|
1558
|
-
"index":
|
|
1592
|
+
"line": 177,
|
|
1593
|
+
"column": 12,
|
|
1594
|
+
"index": 5805
|
|
1559
1595
|
},
|
|
1560
1596
|
"end": {
|
|
1561
|
-
"line":
|
|
1562
|
-
"column":
|
|
1563
|
-
"index":
|
|
1597
|
+
"line": 181,
|
|
1598
|
+
"column": 13,
|
|
1599
|
+
"index": 5983
|
|
1564
1600
|
}
|
|
1565
1601
|
},
|
|
1566
1602
|
"filepath": "src/components/datagrid/controls/column_sorting_draggable.tsx"
|
|
@@ -1571,14 +1607,14 @@
|
|
|
1571
1607
|
"highlighting": "string",
|
|
1572
1608
|
"loc": {
|
|
1573
1609
|
"start": {
|
|
1574
|
-
"line":
|
|
1610
|
+
"line": 66,
|
|
1575
1611
|
"column": 30,
|
|
1576
|
-
"index":
|
|
1612
|
+
"index": 2120
|
|
1577
1613
|
},
|
|
1578
1614
|
"end": {
|
|
1579
|
-
"line":
|
|
1615
|
+
"line": 69,
|
|
1580
1616
|
"column": 5,
|
|
1581
|
-
"index":
|
|
1617
|
+
"index": 2190
|
|
1582
1618
|
}
|
|
1583
1619
|
},
|
|
1584
1620
|
"filepath": "src/components/datagrid/controls/column_sorting.tsx"
|
|
@@ -1589,14 +1625,14 @@
|
|
|
1589
1625
|
"highlighting": "string",
|
|
1590
1626
|
"loc": {
|
|
1591
1627
|
"start": {
|
|
1592
|
-
"line":
|
|
1628
|
+
"line": 70,
|
|
1593
1629
|
"column": 31,
|
|
1594
|
-
"index":
|
|
1630
|
+
"index": 2223
|
|
1595
1631
|
},
|
|
1596
1632
|
"end": {
|
|
1597
|
-
"line":
|
|
1633
|
+
"line": 73,
|
|
1598
1634
|
"column": 5,
|
|
1599
|
-
"index":
|
|
1635
|
+
"index": 2303
|
|
1600
1636
|
}
|
|
1601
1637
|
},
|
|
1602
1638
|
"filepath": "src/components/datagrid/controls/column_sorting.tsx"
|
|
@@ -1607,14 +1643,14 @@
|
|
|
1607
1643
|
"highlighting": "string",
|
|
1608
1644
|
"loc": {
|
|
1609
1645
|
"start": {
|
|
1610
|
-
"line":
|
|
1646
|
+
"line": 221,
|
|
1611
1647
|
"column": 14,
|
|
1612
|
-
"index":
|
|
1648
|
+
"index": 6957
|
|
1613
1649
|
},
|
|
1614
1650
|
"end": {
|
|
1615
|
-
"line":
|
|
1651
|
+
"line": 224,
|
|
1616
1652
|
"column": 16,
|
|
1617
|
-
"index":
|
|
1653
|
+
"index": 7093
|
|
1618
1654
|
}
|
|
1619
1655
|
},
|
|
1620
1656
|
"filepath": "src/components/datagrid/controls/column_sorting.tsx"
|
|
@@ -1625,14 +1661,14 @@
|
|
|
1625
1661
|
"highlighting": "string",
|
|
1626
1662
|
"loc": {
|
|
1627
1663
|
"start": {
|
|
1628
|
-
"line":
|
|
1664
|
+
"line": 254,
|
|
1629
1665
|
"column": 24,
|
|
1630
|
-
"index":
|
|
1666
|
+
"index": 8316
|
|
1631
1667
|
},
|
|
1632
1668
|
"end": {
|
|
1633
|
-
"line":
|
|
1669
|
+
"line": 257,
|
|
1634
1670
|
"column": 26,
|
|
1635
|
-
"index":
|
|
1671
|
+
"index": 8472
|
|
1636
1672
|
}
|
|
1637
1673
|
},
|
|
1638
1674
|
"filepath": "src/components/datagrid/controls/column_sorting.tsx"
|
|
@@ -1643,14 +1679,14 @@
|
|
|
1643
1679
|
"highlighting": "string",
|
|
1644
1680
|
"loc": {
|
|
1645
1681
|
"start": {
|
|
1646
|
-
"line":
|
|
1682
|
+
"line": 329,
|
|
1647
1683
|
"column": 20,
|
|
1648
|
-
"index":
|
|
1684
|
+
"index": 11826
|
|
1649
1685
|
},
|
|
1650
1686
|
"end": {
|
|
1651
|
-
"line":
|
|
1687
|
+
"line": 332,
|
|
1652
1688
|
"column": 22,
|
|
1653
|
-
"index":
|
|
1689
|
+
"index": 11959
|
|
1654
1690
|
}
|
|
1655
1691
|
},
|
|
1656
1692
|
"filepath": "src/components/datagrid/controls/column_sorting.tsx"
|
|
@@ -1679,14 +1715,14 @@
|
|
|
1679
1715
|
"highlighting": "string",
|
|
1680
1716
|
"loc": {
|
|
1681
1717
|
"start": {
|
|
1682
|
-
"line":
|
|
1718
|
+
"line": 228,
|
|
1683
1719
|
"column": 22,
|
|
1684
|
-
"index":
|
|
1720
|
+
"index": 7412
|
|
1685
1721
|
},
|
|
1686
1722
|
"end": {
|
|
1687
|
-
"line":
|
|
1723
|
+
"line": 231,
|
|
1688
1724
|
"column": 3,
|
|
1689
|
-
"index":
|
|
1725
|
+
"index": 7486
|
|
1690
1726
|
}
|
|
1691
1727
|
},
|
|
1692
1728
|
"filepath": "src/components/datagrid/controls/display_selector.tsx"
|
|
@@ -1697,14 +1733,14 @@
|
|
|
1697
1733
|
"highlighting": "string",
|
|
1698
1734
|
"loc": {
|
|
1699
1735
|
"start": {
|
|
1700
|
-
"line":
|
|
1736
|
+
"line": 232,
|
|
1701
1737
|
"column": 27,
|
|
1702
|
-
"index":
|
|
1738
|
+
"index": 7515
|
|
1703
1739
|
},
|
|
1704
1740
|
"end": {
|
|
1705
|
-
"line":
|
|
1741
|
+
"line": 235,
|
|
1706
1742
|
"column": 3,
|
|
1707
|
-
"index":
|
|
1743
|
+
"index": 7595
|
|
1708
1744
|
}
|
|
1709
1745
|
},
|
|
1710
1746
|
"filepath": "src/components/datagrid/controls/display_selector.tsx"
|
|
@@ -1715,14 +1751,14 @@
|
|
|
1715
1751
|
"highlighting": "string",
|
|
1716
1752
|
"loc": {
|
|
1717
1753
|
"start": {
|
|
1718
|
-
"line":
|
|
1754
|
+
"line": 272,
|
|
1719
1755
|
"column": 10,
|
|
1720
|
-
"index":
|
|
1756
|
+
"index": 8779
|
|
1721
1757
|
},
|
|
1722
1758
|
"end": {
|
|
1723
|
-
"line":
|
|
1759
|
+
"line": 280,
|
|
1724
1760
|
"column": 11,
|
|
1725
|
-
"index":
|
|
1761
|
+
"index": 9100
|
|
1726
1762
|
}
|
|
1727
1763
|
},
|
|
1728
1764
|
"filepath": "src/components/datagrid/controls/display_selector.tsx"
|
|
@@ -1733,14 +1769,14 @@
|
|
|
1733
1769
|
"highlighting": "string",
|
|
1734
1770
|
"loc": {
|
|
1735
1771
|
"start": {
|
|
1736
|
-
"line":
|
|
1772
|
+
"line": 272,
|
|
1737
1773
|
"column": 10,
|
|
1738
|
-
"index":
|
|
1774
|
+
"index": 8779
|
|
1739
1775
|
},
|
|
1740
1776
|
"end": {
|
|
1741
|
-
"line":
|
|
1777
|
+
"line": 280,
|
|
1742
1778
|
"column": 11,
|
|
1743
|
-
"index":
|
|
1779
|
+
"index": 9100
|
|
1744
1780
|
}
|
|
1745
1781
|
},
|
|
1746
1782
|
"filepath": "src/components/datagrid/controls/display_selector.tsx"
|
|
@@ -1751,14 +1787,14 @@
|
|
|
1751
1787
|
"highlighting": "string",
|
|
1752
1788
|
"loc": {
|
|
1753
1789
|
"start": {
|
|
1754
|
-
"line":
|
|
1790
|
+
"line": 272,
|
|
1755
1791
|
"column": 10,
|
|
1756
|
-
"index":
|
|
1792
|
+
"index": 8779
|
|
1757
1793
|
},
|
|
1758
1794
|
"end": {
|
|
1759
|
-
"line":
|
|
1795
|
+
"line": 280,
|
|
1760
1796
|
"column": 11,
|
|
1761
|
-
"index":
|
|
1797
|
+
"index": 9100
|
|
1762
1798
|
}
|
|
1763
1799
|
},
|
|
1764
1800
|
"filepath": "src/components/datagrid/controls/display_selector.tsx"
|
|
@@ -1769,14 +1805,14 @@
|
|
|
1769
1805
|
"highlighting": "string",
|
|
1770
1806
|
"loc": {
|
|
1771
1807
|
"start": {
|
|
1772
|
-
"line":
|
|
1808
|
+
"line": 272,
|
|
1773
1809
|
"column": 10,
|
|
1774
|
-
"index":
|
|
1810
|
+
"index": 8779
|
|
1775
1811
|
},
|
|
1776
1812
|
"end": {
|
|
1777
|
-
"line":
|
|
1813
|
+
"line": 280,
|
|
1778
1814
|
"column": 11,
|
|
1779
|
-
"index":
|
|
1815
|
+
"index": 9100
|
|
1780
1816
|
}
|
|
1781
1817
|
},
|
|
1782
1818
|
"filepath": "src/components/datagrid/controls/display_selector.tsx"
|
|
@@ -1787,14 +1823,14 @@
|
|
|
1787
1823
|
"highlighting": "string",
|
|
1788
1824
|
"loc": {
|
|
1789
1825
|
"start": {
|
|
1790
|
-
"line":
|
|
1826
|
+
"line": 315,
|
|
1791
1827
|
"column": 10,
|
|
1792
|
-
"index":
|
|
1828
|
+
"index": 10207
|
|
1793
1829
|
},
|
|
1794
1830
|
"end": {
|
|
1795
|
-
"line":
|
|
1831
|
+
"line": 330,
|
|
1796
1832
|
"column": 11,
|
|
1797
|
-
"index":
|
|
1833
|
+
"index": 10680
|
|
1798
1834
|
}
|
|
1799
1835
|
},
|
|
1800
1836
|
"filepath": "src/components/datagrid/controls/display_selector.tsx"
|
|
@@ -1805,14 +1841,14 @@
|
|
|
1805
1841
|
"highlighting": "string",
|
|
1806
1842
|
"loc": {
|
|
1807
1843
|
"start": {
|
|
1808
|
-
"line":
|
|
1844
|
+
"line": 315,
|
|
1809
1845
|
"column": 10,
|
|
1810
|
-
"index":
|
|
1846
|
+
"index": 10207
|
|
1811
1847
|
},
|
|
1812
1848
|
"end": {
|
|
1813
|
-
"line":
|
|
1849
|
+
"line": 330,
|
|
1814
1850
|
"column": 11,
|
|
1815
|
-
"index":
|
|
1851
|
+
"index": 10680
|
|
1816
1852
|
}
|
|
1817
1853
|
},
|
|
1818
1854
|
"filepath": "src/components/datagrid/controls/display_selector.tsx"
|
|
@@ -1823,14 +1859,14 @@
|
|
|
1823
1859
|
"highlighting": "string",
|
|
1824
1860
|
"loc": {
|
|
1825
1861
|
"start": {
|
|
1826
|
-
"line":
|
|
1862
|
+
"line": 315,
|
|
1827
1863
|
"column": 10,
|
|
1828
|
-
"index":
|
|
1864
|
+
"index": 10207
|
|
1829
1865
|
},
|
|
1830
1866
|
"end": {
|
|
1831
|
-
"line":
|
|
1867
|
+
"line": 330,
|
|
1832
1868
|
"column": 11,
|
|
1833
|
-
"index":
|
|
1869
|
+
"index": 10680
|
|
1834
1870
|
}
|
|
1835
1871
|
},
|
|
1836
1872
|
"filepath": "src/components/datagrid/controls/display_selector.tsx"
|
|
@@ -1841,14 +1877,14 @@
|
|
|
1841
1877
|
"highlighting": "string",
|
|
1842
1878
|
"loc": {
|
|
1843
1879
|
"start": {
|
|
1844
|
-
"line":
|
|
1880
|
+
"line": 315,
|
|
1845
1881
|
"column": 10,
|
|
1846
|
-
"index":
|
|
1882
|
+
"index": 10207
|
|
1847
1883
|
},
|
|
1848
1884
|
"end": {
|
|
1849
|
-
"line":
|
|
1885
|
+
"line": 330,
|
|
1850
1886
|
"column": 11,
|
|
1851
|
-
"index":
|
|
1887
|
+
"index": 10680
|
|
1852
1888
|
}
|
|
1853
1889
|
},
|
|
1854
1890
|
"filepath": "src/components/datagrid/controls/display_selector.tsx"
|
|
@@ -1859,14 +1895,14 @@
|
|
|
1859
1895
|
"highlighting": "string",
|
|
1860
1896
|
"loc": {
|
|
1861
1897
|
"start": {
|
|
1862
|
-
"line":
|
|
1898
|
+
"line": 315,
|
|
1863
1899
|
"column": 10,
|
|
1864
|
-
"index":
|
|
1900
|
+
"index": 10207
|
|
1865
1901
|
},
|
|
1866
1902
|
"end": {
|
|
1867
|
-
"line":
|
|
1903
|
+
"line": 330,
|
|
1868
1904
|
"column": 11,
|
|
1869
|
-
"index":
|
|
1905
|
+
"index": 10680
|
|
1870
1906
|
}
|
|
1871
1907
|
},
|
|
1872
1908
|
"filepath": "src/components/datagrid/controls/display_selector.tsx"
|
|
@@ -1877,14 +1913,14 @@
|
|
|
1877
1913
|
"highlighting": "string",
|
|
1878
1914
|
"loc": {
|
|
1879
1915
|
"start": {
|
|
1880
|
-
"line":
|
|
1916
|
+
"line": 37,
|
|
1881
1917
|
"column": 53,
|
|
1882
|
-
"index":
|
|
1918
|
+
"index": 1202
|
|
1883
1919
|
},
|
|
1884
1920
|
"end": {
|
|
1885
|
-
"line":
|
|
1921
|
+
"line": 43,
|
|
1886
1922
|
"column": 3,
|
|
1887
|
-
"index":
|
|
1923
|
+
"index": 1376
|
|
1888
1924
|
}
|
|
1889
1925
|
},
|
|
1890
1926
|
"filepath": "src/components/datagrid/controls/fullscreen_selector.tsx"
|
|
@@ -1895,14 +1931,14 @@
|
|
|
1895
1931
|
"highlighting": "string",
|
|
1896
1932
|
"loc": {
|
|
1897
1933
|
"start": {
|
|
1898
|
-
"line":
|
|
1934
|
+
"line": 37,
|
|
1899
1935
|
"column": 53,
|
|
1900
|
-
"index":
|
|
1936
|
+
"index": 1202
|
|
1901
1937
|
},
|
|
1902
1938
|
"end": {
|
|
1903
|
-
"line":
|
|
1939
|
+
"line": 43,
|
|
1904
1940
|
"column": 3,
|
|
1905
|
-
"index":
|
|
1941
|
+
"index": 1376
|
|
1906
1942
|
}
|
|
1907
1943
|
},
|
|
1908
1944
|
"filepath": "src/components/datagrid/controls/fullscreen_selector.tsx"
|
|
@@ -1913,14 +1949,14 @@
|
|
|
1913
1949
|
"highlighting": "string",
|
|
1914
1950
|
"loc": {
|
|
1915
1951
|
"start": {
|
|
1916
|
-
"line":
|
|
1952
|
+
"line": 26,
|
|
1917
1953
|
"column": 16,
|
|
1918
|
-
"index":
|
|
1954
|
+
"index": 1033
|
|
1919
1955
|
},
|
|
1920
1956
|
"end": {
|
|
1921
|
-
"line":
|
|
1957
|
+
"line": 26,
|
|
1922
1958
|
"column": 78,
|
|
1923
|
-
"index":
|
|
1959
|
+
"index": 1095
|
|
1924
1960
|
}
|
|
1925
1961
|
},
|
|
1926
1962
|
"filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
|
|
@@ -1931,14 +1967,14 @@
|
|
|
1931
1967
|
"highlighting": "string",
|
|
1932
1968
|
"loc": {
|
|
1933
1969
|
"start": {
|
|
1934
|
-
"line":
|
|
1970
|
+
"line": 70,
|
|
1935
1971
|
"column": 20,
|
|
1936
|
-
"index":
|
|
1972
|
+
"index": 2420
|
|
1937
1973
|
},
|
|
1938
1974
|
"end": {
|
|
1939
|
-
"line":
|
|
1975
|
+
"line": 73,
|
|
1940
1976
|
"column": 22,
|
|
1941
|
-
"index":
|
|
1977
|
+
"index": 2556
|
|
1942
1978
|
}
|
|
1943
1979
|
},
|
|
1944
1980
|
"filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
|
|
@@ -1949,14 +1985,14 @@
|
|
|
1949
1985
|
"highlighting": "string",
|
|
1950
1986
|
"loc": {
|
|
1951
1987
|
"start": {
|
|
1952
|
-
"line":
|
|
1988
|
+
"line": 77,
|
|
1953
1989
|
"column": 18,
|
|
1954
|
-
"index":
|
|
1990
|
+
"index": 2650
|
|
1955
1991
|
},
|
|
1956
1992
|
"end": {
|
|
1957
|
-
"line":
|
|
1993
|
+
"line": 80,
|
|
1958
1994
|
"column": 20,
|
|
1959
|
-
"index":
|
|
1995
|
+
"index": 2794
|
|
1960
1996
|
}
|
|
1961
1997
|
},
|
|
1962
1998
|
"filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
|
|
@@ -1967,14 +2003,14 @@
|
|
|
1967
2003
|
"highlighting": "string",
|
|
1968
2004
|
"loc": {
|
|
1969
2005
|
"start": {
|
|
1970
|
-
"line":
|
|
2006
|
+
"line": 86,
|
|
1971
2007
|
"column": 20,
|
|
1972
|
-
"index":
|
|
2008
|
+
"index": 2916
|
|
1973
2009
|
},
|
|
1974
2010
|
"end": {
|
|
1975
|
-
"line":
|
|
2011
|
+
"line": 89,
|
|
1976
2012
|
"column": 22,
|
|
1977
|
-
"index":
|
|
2013
|
+
"index": 3056
|
|
1978
2014
|
}
|
|
1979
2015
|
},
|
|
1980
2016
|
"filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
|
|
@@ -1985,14 +2021,14 @@
|
|
|
1985
2021
|
"highlighting": "string",
|
|
1986
2022
|
"loc": {
|
|
1987
2023
|
"start": {
|
|
1988
|
-
"line":
|
|
2024
|
+
"line": 93,
|
|
1989
2025
|
"column": 18,
|
|
1990
|
-
"index":
|
|
2026
|
+
"index": 3150
|
|
1991
2027
|
},
|
|
1992
2028
|
"end": {
|
|
1993
|
-
"line":
|
|
2029
|
+
"line": 96,
|
|
1994
2030
|
"column": 20,
|
|
1995
|
-
"index":
|
|
2031
|
+
"index": 3298
|
|
1996
2032
|
}
|
|
1997
2033
|
},
|
|
1998
2034
|
"filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
|
|
@@ -2003,14 +2039,14 @@
|
|
|
2003
2039
|
"highlighting": "string",
|
|
2004
2040
|
"loc": {
|
|
2005
2041
|
"start": {
|
|
2006
|
-
"line":
|
|
2042
|
+
"line": 102,
|
|
2007
2043
|
"column": 20,
|
|
2008
|
-
"index":
|
|
2044
|
+
"index": 3420
|
|
2009
2045
|
},
|
|
2010
2046
|
"end": {
|
|
2011
|
-
"line":
|
|
2047
|
+
"line": 105,
|
|
2012
2048
|
"column": 22,
|
|
2013
|
-
"index":
|
|
2049
|
+
"index": 3562
|
|
2014
2050
|
}
|
|
2015
2051
|
},
|
|
2016
2052
|
"filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
|
|
@@ -2021,14 +2057,14 @@
|
|
|
2021
2057
|
"highlighting": "string",
|
|
2022
2058
|
"loc": {
|
|
2023
2059
|
"start": {
|
|
2024
|
-
"line":
|
|
2060
|
+
"line": 109,
|
|
2025
2061
|
"column": 18,
|
|
2026
|
-
"index":
|
|
2062
|
+
"index": 3656
|
|
2027
2063
|
},
|
|
2028
2064
|
"end": {
|
|
2029
|
-
"line":
|
|
2065
|
+
"line": 112,
|
|
2030
2066
|
"column": 20,
|
|
2031
|
-
"index":
|
|
2067
|
+
"index": 3806
|
|
2032
2068
|
}
|
|
2033
2069
|
},
|
|
2034
2070
|
"filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
|
|
@@ -2039,14 +2075,14 @@
|
|
|
2039
2075
|
"highlighting": "string",
|
|
2040
2076
|
"loc": {
|
|
2041
2077
|
"start": {
|
|
2042
|
-
"line":
|
|
2078
|
+
"line": 118,
|
|
2043
2079
|
"column": 20,
|
|
2044
|
-
"index":
|
|
2080
|
+
"index": 3928
|
|
2045
2081
|
},
|
|
2046
2082
|
"end": {
|
|
2047
|
-
"line":
|
|
2083
|
+
"line": 121,
|
|
2048
2084
|
"column": 22,
|
|
2049
|
-
"index":
|
|
2085
|
+
"index": 4068
|
|
2050
2086
|
}
|
|
2051
2087
|
},
|
|
2052
2088
|
"filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
|
|
@@ -2057,14 +2093,14 @@
|
|
|
2057
2093
|
"highlighting": "string",
|
|
2058
2094
|
"loc": {
|
|
2059
2095
|
"start": {
|
|
2060
|
-
"line":
|
|
2096
|
+
"line": 125,
|
|
2061
2097
|
"column": 18,
|
|
2062
|
-
"index":
|
|
2098
|
+
"index": 4162
|
|
2063
2099
|
},
|
|
2064
2100
|
"end": {
|
|
2065
|
-
"line":
|
|
2101
|
+
"line": 128,
|
|
2066
2102
|
"column": 20,
|
|
2067
|
-
"index":
|
|
2103
|
+
"index": 4310
|
|
2068
2104
|
}
|
|
2069
2105
|
},
|
|
2070
2106
|
"filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
|
|
@@ -2075,14 +2111,14 @@
|
|
|
2075
2111
|
"highlighting": "string",
|
|
2076
2112
|
"loc": {
|
|
2077
2113
|
"start": {
|
|
2078
|
-
"line":
|
|
2114
|
+
"line": 134,
|
|
2079
2115
|
"column": 20,
|
|
2080
|
-
"index":
|
|
2116
|
+
"index": 4432
|
|
2081
2117
|
},
|
|
2082
2118
|
"end": {
|
|
2083
|
-
"line":
|
|
2119
|
+
"line": 137,
|
|
2084
2120
|
"column": 22,
|
|
2085
|
-
"index":
|
|
2121
|
+
"index": 4561
|
|
2086
2122
|
}
|
|
2087
2123
|
},
|
|
2088
2124
|
"filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
|
|
@@ -2093,14 +2129,14 @@
|
|
|
2093
2129
|
"highlighting": "string",
|
|
2094
2130
|
"loc": {
|
|
2095
2131
|
"start": {
|
|
2096
|
-
"line":
|
|
2132
|
+
"line": 141,
|
|
2097
2133
|
"column": 18,
|
|
2098
|
-
"index":
|
|
2134
|
+
"index": 4655
|
|
2099
2135
|
},
|
|
2100
2136
|
"end": {
|
|
2101
|
-
"line":
|
|
2137
|
+
"line": 144,
|
|
2102
2138
|
"column": 20,
|
|
2103
|
-
"index":
|
|
2139
|
+
"index": 4821
|
|
2104
2140
|
}
|
|
2105
2141
|
},
|
|
2106
2142
|
"filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
|
|
@@ -2111,14 +2147,14 @@
|
|
|
2111
2147
|
"highlighting": "string",
|
|
2112
2148
|
"loc": {
|
|
2113
2149
|
"start": {
|
|
2114
|
-
"line":
|
|
2150
|
+
"line": 150,
|
|
2115
2151
|
"column": 20,
|
|
2116
|
-
"index":
|
|
2152
|
+
"index": 4943
|
|
2117
2153
|
},
|
|
2118
2154
|
"end": {
|
|
2119
|
-
"line":
|
|
2155
|
+
"line": 153,
|
|
2120
2156
|
"column": 22,
|
|
2121
|
-
"index":
|
|
2157
|
+
"index": 5070
|
|
2122
2158
|
}
|
|
2123
2159
|
},
|
|
2124
2160
|
"filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
|
|
@@ -2129,14 +2165,14 @@
|
|
|
2129
2165
|
"highlighting": "string",
|
|
2130
2166
|
"loc": {
|
|
2131
2167
|
"start": {
|
|
2132
|
-
"line":
|
|
2168
|
+
"line": 157,
|
|
2133
2169
|
"column": 18,
|
|
2134
|
-
"index":
|
|
2170
|
+
"index": 5164
|
|
2135
2171
|
},
|
|
2136
2172
|
"end": {
|
|
2137
|
-
"line":
|
|
2173
|
+
"line": 160,
|
|
2138
2174
|
"column": 20,
|
|
2139
|
-
"index":
|
|
2175
|
+
"index": 5328
|
|
2140
2176
|
}
|
|
2141
2177
|
},
|
|
2142
2178
|
"filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
|
|
@@ -2147,14 +2183,14 @@
|
|
|
2147
2183
|
"highlighting": "string",
|
|
2148
2184
|
"loc": {
|
|
2149
2185
|
"start": {
|
|
2150
|
-
"line":
|
|
2186
|
+
"line": 167,
|
|
2151
2187
|
"column": 22,
|
|
2152
|
-
"index":
|
|
2188
|
+
"index": 5475
|
|
2153
2189
|
},
|
|
2154
2190
|
"end": {
|
|
2155
|
-
"line":
|
|
2191
|
+
"line": 170,
|
|
2156
2192
|
"column": 24,
|
|
2157
|
-
"index":
|
|
2193
|
+
"index": 5605
|
|
2158
2194
|
}
|
|
2159
2195
|
},
|
|
2160
2196
|
"filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
|
|
@@ -2165,14 +2201,14 @@
|
|
|
2165
2201
|
"highlighting": "string",
|
|
2166
2202
|
"loc": {
|
|
2167
2203
|
"start": {
|
|
2168
|
-
"line":
|
|
2204
|
+
"line": 173,
|
|
2169
2205
|
"column": 22,
|
|
2170
|
-
"index":
|
|
2206
|
+
"index": 5686
|
|
2171
2207
|
},
|
|
2172
2208
|
"end": {
|
|
2173
|
-
"line":
|
|
2209
|
+
"line": 176,
|
|
2174
2210
|
"column": 24,
|
|
2175
|
-
"index":
|
|
2211
|
+
"index": 5821
|
|
2176
2212
|
}
|
|
2177
2213
|
},
|
|
2178
2214
|
"filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
|
|
@@ -2183,14 +2219,14 @@
|
|
|
2183
2219
|
"highlighting": "string",
|
|
2184
2220
|
"loc": {
|
|
2185
2221
|
"start": {
|
|
2186
|
-
"line":
|
|
2222
|
+
"line": 181,
|
|
2187
2223
|
"column": 18,
|
|
2188
|
-
"index":
|
|
2224
|
+
"index": 5939
|
|
2189
2225
|
},
|
|
2190
2226
|
"end": {
|
|
2191
|
-
"line":
|
|
2227
|
+
"line": 184,
|
|
2192
2228
|
"column": 20,
|
|
2193
|
-
"index":
|
|
2229
|
+
"index": 6110
|
|
2194
2230
|
}
|
|
2195
2231
|
},
|
|
2196
2232
|
"filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
|
|
@@ -2201,14 +2237,14 @@
|
|
|
2201
2237
|
"highlighting": "string",
|
|
2202
2238
|
"loc": {
|
|
2203
2239
|
"start": {
|
|
2204
|
-
"line":
|
|
2240
|
+
"line": 191,
|
|
2205
2241
|
"column": 22,
|
|
2206
|
-
"index":
|
|
2242
|
+
"index": 6257
|
|
2207
2243
|
},
|
|
2208
2244
|
"end": {
|
|
2209
|
-
"line":
|
|
2245
|
+
"line": 194,
|
|
2210
2246
|
"column": 24,
|
|
2211
|
-
"index":
|
|
2247
|
+
"index": 6387
|
|
2212
2248
|
}
|
|
2213
2249
|
},
|
|
2214
2250
|
"filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
|
|
@@ -2219,14 +2255,14 @@
|
|
|
2219
2255
|
"highlighting": "string",
|
|
2220
2256
|
"loc": {
|
|
2221
2257
|
"start": {
|
|
2222
|
-
"line":
|
|
2258
|
+
"line": 197,
|
|
2223
2259
|
"column": 22,
|
|
2224
|
-
"index":
|
|
2260
|
+
"index": 6468
|
|
2225
2261
|
},
|
|
2226
2262
|
"end": {
|
|
2227
|
-
"line":
|
|
2263
|
+
"line": 200,
|
|
2228
2264
|
"column": 24,
|
|
2229
|
-
"index":
|
|
2265
|
+
"index": 6601
|
|
2230
2266
|
}
|
|
2231
2267
|
},
|
|
2232
2268
|
"filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
|
|
@@ -2237,14 +2273,14 @@
|
|
|
2237
2273
|
"highlighting": "string",
|
|
2238
2274
|
"loc": {
|
|
2239
2275
|
"start": {
|
|
2240
|
-
"line":
|
|
2276
|
+
"line": 205,
|
|
2241
2277
|
"column": 18,
|
|
2242
|
-
"index":
|
|
2278
|
+
"index": 6719
|
|
2243
2279
|
},
|
|
2244
2280
|
"end": {
|
|
2245
|
-
"line":
|
|
2281
|
+
"line": 208,
|
|
2246
2282
|
"column": 20,
|
|
2247
|
-
"index":
|
|
2283
|
+
"index": 6888
|
|
2248
2284
|
}
|
|
2249
2285
|
},
|
|
2250
2286
|
"filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
|
|
@@ -2255,14 +2291,14 @@
|
|
|
2255
2291
|
"highlighting": "string",
|
|
2256
2292
|
"loc": {
|
|
2257
2293
|
"start": {
|
|
2258
|
-
"line":
|
|
2294
|
+
"line": 214,
|
|
2259
2295
|
"column": 20,
|
|
2260
|
-
"index":
|
|
2296
|
+
"index": 7010
|
|
2261
2297
|
},
|
|
2262
2298
|
"end": {
|
|
2263
|
-
"line":
|
|
2299
|
+
"line": 217,
|
|
2264
2300
|
"column": 22,
|
|
2265
|
-
"index":
|
|
2301
|
+
"index": 7144
|
|
2266
2302
|
}
|
|
2267
2303
|
},
|
|
2268
2304
|
"filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
|
|
@@ -2273,14 +2309,14 @@
|
|
|
2273
2309
|
"highlighting": "string",
|
|
2274
2310
|
"loc": {
|
|
2275
2311
|
"start": {
|
|
2276
|
-
"line":
|
|
2312
|
+
"line": 221,
|
|
2277
2313
|
"column": 18,
|
|
2278
|
-
"index":
|
|
2314
|
+
"index": 7238
|
|
2279
2315
|
},
|
|
2280
2316
|
"end": {
|
|
2281
|
-
"line":
|
|
2317
|
+
"line": 224,
|
|
2282
2318
|
"column": 20,
|
|
2283
|
-
"index":
|
|
2319
|
+
"index": 7404
|
|
2284
2320
|
}
|
|
2285
2321
|
},
|
|
2286
2322
|
"filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
|
|
@@ -2291,14 +2327,14 @@
|
|
|
2291
2327
|
"highlighting": "string",
|
|
2292
2328
|
"loc": {
|
|
2293
2329
|
"start": {
|
|
2294
|
-
"line":
|
|
2330
|
+
"line": 230,
|
|
2295
2331
|
"column": 20,
|
|
2296
|
-
"index":
|
|
2332
|
+
"index": 7526
|
|
2297
2333
|
},
|
|
2298
2334
|
"end": {
|
|
2299
|
-
"line":
|
|
2335
|
+
"line": 233,
|
|
2300
2336
|
"column": 22,
|
|
2301
|
-
"index":
|
|
2337
|
+
"index": 7664
|
|
2302
2338
|
}
|
|
2303
2339
|
},
|
|
2304
2340
|
"filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
|
|
@@ -2309,14 +2345,14 @@
|
|
|
2309
2345
|
"highlighting": "string",
|
|
2310
2346
|
"loc": {
|
|
2311
2347
|
"start": {
|
|
2312
|
-
"line":
|
|
2348
|
+
"line": 237,
|
|
2313
2349
|
"column": 18,
|
|
2314
|
-
"index":
|
|
2350
|
+
"index": 7758
|
|
2315
2351
|
},
|
|
2316
2352
|
"end": {
|
|
2317
|
-
"line":
|
|
2353
|
+
"line": 240,
|
|
2318
2354
|
"column": 20,
|
|
2319
|
-
"index":
|
|
2355
|
+
"index": 7923
|
|
2320
2356
|
}
|
|
2321
2357
|
},
|
|
2322
2358
|
"filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
|
|
@@ -2327,14 +2363,14 @@
|
|
|
2327
2363
|
"highlighting": "string",
|
|
2328
2364
|
"loc": {
|
|
2329
2365
|
"start": {
|
|
2330
|
-
"line":
|
|
2366
|
+
"line": 246,
|
|
2331
2367
|
"column": 20,
|
|
2332
|
-
"index":
|
|
2368
|
+
"index": 8045
|
|
2333
2369
|
},
|
|
2334
2370
|
"end": {
|
|
2335
|
-
"line":
|
|
2371
|
+
"line": 249,
|
|
2336
2372
|
"column": 22,
|
|
2337
|
-
"index":
|
|
2373
|
+
"index": 8176
|
|
2338
2374
|
}
|
|
2339
2375
|
},
|
|
2340
2376
|
"filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
|
|
@@ -2345,14 +2381,14 @@
|
|
|
2345
2381
|
"highlighting": "string",
|
|
2346
2382
|
"loc": {
|
|
2347
2383
|
"start": {
|
|
2348
|
-
"line":
|
|
2384
|
+
"line": 253,
|
|
2349
2385
|
"column": 18,
|
|
2350
|
-
"index":
|
|
2386
|
+
"index": 8270
|
|
2351
2387
|
},
|
|
2352
2388
|
"end": {
|
|
2353
|
-
"line":
|
|
2389
|
+
"line": 256,
|
|
2354
2390
|
"column": 20,
|
|
2355
|
-
"index":
|
|
2391
|
+
"index": 8425
|
|
2356
2392
|
}
|
|
2357
2393
|
},
|
|
2358
2394
|
"filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
|
|
@@ -2363,14 +2399,14 @@
|
|
|
2363
2399
|
"highlighting": "string",
|
|
2364
2400
|
"loc": {
|
|
2365
2401
|
"start": {
|
|
2366
|
-
"line":
|
|
2402
|
+
"line": 262,
|
|
2367
2403
|
"column": 20,
|
|
2368
|
-
"index":
|
|
2404
|
+
"index": 8547
|
|
2369
2405
|
},
|
|
2370
2406
|
"end": {
|
|
2371
|
-
"line":
|
|
2407
|
+
"line": 265,
|
|
2372
2408
|
"column": 22,
|
|
2373
|
-
"index":
|
|
2409
|
+
"index": 8680
|
|
2374
2410
|
}
|
|
2375
2411
|
},
|
|
2376
2412
|
"filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
|
|
@@ -2381,14 +2417,14 @@
|
|
|
2381
2417
|
"highlighting": "string",
|
|
2382
2418
|
"loc": {
|
|
2383
2419
|
"start": {
|
|
2384
|
-
"line":
|
|
2420
|
+
"line": 269,
|
|
2385
2421
|
"column": 18,
|
|
2386
|
-
"index":
|
|
2422
|
+
"index": 8774
|
|
2387
2423
|
},
|
|
2388
2424
|
"end": {
|
|
2389
|
-
"line":
|
|
2425
|
+
"line": 272,
|
|
2390
2426
|
"column": 20,
|
|
2391
|
-
"index":
|
|
2427
|
+
"index": 8931
|
|
2392
2428
|
}
|
|
2393
2429
|
},
|
|
2394
2430
|
"filepath": "src/components/datagrid/controls/keyboard_shortcuts.tsx"
|
|
@@ -2399,14 +2435,14 @@
|
|
|
2399
2435
|
"highlighting": "string",
|
|
2400
2436
|
"loc": {
|
|
2401
2437
|
"start": {
|
|
2402
|
-
"line":
|
|
2438
|
+
"line": 380,
|
|
2403
2439
|
"column": 22,
|
|
2404
|
-
"index":
|
|
2440
|
+
"index": 10405
|
|
2405
2441
|
},
|
|
2406
2442
|
"end": {
|
|
2407
|
-
"line":
|
|
2443
|
+
"line": 384,
|
|
2408
2444
|
"column": 5,
|
|
2409
|
-
"index":
|
|
2445
|
+
"index": 10577
|
|
2410
2446
|
}
|
|
2411
2447
|
},
|
|
2412
2448
|
"filepath": "src/components/datagrid/data_grid.tsx"
|
|
@@ -2417,14 +2453,14 @@
|
|
|
2417
2453
|
"highlighting": "string",
|
|
2418
2454
|
"loc": {
|
|
2419
2455
|
"start": {
|
|
2420
|
-
"line":
|
|
2456
|
+
"line": 385,
|
|
2421
2457
|
"column": 27,
|
|
2422
|
-
"index":
|
|
2458
|
+
"index": 10606
|
|
2423
2459
|
},
|
|
2424
2460
|
"end": {
|
|
2425
|
-
"line":
|
|
2461
|
+
"line": 389,
|
|
2426
2462
|
"column": 5,
|
|
2427
|
-
"index":
|
|
2463
|
+
"index": 10747
|
|
2428
2464
|
}
|
|
2429
2465
|
},
|
|
2430
2466
|
"filepath": "src/components/datagrid/data_grid.tsx"
|
|
@@ -2435,14 +2471,14 @@
|
|
|
2435
2471
|
"highlighting": "string",
|
|
2436
2472
|
"loc": {
|
|
2437
2473
|
"start": {
|
|
2438
|
-
"line":
|
|
2474
|
+
"line": 543,
|
|
2439
2475
|
"column": 18,
|
|
2440
|
-
"index":
|
|
2476
|
+
"index": 16933
|
|
2441
2477
|
},
|
|
2442
2478
|
"end": {
|
|
2443
|
-
"line":
|
|
2479
|
+
"line": 546,
|
|
2444
2480
|
"column": 20,
|
|
2445
|
-
"index":
|
|
2481
|
+
"index": 17086
|
|
2446
2482
|
}
|
|
2447
2483
|
},
|
|
2448
2484
|
"filepath": "src/components/datagrid/data_grid.tsx"
|
|
@@ -2453,17 +2489,17 @@
|
|
|
2453
2489
|
"highlighting": "string",
|
|
2454
2490
|
"loc": {
|
|
2455
2491
|
"start": {
|
|
2456
|
-
"line":
|
|
2492
|
+
"line": 51,
|
|
2457
2493
|
"column": 34,
|
|
2458
|
-
"index":
|
|
2494
|
+
"index": 1785
|
|
2459
2495
|
},
|
|
2460
2496
|
"end": {
|
|
2461
|
-
"line":
|
|
2497
|
+
"line": 55,
|
|
2462
2498
|
"column": 3,
|
|
2463
|
-
"index":
|
|
2499
|
+
"index": 1930
|
|
2464
2500
|
}
|
|
2465
2501
|
},
|
|
2466
|
-
"filepath": "src/components/datagrid/
|
|
2502
|
+
"filepath": "src/components/datagrid/pagination/data_grid_pagination.tsx"
|
|
2467
2503
|
},
|
|
2468
2504
|
{
|
|
2469
2505
|
"token": "euiDataGridPagination.paginationLabel",
|
|
@@ -2471,17 +2507,17 @@
|
|
|
2471
2507
|
"highlighting": "string",
|
|
2472
2508
|
"loc": {
|
|
2473
2509
|
"start": {
|
|
2474
|
-
"line":
|
|
2510
|
+
"line": 56,
|
|
2475
2511
|
"column": 26,
|
|
2476
|
-
"index":
|
|
2512
|
+
"index": 1958
|
|
2477
2513
|
},
|
|
2478
2514
|
"end": {
|
|
2479
|
-
"line":
|
|
2515
|
+
"line": 59,
|
|
2480
2516
|
"column": 3,
|
|
2481
|
-
"index":
|
|
2517
|
+
"index": 2054
|
|
2482
2518
|
}
|
|
2483
2519
|
},
|
|
2484
|
-
"filepath": "src/components/datagrid/
|
|
2520
|
+
"filepath": "src/components/datagrid/pagination/data_grid_pagination.tsx"
|
|
2485
2521
|
},
|
|
2486
2522
|
{
|
|
2487
2523
|
"token": "euiDataGridSchema.booleanSortTextAsc",
|