@elastic/eui 113.1.0 → 113.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/es/components/accordion/accordion_trigger/accordion_arrow.js +1 -1
- package/es/components/badge/badge.js +12 -6
- package/es/components/badge/badge.styles.js +55 -4
- package/es/components/badge/color_utils.js +39 -17
- package/es/components/basic_table/basic_table.a11y.js +1 -1
- package/es/components/basic_table/basic_table.js +82 -16
- package/es/components/basic_table/collapsed_item_actions.js +1 -1
- package/es/components/basic_table/in_memory_table.js +47 -2
- package/es/components/breadcrumbs/_breadcrumb_content.js +1 -1
- package/es/components/button/split_button/split_button.js +3 -3
- package/es/components/button/split_button/split_button_actions.js +2 -2
- package/es/components/code/code_block_copy.js +1 -1
- package/es/components/collapsible_nav_beta/collapsible_nav_item/collapsed/collapsed_nav_popover.js +1 -1
- package/es/components/combo_box/combo_box_input/combo_box_input.js +1 -1
- package/es/components/combo_box/combo_box_options_list/combo_box_options_list.js +1 -1
- package/es/components/context_menu/context_menu_item.js +1 -1
- package/es/components/context_menu/context_menu_panel.js +1 -1
- package/es/components/datagrid/body/cell/data_grid_cell_actions.js +1 -1
- package/es/components/datagrid/body/header/column_actions.js +1 -1
- package/es/components/datagrid/body/header/data_grid_header_cell.js +1 -1
- package/es/components/datagrid/controls/column_selector.js +2 -2
- package/es/components/datagrid/controls/column_sorting.js +1 -1
- package/es/components/datagrid/controls/column_sorting_draggable.js +1 -1
- package/es/components/datagrid/data_grid.a11y.js +1 -1
- package/es/components/datagrid/data_grid.stories.utils.js +3 -3
- package/es/components/datagrid/utils/data_grid_schema.js +1 -1
- package/es/components/date_picker/auto_refresh/auto_refresh.js +2 -2
- package/es/components/date_picker/react-datepicker/src/month_dropdown.js +1 -1
- package/es/components/date_picker/react-datepicker/src/month_year_dropdown.js +1 -1
- package/es/components/date_picker/react-datepicker/src/year_dropdown.js +1 -1
- package/es/components/date_picker/super_date_picker/quick_select_popover/quick_select.js +2 -2
- package/es/components/date_picker/super_date_picker/quick_select_popover/quick_select_popover.js +1 -1
- package/es/components/date_picker/super_date_picker/time_window_buttons.js +4 -4
- package/es/components/filter_group/filter_button.js +2 -2
- package/es/components/filter_group/filter_group.a11y.js +1 -1
- package/es/components/flyout/_flyout_overlay.js +5 -2
- package/es/components/flyout/flyout.component.js +329 -81
- package/es/components/flyout/flyout.styles.js +57 -31
- package/es/components/flyout/flyout_menu.js +2 -2
- package/es/components/flyout/manager/actions.js +27 -1
- package/es/components/flyout/manager/activity_stage.js +18 -7
- package/es/components/flyout/manager/flyout_child.js +18 -5
- package/es/components/flyout/manager/flyout_managed.js +29 -12
- package/es/components/flyout/manager/layout_mode.js +93 -33
- package/es/components/flyout/manager/reducer.js +24 -2
- package/es/components/flyout/manager/selectors.js +6 -0
- package/es/components/flyout/manager/store.js +6 -3
- package/es/components/flyout/use_flyout_resizable.js +64 -10
- package/es/components/flyout/use_flyout_z_index.js +5 -7
- package/es/components/form/checkbox/checkbox.js +1 -1
- package/es/components/form/field_password/field_password.js +1 -1
- package/es/components/form/field_search/field_search.js +1 -1
- package/es/components/form/file_picker/file_picker.js +1 -1
- package/es/components/form/form_control_layout/form_control_layout_icons.js +1 -1
- package/es/components/header/header.a11y.js +1 -1
- package/es/components/link/external_link_icon.js +1 -1
- package/es/components/list_group/pinnable_list_group/pinnable_list_group.js +1 -1
- package/es/components/markdown_editor/markdown_editor_toolbar.js +6 -6
- package/es/components/pagination/pagination_button_arrow.js +4 -4
- package/es/components/provider/component_defaults/component_defaults.js +2 -2
- package/es/components/search_bar/filters/field_value_selection_filter.js +1 -1
- package/es/components/selectable/selectable.a11y.js +1 -1
- package/es/components/selectable/selectable_list/selectable_list_item.js +1 -1
- package/es/components/side_nav/side_nav_item.js +1 -1
- package/es/components/table/_table_cell_content.js +1 -1
- package/es/components/table/_table_cell_content.styles.js +2 -1
- package/es/components/table/const.js +15 -0
- package/es/components/table/index.js +2 -1
- package/es/components/table/mobile/responsive_context.js +2 -5
- package/es/components/table/mobile/table_header_mobile.js +10 -3
- package/es/components/table/mobile/table_sort_mobile.js +1 -1
- package/es/components/table/table.js +44 -15
- package/es/components/table/table.styles.js +27 -9
- package/es/components/table/table_cells_shared.styles.js +41 -1
- package/es/components/table/table_footer_cell.js +53 -8
- package/es/components/table/table_header_cell.js +47 -9
- package/es/components/table/table_header_cell_checkbox.js +15 -7
- package/es/components/table/table_pagination/table_pagination.js +1 -1
- package/es/components/table/table_row_cell.js +61 -12
- package/es/components/table/types.js +1 -0
- package/es/components/table/utils.js +50 -24
- package/es/components/tree_view/tree_view_item.js +1 -1
- package/es/global_styling/mixins/_button.js +14 -10
- package/es/global_styling/mixins/_container_query.js +1 -1
- package/eui.d.ts +474 -183
- package/i18ntokens.json +1043 -1043
- package/lib/components/accordion/accordion_trigger/accordion_arrow.js +1 -1
- package/lib/components/badge/badge.js +11 -5
- package/lib/components/badge/badge.styles.js +54 -3
- package/lib/components/badge/color_utils.js +39 -17
- package/lib/components/basic_table/basic_table.a11y.js +1 -1
- package/lib/components/basic_table/basic_table.js +82 -16
- package/lib/components/basic_table/collapsed_item_actions.js +1 -1
- package/lib/components/basic_table/in_memory_table.js +47 -2
- package/lib/components/breadcrumbs/_breadcrumb_content.js +1 -1
- package/lib/components/button/split_button/split_button.js +2 -2
- package/lib/components/button/split_button/split_button_actions.js +2 -2
- package/lib/components/code/code_block_copy.js +1 -1
- package/lib/components/collapsible_nav_beta/collapsible_nav_item/collapsed/collapsed_nav_popover.js +1 -1
- package/lib/components/combo_box/combo_box_input/combo_box_input.js +1 -1
- package/lib/components/combo_box/combo_box_options_list/combo_box_options_list.js +1 -1
- package/lib/components/context_menu/context_menu_item.js +1 -1
- package/lib/components/context_menu/context_menu_panel.js +1 -1
- package/lib/components/datagrid/body/cell/data_grid_cell_actions.js +1 -1
- package/lib/components/datagrid/body/header/column_actions.js +1 -1
- package/lib/components/datagrid/body/header/data_grid_header_cell.js +1 -1
- package/lib/components/datagrid/controls/column_selector.js +2 -2
- package/lib/components/datagrid/controls/column_sorting.js +1 -1
- package/lib/components/datagrid/controls/column_sorting_draggable.js +1 -1
- package/lib/components/datagrid/data_grid.a11y.js +1 -1
- package/lib/components/datagrid/data_grid.stories.utils.js +3 -3
- package/lib/components/datagrid/utils/data_grid_schema.js +1 -1
- package/lib/components/date_picker/auto_refresh/auto_refresh.js +2 -2
- package/lib/components/date_picker/react-datepicker/src/month_dropdown.js +1 -1
- package/lib/components/date_picker/react-datepicker/src/month_year_dropdown.js +1 -1
- package/lib/components/date_picker/react-datepicker/src/year_dropdown.js +1 -1
- package/lib/components/date_picker/super_date_picker/quick_select_popover/quick_select.js +2 -2
- package/lib/components/date_picker/super_date_picker/quick_select_popover/quick_select_popover.js +1 -1
- package/lib/components/date_picker/super_date_picker/time_window_buttons.js +4 -4
- package/lib/components/filter_group/filter_button.js +2 -2
- package/lib/components/filter_group/filter_group.a11y.js +1 -1
- package/lib/components/flyout/_flyout_overlay.js +5 -2
- package/lib/components/flyout/flyout.component.js +327 -79
- package/lib/components/flyout/flyout.styles.js +58 -32
- package/lib/components/flyout/flyout_menu.js +2 -2
- package/lib/components/flyout/manager/actions.js +28 -2
- package/lib/components/flyout/manager/activity_stage.js +18 -7
- package/lib/components/flyout/manager/flyout_child.js +17 -4
- package/lib/components/flyout/manager/flyout_managed.js +26 -9
- package/lib/components/flyout/manager/layout_mode.js +92 -32
- package/lib/components/flyout/manager/reducer.js +23 -1
- package/lib/components/flyout/manager/selectors.js +7 -1
- package/lib/components/flyout/manager/store.js +5 -2
- package/lib/components/flyout/use_flyout_resizable.js +64 -10
- package/lib/components/flyout/use_flyout_z_index.js +5 -7
- package/lib/components/form/checkbox/checkbox.js +1 -1
- package/lib/components/form/field_password/field_password.js +1 -1
- package/lib/components/form/field_search/field_search.js +1 -1
- package/lib/components/form/file_picker/file_picker.js +1 -1
- package/lib/components/form/form_control_layout/form_control_layout_icons.js +1 -1
- package/lib/components/header/header.a11y.js +1 -1
- package/lib/components/link/external_link_icon.js +1 -1
- package/lib/components/list_group/pinnable_list_group/pinnable_list_group.js +1 -1
- package/lib/components/markdown_editor/markdown_editor_toolbar.js +6 -6
- package/lib/components/pagination/pagination_button_arrow.js +4 -4
- package/lib/components/provider/component_defaults/component_defaults.js +2 -2
- package/lib/components/search_bar/filters/field_value_selection_filter.js +1 -1
- package/lib/components/selectable/selectable.a11y.js +1 -1
- package/lib/components/selectable/selectable_list/selectable_list_item.js +1 -1
- package/lib/components/side_nav/side_nav_item.js +1 -1
- package/lib/components/table/_table_cell_content.js +1 -1
- package/lib/components/table/_table_cell_content.styles.js +2 -1
- package/lib/components/table/const.js +21 -0
- package/lib/components/table/index.js +8 -1
- package/lib/components/table/mobile/responsive_context.js +2 -5
- package/lib/components/table/mobile/table_header_mobile.js +10 -3
- package/lib/components/table/mobile/table_sort_mobile.js +1 -1
- package/lib/components/table/table.js +44 -15
- package/lib/components/table/table.styles.js +26 -8
- package/lib/components/table/table_cells_shared.styles.js +43 -3
- package/lib/components/table/table_footer_cell.js +50 -6
- package/lib/components/table/table_header_cell.js +45 -7
- package/lib/components/table/table_header_cell_checkbox.js +14 -6
- package/lib/components/table/table_pagination/table_pagination.js +1 -1
- package/lib/components/table/table_row_cell.js +60 -11
- package/lib/components/table/types.js +5 -0
- package/lib/components/table/utils.js +51 -25
- package/lib/components/tree_view/tree_view_item.js +1 -1
- package/lib/global_styling/mixins/_button.js +15 -11
- package/lib/global_styling/mixins/_container_query.js +1 -1
- package/optimize/es/components/accordion/accordion_trigger/accordion_arrow.js +1 -1
- package/optimize/es/components/badge/badge.js +12 -6
- package/optimize/es/components/badge/badge.styles.js +55 -4
- package/optimize/es/components/badge/color_utils.js +39 -17
- package/optimize/es/components/basic_table/basic_table.a11y.js +1 -1
- package/optimize/es/components/basic_table/basic_table.js +35 -14
- package/optimize/es/components/basic_table/collapsed_item_actions.js +1 -1
- package/optimize/es/components/breadcrumbs/_breadcrumb_content.js +1 -1
- package/optimize/es/components/button/split_button/split_button.js +3 -3
- package/optimize/es/components/button/split_button/split_button_actions.js +2 -2
- package/optimize/es/components/code/code_block_copy.js +1 -1
- package/optimize/es/components/collapsible_nav_beta/collapsible_nav_item/collapsed/collapsed_nav_popover.js +1 -1
- package/optimize/es/components/combo_box/combo_box_input/combo_box_input.js +1 -1
- package/optimize/es/components/combo_box/combo_box_options_list/combo_box_options_list.js +1 -1
- package/optimize/es/components/context_menu/context_menu_item.js +1 -1
- package/optimize/es/components/context_menu/context_menu_panel.js +1 -1
- package/optimize/es/components/datagrid/body/cell/data_grid_cell_actions.js +1 -1
- package/optimize/es/components/datagrid/body/header/column_actions.js +1 -1
- package/optimize/es/components/datagrid/body/header/data_grid_header_cell.js +1 -1
- package/optimize/es/components/datagrid/controls/column_selector.js +2 -2
- package/optimize/es/components/datagrid/controls/column_sorting.js +1 -1
- package/optimize/es/components/datagrid/controls/column_sorting_draggable.js +1 -1
- package/optimize/es/components/datagrid/data_grid.a11y.js +1 -1
- package/optimize/es/components/datagrid/data_grid.stories.utils.js +3 -3
- package/optimize/es/components/datagrid/utils/data_grid_schema.js +1 -1
- package/optimize/es/components/date_picker/auto_refresh/auto_refresh.js +2 -2
- package/optimize/es/components/date_picker/react-datepicker/src/month_dropdown.js +1 -1
- package/optimize/es/components/date_picker/react-datepicker/src/month_year_dropdown.js +1 -1
- package/optimize/es/components/date_picker/react-datepicker/src/year_dropdown.js +1 -1
- package/optimize/es/components/date_picker/super_date_picker/quick_select_popover/quick_select.js +2 -2
- package/optimize/es/components/date_picker/super_date_picker/quick_select_popover/quick_select_popover.js +1 -1
- package/optimize/es/components/date_picker/super_date_picker/time_window_buttons.js +4 -4
- package/optimize/es/components/filter_group/filter_button.js +1 -1
- package/optimize/es/components/filter_group/filter_group.a11y.js +1 -1
- package/optimize/es/components/flyout/_flyout_overlay.js +5 -2
- package/optimize/es/components/flyout/flyout.component.js +329 -81
- package/optimize/es/components/flyout/flyout.styles.js +57 -31
- package/optimize/es/components/flyout/flyout_menu.js +2 -2
- package/optimize/es/components/flyout/manager/actions.js +27 -1
- package/optimize/es/components/flyout/manager/activity_stage.js +18 -7
- package/optimize/es/components/flyout/manager/flyout_child.js +18 -5
- package/optimize/es/components/flyout/manager/flyout_managed.js +29 -12
- package/optimize/es/components/flyout/manager/layout_mode.js +93 -33
- package/optimize/es/components/flyout/manager/reducer.js +24 -2
- package/optimize/es/components/flyout/manager/selectors.js +6 -0
- package/optimize/es/components/flyout/manager/store.js +6 -3
- package/optimize/es/components/flyout/use_flyout_resizable.js +64 -10
- package/optimize/es/components/flyout/use_flyout_z_index.js +5 -7
- package/optimize/es/components/form/checkbox/checkbox.js +1 -1
- package/optimize/es/components/form/field_password/field_password.js +1 -1
- package/optimize/es/components/form/field_search/field_search.js +1 -1
- package/optimize/es/components/form/file_picker/file_picker.js +1 -1
- package/optimize/es/components/form/form_control_layout/form_control_layout_icons.js +1 -1
- package/optimize/es/components/header/header.a11y.js +1 -1
- package/optimize/es/components/link/external_link_icon.js +1 -1
- package/optimize/es/components/list_group/pinnable_list_group/pinnable_list_group.js +1 -1
- package/optimize/es/components/markdown_editor/markdown_editor_toolbar.js +6 -6
- package/optimize/es/components/pagination/pagination_button_arrow.js +4 -4
- package/optimize/es/components/search_bar/filters/field_value_selection_filter.js +1 -1
- package/optimize/es/components/selectable/selectable.a11y.js +1 -1
- package/optimize/es/components/selectable/selectable_list/selectable_list_item.js +1 -1
- package/optimize/es/components/side_nav/side_nav_item.js +1 -1
- package/optimize/es/components/table/_table_cell_content.js +1 -1
- package/optimize/es/components/table/_table_cell_content.styles.js +2 -1
- package/optimize/es/components/table/const.js +15 -0
- package/optimize/es/components/table/index.js +2 -1
- package/optimize/es/components/table/mobile/responsive_context.js +2 -5
- package/optimize/es/components/table/mobile/table_header_mobile.js +10 -3
- package/optimize/es/components/table/mobile/table_sort_mobile.js +1 -1
- package/optimize/es/components/table/table.js +34 -15
- package/optimize/es/components/table/table.styles.js +27 -9
- package/optimize/es/components/table/table_cells_shared.styles.js +41 -1
- package/optimize/es/components/table/table_footer_cell.js +21 -7
- package/optimize/es/components/table/table_header_cell.js +17 -7
- package/optimize/es/components/table/table_header_cell_checkbox.js +11 -5
- package/optimize/es/components/table/table_pagination/table_pagination.js +1 -1
- package/optimize/es/components/table/table_row_cell.js +28 -9
- package/optimize/es/components/table/types.js +1 -0
- package/optimize/es/components/table/utils.js +50 -20
- package/optimize/es/components/tree_view/tree_view_item.js +1 -1
- package/optimize/es/global_styling/mixins/_button.js +14 -10
- package/optimize/es/global_styling/mixins/_container_query.js +1 -1
- package/optimize/lib/components/accordion/accordion_trigger/accordion_arrow.js +1 -1
- package/optimize/lib/components/badge/badge.js +11 -5
- package/optimize/lib/components/badge/badge.styles.js +54 -3
- package/optimize/lib/components/badge/color_utils.js +39 -17
- package/optimize/lib/components/basic_table/basic_table.a11y.js +1 -1
- package/optimize/lib/components/basic_table/basic_table.js +35 -14
- package/optimize/lib/components/basic_table/collapsed_item_actions.js +1 -1
- package/optimize/lib/components/breadcrumbs/_breadcrumb_content.js +1 -1
- package/optimize/lib/components/button/split_button/split_button.js +2 -2
- package/optimize/lib/components/button/split_button/split_button_actions.js +2 -2
- package/optimize/lib/components/code/code_block_copy.js +1 -1
- package/optimize/lib/components/collapsible_nav_beta/collapsible_nav_item/collapsed/collapsed_nav_popover.js +1 -1
- package/optimize/lib/components/combo_box/combo_box_input/combo_box_input.js +1 -1
- package/optimize/lib/components/combo_box/combo_box_options_list/combo_box_options_list.js +1 -1
- package/optimize/lib/components/context_menu/context_menu_item.js +1 -1
- package/optimize/lib/components/context_menu/context_menu_panel.js +1 -1
- package/optimize/lib/components/datagrid/body/cell/data_grid_cell_actions.js +1 -1
- package/optimize/lib/components/datagrid/body/header/column_actions.js +1 -1
- package/optimize/lib/components/datagrid/body/header/data_grid_header_cell.js +1 -1
- package/optimize/lib/components/datagrid/controls/column_selector.js +2 -2
- package/optimize/lib/components/datagrid/controls/column_sorting.js +1 -1
- package/optimize/lib/components/datagrid/controls/column_sorting_draggable.js +1 -1
- package/optimize/lib/components/datagrid/data_grid.a11y.js +1 -1
- package/optimize/lib/components/datagrid/data_grid.stories.utils.js +3 -3
- package/optimize/lib/components/datagrid/utils/data_grid_schema.js +1 -1
- package/optimize/lib/components/date_picker/auto_refresh/auto_refresh.js +2 -2
- package/optimize/lib/components/date_picker/react-datepicker/src/month_dropdown.js +1 -1
- package/optimize/lib/components/date_picker/react-datepicker/src/month_year_dropdown.js +1 -1
- package/optimize/lib/components/date_picker/react-datepicker/src/year_dropdown.js +1 -1
- package/optimize/lib/components/date_picker/super_date_picker/quick_select_popover/quick_select.js +2 -2
- package/optimize/lib/components/date_picker/super_date_picker/quick_select_popover/quick_select_popover.js +1 -1
- package/optimize/lib/components/date_picker/super_date_picker/time_window_buttons.js +4 -4
- package/optimize/lib/components/filter_group/filter_button.js +1 -1
- package/optimize/lib/components/filter_group/filter_group.a11y.js +1 -1
- package/optimize/lib/components/flyout/_flyout_overlay.js +5 -2
- package/optimize/lib/components/flyout/flyout.component.js +327 -79
- package/optimize/lib/components/flyout/flyout.styles.js +58 -32
- package/optimize/lib/components/flyout/flyout_menu.js +2 -2
- package/optimize/lib/components/flyout/manager/actions.js +28 -2
- package/optimize/lib/components/flyout/manager/activity_stage.js +18 -7
- package/optimize/lib/components/flyout/manager/flyout_child.js +17 -4
- package/optimize/lib/components/flyout/manager/flyout_managed.js +26 -9
- package/optimize/lib/components/flyout/manager/layout_mode.js +92 -32
- package/optimize/lib/components/flyout/manager/reducer.js +23 -1
- package/optimize/lib/components/flyout/manager/selectors.js +7 -1
- package/optimize/lib/components/flyout/manager/store.js +5 -2
- package/optimize/lib/components/flyout/use_flyout_resizable.js +64 -10
- package/optimize/lib/components/flyout/use_flyout_z_index.js +5 -7
- package/optimize/lib/components/form/checkbox/checkbox.js +1 -1
- package/optimize/lib/components/form/field_password/field_password.js +1 -1
- package/optimize/lib/components/form/field_search/field_search.js +1 -1
- package/optimize/lib/components/form/file_picker/file_picker.js +1 -1
- package/optimize/lib/components/form/form_control_layout/form_control_layout_icons.js +1 -1
- package/optimize/lib/components/header/header.a11y.js +1 -1
- package/optimize/lib/components/link/external_link_icon.js +1 -1
- package/optimize/lib/components/list_group/pinnable_list_group/pinnable_list_group.js +1 -1
- package/optimize/lib/components/markdown_editor/markdown_editor_toolbar.js +6 -6
- package/optimize/lib/components/pagination/pagination_button_arrow.js +4 -4
- package/optimize/lib/components/search_bar/filters/field_value_selection_filter.js +1 -1
- package/optimize/lib/components/selectable/selectable.a11y.js +1 -1
- package/optimize/lib/components/selectable/selectable_list/selectable_list_item.js +1 -1
- package/optimize/lib/components/side_nav/side_nav_item.js +1 -1
- package/optimize/lib/components/table/_table_cell_content.js +1 -1
- package/optimize/lib/components/table/_table_cell_content.styles.js +2 -1
- package/optimize/lib/components/table/const.js +21 -0
- package/optimize/lib/components/table/index.js +8 -1
- package/optimize/lib/components/table/mobile/responsive_context.js +2 -5
- package/optimize/lib/components/table/mobile/table_header_mobile.js +10 -3
- package/optimize/lib/components/table/mobile/table_sort_mobile.js +1 -1
- package/optimize/lib/components/table/table.js +34 -15
- package/optimize/lib/components/table/table.styles.js +26 -8
- package/optimize/lib/components/table/table_cells_shared.styles.js +42 -2
- package/optimize/lib/components/table/table_footer_cell.js +19 -5
- package/optimize/lib/components/table/table_header_cell.js +15 -5
- package/optimize/lib/components/table/table_header_cell_checkbox.js +10 -4
- package/optimize/lib/components/table/table_pagination/table_pagination.js +1 -1
- package/optimize/lib/components/table/table_row_cell.js +27 -8
- package/optimize/lib/components/table/types.js +5 -0
- package/optimize/lib/components/table/utils.js +51 -22
- package/optimize/lib/components/tree_view/tree_view_item.js +1 -1
- package/optimize/lib/global_styling/mixins/_button.js +15 -11
- package/optimize/lib/global_styling/mixins/_container_query.js +1 -1
- package/package.json +1 -1
- package/test-env/components/accordion/accordion_trigger/accordion_arrow.js +1 -1
- package/test-env/components/badge/badge.js +11 -5
- package/test-env/components/badge/badge.styles.js +54 -3
- package/test-env/components/badge/color_utils.js +39 -17
- package/test-env/components/basic_table/basic_table.a11y.js +1 -1
- package/test-env/components/basic_table/basic_table.js +82 -16
- package/test-env/components/basic_table/collapsed_item_actions.js +1 -1
- package/test-env/components/basic_table/in_memory_table.js +47 -2
- package/test-env/components/breadcrumbs/_breadcrumb_content.js +1 -1
- package/test-env/components/button/split_button/split_button.js +2 -2
- package/test-env/components/button/split_button/split_button_actions.js +2 -2
- package/test-env/components/code/code_block_copy.js +1 -1
- package/test-env/components/collapsible_nav_beta/collapsible_nav_item/collapsed/collapsed_nav_popover.js +1 -1
- package/test-env/components/combo_box/combo_box_input/combo_box_input.js +1 -1
- package/test-env/components/combo_box/combo_box_options_list/combo_box_options_list.js +1 -1
- package/test-env/components/context_menu/context_menu_item.js +1 -1
- package/test-env/components/context_menu/context_menu_panel.js +1 -1
- package/test-env/components/datagrid/body/cell/data_grid_cell_actions.js +1 -1
- package/test-env/components/datagrid/body/header/column_actions.js +1 -1
- package/test-env/components/datagrid/body/header/data_grid_header_cell.js +1 -1
- package/test-env/components/datagrid/controls/column_selector.js +2 -2
- package/test-env/components/datagrid/controls/column_sorting.js +1 -1
- package/test-env/components/datagrid/controls/column_sorting_draggable.js +1 -1
- package/test-env/components/datagrid/data_grid.a11y.js +1 -1
- package/test-env/components/datagrid/data_grid.stories.utils.js +3 -3
- package/test-env/components/datagrid/utils/data_grid_schema.js +1 -1
- package/test-env/components/date_picker/auto_refresh/auto_refresh.js +2 -2
- package/test-env/components/date_picker/react-datepicker/src/month_dropdown.js +1 -1
- package/test-env/components/date_picker/react-datepicker/src/month_year_dropdown.js +1 -1
- package/test-env/components/date_picker/react-datepicker/src/year_dropdown.js +1 -1
- package/test-env/components/date_picker/super_date_picker/quick_select_popover/quick_select.js +2 -2
- package/test-env/components/date_picker/super_date_picker/quick_select_popover/quick_select_popover.js +1 -1
- package/test-env/components/date_picker/super_date_picker/time_window_buttons.js +4 -4
- package/test-env/components/filter_group/filter_button.js +2 -2
- package/test-env/components/filter_group/filter_group.a11y.js +1 -1
- package/test-env/components/flyout/_flyout_overlay.js +5 -2
- package/test-env/components/flyout/flyout.component.js +327 -79
- package/test-env/components/flyout/flyout.styles.js +58 -32
- package/test-env/components/flyout/flyout_menu.js +2 -2
- package/test-env/components/flyout/manager/actions.js +28 -2
- package/test-env/components/flyout/manager/activity_stage.js +18 -7
- package/test-env/components/flyout/manager/flyout_child.js +17 -4
- package/test-env/components/flyout/manager/flyout_managed.js +26 -9
- package/test-env/components/flyout/manager/layout_mode.js +92 -32
- package/test-env/components/flyout/manager/reducer.js +23 -1
- package/test-env/components/flyout/manager/selectors.js +7 -1
- package/test-env/components/flyout/manager/store.js +5 -2
- package/test-env/components/flyout/use_flyout_resizable.js +64 -10
- package/test-env/components/flyout/use_flyout_z_index.js +5 -7
- package/test-env/components/form/checkbox/checkbox.js +1 -1
- package/test-env/components/form/field_password/field_password.js +1 -1
- package/test-env/components/form/field_search/field_search.js +1 -1
- package/test-env/components/form/file_picker/file_picker.js +1 -1
- package/test-env/components/form/form_control_layout/form_control_layout_icons.js +1 -1
- package/test-env/components/header/header.a11y.js +1 -1
- package/test-env/components/link/external_link_icon.js +1 -1
- package/test-env/components/list_group/pinnable_list_group/pinnable_list_group.js +1 -1
- package/test-env/components/markdown_editor/markdown_editor_toolbar.js +6 -6
- package/test-env/components/pagination/pagination_button_arrow.js +4 -4
- package/test-env/components/provider/component_defaults/component_defaults.js +2 -2
- package/test-env/components/search_bar/filters/field_value_selection_filter.js +1 -1
- package/test-env/components/selectable/selectable.a11y.js +1 -1
- package/test-env/components/selectable/selectable_list/selectable_list_item.js +1 -1
- package/test-env/components/side_nav/side_nav_item.js +1 -1
- package/test-env/components/table/_table_cell_content.js +1 -1
- package/test-env/components/table/_table_cell_content.styles.js +2 -1
- package/test-env/components/table/const.js +21 -0
- package/test-env/components/table/index.js +8 -1
- package/test-env/components/table/mobile/responsive_context.js +2 -5
- package/test-env/components/table/mobile/table_header_mobile.js +10 -3
- package/test-env/components/table/mobile/table_sort_mobile.js +1 -1
- package/test-env/components/table/table.js +44 -15
- package/test-env/components/table/table.styles.js +26 -8
- package/test-env/components/table/table_cells_shared.styles.js +42 -2
- package/test-env/components/table/table_footer_cell.js +48 -6
- package/test-env/components/table/table_header_cell.js +45 -7
- package/test-env/components/table/table_header_cell_checkbox.js +14 -6
- package/test-env/components/table/table_pagination/table_pagination.js +1 -1
- package/test-env/components/table/table_row_cell.js +60 -11
- package/test-env/components/table/types.js +5 -0
- package/test-env/components/table/utils.js +51 -22
- package/test-env/components/tree_view/tree_view_item.js +1 -1
- package/test-env/global_styling/mixins/_button.js +15 -11
- package/test-env/global_styling/mixins/_container_query.js +1 -1
package/i18ntokens.json
CHANGED
|
@@ -17,24 +17,6 @@
|
|
|
17
17
|
},
|
|
18
18
|
"filepath": "src/components/tree_view/tree_view.tsx"
|
|
19
19
|
},
|
|
20
|
-
{
|
|
21
|
-
"token": "euiIconTip.defaultAriaLabel",
|
|
22
|
-
"defString": "Info",
|
|
23
|
-
"highlighting": "string",
|
|
24
|
-
"loc": {
|
|
25
|
-
"start": {
|
|
26
|
-
"line": 63,
|
|
27
|
-
"column": 27,
|
|
28
|
-
"index": 1811
|
|
29
|
-
},
|
|
30
|
-
"end": {
|
|
31
|
-
"line": 63,
|
|
32
|
-
"column": 76,
|
|
33
|
-
"index": 1860
|
|
34
|
-
}
|
|
35
|
-
},
|
|
36
|
-
"filepath": "src/components/tool_tip/icon_tip.tsx"
|
|
37
|
-
},
|
|
38
20
|
{
|
|
39
21
|
"token": "euiTourStepIndicator.isActive",
|
|
40
22
|
"defString": "active",
|
|
@@ -161,6 +143,24 @@
|
|
|
161
143
|
},
|
|
162
144
|
"filepath": "src/components/tour/_tour_footer.tsx"
|
|
163
145
|
},
|
|
146
|
+
{
|
|
147
|
+
"token": "euiIconTip.defaultAriaLabel",
|
|
148
|
+
"defString": "Info",
|
|
149
|
+
"highlighting": "string",
|
|
150
|
+
"loc": {
|
|
151
|
+
"start": {
|
|
152
|
+
"line": 63,
|
|
153
|
+
"column": 27,
|
|
154
|
+
"index": 1811
|
|
155
|
+
},
|
|
156
|
+
"end": {
|
|
157
|
+
"line": 63,
|
|
158
|
+
"column": 76,
|
|
159
|
+
"index": 1860
|
|
160
|
+
}
|
|
161
|
+
},
|
|
162
|
+
"filepath": "src/components/tool_tip/icon_tip.tsx"
|
|
163
|
+
},
|
|
164
164
|
{
|
|
165
165
|
"token": "euiToast.newNotification",
|
|
166
166
|
"defString": "A new notification appears",
|
|
@@ -257,18 +257,36 @@
|
|
|
257
257
|
"highlighting": "string",
|
|
258
258
|
"loc": {
|
|
259
259
|
"start": {
|
|
260
|
-
"line":
|
|
260
|
+
"line": 139,
|
|
261
261
|
"column": 10,
|
|
262
|
-
"index":
|
|
262
|
+
"index": 4414
|
|
263
263
|
},
|
|
264
264
|
"end": {
|
|
265
|
-
"line":
|
|
265
|
+
"line": 143,
|
|
266
266
|
"column": 11,
|
|
267
|
-
"index":
|
|
267
|
+
"index": 4588
|
|
268
268
|
}
|
|
269
269
|
},
|
|
270
270
|
"filepath": "src/components/table/table_header_cell.tsx"
|
|
271
271
|
},
|
|
272
|
+
{
|
|
273
|
+
"token": "euiStat.loadingText",
|
|
274
|
+
"defString": "Statistic is loading",
|
|
275
|
+
"highlighting": "string",
|
|
276
|
+
"loc": {
|
|
277
|
+
"start": {
|
|
278
|
+
"line": 95,
|
|
279
|
+
"column": 32,
|
|
280
|
+
"index": 2317
|
|
281
|
+
},
|
|
282
|
+
"end": {
|
|
283
|
+
"line": 98,
|
|
284
|
+
"column": 3,
|
|
285
|
+
"index": 2386
|
|
286
|
+
}
|
|
287
|
+
},
|
|
288
|
+
"filepath": "src/components/stat/stat.tsx"
|
|
289
|
+
},
|
|
272
290
|
{
|
|
273
291
|
"token": "euiStepStrings.step",
|
|
274
292
|
"defString": "Step {number}: {title}",
|
|
@@ -557,24 +575,6 @@
|
|
|
557
575
|
},
|
|
558
576
|
"filepath": "src/components/steps/step_strings.tsx"
|
|
559
577
|
},
|
|
560
|
-
{
|
|
561
|
-
"token": "euiStat.loadingText",
|
|
562
|
-
"defString": "Statistic is loading",
|
|
563
|
-
"highlighting": "string",
|
|
564
|
-
"loc": {
|
|
565
|
-
"start": {
|
|
566
|
-
"line": 95,
|
|
567
|
-
"column": 32,
|
|
568
|
-
"index": 2317
|
|
569
|
-
},
|
|
570
|
-
"end": {
|
|
571
|
-
"line": 98,
|
|
572
|
-
"column": 3,
|
|
573
|
-
"index": 2386
|
|
574
|
-
}
|
|
575
|
-
},
|
|
576
|
-
"filepath": "src/components/stat/stat.tsx"
|
|
577
|
-
},
|
|
578
578
|
{
|
|
579
579
|
"token": "euiSkeletonLoading.loadedAriaText",
|
|
580
580
|
"defString": "Loaded {contentAriaLabel}",
|
|
@@ -611,78 +611,6 @@
|
|
|
611
611
|
},
|
|
612
612
|
"filepath": "src/components/skeleton/skeleton_loading.tsx"
|
|
613
613
|
},
|
|
614
|
-
{
|
|
615
|
-
"token": "euiSideNav.mobileToggleAriaLabel",
|
|
616
|
-
"defString": "Toggle navigation",
|
|
617
|
-
"highlighting": "string",
|
|
618
|
-
"loc": {
|
|
619
|
-
"start": {
|
|
620
|
-
"line": 208,
|
|
621
|
-
"column": 16,
|
|
622
|
-
"index": 6318
|
|
623
|
-
},
|
|
624
|
-
"end": {
|
|
625
|
-
"line": 211,
|
|
626
|
-
"column": 17,
|
|
627
|
-
"index": 6449
|
|
628
|
-
}
|
|
629
|
-
},
|
|
630
|
-
"filepath": "src/components/side_nav/side_nav.tsx"
|
|
631
|
-
},
|
|
632
|
-
{
|
|
633
|
-
"token": "euiSearchBox.placeholder",
|
|
634
|
-
"defString": "Search...",
|
|
635
|
-
"highlighting": "string",
|
|
636
|
-
"loc": {
|
|
637
|
-
"start": {
|
|
638
|
-
"line": 48,
|
|
639
|
-
"column": 29,
|
|
640
|
-
"index": 1388
|
|
641
|
-
},
|
|
642
|
-
"end": {
|
|
643
|
-
"line": 51,
|
|
644
|
-
"column": 3,
|
|
645
|
-
"index": 1451
|
|
646
|
-
}
|
|
647
|
-
},
|
|
648
|
-
"filepath": "src/components/search_bar/search_box.tsx"
|
|
649
|
-
},
|
|
650
|
-
{
|
|
651
|
-
"token": "euiSearchBox.incrementalAriaLabel",
|
|
652
|
-
"defString": "This is a search bar. As you type, the results lower in the page will automatically filter.",
|
|
653
|
-
"highlighting": "string",
|
|
654
|
-
"loc": {
|
|
655
|
-
"start": {
|
|
656
|
-
"line": 52,
|
|
657
|
-
"column": 31,
|
|
658
|
-
"index": 1484
|
|
659
|
-
},
|
|
660
|
-
"end": {
|
|
661
|
-
"line": 55,
|
|
662
|
-
"column": 3,
|
|
663
|
-
"index": 1638
|
|
664
|
-
}
|
|
665
|
-
},
|
|
666
|
-
"filepath": "src/components/search_bar/search_box.tsx"
|
|
667
|
-
},
|
|
668
|
-
{
|
|
669
|
-
"token": "euiSearchBox.ariaLabel",
|
|
670
|
-
"defString": "This is a search bar. After typing your query, hit enter to filter the results lower in the page.",
|
|
671
|
-
"highlighting": "string",
|
|
672
|
-
"loc": {
|
|
673
|
-
"start": {
|
|
674
|
-
"line": 56,
|
|
675
|
-
"column": 25,
|
|
676
|
-
"index": 1665
|
|
677
|
-
},
|
|
678
|
-
"end": {
|
|
679
|
-
"line": 59,
|
|
680
|
-
"column": 3,
|
|
681
|
-
"index": 1814
|
|
682
|
-
}
|
|
683
|
-
},
|
|
684
|
-
"filepath": "src/components/search_bar/search_box.tsx"
|
|
685
|
-
},
|
|
686
614
|
{
|
|
687
615
|
"token": "euiSelectable.loadingOptions",
|
|
688
616
|
"defString": "Loading options",
|
|
@@ -809,6 +737,78 @@
|
|
|
809
737
|
},
|
|
810
738
|
"filepath": "src/components/selectable/selectable.tsx"
|
|
811
739
|
},
|
|
740
|
+
{
|
|
741
|
+
"token": "euiSideNav.mobileToggleAriaLabel",
|
|
742
|
+
"defString": "Toggle navigation",
|
|
743
|
+
"highlighting": "string",
|
|
744
|
+
"loc": {
|
|
745
|
+
"start": {
|
|
746
|
+
"line": 208,
|
|
747
|
+
"column": 16,
|
|
748
|
+
"index": 6318
|
|
749
|
+
},
|
|
750
|
+
"end": {
|
|
751
|
+
"line": 211,
|
|
752
|
+
"column": 17,
|
|
753
|
+
"index": 6449
|
|
754
|
+
}
|
|
755
|
+
},
|
|
756
|
+
"filepath": "src/components/side_nav/side_nav.tsx"
|
|
757
|
+
},
|
|
758
|
+
{
|
|
759
|
+
"token": "euiSearchBox.placeholder",
|
|
760
|
+
"defString": "Search...",
|
|
761
|
+
"highlighting": "string",
|
|
762
|
+
"loc": {
|
|
763
|
+
"start": {
|
|
764
|
+
"line": 48,
|
|
765
|
+
"column": 29,
|
|
766
|
+
"index": 1388
|
|
767
|
+
},
|
|
768
|
+
"end": {
|
|
769
|
+
"line": 51,
|
|
770
|
+
"column": 3,
|
|
771
|
+
"index": 1451
|
|
772
|
+
}
|
|
773
|
+
},
|
|
774
|
+
"filepath": "src/components/search_bar/search_box.tsx"
|
|
775
|
+
},
|
|
776
|
+
{
|
|
777
|
+
"token": "euiSearchBox.incrementalAriaLabel",
|
|
778
|
+
"defString": "This is a search bar. As you type, the results lower in the page will automatically filter.",
|
|
779
|
+
"highlighting": "string",
|
|
780
|
+
"loc": {
|
|
781
|
+
"start": {
|
|
782
|
+
"line": 52,
|
|
783
|
+
"column": 31,
|
|
784
|
+
"index": 1484
|
|
785
|
+
},
|
|
786
|
+
"end": {
|
|
787
|
+
"line": 55,
|
|
788
|
+
"column": 3,
|
|
789
|
+
"index": 1638
|
|
790
|
+
}
|
|
791
|
+
},
|
|
792
|
+
"filepath": "src/components/search_bar/search_box.tsx"
|
|
793
|
+
},
|
|
794
|
+
{
|
|
795
|
+
"token": "euiSearchBox.ariaLabel",
|
|
796
|
+
"defString": "This is a search bar. After typing your query, hit enter to filter the results lower in the page.",
|
|
797
|
+
"highlighting": "string",
|
|
798
|
+
"loc": {
|
|
799
|
+
"start": {
|
|
800
|
+
"line": 56,
|
|
801
|
+
"column": 25,
|
|
802
|
+
"index": 1665
|
|
803
|
+
},
|
|
804
|
+
"end": {
|
|
805
|
+
"line": 59,
|
|
806
|
+
"column": 3,
|
|
807
|
+
"index": 1814
|
|
808
|
+
}
|
|
809
|
+
},
|
|
810
|
+
"filepath": "src/components/search_bar/search_box.tsx"
|
|
811
|
+
},
|
|
812
812
|
{
|
|
813
813
|
"token": "euiResizablePanel.toggleButtonAriaLabel",
|
|
814
814
|
"defString": "Press to toggle this panel",
|
|
@@ -887,125 +887,125 @@
|
|
|
887
887
|
"highlighting": "string",
|
|
888
888
|
"loc": {
|
|
889
889
|
"start": {
|
|
890
|
-
"line":
|
|
890
|
+
"line": 762,
|
|
891
891
|
"column": 16,
|
|
892
|
-
"index":
|
|
892
|
+
"index": 22865
|
|
893
893
|
},
|
|
894
894
|
"end": {
|
|
895
|
-
"line":
|
|
895
|
+
"line": 765,
|
|
896
896
|
"column": 18,
|
|
897
|
-
"index":
|
|
897
|
+
"index": 23059
|
|
898
898
|
}
|
|
899
899
|
},
|
|
900
900
|
"filepath": "src/components/popover/popover.tsx"
|
|
901
901
|
},
|
|
902
902
|
{
|
|
903
|
-
"token": "
|
|
904
|
-
"defString": "
|
|
903
|
+
"token": "euiPaginationButtonArrow.firstPage",
|
|
904
|
+
"defString": "First page",
|
|
905
905
|
"highlighting": "string",
|
|
906
906
|
"loc": {
|
|
907
907
|
"start": {
|
|
908
|
-
"line":
|
|
909
|
-
"column":
|
|
910
|
-
"index":
|
|
908
|
+
"line": 48,
|
|
909
|
+
"column": 11,
|
|
910
|
+
"index": 1414
|
|
911
911
|
},
|
|
912
912
|
"end": {
|
|
913
|
-
"line":
|
|
914
|
-
"column":
|
|
915
|
-
"index":
|
|
913
|
+
"line": 48,
|
|
914
|
+
"column": 73,
|
|
915
|
+
"index": 1476
|
|
916
916
|
}
|
|
917
917
|
},
|
|
918
|
-
"filepath": "src/components/pagination/
|
|
918
|
+
"filepath": "src/components/pagination/pagination_button_arrow.tsx"
|
|
919
919
|
},
|
|
920
920
|
{
|
|
921
|
-
"token": "
|
|
922
|
-
"defString": "
|
|
921
|
+
"token": "euiPaginationButtonArrow.previousPage",
|
|
922
|
+
"defString": "Previous page",
|
|
923
923
|
"highlighting": "string",
|
|
924
924
|
"loc": {
|
|
925
925
|
"start": {
|
|
926
|
-
"line":
|
|
927
|
-
"column":
|
|
928
|
-
"index":
|
|
926
|
+
"line": 49,
|
|
927
|
+
"column": 14,
|
|
928
|
+
"index": 1492
|
|
929
929
|
},
|
|
930
930
|
"end": {
|
|
931
|
-
"line":
|
|
932
|
-
"column":
|
|
933
|
-
"index":
|
|
931
|
+
"line": 52,
|
|
932
|
+
"column": 5,
|
|
933
|
+
"index": 1578
|
|
934
934
|
}
|
|
935
935
|
},
|
|
936
|
-
"filepath": "src/components/pagination/
|
|
936
|
+
"filepath": "src/components/pagination/pagination_button_arrow.tsx"
|
|
937
937
|
},
|
|
938
938
|
{
|
|
939
|
-
"token": "euiPaginationButtonArrow.
|
|
940
|
-
"defString": "
|
|
941
|
-
"highlighting": "string",
|
|
939
|
+
"token": "euiPaginationButtonArrow.nextPage",
|
|
940
|
+
"defString": "Next page",
|
|
941
|
+
"highlighting": "string",
|
|
942
942
|
"loc": {
|
|
943
943
|
"start": {
|
|
944
|
-
"line":
|
|
945
|
-
"column":
|
|
946
|
-
"index":
|
|
944
|
+
"line": 53,
|
|
945
|
+
"column": 10,
|
|
946
|
+
"index": 1590
|
|
947
947
|
},
|
|
948
948
|
"end": {
|
|
949
|
-
"line":
|
|
950
|
-
"column":
|
|
951
|
-
"index":
|
|
949
|
+
"line": 53,
|
|
950
|
+
"column": 70,
|
|
951
|
+
"index": 1650
|
|
952
952
|
}
|
|
953
953
|
},
|
|
954
954
|
"filepath": "src/components/pagination/pagination_button_arrow.tsx"
|
|
955
955
|
},
|
|
956
956
|
{
|
|
957
|
-
"token": "euiPaginationButtonArrow.
|
|
958
|
-
"defString": "
|
|
957
|
+
"token": "euiPaginationButtonArrow.lastPage",
|
|
958
|
+
"defString": "Last page",
|
|
959
959
|
"highlighting": "string",
|
|
960
960
|
"loc": {
|
|
961
961
|
"start": {
|
|
962
|
-
"line":
|
|
963
|
-
"column":
|
|
964
|
-
"index":
|
|
962
|
+
"line": 54,
|
|
963
|
+
"column": 10,
|
|
964
|
+
"index": 1662
|
|
965
965
|
},
|
|
966
966
|
"end": {
|
|
967
|
-
"line":
|
|
968
|
-
"column":
|
|
969
|
-
"index":
|
|
967
|
+
"line": 54,
|
|
968
|
+
"column": 70,
|
|
969
|
+
"index": 1722
|
|
970
970
|
}
|
|
971
971
|
},
|
|
972
972
|
"filepath": "src/components/pagination/pagination_button_arrow.tsx"
|
|
973
973
|
},
|
|
974
974
|
{
|
|
975
|
-
"token": "
|
|
976
|
-
"defString": "
|
|
975
|
+
"token": "euiPaginationButton.longPageString",
|
|
976
|
+
"defString": "Page {page} of {totalPages}",
|
|
977
977
|
"highlighting": "string",
|
|
978
978
|
"loc": {
|
|
979
979
|
"start": {
|
|
980
|
-
"line":
|
|
981
|
-
"column":
|
|
982
|
-
"index":
|
|
980
|
+
"line": 66,
|
|
981
|
+
"column": 4,
|
|
982
|
+
"index": 1920
|
|
983
983
|
},
|
|
984
984
|
"end": {
|
|
985
|
-
"line":
|
|
986
|
-
"column":
|
|
987
|
-
"index":
|
|
985
|
+
"line": 70,
|
|
986
|
+
"column": 5,
|
|
987
|
+
"index": 2087
|
|
988
988
|
}
|
|
989
989
|
},
|
|
990
|
-
"filepath": "src/components/pagination/
|
|
990
|
+
"filepath": "src/components/pagination/pagination_button.tsx"
|
|
991
991
|
},
|
|
992
992
|
{
|
|
993
|
-
"token": "
|
|
994
|
-
"defString": "
|
|
993
|
+
"token": "euiPaginationButton.shortPageString",
|
|
994
|
+
"defString": "Page {page}",
|
|
995
995
|
"highlighting": "string",
|
|
996
996
|
"loc": {
|
|
997
997
|
"start": {
|
|
998
|
-
"line":
|
|
999
|
-
"column":
|
|
1000
|
-
"index":
|
|
998
|
+
"line": 72,
|
|
999
|
+
"column": 8,
|
|
1000
|
+
"index": 2133
|
|
1001
1001
|
},
|
|
1002
1002
|
"end": {
|
|
1003
|
-
"line":
|
|
1004
|
-
"column":
|
|
1005
|
-
"index":
|
|
1003
|
+
"line": 76,
|
|
1004
|
+
"column": 9,
|
|
1005
|
+
"index": 2277
|
|
1006
1006
|
}
|
|
1007
1007
|
},
|
|
1008
|
-
"filepath": "src/components/pagination/
|
|
1008
|
+
"filepath": "src/components/pagination/pagination_button.tsx"
|
|
1009
1009
|
},
|
|
1010
1010
|
{
|
|
1011
1011
|
"token": "euiPagination.pageOfTotalCompressed",
|
|
@@ -1151,42 +1151,6 @@
|
|
|
1151
1151
|
},
|
|
1152
1152
|
"filepath": "src/components/pagination/pagination.tsx"
|
|
1153
1153
|
},
|
|
1154
|
-
{
|
|
1155
|
-
"token": "euiModal.screenReaderModalDialog",
|
|
1156
|
-
"defString": "You are in a modal dialog. Press Escape or tap/click outside the dialog on the shadowed overlay to close.",
|
|
1157
|
-
"highlighting": "string",
|
|
1158
|
-
"loc": {
|
|
1159
|
-
"start": {
|
|
1160
|
-
"line": 133,
|
|
1161
|
-
"column": 8,
|
|
1162
|
-
"index": 4057
|
|
1163
|
-
},
|
|
1164
|
-
"end": {
|
|
1165
|
-
"line": 136,
|
|
1166
|
-
"column": 10,
|
|
1167
|
-
"index": 4253
|
|
1168
|
-
}
|
|
1169
|
-
},
|
|
1170
|
-
"filepath": "src/components/modal/modal.tsx"
|
|
1171
|
-
},
|
|
1172
|
-
{
|
|
1173
|
-
"token": "euiModal.closeModal",
|
|
1174
|
-
"defString": "Closes this modal window",
|
|
1175
|
-
"highlighting": "string",
|
|
1176
|
-
"loc": {
|
|
1177
|
-
"start": {
|
|
1178
|
-
"line": 163,
|
|
1179
|
-
"column": 10,
|
|
1180
|
-
"index": 4871
|
|
1181
|
-
},
|
|
1182
|
-
"end": {
|
|
1183
|
-
"line": 166,
|
|
1184
|
-
"column": 11,
|
|
1185
|
-
"index": 4978
|
|
1186
|
-
}
|
|
1187
|
-
},
|
|
1188
|
-
"filepath": "src/components/modal/modal.tsx"
|
|
1189
|
-
},
|
|
1190
1154
|
{
|
|
1191
1155
|
"token": "euiMark.highlightStart",
|
|
1192
1156
|
"defString": "highlight start",
|
|
@@ -1223,20 +1187,56 @@
|
|
|
1223
1187
|
},
|
|
1224
1188
|
"filepath": "src/components/mark/mark.tsx"
|
|
1225
1189
|
},
|
|
1190
|
+
{
|
|
1191
|
+
"token": "euiModal.screenReaderModalDialog",
|
|
1192
|
+
"defString": "You are in a modal dialog. Press Escape or tap/click outside the dialog on the shadowed overlay to close.",
|
|
1193
|
+
"highlighting": "string",
|
|
1194
|
+
"loc": {
|
|
1195
|
+
"start": {
|
|
1196
|
+
"line": 133,
|
|
1197
|
+
"column": 8,
|
|
1198
|
+
"index": 4057
|
|
1199
|
+
},
|
|
1200
|
+
"end": {
|
|
1201
|
+
"line": 136,
|
|
1202
|
+
"column": 10,
|
|
1203
|
+
"index": 4253
|
|
1204
|
+
}
|
|
1205
|
+
},
|
|
1206
|
+
"filepath": "src/components/modal/modal.tsx"
|
|
1207
|
+
},
|
|
1208
|
+
{
|
|
1209
|
+
"token": "euiModal.closeModal",
|
|
1210
|
+
"defString": "Closes this modal window",
|
|
1211
|
+
"highlighting": "string",
|
|
1212
|
+
"loc": {
|
|
1213
|
+
"start": {
|
|
1214
|
+
"line": 163,
|
|
1215
|
+
"column": 10,
|
|
1216
|
+
"index": 4871
|
|
1217
|
+
},
|
|
1218
|
+
"end": {
|
|
1219
|
+
"line": 166,
|
|
1220
|
+
"column": 11,
|
|
1221
|
+
"index": 4978
|
|
1222
|
+
}
|
|
1223
|
+
},
|
|
1224
|
+
"filepath": "src/components/modal/modal.tsx"
|
|
1225
|
+
},
|
|
1226
1226
|
{
|
|
1227
1227
|
"token": "euiMarkdownEditorToolbar.editor",
|
|
1228
1228
|
"defString": "Editor",
|
|
1229
1229
|
"highlighting": "string",
|
|
1230
1230
|
"loc": {
|
|
1231
1231
|
"start": {
|
|
1232
|
-
"line":
|
|
1232
|
+
"line": 289,
|
|
1233
1233
|
"column": 8,
|
|
1234
|
-
"index":
|
|
1234
|
+
"index": 7776
|
|
1235
1235
|
},
|
|
1236
1236
|
"end": {
|
|
1237
|
-
"line":
|
|
1237
|
+
"line": 289,
|
|
1238
1238
|
"column": 76,
|
|
1239
|
-
"index":
|
|
1239
|
+
"index": 7844
|
|
1240
1240
|
}
|
|
1241
1241
|
},
|
|
1242
1242
|
"filepath": "src/components/markdown_editor/markdown_editor_toolbar.tsx"
|
|
@@ -1247,14 +1247,14 @@
|
|
|
1247
1247
|
"highlighting": "string",
|
|
1248
1248
|
"loc": {
|
|
1249
1249
|
"start": {
|
|
1250
|
-
"line":
|
|
1250
|
+
"line": 291,
|
|
1251
1251
|
"column": 8,
|
|
1252
|
-
"index":
|
|
1252
|
+
"index": 7865
|
|
1253
1253
|
},
|
|
1254
1254
|
"end": {
|
|
1255
|
-
"line":
|
|
1255
|
+
"line": 294,
|
|
1256
1256
|
"column": 10,
|
|
1257
|
-
"index":
|
|
1257
|
+
"index": 7971
|
|
1258
1258
|
}
|
|
1259
1259
|
},
|
|
1260
1260
|
"filepath": "src/components/markdown_editor/markdown_editor_toolbar.tsx"
|
|
@@ -1519,12 +1519,12 @@
|
|
|
1519
1519
|
"start": {
|
|
1520
1520
|
"line": 58,
|
|
1521
1521
|
"column": 12,
|
|
1522
|
-
"index":
|
|
1522
|
+
"index": 1791
|
|
1523
1523
|
},
|
|
1524
1524
|
"end": {
|
|
1525
1525
|
"line": 61,
|
|
1526
1526
|
"column": 14,
|
|
1527
|
-
"index":
|
|
1527
|
+
"index": 1952
|
|
1528
1528
|
}
|
|
1529
1529
|
},
|
|
1530
1530
|
"filepath": "src/components/link/external_link_icon.tsx"
|
|
@@ -1537,12 +1537,12 @@
|
|
|
1537
1537
|
"start": {
|
|
1538
1538
|
"line": 67,
|
|
1539
1539
|
"column": 12,
|
|
1540
|
-
"index":
|
|
1540
|
+
"index": 2073
|
|
1541
1541
|
},
|
|
1542
1542
|
"end": {
|
|
1543
1543
|
"line": 70,
|
|
1544
1544
|
"column": 14,
|
|
1545
|
-
"index":
|
|
1545
|
+
"index": 2209
|
|
1546
1546
|
}
|
|
1547
1547
|
},
|
|
1548
1548
|
"filepath": "src/components/link/external_link_icon.tsx"
|
|
@@ -1681,12 +1681,12 @@
|
|
|
1681
1681
|
"start": {
|
|
1682
1682
|
"line": 175,
|
|
1683
1683
|
"column": 27,
|
|
1684
|
-
"index":
|
|
1684
|
+
"index": 5404
|
|
1685
1685
|
},
|
|
1686
1686
|
"end": {
|
|
1687
1687
|
"line": 179,
|
|
1688
1688
|
"column": 3,
|
|
1689
|
-
"index":
|
|
1689
|
+
"index": 5525
|
|
1690
1690
|
}
|
|
1691
1691
|
},
|
|
1692
1692
|
"filepath": "src/components/filter_group/filter_button.tsx"
|
|
@@ -1699,12 +1699,12 @@
|
|
|
1699
1699
|
"start": {
|
|
1700
1700
|
"line": 180,
|
|
1701
1701
|
"column": 30,
|
|
1702
|
-
"index":
|
|
1702
|
+
"index": 5557
|
|
1703
1703
|
},
|
|
1704
1704
|
"end": {
|
|
1705
1705
|
"line": 184,
|
|
1706
1706
|
"column": 3,
|
|
1707
|
-
"index":
|
|
1707
|
+
"index": 5684
|
|
1708
1708
|
}
|
|
1709
1709
|
},
|
|
1710
1710
|
"filepath": "src/components/filter_group/filter_button.tsx"
|
|
@@ -1715,14 +1715,14 @@
|
|
|
1715
1715
|
"highlighting": "string",
|
|
1716
1716
|
"loc": {
|
|
1717
1717
|
"start": {
|
|
1718
|
-
"line":
|
|
1718
|
+
"line": 127,
|
|
1719
1719
|
"column": 6,
|
|
1720
|
-
"index":
|
|
1720
|
+
"index": 3596
|
|
1721
1721
|
},
|
|
1722
1722
|
"end": {
|
|
1723
|
-
"line":
|
|
1723
|
+
"line": 127,
|
|
1724
1724
|
"column": 59,
|
|
1725
|
-
"index":
|
|
1725
|
+
"index": 3649
|
|
1726
1726
|
}
|
|
1727
1727
|
},
|
|
1728
1728
|
"filepath": "src/components/flyout/flyout_menu.tsx"
|
|
@@ -1733,14 +1733,14 @@
|
|
|
1733
1733
|
"highlighting": "string",
|
|
1734
1734
|
"loc": {
|
|
1735
1735
|
"start": {
|
|
1736
|
-
"line":
|
|
1736
|
+
"line": 146,
|
|
1737
1737
|
"column": 22,
|
|
1738
|
-
"index":
|
|
1738
|
+
"index": 4066
|
|
1739
1739
|
},
|
|
1740
1740
|
"end": {
|
|
1741
|
-
"line":
|
|
1741
|
+
"line": 146,
|
|
1742
1742
|
"column": 68,
|
|
1743
|
-
"index":
|
|
1743
|
+
"index": 4112
|
|
1744
1744
|
}
|
|
1745
1745
|
},
|
|
1746
1746
|
"filepath": "src/components/flyout/flyout_menu.tsx"
|
|
@@ -1751,32 +1751,32 @@
|
|
|
1751
1751
|
"highlighting": "string",
|
|
1752
1752
|
"loc": {
|
|
1753
1753
|
"start": {
|
|
1754
|
-
"line":
|
|
1754
|
+
"line": 963,
|
|
1755
1755
|
"column": 14,
|
|
1756
|
-
"index":
|
|
1756
|
+
"index": 34142
|
|
1757
1757
|
},
|
|
1758
1758
|
"end": {
|
|
1759
|
-
"line":
|
|
1759
|
+
"line": 966,
|
|
1760
1760
|
"column": 16,
|
|
1761
|
-
"index":
|
|
1761
|
+
"index": 34357
|
|
1762
1762
|
}
|
|
1763
1763
|
},
|
|
1764
1764
|
"filepath": "src/components/flyout/flyout.component.tsx"
|
|
1765
1765
|
},
|
|
1766
1766
|
{
|
|
1767
|
-
"token": "euiFlyout.
|
|
1768
|
-
"defString": "You are in a
|
|
1767
|
+
"token": "euiFlyout.screenReaderNoOverlayMaskDialog",
|
|
1768
|
+
"defString": "You are in a modal dialog. To close the dialog, press Escape.",
|
|
1769
1769
|
"highlighting": "string",
|
|
1770
1770
|
"loc": {
|
|
1771
1771
|
"start": {
|
|
1772
|
-
"line":
|
|
1772
|
+
"line": 968,
|
|
1773
1773
|
"column": 14,
|
|
1774
|
-
"index":
|
|
1774
|
+
"index": 34390
|
|
1775
1775
|
},
|
|
1776
1776
|
"end": {
|
|
1777
|
-
"line":
|
|
1777
|
+
"line": 971,
|
|
1778
1778
|
"column": 16,
|
|
1779
|
-
"index":
|
|
1779
|
+
"index": 34569
|
|
1780
1780
|
}
|
|
1781
1781
|
},
|
|
1782
1782
|
"filepath": "src/components/flyout/flyout.component.tsx"
|
|
@@ -1787,14 +1787,14 @@
|
|
|
1787
1787
|
"highlighting": "string",
|
|
1788
1788
|
"loc": {
|
|
1789
1789
|
"start": {
|
|
1790
|
-
"line":
|
|
1790
|
+
"line": 974,
|
|
1791
1791
|
"column": 14,
|
|
1792
|
-
"index":
|
|
1792
|
+
"index": 34649
|
|
1793
1793
|
},
|
|
1794
1794
|
"end": {
|
|
1795
|
-
"line":
|
|
1795
|
+
"line": 977,
|
|
1796
1796
|
"column": 16,
|
|
1797
|
-
"index":
|
|
1797
|
+
"index": 34830
|
|
1798
1798
|
}
|
|
1799
1799
|
},
|
|
1800
1800
|
"filepath": "src/components/flyout/flyout.component.tsx"
|
|
@@ -1890,40 +1890,58 @@
|
|
|
1890
1890
|
"filepath": "src/components/datagrid/data_grid.tsx"
|
|
1891
1891
|
},
|
|
1892
1892
|
{
|
|
1893
|
-
"token": "
|
|
1894
|
-
"defString": "
|
|
1893
|
+
"token": "euiHue.ariaValueText",
|
|
1894
|
+
"defString": "Hue",
|
|
1895
1895
|
"highlighting": "string",
|
|
1896
1896
|
"loc": {
|
|
1897
1897
|
"start": {
|
|
1898
|
-
"line":
|
|
1899
|
-
"column":
|
|
1900
|
-
"index":
|
|
1898
|
+
"line": 47,
|
|
1899
|
+
"column": 47,
|
|
1900
|
+
"index": 1268
|
|
1901
1901
|
},
|
|
1902
1902
|
"end": {
|
|
1903
|
-
"line":
|
|
1904
|
-
"column":
|
|
1905
|
-
"index":
|
|
1903
|
+
"line": 50,
|
|
1904
|
+
"column": 3,
|
|
1905
|
+
"index": 1369
|
|
1906
1906
|
}
|
|
1907
1907
|
},
|
|
1908
|
-
"filepath": "src/components/
|
|
1908
|
+
"filepath": "src/components/color_picker/hue.tsx"
|
|
1909
1909
|
},
|
|
1910
1910
|
{
|
|
1911
|
-
"token": "
|
|
1912
|
-
"defString": "
|
|
1911
|
+
"token": "euiHue.ariaRoleDescription",
|
|
1912
|
+
"defString": "Hue slider",
|
|
1913
1913
|
"highlighting": "string",
|
|
1914
1914
|
"loc": {
|
|
1915
1915
|
"start": {
|
|
1916
|
-
"line":
|
|
1917
|
-
"column":
|
|
1918
|
-
"index":
|
|
1916
|
+
"line": 47,
|
|
1917
|
+
"column": 47,
|
|
1918
|
+
"index": 1268
|
|
1919
1919
|
},
|
|
1920
1920
|
"end": {
|
|
1921
|
-
"line":
|
|
1921
|
+
"line": 50,
|
|
1922
1922
|
"column": 3,
|
|
1923
|
-
"index":
|
|
1923
|
+
"index": 1369
|
|
1924
1924
|
}
|
|
1925
1925
|
},
|
|
1926
|
-
"filepath": "src/components/
|
|
1926
|
+
"filepath": "src/components/color_picker/hue.tsx"
|
|
1927
|
+
},
|
|
1928
|
+
{
|
|
1929
|
+
"token": "euiHue.label",
|
|
1930
|
+
"defString": "Select the HSV color mode 'hue' value",
|
|
1931
|
+
"highlighting": "string",
|
|
1932
|
+
"loc": {
|
|
1933
|
+
"start": {
|
|
1934
|
+
"line": 65,
|
|
1935
|
+
"column": 10,
|
|
1936
|
+
"index": 1826
|
|
1937
|
+
},
|
|
1938
|
+
"end": {
|
|
1939
|
+
"line": 68,
|
|
1940
|
+
"column": 12,
|
|
1941
|
+
"index": 1940
|
|
1942
|
+
}
|
|
1943
|
+
},
|
|
1944
|
+
"filepath": "src/components/color_picker/hue.tsx"
|
|
1927
1945
|
},
|
|
1928
1946
|
{
|
|
1929
1947
|
"token": "euiSaturation.ariaLabel",
|
|
@@ -1979,60 +1997,6 @@
|
|
|
1979
1997
|
},
|
|
1980
1998
|
"filepath": "src/components/color_picker/saturation.tsx"
|
|
1981
1999
|
},
|
|
1982
|
-
{
|
|
1983
|
-
"token": "euiHue.ariaValueText",
|
|
1984
|
-
"defString": "Hue",
|
|
1985
|
-
"highlighting": "string",
|
|
1986
|
-
"loc": {
|
|
1987
|
-
"start": {
|
|
1988
|
-
"line": 47,
|
|
1989
|
-
"column": 47,
|
|
1990
|
-
"index": 1268
|
|
1991
|
-
},
|
|
1992
|
-
"end": {
|
|
1993
|
-
"line": 50,
|
|
1994
|
-
"column": 3,
|
|
1995
|
-
"index": 1369
|
|
1996
|
-
}
|
|
1997
|
-
},
|
|
1998
|
-
"filepath": "src/components/color_picker/hue.tsx"
|
|
1999
|
-
},
|
|
2000
|
-
{
|
|
2001
|
-
"token": "euiHue.ariaRoleDescription",
|
|
2002
|
-
"defString": "Hue slider",
|
|
2003
|
-
"highlighting": "string",
|
|
2004
|
-
"loc": {
|
|
2005
|
-
"start": {
|
|
2006
|
-
"line": 47,
|
|
2007
|
-
"column": 47,
|
|
2008
|
-
"index": 1268
|
|
2009
|
-
},
|
|
2010
|
-
"end": {
|
|
2011
|
-
"line": 50,
|
|
2012
|
-
"column": 3,
|
|
2013
|
-
"index": 1369
|
|
2014
|
-
}
|
|
2015
|
-
},
|
|
2016
|
-
"filepath": "src/components/color_picker/hue.tsx"
|
|
2017
|
-
},
|
|
2018
|
-
{
|
|
2019
|
-
"token": "euiHue.label",
|
|
2020
|
-
"defString": "Select the HSV color mode 'hue' value",
|
|
2021
|
-
"highlighting": "string",
|
|
2022
|
-
"loc": {
|
|
2023
|
-
"start": {
|
|
2024
|
-
"line": 65,
|
|
2025
|
-
"column": 10,
|
|
2026
|
-
"index": 1826
|
|
2027
|
-
},
|
|
2028
|
-
"end": {
|
|
2029
|
-
"line": 68,
|
|
2030
|
-
"column": 12,
|
|
2031
|
-
"index": 1940
|
|
2032
|
-
}
|
|
2033
|
-
},
|
|
2034
|
-
"filepath": "src/components/color_picker/hue.tsx"
|
|
2035
|
-
},
|
|
2036
2000
|
{
|
|
2037
2001
|
"token": "euiColorPickerSwatch.ariaLabel",
|
|
2038
2002
|
"defString": "Select {color} as the color",
|
|
@@ -2196,22 +2160,40 @@
|
|
|
2196
2160
|
"filepath": "src/components/color_picker/color_picker.tsx"
|
|
2197
2161
|
},
|
|
2198
2162
|
{
|
|
2199
|
-
"token": "
|
|
2200
|
-
"defString": "
|
|
2201
|
-
"highlighting": "string",
|
|
2163
|
+
"token": "euiCollapsibleNavBeta.ariaLabel",
|
|
2164
|
+
"defString": "Site menu",
|
|
2165
|
+
"highlighting": "string",
|
|
2202
2166
|
"loc": {
|
|
2203
2167
|
"start": {
|
|
2204
|
-
"line":
|
|
2168
|
+
"line": 181,
|
|
2169
|
+
"column": 27,
|
|
2170
|
+
"index": 6041
|
|
2171
|
+
},
|
|
2172
|
+
"end": {
|
|
2173
|
+
"line": 184,
|
|
2174
|
+
"column": 3,
|
|
2175
|
+
"index": 6111
|
|
2176
|
+
}
|
|
2177
|
+
},
|
|
2178
|
+
"filepath": "src/components/collapsible_nav_beta/collapsible_nav_beta.tsx"
|
|
2179
|
+
},
|
|
2180
|
+
{
|
|
2181
|
+
"token": "euiComboBox.listboxAriaLabel",
|
|
2182
|
+
"defString": "Choose from the following options",
|
|
2183
|
+
"highlighting": "string",
|
|
2184
|
+
"loc": {
|
|
2185
|
+
"start": {
|
|
2186
|
+
"line": 813,
|
|
2205
2187
|
"column": 8,
|
|
2206
|
-
"index":
|
|
2188
|
+
"index": 24080
|
|
2207
2189
|
},
|
|
2208
2190
|
"end": {
|
|
2209
|
-
"line":
|
|
2191
|
+
"line": 816,
|
|
2210
2192
|
"column": 9,
|
|
2211
|
-
"index":
|
|
2193
|
+
"index": 24199
|
|
2212
2194
|
}
|
|
2213
2195
|
},
|
|
2214
|
-
"filepath": "src/components/
|
|
2196
|
+
"filepath": "src/components/combo_box/combo_box.tsx"
|
|
2215
2197
|
},
|
|
2216
2198
|
{
|
|
2217
2199
|
"token": "euiCodeBlockFullScreen.fullscreenCollapse",
|
|
@@ -2267,6 +2249,24 @@
|
|
|
2267
2249
|
},
|
|
2268
2250
|
"filepath": "src/components/code/code_block_full_screen.tsx"
|
|
2269
2251
|
},
|
|
2252
|
+
{
|
|
2253
|
+
"token": "euiCodeBlockAnnotations.ariaLabel",
|
|
2254
|
+
"defString": "Click to view a code annotation for line {lineNumber}",
|
|
2255
|
+
"highlighting": "string",
|
|
2256
|
+
"loc": {
|
|
2257
|
+
"start": {
|
|
2258
|
+
"line": 37,
|
|
2259
|
+
"column": 20,
|
|
2260
|
+
"index": 1198
|
|
2261
|
+
},
|
|
2262
|
+
"end": {
|
|
2263
|
+
"line": 41,
|
|
2264
|
+
"column": 3,
|
|
2265
|
+
"index": 1334
|
|
2266
|
+
}
|
|
2267
|
+
},
|
|
2268
|
+
"filepath": "src/components/code/code_block_annotations.tsx"
|
|
2269
|
+
},
|
|
2270
2270
|
{
|
|
2271
2271
|
"token": "euiCodeBlockCopy.copy",
|
|
2272
2272
|
"defString": "Copy",
|
|
@@ -2286,40 +2286,40 @@
|
|
|
2286
2286
|
"filepath": "src/components/code/code_block_copy.tsx"
|
|
2287
2287
|
},
|
|
2288
2288
|
{
|
|
2289
|
-
"token": "
|
|
2290
|
-
"defString": "
|
|
2289
|
+
"token": "euiCodeBlock.label",
|
|
2290
|
+
"defString": "{language} code block:",
|
|
2291
2291
|
"highlighting": "string",
|
|
2292
2292
|
"loc": {
|
|
2293
2293
|
"start": {
|
|
2294
|
-
"line":
|
|
2295
|
-
"column":
|
|
2296
|
-
"index":
|
|
2294
|
+
"line": 269,
|
|
2295
|
+
"column": 25,
|
|
2296
|
+
"index": 7663
|
|
2297
2297
|
},
|
|
2298
2298
|
"end": {
|
|
2299
|
-
"line":
|
|
2299
|
+
"line": 275,
|
|
2300
2300
|
"column": 3,
|
|
2301
|
-
"index":
|
|
2301
|
+
"index": 7762
|
|
2302
2302
|
}
|
|
2303
2303
|
},
|
|
2304
|
-
"filepath": "src/components/code/
|
|
2304
|
+
"filepath": "src/components/code/code_block.tsx"
|
|
2305
2305
|
},
|
|
2306
2306
|
{
|
|
2307
|
-
"token": "
|
|
2308
|
-
"defString": "
|
|
2307
|
+
"token": "euiCallOut.dismissAriaLabel",
|
|
2308
|
+
"defString": "Dismiss this callout",
|
|
2309
2309
|
"highlighting": "string",
|
|
2310
2310
|
"loc": {
|
|
2311
2311
|
"start": {
|
|
2312
|
-
"line":
|
|
2313
|
-
"column":
|
|
2314
|
-
"index":
|
|
2312
|
+
"line": 114,
|
|
2313
|
+
"column": 8,
|
|
2314
|
+
"index": 3269
|
|
2315
2315
|
},
|
|
2316
2316
|
"end": {
|
|
2317
|
-
"line":
|
|
2318
|
-
"column":
|
|
2319
|
-
"index":
|
|
2317
|
+
"line": 117,
|
|
2318
|
+
"column": 9,
|
|
2319
|
+
"index": 3374
|
|
2320
2320
|
}
|
|
2321
2321
|
},
|
|
2322
|
-
"filepath": "src/components/
|
|
2322
|
+
"filepath": "src/components/call_out/call_out.tsx"
|
|
2323
2323
|
},
|
|
2324
2324
|
{
|
|
2325
2325
|
"token": "euiBreadcrumbs.nav.ariaLabel",
|
|
@@ -2489,14 +2489,14 @@
|
|
|
2489
2489
|
"highlighting": "string",
|
|
2490
2490
|
"loc": {
|
|
2491
2491
|
"start": {
|
|
2492
|
-
"line":
|
|
2492
|
+
"line": 322,
|
|
2493
2493
|
"column": 6,
|
|
2494
|
-
"index":
|
|
2494
|
+
"index": 8230
|
|
2495
2495
|
},
|
|
2496
2496
|
"end": {
|
|
2497
|
-
"line":
|
|
2497
|
+
"line": 322,
|
|
2498
2498
|
"column": 79,
|
|
2499
|
-
"index":
|
|
2499
|
+
"index": 8303
|
|
2500
2500
|
}
|
|
2501
2501
|
},
|
|
2502
2502
|
"filepath": "src/components/basic_table/basic_table.tsx"
|
|
@@ -2507,14 +2507,14 @@
|
|
|
2507
2507
|
"highlighting": "string",
|
|
2508
2508
|
"loc": {
|
|
2509
2509
|
"start": {
|
|
2510
|
-
"line":
|
|
2510
|
+
"line": 649,
|
|
2511
2511
|
"column": 10,
|
|
2512
|
-
"index":
|
|
2512
|
+
"index": 16792
|
|
2513
2513
|
},
|
|
2514
2514
|
"end": {
|
|
2515
|
-
"line":
|
|
2515
|
+
"line": 653,
|
|
2516
2516
|
"column": 12,
|
|
2517
|
-
"index":
|
|
2517
|
+
"index": 17012
|
|
2518
2518
|
}
|
|
2519
2519
|
},
|
|
2520
2520
|
"filepath": "src/components/basic_table/basic_table.tsx"
|
|
@@ -2525,14 +2525,14 @@
|
|
|
2525
2525
|
"highlighting": "string",
|
|
2526
2526
|
"loc": {
|
|
2527
2527
|
"start": {
|
|
2528
|
-
"line":
|
|
2528
|
+
"line": 662,
|
|
2529
2529
|
"column": 10,
|
|
2530
|
-
"index":
|
|
2530
|
+
"index": 17176
|
|
2531
2531
|
},
|
|
2532
2532
|
"end": {
|
|
2533
|
-
"line":
|
|
2533
|
+
"line": 666,
|
|
2534
2534
|
"column": 12,
|
|
2535
|
-
"index":
|
|
2535
|
+
"index": 17359
|
|
2536
2536
|
}
|
|
2537
2537
|
},
|
|
2538
2538
|
"filepath": "src/components/basic_table/basic_table.tsx"
|
|
@@ -2543,14 +2543,14 @@
|
|
|
2543
2543
|
"highlighting": "string",
|
|
2544
2544
|
"loc": {
|
|
2545
2545
|
"start": {
|
|
2546
|
-
"line":
|
|
2546
|
+
"line": 678,
|
|
2547
2547
|
"column": 16,
|
|
2548
|
-
"index":
|
|
2548
|
+
"index": 17648
|
|
2549
2549
|
},
|
|
2550
2550
|
"end": {
|
|
2551
|
-
"line":
|
|
2551
|
+
"line": 681,
|
|
2552
2552
|
"column": 18,
|
|
2553
|
-
"index":
|
|
2553
|
+
"index": 17772
|
|
2554
2554
|
}
|
|
2555
2555
|
},
|
|
2556
2556
|
"filepath": "src/components/basic_table/basic_table.tsx"
|
|
@@ -2561,14 +2561,14 @@
|
|
|
2561
2561
|
"highlighting": "string",
|
|
2562
2562
|
"loc": {
|
|
2563
2563
|
"start": {
|
|
2564
|
-
"line":
|
|
2564
|
+
"line": 686,
|
|
2565
2565
|
"column": 18,
|
|
2566
|
-
"index":
|
|
2566
|
+
"index": 17887
|
|
2567
2567
|
},
|
|
2568
2568
|
"end": {
|
|
2569
|
-
"line":
|
|
2569
|
+
"line": 689,
|
|
2570
2570
|
"column": 20,
|
|
2571
|
-
"index":
|
|
2571
|
+
"index": 18015
|
|
2572
2572
|
}
|
|
2573
2573
|
},
|
|
2574
2574
|
"filepath": "src/components/basic_table/basic_table.tsx"
|
|
@@ -2579,14 +2579,14 @@
|
|
|
2579
2579
|
"highlighting": "string",
|
|
2580
2580
|
"loc": {
|
|
2581
2581
|
"start": {
|
|
2582
|
-
"line":
|
|
2582
|
+
"line": 738,
|
|
2583
2583
|
"column": 6,
|
|
2584
|
-
"index":
|
|
2584
|
+
"index": 19220
|
|
2585
2585
|
},
|
|
2586
2586
|
"end": {
|
|
2587
|
-
"line":
|
|
2587
|
+
"line": 741,
|
|
2588
2588
|
"column": 7,
|
|
2589
|
-
"index":
|
|
2589
|
+
"index": 19371
|
|
2590
2590
|
}
|
|
2591
2591
|
},
|
|
2592
2592
|
"filepath": "src/components/basic_table/basic_table.tsx"
|
|
@@ -2597,14 +2597,14 @@
|
|
|
2597
2597
|
"highlighting": "string",
|
|
2598
2598
|
"loc": {
|
|
2599
2599
|
"start": {
|
|
2600
|
-
"line":
|
|
2600
|
+
"line": 738,
|
|
2601
2601
|
"column": 6,
|
|
2602
|
-
"index":
|
|
2602
|
+
"index": 19220
|
|
2603
2603
|
},
|
|
2604
2604
|
"end": {
|
|
2605
|
-
"line":
|
|
2605
|
+
"line": 741,
|
|
2606
2606
|
"column": 7,
|
|
2607
|
-
"index":
|
|
2607
|
+
"index": 19371
|
|
2608
2608
|
}
|
|
2609
2609
|
},
|
|
2610
2610
|
"filepath": "src/components/basic_table/basic_table.tsx"
|
|
@@ -2615,14 +2615,14 @@
|
|
|
2615
2615
|
"highlighting": "string",
|
|
2616
2616
|
"loc": {
|
|
2617
2617
|
"start": {
|
|
2618
|
-
"line":
|
|
2618
|
+
"line": 1178,
|
|
2619
2619
|
"column": 8,
|
|
2620
|
-
"index":
|
|
2620
|
+
"index": 32401
|
|
2621
2621
|
},
|
|
2622
2622
|
"end": {
|
|
2623
|
-
"line":
|
|
2623
|
+
"line": 1182,
|
|
2624
2624
|
"column": 9,
|
|
2625
|
-
"index":
|
|
2625
|
+
"index": 32556
|
|
2626
2626
|
}
|
|
2627
2627
|
},
|
|
2628
2628
|
"filepath": "src/components/basic_table/basic_table.tsx"
|
|
@@ -2633,14 +2633,14 @@
|
|
|
2633
2633
|
"highlighting": "string",
|
|
2634
2634
|
"loc": {
|
|
2635
2635
|
"start": {
|
|
2636
|
-
"line":
|
|
2636
|
+
"line": 1428,
|
|
2637
2637
|
"column": 8,
|
|
2638
|
-
"index":
|
|
2638
|
+
"index": 39800
|
|
2639
2639
|
},
|
|
2640
2640
|
"end": {
|
|
2641
|
-
"line":
|
|
2641
|
+
"line": 1432,
|
|
2642
2642
|
"column": 9,
|
|
2643
|
-
"index":
|
|
2643
|
+
"index": 39959
|
|
2644
2644
|
}
|
|
2645
2645
|
},
|
|
2646
2646
|
"filepath": "src/components/basic_table/basic_table.tsx"
|
|
@@ -2653,12 +2653,12 @@
|
|
|
2653
2653
|
"start": {
|
|
2654
2654
|
"line": 97,
|
|
2655
2655
|
"column": 8,
|
|
2656
|
-
"index":
|
|
2656
|
+
"index": 2926
|
|
2657
2657
|
},
|
|
2658
2658
|
"end": {
|
|
2659
2659
|
"line": 100,
|
|
2660
2660
|
"column": 10,
|
|
2661
|
-
"index":
|
|
2661
|
+
"index": 3027
|
|
2662
2662
|
}
|
|
2663
2663
|
},
|
|
2664
2664
|
"filepath": "src/components/table/table_pagination/table_pagination.tsx"
|
|
@@ -2671,12 +2671,12 @@
|
|
|
2671
2671
|
"start": {
|
|
2672
2672
|
"line": 103,
|
|
2673
2673
|
"column": 10,
|
|
2674
|
-
"index":
|
|
2674
|
+
"index": 3061
|
|
2675
2675
|
},
|
|
2676
2676
|
"end": {
|
|
2677
2677
|
"line": 106,
|
|
2678
2678
|
"column": 12,
|
|
2679
|
-
"index":
|
|
2679
|
+
"index": 3169
|
|
2680
2680
|
}
|
|
2681
2681
|
},
|
|
2682
2682
|
"filepath": "src/components/table/table_pagination/table_pagination.tsx"
|
|
@@ -2689,12 +2689,12 @@
|
|
|
2689
2689
|
"start": {
|
|
2690
2690
|
"line": 129,
|
|
2691
2691
|
"column": 12,
|
|
2692
|
-
"index":
|
|
2692
|
+
"index": 3837
|
|
2693
2693
|
},
|
|
2694
2694
|
"end": {
|
|
2695
2695
|
"line": 132,
|
|
2696
2696
|
"column": 14,
|
|
2697
|
-
"index":
|
|
2697
|
+
"index": 3968
|
|
2698
2698
|
}
|
|
2699
2699
|
},
|
|
2700
2700
|
"filepath": "src/components/table/table_pagination/table_pagination.tsx"
|
|
@@ -2707,12 +2707,12 @@
|
|
|
2707
2707
|
"start": {
|
|
2708
2708
|
"line": 134,
|
|
2709
2709
|
"column": 12,
|
|
2710
|
-
"index":
|
|
2710
|
+
"index": 3997
|
|
2711
2711
|
},
|
|
2712
2712
|
"end": {
|
|
2713
2713
|
"line": 138,
|
|
2714
2714
|
"column": 14,
|
|
2715
|
-
"index":
|
|
2715
|
+
"index": 4181
|
|
2716
2716
|
}
|
|
2717
2717
|
},
|
|
2718
2718
|
"filepath": "src/components/table/table_pagination/table_pagination.tsx"
|
|
@@ -2725,34 +2725,16 @@
|
|
|
2725
2725
|
"start": {
|
|
2726
2726
|
"line": 76,
|
|
2727
2727
|
"column": 8,
|
|
2728
|
-
"index":
|
|
2728
|
+
"index": 1971
|
|
2729
2729
|
},
|
|
2730
2730
|
"end": {
|
|
2731
2731
|
"line": 76,
|
|
2732
2732
|
"column": 72,
|
|
2733
|
-
"index":
|
|
2733
|
+
"index": 2035
|
|
2734
2734
|
}
|
|
2735
2735
|
},
|
|
2736
2736
|
"filepath": "src/components/table/mobile/table_sort_mobile.tsx"
|
|
2737
2737
|
},
|
|
2738
|
-
{
|
|
2739
|
-
"token": "euiFieldValueSelectionFilter.buttonLabelHint",
|
|
2740
|
-
"defString": "Selection",
|
|
2741
|
-
"highlighting": "string",
|
|
2742
|
-
"loc": {
|
|
2743
|
-
"start": {
|
|
2744
|
-
"line": 302,
|
|
2745
|
-
"column": 6,
|
|
2746
|
-
"index": 8615
|
|
2747
|
-
},
|
|
2748
|
-
"end": {
|
|
2749
|
-
"line": 305,
|
|
2750
|
-
"column": 7,
|
|
2751
|
-
"index": 8720
|
|
2752
|
-
}
|
|
2753
|
-
},
|
|
2754
|
-
"filepath": "src/components/search_bar/filters/field_value_selection_filter.tsx"
|
|
2755
|
-
},
|
|
2756
2738
|
{
|
|
2757
2739
|
"token": "euiSelectableTemplateSitewide.searchPlaceholder",
|
|
2758
2740
|
"defString": "Search for anything...",
|
|
@@ -2833,12 +2815,12 @@
|
|
|
2833
2815
|
"start": {
|
|
2834
2816
|
"line": 224,
|
|
2835
2817
|
"column": 10,
|
|
2836
|
-
"index":
|
|
2818
|
+
"index": 6700
|
|
2837
2819
|
},
|
|
2838
2820
|
"end": {
|
|
2839
2821
|
"line": 227,
|
|
2840
2822
|
"column": 12,
|
|
2841
|
-
"index":
|
|
2823
|
+
"index": 6815
|
|
2842
2824
|
}
|
|
2843
2825
|
},
|
|
2844
2826
|
"filepath": "src/components/selectable/selectable_list/selectable_list_item.tsx"
|
|
@@ -2851,12 +2833,12 @@
|
|
|
2851
2833
|
"start": {
|
|
2852
2834
|
"line": 230,
|
|
2853
2835
|
"column": 10,
|
|
2854
|
-
"index":
|
|
2836
|
+
"index": 6861
|
|
2855
2837
|
},
|
|
2856
2838
|
"end": {
|
|
2857
2839
|
"line": 233,
|
|
2858
2840
|
"column": 12,
|
|
2859
|
-
"index":
|
|
2841
|
+
"index": 7005
|
|
2860
2842
|
}
|
|
2861
2843
|
},
|
|
2862
2844
|
"filepath": "src/components/selectable/selectable_list/selectable_list_item.tsx"
|
|
@@ -2869,12 +2851,12 @@
|
|
|
2869
2851
|
"start": {
|
|
2870
2852
|
"line": 238,
|
|
2871
2853
|
"column": 10,
|
|
2872
|
-
"index":
|
|
2854
|
+
"index": 7079
|
|
2873
2855
|
},
|
|
2874
2856
|
"end": {
|
|
2875
2857
|
"line": 241,
|
|
2876
2858
|
"column": 12,
|
|
2877
|
-
"index":
|
|
2859
|
+
"index": 7227
|
|
2878
2860
|
}
|
|
2879
2861
|
},
|
|
2880
2862
|
"filepath": "src/components/selectable/selectable_list/selectable_list_item.tsx"
|
|
@@ -2887,12 +2869,12 @@
|
|
|
2887
2869
|
"start": {
|
|
2888
2870
|
"line": 246,
|
|
2889
2871
|
"column": 10,
|
|
2890
|
-
"index":
|
|
2872
|
+
"index": 7293
|
|
2891
2873
|
},
|
|
2892
2874
|
"end": {
|
|
2893
2875
|
"line": 249,
|
|
2894
2876
|
"column": 12,
|
|
2895
|
-
"index":
|
|
2877
|
+
"index": 7410
|
|
2896
2878
|
}
|
|
2897
2879
|
},
|
|
2898
2880
|
"filepath": "src/components/selectable/selectable_list/selectable_list_item.tsx"
|
|
@@ -2905,12 +2887,12 @@
|
|
|
2905
2887
|
"start": {
|
|
2906
2888
|
"line": 252,
|
|
2907
2889
|
"column": 10,
|
|
2908
|
-
"index":
|
|
2890
|
+
"index": 7456
|
|
2909
2891
|
},
|
|
2910
2892
|
"end": {
|
|
2911
2893
|
"line": 255,
|
|
2912
2894
|
"column": 12,
|
|
2913
|
-
"index":
|
|
2895
|
+
"index": 7604
|
|
2914
2896
|
}
|
|
2915
2897
|
},
|
|
2916
2898
|
"filepath": "src/components/selectable/selectable_list/selectable_list_item.tsx"
|
|
@@ -2923,12 +2905,12 @@
|
|
|
2923
2905
|
"start": {
|
|
2924
2906
|
"line": 260,
|
|
2925
2907
|
"column": 10,
|
|
2926
|
-
"index":
|
|
2908
|
+
"index": 7667
|
|
2927
2909
|
},
|
|
2928
2910
|
"end": {
|
|
2929
2911
|
"line": 263,
|
|
2930
2912
|
"column": 12,
|
|
2931
|
-
"index":
|
|
2913
|
+
"index": 7794
|
|
2932
2914
|
}
|
|
2933
2915
|
},
|
|
2934
2916
|
"filepath": "src/components/selectable/selectable_list/selectable_list_item.tsx"
|
|
@@ -2941,12 +2923,12 @@
|
|
|
2941
2923
|
"start": {
|
|
2942
2924
|
"line": 266,
|
|
2943
2925
|
"column": 10,
|
|
2944
|
-
"index":
|
|
2926
|
+
"index": 7840
|
|
2945
2927
|
},
|
|
2946
2928
|
"end": {
|
|
2947
2929
|
"line": 269,
|
|
2948
2930
|
"column": 12,
|
|
2949
|
-
"index":
|
|
2931
|
+
"index": 7997
|
|
2950
2932
|
}
|
|
2951
2933
|
},
|
|
2952
2934
|
"filepath": "src/components/selectable/selectable_list/selectable_list_item.tsx"
|
|
@@ -2959,12 +2941,12 @@
|
|
|
2959
2941
|
"start": {
|
|
2960
2942
|
"line": 272,
|
|
2961
2943
|
"column": 10,
|
|
2962
|
-
"index":
|
|
2944
|
+
"index": 8050
|
|
2963
2945
|
},
|
|
2964
2946
|
"end": {
|
|
2965
2947
|
"line": 275,
|
|
2966
2948
|
"column": 12,
|
|
2967
|
-
"index":
|
|
2949
|
+
"index": 8217
|
|
2968
2950
|
}
|
|
2969
2951
|
},
|
|
2970
2952
|
"filepath": "src/components/selectable/selectable_list/selectable_list_item.tsx"
|
|
@@ -2977,16 +2959,34 @@
|
|
|
2977
2959
|
"start": {
|
|
2978
2960
|
"line": 278,
|
|
2979
2961
|
"column": 10,
|
|
2980
|
-
"index":
|
|
2962
|
+
"index": 8270
|
|
2981
2963
|
},
|
|
2982
2964
|
"end": {
|
|
2983
2965
|
"line": 281,
|
|
2984
2966
|
"column": 12,
|
|
2985
|
-
"index":
|
|
2967
|
+
"index": 8437
|
|
2986
2968
|
}
|
|
2987
2969
|
},
|
|
2988
2970
|
"filepath": "src/components/selectable/selectable_list/selectable_list_item.tsx"
|
|
2989
2971
|
},
|
|
2972
|
+
{
|
|
2973
|
+
"token": "euiFieldValueSelectionFilter.buttonLabelHint",
|
|
2974
|
+
"defString": "Selection",
|
|
2975
|
+
"highlighting": "string",
|
|
2976
|
+
"loc": {
|
|
2977
|
+
"start": {
|
|
2978
|
+
"line": 302,
|
|
2979
|
+
"column": 6,
|
|
2980
|
+
"index": 8615
|
|
2981
|
+
},
|
|
2982
|
+
"end": {
|
|
2983
|
+
"line": 305,
|
|
2984
|
+
"column": 7,
|
|
2985
|
+
"index": 8720
|
|
2986
|
+
}
|
|
2987
|
+
},
|
|
2988
|
+
"filepath": "src/components/search_bar/filters/field_value_selection_filter.tsx"
|
|
2989
|
+
},
|
|
2990
2990
|
{
|
|
2991
2991
|
"token": "euiPinnableListGroup.pinExtraActionLabel",
|
|
2992
2992
|
"defString": "Pin item",
|
|
@@ -3263,14 +3263,14 @@
|
|
|
3263
3263
|
"highlighting": "string",
|
|
3264
3264
|
"loc": {
|
|
3265
3265
|
"start": {
|
|
3266
|
-
"line":
|
|
3266
|
+
"line": 106,
|
|
3267
3267
|
"column": 49,
|
|
3268
|
-
"index":
|
|
3268
|
+
"index": 2974
|
|
3269
3269
|
},
|
|
3270
3270
|
"end": {
|
|
3271
|
-
"line":
|
|
3271
|
+
"line": 112,
|
|
3272
3272
|
"column": 3,
|
|
3273
|
-
"index":
|
|
3273
|
+
"index": 3195
|
|
3274
3274
|
}
|
|
3275
3275
|
},
|
|
3276
3276
|
"filepath": "src/components/form/field_password/field_password.tsx"
|
|
@@ -3281,14 +3281,14 @@
|
|
|
3281
3281
|
"highlighting": "string",
|
|
3282
3282
|
"loc": {
|
|
3283
3283
|
"start": {
|
|
3284
|
-
"line":
|
|
3284
|
+
"line": 106,
|
|
3285
3285
|
"column": 49,
|
|
3286
|
-
"index":
|
|
3286
|
+
"index": 2974
|
|
3287
3287
|
},
|
|
3288
3288
|
"end": {
|
|
3289
|
-
"line":
|
|
3289
|
+
"line": 112,
|
|
3290
3290
|
"column": 3,
|
|
3291
|
-
"index":
|
|
3291
|
+
"index": 3195
|
|
3292
3292
|
}
|
|
3293
3293
|
},
|
|
3294
3294
|
"filepath": "src/components/form/field_password/field_password.tsx"
|
|
@@ -3299,291 +3299,129 @@
|
|
|
3299
3299
|
"highlighting": "string",
|
|
3300
3300
|
"loc": {
|
|
3301
3301
|
"start": {
|
|
3302
|
-
"line":
|
|
3302
|
+
"line": 158,
|
|
3303
3303
|
"column": 25,
|
|
3304
|
-
"index":
|
|
3304
|
+
"index": 5181
|
|
3305
3305
|
},
|
|
3306
3306
|
"end": {
|
|
3307
|
-
"line":
|
|
3307
|
+
"line": 161,
|
|
3308
3308
|
"column": 5,
|
|
3309
|
-
"index":
|
|
3309
|
+
"index": 5260
|
|
3310
3310
|
}
|
|
3311
3311
|
},
|
|
3312
3312
|
"filepath": "src/components/flyout/manager/flyout_managed.tsx"
|
|
3313
3313
|
},
|
|
3314
3314
|
{
|
|
3315
|
-
"token": "
|
|
3316
|
-
"defString": "
|
|
3315
|
+
"token": "euiTimeWindowButtons.previousDescription",
|
|
3316
|
+
"defString": "Previous {displayInterval}",
|
|
3317
3317
|
"highlighting": "string",
|
|
3318
3318
|
"loc": {
|
|
3319
3319
|
"start": {
|
|
3320
|
-
"line":
|
|
3321
|
-
"column":
|
|
3322
|
-
"index":
|
|
3320
|
+
"line": 88,
|
|
3321
|
+
"column": 30,
|
|
3322
|
+
"index": 2577
|
|
3323
3323
|
},
|
|
3324
3324
|
"end": {
|
|
3325
|
-
"line":
|
|
3326
|
-
"column":
|
|
3327
|
-
"index":
|
|
3325
|
+
"line": 92,
|
|
3326
|
+
"column": 3,
|
|
3327
|
+
"index": 2698
|
|
3328
3328
|
}
|
|
3329
3329
|
},
|
|
3330
|
-
"filepath": "src/components/date_picker/
|
|
3330
|
+
"filepath": "src/components/date_picker/super_date_picker/time_window_buttons.tsx"
|
|
3331
3331
|
},
|
|
3332
3332
|
{
|
|
3333
|
-
"token": "
|
|
3334
|
-
"defString": "
|
|
3333
|
+
"token": "euiTimeWindowButtons.nextDescription",
|
|
3334
|
+
"defString": "Next {displayInterval}",
|
|
3335
3335
|
"highlighting": "string",
|
|
3336
3336
|
"loc": {
|
|
3337
3337
|
"start": {
|
|
3338
|
-
"line":
|
|
3339
|
-
"column":
|
|
3340
|
-
"index":
|
|
3338
|
+
"line": 93,
|
|
3339
|
+
"column": 26,
|
|
3340
|
+
"index": 2726
|
|
3341
3341
|
},
|
|
3342
3342
|
"end": {
|
|
3343
|
-
"line":
|
|
3344
|
-
"column":
|
|
3345
|
-
"index":
|
|
3343
|
+
"line": 97,
|
|
3344
|
+
"column": 3,
|
|
3345
|
+
"index": 2839
|
|
3346
3346
|
}
|
|
3347
3347
|
},
|
|
3348
|
-
"filepath": "src/components/date_picker/
|
|
3348
|
+
"filepath": "src/components/date_picker/super_date_picker/time_window_buttons.tsx"
|
|
3349
3349
|
},
|
|
3350
3350
|
{
|
|
3351
|
-
"token": "
|
|
3352
|
-
"defString": "
|
|
3351
|
+
"token": "euiTimeWindowButtons.invalidShiftLabel",
|
|
3352
|
+
"defString": "Cannot shift invalid time window",
|
|
3353
3353
|
"highlighting": "string",
|
|
3354
3354
|
"loc": {
|
|
3355
3355
|
"start": {
|
|
3356
|
-
"line":
|
|
3357
|
-
"column":
|
|
3358
|
-
"index":
|
|
3356
|
+
"line": 98,
|
|
3357
|
+
"column": 34,
|
|
3358
|
+
"index": 2875
|
|
3359
3359
|
},
|
|
3360
3360
|
"end": {
|
|
3361
|
-
"line":
|
|
3362
|
-
"column":
|
|
3363
|
-
"index":
|
|
3361
|
+
"line": 101,
|
|
3362
|
+
"column": 3,
|
|
3363
|
+
"index": 2975
|
|
3364
3364
|
}
|
|
3365
3365
|
},
|
|
3366
|
-
"filepath": "src/components/date_picker/
|
|
3366
|
+
"filepath": "src/components/date_picker/super_date_picker/time_window_buttons.tsx"
|
|
3367
3367
|
},
|
|
3368
3368
|
{
|
|
3369
|
-
"token": "
|
|
3370
|
-
"defString": "
|
|
3369
|
+
"token": "euiTimeWindowButtons.invalidZoomInLabel",
|
|
3370
|
+
"defString": "Cannot zoom in invalid time window",
|
|
3371
3371
|
"highlighting": "string",
|
|
3372
3372
|
"loc": {
|
|
3373
3373
|
"start": {
|
|
3374
|
-
"line":
|
|
3375
|
-
"column":
|
|
3376
|
-
"index":
|
|
3374
|
+
"line": 102,
|
|
3375
|
+
"column": 35,
|
|
3376
|
+
"index": 3012
|
|
3377
3377
|
},
|
|
3378
3378
|
"end": {
|
|
3379
|
-
"line":
|
|
3380
|
-
"column":
|
|
3381
|
-
"index":
|
|
3379
|
+
"line": 105,
|
|
3380
|
+
"column": 3,
|
|
3381
|
+
"index": 3115
|
|
3382
3382
|
}
|
|
3383
3383
|
},
|
|
3384
|
-
"filepath": "src/components/date_picker/
|
|
3384
|
+
"filepath": "src/components/date_picker/super_date_picker/time_window_buttons.tsx"
|
|
3385
3385
|
},
|
|
3386
3386
|
{
|
|
3387
|
-
"token": "
|
|
3388
|
-
"defString": "
|
|
3387
|
+
"token": "euiTimeWindowButtons.cannotZoomInLabel",
|
|
3388
|
+
"defString": "Cannot zoom in any further",
|
|
3389
3389
|
"highlighting": "string",
|
|
3390
3390
|
"loc": {
|
|
3391
3391
|
"start": {
|
|
3392
|
-
"line":
|
|
3393
|
-
"column":
|
|
3394
|
-
"index":
|
|
3392
|
+
"line": 106,
|
|
3393
|
+
"column": 34,
|
|
3394
|
+
"index": 3151
|
|
3395
3395
|
},
|
|
3396
3396
|
"end": {
|
|
3397
|
-
"line":
|
|
3398
|
-
"column":
|
|
3399
|
-
"index":
|
|
3397
|
+
"line": 109,
|
|
3398
|
+
"column": 3,
|
|
3399
|
+
"index": 3245
|
|
3400
3400
|
}
|
|
3401
3401
|
},
|
|
3402
|
-
"filepath": "src/components/date_picker/
|
|
3402
|
+
"filepath": "src/components/date_picker/super_date_picker/time_window_buttons.tsx"
|
|
3403
3403
|
},
|
|
3404
3404
|
{
|
|
3405
|
-
"token": "
|
|
3406
|
-
"defString": "
|
|
3405
|
+
"token": "euiTimeWindowButtons.invalidZoomOutLabel",
|
|
3406
|
+
"defString": "Cannot zoom out invalid time window",
|
|
3407
3407
|
"highlighting": "string",
|
|
3408
3408
|
"loc": {
|
|
3409
3409
|
"start": {
|
|
3410
|
-
"line":
|
|
3411
|
-
"column":
|
|
3412
|
-
"index":
|
|
3410
|
+
"line": 110,
|
|
3411
|
+
"column": 36,
|
|
3412
|
+
"index": 3283
|
|
3413
3413
|
},
|
|
3414
3414
|
"end": {
|
|
3415
|
-
"line":
|
|
3416
|
-
"column":
|
|
3417
|
-
"index":
|
|
3415
|
+
"line": 113,
|
|
3416
|
+
"column": 3,
|
|
3417
|
+
"index": 3388
|
|
3418
3418
|
}
|
|
3419
3419
|
},
|
|
3420
|
-
"filepath": "src/components/date_picker/
|
|
3420
|
+
"filepath": "src/components/date_picker/super_date_picker/time_window_buttons.tsx"
|
|
3421
3421
|
},
|
|
3422
3422
|
{
|
|
3423
|
-
"token": "
|
|
3424
|
-
"defString": "
|
|
3425
|
-
"highlighting": "string",
|
|
3426
|
-
"loc": {
|
|
3427
|
-
"start": {
|
|
3428
|
-
"line": 50,
|
|
3429
|
-
"column": 26,
|
|
3430
|
-
"index": 1659
|
|
3431
|
-
},
|
|
3432
|
-
"end": {
|
|
3433
|
-
"line": 53,
|
|
3434
|
-
"column": 3,
|
|
3435
|
-
"index": 1732
|
|
3436
|
-
}
|
|
3437
|
-
},
|
|
3438
|
-
"filepath": "src/components/date_picker/auto_refresh/auto_refresh.tsx"
|
|
3439
|
-
},
|
|
3440
|
-
{
|
|
3441
|
-
"token": "euiAutoRefresh.buttonLabelOff",
|
|
3442
|
-
"defString": "Auto refresh is off",
|
|
3443
|
-
"highlighting": "string",
|
|
3444
|
-
"loc": {
|
|
3445
|
-
"start": {
|
|
3446
|
-
"line": 129,
|
|
3447
|
-
"column": 29,
|
|
3448
|
-
"index": 3709
|
|
3449
|
-
},
|
|
3450
|
-
"end": {
|
|
3451
|
-
"line": 132,
|
|
3452
|
-
"column": 3,
|
|
3453
|
-
"index": 3787
|
|
3454
|
-
}
|
|
3455
|
-
},
|
|
3456
|
-
"filepath": "src/components/date_picker/auto_refresh/auto_refresh.tsx"
|
|
3457
|
-
},
|
|
3458
|
-
{
|
|
3459
|
-
"token": "euiAutoRefresh.buttonLabelOn",
|
|
3460
|
-
"defString": "Auto refresh is on and set to {prettyInterval}",
|
|
3461
|
-
"highlighting": "string",
|
|
3462
|
-
"loc": {
|
|
3463
|
-
"start": {
|
|
3464
|
-
"line": 133,
|
|
3465
|
-
"column": 28,
|
|
3466
|
-
"index": 3817
|
|
3467
|
-
},
|
|
3468
|
-
"end": {
|
|
3469
|
-
"line": 141,
|
|
3470
|
-
"column": 3,
|
|
3471
|
-
"index": 4051
|
|
3472
|
-
}
|
|
3473
|
-
},
|
|
3474
|
-
"filepath": "src/components/date_picker/auto_refresh/auto_refresh.tsx"
|
|
3475
|
-
},
|
|
3476
|
-
{
|
|
3477
|
-
"token": "euiTimeWindowButtons.previousDescription",
|
|
3478
|
-
"defString": "Previous {displayInterval}",
|
|
3479
|
-
"highlighting": "string",
|
|
3480
|
-
"loc": {
|
|
3481
|
-
"start": {
|
|
3482
|
-
"line": 88,
|
|
3483
|
-
"column": 30,
|
|
3484
|
-
"index": 2577
|
|
3485
|
-
},
|
|
3486
|
-
"end": {
|
|
3487
|
-
"line": 92,
|
|
3488
|
-
"column": 3,
|
|
3489
|
-
"index": 2698
|
|
3490
|
-
}
|
|
3491
|
-
},
|
|
3492
|
-
"filepath": "src/components/date_picker/super_date_picker/time_window_buttons.tsx"
|
|
3493
|
-
},
|
|
3494
|
-
{
|
|
3495
|
-
"token": "euiTimeWindowButtons.nextDescription",
|
|
3496
|
-
"defString": "Next {displayInterval}",
|
|
3497
|
-
"highlighting": "string",
|
|
3498
|
-
"loc": {
|
|
3499
|
-
"start": {
|
|
3500
|
-
"line": 93,
|
|
3501
|
-
"column": 26,
|
|
3502
|
-
"index": 2726
|
|
3503
|
-
},
|
|
3504
|
-
"end": {
|
|
3505
|
-
"line": 97,
|
|
3506
|
-
"column": 3,
|
|
3507
|
-
"index": 2839
|
|
3508
|
-
}
|
|
3509
|
-
},
|
|
3510
|
-
"filepath": "src/components/date_picker/super_date_picker/time_window_buttons.tsx"
|
|
3511
|
-
},
|
|
3512
|
-
{
|
|
3513
|
-
"token": "euiTimeWindowButtons.invalidShiftLabel",
|
|
3514
|
-
"defString": "Cannot shift invalid time window",
|
|
3515
|
-
"highlighting": "string",
|
|
3516
|
-
"loc": {
|
|
3517
|
-
"start": {
|
|
3518
|
-
"line": 98,
|
|
3519
|
-
"column": 34,
|
|
3520
|
-
"index": 2875
|
|
3521
|
-
},
|
|
3522
|
-
"end": {
|
|
3523
|
-
"line": 101,
|
|
3524
|
-
"column": 3,
|
|
3525
|
-
"index": 2975
|
|
3526
|
-
}
|
|
3527
|
-
},
|
|
3528
|
-
"filepath": "src/components/date_picker/super_date_picker/time_window_buttons.tsx"
|
|
3529
|
-
},
|
|
3530
|
-
{
|
|
3531
|
-
"token": "euiTimeWindowButtons.invalidZoomInLabel",
|
|
3532
|
-
"defString": "Cannot zoom in invalid time window",
|
|
3533
|
-
"highlighting": "string",
|
|
3534
|
-
"loc": {
|
|
3535
|
-
"start": {
|
|
3536
|
-
"line": 102,
|
|
3537
|
-
"column": 35,
|
|
3538
|
-
"index": 3012
|
|
3539
|
-
},
|
|
3540
|
-
"end": {
|
|
3541
|
-
"line": 105,
|
|
3542
|
-
"column": 3,
|
|
3543
|
-
"index": 3115
|
|
3544
|
-
}
|
|
3545
|
-
},
|
|
3546
|
-
"filepath": "src/components/date_picker/super_date_picker/time_window_buttons.tsx"
|
|
3547
|
-
},
|
|
3548
|
-
{
|
|
3549
|
-
"token": "euiTimeWindowButtons.cannotZoomInLabel",
|
|
3550
|
-
"defString": "Cannot zoom in any further",
|
|
3551
|
-
"highlighting": "string",
|
|
3552
|
-
"loc": {
|
|
3553
|
-
"start": {
|
|
3554
|
-
"line": 106,
|
|
3555
|
-
"column": 34,
|
|
3556
|
-
"index": 3151
|
|
3557
|
-
},
|
|
3558
|
-
"end": {
|
|
3559
|
-
"line": 109,
|
|
3560
|
-
"column": 3,
|
|
3561
|
-
"index": 3245
|
|
3562
|
-
}
|
|
3563
|
-
},
|
|
3564
|
-
"filepath": "src/components/date_picker/super_date_picker/time_window_buttons.tsx"
|
|
3565
|
-
},
|
|
3566
|
-
{
|
|
3567
|
-
"token": "euiTimeWindowButtons.invalidZoomOutLabel",
|
|
3568
|
-
"defString": "Cannot zoom out invalid time window",
|
|
3569
|
-
"highlighting": "string",
|
|
3570
|
-
"loc": {
|
|
3571
|
-
"start": {
|
|
3572
|
-
"line": 110,
|
|
3573
|
-
"column": 36,
|
|
3574
|
-
"index": 3283
|
|
3575
|
-
},
|
|
3576
|
-
"end": {
|
|
3577
|
-
"line": 113,
|
|
3578
|
-
"column": 3,
|
|
3579
|
-
"index": 3388
|
|
3580
|
-
}
|
|
3581
|
-
},
|
|
3582
|
-
"filepath": "src/components/date_picker/super_date_picker/time_window_buttons.tsx"
|
|
3583
|
-
},
|
|
3584
|
-
{
|
|
3585
|
-
"token": "euiTimeWindowButtons.previousLabel",
|
|
3586
|
-
"defString": "Previous",
|
|
3423
|
+
"token": "euiTimeWindowButtons.previousLabel",
|
|
3424
|
+
"defString": "Previous",
|
|
3587
3425
|
"highlighting": "string",
|
|
3588
3426
|
"loc": {
|
|
3589
3427
|
"start": {
|
|
@@ -5022,145 +4860,307 @@
|
|
|
5022
4860
|
"filepath": "src/components/date_picker/super_date_picker/pretty_duration.tsx"
|
|
5023
4861
|
},
|
|
5024
4862
|
{
|
|
5025
|
-
"token": "
|
|
5026
|
-
"defString": "
|
|
4863
|
+
"token": "euiRefreshInterval.fullDescriptionOff",
|
|
4864
|
+
"defString": "Refresh is off, interval set to {optionValue} {optionText}.",
|
|
5027
4865
|
"highlighting": "string",
|
|
5028
4866
|
"loc": {
|
|
5029
4867
|
"start": {
|
|
5030
|
-
"line":
|
|
4868
|
+
"line": 221,
|
|
5031
4869
|
"column": 6,
|
|
5032
|
-
"index":
|
|
4870
|
+
"index": 5894
|
|
5033
4871
|
},
|
|
5034
4872
|
"end": {
|
|
5035
|
-
"line":
|
|
4873
|
+
"line": 228,
|
|
5036
4874
|
"column": 8,
|
|
5037
|
-
"index":
|
|
4875
|
+
"index": 6124
|
|
5038
4876
|
}
|
|
5039
4877
|
},
|
|
5040
|
-
"filepath": "src/components/
|
|
4878
|
+
"filepath": "src/components/date_picker/auto_refresh/refresh_interval.tsx"
|
|
5041
4879
|
},
|
|
5042
4880
|
{
|
|
5043
|
-
"token": "
|
|
5044
|
-
"defString": "
|
|
4881
|
+
"token": "euiRefreshInterval.fullDescriptionOn",
|
|
4882
|
+
"defString": "Refresh is on, interval set to {optionValue} {optionText}.",
|
|
5045
4883
|
"highlighting": "string",
|
|
5046
4884
|
"loc": {
|
|
5047
4885
|
"start": {
|
|
5048
|
-
"line":
|
|
4886
|
+
"line": 230,
|
|
5049
4887
|
"column": 6,
|
|
5050
|
-
"index":
|
|
4888
|
+
"index": 6141
|
|
5051
4889
|
},
|
|
5052
4890
|
"end": {
|
|
5053
|
-
"line":
|
|
4891
|
+
"line": 237,
|
|
5054
4892
|
"column": 8,
|
|
5055
|
-
"index":
|
|
4893
|
+
"index": 6369
|
|
5056
4894
|
}
|
|
5057
4895
|
},
|
|
5058
|
-
"filepath": "src/components/
|
|
4896
|
+
"filepath": "src/components/date_picker/auto_refresh/refresh_interval.tsx"
|
|
5059
4897
|
},
|
|
5060
4898
|
{
|
|
5061
|
-
"token": "
|
|
5062
|
-
"defString": "
|
|
4899
|
+
"token": "euiRefreshInterval.toggleLabel",
|
|
4900
|
+
"defString": "Refresh every",
|
|
5063
4901
|
"highlighting": "string",
|
|
5064
4902
|
"loc": {
|
|
5065
4903
|
"start": {
|
|
5066
|
-
"line":
|
|
4904
|
+
"line": 252,
|
|
5067
4905
|
"column": 6,
|
|
5068
|
-
"index":
|
|
4906
|
+
"index": 6639
|
|
5069
4907
|
},
|
|
5070
4908
|
"end": {
|
|
5071
|
-
"line":
|
|
5072
|
-
"column":
|
|
5073
|
-
"index":
|
|
4909
|
+
"line": 265,
|
|
4910
|
+
"column": 7,
|
|
4911
|
+
"index": 7028
|
|
5074
4912
|
}
|
|
5075
4913
|
},
|
|
5076
|
-
"filepath": "src/components/
|
|
4914
|
+
"filepath": "src/components/date_picker/auto_refresh/refresh_interval.tsx"
|
|
5077
4915
|
},
|
|
5078
4916
|
{
|
|
5079
|
-
"token": "
|
|
5080
|
-
"defString": "
|
|
4917
|
+
"token": "euiRefreshInterval.toggleAriaLabel",
|
|
4918
|
+
"defString": "Toggle refresh",
|
|
5081
4919
|
"highlighting": "string",
|
|
5082
4920
|
"loc": {
|
|
5083
4921
|
"start": {
|
|
5084
|
-
"line":
|
|
4922
|
+
"line": 252,
|
|
5085
4923
|
"column": 6,
|
|
5086
|
-
"index":
|
|
4924
|
+
"index": 6639
|
|
5087
4925
|
},
|
|
5088
4926
|
"end": {
|
|
5089
|
-
"line":
|
|
5090
|
-
"column":
|
|
5091
|
-
"index":
|
|
4927
|
+
"line": 265,
|
|
4928
|
+
"column": 7,
|
|
4929
|
+
"index": 7028
|
|
5092
4930
|
}
|
|
5093
4931
|
},
|
|
5094
|
-
"filepath": "src/components/
|
|
4932
|
+
"filepath": "src/components/date_picker/auto_refresh/refresh_interval.tsx"
|
|
5095
4933
|
},
|
|
5096
4934
|
{
|
|
5097
|
-
"token": "
|
|
5098
|
-
"defString": "
|
|
4935
|
+
"token": "euiRefreshInterval.valueAriaLabel",
|
|
4936
|
+
"defString": "Refresh interval value",
|
|
5099
4937
|
"highlighting": "string",
|
|
5100
4938
|
"loc": {
|
|
5101
4939
|
"start": {
|
|
5102
|
-
"line":
|
|
4940
|
+
"line": 252,
|
|
5103
4941
|
"column": 6,
|
|
5104
|
-
"index":
|
|
4942
|
+
"index": 6639
|
|
5105
4943
|
},
|
|
5106
4944
|
"end": {
|
|
5107
|
-
"line":
|
|
5108
|
-
"column":
|
|
5109
|
-
"index":
|
|
4945
|
+
"line": 265,
|
|
4946
|
+
"column": 7,
|
|
4947
|
+
"index": 7028
|
|
5110
4948
|
}
|
|
5111
4949
|
},
|
|
5112
|
-
"filepath": "src/components/
|
|
4950
|
+
"filepath": "src/components/date_picker/auto_refresh/refresh_interval.tsx"
|
|
5113
4951
|
},
|
|
5114
4952
|
{
|
|
5115
|
-
"token": "
|
|
5116
|
-
"defString": "
|
|
4953
|
+
"token": "euiRefreshInterval.unitsAriaLabel",
|
|
4954
|
+
"defString": "Refresh interval units",
|
|
5117
4955
|
"highlighting": "string",
|
|
5118
4956
|
"loc": {
|
|
5119
4957
|
"start": {
|
|
5120
|
-
"line":
|
|
4958
|
+
"line": 252,
|
|
5121
4959
|
"column": 6,
|
|
5122
|
-
"index":
|
|
4960
|
+
"index": 6639
|
|
5123
4961
|
},
|
|
5124
4962
|
"end": {
|
|
5125
|
-
"line":
|
|
5126
|
-
"column":
|
|
5127
|
-
"index":
|
|
4963
|
+
"line": 265,
|
|
4964
|
+
"column": 7,
|
|
4965
|
+
"index": 7028
|
|
5128
4966
|
}
|
|
5129
4967
|
},
|
|
5130
|
-
"filepath": "src/components/
|
|
4968
|
+
"filepath": "src/components/date_picker/auto_refresh/refresh_interval.tsx"
|
|
5131
4969
|
},
|
|
5132
4970
|
{
|
|
5133
|
-
"token": "
|
|
5134
|
-
"defString": "
|
|
4971
|
+
"token": "euiAutoRefresh.autoRefreshLabel",
|
|
4972
|
+
"defString": "Auto refresh",
|
|
5135
4973
|
"highlighting": "string",
|
|
5136
4974
|
"loc": {
|
|
5137
4975
|
"start": {
|
|
5138
|
-
"line":
|
|
5139
|
-
"column":
|
|
5140
|
-
"index":
|
|
4976
|
+
"line": 50,
|
|
4977
|
+
"column": 26,
|
|
4978
|
+
"index": 1675
|
|
5141
4979
|
},
|
|
5142
4980
|
"end": {
|
|
5143
|
-
"line":
|
|
5144
|
-
"column":
|
|
5145
|
-
"index":
|
|
4981
|
+
"line": 53,
|
|
4982
|
+
"column": 3,
|
|
4983
|
+
"index": 1748
|
|
5146
4984
|
}
|
|
5147
4985
|
},
|
|
5148
|
-
"filepath": "src/components/
|
|
4986
|
+
"filepath": "src/components/date_picker/auto_refresh/auto_refresh.tsx"
|
|
5149
4987
|
},
|
|
5150
4988
|
{
|
|
5151
|
-
"token": "
|
|
5152
|
-
"defString": "
|
|
4989
|
+
"token": "euiAutoRefresh.buttonLabelOff",
|
|
4990
|
+
"defString": "Auto refresh is off",
|
|
4991
|
+
"highlighting": "string",
|
|
4992
|
+
"loc": {
|
|
4993
|
+
"start": {
|
|
4994
|
+
"line": 125,
|
|
4995
|
+
"column": 29,
|
|
4996
|
+
"index": 3638
|
|
4997
|
+
},
|
|
4998
|
+
"end": {
|
|
4999
|
+
"line": 128,
|
|
5000
|
+
"column": 3,
|
|
5001
|
+
"index": 3716
|
|
5002
|
+
}
|
|
5003
|
+
},
|
|
5004
|
+
"filepath": "src/components/date_picker/auto_refresh/auto_refresh.tsx"
|
|
5005
|
+
},
|
|
5006
|
+
{
|
|
5007
|
+
"token": "euiAutoRefresh.buttonLabelOn",
|
|
5008
|
+
"defString": "Auto refresh is on and set to {prettyInterval}",
|
|
5009
|
+
"highlighting": "string",
|
|
5010
|
+
"loc": {
|
|
5011
|
+
"start": {
|
|
5012
|
+
"line": 129,
|
|
5013
|
+
"column": 28,
|
|
5014
|
+
"index": 3746
|
|
5015
|
+
},
|
|
5016
|
+
"end": {
|
|
5017
|
+
"line": 137,
|
|
5018
|
+
"column": 3,
|
|
5019
|
+
"index": 3980
|
|
5020
|
+
}
|
|
5021
|
+
},
|
|
5022
|
+
"filepath": "src/components/date_picker/auto_refresh/auto_refresh.tsx"
|
|
5023
|
+
},
|
|
5024
|
+
{
|
|
5025
|
+
"token": "euiDataGridSchema.booleanSortTextAsc",
|
|
5026
|
+
"defString": "False-True",
|
|
5027
|
+
"highlighting": "string",
|
|
5028
|
+
"loc": {
|
|
5029
|
+
"start": {
|
|
5030
|
+
"line": 56,
|
|
5031
|
+
"column": 6,
|
|
5032
|
+
"index": 1386
|
|
5033
|
+
},
|
|
5034
|
+
"end": {
|
|
5035
|
+
"line": 59,
|
|
5036
|
+
"column": 8,
|
|
5037
|
+
"index": 1485
|
|
5038
|
+
}
|
|
5039
|
+
},
|
|
5040
|
+
"filepath": "src/components/datagrid/utils/data_grid_schema.tsx"
|
|
5041
|
+
},
|
|
5042
|
+
{
|
|
5043
|
+
"token": "euiDataGridSchema.booleanSortTextDesc",
|
|
5044
|
+
"defString": "True-False",
|
|
5045
|
+
"highlighting": "string",
|
|
5046
|
+
"loc": {
|
|
5047
|
+
"start": {
|
|
5048
|
+
"line": 62,
|
|
5049
|
+
"column": 6,
|
|
5050
|
+
"index": 1519
|
|
5051
|
+
},
|
|
5052
|
+
"end": {
|
|
5053
|
+
"line": 65,
|
|
5054
|
+
"column": 8,
|
|
5055
|
+
"index": 1619
|
|
5056
|
+
}
|
|
5057
|
+
},
|
|
5058
|
+
"filepath": "src/components/datagrid/utils/data_grid_schema.tsx"
|
|
5059
|
+
},
|
|
5060
|
+
{
|
|
5061
|
+
"token": "euiDataGridSchema.currencySortTextAsc",
|
|
5062
|
+
"defString": "Low-High",
|
|
5063
|
+
"highlighting": "string",
|
|
5064
|
+
"loc": {
|
|
5065
|
+
"start": {
|
|
5066
|
+
"line": 97,
|
|
5067
|
+
"column": 6,
|
|
5068
|
+
"index": 2701
|
|
5069
|
+
},
|
|
5070
|
+
"end": {
|
|
5071
|
+
"line": 100,
|
|
5072
|
+
"column": 8,
|
|
5073
|
+
"index": 2799
|
|
5074
|
+
}
|
|
5075
|
+
},
|
|
5076
|
+
"filepath": "src/components/datagrid/utils/data_grid_schema.tsx"
|
|
5077
|
+
},
|
|
5078
|
+
{
|
|
5079
|
+
"token": "euiDataGridSchema.currencySortTextDesc",
|
|
5080
|
+
"defString": "High-Low",
|
|
5081
|
+
"highlighting": "string",
|
|
5082
|
+
"loc": {
|
|
5083
|
+
"start": {
|
|
5084
|
+
"line": 103,
|
|
5085
|
+
"column": 6,
|
|
5086
|
+
"index": 2833
|
|
5087
|
+
},
|
|
5088
|
+
"end": {
|
|
5089
|
+
"line": 106,
|
|
5090
|
+
"column": 8,
|
|
5091
|
+
"index": 2932
|
|
5092
|
+
}
|
|
5093
|
+
},
|
|
5094
|
+
"filepath": "src/components/datagrid/utils/data_grid_schema.tsx"
|
|
5095
|
+
},
|
|
5096
|
+
{
|
|
5097
|
+
"token": "euiDataGridSchema.dateSortTextAsc",
|
|
5098
|
+
"defString": "Old-New",
|
|
5099
|
+
"highlighting": "string",
|
|
5100
|
+
"loc": {
|
|
5101
|
+
"start": {
|
|
5102
|
+
"line": 135,
|
|
5103
|
+
"column": 6,
|
|
5104
|
+
"index": 3886
|
|
5105
|
+
},
|
|
5106
|
+
"end": {
|
|
5107
|
+
"line": 135,
|
|
5108
|
+
"column": 77,
|
|
5109
|
+
"index": 3957
|
|
5110
|
+
}
|
|
5111
|
+
},
|
|
5112
|
+
"filepath": "src/components/datagrid/utils/data_grid_schema.tsx"
|
|
5113
|
+
},
|
|
5114
|
+
{
|
|
5115
|
+
"token": "euiDataGridSchema.dateSortTextDesc",
|
|
5116
|
+
"defString": "New-Old",
|
|
5117
|
+
"highlighting": "string",
|
|
5118
|
+
"loc": {
|
|
5119
|
+
"start": {
|
|
5120
|
+
"line": 138,
|
|
5121
|
+
"column": 6,
|
|
5122
|
+
"index": 3991
|
|
5123
|
+
},
|
|
5124
|
+
"end": {
|
|
5125
|
+
"line": 138,
|
|
5126
|
+
"column": 78,
|
|
5127
|
+
"index": 4063
|
|
5128
|
+
}
|
|
5129
|
+
},
|
|
5130
|
+
"filepath": "src/components/datagrid/utils/data_grid_schema.tsx"
|
|
5131
|
+
},
|
|
5132
|
+
{
|
|
5133
|
+
"token": "euiDataGridSchema.numberSortTextAsc",
|
|
5134
|
+
"defString": "Low-High",
|
|
5135
|
+
"highlighting": "string",
|
|
5136
|
+
"loc": {
|
|
5137
|
+
"start": {
|
|
5138
|
+
"line": 172,
|
|
5139
|
+
"column": 6,
|
|
5140
|
+
"index": 5160
|
|
5141
|
+
},
|
|
5142
|
+
"end": {
|
|
5143
|
+
"line": 172,
|
|
5144
|
+
"column": 80,
|
|
5145
|
+
"index": 5234
|
|
5146
|
+
}
|
|
5147
|
+
},
|
|
5148
|
+
"filepath": "src/components/datagrid/utils/data_grid_schema.tsx"
|
|
5149
|
+
},
|
|
5150
|
+
{
|
|
5151
|
+
"token": "euiDataGridSchema.numberSortTextDesc",
|
|
5152
|
+
"defString": "High-Low",
|
|
5153
5153
|
"highlighting": "string",
|
|
5154
5154
|
"loc": {
|
|
5155
5155
|
"start": {
|
|
5156
5156
|
"line": 175,
|
|
5157
5157
|
"column": 6,
|
|
5158
|
-
"index":
|
|
5158
|
+
"index": 5268
|
|
5159
5159
|
},
|
|
5160
5160
|
"end": {
|
|
5161
5161
|
"line": 178,
|
|
5162
5162
|
"column": 8,
|
|
5163
|
-
"index":
|
|
5163
|
+
"index": 5365
|
|
5164
5164
|
}
|
|
5165
5165
|
},
|
|
5166
5166
|
"filepath": "src/components/datagrid/utils/data_grid_schema.tsx"
|
|
@@ -5173,12 +5173,12 @@
|
|
|
5173
5173
|
"start": {
|
|
5174
5174
|
"line": 203,
|
|
5175
5175
|
"column": 6,
|
|
5176
|
-
"index":
|
|
5176
|
+
"index": 6051
|
|
5177
5177
|
},
|
|
5178
5178
|
"end": {
|
|
5179
5179
|
"line": 206,
|
|
5180
5180
|
"column": 8,
|
|
5181
|
-
"index":
|
|
5181
|
+
"index": 6148
|
|
5182
5182
|
}
|
|
5183
5183
|
},
|
|
5184
5184
|
"filepath": "src/components/datagrid/utils/data_grid_schema.tsx"
|
|
@@ -5191,12 +5191,12 @@
|
|
|
5191
5191
|
"start": {
|
|
5192
5192
|
"line": 209,
|
|
5193
5193
|
"column": 6,
|
|
5194
|
-
"index":
|
|
5194
|
+
"index": 6182
|
|
5195
5195
|
},
|
|
5196
5196
|
"end": {
|
|
5197
5197
|
"line": 212,
|
|
5198
5198
|
"column": 8,
|
|
5199
|
-
"index":
|
|
5199
|
+
"index": 6280
|
|
5200
5200
|
}
|
|
5201
5201
|
},
|
|
5202
5202
|
"filepath": "src/components/datagrid/utils/data_grid_schema.tsx"
|
|
@@ -5759,6 +5759,24 @@
|
|
|
5759
5759
|
},
|
|
5760
5760
|
"filepath": "src/components/datagrid/controls/fullscreen_selector.tsx"
|
|
5761
5761
|
},
|
|
5762
|
+
{
|
|
5763
|
+
"token": "euiDataGridToolbarControl.badgeAriaLabel",
|
|
5764
|
+
"defString": "Active: {count}",
|
|
5765
|
+
"highlighting": "string",
|
|
5766
|
+
"loc": {
|
|
5767
|
+
"start": {
|
|
5768
|
+
"line": 31,
|
|
5769
|
+
"column": 25,
|
|
5770
|
+
"index": 1211
|
|
5771
|
+
},
|
|
5772
|
+
"end": {
|
|
5773
|
+
"line": 40,
|
|
5774
|
+
"column": 3,
|
|
5775
|
+
"index": 1441
|
|
5776
|
+
}
|
|
5777
|
+
},
|
|
5778
|
+
"filepath": "src/components/datagrid/controls/data_grid_toolbar_control.tsx"
|
|
5779
|
+
},
|
|
5762
5780
|
{
|
|
5763
5781
|
"token": "euiDisplaySelector.densityLabel",
|
|
5764
5782
|
"defString": "Density",
|
|
@@ -5940,220 +5958,94 @@
|
|
|
5940
5958
|
"filepath": "src/components/datagrid/controls/display_selector.tsx"
|
|
5941
5959
|
},
|
|
5942
5960
|
{
|
|
5943
|
-
"token": "
|
|
5944
|
-
"defString": "
|
|
5961
|
+
"token": "euiColumnSorting.button",
|
|
5962
|
+
"defString": "Sort fields",
|
|
5945
5963
|
"highlighting": "string",
|
|
5946
5964
|
"loc": {
|
|
5947
5965
|
"start": {
|
|
5948
|
-
"line":
|
|
5949
|
-
"column":
|
|
5950
|
-
"index":
|
|
5966
|
+
"line": 66,
|
|
5967
|
+
"column": 30,
|
|
5968
|
+
"index": 2120
|
|
5951
5969
|
},
|
|
5952
5970
|
"end": {
|
|
5953
|
-
"line":
|
|
5954
|
-
"column":
|
|
5955
|
-
"index":
|
|
5971
|
+
"line": 69,
|
|
5972
|
+
"column": 5,
|
|
5973
|
+
"index": 2190
|
|
5956
5974
|
}
|
|
5957
5975
|
},
|
|
5958
|
-
"filepath": "src/components/datagrid/controls/
|
|
5976
|
+
"filepath": "src/components/datagrid/controls/column_sorting.tsx"
|
|
5959
5977
|
},
|
|
5960
5978
|
{
|
|
5961
|
-
"token": "
|
|
5962
|
-
"defString": "
|
|
5979
|
+
"token": "euiColumnSorting.sortFieldAriaLabel",
|
|
5980
|
+
"defString": "Sort by: ",
|
|
5963
5981
|
"highlighting": "string",
|
|
5964
5982
|
"loc": {
|
|
5965
5983
|
"start": {
|
|
5966
|
-
"line":
|
|
5967
|
-
"column":
|
|
5968
|
-
"index":
|
|
5984
|
+
"line": 70,
|
|
5985
|
+
"column": 31,
|
|
5986
|
+
"index": 2223
|
|
5969
5987
|
},
|
|
5970
5988
|
"end": {
|
|
5971
|
-
"line":
|
|
5972
|
-
"column":
|
|
5973
|
-
"index":
|
|
5989
|
+
"line": 73,
|
|
5990
|
+
"column": 5,
|
|
5991
|
+
"index": 2303
|
|
5974
5992
|
}
|
|
5975
5993
|
},
|
|
5976
|
-
"filepath": "src/components/datagrid/controls/
|
|
5994
|
+
"filepath": "src/components/datagrid/controls/column_sorting.tsx"
|
|
5977
5995
|
},
|
|
5978
5996
|
{
|
|
5979
|
-
"token": "
|
|
5980
|
-
"defString": "
|
|
5997
|
+
"token": "euiColumnSorting.emptySorting",
|
|
5998
|
+
"defString": "Currently no fields are sorted",
|
|
5981
5999
|
"highlighting": "string",
|
|
5982
6000
|
"loc": {
|
|
5983
6001
|
"start": {
|
|
5984
|
-
"line":
|
|
5985
|
-
"column":
|
|
5986
|
-
"index":
|
|
6002
|
+
"line": 220,
|
|
6003
|
+
"column": 14,
|
|
6004
|
+
"index": 6937
|
|
5987
6005
|
},
|
|
5988
6006
|
"end": {
|
|
5989
|
-
"line":
|
|
5990
|
-
"column":
|
|
5991
|
-
"index":
|
|
6007
|
+
"line": 223,
|
|
6008
|
+
"column": 16,
|
|
6009
|
+
"index": 7073
|
|
5992
6010
|
}
|
|
5993
6011
|
},
|
|
5994
|
-
"filepath": "src/components/datagrid/controls/
|
|
6012
|
+
"filepath": "src/components/datagrid/controls/column_sorting.tsx"
|
|
5995
6013
|
},
|
|
5996
6014
|
{
|
|
5997
|
-
"token": "
|
|
5998
|
-
"defString": "
|
|
6015
|
+
"token": "euiColumnSorting.pickFields",
|
|
6016
|
+
"defString": "Pick fields to sort by",
|
|
5999
6017
|
"highlighting": "string",
|
|
6000
6018
|
"loc": {
|
|
6001
6019
|
"start": {
|
|
6002
|
-
"line":
|
|
6003
|
-
"column":
|
|
6004
|
-
"index":
|
|
6020
|
+
"line": 253,
|
|
6021
|
+
"column": 24,
|
|
6022
|
+
"index": 8304
|
|
6005
6023
|
},
|
|
6006
6024
|
"end": {
|
|
6007
|
-
"line":
|
|
6008
|
-
"column":
|
|
6009
|
-
"index":
|
|
6025
|
+
"line": 256,
|
|
6026
|
+
"column": 26,
|
|
6027
|
+
"index": 8460
|
|
6010
6028
|
}
|
|
6011
6029
|
},
|
|
6012
|
-
"filepath": "src/components/datagrid/controls/
|
|
6030
|
+
"filepath": "src/components/datagrid/controls/column_sorting.tsx"
|
|
6013
6031
|
},
|
|
6014
6032
|
{
|
|
6015
|
-
"token": "
|
|
6016
|
-
"defString": "
|
|
6033
|
+
"token": "euiColumnSorting.clearAll",
|
|
6034
|
+
"defString": "Clear sorting",
|
|
6017
6035
|
"highlighting": "string",
|
|
6018
6036
|
"loc": {
|
|
6019
6037
|
"start": {
|
|
6020
|
-
"line":
|
|
6021
|
-
"column":
|
|
6022
|
-
"index":
|
|
6038
|
+
"line": 328,
|
|
6039
|
+
"column": 20,
|
|
6040
|
+
"index": 11814
|
|
6023
6041
|
},
|
|
6024
6042
|
"end": {
|
|
6025
|
-
"line":
|
|
6026
|
-
"column":
|
|
6027
|
-
"index":
|
|
6043
|
+
"line": 331,
|
|
6044
|
+
"column": 22,
|
|
6045
|
+
"index": 11947
|
|
6028
6046
|
}
|
|
6029
6047
|
},
|
|
6030
|
-
"filepath": "src/components/datagrid/controls/
|
|
6031
|
-
},
|
|
6032
|
-
{
|
|
6033
|
-
"token": "euiColumnSortingDraggable.removeSortLabel",
|
|
6034
|
-
"defString": "Remove {display} from data grid sort",
|
|
6035
|
-
"highlighting": "string",
|
|
6036
|
-
"loc": {
|
|
6037
|
-
"start": {
|
|
6038
|
-
"line": 130,
|
|
6039
|
-
"column": 12,
|
|
6040
|
-
"index": 4136
|
|
6041
|
-
},
|
|
6042
|
-
"end": {
|
|
6043
|
-
"line": 134,
|
|
6044
|
-
"column": 13,
|
|
6045
|
-
"index": 4318
|
|
6046
|
-
}
|
|
6047
|
-
},
|
|
6048
|
-
"filepath": "src/components/datagrid/controls/column_sorting_draggable.tsx"
|
|
6049
|
-
},
|
|
6050
|
-
{
|
|
6051
|
-
"token": "euiColumnSortingDraggable.toggleLegend",
|
|
6052
|
-
"defString": "Select sorting method for {display}",
|
|
6053
|
-
"highlighting": "string",
|
|
6054
|
-
"loc": {
|
|
6055
|
-
"start": {
|
|
6056
|
-
"line": 178,
|
|
6057
|
-
"column": 12,
|
|
6058
|
-
"index": 5821
|
|
6059
|
-
},
|
|
6060
|
-
"end": {
|
|
6061
|
-
"line": 182,
|
|
6062
|
-
"column": 13,
|
|
6063
|
-
"index": 5999
|
|
6064
|
-
}
|
|
6065
|
-
},
|
|
6066
|
-
"filepath": "src/components/datagrid/controls/column_sorting_draggable.tsx"
|
|
6067
|
-
},
|
|
6068
|
-
{
|
|
6069
|
-
"token": "euiColumnSorting.button",
|
|
6070
|
-
"defString": "Sort fields",
|
|
6071
|
-
"highlighting": "string",
|
|
6072
|
-
"loc": {
|
|
6073
|
-
"start": {
|
|
6074
|
-
"line": 66,
|
|
6075
|
-
"column": 30,
|
|
6076
|
-
"index": 2120
|
|
6077
|
-
},
|
|
6078
|
-
"end": {
|
|
6079
|
-
"line": 69,
|
|
6080
|
-
"column": 5,
|
|
6081
|
-
"index": 2190
|
|
6082
|
-
}
|
|
6083
|
-
},
|
|
6084
|
-
"filepath": "src/components/datagrid/controls/column_sorting.tsx"
|
|
6085
|
-
},
|
|
6086
|
-
{
|
|
6087
|
-
"token": "euiColumnSorting.sortFieldAriaLabel",
|
|
6088
|
-
"defString": "Sort by: ",
|
|
6089
|
-
"highlighting": "string",
|
|
6090
|
-
"loc": {
|
|
6091
|
-
"start": {
|
|
6092
|
-
"line": 70,
|
|
6093
|
-
"column": 31,
|
|
6094
|
-
"index": 2223
|
|
6095
|
-
},
|
|
6096
|
-
"end": {
|
|
6097
|
-
"line": 73,
|
|
6098
|
-
"column": 5,
|
|
6099
|
-
"index": 2303
|
|
6100
|
-
}
|
|
6101
|
-
},
|
|
6102
|
-
"filepath": "src/components/datagrid/controls/column_sorting.tsx"
|
|
6103
|
-
},
|
|
6104
|
-
{
|
|
6105
|
-
"token": "euiColumnSorting.emptySorting",
|
|
6106
|
-
"defString": "Currently no fields are sorted",
|
|
6107
|
-
"highlighting": "string",
|
|
6108
|
-
"loc": {
|
|
6109
|
-
"start": {
|
|
6110
|
-
"line": 220,
|
|
6111
|
-
"column": 14,
|
|
6112
|
-
"index": 6937
|
|
6113
|
-
},
|
|
6114
|
-
"end": {
|
|
6115
|
-
"line": 223,
|
|
6116
|
-
"column": 16,
|
|
6117
|
-
"index": 7073
|
|
6118
|
-
}
|
|
6119
|
-
},
|
|
6120
|
-
"filepath": "src/components/datagrid/controls/column_sorting.tsx"
|
|
6121
|
-
},
|
|
6122
|
-
{
|
|
6123
|
-
"token": "euiColumnSorting.pickFields",
|
|
6124
|
-
"defString": "Pick fields to sort by",
|
|
6125
|
-
"highlighting": "string",
|
|
6126
|
-
"loc": {
|
|
6127
|
-
"start": {
|
|
6128
|
-
"line": 253,
|
|
6129
|
-
"column": 24,
|
|
6130
|
-
"index": 8296
|
|
6131
|
-
},
|
|
6132
|
-
"end": {
|
|
6133
|
-
"line": 256,
|
|
6134
|
-
"column": 26,
|
|
6135
|
-
"index": 8452
|
|
6136
|
-
}
|
|
6137
|
-
},
|
|
6138
|
-
"filepath": "src/components/datagrid/controls/column_sorting.tsx"
|
|
6139
|
-
},
|
|
6140
|
-
{
|
|
6141
|
-
"token": "euiColumnSorting.clearAll",
|
|
6142
|
-
"defString": "Clear sorting",
|
|
6143
|
-
"highlighting": "string",
|
|
6144
|
-
"loc": {
|
|
6145
|
-
"start": {
|
|
6146
|
-
"line": 328,
|
|
6147
|
-
"column": 20,
|
|
6148
|
-
"index": 11806
|
|
6149
|
-
},
|
|
6150
|
-
"end": {
|
|
6151
|
-
"line": 331,
|
|
6152
|
-
"column": 22,
|
|
6153
|
-
"index": 11939
|
|
6154
|
-
}
|
|
6155
|
-
},
|
|
6156
|
-
"filepath": "src/components/datagrid/controls/column_sorting.tsx"
|
|
6048
|
+
"filepath": "src/components/datagrid/controls/column_sorting.tsx"
|
|
6157
6049
|
},
|
|
6158
6050
|
{
|
|
6159
6051
|
"token": "euiColumnSelector.dragHandleAriaLabel",
|
|
@@ -6181,12 +6073,12 @@
|
|
|
6181
6073
|
"start": {
|
|
6182
6074
|
"line": 203,
|
|
6183
6075
|
"column": 12,
|
|
6184
|
-
"index":
|
|
6076
|
+
"index": 6382
|
|
6185
6077
|
},
|
|
6186
6078
|
"end": {
|
|
6187
6079
|
"line": 203,
|
|
6188
6080
|
"column": 74,
|
|
6189
|
-
"index":
|
|
6081
|
+
"index": 6444
|
|
6190
6082
|
}
|
|
6191
6083
|
},
|
|
6192
6084
|
"filepath": "src/components/datagrid/controls/column_selector.tsx"
|
|
@@ -6199,12 +6091,12 @@
|
|
|
6199
6091
|
"start": {
|
|
6200
6092
|
"line": 209,
|
|
6201
6093
|
"column": 12,
|
|
6202
|
-
"index":
|
|
6094
|
+
"index": 6590
|
|
6203
6095
|
},
|
|
6204
6096
|
"end": {
|
|
6205
6097
|
"line": 215,
|
|
6206
6098
|
"column": 13,
|
|
6207
|
-
"index":
|
|
6099
|
+
"index": 6802
|
|
6208
6100
|
}
|
|
6209
6101
|
},
|
|
6210
6102
|
"filepath": "src/components/datagrid/controls/column_selector.tsx"
|
|
@@ -6217,12 +6109,12 @@
|
|
|
6217
6109
|
"start": {
|
|
6218
6110
|
"line": 209,
|
|
6219
6111
|
"column": 12,
|
|
6220
|
-
"index":
|
|
6112
|
+
"index": 6590
|
|
6221
6113
|
},
|
|
6222
6114
|
"end": {
|
|
6223
6115
|
"line": 215,
|
|
6224
6116
|
"column": 13,
|
|
6225
|
-
"index":
|
|
6117
|
+
"index": 6802
|
|
6226
6118
|
}
|
|
6227
6119
|
},
|
|
6228
6120
|
"filepath": "src/components/datagrid/controls/column_selector.tsx"
|
|
@@ -6235,12 +6127,12 @@
|
|
|
6235
6127
|
"start": {
|
|
6236
6128
|
"line": 340,
|
|
6237
6129
|
"column": 18,
|
|
6238
|
-
"index":
|
|
6130
|
+
"index": 12118
|
|
6239
6131
|
},
|
|
6240
6132
|
"end": {
|
|
6241
6133
|
"line": 343,
|
|
6242
6134
|
"column": 20,
|
|
6243
|
-
"index":
|
|
6135
|
+
"index": 12242
|
|
6244
6136
|
}
|
|
6245
6137
|
},
|
|
6246
6138
|
"filepath": "src/components/datagrid/controls/column_selector.tsx"
|
|
@@ -6253,159 +6145,123 @@
|
|
|
6253
6145
|
"start": {
|
|
6254
6146
|
"line": 353,
|
|
6255
6147
|
"column": 18,
|
|
6256
|
-
"index":
|
|
6148
|
+
"index": 12602
|
|
6257
6149
|
},
|
|
6258
6150
|
"end": {
|
|
6259
6151
|
"line": 356,
|
|
6260
6152
|
"column": 20,
|
|
6261
|
-
"index":
|
|
6153
|
+
"index": 12724
|
|
6262
6154
|
}
|
|
6263
6155
|
},
|
|
6264
6156
|
"filepath": "src/components/datagrid/controls/column_selector.tsx"
|
|
6265
6157
|
},
|
|
6266
6158
|
{
|
|
6267
|
-
"token": "
|
|
6268
|
-
"defString": "
|
|
6159
|
+
"token": "euiColumnSortingDraggable.defaultSortAsc",
|
|
6160
|
+
"defString": "A-Z",
|
|
6269
6161
|
"highlighting": "string",
|
|
6270
6162
|
"loc": {
|
|
6271
6163
|
"start": {
|
|
6272
|
-
"line":
|
|
6273
|
-
"column":
|
|
6274
|
-
"index":
|
|
6164
|
+
"line": 27,
|
|
6165
|
+
"column": 2,
|
|
6166
|
+
"index": 1166
|
|
6275
6167
|
},
|
|
6276
6168
|
"end": {
|
|
6277
|
-
"line":
|
|
6278
|
-
"column":
|
|
6279
|
-
"index":
|
|
6169
|
+
"line": 27,
|
|
6170
|
+
"column": 76,
|
|
6171
|
+
"index": 1240
|
|
6280
6172
|
}
|
|
6281
6173
|
},
|
|
6282
|
-
"filepath": "src/components/
|
|
6174
|
+
"filepath": "src/components/datagrid/controls/column_sorting_draggable.tsx"
|
|
6283
6175
|
},
|
|
6284
6176
|
{
|
|
6285
|
-
"token": "
|
|
6286
|
-
"defString": "
|
|
6177
|
+
"token": "euiColumnSortingDraggable.defaultSortDesc",
|
|
6178
|
+
"defString": "Z-A",
|
|
6287
6179
|
"highlighting": "string",
|
|
6288
6180
|
"loc": {
|
|
6289
6181
|
"start": {
|
|
6290
|
-
"line":
|
|
6291
|
-
"column":
|
|
6292
|
-
"index":
|
|
6182
|
+
"line": 30,
|
|
6183
|
+
"column": 2,
|
|
6184
|
+
"index": 1284
|
|
6293
6185
|
},
|
|
6294
6186
|
"end": {
|
|
6295
|
-
"line":
|
|
6296
|
-
"column":
|
|
6297
|
-
"index":
|
|
6187
|
+
"line": 30,
|
|
6188
|
+
"column": 77,
|
|
6189
|
+
"index": 1359
|
|
6298
6190
|
}
|
|
6299
6191
|
},
|
|
6300
|
-
"filepath": "src/components/
|
|
6192
|
+
"filepath": "src/components/datagrid/controls/column_sorting_draggable.tsx"
|
|
6301
6193
|
},
|
|
6302
6194
|
{
|
|
6303
|
-
"token": "
|
|
6304
|
-
"defString": "
|
|
6195
|
+
"token": "euiColumnSortingDraggable.dragHandleAriaLabel",
|
|
6196
|
+
"defString": "Drag handle",
|
|
6305
6197
|
"highlighting": "string",
|
|
6306
6198
|
"loc": {
|
|
6307
6199
|
"start": {
|
|
6308
|
-
"line":
|
|
6309
|
-
"column":
|
|
6310
|
-
"index":
|
|
6200
|
+
"line": 71,
|
|
6201
|
+
"column": 30,
|
|
6202
|
+
"index": 2323
|
|
6311
6203
|
},
|
|
6312
6204
|
"end": {
|
|
6313
|
-
"line":
|
|
6314
|
-
"column":
|
|
6315
|
-
"index":
|
|
6205
|
+
"line": 74,
|
|
6206
|
+
"column": 3,
|
|
6207
|
+
"index": 2409
|
|
6316
6208
|
}
|
|
6317
6209
|
},
|
|
6318
|
-
"filepath": "src/components/
|
|
6210
|
+
"filepath": "src/components/datagrid/controls/column_sorting_draggable.tsx"
|
|
6319
6211
|
},
|
|
6320
6212
|
{
|
|
6321
|
-
"token": "
|
|
6322
|
-
"defString": "
|
|
6213
|
+
"token": "euiColumnSortingDraggable.activeSortLabel",
|
|
6214
|
+
"defString": "{display} is sorting this data grid",
|
|
6323
6215
|
"highlighting": "string",
|
|
6324
6216
|
"loc": {
|
|
6325
6217
|
"start": {
|
|
6326
|
-
"line":
|
|
6327
|
-
"column":
|
|
6328
|
-
"index":
|
|
6218
|
+
"line": 120,
|
|
6219
|
+
"column": 14,
|
|
6220
|
+
"index": 3759
|
|
6329
6221
|
},
|
|
6330
6222
|
"end": {
|
|
6331
|
-
"line":
|
|
6332
|
-
"column":
|
|
6333
|
-
"index":
|
|
6223
|
+
"line": 124,
|
|
6224
|
+
"column": 15,
|
|
6225
|
+
"index": 3948
|
|
6334
6226
|
}
|
|
6335
6227
|
},
|
|
6336
|
-
"filepath": "src/components/
|
|
6228
|
+
"filepath": "src/components/datagrid/controls/column_sorting_draggable.tsx"
|
|
6337
6229
|
},
|
|
6338
6230
|
{
|
|
6339
|
-
"token": "
|
|
6340
|
-
"defString": "{
|
|
6231
|
+
"token": "euiColumnSortingDraggable.removeSortLabel",
|
|
6232
|
+
"defString": "Remove {display} from data grid sort",
|
|
6341
6233
|
"highlighting": "string",
|
|
6342
6234
|
"loc": {
|
|
6343
6235
|
"start": {
|
|
6344
|
-
"line":
|
|
6236
|
+
"line": 130,
|
|
6345
6237
|
"column": 12,
|
|
6346
|
-
"index":
|
|
6347
|
-
},
|
|
6348
|
-
"end": {
|
|
6349
|
-
"line": 473,
|
|
6350
|
-
"column": 14,
|
|
6351
|
-
"index": 14217
|
|
6352
|
-
}
|
|
6353
|
-
},
|
|
6354
|
-
"filepath": "src/components/combo_box/combo_box_options_list/combo_box_options_list.tsx"
|
|
6355
|
-
},
|
|
6356
|
-
{
|
|
6357
|
-
"token": "euiComboBoxOptionsList.noAvailableOptions",
|
|
6358
|
-
"defString": "There aren't any options available",
|
|
6359
|
-
"highlighting": "string",
|
|
6360
|
-
"loc": {
|
|
6361
|
-
"start": {
|
|
6362
|
-
"line": 480,
|
|
6363
|
-
"column": 10,
|
|
6364
|
-
"index": 14336
|
|
6238
|
+
"index": 4136
|
|
6365
6239
|
},
|
|
6366
6240
|
"end": {
|
|
6367
|
-
"line":
|
|
6368
|
-
"column":
|
|
6369
|
-
"index":
|
|
6241
|
+
"line": 134,
|
|
6242
|
+
"column": 13,
|
|
6243
|
+
"index": 4318
|
|
6370
6244
|
}
|
|
6371
6245
|
},
|
|
6372
|
-
"filepath": "src/components/
|
|
6246
|
+
"filepath": "src/components/datagrid/controls/column_sorting_draggable.tsx"
|
|
6373
6247
|
},
|
|
6374
6248
|
{
|
|
6375
|
-
"token": "
|
|
6376
|
-
"defString": "
|
|
6249
|
+
"token": "euiColumnSortingDraggable.toggleLegend",
|
|
6250
|
+
"defString": "Select sorting method for {display}",
|
|
6377
6251
|
"highlighting": "string",
|
|
6378
6252
|
"loc": {
|
|
6379
6253
|
"start": {
|
|
6380
|
-
"line":
|
|
6381
|
-
"column": 10,
|
|
6382
|
-
"index": 14589
|
|
6383
|
-
},
|
|
6384
|
-
"end": {
|
|
6385
|
-
"line": 492,
|
|
6254
|
+
"line": 178,
|
|
6386
6255
|
"column": 12,
|
|
6387
|
-
"index":
|
|
6388
|
-
}
|
|
6389
|
-
},
|
|
6390
|
-
"filepath": "src/components/combo_box/combo_box_options_list/combo_box_options_list.tsx"
|
|
6391
|
-
},
|
|
6392
|
-
{
|
|
6393
|
-
"token": "euiComboBoxPill.removeSelection",
|
|
6394
|
-
"defString": "Remove {children} from selection in this group",
|
|
6395
|
-
"highlighting": "string",
|
|
6396
|
-
"loc": {
|
|
6397
|
-
"start": {
|
|
6398
|
-
"line": 67,
|
|
6399
|
-
"column": 6,
|
|
6400
|
-
"index": 2037
|
|
6256
|
+
"index": 5821
|
|
6401
6257
|
},
|
|
6402
6258
|
"end": {
|
|
6403
|
-
"line":
|
|
6404
|
-
"column":
|
|
6405
|
-
"index":
|
|
6259
|
+
"line": 182,
|
|
6260
|
+
"column": 13,
|
|
6261
|
+
"index": 5999
|
|
6406
6262
|
}
|
|
6407
6263
|
},
|
|
6408
|
-
"filepath": "src/components/
|
|
6264
|
+
"filepath": "src/components/datagrid/controls/column_sorting_draggable.tsx"
|
|
6409
6265
|
},
|
|
6410
6266
|
{
|
|
6411
6267
|
"token": "euiCollapsibleNavButton.ariaLabelExpand",
|
|
@@ -6533,6 +6389,150 @@
|
|
|
6533
6389
|
},
|
|
6534
6390
|
"filepath": "src/components/collapsible_nav_beta/_kibana_solution/collapsible_nav_kibana_solution.tsx"
|
|
6535
6391
|
},
|
|
6392
|
+
{
|
|
6393
|
+
"token": "euiComboBoxOptionsList.loadingOptions",
|
|
6394
|
+
"defString": "Loading options",
|
|
6395
|
+
"highlighting": "string",
|
|
6396
|
+
"loc": {
|
|
6397
|
+
"start": {
|
|
6398
|
+
"line": 385,
|
|
6399
|
+
"column": 12,
|
|
6400
|
+
"index": 11005
|
|
6401
|
+
},
|
|
6402
|
+
"end": {
|
|
6403
|
+
"line": 388,
|
|
6404
|
+
"column": 14,
|
|
6405
|
+
"index": 11128
|
|
6406
|
+
}
|
|
6407
|
+
},
|
|
6408
|
+
"filepath": "src/components/combo_box/combo_box_options_list/combo_box_options_list.tsx"
|
|
6409
|
+
},
|
|
6410
|
+
{
|
|
6411
|
+
"token": "euiComboBoxOptionsList.delimiterMessage",
|
|
6412
|
+
"defString": "Add each item separated by {delimiter}",
|
|
6413
|
+
"highlighting": "string",
|
|
6414
|
+
"loc": {
|
|
6415
|
+
"start": {
|
|
6416
|
+
"line": 398,
|
|
6417
|
+
"column": 16,
|
|
6418
|
+
"index": 11567
|
|
6419
|
+
},
|
|
6420
|
+
"end": {
|
|
6421
|
+
"line": 402,
|
|
6422
|
+
"column": 18,
|
|
6423
|
+
"index": 11798
|
|
6424
|
+
}
|
|
6425
|
+
},
|
|
6426
|
+
"filepath": "src/components/combo_box/combo_box_options_list/combo_box_options_list.tsx"
|
|
6427
|
+
},
|
|
6428
|
+
{
|
|
6429
|
+
"token": "euiComboBoxOptionsList.alreadyAdded",
|
|
6430
|
+
"defString": "{label} has already been added",
|
|
6431
|
+
"highlighting": "string",
|
|
6432
|
+
"loc": {
|
|
6433
|
+
"start": {
|
|
6434
|
+
"line": 417,
|
|
6435
|
+
"column": 16,
|
|
6436
|
+
"index": 12227
|
|
6437
|
+
},
|
|
6438
|
+
"end": {
|
|
6439
|
+
"line": 423,
|
|
6440
|
+
"column": 18,
|
|
6441
|
+
"index": 12500
|
|
6442
|
+
}
|
|
6443
|
+
},
|
|
6444
|
+
"filepath": "src/components/combo_box/combo_box_options_list/combo_box_options_list.tsx"
|
|
6445
|
+
},
|
|
6446
|
+
{
|
|
6447
|
+
"token": "euiComboBoxOptionsList.createCustomOption",
|
|
6448
|
+
"defString": "Add {searchValue} as a custom option",
|
|
6449
|
+
"highlighting": "string",
|
|
6450
|
+
"loc": {
|
|
6451
|
+
"start": {
|
|
6452
|
+
"line": 452,
|
|
6453
|
+
"column": 20,
|
|
6454
|
+
"index": 13491
|
|
6455
|
+
},
|
|
6456
|
+
"end": {
|
|
6457
|
+
"line": 458,
|
|
6458
|
+
"column": 22,
|
|
6459
|
+
"index": 13789
|
|
6460
|
+
}
|
|
6461
|
+
},
|
|
6462
|
+
"filepath": "src/components/combo_box/combo_box_options_list/combo_box_options_list.tsx"
|
|
6463
|
+
},
|
|
6464
|
+
{
|
|
6465
|
+
"token": "euiComboBoxOptionsList.noMatchingOptions",
|
|
6466
|
+
"defString": "{searchValue} doesn't match any options",
|
|
6467
|
+
"highlighting": "string",
|
|
6468
|
+
"loc": {
|
|
6469
|
+
"start": {
|
|
6470
|
+
"line": 469,
|
|
6471
|
+
"column": 12,
|
|
6472
|
+
"index": 13993
|
|
6473
|
+
},
|
|
6474
|
+
"end": {
|
|
6475
|
+
"line": 473,
|
|
6476
|
+
"column": 14,
|
|
6477
|
+
"index": 14214
|
|
6478
|
+
}
|
|
6479
|
+
},
|
|
6480
|
+
"filepath": "src/components/combo_box/combo_box_options_list/combo_box_options_list.tsx"
|
|
6481
|
+
},
|
|
6482
|
+
{
|
|
6483
|
+
"token": "euiComboBoxOptionsList.noAvailableOptions",
|
|
6484
|
+
"defString": "There aren't any options available",
|
|
6485
|
+
"highlighting": "string",
|
|
6486
|
+
"loc": {
|
|
6487
|
+
"start": {
|
|
6488
|
+
"line": 480,
|
|
6489
|
+
"column": 10,
|
|
6490
|
+
"index": 14333
|
|
6491
|
+
},
|
|
6492
|
+
"end": {
|
|
6493
|
+
"line": 483,
|
|
6494
|
+
"column": 12,
|
|
6495
|
+
"index": 14473
|
|
6496
|
+
}
|
|
6497
|
+
},
|
|
6498
|
+
"filepath": "src/components/combo_box/combo_box_options_list/combo_box_options_list.tsx"
|
|
6499
|
+
},
|
|
6500
|
+
{
|
|
6501
|
+
"token": "euiComboBoxOptionsList.allOptionsSelected",
|
|
6502
|
+
"defString": "You've selected all available options",
|
|
6503
|
+
"highlighting": "string",
|
|
6504
|
+
"loc": {
|
|
6505
|
+
"start": {
|
|
6506
|
+
"line": 489,
|
|
6507
|
+
"column": 10,
|
|
6508
|
+
"index": 14586
|
|
6509
|
+
},
|
|
6510
|
+
"end": {
|
|
6511
|
+
"line": 492,
|
|
6512
|
+
"column": 12,
|
|
6513
|
+
"index": 14729
|
|
6514
|
+
}
|
|
6515
|
+
},
|
|
6516
|
+
"filepath": "src/components/combo_box/combo_box_options_list/combo_box_options_list.tsx"
|
|
6517
|
+
},
|
|
6518
|
+
{
|
|
6519
|
+
"token": "euiComboBoxPill.removeSelection",
|
|
6520
|
+
"defString": "Remove {children} from selection in this group",
|
|
6521
|
+
"highlighting": "string",
|
|
6522
|
+
"loc": {
|
|
6523
|
+
"start": {
|
|
6524
|
+
"line": 67,
|
|
6525
|
+
"column": 6,
|
|
6526
|
+
"index": 2037
|
|
6527
|
+
},
|
|
6528
|
+
"end": {
|
|
6529
|
+
"line": 71,
|
|
6530
|
+
"column": 7,
|
|
6531
|
+
"index": 2196
|
|
6532
|
+
}
|
|
6533
|
+
},
|
|
6534
|
+
"filepath": "src/components/combo_box/combo_box_input/combo_box_pill.tsx"
|
|
6535
|
+
},
|
|
6536
6536
|
{
|
|
6537
6537
|
"token": "euiCardSelect.selected",
|
|
6538
6538
|
"defString": "Selected",
|
|
@@ -6629,14 +6629,14 @@
|
|
|
6629
6629
|
"highlighting": "string",
|
|
6630
6630
|
"loc": {
|
|
6631
6631
|
"start": {
|
|
6632
|
-
"line":
|
|
6632
|
+
"line": 96,
|
|
6633
6633
|
"column": 22,
|
|
6634
|
-
"index":
|
|
6634
|
+
"index": 3210
|
|
6635
6635
|
},
|
|
6636
6636
|
"end": {
|
|
6637
|
-
"line":
|
|
6637
|
+
"line": 99,
|
|
6638
6638
|
"column": 3,
|
|
6639
|
-
"index":
|
|
6639
|
+
"index": 3290
|
|
6640
6640
|
}
|
|
6641
6641
|
},
|
|
6642
6642
|
"filepath": "src/components/date_picker/super_date_picker/quick_select_popover/quick_select_popover.tsx"
|
|
@@ -6685,12 +6685,12 @@
|
|
|
6685
6685
|
"start": {
|
|
6686
6686
|
"line": 200,
|
|
6687
6687
|
"column": 12,
|
|
6688
|
-
"index":
|
|
6688
|
+
"index": 5965
|
|
6689
6689
|
},
|
|
6690
6690
|
"end": {
|
|
6691
6691
|
"line": 203,
|
|
6692
6692
|
"column": 13,
|
|
6693
|
-
"index":
|
|
6693
|
+
"index": 6075
|
|
6694
6694
|
}
|
|
6695
6695
|
},
|
|
6696
6696
|
"filepath": "src/components/date_picker/super_date_picker/quick_select_popover/quick_select.tsx"
|
|
@@ -6703,12 +6703,12 @@
|
|
|
6703
6703
|
"start": {
|
|
6704
6704
|
"line": 218,
|
|
6705
6705
|
"column": 12,
|
|
6706
|
-
"index":
|
|
6706
|
+
"index": 6597
|
|
6707
6707
|
},
|
|
6708
6708
|
"end": {
|
|
6709
6709
|
"line": 218,
|
|
6710
6710
|
"column": 76,
|
|
6711
|
-
"index":
|
|
6711
|
+
"index": 6661
|
|
6712
6712
|
}
|
|
6713
6713
|
},
|
|
6714
6714
|
"filepath": "src/components/date_picker/super_date_picker/quick_select_popover/quick_select.tsx"
|
|
@@ -6721,12 +6721,12 @@
|
|
|
6721
6721
|
"start": {
|
|
6722
6722
|
"line": 233,
|
|
6723
6723
|
"column": 12,
|
|
6724
|
-
"index":
|
|
6724
|
+
"index": 7183
|
|
6725
6725
|
},
|
|
6726
6726
|
"end": {
|
|
6727
6727
|
"line": 233,
|
|
6728
6728
|
"column": 76,
|
|
6729
|
-
"index":
|
|
6729
|
+
"index": 7247
|
|
6730
6730
|
}
|
|
6731
6731
|
},
|
|
6732
6732
|
"filepath": "src/components/date_picker/super_date_picker/quick_select_popover/quick_select.tsx"
|
|
@@ -6739,12 +6739,12 @@
|
|
|
6739
6739
|
"start": {
|
|
6740
6740
|
"line": 247,
|
|
6741
6741
|
"column": 12,
|
|
6742
|
-
"index":
|
|
6742
|
+
"index": 7729
|
|
6743
6743
|
},
|
|
6744
6744
|
"end": {
|
|
6745
6745
|
"line": 247,
|
|
6746
6746
|
"column": 74,
|
|
6747
|
-
"index":
|
|
6747
|
+
"index": 7791
|
|
6748
6748
|
}
|
|
6749
6749
|
},
|
|
6750
6750
|
"filepath": "src/components/date_picker/super_date_picker/quick_select_popover/quick_select.tsx"
|
|
@@ -6757,12 +6757,12 @@
|
|
|
6757
6757
|
"start": {
|
|
6758
6758
|
"line": 270,
|
|
6759
6759
|
"column": 14,
|
|
6760
|
-
"index":
|
|
6760
|
+
"index": 8674
|
|
6761
6761
|
},
|
|
6762
6762
|
"end": {
|
|
6763
6763
|
"line": 270,
|
|
6764
6764
|
"column": 76,
|
|
6765
|
-
"index":
|
|
6765
|
+
"index": 8736
|
|
6766
6766
|
}
|
|
6767
6767
|
},
|
|
6768
6768
|
"filepath": "src/components/date_picker/super_date_picker/quick_select_popover/quick_select.tsx"
|
|
@@ -6775,12 +6775,12 @@
|
|
|
6775
6775
|
"start": {
|
|
6776
6776
|
"line": 276,
|
|
6777
6777
|
"column": 12,
|
|
6778
|
-
"index":
|
|
6778
|
+
"index": 8893
|
|
6779
6779
|
},
|
|
6780
6780
|
"end": {
|
|
6781
6781
|
"line": 284,
|
|
6782
6782
|
"column": 14,
|
|
6783
|
-
"index":
|
|
6783
|
+
"index": 9167
|
|
6784
6784
|
}
|
|
6785
6785
|
},
|
|
6786
6786
|
"filepath": "src/components/date_picker/super_date_picker/quick_select_popover/quick_select.tsx"
|
|
@@ -7038,76 +7038,76 @@
|
|
|
7038
7038
|
"filepath": "src/components/date_picker/super_date_picker/date_popover/date_popover_content.tsx"
|
|
7039
7039
|
},
|
|
7040
7040
|
{
|
|
7041
|
-
"token": "
|
|
7042
|
-
"defString": "
|
|
7041
|
+
"token": "euiAbsoluteTab.dateFormatButtonLabel",
|
|
7042
|
+
"defString": "Parse date",
|
|
7043
7043
|
"highlighting": "string",
|
|
7044
7044
|
"loc": {
|
|
7045
7045
|
"start": {
|
|
7046
|
-
"line":
|
|
7047
|
-
"column":
|
|
7048
|
-
"index":
|
|
7046
|
+
"line": 95,
|
|
7047
|
+
"column": 28,
|
|
7048
|
+
"index": 2852
|
|
7049
7049
|
},
|
|
7050
7050
|
"end": {
|
|
7051
|
-
"line":
|
|
7051
|
+
"line": 98,
|
|
7052
7052
|
"column": 3,
|
|
7053
|
-
"index":
|
|
7053
|
+
"index": 2928
|
|
7054
7054
|
}
|
|
7055
7055
|
},
|
|
7056
|
-
"filepath": "src/components/date_picker/super_date_picker/date_popover/
|
|
7056
|
+
"filepath": "src/components/date_picker/super_date_picker/date_popover/absolute_tab.tsx"
|
|
7057
7057
|
},
|
|
7058
7058
|
{
|
|
7059
|
-
"token": "
|
|
7060
|
-
"defString": "
|
|
7059
|
+
"token": "euiAbsoluteTab.dateFormatError",
|
|
7060
|
+
"defString": "Allowed formats: {dateFormat}, ISO 8601, RFC 2822, or Unix timestamp.",
|
|
7061
7061
|
"highlighting": "string",
|
|
7062
7062
|
"loc": {
|
|
7063
7063
|
"start": {
|
|
7064
|
-
"line":
|
|
7065
|
-
"column":
|
|
7066
|
-
"index":
|
|
7064
|
+
"line": 99,
|
|
7065
|
+
"column": 26,
|
|
7066
|
+
"index": 2956
|
|
7067
7067
|
},
|
|
7068
7068
|
"end": {
|
|
7069
|
-
"line":
|
|
7069
|
+
"line": 103,
|
|
7070
7070
|
"column": 3,
|
|
7071
|
-
"index":
|
|
7071
|
+
"index": 3138
|
|
7072
7072
|
}
|
|
7073
7073
|
},
|
|
7074
|
-
"filepath": "src/components/date_picker/super_date_picker/date_popover/
|
|
7074
|
+
"filepath": "src/components/date_picker/super_date_picker/date_popover/absolute_tab.tsx"
|
|
7075
7075
|
},
|
|
7076
7076
|
{
|
|
7077
|
-
"token": "
|
|
7078
|
-
"defString": "
|
|
7077
|
+
"token": "euiDatePopoverButton.invalidTitle",
|
|
7078
|
+
"defString": "Invalid date: {title}",
|
|
7079
7079
|
"highlighting": "string",
|
|
7080
7080
|
"loc": {
|
|
7081
7081
|
"start": {
|
|
7082
|
-
"line":
|
|
7083
|
-
"column":
|
|
7084
|
-
"index":
|
|
7082
|
+
"line": 107,
|
|
7083
|
+
"column": 23,
|
|
7084
|
+
"index": 3054
|
|
7085
7085
|
},
|
|
7086
7086
|
"end": {
|
|
7087
|
-
"line":
|
|
7087
|
+
"line": 111,
|
|
7088
7088
|
"column": 3,
|
|
7089
|
-
"index":
|
|
7089
|
+
"index": 3153
|
|
7090
7090
|
}
|
|
7091
7091
|
},
|
|
7092
|
-
"filepath": "src/components/date_picker/super_date_picker/date_popover/
|
|
7092
|
+
"filepath": "src/components/date_picker/super_date_picker/date_popover/date_popover_button.tsx"
|
|
7093
7093
|
},
|
|
7094
7094
|
{
|
|
7095
|
-
"token": "
|
|
7096
|
-
"defString": "
|
|
7095
|
+
"token": "euiDatePopoverButton.outdatedTitle",
|
|
7096
|
+
"defString": "Update needed: {title}",
|
|
7097
7097
|
"highlighting": "string",
|
|
7098
7098
|
"loc": {
|
|
7099
7099
|
"start": {
|
|
7100
|
-
"line":
|
|
7101
|
-
"column":
|
|
7102
|
-
"index":
|
|
7100
|
+
"line": 112,
|
|
7101
|
+
"column": 24,
|
|
7102
|
+
"index": 3179
|
|
7103
7103
|
},
|
|
7104
7104
|
"end": {
|
|
7105
|
-
"line":
|
|
7105
|
+
"line": 116,
|
|
7106
7106
|
"column": 3,
|
|
7107
|
-
"index":
|
|
7107
|
+
"index": 3280
|
|
7108
7108
|
}
|
|
7109
7109
|
},
|
|
7110
|
-
"filepath": "src/components/date_picker/super_date_picker/date_popover/
|
|
7110
|
+
"filepath": "src/components/date_picker/super_date_picker/date_popover/date_popover_button.tsx"
|
|
7111
7111
|
},
|
|
7112
7112
|
{
|
|
7113
7113
|
"token": "euiDataGridHeaderCell.sortedByAscendingSingle",
|
|
@@ -7297,12 +7297,12 @@
|
|
|
7297
7297
|
"start": {
|
|
7298
7298
|
"line": 461,
|
|
7299
7299
|
"column": 13,
|
|
7300
|
-
"index":
|
|
7300
|
+
"index": 12716
|
|
7301
7301
|
},
|
|
7302
7302
|
"end": {
|
|
7303
7303
|
"line": 461,
|
|
7304
7304
|
"column": 78,
|
|
7305
|
-
"index":
|
|
7305
|
+
"index": 12781
|
|
7306
7306
|
}
|
|
7307
7307
|
},
|
|
7308
7308
|
"filepath": "src/components/datagrid/body/header/column_actions.tsx"
|
|
@@ -7315,12 +7315,12 @@
|
|
|
7315
7315
|
"start": {
|
|
7316
7316
|
"line": 483,
|
|
7317
7317
|
"column": 8,
|
|
7318
|
-
"index":
|
|
7318
|
+
"index": 13369
|
|
7319
7319
|
},
|
|
7320
7320
|
"end": {
|
|
7321
7321
|
"line": 483,
|
|
7322
7322
|
"column": 75,
|
|
7323
|
-
"index":
|
|
7323
|
+
"index": 13436
|
|
7324
7324
|
}
|
|
7325
7325
|
},
|
|
7326
7326
|
"filepath": "src/components/datagrid/body/header/column_actions.tsx"
|
|
@@ -7333,12 +7333,12 @@
|
|
|
7333
7333
|
"start": {
|
|
7334
7334
|
"line": 567,
|
|
7335
7335
|
"column": 8,
|
|
7336
|
-
"index":
|
|
7336
|
+
"index": 15595
|
|
7337
7337
|
},
|
|
7338
7338
|
"end": {
|
|
7339
7339
|
"line": 571,
|
|
7340
7340
|
"column": 10,
|
|
7341
|
-
"index":
|
|
7341
|
+
"index": 15739
|
|
7342
7342
|
}
|
|
7343
7343
|
},
|
|
7344
7344
|
"filepath": "src/components/datagrid/body/header/column_actions.tsx"
|
|
@@ -7351,12 +7351,12 @@
|
|
|
7351
7351
|
"start": {
|
|
7352
7352
|
"line": 573,
|
|
7353
7353
|
"column": 8,
|
|
7354
|
-
"index":
|
|
7354
|
+
"index": 15760
|
|
7355
7355
|
},
|
|
7356
7356
|
"end": {
|
|
7357
7357
|
"line": 577,
|
|
7358
7358
|
"column": 10,
|
|
7359
|
-
"index":
|
|
7359
|
+
"index": 15900
|
|
7360
7360
|
}
|
|
7361
7361
|
},
|
|
7362
7362
|
"filepath": "src/components/datagrid/body/header/column_actions.tsx"
|
|
@@ -7369,12 +7369,12 @@
|
|
|
7369
7369
|
"start": {
|
|
7370
7370
|
"line": 603,
|
|
7371
7371
|
"column": 8,
|
|
7372
|
-
"index":
|
|
7372
|
+
"index": 16548
|
|
7373
7373
|
},
|
|
7374
7374
|
"end": {
|
|
7375
7375
|
"line": 607,
|
|
7376
7376
|
"column": 10,
|
|
7377
|
-
"index":
|
|
7377
|
+
"index": 16692
|
|
7378
7378
|
}
|
|
7379
7379
|
},
|
|
7380
7380
|
"filepath": "src/components/datagrid/body/header/column_actions.tsx"
|
|
@@ -7387,12 +7387,12 @@
|
|
|
7387
7387
|
"start": {
|
|
7388
7388
|
"line": 609,
|
|
7389
7389
|
"column": 8,
|
|
7390
|
-
"index":
|
|
7390
|
+
"index": 16713
|
|
7391
7391
|
},
|
|
7392
7392
|
"end": {
|
|
7393
7393
|
"line": 613,
|
|
7394
7394
|
"column": 10,
|
|
7395
|
-
"index":
|
|
7395
|
+
"index": 16853
|
|
7396
7396
|
}
|
|
7397
7397
|
},
|
|
7398
7398
|
"filepath": "src/components/datagrid/body/header/column_actions.tsx"
|