@elastic/eui 108.0.0 → 109.1.0-snapshot.1763390960850
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/accessibility/skip_link/skip_link.js +10 -1
- package/es/components/basic_table/collapsed_item_actions.js +3 -1
- package/es/components/basic_table/default_item_action.js +7 -4
- package/es/components/bottom_bar/bottom_bar.js +12 -2
- package/es/components/button/button.js +20 -25
- package/es/components/button/button_display/_button_display.js +32 -30
- package/es/components/button/button_display/_button_display.styles.js +4 -4
- package/es/components/button/button_empty/button_empty.js +32 -14
- package/es/components/button/button_group/button_group.js +49 -31
- package/es/components/button/button_group/button_group_button.js +16 -5
- package/es/components/button/button_group/button_group_button.styles.js +12 -8
- package/es/components/button/button_icon/button_icon.js +30 -6
- package/es/components/card/card.js +20 -25
- package/es/components/card/card_select/card_select.js +20 -25
- package/es/components/code/code_block_virtualized.js +9 -7
- package/es/components/collapsible_nav_beta/_kibana_solution/collapsible_nav_kibana_solution.js +13 -1
- package/es/components/datagrid/body/cell/data_grid_cell.js +35 -12
- package/es/components/datagrid/body/data_grid_body.js +23 -6
- package/es/components/datagrid/body/data_grid_body_custom.js +23 -6
- package/es/components/datagrid/body/data_grid_body_virtualized.js +23 -6
- package/es/components/datagrid/body/header/column_actions.js +5 -21
- package/es/components/datagrid/body/header/data_grid_header_cell.js +29 -10
- package/es/components/datagrid/body/header/data_grid_header_cell.styles.js +8 -2
- package/es/components/datagrid/body/header/data_grid_header_cell_wrapper.js +5 -2
- package/es/components/datagrid/controls/column_selector.js +36 -19
- package/es/components/datagrid/controls/column_sorting.js +23 -6
- package/es/components/datagrid/controls/data_grid_toolbar_control.js +13 -7
- package/es/components/datagrid/data_grid.js +5 -1
- package/es/components/datagrid/utils/in_memory.js +25 -7
- package/es/components/date_picker/auto_refresh/auto_refresh.js +11 -2
- package/es/components/date_picker/super_date_picker/date_popover/absolute_tab.js +31 -5
- package/es/components/date_picker/super_date_picker/date_popover/date_popover_button.js +24 -3
- package/es/components/date_picker/super_date_picker/date_popover/date_popover_content.js +26 -4
- package/es/components/date_picker/super_date_picker/date_popover/relative_tab.js +29 -3
- package/es/components/date_picker/super_date_picker/date_popover/timezone_display.js +98 -0
- package/es/components/date_picker/super_date_picker/date_popover/timezone_display.styles.js +19 -0
- package/es/components/date_picker/super_date_picker/pretty_duration.js +1 -8
- package/es/components/date_picker/super_date_picker/relative_utils.js +8 -0
- package/es/components/date_picker/super_date_picker/super_date_picker.js +118 -26
- package/es/components/date_picker/super_date_picker/time_window_buttons.js +185 -0
- package/es/components/facet/facet_button.js +9 -19
- package/es/components/filter_group/filter_button.js +14 -1
- package/es/components/flyout/flyout.js +27 -10
- package/es/components/form/file_picker/file_picker.styles.js +3 -3
- package/es/components/form/form_control_button/form_control_button.js +13 -7
- package/es/components/header/header_links/header_link.js +13 -7
- package/es/components/header/header_section/header_section_item_button.js +13 -7
- package/es/components/icon/assets/boxes_vertical.js +1 -1
- package/es/components/icon/assets/checkInCircleFilled.js +1 -2
- package/es/components/icon/assets/errorFilled.js +1 -2
- package/es/components/icon/assets/paper_clip.js +1 -1
- package/es/components/icon/assets/streams_wired.js +3 -2
- package/es/components/icon/assets/warningFilled.js +1 -2
- package/es/components/icon/icon_map.js +3 -6
- package/es/components/list_group/list_group.js +13 -1
- package/es/components/list_group/list_group_item.js +13 -1
- package/es/components/list_group/list_group_item_extra_action.js +13 -1
- package/es/components/list_group/pinnable_list_group/pinnable_list_group.js +15 -2
- package/es/components/overlay_mask/overlay_mask.styles.js +1 -1
- package/es/components/pagination/pagination_button.js +13 -7
- package/es/components/popover/popover.js +22 -16
- package/es/components/provider/component_defaults/component_defaults.js +22 -2
- package/es/components/table/table_row.styles.js +1 -1
- package/es/components/tool_tip/tool_tip.js +24 -24
- package/es/global_styling/index.js +2 -1
- package/es/global_styling/mixins/_button.js +1 -1
- package/es/global_styling/utility/selectors.js +9 -0
- package/es/services/focus_trap/focus_trap_pub_sub.js +74 -0
- package/es/services/focus_trap/index.js +9 -0
- package/es/services/hooks/index.js +2 -1
- package/es/services/hooks/useEuiDisabledElement.js +195 -0
- package/es/services/index.js +1 -0
- package/es/services/popover/reposition_on_scroll.js +61 -0
- package/es/services/theme/high_contrast_overrides.js +5 -1
- package/es/test/cypress/index.d.ts +12 -0
- package/es/test/cypress/index.js +9 -0
- package/es/test/cypress/matchers.d.ts +20 -0
- package/es/test/cypress/matchers.js +54 -0
- package/es/test/cypress/test_reposition_on_scroll.js +66 -0
- package/es/test/enzyme/enzyme_matchers.d.ts +36 -0
- package/es/test/enzyme/enzyme_matchers.js +43 -0
- package/es/test/enzyme/index.d.ts +14 -0
- package/es/test/enzyme/index.js +10 -0
- package/es/test/rtl/index.d.ts +9 -1
- package/es/test/rtl/index.js +2 -1
- package/es/test/rtl/matchers.d.ts +36 -0
- package/es/test/rtl/matchers.js +82 -0
- package/es/utils/element_can_be_disabled.js +16 -0
- package/es/utils/index.js +2 -1
- package/eui.d.ts +604 -183
- package/i18ntokens.json +1357 -1231
- package/lib/components/accessibility/skip_link/skip_link.js +10 -1
- package/lib/components/basic_table/collapsed_item_actions.js +3 -1
- package/lib/components/basic_table/default_item_action.js +7 -4
- package/lib/components/bottom_bar/bottom_bar.js +11 -1
- package/lib/components/button/button.js +21 -26
- package/lib/components/button/button_display/_button_display.js +31 -29
- package/lib/components/button/button_display/_button_display.styles.js +4 -4
- package/lib/components/button/button_empty/button_empty.js +31 -13
- package/lib/components/button/button_group/button_group.js +49 -31
- package/lib/components/button/button_group/button_group_button.js +16 -5
- package/lib/components/button/button_group/button_group_button.styles.js +10 -6
- package/lib/components/button/button_icon/button_icon.js +29 -5
- package/lib/components/card/card.js +21 -26
- package/lib/components/card/card_select/card_select.js +21 -26
- package/lib/components/code/code_block_virtualized.js +9 -7
- package/lib/components/collapsible_nav_beta/_kibana_solution/collapsible_nav_kibana_solution.js +13 -1
- package/lib/components/datagrid/body/cell/data_grid_cell.js +35 -12
- package/lib/components/datagrid/body/data_grid_body.js +23 -6
- package/lib/components/datagrid/body/data_grid_body_custom.js +23 -6
- package/lib/components/datagrid/body/data_grid_body_virtualized.js +23 -6
- package/lib/components/datagrid/body/header/column_actions.js +5 -21
- package/lib/components/datagrid/body/header/data_grid_header_cell.js +29 -10
- package/lib/components/datagrid/body/header/data_grid_header_cell.styles.js +8 -1
- package/lib/components/datagrid/body/header/data_grid_header_cell_wrapper.js +5 -2
- package/lib/components/datagrid/controls/column_selector.js +36 -19
- package/lib/components/datagrid/controls/column_sorting.js +23 -6
- package/lib/components/datagrid/controls/data_grid_toolbar_control.js +13 -7
- package/lib/components/datagrid/data_grid.js +5 -1
- package/lib/components/datagrid/utils/in_memory.js +25 -7
- package/lib/components/date_picker/auto_refresh/auto_refresh.js +12 -3
- package/lib/components/date_picker/super_date_picker/date_popover/absolute_tab.js +30 -4
- package/lib/components/date_picker/super_date_picker/date_popover/date_popover_button.js +24 -3
- package/lib/components/date_picker/super_date_picker/date_popover/date_popover_content.js +26 -4
- package/lib/components/date_picker/super_date_picker/date_popover/relative_tab.js +29 -3
- package/lib/components/date_picker/super_date_picker/date_popover/timezone_display.js +104 -0
- package/lib/components/date_picker/super_date_picker/date_popover/timezone_display.styles.js +25 -0
- package/lib/components/date_picker/super_date_picker/pretty_duration.js +2 -9
- package/lib/components/date_picker/super_date_picker/relative_utils.js +9 -0
- package/lib/components/date_picker/super_date_picker/super_date_picker.js +118 -26
- package/lib/components/date_picker/super_date_picker/time_window_buttons.js +193 -0
- package/lib/components/facet/facet_button.js +9 -19
- package/lib/components/filter_group/filter_button.js +14 -1
- package/lib/components/flyout/flyout.js +26 -9
- package/lib/components/form/file_picker/file_picker.styles.js +3 -3
- package/lib/components/form/form_control_button/form_control_button.js +13 -7
- package/lib/components/header/header_links/header_link.js +13 -7
- package/lib/components/header/header_section/header_section_item_button.js +13 -7
- package/lib/components/icon/assets/boxes_vertical.js +1 -1
- package/lib/components/icon/assets/checkInCircleFilled.js +1 -2
- package/lib/components/icon/assets/errorFilled.js +1 -2
- package/lib/components/icon/assets/paper_clip.js +1 -1
- package/lib/components/icon/assets/streams_wired.js +3 -2
- package/lib/components/icon/assets/warningFilled.js +1 -2
- package/lib/components/icon/icon_map.js +3 -6
- package/lib/components/icon/svgs/boxes_vertical.svg +1 -1
- package/lib/components/icon/svgs/checkInCircleFilled.svg +1 -1
- package/lib/components/icon/svgs/errorFilled.svg +1 -1
- package/lib/components/icon/svgs/paper_clip.svg +3 -3
- package/lib/components/icon/svgs/warningFilled.svg +1 -1
- package/lib/components/list_group/list_group.js +13 -1
- package/lib/components/list_group/list_group_item.js +13 -1
- package/lib/components/list_group/list_group_item_extra_action.js +13 -1
- package/lib/components/list_group/pinnable_list_group/pinnable_list_group.js +15 -2
- package/lib/components/overlay_mask/overlay_mask.styles.js +1 -1
- package/lib/components/pagination/pagination_button.js +13 -7
- package/lib/components/popover/popover.js +21 -15
- package/lib/components/provider/component_defaults/component_defaults.js +22 -2
- package/lib/components/table/table_row.styles.js +1 -1
- package/lib/components/tool_tip/tool_tip.js +24 -24
- package/lib/global_styling/index.js +16 -1
- package/lib/global_styling/mixins/_button.js +1 -1
- package/lib/global_styling/utility/selectors.js +15 -0
- package/lib/services/focus_trap/focus_trap_pub_sub.js +80 -0
- package/lib/services/focus_trap/index.js +12 -0
- package/lib/services/hooks/index.js +18 -1
- package/lib/services/hooks/useEuiDisabledElement.js +199 -0
- package/lib/services/index.js +8 -0
- package/lib/services/popover/reposition_on_scroll.js +67 -0
- package/lib/services/theme/high_contrast_overrides.js +5 -1
- package/lib/test/cypress/index.d.ts +12 -0
- package/lib/test/cypress/index.js +18 -0
- package/lib/test/cypress/matchers.d.ts +20 -0
- package/lib/test/cypress/matchers.js +61 -0
- package/lib/test/cypress/test_reposition_on_scroll.js +69 -0
- package/lib/test/enzyme/enzyme_matchers.d.ts +36 -0
- package/lib/test/enzyme/enzyme_matchers.js +49 -0
- package/lib/test/enzyme/index.d.ts +14 -0
- package/lib/test/enzyme/index.js +24 -0
- package/lib/test/rtl/index.d.ts +9 -1
- package/lib/test/rtl/index.js +24 -2
- package/lib/test/rtl/matchers.d.ts +36 -0
- package/lib/test/rtl/matchers.js +86 -0
- package/lib/utils/element_can_be_disabled.js +22 -0
- package/lib/utils/index.js +14 -1
- package/optimize/es/components/basic_table/collapsed_item_actions.js +3 -1
- package/optimize/es/components/basic_table/default_item_action.js +7 -4
- package/optimize/es/components/bottom_bar/bottom_bar.js +12 -2
- package/optimize/es/components/button/button_display/_button_display.js +24 -12
- package/optimize/es/components/button/button_display/_button_display.styles.js +4 -4
- package/optimize/es/components/button/button_empty/button_empty.js +18 -6
- package/optimize/es/components/button/button_group/button_group.js +10 -5
- package/optimize/es/components/button/button_group/button_group_button.js +2 -3
- package/optimize/es/components/button/button_group/button_group_button.styles.js +12 -8
- package/optimize/es/components/button/button_icon/button_icon.js +17 -5
- package/optimize/es/components/code/code_block_virtualized.js +9 -7
- package/optimize/es/components/datagrid/body/header/column_actions.js +5 -21
- package/optimize/es/components/datagrid/body/header/data_grid_header_cell.js +6 -4
- package/optimize/es/components/datagrid/body/header/data_grid_header_cell.styles.js +8 -2
- package/optimize/es/components/datagrid/body/header/data_grid_header_cell_wrapper.js +4 -2
- package/optimize/es/components/datagrid/controls/column_selector.js +36 -19
- package/optimize/es/components/datagrid/data_grid.js +5 -1
- package/optimize/es/components/datagrid/utils/in_memory.js +2 -1
- package/optimize/es/components/date_picker/super_date_picker/date_popover/absolute_tab.js +12 -4
- package/optimize/es/components/date_picker/super_date_picker/date_popover/date_popover_button.js +5 -2
- package/optimize/es/components/date_picker/super_date_picker/date_popover/date_popover_content.js +7 -3
- package/optimize/es/components/date_picker/super_date_picker/date_popover/relative_tab.js +10 -2
- package/optimize/es/components/date_picker/super_date_picker/date_popover/timezone_display.js +97 -0
- package/optimize/es/components/date_picker/super_date_picker/date_popover/timezone_display.styles.js +19 -0
- package/optimize/es/components/date_picker/super_date_picker/pretty_duration.js +1 -8
- package/optimize/es/components/date_picker/super_date_picker/relative_utils.js +8 -0
- package/optimize/es/components/date_picker/super_date_picker/super_date_picker.js +49 -25
- package/optimize/es/components/date_picker/super_date_picker/time_window_buttons.js +185 -0
- package/optimize/es/components/flyout/flyout.js +27 -10
- package/optimize/es/components/form/file_picker/file_picker.styles.js +3 -3
- package/optimize/es/components/icon/assets/boxes_vertical.js +1 -1
- package/optimize/es/components/icon/assets/checkInCircleFilled.js +1 -2
- package/optimize/es/components/icon/assets/errorFilled.js +1 -2
- package/optimize/es/components/icon/assets/paper_clip.js +1 -1
- package/optimize/es/components/icon/assets/streams_wired.js +3 -2
- package/optimize/es/components/icon/assets/warningFilled.js +1 -2
- package/optimize/es/components/icon/icon_map.js +3 -6
- package/optimize/es/components/overlay_mask/overlay_mask.styles.js +1 -1
- package/optimize/es/components/popover/popover.js +22 -16
- package/optimize/es/components/table/table_row.styles.js +1 -1
- package/optimize/es/components/tool_tip/tool_tip.js +24 -24
- package/optimize/es/global_styling/index.js +2 -1
- package/optimize/es/global_styling/mixins/_button.js +1 -1
- package/optimize/es/global_styling/utility/selectors.js +9 -0
- package/optimize/es/services/focus_trap/focus_trap_pub_sub.js +74 -0
- package/optimize/es/services/focus_trap/index.js +9 -0
- package/optimize/es/services/hooks/index.js +2 -1
- package/optimize/es/services/hooks/useEuiDisabledElement.js +192 -0
- package/optimize/es/services/index.js +1 -0
- package/optimize/es/services/popover/reposition_on_scroll.js +61 -0
- package/optimize/es/services/theme/high_contrast_overrides.js +5 -1
- package/optimize/es/test/cypress/index.d.ts +12 -0
- package/optimize/es/test/cypress/index.js +9 -0
- package/optimize/es/test/cypress/matchers.d.ts +20 -0
- package/optimize/es/test/cypress/matchers.js +54 -0
- package/optimize/es/test/cypress/test_reposition_on_scroll.js +63 -0
- package/optimize/es/test/enzyme/enzyme_matchers.d.ts +36 -0
- package/optimize/es/test/enzyme/enzyme_matchers.js +43 -0
- package/optimize/es/test/enzyme/index.d.ts +14 -0
- package/optimize/es/test/enzyme/index.js +10 -0
- package/optimize/es/test/rtl/index.d.ts +9 -1
- package/optimize/es/test/rtl/index.js +2 -1
- package/optimize/es/test/rtl/matchers.d.ts +36 -0
- package/optimize/es/test/rtl/matchers.js +82 -0
- package/optimize/es/utils/element_can_be_disabled.js +16 -0
- package/optimize/es/utils/index.js +2 -1
- package/optimize/lib/components/basic_table/collapsed_item_actions.js +3 -1
- package/optimize/lib/components/basic_table/default_item_action.js +7 -4
- package/optimize/lib/components/bottom_bar/bottom_bar.js +11 -1
- package/optimize/lib/components/button/button_display/_button_display.js +23 -11
- package/optimize/lib/components/button/button_display/_button_display.styles.js +4 -4
- package/optimize/lib/components/button/button_empty/button_empty.js +17 -5
- package/optimize/lib/components/button/button_group/button_group.js +10 -5
- package/optimize/lib/components/button/button_group/button_group_button.js +2 -3
- package/optimize/lib/components/button/button_group/button_group_button.styles.js +10 -6
- package/optimize/lib/components/button/button_icon/button_icon.js +16 -4
- package/optimize/lib/components/code/code_block_virtualized.js +9 -7
- package/optimize/lib/components/datagrid/body/header/column_actions.js +5 -21
- package/optimize/lib/components/datagrid/body/header/data_grid_header_cell.js +6 -4
- package/optimize/lib/components/datagrid/body/header/data_grid_header_cell.styles.js +8 -1
- package/optimize/lib/components/datagrid/body/header/data_grid_header_cell_wrapper.js +4 -2
- package/optimize/lib/components/datagrid/controls/column_selector.js +36 -19
- package/optimize/lib/components/datagrid/data_grid.js +5 -1
- package/optimize/lib/components/datagrid/utils/in_memory.js +2 -1
- package/optimize/lib/components/date_picker/super_date_picker/date_popover/absolute_tab.js +11 -3
- package/optimize/lib/components/date_picker/super_date_picker/date_popover/date_popover_button.js +5 -2
- package/optimize/lib/components/date_picker/super_date_picker/date_popover/date_popover_content.js +7 -3
- package/optimize/lib/components/date_picker/super_date_picker/date_popover/relative_tab.js +10 -2
- package/optimize/lib/components/date_picker/super_date_picker/date_popover/timezone_display.js +103 -0
- package/optimize/lib/components/date_picker/super_date_picker/date_popover/timezone_display.styles.js +25 -0
- package/optimize/lib/components/date_picker/super_date_picker/pretty_duration.js +2 -9
- package/optimize/lib/components/date_picker/super_date_picker/relative_utils.js +9 -0
- package/optimize/lib/components/date_picker/super_date_picker/super_date_picker.js +49 -25
- package/optimize/lib/components/date_picker/super_date_picker/time_window_buttons.js +193 -0
- package/optimize/lib/components/flyout/flyout.js +26 -9
- package/optimize/lib/components/form/file_picker/file_picker.styles.js +3 -3
- package/optimize/lib/components/icon/assets/boxes_vertical.js +1 -1
- package/optimize/lib/components/icon/assets/checkInCircleFilled.js +1 -2
- package/optimize/lib/components/icon/assets/errorFilled.js +1 -2
- package/optimize/lib/components/icon/assets/paper_clip.js +1 -1
- package/optimize/lib/components/icon/assets/streams_wired.js +3 -2
- package/optimize/lib/components/icon/assets/warningFilled.js +1 -2
- package/optimize/lib/components/icon/icon_map.js +3 -6
- package/optimize/lib/components/icon/svgs/boxes_vertical.svg +1 -1
- package/optimize/lib/components/icon/svgs/checkInCircleFilled.svg +1 -1
- package/optimize/lib/components/icon/svgs/errorFilled.svg +1 -1
- package/optimize/lib/components/icon/svgs/paper_clip.svg +3 -3
- package/optimize/lib/components/icon/svgs/warningFilled.svg +1 -1
- package/optimize/lib/components/overlay_mask/overlay_mask.styles.js +1 -1
- package/optimize/lib/components/popover/popover.js +21 -15
- package/optimize/lib/components/table/table_row.styles.js +1 -1
- package/optimize/lib/components/tool_tip/tool_tip.js +24 -24
- package/optimize/lib/global_styling/index.js +16 -1
- package/optimize/lib/global_styling/mixins/_button.js +1 -1
- package/optimize/lib/global_styling/utility/selectors.js +15 -0
- package/optimize/lib/services/focus_trap/focus_trap_pub_sub.js +80 -0
- package/optimize/lib/services/focus_trap/index.js +12 -0
- package/optimize/lib/services/hooks/index.js +18 -1
- package/optimize/lib/services/hooks/useEuiDisabledElement.js +197 -0
- package/optimize/lib/services/index.js +8 -0
- package/optimize/lib/services/popover/reposition_on_scroll.js +67 -0
- package/optimize/lib/services/theme/high_contrast_overrides.js +5 -1
- package/optimize/lib/test/cypress/index.d.ts +12 -0
- package/optimize/lib/test/cypress/index.js +18 -0
- package/optimize/lib/test/cypress/matchers.d.ts +20 -0
- package/optimize/lib/test/cypress/matchers.js +61 -0
- package/optimize/lib/test/cypress/test_reposition_on_scroll.js +70 -0
- package/optimize/lib/test/enzyme/enzyme_matchers.d.ts +36 -0
- package/optimize/lib/test/enzyme/enzyme_matchers.js +50 -0
- package/optimize/lib/test/enzyme/index.d.ts +14 -0
- package/optimize/lib/test/enzyme/index.js +24 -0
- package/optimize/lib/test/rtl/index.d.ts +9 -1
- package/optimize/lib/test/rtl/index.js +24 -2
- package/optimize/lib/test/rtl/matchers.d.ts +36 -0
- package/optimize/lib/test/rtl/matchers.js +86 -0
- package/optimize/lib/utils/element_can_be_disabled.js +22 -0
- package/optimize/lib/utils/index.js +14 -1
- package/package.json +6 -5
- package/test-env/components/accessibility/skip_link/skip_link.js +10 -1
- package/test-env/components/basic_table/collapsed_item_actions.js +3 -1
- package/test-env/components/basic_table/default_item_action.js +7 -4
- package/test-env/components/bottom_bar/bottom_bar.js +11 -1
- package/test-env/components/button/button.js +21 -26
- package/test-env/components/button/button_display/_button_display.js +31 -29
- package/test-env/components/button/button_display/_button_display.styles.js +4 -4
- package/test-env/components/button/button_empty/button_empty.js +31 -13
- package/test-env/components/button/button_group/button_group.js +49 -31
- package/test-env/components/button/button_group/button_group_button.js +16 -5
- package/test-env/components/button/button_group/button_group_button.styles.js +10 -6
- package/test-env/components/button/button_icon/button_icon.js +29 -5
- package/test-env/components/card/card.js +21 -26
- package/test-env/components/card/card_select/card_select.js +21 -26
- package/test-env/components/code/code_block_virtualized.js +9 -7
- package/test-env/components/collapsible_nav_beta/_kibana_solution/collapsible_nav_kibana_solution.js +13 -1
- package/test-env/components/datagrid/body/cell/data_grid_cell.js +35 -12
- package/test-env/components/datagrid/body/data_grid_body.js +23 -6
- package/test-env/components/datagrid/body/data_grid_body_custom.js +23 -6
- package/test-env/components/datagrid/body/data_grid_body_virtualized.js +23 -6
- package/test-env/components/datagrid/body/header/column_actions.js +5 -21
- package/test-env/components/datagrid/body/header/data_grid_header_cell.js +29 -10
- package/test-env/components/datagrid/body/header/data_grid_header_cell.styles.js +8 -1
- package/test-env/components/datagrid/body/header/data_grid_header_cell_wrapper.js +5 -2
- package/test-env/components/datagrid/controls/column_selector.js +36 -19
- package/test-env/components/datagrid/controls/column_sorting.js +23 -6
- package/test-env/components/datagrid/controls/data_grid_toolbar_control.js +13 -7
- package/test-env/components/datagrid/data_grid.js +5 -1
- package/test-env/components/datagrid/utils/in_memory.js +25 -7
- package/test-env/components/date_picker/auto_refresh/auto_refresh.js +12 -3
- package/test-env/components/date_picker/super_date_picker/date_popover/absolute_tab.js +30 -4
- package/test-env/components/date_picker/super_date_picker/date_popover/date_popover_button.js +24 -3
- package/test-env/components/date_picker/super_date_picker/date_popover/date_popover_content.js +26 -4
- package/test-env/components/date_picker/super_date_picker/date_popover/relative_tab.js +29 -3
- package/test-env/components/date_picker/super_date_picker/date_popover/timezone_display.js +103 -0
- package/test-env/components/date_picker/super_date_picker/date_popover/timezone_display.styles.js +25 -0
- package/test-env/components/date_picker/super_date_picker/pretty_duration.js +2 -9
- package/test-env/components/date_picker/super_date_picker/relative_utils.js +9 -0
- package/test-env/components/date_picker/super_date_picker/super_date_picker.js +118 -26
- package/test-env/components/date_picker/super_date_picker/time_window_buttons.js +193 -0
- package/test-env/components/facet/facet_button.js +9 -19
- package/test-env/components/filter_group/filter_button.js +14 -1
- package/test-env/components/form/file_picker/file_picker.styles.js +3 -3
- package/test-env/components/form/form_control_button/form_control_button.js +13 -7
- package/test-env/components/header/header_links/header_link.js +13 -7
- package/test-env/components/header/header_section/header_section_item_button.js +13 -7
- package/test-env/components/icon/assets/boxes_vertical.js +1 -1
- package/test-env/components/icon/assets/checkInCircleFilled.js +1 -2
- package/test-env/components/icon/assets/errorFilled.js +1 -2
- package/test-env/components/icon/assets/paper_clip.js +1 -1
- package/test-env/components/icon/assets/streams_wired.js +3 -2
- package/test-env/components/icon/assets/warningFilled.js +1 -2
- package/test-env/components/icon/icon_map.js +3 -6
- package/test-env/components/list_group/list_group.js +13 -1
- package/test-env/components/list_group/list_group_item.js +13 -1
- package/test-env/components/list_group/list_group_item_extra_action.js +13 -1
- package/test-env/components/list_group/pinnable_list_group/pinnable_list_group.js +15 -2
- package/test-env/components/overlay_mask/overlay_mask.styles.js +1 -1
- package/test-env/components/pagination/pagination_button.js +13 -7
- package/test-env/components/popover/popover.js +21 -15
- package/test-env/components/provider/component_defaults/component_defaults.js +22 -2
- package/test-env/components/table/table_row.styles.js +1 -1
- package/test-env/components/tool_tip/tool_tip.js +24 -24
- package/test-env/global_styling/index.js +16 -1
- package/test-env/global_styling/mixins/_button.js +1 -1
- package/test-env/global_styling/utility/selectors.js +15 -0
- package/test-env/services/focus_trap/focus_trap_pub_sub.js +80 -0
- package/test-env/services/focus_trap/index.js +12 -0
- package/test-env/services/hooks/index.js +18 -1
- package/test-env/services/hooks/useEuiDisabledElement.js +197 -0
- package/test-env/services/index.js +8 -0
- package/test-env/services/popover/reposition_on_scroll.js +67 -0
- package/test-env/services/theme/high_contrast_overrides.js +5 -1
- package/test-env/test/cypress/index.js +18 -0
- package/test-env/test/cypress/matchers.js +61 -0
- package/test-env/test/cypress/test_reposition_on_scroll.js +70 -0
- package/test-env/test/enzyme/enzyme_matchers.js +50 -0
- package/test-env/test/enzyme/index.js +24 -0
- package/test-env/test/rtl/index.js +24 -2
- package/test-env/test/rtl/matchers.js +86 -0
- package/test-env/utils/element_can_be_disabled.js +22 -0
- package/test-env/utils/index.js +14 -1
package/i18ntokens.json
CHANGED
|
@@ -143,24 +143,6 @@
|
|
|
143
143
|
},
|
|
144
144
|
"filepath": "src/components/tour/_tour_footer.tsx"
|
|
145
145
|
},
|
|
146
|
-
{
|
|
147
|
-
"token": "euiIconTip.defaultAriaLabel",
|
|
148
|
-
"defString": "Info",
|
|
149
|
-
"highlighting": "string",
|
|
150
|
-
"loc": {
|
|
151
|
-
"start": {
|
|
152
|
-
"line": 63,
|
|
153
|
-
"column": 27,
|
|
154
|
-
"index": 1811
|
|
155
|
-
},
|
|
156
|
-
"end": {
|
|
157
|
-
"line": 63,
|
|
158
|
-
"column": 76,
|
|
159
|
-
"index": 1860
|
|
160
|
-
}
|
|
161
|
-
},
|
|
162
|
-
"filepath": "src/components/tool_tip/icon_tip.tsx"
|
|
163
|
-
},
|
|
164
146
|
{
|
|
165
147
|
"token": "euiToast.newNotification",
|
|
166
148
|
"defString": "A new notification appears",
|
|
@@ -251,6 +233,42 @@
|
|
|
251
233
|
},
|
|
252
234
|
"filepath": "src/components/toast/global_toast_list.tsx"
|
|
253
235
|
},
|
|
236
|
+
{
|
|
237
|
+
"token": "euiIconTip.defaultAriaLabel",
|
|
238
|
+
"defString": "Info",
|
|
239
|
+
"highlighting": "string",
|
|
240
|
+
"loc": {
|
|
241
|
+
"start": {
|
|
242
|
+
"line": 63,
|
|
243
|
+
"column": 27,
|
|
244
|
+
"index": 1811
|
|
245
|
+
},
|
|
246
|
+
"end": {
|
|
247
|
+
"line": 63,
|
|
248
|
+
"column": 76,
|
|
249
|
+
"index": 1860
|
|
250
|
+
}
|
|
251
|
+
},
|
|
252
|
+
"filepath": "src/components/tool_tip/icon_tip.tsx"
|
|
253
|
+
},
|
|
254
|
+
{
|
|
255
|
+
"token": "euiTableHeaderCell.titleTextWithDesc",
|
|
256
|
+
"defString": "{innerText}; {description}",
|
|
257
|
+
"highlighting": "string",
|
|
258
|
+
"loc": {
|
|
259
|
+
"start": {
|
|
260
|
+
"line": 113,
|
|
261
|
+
"column": 10,
|
|
262
|
+
"index": 3512
|
|
263
|
+
},
|
|
264
|
+
"end": {
|
|
265
|
+
"line": 117,
|
|
266
|
+
"column": 11,
|
|
267
|
+
"index": 3686
|
|
268
|
+
}
|
|
269
|
+
},
|
|
270
|
+
"filepath": "src/components/table/table_header_cell.tsx"
|
|
271
|
+
},
|
|
254
272
|
{
|
|
255
273
|
"token": "euiStepStrings.step",
|
|
256
274
|
"defString": "Step {number}: {title}",
|
|
@@ -557,24 +575,6 @@
|
|
|
557
575
|
},
|
|
558
576
|
"filepath": "src/components/stat/stat.tsx"
|
|
559
577
|
},
|
|
560
|
-
{
|
|
561
|
-
"token": "euiTableHeaderCell.titleTextWithDesc",
|
|
562
|
-
"defString": "{innerText}; {description}",
|
|
563
|
-
"highlighting": "string",
|
|
564
|
-
"loc": {
|
|
565
|
-
"start": {
|
|
566
|
-
"line": 113,
|
|
567
|
-
"column": 10,
|
|
568
|
-
"index": 3512
|
|
569
|
-
},
|
|
570
|
-
"end": {
|
|
571
|
-
"line": 117,
|
|
572
|
-
"column": 11,
|
|
573
|
-
"index": 3686
|
|
574
|
-
}
|
|
575
|
-
},
|
|
576
|
-
"filepath": "src/components/table/table_header_cell.tsx"
|
|
577
|
-
},
|
|
578
578
|
{
|
|
579
579
|
"token": "euiSkeletonLoading.loadedAriaText",
|
|
580
580
|
"defString": "Loaded {contentAriaLabel}",
|
|
@@ -611,6 +611,60 @@
|
|
|
611
611
|
},
|
|
612
612
|
"filepath": "src/components/skeleton/skeleton_loading.tsx"
|
|
613
613
|
},
|
|
614
|
+
{
|
|
615
|
+
"token": "euiSearchBox.placeholder",
|
|
616
|
+
"defString": "Search...",
|
|
617
|
+
"highlighting": "string",
|
|
618
|
+
"loc": {
|
|
619
|
+
"start": {
|
|
620
|
+
"line": 48,
|
|
621
|
+
"column": 29,
|
|
622
|
+
"index": 1388
|
|
623
|
+
},
|
|
624
|
+
"end": {
|
|
625
|
+
"line": 51,
|
|
626
|
+
"column": 3,
|
|
627
|
+
"index": 1451
|
|
628
|
+
}
|
|
629
|
+
},
|
|
630
|
+
"filepath": "src/components/search_bar/search_box.tsx"
|
|
631
|
+
},
|
|
632
|
+
{
|
|
633
|
+
"token": "euiSearchBox.incrementalAriaLabel",
|
|
634
|
+
"defString": "This is a search bar. As you type, the results lower in the page will automatically filter.",
|
|
635
|
+
"highlighting": "string",
|
|
636
|
+
"loc": {
|
|
637
|
+
"start": {
|
|
638
|
+
"line": 52,
|
|
639
|
+
"column": 31,
|
|
640
|
+
"index": 1484
|
|
641
|
+
},
|
|
642
|
+
"end": {
|
|
643
|
+
"line": 55,
|
|
644
|
+
"column": 3,
|
|
645
|
+
"index": 1638
|
|
646
|
+
}
|
|
647
|
+
},
|
|
648
|
+
"filepath": "src/components/search_bar/search_box.tsx"
|
|
649
|
+
},
|
|
650
|
+
{
|
|
651
|
+
"token": "euiSearchBox.ariaLabel",
|
|
652
|
+
"defString": "This is a search bar. After typing your query, hit enter to filter the results lower in the page.",
|
|
653
|
+
"highlighting": "string",
|
|
654
|
+
"loc": {
|
|
655
|
+
"start": {
|
|
656
|
+
"line": 56,
|
|
657
|
+
"column": 25,
|
|
658
|
+
"index": 1665
|
|
659
|
+
},
|
|
660
|
+
"end": {
|
|
661
|
+
"line": 59,
|
|
662
|
+
"column": 3,
|
|
663
|
+
"index": 1814
|
|
664
|
+
}
|
|
665
|
+
},
|
|
666
|
+
"filepath": "src/components/search_bar/search_box.tsx"
|
|
667
|
+
},
|
|
614
668
|
{
|
|
615
669
|
"token": "euiSideNav.mobileToggleAriaLabel",
|
|
616
670
|
"defString": "Toggle navigation",
|
|
@@ -629,6 +683,60 @@
|
|
|
629
683
|
},
|
|
630
684
|
"filepath": "src/components/side_nav/side_nav.tsx"
|
|
631
685
|
},
|
|
686
|
+
{
|
|
687
|
+
"token": "euiResizablePanel.toggleButtonAriaLabel",
|
|
688
|
+
"defString": "Press to toggle this panel",
|
|
689
|
+
"highlighting": "string",
|
|
690
|
+
"loc": {
|
|
691
|
+
"start": {
|
|
692
|
+
"line": 321,
|
|
693
|
+
"column": 32,
|
|
694
|
+
"index": 9654
|
|
695
|
+
},
|
|
696
|
+
"end": {
|
|
697
|
+
"line": 324,
|
|
698
|
+
"column": 3,
|
|
699
|
+
"index": 9749
|
|
700
|
+
}
|
|
701
|
+
},
|
|
702
|
+
"filepath": "src/components/resizable_container/resizable_panel.tsx"
|
|
703
|
+
},
|
|
704
|
+
{
|
|
705
|
+
"token": "euiResizableButton.horizontalResizerAriaLabel",
|
|
706
|
+
"defString": "Press the left or right arrow keys to adjust panels size",
|
|
707
|
+
"highlighting": "string",
|
|
708
|
+
"loc": {
|
|
709
|
+
"start": {
|
|
710
|
+
"line": 98,
|
|
711
|
+
"column": 6,
|
|
712
|
+
"index": 3160
|
|
713
|
+
},
|
|
714
|
+
"end": {
|
|
715
|
+
"line": 107,
|
|
716
|
+
"column": 7,
|
|
717
|
+
"index": 3489
|
|
718
|
+
}
|
|
719
|
+
},
|
|
720
|
+
"filepath": "src/components/resizable_container/resizable_button.tsx"
|
|
721
|
+
},
|
|
722
|
+
{
|
|
723
|
+
"token": "euiResizableButton.verticalResizerAriaLabel",
|
|
724
|
+
"defString": "Press the up or down arrow keys to adjust panels size",
|
|
725
|
+
"highlighting": "string",
|
|
726
|
+
"loc": {
|
|
727
|
+
"start": {
|
|
728
|
+
"line": 98,
|
|
729
|
+
"column": 6,
|
|
730
|
+
"index": 3160
|
|
731
|
+
},
|
|
732
|
+
"end": {
|
|
733
|
+
"line": 107,
|
|
734
|
+
"column": 7,
|
|
735
|
+
"index": 3489
|
|
736
|
+
}
|
|
737
|
+
},
|
|
738
|
+
"filepath": "src/components/resizable_container/resizable_button.tsx"
|
|
739
|
+
},
|
|
632
740
|
{
|
|
633
741
|
"token": "euiSelectable.loadingOptions",
|
|
634
742
|
"defString": "Loading options",
|
|
@@ -756,188 +864,80 @@
|
|
|
756
864
|
"filepath": "src/components/selectable/selectable.tsx"
|
|
757
865
|
},
|
|
758
866
|
{
|
|
759
|
-
"token": "
|
|
760
|
-
"defString": "
|
|
867
|
+
"token": "euiProgress.valueText",
|
|
868
|
+
"defString": "{value}%",
|
|
761
869
|
"highlighting": "string",
|
|
762
870
|
"loc": {
|
|
763
871
|
"start": {
|
|
764
|
-
"line":
|
|
765
|
-
"column":
|
|
766
|
-
"index":
|
|
872
|
+
"line": 154,
|
|
873
|
+
"column": 6,
|
|
874
|
+
"index": 4411
|
|
767
875
|
},
|
|
768
876
|
"end": {
|
|
769
|
-
"line":
|
|
770
|
-
"column":
|
|
771
|
-
"index":
|
|
877
|
+
"line": 160,
|
|
878
|
+
"column": 8,
|
|
879
|
+
"index": 4539
|
|
772
880
|
}
|
|
773
881
|
},
|
|
774
|
-
"filepath": "src/components/
|
|
882
|
+
"filepath": "src/components/progress/progress.tsx"
|
|
775
883
|
},
|
|
776
884
|
{
|
|
777
|
-
"token": "
|
|
778
|
-
"defString": "
|
|
885
|
+
"token": "euiPopover.screenReaderAnnouncement",
|
|
886
|
+
"defString": "You are in a dialog. Press Escape, or tap/click outside the dialog to close.",
|
|
779
887
|
"highlighting": "string",
|
|
780
888
|
"loc": {
|
|
781
889
|
"start": {
|
|
782
|
-
"line":
|
|
783
|
-
"column":
|
|
784
|
-
"index":
|
|
890
|
+
"line": 706,
|
|
891
|
+
"column": 16,
|
|
892
|
+
"index": 21021
|
|
785
893
|
},
|
|
786
894
|
"end": {
|
|
787
|
-
"line":
|
|
788
|
-
"column":
|
|
789
|
-
"index":
|
|
895
|
+
"line": 709,
|
|
896
|
+
"column": 18,
|
|
897
|
+
"index": 21215
|
|
790
898
|
}
|
|
791
899
|
},
|
|
792
|
-
"filepath": "src/components/
|
|
900
|
+
"filepath": "src/components/popover/popover.tsx"
|
|
793
901
|
},
|
|
794
902
|
{
|
|
795
|
-
"token": "
|
|
796
|
-
"defString": "
|
|
903
|
+
"token": "euiPaginationButtonArrow.firstPage",
|
|
904
|
+
"defString": "First page",
|
|
797
905
|
"highlighting": "string",
|
|
798
906
|
"loc": {
|
|
799
907
|
"start": {
|
|
800
|
-
"line":
|
|
801
|
-
"column":
|
|
802
|
-
"index":
|
|
908
|
+
"line": 48,
|
|
909
|
+
"column": 11,
|
|
910
|
+
"index": 1383
|
|
803
911
|
},
|
|
804
912
|
"end": {
|
|
805
|
-
"line":
|
|
806
|
-
"column":
|
|
807
|
-
"index":
|
|
913
|
+
"line": 48,
|
|
914
|
+
"column": 73,
|
|
915
|
+
"index": 1445
|
|
808
916
|
}
|
|
809
917
|
},
|
|
810
|
-
"filepath": "src/components/
|
|
918
|
+
"filepath": "src/components/pagination/pagination_button_arrow.tsx"
|
|
811
919
|
},
|
|
812
920
|
{
|
|
813
|
-
"token": "
|
|
814
|
-
"defString": "
|
|
921
|
+
"token": "euiPaginationButtonArrow.previousPage",
|
|
922
|
+
"defString": "Previous page",
|
|
815
923
|
"highlighting": "string",
|
|
816
924
|
"loc": {
|
|
817
925
|
"start": {
|
|
818
|
-
"line":
|
|
819
|
-
"column":
|
|
820
|
-
"index":
|
|
926
|
+
"line": 49,
|
|
927
|
+
"column": 14,
|
|
928
|
+
"index": 1461
|
|
821
929
|
},
|
|
822
930
|
"end": {
|
|
823
|
-
"line":
|
|
824
|
-
"column":
|
|
825
|
-
"index":
|
|
931
|
+
"line": 52,
|
|
932
|
+
"column": 5,
|
|
933
|
+
"index": 1547
|
|
826
934
|
}
|
|
827
935
|
},
|
|
828
|
-
"filepath": "src/components/
|
|
936
|
+
"filepath": "src/components/pagination/pagination_button_arrow.tsx"
|
|
829
937
|
},
|
|
830
938
|
{
|
|
831
|
-
"token": "
|
|
832
|
-
"defString": "
|
|
833
|
-
"highlighting": "string",
|
|
834
|
-
"loc": {
|
|
835
|
-
"start": {
|
|
836
|
-
"line": 98,
|
|
837
|
-
"column": 6,
|
|
838
|
-
"index": 3160
|
|
839
|
-
},
|
|
840
|
-
"end": {
|
|
841
|
-
"line": 107,
|
|
842
|
-
"column": 7,
|
|
843
|
-
"index": 3489
|
|
844
|
-
}
|
|
845
|
-
},
|
|
846
|
-
"filepath": "src/components/resizable_container/resizable_button.tsx"
|
|
847
|
-
},
|
|
848
|
-
{
|
|
849
|
-
"token": "euiResizableButton.verticalResizerAriaLabel",
|
|
850
|
-
"defString": "Press the up or down arrow keys to adjust panels size",
|
|
851
|
-
"highlighting": "string",
|
|
852
|
-
"loc": {
|
|
853
|
-
"start": {
|
|
854
|
-
"line": 98,
|
|
855
|
-
"column": 6,
|
|
856
|
-
"index": 3160
|
|
857
|
-
},
|
|
858
|
-
"end": {
|
|
859
|
-
"line": 107,
|
|
860
|
-
"column": 7,
|
|
861
|
-
"index": 3489
|
|
862
|
-
}
|
|
863
|
-
},
|
|
864
|
-
"filepath": "src/components/resizable_container/resizable_button.tsx"
|
|
865
|
-
},
|
|
866
|
-
{
|
|
867
|
-
"token": "euiProgress.valueText",
|
|
868
|
-
"defString": "{value}%",
|
|
869
|
-
"highlighting": "string",
|
|
870
|
-
"loc": {
|
|
871
|
-
"start": {
|
|
872
|
-
"line": 154,
|
|
873
|
-
"column": 6,
|
|
874
|
-
"index": 4411
|
|
875
|
-
},
|
|
876
|
-
"end": {
|
|
877
|
-
"line": 160,
|
|
878
|
-
"column": 8,
|
|
879
|
-
"index": 4539
|
|
880
|
-
}
|
|
881
|
-
},
|
|
882
|
-
"filepath": "src/components/progress/progress.tsx"
|
|
883
|
-
},
|
|
884
|
-
{
|
|
885
|
-
"token": "euiPopover.screenReaderAnnouncement",
|
|
886
|
-
"defString": "You are in a dialog. Press Escape, or tap/click outside the dialog to close.",
|
|
887
|
-
"highlighting": "string",
|
|
888
|
-
"loc": {
|
|
889
|
-
"start": {
|
|
890
|
-
"line": 694,
|
|
891
|
-
"column": 16,
|
|
892
|
-
"index": 20642
|
|
893
|
-
},
|
|
894
|
-
"end": {
|
|
895
|
-
"line": 697,
|
|
896
|
-
"column": 18,
|
|
897
|
-
"index": 20836
|
|
898
|
-
}
|
|
899
|
-
},
|
|
900
|
-
"filepath": "src/components/popover/popover.tsx"
|
|
901
|
-
},
|
|
902
|
-
{
|
|
903
|
-
"token": "euiPaginationButtonArrow.firstPage",
|
|
904
|
-
"defString": "First page",
|
|
905
|
-
"highlighting": "string",
|
|
906
|
-
"loc": {
|
|
907
|
-
"start": {
|
|
908
|
-
"line": 48,
|
|
909
|
-
"column": 11,
|
|
910
|
-
"index": 1383
|
|
911
|
-
},
|
|
912
|
-
"end": {
|
|
913
|
-
"line": 48,
|
|
914
|
-
"column": 73,
|
|
915
|
-
"index": 1445
|
|
916
|
-
}
|
|
917
|
-
},
|
|
918
|
-
"filepath": "src/components/pagination/pagination_button_arrow.tsx"
|
|
919
|
-
},
|
|
920
|
-
{
|
|
921
|
-
"token": "euiPaginationButtonArrow.previousPage",
|
|
922
|
-
"defString": "Previous page",
|
|
923
|
-
"highlighting": "string",
|
|
924
|
-
"loc": {
|
|
925
|
-
"start": {
|
|
926
|
-
"line": 49,
|
|
927
|
-
"column": 14,
|
|
928
|
-
"index": 1461
|
|
929
|
-
},
|
|
930
|
-
"end": {
|
|
931
|
-
"line": 52,
|
|
932
|
-
"column": 5,
|
|
933
|
-
"index": 1547
|
|
934
|
-
}
|
|
935
|
-
},
|
|
936
|
-
"filepath": "src/components/pagination/pagination_button_arrow.tsx"
|
|
937
|
-
},
|
|
938
|
-
{
|
|
939
|
-
"token": "euiPaginationButtonArrow.nextPage",
|
|
940
|
-
"defString": "Next page",
|
|
939
|
+
"token": "euiPaginationButtonArrow.nextPage",
|
|
940
|
+
"defString": "Next page",
|
|
941
941
|
"highlighting": "string",
|
|
942
942
|
"loc": {
|
|
943
943
|
"start": {
|
|
@@ -1152,148 +1152,76 @@
|
|
|
1152
1152
|
"filepath": "src/components/pagination/pagination.tsx"
|
|
1153
1153
|
},
|
|
1154
1154
|
{
|
|
1155
|
-
"token": "
|
|
1156
|
-
"defString": "
|
|
1157
|
-
"highlighting": "string",
|
|
1158
|
-
"loc": {
|
|
1159
|
-
"start": {
|
|
1160
|
-
"line": 285,
|
|
1161
|
-
"column": 8,
|
|
1162
|
-
"index": 7699
|
|
1163
|
-
},
|
|
1164
|
-
"end": {
|
|
1165
|
-
"line": 285,
|
|
1166
|
-
"column": 76,
|
|
1167
|
-
"index": 7767
|
|
1168
|
-
}
|
|
1169
|
-
},
|
|
1170
|
-
"filepath": "src/components/markdown_editor/markdown_editor_toolbar.tsx"
|
|
1171
|
-
},
|
|
1172
|
-
{
|
|
1173
|
-
"token": "euiMarkdownEditorToolbar.previewMarkdown",
|
|
1174
|
-
"defString": "Preview",
|
|
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.",
|
|
1175
1157
|
"highlighting": "string",
|
|
1176
1158
|
"loc": {
|
|
1177
1159
|
"start": {
|
|
1178
|
-
"line":
|
|
1160
|
+
"line": 133,
|
|
1179
1161
|
"column": 8,
|
|
1180
|
-
"index":
|
|
1162
|
+
"index": 4057
|
|
1181
1163
|
},
|
|
1182
1164
|
"end": {
|
|
1183
|
-
"line":
|
|
1165
|
+
"line": 136,
|
|
1184
1166
|
"column": 10,
|
|
1185
|
-
"index":
|
|
1167
|
+
"index": 4253
|
|
1186
1168
|
}
|
|
1187
1169
|
},
|
|
1188
|
-
"filepath": "src/components/
|
|
1189
|
-
},
|
|
1190
|
-
{
|
|
1191
|
-
"token": "euiMarkdownEditorFooter.uploadingFiles",
|
|
1192
|
-
"defString": "Click to upload files",
|
|
1193
|
-
"highlighting": "string",
|
|
1194
|
-
"loc": {
|
|
1195
|
-
"start": {
|
|
1196
|
-
"line": 67,
|
|
1197
|
-
"column": 20,
|
|
1198
|
-
"index": 2134
|
|
1199
|
-
},
|
|
1200
|
-
"end": {
|
|
1201
|
-
"line": 70,
|
|
1202
|
-
"column": 5,
|
|
1203
|
-
"index": 2229
|
|
1204
|
-
}
|
|
1205
|
-
},
|
|
1206
|
-
"filepath": "src/components/markdown_editor/markdown_editor_footer.tsx"
|
|
1207
|
-
},
|
|
1208
|
-
{
|
|
1209
|
-
"token": "euiMarkdownEditorFooter.openUploadModal",
|
|
1210
|
-
"defString": "Open upload files modal",
|
|
1211
|
-
"highlighting": "string",
|
|
1212
|
-
"loc": {
|
|
1213
|
-
"start": {
|
|
1214
|
-
"line": 71,
|
|
1215
|
-
"column": 21,
|
|
1216
|
-
"index": 2252
|
|
1217
|
-
},
|
|
1218
|
-
"end": {
|
|
1219
|
-
"line": 74,
|
|
1220
|
-
"column": 5,
|
|
1221
|
-
"index": 2350
|
|
1222
|
-
}
|
|
1223
|
-
},
|
|
1224
|
-
"filepath": "src/components/markdown_editor/markdown_editor_footer.tsx"
|
|
1225
|
-
},
|
|
1226
|
-
{
|
|
1227
|
-
"token": "euiMarkdownEditorFooter.unsupportedFileType",
|
|
1228
|
-
"defString": "File type not supported",
|
|
1229
|
-
"highlighting": "string",
|
|
1230
|
-
"loc": {
|
|
1231
|
-
"start": {
|
|
1232
|
-
"line": 75,
|
|
1233
|
-
"column": 25,
|
|
1234
|
-
"index": 2377
|
|
1235
|
-
},
|
|
1236
|
-
"end": {
|
|
1237
|
-
"line": 78,
|
|
1238
|
-
"column": 5,
|
|
1239
|
-
"index": 2479
|
|
1240
|
-
}
|
|
1241
|
-
},
|
|
1242
|
-
"filepath": "src/components/markdown_editor/markdown_editor_footer.tsx"
|
|
1170
|
+
"filepath": "src/components/modal/modal.tsx"
|
|
1243
1171
|
},
|
|
1244
1172
|
{
|
|
1245
|
-
"token": "
|
|
1246
|
-
"defString": "
|
|
1173
|
+
"token": "euiModal.closeModal",
|
|
1174
|
+
"defString": "Closes this modal window",
|
|
1247
1175
|
"highlighting": "string",
|
|
1248
1176
|
"loc": {
|
|
1249
1177
|
"start": {
|
|
1250
|
-
"line":
|
|
1251
|
-
"column":
|
|
1252
|
-
"index":
|
|
1178
|
+
"line": 163,
|
|
1179
|
+
"column": 10,
|
|
1180
|
+
"index": 4871
|
|
1253
1181
|
},
|
|
1254
1182
|
"end": {
|
|
1255
|
-
"line":
|
|
1256
|
-
"column":
|
|
1257
|
-
"index":
|
|
1183
|
+
"line": 166,
|
|
1184
|
+
"column": 11,
|
|
1185
|
+
"index": 4978
|
|
1258
1186
|
}
|
|
1259
1187
|
},
|
|
1260
|
-
"filepath": "src/components/
|
|
1188
|
+
"filepath": "src/components/modal/modal.tsx"
|
|
1261
1189
|
},
|
|
1262
1190
|
{
|
|
1263
|
-
"token": "
|
|
1264
|
-
"defString": "
|
|
1191
|
+
"token": "euiMarkdownEditorToolbar.editor",
|
|
1192
|
+
"defString": "Editor",
|
|
1265
1193
|
"highlighting": "string",
|
|
1266
1194
|
"loc": {
|
|
1267
1195
|
"start": {
|
|
1268
|
-
"line":
|
|
1269
|
-
"column":
|
|
1270
|
-
"index":
|
|
1196
|
+
"line": 285,
|
|
1197
|
+
"column": 8,
|
|
1198
|
+
"index": 7699
|
|
1271
1199
|
},
|
|
1272
1200
|
"end": {
|
|
1273
|
-
"line":
|
|
1274
|
-
"column":
|
|
1275
|
-
"index":
|
|
1201
|
+
"line": 285,
|
|
1202
|
+
"column": 76,
|
|
1203
|
+
"index": 7767
|
|
1276
1204
|
}
|
|
1277
1205
|
},
|
|
1278
|
-
"filepath": "src/components/markdown_editor/
|
|
1206
|
+
"filepath": "src/components/markdown_editor/markdown_editor_toolbar.tsx"
|
|
1279
1207
|
},
|
|
1280
1208
|
{
|
|
1281
|
-
"token": "
|
|
1282
|
-
"defString": "
|
|
1209
|
+
"token": "euiMarkdownEditorToolbar.previewMarkdown",
|
|
1210
|
+
"defString": "Preview",
|
|
1283
1211
|
"highlighting": "string",
|
|
1284
1212
|
"loc": {
|
|
1285
1213
|
"start": {
|
|
1286
|
-
"line":
|
|
1287
|
-
"column":
|
|
1288
|
-
"index":
|
|
1214
|
+
"line": 287,
|
|
1215
|
+
"column": 8,
|
|
1216
|
+
"index": 7788
|
|
1289
1217
|
},
|
|
1290
1218
|
"end": {
|
|
1291
|
-
"line":
|
|
1292
|
-
"column":
|
|
1293
|
-
"index":
|
|
1219
|
+
"line": 290,
|
|
1220
|
+
"column": 10,
|
|
1221
|
+
"index": 7894
|
|
1294
1222
|
}
|
|
1295
1223
|
},
|
|
1296
|
-
"filepath": "src/components/markdown_editor/
|
|
1224
|
+
"filepath": "src/components/markdown_editor/markdown_editor_toolbar.tsx"
|
|
1297
1225
|
},
|
|
1298
1226
|
{
|
|
1299
1227
|
"token": "euiMarkdownEditorHelpButton.mdSyntaxLink",
|
|
@@ -1422,76 +1350,148 @@
|
|
|
1422
1350
|
"filepath": "src/components/markdown_editor/markdown_editor_help_button.tsx"
|
|
1423
1351
|
},
|
|
1424
1352
|
{
|
|
1425
|
-
"token": "
|
|
1426
|
-
"defString": "
|
|
1353
|
+
"token": "euiMarkdownEditorFooter.uploadingFiles",
|
|
1354
|
+
"defString": "Click to upload files",
|
|
1427
1355
|
"highlighting": "string",
|
|
1428
1356
|
"loc": {
|
|
1429
1357
|
"start": {
|
|
1430
|
-
"line":
|
|
1431
|
-
"column":
|
|
1432
|
-
"index":
|
|
1358
|
+
"line": 67,
|
|
1359
|
+
"column": 20,
|
|
1360
|
+
"index": 2134
|
|
1433
1361
|
},
|
|
1434
1362
|
"end": {
|
|
1435
|
-
"line":
|
|
1436
|
-
"column":
|
|
1437
|
-
"index":
|
|
1363
|
+
"line": 70,
|
|
1364
|
+
"column": 5,
|
|
1365
|
+
"index": 2229
|
|
1438
1366
|
}
|
|
1439
1367
|
},
|
|
1440
|
-
"filepath": "src/components/
|
|
1368
|
+
"filepath": "src/components/markdown_editor/markdown_editor_footer.tsx"
|
|
1441
1369
|
},
|
|
1442
1370
|
{
|
|
1443
|
-
"token": "
|
|
1444
|
-
"defString": "
|
|
1371
|
+
"token": "euiMarkdownEditorFooter.openUploadModal",
|
|
1372
|
+
"defString": "Open upload files modal",
|
|
1445
1373
|
"highlighting": "string",
|
|
1446
1374
|
"loc": {
|
|
1447
1375
|
"start": {
|
|
1448
|
-
"line":
|
|
1449
|
-
"column":
|
|
1450
|
-
"index":
|
|
1376
|
+
"line": 71,
|
|
1377
|
+
"column": 21,
|
|
1378
|
+
"index": 2252
|
|
1451
1379
|
},
|
|
1452
1380
|
"end": {
|
|
1453
|
-
"line":
|
|
1454
|
-
"column":
|
|
1455
|
-
"index":
|
|
1381
|
+
"line": 74,
|
|
1382
|
+
"column": 5,
|
|
1383
|
+
"index": 2350
|
|
1456
1384
|
}
|
|
1457
1385
|
},
|
|
1458
|
-
"filepath": "src/components/
|
|
1386
|
+
"filepath": "src/components/markdown_editor/markdown_editor_footer.tsx"
|
|
1459
1387
|
},
|
|
1460
1388
|
{
|
|
1461
|
-
"token": "
|
|
1462
|
-
"defString": "
|
|
1389
|
+
"token": "euiMarkdownEditorFooter.unsupportedFileType",
|
|
1390
|
+
"defString": "File type not supported",
|
|
1463
1391
|
"highlighting": "string",
|
|
1464
1392
|
"loc": {
|
|
1465
1393
|
"start": {
|
|
1466
|
-
"line":
|
|
1467
|
-
"column":
|
|
1468
|
-
"index":
|
|
1394
|
+
"line": 75,
|
|
1395
|
+
"column": 25,
|
|
1396
|
+
"index": 2377
|
|
1469
1397
|
},
|
|
1470
1398
|
"end": {
|
|
1471
|
-
"line":
|
|
1472
|
-
"column":
|
|
1473
|
-
"index":
|
|
1399
|
+
"line": 78,
|
|
1400
|
+
"column": 5,
|
|
1401
|
+
"index": 2479
|
|
1474
1402
|
}
|
|
1475
1403
|
},
|
|
1476
|
-
"filepath": "src/components/
|
|
1404
|
+
"filepath": "src/components/markdown_editor/markdown_editor_footer.tsx"
|
|
1477
1405
|
},
|
|
1478
1406
|
{
|
|
1479
|
-
"token": "
|
|
1480
|
-
"defString": "
|
|
1407
|
+
"token": "euiMarkdownEditorFooter.supportedFileTypes",
|
|
1408
|
+
"defString": "Supported files: {supportedFileTypes}",
|
|
1481
1409
|
"highlighting": "string",
|
|
1482
1410
|
"loc": {
|
|
1483
1411
|
"start": {
|
|
1484
|
-
"line":
|
|
1485
|
-
"column":
|
|
1486
|
-
"index":
|
|
1412
|
+
"line": 79,
|
|
1413
|
+
"column": 24,
|
|
1414
|
+
"index": 2505
|
|
1487
1415
|
},
|
|
1488
1416
|
"end": {
|
|
1489
|
-
"line":
|
|
1490
|
-
"column":
|
|
1491
|
-
"index":
|
|
1417
|
+
"line": 83,
|
|
1418
|
+
"column": 5,
|
|
1419
|
+
"index": 2650
|
|
1492
1420
|
}
|
|
1493
1421
|
},
|
|
1494
|
-
"filepath": "src/components/
|
|
1422
|
+
"filepath": "src/components/markdown_editor/markdown_editor_footer.tsx"
|
|
1423
|
+
},
|
|
1424
|
+
{
|
|
1425
|
+
"token": "euiMarkdownEditorFooter.showSyntaxErrors",
|
|
1426
|
+
"defString": "Show errors",
|
|
1427
|
+
"highlighting": "string",
|
|
1428
|
+
"loc": {
|
|
1429
|
+
"start": {
|
|
1430
|
+
"line": 84,
|
|
1431
|
+
"column": 22,
|
|
1432
|
+
"index": 2674
|
|
1433
|
+
},
|
|
1434
|
+
"end": {
|
|
1435
|
+
"line": 87,
|
|
1436
|
+
"column": 5,
|
|
1437
|
+
"index": 2761
|
|
1438
|
+
}
|
|
1439
|
+
},
|
|
1440
|
+
"filepath": "src/components/markdown_editor/markdown_editor_footer.tsx"
|
|
1441
|
+
},
|
|
1442
|
+
{
|
|
1443
|
+
"token": "euiMarkdownEditorFooter.errorsTitle",
|
|
1444
|
+
"defString": "Errors",
|
|
1445
|
+
"highlighting": "string",
|
|
1446
|
+
"loc": {
|
|
1447
|
+
"start": {
|
|
1448
|
+
"line": 158,
|
|
1449
|
+
"column": 12,
|
|
1450
|
+
"index": 4712
|
|
1451
|
+
},
|
|
1452
|
+
"end": {
|
|
1453
|
+
"line": 161,
|
|
1454
|
+
"column": 14,
|
|
1455
|
+
"index": 4824
|
|
1456
|
+
}
|
|
1457
|
+
},
|
|
1458
|
+
"filepath": "src/components/markdown_editor/markdown_editor_footer.tsx"
|
|
1459
|
+
},
|
|
1460
|
+
{
|
|
1461
|
+
"token": "euiMark.highlightStart",
|
|
1462
|
+
"defString": "highlight start",
|
|
1463
|
+
"highlighting": "string",
|
|
1464
|
+
"loc": {
|
|
1465
|
+
"start": {
|
|
1466
|
+
"line": 44,
|
|
1467
|
+
"column": 25,
|
|
1468
|
+
"index": 1289
|
|
1469
|
+
},
|
|
1470
|
+
"end": {
|
|
1471
|
+
"line": 47,
|
|
1472
|
+
"column": 3,
|
|
1473
|
+
"index": 1356
|
|
1474
|
+
}
|
|
1475
|
+
},
|
|
1476
|
+
"filepath": "src/components/mark/mark.tsx"
|
|
1477
|
+
},
|
|
1478
|
+
{
|
|
1479
|
+
"token": "euiMark.highlightEnd",
|
|
1480
|
+
"defString": "highlight end",
|
|
1481
|
+
"highlighting": "string",
|
|
1482
|
+
"loc": {
|
|
1483
|
+
"start": {
|
|
1484
|
+
"line": 48,
|
|
1485
|
+
"column": 23,
|
|
1486
|
+
"index": 1381
|
|
1487
|
+
},
|
|
1488
|
+
"end": {
|
|
1489
|
+
"line": 48,
|
|
1490
|
+
"column": 74,
|
|
1491
|
+
"index": 1432
|
|
1492
|
+
}
|
|
1493
|
+
},
|
|
1494
|
+
"filepath": "src/components/mark/mark.tsx"
|
|
1495
1495
|
},
|
|
1496
1496
|
{
|
|
1497
1497
|
"token": "euiLoadingStrings.ariaLabel",
|
|
@@ -1679,14 +1679,14 @@
|
|
|
1679
1679
|
"highlighting": "string",
|
|
1680
1680
|
"loc": {
|
|
1681
1681
|
"start": {
|
|
1682
|
-
"line":
|
|
1682
|
+
"line": 464,
|
|
1683
1683
|
"column": 14,
|
|
1684
|
-
"index":
|
|
1684
|
+
"index": 15737
|
|
1685
1685
|
},
|
|
1686
1686
|
"end": {
|
|
1687
|
-
"line":
|
|
1687
|
+
"line": 467,
|
|
1688
1688
|
"column": 16,
|
|
1689
|
-
"index":
|
|
1689
|
+
"index": 15952
|
|
1690
1690
|
}
|
|
1691
1691
|
},
|
|
1692
1692
|
"filepath": "src/components/flyout/flyout.tsx"
|
|
@@ -1697,14 +1697,14 @@
|
|
|
1697
1697
|
"highlighting": "string",
|
|
1698
1698
|
"loc": {
|
|
1699
1699
|
"start": {
|
|
1700
|
-
"line":
|
|
1700
|
+
"line": 469,
|
|
1701
1701
|
"column": 14,
|
|
1702
|
-
"index":
|
|
1702
|
+
"index": 15985
|
|
1703
1703
|
},
|
|
1704
1704
|
"end": {
|
|
1705
|
-
"line":
|
|
1705
|
+
"line": 472,
|
|
1706
1706
|
"column": 16,
|
|
1707
|
-
"index":
|
|
1707
|
+
"index": 16163
|
|
1708
1708
|
}
|
|
1709
1709
|
},
|
|
1710
1710
|
"filepath": "src/components/flyout/flyout.tsx"
|
|
@@ -1715,14 +1715,14 @@
|
|
|
1715
1715
|
"highlighting": "string",
|
|
1716
1716
|
"loc": {
|
|
1717
1717
|
"start": {
|
|
1718
|
-
"line":
|
|
1718
|
+
"line": 475,
|
|
1719
1719
|
"column": 14,
|
|
1720
|
-
"index":
|
|
1720
|
+
"index": 16243
|
|
1721
1721
|
},
|
|
1722
1722
|
"end": {
|
|
1723
|
-
"line":
|
|
1723
|
+
"line": 478,
|
|
1724
1724
|
"column": 16,
|
|
1725
|
-
"index":
|
|
1725
|
+
"index": 16424
|
|
1726
1726
|
}
|
|
1727
1727
|
},
|
|
1728
1728
|
"filepath": "src/components/flyout/flyout.tsx"
|
|
@@ -1751,14 +1751,14 @@
|
|
|
1751
1751
|
"highlighting": "string",
|
|
1752
1752
|
"loc": {
|
|
1753
1753
|
"start": {
|
|
1754
|
-
"line":
|
|
1754
|
+
"line": 175,
|
|
1755
1755
|
"column": 27,
|
|
1756
|
-
"index":
|
|
1756
|
+
"index": 5388
|
|
1757
1757
|
},
|
|
1758
1758
|
"end": {
|
|
1759
|
-
"line":
|
|
1759
|
+
"line": 179,
|
|
1760
1760
|
"column": 3,
|
|
1761
|
-
"index":
|
|
1761
|
+
"index": 5509
|
|
1762
1762
|
}
|
|
1763
1763
|
},
|
|
1764
1764
|
"filepath": "src/components/filter_group/filter_button.tsx"
|
|
@@ -1769,14 +1769,14 @@
|
|
|
1769
1769
|
"highlighting": "string",
|
|
1770
1770
|
"loc": {
|
|
1771
1771
|
"start": {
|
|
1772
|
-
"line":
|
|
1772
|
+
"line": 180,
|
|
1773
1773
|
"column": 30,
|
|
1774
|
-
"index":
|
|
1774
|
+
"index": 5541
|
|
1775
1775
|
},
|
|
1776
1776
|
"end": {
|
|
1777
|
-
"line":
|
|
1777
|
+
"line": 184,
|
|
1778
1778
|
"column": 3,
|
|
1779
|
-
"index":
|
|
1779
|
+
"index": 5668
|
|
1780
1780
|
}
|
|
1781
1781
|
},
|
|
1782
1782
|
"filepath": "src/components/filter_group/filter_button.tsx"
|
|
@@ -1805,14 +1805,14 @@
|
|
|
1805
1805
|
"highlighting": "string",
|
|
1806
1806
|
"loc": {
|
|
1807
1807
|
"start": {
|
|
1808
|
-
"line":
|
|
1808
|
+
"line": 392,
|
|
1809
1809
|
"column": 22,
|
|
1810
|
-
"index":
|
|
1810
|
+
"index": 10634
|
|
1811
1811
|
},
|
|
1812
1812
|
"end": {
|
|
1813
|
-
"line":
|
|
1813
|
+
"line": 396,
|
|
1814
1814
|
"column": 5,
|
|
1815
|
-
"index":
|
|
1815
|
+
"index": 10806
|
|
1816
1816
|
}
|
|
1817
1817
|
},
|
|
1818
1818
|
"filepath": "src/components/datagrid/data_grid.tsx"
|
|
@@ -1823,14 +1823,14 @@
|
|
|
1823
1823
|
"highlighting": "string",
|
|
1824
1824
|
"loc": {
|
|
1825
1825
|
"start": {
|
|
1826
|
-
"line":
|
|
1826
|
+
"line": 397,
|
|
1827
1827
|
"column": 27,
|
|
1828
|
-
"index":
|
|
1828
|
+
"index": 10835
|
|
1829
1829
|
},
|
|
1830
1830
|
"end": {
|
|
1831
|
-
"line":
|
|
1831
|
+
"line": 401,
|
|
1832
1832
|
"column": 5,
|
|
1833
|
-
"index":
|
|
1833
|
+
"index": 10976
|
|
1834
1834
|
}
|
|
1835
1835
|
},
|
|
1836
1836
|
"filepath": "src/components/datagrid/data_grid.tsx"
|
|
@@ -1841,36 +1841,18 @@
|
|
|
1841
1841
|
"highlighting": "string",
|
|
1842
1842
|
"loc": {
|
|
1843
1843
|
"start": {
|
|
1844
|
-
"line":
|
|
1844
|
+
"line": 560,
|
|
1845
1845
|
"column": 18,
|
|
1846
|
-
"index":
|
|
1846
|
+
"index": 17456
|
|
1847
1847
|
},
|
|
1848
1848
|
"end": {
|
|
1849
|
-
"line":
|
|
1849
|
+
"line": 563,
|
|
1850
1850
|
"column": 20,
|
|
1851
|
-
"index":
|
|
1851
|
+
"index": 17609
|
|
1852
1852
|
}
|
|
1853
1853
|
},
|
|
1854
1854
|
"filepath": "src/components/datagrid/data_grid.tsx"
|
|
1855
1855
|
},
|
|
1856
|
-
{
|
|
1857
|
-
"token": "euiCollapsibleNavBeta.ariaLabel",
|
|
1858
|
-
"defString": "Site menu",
|
|
1859
|
-
"highlighting": "string",
|
|
1860
|
-
"loc": {
|
|
1861
|
-
"start": {
|
|
1862
|
-
"line": 181,
|
|
1863
|
-
"column": 27,
|
|
1864
|
-
"index": 6023
|
|
1865
|
-
},
|
|
1866
|
-
"end": {
|
|
1867
|
-
"line": 184,
|
|
1868
|
-
"column": 3,
|
|
1869
|
-
"index": 6093
|
|
1870
|
-
}
|
|
1871
|
-
},
|
|
1872
|
-
"filepath": "src/components/collapsible_nav_beta/collapsible_nav_beta.tsx"
|
|
1873
|
-
},
|
|
1874
1856
|
{
|
|
1875
1857
|
"token": "euiComboBox.listboxAriaLabel",
|
|
1876
1858
|
"defString": "Choose from the following options",
|
|
@@ -2160,22 +2142,22 @@
|
|
|
2160
2142
|
"filepath": "src/components/color_picker/color_picker.tsx"
|
|
2161
2143
|
},
|
|
2162
2144
|
{
|
|
2163
|
-
"token": "
|
|
2164
|
-
"defString": "
|
|
2145
|
+
"token": "euiCollapsibleNavBeta.ariaLabel",
|
|
2146
|
+
"defString": "Site menu",
|
|
2165
2147
|
"highlighting": "string",
|
|
2166
2148
|
"loc": {
|
|
2167
2149
|
"start": {
|
|
2168
|
-
"line":
|
|
2169
|
-
"column":
|
|
2170
|
-
"index":
|
|
2150
|
+
"line": 181,
|
|
2151
|
+
"column": 27,
|
|
2152
|
+
"index": 6023
|
|
2171
2153
|
},
|
|
2172
2154
|
"end": {
|
|
2173
|
-
"line":
|
|
2174
|
-
"column":
|
|
2175
|
-
"index":
|
|
2155
|
+
"line": 184,
|
|
2156
|
+
"column": 3,
|
|
2157
|
+
"index": 6093
|
|
2176
2158
|
}
|
|
2177
2159
|
},
|
|
2178
|
-
"filepath": "src/components/
|
|
2160
|
+
"filepath": "src/components/collapsible_nav_beta/collapsible_nav_beta.tsx"
|
|
2179
2161
|
},
|
|
2180
2162
|
{
|
|
2181
2163
|
"token": "euiCodeBlockFullScreen.fullscreenCollapse",
|
|
@@ -2286,58 +2268,22 @@
|
|
|
2286
2268
|
"filepath": "src/components/code/code_block.tsx"
|
|
2287
2269
|
},
|
|
2288
2270
|
{
|
|
2289
|
-
"token": "
|
|
2290
|
-
"defString": "
|
|
2271
|
+
"token": "euiCallOut.dismissAriaLabel",
|
|
2272
|
+
"defString": "Dismiss this callout",
|
|
2291
2273
|
"highlighting": "string",
|
|
2292
2274
|
"loc": {
|
|
2293
2275
|
"start": {
|
|
2294
|
-
"line":
|
|
2276
|
+
"line": 105,
|
|
2295
2277
|
"column": 8,
|
|
2296
|
-
"index":
|
|
2278
|
+
"index": 2943
|
|
2297
2279
|
},
|
|
2298
2280
|
"end": {
|
|
2299
|
-
"line":
|
|
2281
|
+
"line": 108,
|
|
2300
2282
|
"column": 9,
|
|
2301
|
-
"index":
|
|
2302
|
-
}
|
|
2303
|
-
},
|
|
2304
|
-
"filepath": "src/components/bottom_bar/bottom_bar.tsx"
|
|
2305
|
-
},
|
|
2306
|
-
{
|
|
2307
|
-
"token": "euiBottomBar.customScreenReaderAnnouncement",
|
|
2308
|
-
"defString": "There is a new region landmark called {landmarkHeading} with page level controls at the end of the document.",
|
|
2309
|
-
"highlighting": "string",
|
|
2310
|
-
"loc": {
|
|
2311
|
-
"start": {
|
|
2312
|
-
"line": 206,
|
|
2313
|
-
"column": 14,
|
|
2314
|
-
"index": 6054
|
|
2315
|
-
},
|
|
2316
|
-
"end": {
|
|
2317
|
-
"line": 210,
|
|
2318
|
-
"column": 16,
|
|
2319
|
-
"index": 6327
|
|
2320
|
-
}
|
|
2321
|
-
},
|
|
2322
|
-
"filepath": "src/components/bottom_bar/bottom_bar.tsx"
|
|
2323
|
-
},
|
|
2324
|
-
{
|
|
2325
|
-
"token": "euiBottomBar.screenReaderAnnouncement",
|
|
2326
|
-
"defString": "There is a new region landmark with page level controls at the end of the document.",
|
|
2327
|
-
"highlighting": "string",
|
|
2328
|
-
"loc": {
|
|
2329
|
-
"start": {
|
|
2330
|
-
"line": 212,
|
|
2331
|
-
"column": 14,
|
|
2332
|
-
"index": 6360
|
|
2333
|
-
},
|
|
2334
|
-
"end": {
|
|
2335
|
-
"line": 215,
|
|
2336
|
-
"column": 16,
|
|
2337
|
-
"index": 6557
|
|
2283
|
+
"index": 3048
|
|
2338
2284
|
}
|
|
2339
2285
|
},
|
|
2340
|
-
"filepath": "src/components/
|
|
2286
|
+
"filepath": "src/components/call_out/call_out.tsx"
|
|
2341
2287
|
},
|
|
2342
2288
|
{
|
|
2343
2289
|
"token": "euiBreadcrumbs.nav.ariaLabel",
|
|
@@ -2394,58 +2340,112 @@
|
|
|
2394
2340
|
"filepath": "src/components/breadcrumbs/_breadcrumb_content.tsx"
|
|
2395
2341
|
},
|
|
2396
2342
|
{
|
|
2397
|
-
"token": "
|
|
2398
|
-
"defString": "
|
|
2343
|
+
"token": "euiBottomBar.screenReaderHeading",
|
|
2344
|
+
"defString": "Page level controls",
|
|
2399
2345
|
"highlighting": "string",
|
|
2400
2346
|
"loc": {
|
|
2401
2347
|
"start": {
|
|
2402
|
-
"line":
|
|
2403
|
-
"column":
|
|
2404
|
-
"index":
|
|
2348
|
+
"line": 192,
|
|
2349
|
+
"column": 8,
|
|
2350
|
+
"index": 5428
|
|
2405
2351
|
},
|
|
2406
2352
|
"end": {
|
|
2407
|
-
"line":
|
|
2408
|
-
"column":
|
|
2409
|
-
"index":
|
|
2353
|
+
"line": 195,
|
|
2354
|
+
"column": 9,
|
|
2355
|
+
"index": 5537
|
|
2410
2356
|
}
|
|
2411
2357
|
},
|
|
2412
|
-
"filepath": "src/components/
|
|
2358
|
+
"filepath": "src/components/bottom_bar/bottom_bar.tsx"
|
|
2413
2359
|
},
|
|
2414
2360
|
{
|
|
2415
|
-
"token": "
|
|
2416
|
-
"defString": "
|
|
2361
|
+
"token": "euiBottomBar.customScreenReaderAnnouncement",
|
|
2362
|
+
"defString": "There is a new region landmark called {landmarkHeading} with page level controls at the end of the document.",
|
|
2417
2363
|
"highlighting": "string",
|
|
2418
2364
|
"loc": {
|
|
2419
2365
|
"start": {
|
|
2420
|
-
"line":
|
|
2421
|
-
"column":
|
|
2422
|
-
"index":
|
|
2366
|
+
"line": 222,
|
|
2367
|
+
"column": 14,
|
|
2368
|
+
"index": 6478
|
|
2423
2369
|
},
|
|
2424
2370
|
"end": {
|
|
2425
|
-
"line":
|
|
2426
|
-
"column":
|
|
2427
|
-
"index":
|
|
2371
|
+
"line": 226,
|
|
2372
|
+
"column": 16,
|
|
2373
|
+
"index": 6751
|
|
2428
2374
|
}
|
|
2429
2375
|
},
|
|
2430
|
-
"filepath": "src/components/
|
|
2376
|
+
"filepath": "src/components/bottom_bar/bottom_bar.tsx"
|
|
2431
2377
|
},
|
|
2432
2378
|
{
|
|
2433
|
-
"token": "
|
|
2434
|
-
"defString": "
|
|
2379
|
+
"token": "euiBottomBar.screenReaderAnnouncement",
|
|
2380
|
+
"defString": "There is a new region landmark with page level controls at the end of the document.",
|
|
2435
2381
|
"highlighting": "string",
|
|
2436
2382
|
"loc": {
|
|
2437
2383
|
"start": {
|
|
2438
|
-
"line":
|
|
2439
|
-
"column":
|
|
2440
|
-
"index":
|
|
2384
|
+
"line": 228,
|
|
2385
|
+
"column": 14,
|
|
2386
|
+
"index": 6784
|
|
2441
2387
|
},
|
|
2442
2388
|
"end": {
|
|
2443
|
-
"line":
|
|
2444
|
-
"column":
|
|
2445
|
-
"index":
|
|
2389
|
+
"line": 231,
|
|
2390
|
+
"column": 16,
|
|
2391
|
+
"index": 6981
|
|
2446
2392
|
}
|
|
2447
2393
|
},
|
|
2448
|
-
"filepath": "src/components/
|
|
2394
|
+
"filepath": "src/components/bottom_bar/bottom_bar.tsx"
|
|
2395
|
+
},
|
|
2396
|
+
{
|
|
2397
|
+
"token": "euiCollapsedItemActions.allActionsTooltip",
|
|
2398
|
+
"defString": "All actions",
|
|
2399
|
+
"highlighting": "string",
|
|
2400
|
+
"loc": {
|
|
2401
|
+
"start": {
|
|
2402
|
+
"line": 45,
|
|
2403
|
+
"column": 28,
|
|
2404
|
+
"index": 1373
|
|
2405
|
+
},
|
|
2406
|
+
"end": {
|
|
2407
|
+
"line": 48,
|
|
2408
|
+
"column": 3,
|
|
2409
|
+
"index": 1455
|
|
2410
|
+
}
|
|
2411
|
+
},
|
|
2412
|
+
"filepath": "src/components/basic_table/collapsed_item_actions.tsx"
|
|
2413
|
+
},
|
|
2414
|
+
{
|
|
2415
|
+
"token": "euiCollapsedItemActions.allActions",
|
|
2416
|
+
"defString": "All actions, row {index}",
|
|
2417
|
+
"highlighting": "string",
|
|
2418
|
+
"loc": {
|
|
2419
|
+
"start": {
|
|
2420
|
+
"line": 50,
|
|
2421
|
+
"column": 36,
|
|
2422
|
+
"index": 1494
|
|
2423
|
+
},
|
|
2424
|
+
"end": {
|
|
2425
|
+
"line": 56,
|
|
2426
|
+
"column": 3,
|
|
2427
|
+
"index": 1631
|
|
2428
|
+
}
|
|
2429
|
+
},
|
|
2430
|
+
"filepath": "src/components/basic_table/collapsed_item_actions.tsx"
|
|
2431
|
+
},
|
|
2432
|
+
{
|
|
2433
|
+
"token": "euiCollapsedItemActions.allActionsDisabled",
|
|
2434
|
+
"defString": "Individual item actions are disabled when rows are being selected.",
|
|
2435
|
+
"highlighting": "string",
|
|
2436
|
+
"loc": {
|
|
2437
|
+
"start": {
|
|
2438
|
+
"line": 58,
|
|
2439
|
+
"column": 44,
|
|
2440
|
+
"index": 1678
|
|
2441
|
+
},
|
|
2442
|
+
"end": {
|
|
2443
|
+
"line": 61,
|
|
2444
|
+
"column": 3,
|
|
2445
|
+
"index": 1816
|
|
2446
|
+
}
|
|
2447
|
+
},
|
|
2448
|
+
"filepath": "src/components/basic_table/collapsed_item_actions.tsx"
|
|
2449
2449
|
},
|
|
2450
2450
|
{
|
|
2451
2451
|
"token": "euiBasicTable.noItemsMessage",
|
|
@@ -2699,20 +2699,38 @@
|
|
|
2699
2699
|
},
|
|
2700
2700
|
"filepath": "src/components/table/mobile/table_sort_mobile.tsx"
|
|
2701
2701
|
},
|
|
2702
|
+
{
|
|
2703
|
+
"token": "euiFieldValueSelectionFilter.buttonLabelHint",
|
|
2704
|
+
"defString": "Selection",
|
|
2705
|
+
"highlighting": "string",
|
|
2706
|
+
"loc": {
|
|
2707
|
+
"start": {
|
|
2708
|
+
"line": 302,
|
|
2709
|
+
"column": 6,
|
|
2710
|
+
"index": 8615
|
|
2711
|
+
},
|
|
2712
|
+
"end": {
|
|
2713
|
+
"line": 305,
|
|
2714
|
+
"column": 7,
|
|
2715
|
+
"index": 8720
|
|
2716
|
+
}
|
|
2717
|
+
},
|
|
2718
|
+
"filepath": "src/components/search_bar/filters/field_value_selection_filter.tsx"
|
|
2719
|
+
},
|
|
2702
2720
|
{
|
|
2703
2721
|
"token": "euiSelectableTemplateSitewide.searchPlaceholder",
|
|
2704
2722
|
"defString": "Search for anything...",
|
|
2705
2723
|
"highlighting": "string",
|
|
2706
2724
|
"loc": {
|
|
2707
2725
|
"start": {
|
|
2708
|
-
"line":
|
|
2726
|
+
"line": 165,
|
|
2709
2727
|
"column": 30,
|
|
2710
|
-
"index":
|
|
2728
|
+
"index": 5188
|
|
2711
2729
|
},
|
|
2712
2730
|
"end": {
|
|
2713
|
-
"line":
|
|
2731
|
+
"line": 168,
|
|
2714
2732
|
"column": 3,
|
|
2715
|
-
"index":
|
|
2733
|
+
"index": 5291
|
|
2716
2734
|
}
|
|
2717
2735
|
},
|
|
2718
2736
|
"filepath": "src/components/selectable/selectable_templates/selectable_template_sitewide.tsx"
|
|
@@ -2723,14 +2741,14 @@
|
|
|
2723
2741
|
"highlighting": "string",
|
|
2724
2742
|
"loc": {
|
|
2725
2743
|
"start": {
|
|
2726
|
-
"line":
|
|
2744
|
+
"line": 251,
|
|
2727
2745
|
"column": 8,
|
|
2728
|
-
"index":
|
|
2746
|
+
"index": 7345
|
|
2729
2747
|
},
|
|
2730
2748
|
"end": {
|
|
2731
|
-
"line":
|
|
2749
|
+
"line": 254,
|
|
2732
2750
|
"column": 10,
|
|
2733
|
-
"index":
|
|
2751
|
+
"index": 7463
|
|
2734
2752
|
}
|
|
2735
2753
|
},
|
|
2736
2754
|
"filepath": "src/components/selectable/selectable_templates/selectable_template_sitewide.tsx"
|
|
@@ -2741,14 +2759,14 @@
|
|
|
2741
2759
|
"highlighting": "string",
|
|
2742
2760
|
"loc": {
|
|
2743
2761
|
"start": {
|
|
2744
|
-
"line":
|
|
2762
|
+
"line": 262,
|
|
2745
2763
|
"column": 8,
|
|
2746
|
-
"index":
|
|
2764
|
+
"index": 7606
|
|
2747
2765
|
},
|
|
2748
2766
|
"end": {
|
|
2749
|
-
"line":
|
|
2767
|
+
"line": 265,
|
|
2750
2768
|
"column": 10,
|
|
2751
|
-
"index":
|
|
2769
|
+
"index": 7724
|
|
2752
2770
|
}
|
|
2753
2771
|
},
|
|
2754
2772
|
"filepath": "src/components/selectable/selectable_templates/selectable_template_sitewide.tsx"
|
|
@@ -2759,14 +2777,14 @@
|
|
|
2759
2777
|
"highlighting": "string",
|
|
2760
2778
|
"loc": {
|
|
2761
2779
|
"start": {
|
|
2762
|
-
"line":
|
|
2780
|
+
"line": 319,
|
|
2763
2781
|
"column": 12,
|
|
2764
|
-
"index":
|
|
2782
|
+
"index": 9355
|
|
2765
2783
|
},
|
|
2766
2784
|
"end": {
|
|
2767
|
-
"line":
|
|
2785
|
+
"line": 322,
|
|
2768
2786
|
"column": 14,
|
|
2769
|
-
"index":
|
|
2787
|
+
"index": 9477
|
|
2770
2788
|
}
|
|
2771
2789
|
},
|
|
2772
2790
|
"filepath": "src/components/selectable/selectable_templates/selectable_template_sitewide.tsx"
|
|
@@ -2933,24 +2951,6 @@
|
|
|
2933
2951
|
},
|
|
2934
2952
|
"filepath": "src/components/selectable/selectable_list/selectable_list_item.tsx"
|
|
2935
2953
|
},
|
|
2936
|
-
{
|
|
2937
|
-
"token": "euiFieldValueSelectionFilter.buttonLabelHint",
|
|
2938
|
-
"defString": "Selection",
|
|
2939
|
-
"highlighting": "string",
|
|
2940
|
-
"loc": {
|
|
2941
|
-
"start": {
|
|
2942
|
-
"line": 302,
|
|
2943
|
-
"column": 6,
|
|
2944
|
-
"index": 8615
|
|
2945
|
-
},
|
|
2946
|
-
"end": {
|
|
2947
|
-
"line": 305,
|
|
2948
|
-
"column": 7,
|
|
2949
|
-
"index": 8720
|
|
2950
|
-
}
|
|
2951
|
-
},
|
|
2952
|
-
"filepath": "src/components/search_bar/filters/field_value_selection_filter.tsx"
|
|
2953
|
-
},
|
|
2954
2954
|
{
|
|
2955
2955
|
"token": "euiPinnableListGroup.pinExtraActionLabel",
|
|
2956
2956
|
"defString": "Pin item",
|
|
@@ -3095,56 +3095,20 @@
|
|
|
3095
3095
|
},
|
|
3096
3096
|
"filepath": "src/components/form/range/dual_range.tsx"
|
|
3097
3097
|
},
|
|
3098
|
-
{
|
|
3099
|
-
"token": "euiFormControlLayoutDelimited.delimiterLabel",
|
|
3100
|
-
"defString": "to",
|
|
3101
|
-
"highlighting": "string",
|
|
3102
|
-
"loc": {
|
|
3103
|
-
"start": {
|
|
3104
|
-
"line": 135,
|
|
3105
|
-
"column": 27,
|
|
3106
|
-
"index": 3846
|
|
3107
|
-
},
|
|
3108
|
-
"end": {
|
|
3109
|
-
"line": 138,
|
|
3110
|
-
"column": 3,
|
|
3111
|
-
"index": 3922
|
|
3112
|
-
}
|
|
3113
|
-
},
|
|
3114
|
-
"filepath": "src/components/form/form_control_layout/form_control_layout_delimited.tsx"
|
|
3115
|
-
},
|
|
3116
|
-
{
|
|
3117
|
-
"token": "euiFormControlLayoutClearButton.label",
|
|
3118
|
-
"defString": "Clear input",
|
|
3119
|
-
"highlighting": "string",
|
|
3120
|
-
"loc": {
|
|
3121
|
-
"start": {
|
|
3122
|
-
"line": 35,
|
|
3123
|
-
"column": 20,
|
|
3124
|
-
"index": 1412
|
|
3125
|
-
},
|
|
3126
|
-
"end": {
|
|
3127
|
-
"line": 38,
|
|
3128
|
-
"column": 3,
|
|
3129
|
-
"index": 1490
|
|
3130
|
-
}
|
|
3131
|
-
},
|
|
3132
|
-
"filepath": "src/components/form/form_control_layout/form_control_layout_clear_button.tsx"
|
|
3133
|
-
},
|
|
3134
3098
|
{
|
|
3135
3099
|
"token": "euiFilePicker.promptText",
|
|
3136
3100
|
"defString": "Select or drag and drop a file",
|
|
3137
3101
|
"highlighting": "string",
|
|
3138
3102
|
"loc": {
|
|
3139
3103
|
"start": {
|
|
3140
|
-
"line":
|
|
3104
|
+
"line": 76,
|
|
3141
3105
|
"column": 6,
|
|
3142
|
-
"index":
|
|
3106
|
+
"index": 2335
|
|
3143
3107
|
},
|
|
3144
3108
|
"end": {
|
|
3145
|
-
"line":
|
|
3109
|
+
"line": 79,
|
|
3146
3110
|
"column": 8,
|
|
3147
|
-
"index":
|
|
3111
|
+
"index": 2442
|
|
3148
3112
|
}
|
|
3149
3113
|
},
|
|
3150
3114
|
"filepath": "src/components/form/file_picker/file_picker.tsx"
|
|
@@ -3155,14 +3119,14 @@
|
|
|
3155
3119
|
"highlighting": "string",
|
|
3156
3120
|
"loc": {
|
|
3157
3121
|
"start": {
|
|
3158
|
-
"line":
|
|
3122
|
+
"line": 100,
|
|
3159
3123
|
"column": 10,
|
|
3160
|
-
"index":
|
|
3124
|
+
"index": 2840
|
|
3161
3125
|
},
|
|
3162
3126
|
"end": {
|
|
3163
|
-
"line":
|
|
3127
|
+
"line": 104,
|
|
3164
3128
|
"column": 12,
|
|
3165
|
-
"index":
|
|
3129
|
+
"index": 3022
|
|
3166
3130
|
}
|
|
3167
3131
|
},
|
|
3168
3132
|
"filepath": "src/components/form/file_picker/file_picker.tsx"
|
|
@@ -3173,14 +3137,14 @@
|
|
|
3173
3137
|
"highlighting": "string",
|
|
3174
3138
|
"loc": {
|
|
3175
3139
|
"start": {
|
|
3176
|
-
"line":
|
|
3177
|
-
"column":
|
|
3178
|
-
"index":
|
|
3140
|
+
"line": 146,
|
|
3141
|
+
"column": 6,
|
|
3142
|
+
"index": 3885
|
|
3179
3143
|
},
|
|
3180
3144
|
"end": {
|
|
3181
|
-
"line":
|
|
3182
|
-
"column":
|
|
3183
|
-
"index":
|
|
3145
|
+
"line": 149,
|
|
3146
|
+
"column": 7,
|
|
3147
|
+
"index": 3995
|
|
3184
3148
|
}
|
|
3185
3149
|
},
|
|
3186
3150
|
"filepath": "src/components/form/file_picker/file_picker.tsx"
|
|
@@ -3191,53 +3155,53 @@
|
|
|
3191
3155
|
"highlighting": "string",
|
|
3192
3156
|
"loc": {
|
|
3193
3157
|
"start": {
|
|
3194
|
-
"line":
|
|
3195
|
-
"column":
|
|
3196
|
-
"index":
|
|
3158
|
+
"line": 263,
|
|
3159
|
+
"column": 18,
|
|
3160
|
+
"index": 7934
|
|
3197
3161
|
},
|
|
3198
3162
|
"end": {
|
|
3199
|
-
"line":
|
|
3200
|
-
"column":
|
|
3201
|
-
"index":
|
|
3163
|
+
"line": 266,
|
|
3164
|
+
"column": 20,
|
|
3165
|
+
"index": 8057
|
|
3202
3166
|
}
|
|
3203
3167
|
},
|
|
3204
3168
|
"filepath": "src/components/form/file_picker/file_picker.tsx"
|
|
3205
3169
|
},
|
|
3206
3170
|
{
|
|
3207
|
-
"token": "
|
|
3208
|
-
"defString": "
|
|
3171
|
+
"token": "euiFormControlLayoutDelimited.delimiterLabel",
|
|
3172
|
+
"defString": "to",
|
|
3209
3173
|
"highlighting": "string",
|
|
3210
3174
|
"loc": {
|
|
3211
3175
|
"start": {
|
|
3212
|
-
"line":
|
|
3213
|
-
"column":
|
|
3214
|
-
"index":
|
|
3176
|
+
"line": 127,
|
|
3177
|
+
"column": 27,
|
|
3178
|
+
"index": 3542
|
|
3215
3179
|
},
|
|
3216
3180
|
"end": {
|
|
3217
|
-
"line":
|
|
3181
|
+
"line": 130,
|
|
3218
3182
|
"column": 3,
|
|
3219
|
-
"index":
|
|
3183
|
+
"index": 3618
|
|
3220
3184
|
}
|
|
3221
3185
|
},
|
|
3222
|
-
"filepath": "src/components/form/
|
|
3186
|
+
"filepath": "src/components/form/form_control_layout/form_control_layout_delimited.tsx"
|
|
3223
3187
|
},
|
|
3224
3188
|
{
|
|
3225
|
-
"token": "
|
|
3226
|
-
"defString": "
|
|
3189
|
+
"token": "euiFormControlLayoutClearButton.label",
|
|
3190
|
+
"defString": "Clear input",
|
|
3227
3191
|
"highlighting": "string",
|
|
3228
3192
|
"loc": {
|
|
3229
3193
|
"start": {
|
|
3230
|
-
"line":
|
|
3231
|
-
"column":
|
|
3232
|
-
"index":
|
|
3194
|
+
"line": 35,
|
|
3195
|
+
"column": 20,
|
|
3196
|
+
"index": 1412
|
|
3233
3197
|
},
|
|
3234
3198
|
"end": {
|
|
3235
|
-
"line":
|
|
3199
|
+
"line": 38,
|
|
3236
3200
|
"column": 3,
|
|
3237
|
-
"index":
|
|
3201
|
+
"index": 1490
|
|
3238
3202
|
}
|
|
3239
3203
|
},
|
|
3240
|
-
"filepath": "src/components/form/
|
|
3204
|
+
"filepath": "src/components/form/form_control_layout/form_control_layout_clear_button.tsx"
|
|
3241
3205
|
},
|
|
3242
3206
|
{
|
|
3243
3207
|
"token": "euiFieldSearch.clearSearchButtonLabel",
|
|
@@ -3258,75 +3222,201 @@
|
|
|
3258
3222
|
"filepath": "src/components/form/field_search/field_search.tsx"
|
|
3259
3223
|
},
|
|
3260
3224
|
{
|
|
3261
|
-
"token": "
|
|
3262
|
-
"defString": "
|
|
3225
|
+
"token": "euiFieldPassword.showPassword",
|
|
3226
|
+
"defString": "Show password as plain text. Note: this will visually expose your password on the screen.",
|
|
3263
3227
|
"highlighting": "string",
|
|
3264
3228
|
"loc": {
|
|
3265
3229
|
"start": {
|
|
3266
|
-
"line":
|
|
3267
|
-
"column":
|
|
3268
|
-
"index":
|
|
3230
|
+
"line": 105,
|
|
3231
|
+
"column": 49,
|
|
3232
|
+
"index": 2960
|
|
3269
3233
|
},
|
|
3270
3234
|
"end": {
|
|
3271
|
-
"line":
|
|
3272
|
-
"column":
|
|
3273
|
-
"index":
|
|
3235
|
+
"line": 111,
|
|
3236
|
+
"column": 3,
|
|
3237
|
+
"index": 3181
|
|
3274
3238
|
}
|
|
3275
3239
|
},
|
|
3276
|
-
"filepath": "src/components/
|
|
3240
|
+
"filepath": "src/components/form/field_password/field_password.tsx"
|
|
3277
3241
|
},
|
|
3278
3242
|
{
|
|
3279
|
-
"token": "
|
|
3280
|
-
"defString": "
|
|
3243
|
+
"token": "euiFieldPassword.maskPassword",
|
|
3244
|
+
"defString": "Mask password",
|
|
3281
3245
|
"highlighting": "string",
|
|
3282
3246
|
"loc": {
|
|
3283
3247
|
"start": {
|
|
3284
|
-
"line":
|
|
3285
|
-
"column":
|
|
3286
|
-
"index":
|
|
3248
|
+
"line": 105,
|
|
3249
|
+
"column": 49,
|
|
3250
|
+
"index": 2960
|
|
3287
3251
|
},
|
|
3288
3252
|
"end": {
|
|
3289
|
-
"line":
|
|
3290
|
-
"column":
|
|
3291
|
-
"index":
|
|
3253
|
+
"line": 111,
|
|
3254
|
+
"column": 3,
|
|
3255
|
+
"index": 3181
|
|
3292
3256
|
}
|
|
3293
3257
|
},
|
|
3294
|
-
"filepath": "src/components/
|
|
3258
|
+
"filepath": "src/components/form/field_password/field_password.tsx"
|
|
3295
3259
|
},
|
|
3296
3260
|
{
|
|
3297
|
-
"token": "
|
|
3298
|
-
"defString": "
|
|
3261
|
+
"token": "euiSuperUpdateButton.updatingButtonLabel",
|
|
3262
|
+
"defString": "Updating",
|
|
3299
3263
|
"highlighting": "string",
|
|
3300
3264
|
"loc": {
|
|
3301
3265
|
"start": {
|
|
3302
|
-
"line":
|
|
3303
|
-
"column":
|
|
3304
|
-
"index":
|
|
3266
|
+
"line": 204,
|
|
3267
|
+
"column": 8,
|
|
3268
|
+
"index": 5158
|
|
3305
3269
|
},
|
|
3306
3270
|
"end": {
|
|
3307
|
-
"line":
|
|
3308
|
-
"column":
|
|
3309
|
-
"index":
|
|
3271
|
+
"line": 207,
|
|
3272
|
+
"column": 10,
|
|
3273
|
+
"index": 5265
|
|
3310
3274
|
}
|
|
3311
3275
|
},
|
|
3312
|
-
"filepath": "src/components/date_picker/super_date_picker/
|
|
3276
|
+
"filepath": "src/components/date_picker/super_date_picker/super_update_button.tsx"
|
|
3313
3277
|
},
|
|
3314
3278
|
{
|
|
3315
|
-
"token": "
|
|
3316
|
-
"defString": "
|
|
3279
|
+
"token": "euiSuperUpdateButton.updateButtonLabel",
|
|
3280
|
+
"defString": "Update",
|
|
3317
3281
|
"highlighting": "string",
|
|
3318
3282
|
"loc": {
|
|
3319
3283
|
"start": {
|
|
3320
|
-
"line":
|
|
3321
|
-
"column":
|
|
3322
|
-
"index":
|
|
3284
|
+
"line": 213,
|
|
3285
|
+
"column": 8,
|
|
3286
|
+
"index": 5328
|
|
3323
3287
|
},
|
|
3324
3288
|
"end": {
|
|
3325
|
-
"line":
|
|
3326
|
-
"column":
|
|
3327
|
-
"index":
|
|
3328
|
-
}
|
|
3329
|
-
},
|
|
3289
|
+
"line": 216,
|
|
3290
|
+
"column": 10,
|
|
3291
|
+
"index": 5431
|
|
3292
|
+
}
|
|
3293
|
+
},
|
|
3294
|
+
"filepath": "src/components/date_picker/super_date_picker/super_update_button.tsx"
|
|
3295
|
+
},
|
|
3296
|
+
{
|
|
3297
|
+
"token": "euiSuperUpdateButton.refreshButtonLabel",
|
|
3298
|
+
"defString": "Refresh",
|
|
3299
|
+
"highlighting": "string",
|
|
3300
|
+
"loc": {
|
|
3301
|
+
"start": {
|
|
3302
|
+
"line": 221,
|
|
3303
|
+
"column": 6,
|
|
3304
|
+
"index": 5467
|
|
3305
|
+
},
|
|
3306
|
+
"end": {
|
|
3307
|
+
"line": 224,
|
|
3308
|
+
"column": 8,
|
|
3309
|
+
"index": 5566
|
|
3310
|
+
}
|
|
3311
|
+
},
|
|
3312
|
+
"filepath": "src/components/date_picker/super_date_picker/super_update_button.tsx"
|
|
3313
|
+
},
|
|
3314
|
+
{
|
|
3315
|
+
"token": "euiSuperUpdateButton.cannotUpdateTooltip",
|
|
3316
|
+
"defString": "Cannot update",
|
|
3317
|
+
"highlighting": "string",
|
|
3318
|
+
"loc": {
|
|
3319
|
+
"start": {
|
|
3320
|
+
"line": 231,
|
|
3321
|
+
"column": 8,
|
|
3322
|
+
"index": 5681
|
|
3323
|
+
},
|
|
3324
|
+
"end": {
|
|
3325
|
+
"line": 234,
|
|
3326
|
+
"column": 10,
|
|
3327
|
+
"index": 5793
|
|
3328
|
+
}
|
|
3329
|
+
},
|
|
3330
|
+
"filepath": "src/components/date_picker/super_date_picker/super_update_button.tsx"
|
|
3331
|
+
},
|
|
3332
|
+
{
|
|
3333
|
+
"token": "euiSuperUpdateButton.clickToApplyTooltip",
|
|
3334
|
+
"defString": "Click to apply",
|
|
3335
|
+
"highlighting": "string",
|
|
3336
|
+
"loc": {
|
|
3337
|
+
"start": {
|
|
3338
|
+
"line": 240,
|
|
3339
|
+
"column": 8,
|
|
3340
|
+
"index": 5892
|
|
3341
|
+
},
|
|
3342
|
+
"end": {
|
|
3343
|
+
"line": 243,
|
|
3344
|
+
"column": 10,
|
|
3345
|
+
"index": 6005
|
|
3346
|
+
}
|
|
3347
|
+
},
|
|
3348
|
+
"filepath": "src/components/date_picker/super_date_picker/super_update_button.tsx"
|
|
3349
|
+
},
|
|
3350
|
+
{
|
|
3351
|
+
"token": "euiTimeOptions.last",
|
|
3352
|
+
"defString": "Last",
|
|
3353
|
+
"highlighting": "string",
|
|
3354
|
+
"loc": {
|
|
3355
|
+
"start": {
|
|
3356
|
+
"line": 35,
|
|
3357
|
+
"column": 25,
|
|
3358
|
+
"index": 1138
|
|
3359
|
+
},
|
|
3360
|
+
"end": {
|
|
3361
|
+
"line": 35,
|
|
3362
|
+
"column": 66,
|
|
3363
|
+
"index": 1179
|
|
3364
|
+
}
|
|
3365
|
+
},
|
|
3366
|
+
"filepath": "src/components/date_picker/super_date_picker/time_options.tsx"
|
|
3367
|
+
},
|
|
3368
|
+
{
|
|
3369
|
+
"token": "euiTimeOptions.next",
|
|
3370
|
+
"defString": "Next",
|
|
3371
|
+
"highlighting": "string",
|
|
3372
|
+
"loc": {
|
|
3373
|
+
"start": {
|
|
3374
|
+
"line": 36,
|
|
3375
|
+
"column": 25,
|
|
3376
|
+
"index": 1208
|
|
3377
|
+
},
|
|
3378
|
+
"end": {
|
|
3379
|
+
"line": 36,
|
|
3380
|
+
"column": 66,
|
|
3381
|
+
"index": 1249
|
|
3382
|
+
}
|
|
3383
|
+
},
|
|
3384
|
+
"filepath": "src/components/date_picker/super_date_picker/time_options.tsx"
|
|
3385
|
+
},
|
|
3386
|
+
{
|
|
3387
|
+
"token": "euiTimeOptions.seconds",
|
|
3388
|
+
"defString": "Seconds",
|
|
3389
|
+
"highlighting": "string",
|
|
3390
|
+
"loc": {
|
|
3391
|
+
"start": {
|
|
3392
|
+
"line": 40,
|
|
3393
|
+
"column": 24,
|
|
3394
|
+
"index": 1312
|
|
3395
|
+
},
|
|
3396
|
+
"end": {
|
|
3397
|
+
"line": 40,
|
|
3398
|
+
"column": 71,
|
|
3399
|
+
"index": 1359
|
|
3400
|
+
}
|
|
3401
|
+
},
|
|
3402
|
+
"filepath": "src/components/date_picker/super_date_picker/time_options.tsx"
|
|
3403
|
+
},
|
|
3404
|
+
{
|
|
3405
|
+
"token": "euiTimeOptions.minutes",
|
|
3406
|
+
"defString": "Minutes",
|
|
3407
|
+
"highlighting": "string",
|
|
3408
|
+
"loc": {
|
|
3409
|
+
"start": {
|
|
3410
|
+
"line": 41,
|
|
3411
|
+
"column": 24,
|
|
3412
|
+
"index": 1387
|
|
3413
|
+
},
|
|
3414
|
+
"end": {
|
|
3415
|
+
"line": 41,
|
|
3416
|
+
"column": 71,
|
|
3417
|
+
"index": 1434
|
|
3418
|
+
}
|
|
3419
|
+
},
|
|
3330
3420
|
"filepath": "src/components/date_picker/super_date_picker/time_options.tsx"
|
|
3331
3421
|
},
|
|
3332
3422
|
{
|
|
@@ -3942,94 +4032,130 @@
|
|
|
3942
4032
|
"filepath": "src/components/date_picker/super_date_picker/time_options.tsx"
|
|
3943
4033
|
},
|
|
3944
4034
|
{
|
|
3945
|
-
"token": "
|
|
3946
|
-
"defString": "
|
|
4035
|
+
"token": "euiTimeWindowButtons.invalidShiftLabel",
|
|
4036
|
+
"defString": "Cannot shift invalid time window",
|
|
3947
4037
|
"highlighting": "string",
|
|
3948
4038
|
"loc": {
|
|
3949
4039
|
"start": {
|
|
3950
|
-
"line":
|
|
3951
|
-
"column":
|
|
3952
|
-
"index":
|
|
4040
|
+
"line": 78,
|
|
4041
|
+
"column": 34,
|
|
4042
|
+
"index": 2343
|
|
3953
4043
|
},
|
|
3954
4044
|
"end": {
|
|
3955
|
-
"line":
|
|
3956
|
-
"column":
|
|
3957
|
-
"index":
|
|
4045
|
+
"line": 81,
|
|
4046
|
+
"column": 3,
|
|
4047
|
+
"index": 2443
|
|
3958
4048
|
}
|
|
3959
4049
|
},
|
|
3960
|
-
"filepath": "src/components/date_picker/super_date_picker/
|
|
4050
|
+
"filepath": "src/components/date_picker/super_date_picker/time_window_buttons.tsx"
|
|
3961
4051
|
},
|
|
3962
4052
|
{
|
|
3963
|
-
"token": "
|
|
3964
|
-
"defString": "
|
|
4053
|
+
"token": "euiTimeWindowButtons.invalidZoomOutLabel",
|
|
4054
|
+
"defString": "Cannot zoom out invalid time window",
|
|
3965
4055
|
"highlighting": "string",
|
|
3966
4056
|
"loc": {
|
|
3967
4057
|
"start": {
|
|
3968
|
-
"line":
|
|
3969
|
-
"column":
|
|
3970
|
-
"index":
|
|
4058
|
+
"line": 82,
|
|
4059
|
+
"column": 36,
|
|
4060
|
+
"index": 2481
|
|
3971
4061
|
},
|
|
3972
4062
|
"end": {
|
|
3973
|
-
"line":
|
|
3974
|
-
"column":
|
|
3975
|
-
"index":
|
|
4063
|
+
"line": 85,
|
|
4064
|
+
"column": 3,
|
|
4065
|
+
"index": 2586
|
|
3976
4066
|
}
|
|
3977
4067
|
},
|
|
3978
|
-
"filepath": "src/components/date_picker/super_date_picker/
|
|
4068
|
+
"filepath": "src/components/date_picker/super_date_picker/time_window_buttons.tsx"
|
|
3979
4069
|
},
|
|
3980
4070
|
{
|
|
3981
|
-
"token": "
|
|
3982
|
-
"defString": "
|
|
4071
|
+
"token": "euiTimeWindowButtons.previousLabel",
|
|
4072
|
+
"defString": "Previous",
|
|
3983
4073
|
"highlighting": "string",
|
|
3984
4074
|
"loc": {
|
|
3985
4075
|
"start": {
|
|
3986
|
-
"line":
|
|
3987
|
-
"column":
|
|
3988
|
-
"index":
|
|
4076
|
+
"line": 88,
|
|
4077
|
+
"column": 24,
|
|
4078
|
+
"index": 2678
|
|
3989
4079
|
},
|
|
3990
4080
|
"end": {
|
|
3991
|
-
"line":
|
|
3992
|
-
"column":
|
|
3993
|
-
"index":
|
|
4081
|
+
"line": 91,
|
|
4082
|
+
"column": 3,
|
|
4083
|
+
"index": 2750
|
|
3994
4084
|
}
|
|
3995
4085
|
},
|
|
3996
|
-
"filepath": "src/components/date_picker/super_date_picker/
|
|
4086
|
+
"filepath": "src/components/date_picker/super_date_picker/time_window_buttons.tsx"
|
|
3997
4087
|
},
|
|
3998
4088
|
{
|
|
3999
|
-
"token": "
|
|
4000
|
-
"defString": "
|
|
4089
|
+
"token": "euiTimeWindowButtons.previousDescription",
|
|
4090
|
+
"defString": "Previous {displayInterval}",
|
|
4001
4091
|
"highlighting": "string",
|
|
4002
4092
|
"loc": {
|
|
4003
4093
|
"start": {
|
|
4004
|
-
"line":
|
|
4005
|
-
"column":
|
|
4006
|
-
"index":
|
|
4094
|
+
"line": 92,
|
|
4095
|
+
"column": 33,
|
|
4096
|
+
"index": 2785
|
|
4007
4097
|
},
|
|
4008
4098
|
"end": {
|
|
4009
|
-
"line":
|
|
4010
|
-
"column":
|
|
4011
|
-
"index":
|
|
4099
|
+
"line": 96,
|
|
4100
|
+
"column": 3,
|
|
4101
|
+
"index": 2906
|
|
4012
4102
|
}
|
|
4013
4103
|
},
|
|
4014
|
-
"filepath": "src/components/date_picker/super_date_picker/
|
|
4104
|
+
"filepath": "src/components/date_picker/super_date_picker/time_window_buttons.tsx"
|
|
4015
4105
|
},
|
|
4016
4106
|
{
|
|
4017
|
-
"token": "
|
|
4018
|
-
"defString": "
|
|
4107
|
+
"token": "euiTimeWindowButtons.zoomOutLabel",
|
|
4108
|
+
"defString": "Zoom out",
|
|
4019
4109
|
"highlighting": "string",
|
|
4020
4110
|
"loc": {
|
|
4021
4111
|
"start": {
|
|
4022
|
-
"line":
|
|
4023
|
-
"column":
|
|
4024
|
-
"index":
|
|
4112
|
+
"line": 99,
|
|
4113
|
+
"column": 23,
|
|
4114
|
+
"index": 2996
|
|
4025
4115
|
},
|
|
4026
4116
|
"end": {
|
|
4027
|
-
"line":
|
|
4028
|
-
"column":
|
|
4029
|
-
"index":
|
|
4117
|
+
"line": 102,
|
|
4118
|
+
"column": 3,
|
|
4119
|
+
"index": 3067
|
|
4030
4120
|
}
|
|
4031
4121
|
},
|
|
4032
|
-
"filepath": "src/components/date_picker/super_date_picker/
|
|
4122
|
+
"filepath": "src/components/date_picker/super_date_picker/time_window_buttons.tsx"
|
|
4123
|
+
},
|
|
4124
|
+
{
|
|
4125
|
+
"token": "euiTimeWindowButtons.nextLabel",
|
|
4126
|
+
"defString": "Next",
|
|
4127
|
+
"highlighting": "string",
|
|
4128
|
+
"loc": {
|
|
4129
|
+
"start": {
|
|
4130
|
+
"line": 108,
|
|
4131
|
+
"column": 20,
|
|
4132
|
+
"index": 3241
|
|
4133
|
+
},
|
|
4134
|
+
"end": {
|
|
4135
|
+
"line": 108,
|
|
4136
|
+
"column": 72,
|
|
4137
|
+
"index": 3293
|
|
4138
|
+
}
|
|
4139
|
+
},
|
|
4140
|
+
"filepath": "src/components/date_picker/super_date_picker/time_window_buttons.tsx"
|
|
4141
|
+
},
|
|
4142
|
+
{
|
|
4143
|
+
"token": "euiTimeWindowButtons.nextDescription",
|
|
4144
|
+
"defString": "Next {displayInterval}",
|
|
4145
|
+
"highlighting": "string",
|
|
4146
|
+
"loc": {
|
|
4147
|
+
"start": {
|
|
4148
|
+
"line": 109,
|
|
4149
|
+
"column": 29,
|
|
4150
|
+
"index": 3324
|
|
4151
|
+
},
|
|
4152
|
+
"end": {
|
|
4153
|
+
"line": 113,
|
|
4154
|
+
"column": 3,
|
|
4155
|
+
"index": 3437
|
|
4156
|
+
}
|
|
4157
|
+
},
|
|
4158
|
+
"filepath": "src/components/date_picker/super_date_picker/time_window_buttons.tsx"
|
|
4033
4159
|
},
|
|
4034
4160
|
{
|
|
4035
4161
|
"token": "euiPrettyInterval.seconds",
|
|
@@ -4201,12 +4327,12 @@
|
|
|
4201
4327
|
"start": {
|
|
4202
4328
|
"line": 30,
|
|
4203
4329
|
"column": 5,
|
|
4204
|
-
"index":
|
|
4330
|
+
"index": 1079
|
|
4205
4331
|
},
|
|
4206
4332
|
"end": {
|
|
4207
4333
|
"line": 34,
|
|
4208
4334
|
"column": 3,
|
|
4209
|
-
"index":
|
|
4335
|
+
"index": 1233
|
|
4210
4336
|
}
|
|
4211
4337
|
},
|
|
4212
4338
|
"filepath": "src/components/date_picker/super_date_picker/pretty_duration.tsx"
|
|
@@ -4219,12 +4345,12 @@
|
|
|
4219
4345
|
"start": {
|
|
4220
4346
|
"line": 35,
|
|
4221
4347
|
"column": 8,
|
|
4222
|
-
"index":
|
|
4348
|
+
"index": 1243
|
|
4223
4349
|
},
|
|
4224
4350
|
"end": {
|
|
4225
4351
|
"line": 39,
|
|
4226
4352
|
"column": 3,
|
|
4227
|
-
"index":
|
|
4353
|
+
"index": 1397
|
|
4228
4354
|
}
|
|
4229
4355
|
},
|
|
4230
4356
|
"filepath": "src/components/date_picker/super_date_picker/pretty_duration.tsx"
|
|
@@ -4237,12 +4363,12 @@
|
|
|
4237
4363
|
"start": {
|
|
4238
4364
|
"line": 40,
|
|
4239
4365
|
"column": 5,
|
|
4240
|
-
"index":
|
|
4366
|
+
"index": 1404
|
|
4241
4367
|
},
|
|
4242
4368
|
"end": {
|
|
4243
4369
|
"line": 44,
|
|
4244
4370
|
"column": 3,
|
|
4245
|
-
"index":
|
|
4371
|
+
"index": 1558
|
|
4246
4372
|
}
|
|
4247
4373
|
},
|
|
4248
4374
|
"filepath": "src/components/date_picker/super_date_picker/pretty_duration.tsx"
|
|
@@ -4255,12 +4381,12 @@
|
|
|
4255
4381
|
"start": {
|
|
4256
4382
|
"line": 45,
|
|
4257
4383
|
"column": 8,
|
|
4258
|
-
"index":
|
|
4384
|
+
"index": 1568
|
|
4259
4385
|
},
|
|
4260
4386
|
"end": {
|
|
4261
4387
|
"line": 49,
|
|
4262
4388
|
"column": 3,
|
|
4263
|
-
"index":
|
|
4389
|
+
"index": 1722
|
|
4264
4390
|
}
|
|
4265
4391
|
},
|
|
4266
4392
|
"filepath": "src/components/date_picker/super_date_picker/pretty_duration.tsx"
|
|
@@ -4273,12 +4399,12 @@
|
|
|
4273
4399
|
"start": {
|
|
4274
4400
|
"line": 50,
|
|
4275
4401
|
"column": 5,
|
|
4276
|
-
"index":
|
|
4402
|
+
"index": 1729
|
|
4277
4403
|
},
|
|
4278
4404
|
"end": {
|
|
4279
4405
|
"line": 54,
|
|
4280
4406
|
"column": 3,
|
|
4281
|
-
"index":
|
|
4407
|
+
"index": 1879
|
|
4282
4408
|
}
|
|
4283
4409
|
},
|
|
4284
4410
|
"filepath": "src/components/date_picker/super_date_picker/pretty_duration.tsx"
|
|
@@ -4291,12 +4417,12 @@
|
|
|
4291
4417
|
"start": {
|
|
4292
4418
|
"line": 55,
|
|
4293
4419
|
"column": 8,
|
|
4294
|
-
"index":
|
|
4420
|
+
"index": 1889
|
|
4295
4421
|
},
|
|
4296
4422
|
"end": {
|
|
4297
4423
|
"line": 59,
|
|
4298
4424
|
"column": 3,
|
|
4299
|
-
"index":
|
|
4425
|
+
"index": 2039
|
|
4300
4426
|
}
|
|
4301
4427
|
},
|
|
4302
4428
|
"filepath": "src/components/date_picker/super_date_picker/pretty_duration.tsx"
|
|
@@ -4309,12 +4435,12 @@
|
|
|
4309
4435
|
"start": {
|
|
4310
4436
|
"line": 60,
|
|
4311
4437
|
"column": 5,
|
|
4312
|
-
"index":
|
|
4438
|
+
"index": 2046
|
|
4313
4439
|
},
|
|
4314
4440
|
"end": {
|
|
4315
4441
|
"line": 64,
|
|
4316
4442
|
"column": 3,
|
|
4317
|
-
"index":
|
|
4443
|
+
"index": 2194
|
|
4318
4444
|
}
|
|
4319
4445
|
},
|
|
4320
4446
|
"filepath": "src/components/date_picker/super_date_picker/pretty_duration.tsx"
|
|
@@ -4327,12 +4453,12 @@
|
|
|
4327
4453
|
"start": {
|
|
4328
4454
|
"line": 65,
|
|
4329
4455
|
"column": 8,
|
|
4330
|
-
"index":
|
|
4456
|
+
"index": 2204
|
|
4331
4457
|
},
|
|
4332
4458
|
"end": {
|
|
4333
4459
|
"line": 69,
|
|
4334
4460
|
"column": 3,
|
|
4335
|
-
"index":
|
|
4461
|
+
"index": 2353
|
|
4336
4462
|
}
|
|
4337
4463
|
},
|
|
4338
4464
|
"filepath": "src/components/date_picker/super_date_picker/pretty_duration.tsx"
|
|
@@ -4345,12 +4471,12 @@
|
|
|
4345
4471
|
"start": {
|
|
4346
4472
|
"line": 70,
|
|
4347
4473
|
"column": 5,
|
|
4348
|
-
"index":
|
|
4474
|
+
"index": 2360
|
|
4349
4475
|
},
|
|
4350
4476
|
"end": {
|
|
4351
4477
|
"line": 74,
|
|
4352
4478
|
"column": 3,
|
|
4353
|
-
"index":
|
|
4479
|
+
"index": 2510
|
|
4354
4480
|
}
|
|
4355
4481
|
},
|
|
4356
4482
|
"filepath": "src/components/date_picker/super_date_picker/pretty_duration.tsx"
|
|
@@ -4363,12 +4489,12 @@
|
|
|
4363
4489
|
"start": {
|
|
4364
4490
|
"line": 75,
|
|
4365
4491
|
"column": 8,
|
|
4366
|
-
"index":
|
|
4492
|
+
"index": 2520
|
|
4367
4493
|
},
|
|
4368
4494
|
"end": {
|
|
4369
4495
|
"line": 79,
|
|
4370
4496
|
"column": 3,
|
|
4371
|
-
"index":
|
|
4497
|
+
"index": 2670
|
|
4372
4498
|
}
|
|
4373
4499
|
},
|
|
4374
4500
|
"filepath": "src/components/date_picker/super_date_picker/pretty_duration.tsx"
|
|
@@ -4381,12 +4507,12 @@
|
|
|
4381
4507
|
"start": {
|
|
4382
4508
|
"line": 80,
|
|
4383
4509
|
"column": 5,
|
|
4384
|
-
"index":
|
|
4510
|
+
"index": 2677
|
|
4385
4511
|
},
|
|
4386
4512
|
"end": {
|
|
4387
4513
|
"line": 84,
|
|
4388
4514
|
"column": 3,
|
|
4389
|
-
"index":
|
|
4515
|
+
"index": 2829
|
|
4390
4516
|
}
|
|
4391
4517
|
},
|
|
4392
4518
|
"filepath": "src/components/date_picker/super_date_picker/pretty_duration.tsx"
|
|
@@ -4399,12 +4525,12 @@
|
|
|
4399
4525
|
"start": {
|
|
4400
4526
|
"line": 85,
|
|
4401
4527
|
"column": 8,
|
|
4402
|
-
"index":
|
|
4528
|
+
"index": 2839
|
|
4403
4529
|
},
|
|
4404
4530
|
"end": {
|
|
4405
4531
|
"line": 89,
|
|
4406
4532
|
"column": 3,
|
|
4407
|
-
"index":
|
|
4533
|
+
"index": 2991
|
|
4408
4534
|
}
|
|
4409
4535
|
},
|
|
4410
4536
|
"filepath": "src/components/date_picker/super_date_picker/pretty_duration.tsx"
|
|
@@ -4417,12 +4543,12 @@
|
|
|
4417
4543
|
"start": {
|
|
4418
4544
|
"line": 90,
|
|
4419
4545
|
"column": 5,
|
|
4420
|
-
"index":
|
|
4546
|
+
"index": 2998
|
|
4421
4547
|
},
|
|
4422
4548
|
"end": {
|
|
4423
4549
|
"line": 94,
|
|
4424
4550
|
"column": 3,
|
|
4425
|
-
"index":
|
|
4551
|
+
"index": 3148
|
|
4426
4552
|
}
|
|
4427
4553
|
},
|
|
4428
4554
|
"filepath": "src/components/date_picker/super_date_picker/pretty_duration.tsx"
|
|
@@ -4435,12 +4561,12 @@
|
|
|
4435
4561
|
"start": {
|
|
4436
4562
|
"line": 95,
|
|
4437
4563
|
"column": 8,
|
|
4438
|
-
"index":
|
|
4564
|
+
"index": 3158
|
|
4439
4565
|
},
|
|
4440
4566
|
"end": {
|
|
4441
4567
|
"line": 99,
|
|
4442
4568
|
"column": 3,
|
|
4443
|
-
"index":
|
|
4569
|
+
"index": 3308
|
|
4444
4570
|
}
|
|
4445
4571
|
},
|
|
4446
4572
|
"filepath": "src/components/date_picker/super_date_picker/pretty_duration.tsx"
|
|
@@ -4453,12 +4579,12 @@
|
|
|
4453
4579
|
"start": {
|
|
4454
4580
|
"line": 103,
|
|
4455
4581
|
"column": 5,
|
|
4456
|
-
"index":
|
|
4582
|
+
"index": 3390
|
|
4457
4583
|
},
|
|
4458
4584
|
"end": {
|
|
4459
4585
|
"line": 107,
|
|
4460
4586
|
"column": 3,
|
|
4461
|
-
"index":
|
|
4587
|
+
"index": 3523
|
|
4462
4588
|
}
|
|
4463
4589
|
},
|
|
4464
4590
|
"filepath": "src/components/date_picker/super_date_picker/pretty_duration.tsx"
|
|
@@ -4471,12 +4597,12 @@
|
|
|
4471
4597
|
"start": {
|
|
4472
4598
|
"line": 108,
|
|
4473
4599
|
"column": 5,
|
|
4474
|
-
"index":
|
|
4600
|
+
"index": 3530
|
|
4475
4601
|
},
|
|
4476
4602
|
"end": {
|
|
4477
4603
|
"line": 112,
|
|
4478
4604
|
"column": 3,
|
|
4479
|
-
"index":
|
|
4605
|
+
"index": 3663
|
|
4480
4606
|
}
|
|
4481
4607
|
},
|
|
4482
4608
|
"filepath": "src/components/date_picker/super_date_picker/pretty_duration.tsx"
|
|
@@ -4489,12 +4615,12 @@
|
|
|
4489
4615
|
"start": {
|
|
4490
4616
|
"line": 113,
|
|
4491
4617
|
"column": 5,
|
|
4492
|
-
"index":
|
|
4618
|
+
"index": 3670
|
|
4493
4619
|
},
|
|
4494
4620
|
"end": {
|
|
4495
4621
|
"line": 117,
|
|
4496
4622
|
"column": 3,
|
|
4497
|
-
"index":
|
|
4623
|
+
"index": 3799
|
|
4498
4624
|
}
|
|
4499
4625
|
},
|
|
4500
4626
|
"filepath": "src/components/date_picker/super_date_picker/pretty_duration.tsx"
|
|
@@ -4507,12 +4633,12 @@
|
|
|
4507
4633
|
"start": {
|
|
4508
4634
|
"line": 118,
|
|
4509
4635
|
"column": 5,
|
|
4510
|
-
"index":
|
|
4636
|
+
"index": 3806
|
|
4511
4637
|
},
|
|
4512
4638
|
"end": {
|
|
4513
4639
|
"line": 122,
|
|
4514
4640
|
"column": 3,
|
|
4515
|
-
"index":
|
|
4641
|
+
"index": 3933
|
|
4516
4642
|
}
|
|
4517
4643
|
},
|
|
4518
4644
|
"filepath": "src/components/date_picker/super_date_picker/pretty_duration.tsx"
|
|
@@ -4525,12 +4651,12 @@
|
|
|
4525
4651
|
"start": {
|
|
4526
4652
|
"line": 123,
|
|
4527
4653
|
"column": 5,
|
|
4528
|
-
"index":
|
|
4654
|
+
"index": 3940
|
|
4529
4655
|
},
|
|
4530
4656
|
"end": {
|
|
4531
4657
|
"line": 127,
|
|
4532
4658
|
"column": 3,
|
|
4533
|
-
"index":
|
|
4659
|
+
"index": 4069
|
|
4534
4660
|
}
|
|
4535
4661
|
},
|
|
4536
4662
|
"filepath": "src/components/date_picker/super_date_picker/pretty_duration.tsx"
|
|
@@ -4543,12 +4669,12 @@
|
|
|
4543
4669
|
"start": {
|
|
4544
4670
|
"line": 128,
|
|
4545
4671
|
"column": 5,
|
|
4546
|
-
"index":
|
|
4672
|
+
"index": 4076
|
|
4547
4673
|
},
|
|
4548
4674
|
"end": {
|
|
4549
4675
|
"line": 132,
|
|
4550
4676
|
"column": 3,
|
|
4551
|
-
"index":
|
|
4677
|
+
"index": 4207
|
|
4552
4678
|
}
|
|
4553
4679
|
},
|
|
4554
4680
|
"filepath": "src/components/date_picker/super_date_picker/pretty_duration.tsx"
|
|
@@ -4561,12 +4687,12 @@
|
|
|
4561
4687
|
"start": {
|
|
4562
4688
|
"line": 133,
|
|
4563
4689
|
"column": 5,
|
|
4564
|
-
"index":
|
|
4690
|
+
"index": 4214
|
|
4565
4691
|
},
|
|
4566
4692
|
"end": {
|
|
4567
4693
|
"line": 137,
|
|
4568
4694
|
"column": 3,
|
|
4569
|
-
"index":
|
|
4695
|
+
"index": 4343
|
|
4570
4696
|
}
|
|
4571
4697
|
},
|
|
4572
4698
|
"filepath": "src/components/date_picker/super_date_picker/pretty_duration.tsx"
|
|
@@ -4579,12 +4705,12 @@
|
|
|
4579
4705
|
"start": {
|
|
4580
4706
|
"line": 162,
|
|
4581
4707
|
"column": 21,
|
|
4582
|
-
"index":
|
|
4708
|
+
"index": 4794
|
|
4583
4709
|
},
|
|
4584
4710
|
"end": {
|
|
4585
4711
|
"line": 162,
|
|
4586
4712
|
"column": 63,
|
|
4587
|
-
"index":
|
|
4713
|
+
"index": 4836
|
|
4588
4714
|
}
|
|
4589
4715
|
},
|
|
4590
4716
|
"filepath": "src/components/date_picker/super_date_picker/pretty_duration.tsx"
|
|
@@ -4597,12 +4723,12 @@
|
|
|
4597
4723
|
"start": {
|
|
4598
4724
|
"line": 163,
|
|
4599
4725
|
"column": 29,
|
|
4600
|
-
"index":
|
|
4726
|
+
"index": 4867
|
|
4601
4727
|
},
|
|
4602
4728
|
"end": {
|
|
4603
4729
|
"line": 166,
|
|
4604
4730
|
"column": 3,
|
|
4605
|
-
"index":
|
|
4731
|
+
"index": 4934
|
|
4606
4732
|
}
|
|
4607
4733
|
},
|
|
4608
4734
|
"filepath": "src/components/date_picker/super_date_picker/pretty_duration.tsx"
|
|
@@ -4615,12 +4741,12 @@
|
|
|
4615
4741
|
"start": {
|
|
4616
4742
|
"line": 279,
|
|
4617
4743
|
"column": 27,
|
|
4618
|
-
"index":
|
|
4744
|
+
"index": 8267
|
|
4619
4745
|
},
|
|
4620
4746
|
"end": {
|
|
4621
4747
|
"line": 283,
|
|
4622
4748
|
"column": 3,
|
|
4623
|
-
"index":
|
|
4749
|
+
"index": 8391
|
|
4624
4750
|
}
|
|
4625
4751
|
},
|
|
4626
4752
|
"filepath": "src/components/date_picker/super_date_picker/pretty_duration.tsx"
|
|
@@ -5525,6 +5651,24 @@
|
|
|
5525
5651
|
},
|
|
5526
5652
|
"filepath": "src/components/datagrid/controls/fullscreen_selector.tsx"
|
|
5527
5653
|
},
|
|
5654
|
+
{
|
|
5655
|
+
"token": "euiDataGridToolbarControl.badgeAriaLabel",
|
|
5656
|
+
"defString": "Active: {count}",
|
|
5657
|
+
"highlighting": "string",
|
|
5658
|
+
"loc": {
|
|
5659
|
+
"start": {
|
|
5660
|
+
"line": 31,
|
|
5661
|
+
"column": 25,
|
|
5662
|
+
"index": 1211
|
|
5663
|
+
},
|
|
5664
|
+
"end": {
|
|
5665
|
+
"line": 40,
|
|
5666
|
+
"column": 3,
|
|
5667
|
+
"index": 1441
|
|
5668
|
+
}
|
|
5669
|
+
},
|
|
5670
|
+
"filepath": "src/components/datagrid/controls/data_grid_toolbar_control.tsx"
|
|
5671
|
+
},
|
|
5528
5672
|
{
|
|
5529
5673
|
"token": "euiDisplaySelector.densityLabel",
|
|
5530
5674
|
"defString": "Density",
|
|
@@ -5706,22 +5850,94 @@
|
|
|
5706
5850
|
"filepath": "src/components/datagrid/controls/display_selector.tsx"
|
|
5707
5851
|
},
|
|
5708
5852
|
{
|
|
5709
|
-
"token": "
|
|
5710
|
-
"defString": "
|
|
5853
|
+
"token": "euiColumnSorting.button",
|
|
5854
|
+
"defString": "Sort fields",
|
|
5711
5855
|
"highlighting": "string",
|
|
5712
5856
|
"loc": {
|
|
5713
5857
|
"start": {
|
|
5714
|
-
"line":
|
|
5715
|
-
"column":
|
|
5716
|
-
"index":
|
|
5858
|
+
"line": 66,
|
|
5859
|
+
"column": 30,
|
|
5860
|
+
"index": 2120
|
|
5717
5861
|
},
|
|
5718
5862
|
"end": {
|
|
5719
|
-
"line":
|
|
5720
|
-
"column":
|
|
5721
|
-
"index":
|
|
5863
|
+
"line": 69,
|
|
5864
|
+
"column": 5,
|
|
5865
|
+
"index": 2190
|
|
5722
5866
|
}
|
|
5723
5867
|
},
|
|
5724
|
-
"filepath": "src/components/datagrid/controls/
|
|
5868
|
+
"filepath": "src/components/datagrid/controls/column_sorting.tsx"
|
|
5869
|
+
},
|
|
5870
|
+
{
|
|
5871
|
+
"token": "euiColumnSorting.sortFieldAriaLabel",
|
|
5872
|
+
"defString": "Sort by: ",
|
|
5873
|
+
"highlighting": "string",
|
|
5874
|
+
"loc": {
|
|
5875
|
+
"start": {
|
|
5876
|
+
"line": 70,
|
|
5877
|
+
"column": 31,
|
|
5878
|
+
"index": 2223
|
|
5879
|
+
},
|
|
5880
|
+
"end": {
|
|
5881
|
+
"line": 73,
|
|
5882
|
+
"column": 5,
|
|
5883
|
+
"index": 2303
|
|
5884
|
+
}
|
|
5885
|
+
},
|
|
5886
|
+
"filepath": "src/components/datagrid/controls/column_sorting.tsx"
|
|
5887
|
+
},
|
|
5888
|
+
{
|
|
5889
|
+
"token": "euiColumnSorting.emptySorting",
|
|
5890
|
+
"defString": "Currently no fields are sorted",
|
|
5891
|
+
"highlighting": "string",
|
|
5892
|
+
"loc": {
|
|
5893
|
+
"start": {
|
|
5894
|
+
"line": 220,
|
|
5895
|
+
"column": 14,
|
|
5896
|
+
"index": 6937
|
|
5897
|
+
},
|
|
5898
|
+
"end": {
|
|
5899
|
+
"line": 223,
|
|
5900
|
+
"column": 16,
|
|
5901
|
+
"index": 7073
|
|
5902
|
+
}
|
|
5903
|
+
},
|
|
5904
|
+
"filepath": "src/components/datagrid/controls/column_sorting.tsx"
|
|
5905
|
+
},
|
|
5906
|
+
{
|
|
5907
|
+
"token": "euiColumnSorting.pickFields",
|
|
5908
|
+
"defString": "Pick fields to sort by",
|
|
5909
|
+
"highlighting": "string",
|
|
5910
|
+
"loc": {
|
|
5911
|
+
"start": {
|
|
5912
|
+
"line": 253,
|
|
5913
|
+
"column": 24,
|
|
5914
|
+
"index": 8296
|
|
5915
|
+
},
|
|
5916
|
+
"end": {
|
|
5917
|
+
"line": 256,
|
|
5918
|
+
"column": 26,
|
|
5919
|
+
"index": 8452
|
|
5920
|
+
}
|
|
5921
|
+
},
|
|
5922
|
+
"filepath": "src/components/datagrid/controls/column_sorting.tsx"
|
|
5923
|
+
},
|
|
5924
|
+
{
|
|
5925
|
+
"token": "euiColumnSorting.clearAll",
|
|
5926
|
+
"defString": "Clear sorting",
|
|
5927
|
+
"highlighting": "string",
|
|
5928
|
+
"loc": {
|
|
5929
|
+
"start": {
|
|
5930
|
+
"line": 328,
|
|
5931
|
+
"column": 20,
|
|
5932
|
+
"index": 11806
|
|
5933
|
+
},
|
|
5934
|
+
"end": {
|
|
5935
|
+
"line": 331,
|
|
5936
|
+
"column": 22,
|
|
5937
|
+
"index": 11939
|
|
5938
|
+
}
|
|
5939
|
+
},
|
|
5940
|
+
"filepath": "src/components/datagrid/controls/column_sorting.tsx"
|
|
5725
5941
|
},
|
|
5726
5942
|
{
|
|
5727
5943
|
"token": "euiColumnSortingDraggable.defaultSortAsc",
|
|
@@ -5831,110 +6047,20 @@
|
|
|
5831
6047
|
},
|
|
5832
6048
|
"filepath": "src/components/datagrid/controls/column_sorting_draggable.tsx"
|
|
5833
6049
|
},
|
|
5834
|
-
{
|
|
5835
|
-
"token": "euiColumnSorting.button",
|
|
5836
|
-
"defString": "Sort fields",
|
|
5837
|
-
"highlighting": "string",
|
|
5838
|
-
"loc": {
|
|
5839
|
-
"start": {
|
|
5840
|
-
"line": 66,
|
|
5841
|
-
"column": 30,
|
|
5842
|
-
"index": 2120
|
|
5843
|
-
},
|
|
5844
|
-
"end": {
|
|
5845
|
-
"line": 69,
|
|
5846
|
-
"column": 5,
|
|
5847
|
-
"index": 2190
|
|
5848
|
-
}
|
|
5849
|
-
},
|
|
5850
|
-
"filepath": "src/components/datagrid/controls/column_sorting.tsx"
|
|
5851
|
-
},
|
|
5852
|
-
{
|
|
5853
|
-
"token": "euiColumnSorting.sortFieldAriaLabel",
|
|
5854
|
-
"defString": "Sort by: ",
|
|
5855
|
-
"highlighting": "string",
|
|
5856
|
-
"loc": {
|
|
5857
|
-
"start": {
|
|
5858
|
-
"line": 70,
|
|
5859
|
-
"column": 31,
|
|
5860
|
-
"index": 2223
|
|
5861
|
-
},
|
|
5862
|
-
"end": {
|
|
5863
|
-
"line": 73,
|
|
5864
|
-
"column": 5,
|
|
5865
|
-
"index": 2303
|
|
5866
|
-
}
|
|
5867
|
-
},
|
|
5868
|
-
"filepath": "src/components/datagrid/controls/column_sorting.tsx"
|
|
5869
|
-
},
|
|
5870
|
-
{
|
|
5871
|
-
"token": "euiColumnSorting.emptySorting",
|
|
5872
|
-
"defString": "Currently no fields are sorted",
|
|
5873
|
-
"highlighting": "string",
|
|
5874
|
-
"loc": {
|
|
5875
|
-
"start": {
|
|
5876
|
-
"line": 220,
|
|
5877
|
-
"column": 14,
|
|
5878
|
-
"index": 6937
|
|
5879
|
-
},
|
|
5880
|
-
"end": {
|
|
5881
|
-
"line": 223,
|
|
5882
|
-
"column": 16,
|
|
5883
|
-
"index": 7073
|
|
5884
|
-
}
|
|
5885
|
-
},
|
|
5886
|
-
"filepath": "src/components/datagrid/controls/column_sorting.tsx"
|
|
5887
|
-
},
|
|
5888
|
-
{
|
|
5889
|
-
"token": "euiColumnSorting.pickFields",
|
|
5890
|
-
"defString": "Pick fields to sort by",
|
|
5891
|
-
"highlighting": "string",
|
|
5892
|
-
"loc": {
|
|
5893
|
-
"start": {
|
|
5894
|
-
"line": 253,
|
|
5895
|
-
"column": 24,
|
|
5896
|
-
"index": 8296
|
|
5897
|
-
},
|
|
5898
|
-
"end": {
|
|
5899
|
-
"line": 256,
|
|
5900
|
-
"column": 26,
|
|
5901
|
-
"index": 8452
|
|
5902
|
-
}
|
|
5903
|
-
},
|
|
5904
|
-
"filepath": "src/components/datagrid/controls/column_sorting.tsx"
|
|
5905
|
-
},
|
|
5906
|
-
{
|
|
5907
|
-
"token": "euiColumnSorting.clearAll",
|
|
5908
|
-
"defString": "Clear sorting",
|
|
5909
|
-
"highlighting": "string",
|
|
5910
|
-
"loc": {
|
|
5911
|
-
"start": {
|
|
5912
|
-
"line": 328,
|
|
5913
|
-
"column": 20,
|
|
5914
|
-
"index": 11806
|
|
5915
|
-
},
|
|
5916
|
-
"end": {
|
|
5917
|
-
"line": 331,
|
|
5918
|
-
"column": 22,
|
|
5919
|
-
"index": 11939
|
|
5920
|
-
}
|
|
5921
|
-
},
|
|
5922
|
-
"filepath": "src/components/datagrid/controls/column_sorting.tsx"
|
|
5923
|
-
},
|
|
5924
6050
|
{
|
|
5925
6051
|
"token": "euiColumnSelector.dragHandleAriaLabel",
|
|
5926
6052
|
"defString": "Drag handle",
|
|
5927
6053
|
"highlighting": "string",
|
|
5928
6054
|
"loc": {
|
|
5929
6055
|
"start": {
|
|
5930
|
-
"line":
|
|
6056
|
+
"line": 164,
|
|
5931
6057
|
"column": 30,
|
|
5932
|
-
"index":
|
|
6058
|
+
"index": 5119
|
|
5933
6059
|
},
|
|
5934
6060
|
"end": {
|
|
5935
|
-
"line":
|
|
6061
|
+
"line": 167,
|
|
5936
6062
|
"column": 3,
|
|
5937
|
-
"index":
|
|
6063
|
+
"index": 5197
|
|
5938
6064
|
}
|
|
5939
6065
|
},
|
|
5940
6066
|
"filepath": "src/components/datagrid/controls/column_selector.tsx"
|
|
@@ -5945,14 +6071,14 @@
|
|
|
5945
6071
|
"highlighting": "string",
|
|
5946
6072
|
"loc": {
|
|
5947
6073
|
"start": {
|
|
5948
|
-
"line":
|
|
6074
|
+
"line": 203,
|
|
5949
6075
|
"column": 12,
|
|
5950
|
-
"index":
|
|
6076
|
+
"index": 6395
|
|
5951
6077
|
},
|
|
5952
6078
|
"end": {
|
|
5953
|
-
"line":
|
|
6079
|
+
"line": 203,
|
|
5954
6080
|
"column": 74,
|
|
5955
|
-
"index":
|
|
6081
|
+
"index": 6457
|
|
5956
6082
|
}
|
|
5957
6083
|
},
|
|
5958
6084
|
"filepath": "src/components/datagrid/controls/column_selector.tsx"
|
|
@@ -5963,14 +6089,14 @@
|
|
|
5963
6089
|
"highlighting": "string",
|
|
5964
6090
|
"loc": {
|
|
5965
6091
|
"start": {
|
|
5966
|
-
"line":
|
|
6092
|
+
"line": 209,
|
|
5967
6093
|
"column": 12,
|
|
5968
|
-
"index":
|
|
6094
|
+
"index": 6603
|
|
5969
6095
|
},
|
|
5970
6096
|
"end": {
|
|
5971
|
-
"line":
|
|
6097
|
+
"line": 215,
|
|
5972
6098
|
"column": 13,
|
|
5973
|
-
"index":
|
|
6099
|
+
"index": 6815
|
|
5974
6100
|
}
|
|
5975
6101
|
},
|
|
5976
6102
|
"filepath": "src/components/datagrid/controls/column_selector.tsx"
|
|
@@ -5981,14 +6107,14 @@
|
|
|
5981
6107
|
"highlighting": "string",
|
|
5982
6108
|
"loc": {
|
|
5983
6109
|
"start": {
|
|
5984
|
-
"line":
|
|
6110
|
+
"line": 209,
|
|
5985
6111
|
"column": 12,
|
|
5986
|
-
"index":
|
|
6112
|
+
"index": 6603
|
|
5987
6113
|
},
|
|
5988
6114
|
"end": {
|
|
5989
|
-
"line":
|
|
6115
|
+
"line": 215,
|
|
5990
6116
|
"column": 13,
|
|
5991
|
-
"index":
|
|
6117
|
+
"index": 6815
|
|
5992
6118
|
}
|
|
5993
6119
|
},
|
|
5994
6120
|
"filepath": "src/components/datagrid/controls/column_selector.tsx"
|
|
@@ -5999,14 +6125,14 @@
|
|
|
5999
6125
|
"highlighting": "string",
|
|
6000
6126
|
"loc": {
|
|
6001
6127
|
"start": {
|
|
6002
|
-
"line":
|
|
6128
|
+
"line": 333,
|
|
6003
6129
|
"column": 18,
|
|
6004
|
-
"index":
|
|
6130
|
+
"index": 11808
|
|
6005
6131
|
},
|
|
6006
6132
|
"end": {
|
|
6007
|
-
"line":
|
|
6133
|
+
"line": 336,
|
|
6008
6134
|
"column": 20,
|
|
6009
|
-
"index":
|
|
6135
|
+
"index": 11932
|
|
6010
6136
|
}
|
|
6011
6137
|
},
|
|
6012
6138
|
"filepath": "src/components/datagrid/controls/column_selector.tsx"
|
|
@@ -6017,287 +6143,287 @@
|
|
|
6017
6143
|
"highlighting": "string",
|
|
6018
6144
|
"loc": {
|
|
6019
6145
|
"start": {
|
|
6020
|
-
"line":
|
|
6146
|
+
"line": 346,
|
|
6021
6147
|
"column": 18,
|
|
6022
|
-
"index":
|
|
6148
|
+
"index": 12292
|
|
6023
6149
|
},
|
|
6024
6150
|
"end": {
|
|
6025
|
-
"line":
|
|
6151
|
+
"line": 349,
|
|
6026
6152
|
"column": 20,
|
|
6027
|
-
"index":
|
|
6153
|
+
"index": 12414
|
|
6028
6154
|
}
|
|
6029
6155
|
},
|
|
6030
6156
|
"filepath": "src/components/datagrid/controls/column_selector.tsx"
|
|
6031
6157
|
},
|
|
6032
6158
|
{
|
|
6033
|
-
"token": "
|
|
6034
|
-
"defString": "
|
|
6159
|
+
"token": "euiComboBoxOptionsList.loadingOptions",
|
|
6160
|
+
"defString": "Loading options",
|
|
6035
6161
|
"highlighting": "string",
|
|
6036
6162
|
"loc": {
|
|
6037
6163
|
"start": {
|
|
6038
|
-
"line":
|
|
6039
|
-
"column":
|
|
6040
|
-
"index":
|
|
6164
|
+
"line": 385,
|
|
6165
|
+
"column": 12,
|
|
6166
|
+
"index": 11008
|
|
6041
6167
|
},
|
|
6042
6168
|
"end": {
|
|
6043
|
-
"line":
|
|
6044
|
-
"column":
|
|
6045
|
-
"index":
|
|
6169
|
+
"line": 388,
|
|
6170
|
+
"column": 14,
|
|
6171
|
+
"index": 11131
|
|
6046
6172
|
}
|
|
6047
6173
|
},
|
|
6048
|
-
"filepath": "src/components/
|
|
6174
|
+
"filepath": "src/components/combo_box/combo_box_options_list/combo_box_options_list.tsx"
|
|
6049
6175
|
},
|
|
6050
6176
|
{
|
|
6051
|
-
"token": "
|
|
6052
|
-
"defString": "
|
|
6177
|
+
"token": "euiComboBoxOptionsList.delimiterMessage",
|
|
6178
|
+
"defString": "Add each item separated by {delimiter}",
|
|
6053
6179
|
"highlighting": "string",
|
|
6054
6180
|
"loc": {
|
|
6055
6181
|
"start": {
|
|
6056
|
-
"line":
|
|
6057
|
-
"column":
|
|
6058
|
-
"index":
|
|
6182
|
+
"line": 398,
|
|
6183
|
+
"column": 16,
|
|
6184
|
+
"index": 11570
|
|
6059
6185
|
},
|
|
6060
6186
|
"end": {
|
|
6061
|
-
"line":
|
|
6062
|
-
"column":
|
|
6063
|
-
"index":
|
|
6187
|
+
"line": 402,
|
|
6188
|
+
"column": 18,
|
|
6189
|
+
"index": 11801
|
|
6064
6190
|
}
|
|
6065
6191
|
},
|
|
6066
|
-
"filepath": "src/components/
|
|
6192
|
+
"filepath": "src/components/combo_box/combo_box_options_list/combo_box_options_list.tsx"
|
|
6067
6193
|
},
|
|
6068
6194
|
{
|
|
6069
|
-
"token": "
|
|
6070
|
-
"defString": "
|
|
6195
|
+
"token": "euiComboBoxOptionsList.alreadyAdded",
|
|
6196
|
+
"defString": "{label} has already been added",
|
|
6071
6197
|
"highlighting": "string",
|
|
6072
6198
|
"loc": {
|
|
6073
6199
|
"start": {
|
|
6074
|
-
"line":
|
|
6075
|
-
"column":
|
|
6076
|
-
"index":
|
|
6200
|
+
"line": 417,
|
|
6201
|
+
"column": 16,
|
|
6202
|
+
"index": 12230
|
|
6077
6203
|
},
|
|
6078
6204
|
"end": {
|
|
6079
|
-
"line":
|
|
6080
|
-
"column":
|
|
6081
|
-
"index":
|
|
6205
|
+
"line": 423,
|
|
6206
|
+
"column": 18,
|
|
6207
|
+
"index": 12503
|
|
6082
6208
|
}
|
|
6083
6209
|
},
|
|
6084
|
-
"filepath": "src/components/
|
|
6210
|
+
"filepath": "src/components/combo_box/combo_box_options_list/combo_box_options_list.tsx"
|
|
6085
6211
|
},
|
|
6086
6212
|
{
|
|
6087
|
-
"token": "
|
|
6088
|
-
"defString": "
|
|
6213
|
+
"token": "euiComboBoxOptionsList.createCustomOption",
|
|
6214
|
+
"defString": "Add {searchValue} as a custom option",
|
|
6089
6215
|
"highlighting": "string",
|
|
6090
6216
|
"loc": {
|
|
6091
6217
|
"start": {
|
|
6092
|
-
"line":
|
|
6093
|
-
"column":
|
|
6094
|
-
"index":
|
|
6218
|
+
"line": 452,
|
|
6219
|
+
"column": 20,
|
|
6220
|
+
"index": 13494
|
|
6095
6221
|
},
|
|
6096
6222
|
"end": {
|
|
6097
|
-
"line":
|
|
6098
|
-
"column":
|
|
6099
|
-
"index":
|
|
6100
|
-
}
|
|
6223
|
+
"line": 458,
|
|
6224
|
+
"column": 22,
|
|
6225
|
+
"index": 13792
|
|
6226
|
+
}
|
|
6101
6227
|
},
|
|
6102
|
-
"filepath": "src/components/
|
|
6228
|
+
"filepath": "src/components/combo_box/combo_box_options_list/combo_box_options_list.tsx"
|
|
6103
6229
|
},
|
|
6104
6230
|
{
|
|
6105
|
-
"token": "
|
|
6106
|
-
"defString": "
|
|
6231
|
+
"token": "euiComboBoxOptionsList.noMatchingOptions",
|
|
6232
|
+
"defString": "{searchValue} doesn't match any options",
|
|
6107
6233
|
"highlighting": "string",
|
|
6108
6234
|
"loc": {
|
|
6109
6235
|
"start": {
|
|
6110
|
-
"line":
|
|
6111
|
-
"column":
|
|
6112
|
-
"index":
|
|
6236
|
+
"line": 469,
|
|
6237
|
+
"column": 12,
|
|
6238
|
+
"index": 13996
|
|
6113
6239
|
},
|
|
6114
6240
|
"end": {
|
|
6115
|
-
"line":
|
|
6116
|
-
"column":
|
|
6117
|
-
"index":
|
|
6241
|
+
"line": 473,
|
|
6242
|
+
"column": 14,
|
|
6243
|
+
"index": 14217
|
|
6118
6244
|
}
|
|
6119
6245
|
},
|
|
6120
|
-
"filepath": "src/components/
|
|
6246
|
+
"filepath": "src/components/combo_box/combo_box_options_list/combo_box_options_list.tsx"
|
|
6121
6247
|
},
|
|
6122
6248
|
{
|
|
6123
|
-
"token": "
|
|
6124
|
-
"defString": "
|
|
6249
|
+
"token": "euiComboBoxOptionsList.noAvailableOptions",
|
|
6250
|
+
"defString": "There aren't any options available",
|
|
6125
6251
|
"highlighting": "string",
|
|
6126
6252
|
"loc": {
|
|
6127
6253
|
"start": {
|
|
6128
|
-
"line":
|
|
6129
|
-
"column":
|
|
6130
|
-
"index":
|
|
6254
|
+
"line": 480,
|
|
6255
|
+
"column": 10,
|
|
6256
|
+
"index": 14336
|
|
6131
6257
|
},
|
|
6132
6258
|
"end": {
|
|
6133
|
-
"line":
|
|
6134
|
-
"column":
|
|
6135
|
-
"index":
|
|
6259
|
+
"line": 483,
|
|
6260
|
+
"column": 12,
|
|
6261
|
+
"index": 14476
|
|
6136
6262
|
}
|
|
6137
6263
|
},
|
|
6138
|
-
"filepath": "src/components/
|
|
6264
|
+
"filepath": "src/components/combo_box/combo_box_options_list/combo_box_options_list.tsx"
|
|
6139
6265
|
},
|
|
6140
6266
|
{
|
|
6141
|
-
"token": "
|
|
6142
|
-
"defString": "
|
|
6267
|
+
"token": "euiComboBoxOptionsList.allOptionsSelected",
|
|
6268
|
+
"defString": "You've selected all available options",
|
|
6143
6269
|
"highlighting": "string",
|
|
6144
6270
|
"loc": {
|
|
6145
6271
|
"start": {
|
|
6146
|
-
"line":
|
|
6147
|
-
"column":
|
|
6148
|
-
"index":
|
|
6272
|
+
"line": 489,
|
|
6273
|
+
"column": 10,
|
|
6274
|
+
"index": 14589
|
|
6149
6275
|
},
|
|
6150
6276
|
"end": {
|
|
6151
|
-
"line":
|
|
6152
|
-
"column":
|
|
6153
|
-
"index":
|
|
6277
|
+
"line": 492,
|
|
6278
|
+
"column": 12,
|
|
6279
|
+
"index": 14732
|
|
6154
6280
|
}
|
|
6155
6281
|
},
|
|
6156
|
-
"filepath": "src/components/
|
|
6282
|
+
"filepath": "src/components/combo_box/combo_box_options_list/combo_box_options_list.tsx"
|
|
6157
6283
|
},
|
|
6158
6284
|
{
|
|
6159
|
-
"token": "
|
|
6160
|
-
"defString": "
|
|
6285
|
+
"token": "euiComboBoxPill.removeSelection",
|
|
6286
|
+
"defString": "Remove {children} from selection in this group",
|
|
6161
6287
|
"highlighting": "string",
|
|
6162
6288
|
"loc": {
|
|
6163
6289
|
"start": {
|
|
6164
|
-
"line":
|
|
6165
|
-
"column":
|
|
6166
|
-
"index":
|
|
6290
|
+
"line": 67,
|
|
6291
|
+
"column": 6,
|
|
6292
|
+
"index": 2037
|
|
6167
6293
|
},
|
|
6168
6294
|
"end": {
|
|
6169
|
-
"line":
|
|
6170
|
-
"column":
|
|
6171
|
-
"index":
|
|
6295
|
+
"line": 71,
|
|
6296
|
+
"column": 7,
|
|
6297
|
+
"index": 2196
|
|
6172
6298
|
}
|
|
6173
6299
|
},
|
|
6174
|
-
"filepath": "src/components/combo_box/
|
|
6300
|
+
"filepath": "src/components/combo_box/combo_box_input/combo_box_pill.tsx"
|
|
6175
6301
|
},
|
|
6176
6302
|
{
|
|
6177
|
-
"token": "
|
|
6178
|
-
"defString": "
|
|
6303
|
+
"token": "euiCollapsibleNavButton.ariaLabelExpand",
|
|
6304
|
+
"defString": "Expand navigation",
|
|
6179
6305
|
"highlighting": "string",
|
|
6180
6306
|
"loc": {
|
|
6181
6307
|
"start": {
|
|
6182
|
-
"line":
|
|
6183
|
-
"column":
|
|
6184
|
-
"index":
|
|
6308
|
+
"line": 37,
|
|
6309
|
+
"column": 28,
|
|
6310
|
+
"index": 1465
|
|
6185
6311
|
},
|
|
6186
6312
|
"end": {
|
|
6187
|
-
"line":
|
|
6188
|
-
"column":
|
|
6189
|
-
"index":
|
|
6313
|
+
"line": 40,
|
|
6314
|
+
"column": 3,
|
|
6315
|
+
"index": 1551
|
|
6190
6316
|
}
|
|
6191
6317
|
},
|
|
6192
|
-
"filepath": "src/components/
|
|
6318
|
+
"filepath": "src/components/collapsible_nav_beta/collapsible_nav_button/collapsible_nav_button.tsx"
|
|
6193
6319
|
},
|
|
6194
6320
|
{
|
|
6195
|
-
"token": "
|
|
6196
|
-
"defString": "
|
|
6321
|
+
"token": "euiCollapsibleNavButton.ariaLabelCollapse",
|
|
6322
|
+
"defString": "Collapse navigation",
|
|
6197
6323
|
"highlighting": "string",
|
|
6198
6324
|
"loc": {
|
|
6199
6325
|
"start": {
|
|
6200
|
-
"line":
|
|
6201
|
-
"column":
|
|
6202
|
-
"index":
|
|
6326
|
+
"line": 41,
|
|
6327
|
+
"column": 30,
|
|
6328
|
+
"index": 1583
|
|
6203
6329
|
},
|
|
6204
6330
|
"end": {
|
|
6205
|
-
"line":
|
|
6206
|
-
"column":
|
|
6207
|
-
"index":
|
|
6331
|
+
"line": 44,
|
|
6332
|
+
"column": 3,
|
|
6333
|
+
"index": 1673
|
|
6208
6334
|
}
|
|
6209
6335
|
},
|
|
6210
|
-
"filepath": "src/components/
|
|
6336
|
+
"filepath": "src/components/collapsible_nav_beta/collapsible_nav_button/collapsible_nav_button.tsx"
|
|
6211
6337
|
},
|
|
6212
6338
|
{
|
|
6213
|
-
"token": "
|
|
6214
|
-
"defString": "
|
|
6339
|
+
"token": "euiCollapsibleNavButton.ariaLabelOpen",
|
|
6340
|
+
"defString": "Open navigation",
|
|
6215
6341
|
"highlighting": "string",
|
|
6216
6342
|
"loc": {
|
|
6217
6343
|
"start": {
|
|
6218
|
-
"line":
|
|
6219
|
-
"column":
|
|
6220
|
-
"index":
|
|
6344
|
+
"line": 45,
|
|
6345
|
+
"column": 26,
|
|
6346
|
+
"index": 1701
|
|
6221
6347
|
},
|
|
6222
6348
|
"end": {
|
|
6223
|
-
"line":
|
|
6224
|
-
"column":
|
|
6225
|
-
"index":
|
|
6349
|
+
"line": 48,
|
|
6350
|
+
"column": 3,
|
|
6351
|
+
"index": 1783
|
|
6226
6352
|
}
|
|
6227
6353
|
},
|
|
6228
|
-
"filepath": "src/components/
|
|
6354
|
+
"filepath": "src/components/collapsible_nav_beta/collapsible_nav_button/collapsible_nav_button.tsx"
|
|
6229
6355
|
},
|
|
6230
6356
|
{
|
|
6231
|
-
"token": "
|
|
6232
|
-
"defString": "
|
|
6357
|
+
"token": "euiCollapsibleNavButton.ariaLabelClose",
|
|
6358
|
+
"defString": "Close navigation",
|
|
6233
6359
|
"highlighting": "string",
|
|
6234
6360
|
"loc": {
|
|
6235
6361
|
"start": {
|
|
6236
|
-
"line":
|
|
6237
|
-
"column":
|
|
6238
|
-
"index":
|
|
6362
|
+
"line": 49,
|
|
6363
|
+
"column": 27,
|
|
6364
|
+
"index": 1812
|
|
6239
6365
|
},
|
|
6240
6366
|
"end": {
|
|
6241
|
-
"line":
|
|
6242
|
-
"column":
|
|
6243
|
-
"index":
|
|
6367
|
+
"line": 52,
|
|
6368
|
+
"column": 3,
|
|
6369
|
+
"index": 1896
|
|
6244
6370
|
}
|
|
6245
6371
|
},
|
|
6246
|
-
"filepath": "src/components/
|
|
6372
|
+
"filepath": "src/components/collapsible_nav_beta/collapsible_nav_button/collapsible_nav_button.tsx"
|
|
6247
6373
|
},
|
|
6248
6374
|
{
|
|
6249
|
-
"token": "
|
|
6250
|
-
"defString": "
|
|
6375
|
+
"token": "euiCollapsibleNavKibanaSolution.switcherTitle",
|
|
6376
|
+
"defString": "Solution view",
|
|
6251
6377
|
"highlighting": "string",
|
|
6252
6378
|
"loc": {
|
|
6253
6379
|
"start": {
|
|
6254
|
-
"line":
|
|
6255
|
-
"column":
|
|
6256
|
-
"index":
|
|
6380
|
+
"line": 73,
|
|
6381
|
+
"column": 40,
|
|
6382
|
+
"index": 2535
|
|
6257
6383
|
},
|
|
6258
6384
|
"end": {
|
|
6259
|
-
"line":
|
|
6260
|
-
"column":
|
|
6261
|
-
"index":
|
|
6385
|
+
"line": 76,
|
|
6386
|
+
"column": 3,
|
|
6387
|
+
"index": 2623
|
|
6262
6388
|
}
|
|
6263
6389
|
},
|
|
6264
|
-
"filepath": "src/components/
|
|
6390
|
+
"filepath": "src/components/collapsible_nav_beta/_kibana_solution/collapsible_nav_kibana_solution.tsx"
|
|
6265
6391
|
},
|
|
6266
6392
|
{
|
|
6267
|
-
"token": "
|
|
6268
|
-
"defString": "
|
|
6393
|
+
"token": "euiCollapsibleNavKibanaSolution.switcherAriaLabel",
|
|
6394
|
+
"defString": " - click to switch to another solution",
|
|
6269
6395
|
"highlighting": "string",
|
|
6270
6396
|
"loc": {
|
|
6271
6397
|
"start": {
|
|
6272
|
-
"line":
|
|
6273
|
-
"column":
|
|
6274
|
-
"index":
|
|
6398
|
+
"line": 77,
|
|
6399
|
+
"column": 44,
|
|
6400
|
+
"index": 2669
|
|
6275
6401
|
},
|
|
6276
6402
|
"end": {
|
|
6277
|
-
"line":
|
|
6278
|
-
"column":
|
|
6279
|
-
"index":
|
|
6403
|
+
"line": 80,
|
|
6404
|
+
"column": 3,
|
|
6405
|
+
"index": 2786
|
|
6280
6406
|
}
|
|
6281
6407
|
},
|
|
6282
|
-
"filepath": "src/components/
|
|
6408
|
+
"filepath": "src/components/collapsible_nav_beta/_kibana_solution/collapsible_nav_kibana_solution.tsx"
|
|
6283
6409
|
},
|
|
6284
6410
|
{
|
|
6285
|
-
"token": "
|
|
6286
|
-
"defString": "
|
|
6411
|
+
"token": "euiCollapsibleNavKibanaSolution.groupLabel",
|
|
6412
|
+
"defString": "Navigate to solution",
|
|
6287
6413
|
"highlighting": "string",
|
|
6288
6414
|
"loc": {
|
|
6289
6415
|
"start": {
|
|
6290
|
-
"line":
|
|
6291
|
-
"column":
|
|
6292
|
-
"index":
|
|
6416
|
+
"line": 81,
|
|
6417
|
+
"column": 37,
|
|
6418
|
+
"index": 2825
|
|
6293
6419
|
},
|
|
6294
6420
|
"end": {
|
|
6295
|
-
"line":
|
|
6296
|
-
"column":
|
|
6297
|
-
"index":
|
|
6421
|
+
"line": 84,
|
|
6422
|
+
"column": 3,
|
|
6423
|
+
"index": 2917
|
|
6298
6424
|
}
|
|
6299
6425
|
},
|
|
6300
|
-
"filepath": "src/components/
|
|
6426
|
+
"filepath": "src/components/collapsible_nav_beta/_kibana_solution/collapsible_nav_kibana_solution.tsx"
|
|
6301
6427
|
},
|
|
6302
6428
|
{
|
|
6303
6429
|
"token": "euiCardSelect.selected",
|
|
@@ -6372,508 +6498,508 @@
|
|
|
6372
6498
|
"filepath": "src/components/accordion/accordion_children/accordion_children_loading.tsx"
|
|
6373
6499
|
},
|
|
6374
6500
|
{
|
|
6375
|
-
"token": "
|
|
6376
|
-
"defString": "
|
|
6501
|
+
"token": "euiRecentlyUsed.legend",
|
|
6502
|
+
"defString": "Recently used date ranges",
|
|
6377
6503
|
"highlighting": "string",
|
|
6378
6504
|
"loc": {
|
|
6379
6505
|
"start": {
|
|
6380
|
-
"line":
|
|
6381
|
-
"column":
|
|
6382
|
-
"index":
|
|
6506
|
+
"line": 33,
|
|
6507
|
+
"column": 16,
|
|
6508
|
+
"index": 1123
|
|
6383
6509
|
},
|
|
6384
6510
|
"end": {
|
|
6385
|
-
"line":
|
|
6511
|
+
"line": 36,
|
|
6386
6512
|
"column": 3,
|
|
6387
|
-
"index":
|
|
6513
|
+
"index": 1200
|
|
6388
6514
|
}
|
|
6389
6515
|
},
|
|
6390
|
-
"filepath": "src/components/date_picker/super_date_picker/
|
|
6516
|
+
"filepath": "src/components/date_picker/super_date_picker/quick_select_popover/recently_used.tsx"
|
|
6391
6517
|
},
|
|
6392
6518
|
{
|
|
6393
|
-
"token": "
|
|
6394
|
-
"defString": "
|
|
6519
|
+
"token": "euiQuickSelectPopover.buttonLabel",
|
|
6520
|
+
"defString": "Date quick select",
|
|
6395
6521
|
"highlighting": "string",
|
|
6396
6522
|
"loc": {
|
|
6397
6523
|
"start": {
|
|
6398
|
-
"line":
|
|
6399
|
-
"column":
|
|
6400
|
-
"index":
|
|
6524
|
+
"line": 103,
|
|
6525
|
+
"column": 22,
|
|
6526
|
+
"index": 3370
|
|
6401
6527
|
},
|
|
6402
6528
|
"end": {
|
|
6403
|
-
"line":
|
|
6529
|
+
"line": 106,
|
|
6404
6530
|
"column": 3,
|
|
6405
|
-
"index":
|
|
6531
|
+
"index": 3450
|
|
6406
6532
|
}
|
|
6407
6533
|
},
|
|
6408
|
-
"filepath": "src/components/date_picker/super_date_picker/
|
|
6534
|
+
"filepath": "src/components/date_picker/super_date_picker/quick_select_popover/quick_select_popover.tsx"
|
|
6409
6535
|
},
|
|
6410
6536
|
{
|
|
6411
|
-
"token": "
|
|
6412
|
-
"defString": "
|
|
6537
|
+
"token": "euiQuickSelect.quickSelectTitle",
|
|
6538
|
+
"defString": "Quick select",
|
|
6413
6539
|
"highlighting": "string",
|
|
6414
6540
|
"loc": {
|
|
6415
6541
|
"start": {
|
|
6416
|
-
"line":
|
|
6417
|
-
"column":
|
|
6418
|
-
"index":
|
|
6542
|
+
"line": 162,
|
|
6543
|
+
"column": 10,
|
|
6544
|
+
"index": 4691
|
|
6419
6545
|
},
|
|
6420
6546
|
"end": {
|
|
6421
|
-
"line":
|
|
6422
|
-
"column":
|
|
6423
|
-
"index":
|
|
6547
|
+
"line": 165,
|
|
6548
|
+
"column": 12,
|
|
6549
|
+
"index": 4799
|
|
6424
6550
|
}
|
|
6425
6551
|
},
|
|
6426
|
-
"filepath": "src/components/date_picker/super_date_picker/
|
|
6552
|
+
"filepath": "src/components/date_picker/super_date_picker/quick_select_popover/quick_select.tsx"
|
|
6427
6553
|
},
|
|
6428
6554
|
{
|
|
6429
|
-
"token": "
|
|
6430
|
-
"defString": "
|
|
6555
|
+
"token": "euiQuickSelect.previousLabel",
|
|
6556
|
+
"defString": "Previous time window",
|
|
6431
6557
|
"highlighting": "string",
|
|
6432
6558
|
"loc": {
|
|
6433
6559
|
"start": {
|
|
6434
|
-
"line":
|
|
6435
|
-
"column":
|
|
6436
|
-
"index":
|
|
6560
|
+
"line": 184,
|
|
6561
|
+
"column": 12,
|
|
6562
|
+
"index": 5381
|
|
6437
6563
|
},
|
|
6438
6564
|
"end": {
|
|
6439
|
-
"line":
|
|
6440
|
-
"column":
|
|
6441
|
-
"index":
|
|
6565
|
+
"line": 187,
|
|
6566
|
+
"column": 13,
|
|
6567
|
+
"index": 5499
|
|
6442
6568
|
}
|
|
6443
6569
|
},
|
|
6444
|
-
"filepath": "src/components/date_picker/super_date_picker/
|
|
6570
|
+
"filepath": "src/components/date_picker/super_date_picker/quick_select_popover/quick_select.tsx"
|
|
6445
6571
|
},
|
|
6446
6572
|
{
|
|
6447
|
-
"token": "
|
|
6448
|
-
"defString": "
|
|
6573
|
+
"token": "euiQuickSelect.nextLabel",
|
|
6574
|
+
"defString": "Next time window",
|
|
6449
6575
|
"highlighting": "string",
|
|
6450
6576
|
"loc": {
|
|
6451
6577
|
"start": {
|
|
6452
|
-
"line":
|
|
6578
|
+
"line": 200,
|
|
6453
6579
|
"column": 12,
|
|
6454
|
-
"index":
|
|
6580
|
+
"index": 5957
|
|
6455
6581
|
},
|
|
6456
6582
|
"end": {
|
|
6457
|
-
"line":
|
|
6458
|
-
"column":
|
|
6459
|
-
"index":
|
|
6583
|
+
"line": 203,
|
|
6584
|
+
"column": 13,
|
|
6585
|
+
"index": 6067
|
|
6460
6586
|
}
|
|
6461
6587
|
},
|
|
6462
|
-
"filepath": "src/components/date_picker/super_date_picker/
|
|
6588
|
+
"filepath": "src/components/date_picker/super_date_picker/quick_select_popover/quick_select.tsx"
|
|
6463
6589
|
},
|
|
6464
6590
|
{
|
|
6465
|
-
"token": "
|
|
6466
|
-
"defString": "
|
|
6591
|
+
"token": "euiQuickSelect.tenseLabel",
|
|
6592
|
+
"defString": "Time tense",
|
|
6467
6593
|
"highlighting": "string",
|
|
6468
6594
|
"loc": {
|
|
6469
6595
|
"start": {
|
|
6470
|
-
"line":
|
|
6471
|
-
"column":
|
|
6472
|
-
"index":
|
|
6596
|
+
"line": 218,
|
|
6597
|
+
"column": 12,
|
|
6598
|
+
"index": 6581
|
|
6473
6599
|
},
|
|
6474
6600
|
"end": {
|
|
6475
|
-
"line":
|
|
6476
|
-
"column":
|
|
6477
|
-
"index":
|
|
6601
|
+
"line": 218,
|
|
6602
|
+
"column": 76,
|
|
6603
|
+
"index": 6645
|
|
6478
6604
|
}
|
|
6479
6605
|
},
|
|
6480
|
-
"filepath": "src/components/date_picker/super_date_picker/
|
|
6606
|
+
"filepath": "src/components/date_picker/super_date_picker/quick_select_popover/quick_select.tsx"
|
|
6481
6607
|
},
|
|
6482
6608
|
{
|
|
6483
|
-
"token": "
|
|
6484
|
-
"defString": "
|
|
6609
|
+
"token": "euiQuickSelect.valueLabel",
|
|
6610
|
+
"defString": "Time value",
|
|
6485
6611
|
"highlighting": "string",
|
|
6486
6612
|
"loc": {
|
|
6487
6613
|
"start": {
|
|
6488
|
-
"line":
|
|
6489
|
-
"column":
|
|
6490
|
-
"index":
|
|
6614
|
+
"line": 233,
|
|
6615
|
+
"column": 12,
|
|
6616
|
+
"index": 7167
|
|
6491
6617
|
},
|
|
6492
6618
|
"end": {
|
|
6493
|
-
"line":
|
|
6494
|
-
"column":
|
|
6495
|
-
"index":
|
|
6619
|
+
"line": 233,
|
|
6620
|
+
"column": 76,
|
|
6621
|
+
"index": 7231
|
|
6496
6622
|
}
|
|
6497
6623
|
},
|
|
6498
|
-
"filepath": "src/components/date_picker/super_date_picker/
|
|
6624
|
+
"filepath": "src/components/date_picker/super_date_picker/quick_select_popover/quick_select.tsx"
|
|
6499
6625
|
},
|
|
6500
6626
|
{
|
|
6501
|
-
"token": "
|
|
6502
|
-
"defString": "
|
|
6627
|
+
"token": "euiQuickSelect.unitLabel",
|
|
6628
|
+
"defString": "Time unit",
|
|
6503
6629
|
"highlighting": "string",
|
|
6504
6630
|
"loc": {
|
|
6505
6631
|
"start": {
|
|
6506
|
-
"line":
|
|
6507
|
-
"column":
|
|
6508
|
-
"index":
|
|
6632
|
+
"line": 247,
|
|
6633
|
+
"column": 12,
|
|
6634
|
+
"index": 7713
|
|
6509
6635
|
},
|
|
6510
6636
|
"end": {
|
|
6511
|
-
"line":
|
|
6512
|
-
"column":
|
|
6513
|
-
"index":
|
|
6637
|
+
"line": 247,
|
|
6638
|
+
"column": 74,
|
|
6639
|
+
"index": 7775
|
|
6514
6640
|
}
|
|
6515
6641
|
},
|
|
6516
|
-
"filepath": "src/components/date_picker/super_date_picker/
|
|
6642
|
+
"filepath": "src/components/date_picker/super_date_picker/quick_select_popover/quick_select.tsx"
|
|
6517
6643
|
},
|
|
6518
6644
|
{
|
|
6519
|
-
"token": "
|
|
6520
|
-
"defString": "
|
|
6645
|
+
"token": "euiQuickSelect.applyButton",
|
|
6646
|
+
"defString": "Apply",
|
|
6521
6647
|
"highlighting": "string",
|
|
6522
6648
|
"loc": {
|
|
6523
6649
|
"start": {
|
|
6524
|
-
"line":
|
|
6525
|
-
"column":
|
|
6526
|
-
"index":
|
|
6650
|
+
"line": 270,
|
|
6651
|
+
"column": 14,
|
|
6652
|
+
"index": 8658
|
|
6527
6653
|
},
|
|
6528
6654
|
"end": {
|
|
6529
|
-
"line":
|
|
6530
|
-
"column":
|
|
6531
|
-
"index":
|
|
6655
|
+
"line": 270,
|
|
6656
|
+
"column": 76,
|
|
6657
|
+
"index": 8720
|
|
6532
6658
|
}
|
|
6533
6659
|
},
|
|
6534
|
-
"filepath": "src/components/date_picker/super_date_picker/
|
|
6660
|
+
"filepath": "src/components/date_picker/super_date_picker/quick_select_popover/quick_select.tsx"
|
|
6535
6661
|
},
|
|
6536
6662
|
{
|
|
6537
|
-
"token": "
|
|
6538
|
-
"defString": "
|
|
6663
|
+
"token": "euiQuickSelect.fullDescription",
|
|
6664
|
+
"defString": "Currently set to {timeTense} {timeValue} {timeUnit}.",
|
|
6539
6665
|
"highlighting": "string",
|
|
6540
6666
|
"loc": {
|
|
6541
6667
|
"start": {
|
|
6542
|
-
"line":
|
|
6543
|
-
"column":
|
|
6544
|
-
"index":
|
|
6668
|
+
"line": 276,
|
|
6669
|
+
"column": 12,
|
|
6670
|
+
"index": 8877
|
|
6545
6671
|
},
|
|
6546
6672
|
"end": {
|
|
6547
|
-
"line":
|
|
6548
|
-
"column":
|
|
6549
|
-
"index":
|
|
6673
|
+
"line": 284,
|
|
6674
|
+
"column": 14,
|
|
6675
|
+
"index": 9151
|
|
6550
6676
|
}
|
|
6551
6677
|
},
|
|
6552
|
-
"filepath": "src/components/date_picker/super_date_picker/
|
|
6678
|
+
"filepath": "src/components/date_picker/super_date_picker/quick_select_popover/quick_select.tsx"
|
|
6553
6679
|
},
|
|
6554
6680
|
{
|
|
6555
|
-
"token": "
|
|
6556
|
-
"defString": "
|
|
6681
|
+
"token": "euiCommonlyUsedTimeRanges.legend",
|
|
6682
|
+
"defString": "Commonly used",
|
|
6557
6683
|
"highlighting": "string",
|
|
6558
6684
|
"loc": {
|
|
6559
6685
|
"start": {
|
|
6560
|
-
"line":
|
|
6561
|
-
"column":
|
|
6562
|
-
"index":
|
|
6686
|
+
"line": 27,
|
|
6687
|
+
"column": 16,
|
|
6688
|
+
"index": 995
|
|
6563
6689
|
},
|
|
6564
6690
|
"end": {
|
|
6565
|
-
"line":
|
|
6566
|
-
"column":
|
|
6567
|
-
"index":
|
|
6691
|
+
"line": 27,
|
|
6692
|
+
"column": 79,
|
|
6693
|
+
"index": 1058
|
|
6568
6694
|
}
|
|
6569
6695
|
},
|
|
6570
|
-
"filepath": "src/components/date_picker/super_date_picker/
|
|
6696
|
+
"filepath": "src/components/date_picker/super_date_picker/quick_select_popover/commonly_used_time_ranges.tsx"
|
|
6571
6697
|
},
|
|
6572
6698
|
{
|
|
6573
|
-
"token": "
|
|
6574
|
-
"defString": "
|
|
6699
|
+
"token": "euiRelativeTab.numberInputLabel",
|
|
6700
|
+
"defString": "Time span amount",
|
|
6575
6701
|
"highlighting": "string",
|
|
6576
6702
|
"loc": {
|
|
6577
6703
|
"start": {
|
|
6578
|
-
"line":
|
|
6579
|
-
"column":
|
|
6580
|
-
"index":
|
|
6704
|
+
"line": 125,
|
|
6705
|
+
"column": 26,
|
|
6706
|
+
"index": 3865
|
|
6581
6707
|
},
|
|
6582
6708
|
"end": {
|
|
6583
|
-
"line":
|
|
6584
|
-
"column":
|
|
6585
|
-
"index":
|
|
6709
|
+
"line": 128,
|
|
6710
|
+
"column": 3,
|
|
6711
|
+
"index": 3942
|
|
6586
6712
|
}
|
|
6587
6713
|
},
|
|
6588
|
-
"filepath": "src/components/date_picker/super_date_picker/date_popover/
|
|
6714
|
+
"filepath": "src/components/date_picker/super_date_picker/date_popover/relative_tab.tsx"
|
|
6589
6715
|
},
|
|
6590
6716
|
{
|
|
6591
|
-
"token": "
|
|
6592
|
-
"defString": "
|
|
6717
|
+
"token": "euiRelativeTab.numberInputError",
|
|
6718
|
+
"defString": "Must be >= 0",
|
|
6593
6719
|
"highlighting": "string",
|
|
6594
6720
|
"loc": {
|
|
6595
6721
|
"start": {
|
|
6596
|
-
"line":
|
|
6597
|
-
"column":
|
|
6598
|
-
"index":
|
|
6722
|
+
"line": 129,
|
|
6723
|
+
"column": 27,
|
|
6724
|
+
"index": 3971
|
|
6599
6725
|
},
|
|
6600
6726
|
"end": {
|
|
6601
|
-
"line":
|
|
6602
|
-
"column":
|
|
6603
|
-
"index":
|
|
6727
|
+
"line": 132,
|
|
6728
|
+
"column": 3,
|
|
6729
|
+
"index": 4044
|
|
6604
6730
|
}
|
|
6605
6731
|
},
|
|
6606
|
-
"filepath": "src/components/date_picker/super_date_picker/date_popover/
|
|
6732
|
+
"filepath": "src/components/date_picker/super_date_picker/date_popover/relative_tab.tsx"
|
|
6607
6733
|
},
|
|
6608
6734
|
{
|
|
6609
|
-
"token": "
|
|
6610
|
-
"defString": "
|
|
6735
|
+
"token": "euiRelativeTab.dateInputError",
|
|
6736
|
+
"defString": "Must be a valid range",
|
|
6611
6737
|
"highlighting": "string",
|
|
6612
6738
|
"loc": {
|
|
6613
6739
|
"start": {
|
|
6614
|
-
"line":
|
|
6615
|
-
"column":
|
|
6616
|
-
"index":
|
|
6740
|
+
"line": 133,
|
|
6741
|
+
"column": 25,
|
|
6742
|
+
"index": 4071
|
|
6617
6743
|
},
|
|
6618
6744
|
"end": {
|
|
6619
|
-
"line":
|
|
6745
|
+
"line": 136,
|
|
6620
6746
|
"column": 3,
|
|
6621
|
-
"index":
|
|
6747
|
+
"index": 4151
|
|
6622
6748
|
}
|
|
6623
6749
|
},
|
|
6624
|
-
"filepath": "src/components/date_picker/super_date_picker/date_popover/
|
|
6750
|
+
"filepath": "src/components/date_picker/super_date_picker/date_popover/relative_tab.tsx"
|
|
6625
6751
|
},
|
|
6626
6752
|
{
|
|
6627
|
-
"token": "
|
|
6628
|
-
"defString": "
|
|
6753
|
+
"token": "euiRelativeTab.unitInputLabel",
|
|
6754
|
+
"defString": "Relative time span",
|
|
6629
6755
|
"highlighting": "string",
|
|
6630
6756
|
"loc": {
|
|
6631
6757
|
"start": {
|
|
6632
|
-
"line":
|
|
6633
|
-
"column":
|
|
6634
|
-
"index":
|
|
6758
|
+
"line": 137,
|
|
6759
|
+
"column": 30,
|
|
6760
|
+
"index": 4183
|
|
6635
6761
|
},
|
|
6636
6762
|
"end": {
|
|
6637
|
-
"line":
|
|
6763
|
+
"line": 140,
|
|
6638
6764
|
"column": 3,
|
|
6639
|
-
"index":
|
|
6765
|
+
"index": 4260
|
|
6640
6766
|
}
|
|
6641
6767
|
},
|
|
6642
|
-
"filepath": "src/components/date_picker/super_date_picker/date_popover/
|
|
6768
|
+
"filepath": "src/components/date_picker/super_date_picker/date_popover/relative_tab.tsx"
|
|
6643
6769
|
},
|
|
6644
6770
|
{
|
|
6645
|
-
"token": "
|
|
6646
|
-
"defString": "
|
|
6771
|
+
"token": "euiRelativeTab.fullDescription",
|
|
6772
|
+
"defString": "The unit is changeable. Currently set to {unit}.",
|
|
6647
6773
|
"highlighting": "string",
|
|
6648
6774
|
"loc": {
|
|
6649
6775
|
"start": {
|
|
6650
|
-
"line":
|
|
6651
|
-
"column":
|
|
6652
|
-
"index":
|
|
6776
|
+
"line": 189,
|
|
6777
|
+
"column": 12,
|
|
6778
|
+
"index": 5811
|
|
6653
6779
|
},
|
|
6654
6780
|
"end": {
|
|
6655
|
-
"line":
|
|
6656
|
-
"column":
|
|
6657
|
-
"index":
|
|
6781
|
+
"line": 193,
|
|
6782
|
+
"column": 14,
|
|
6783
|
+
"index": 5992
|
|
6658
6784
|
}
|
|
6659
6785
|
},
|
|
6660
|
-
"filepath": "src/components/date_picker/super_date_picker/date_popover/
|
|
6786
|
+
"filepath": "src/components/date_picker/super_date_picker/date_popover/relative_tab.tsx"
|
|
6661
6787
|
},
|
|
6662
6788
|
{
|
|
6663
|
-
"token": "
|
|
6664
|
-
"defString": "
|
|
6789
|
+
"token": "euiDatePopoverContent.startDateLabel",
|
|
6790
|
+
"defString": "Start date",
|
|
6665
6791
|
"highlighting": "string",
|
|
6666
6792
|
"loc": {
|
|
6667
6793
|
"start": {
|
|
6668
|
-
"line":
|
|
6669
|
-
"column":
|
|
6670
|
-
"index":
|
|
6794
|
+
"line": 77,
|
|
6795
|
+
"column": 25,
|
|
6796
|
+
"index": 2286
|
|
6671
6797
|
},
|
|
6672
6798
|
"end": {
|
|
6673
|
-
"line":
|
|
6799
|
+
"line": 80,
|
|
6674
6800
|
"column": 3,
|
|
6675
|
-
"index":
|
|
6801
|
+
"index": 2362
|
|
6676
6802
|
}
|
|
6677
6803
|
},
|
|
6678
|
-
"filepath": "src/components/date_picker/super_date_picker/date_popover/
|
|
6804
|
+
"filepath": "src/components/date_picker/super_date_picker/date_popover/date_popover_content.tsx"
|
|
6679
6805
|
},
|
|
6680
6806
|
{
|
|
6681
|
-
"token": "
|
|
6682
|
-
"defString": "
|
|
6807
|
+
"token": "euiDatePopoverContent.endDateLabel",
|
|
6808
|
+
"defString": "End date",
|
|
6683
6809
|
"highlighting": "string",
|
|
6684
6810
|
"loc": {
|
|
6685
6811
|
"start": {
|
|
6686
|
-
"line":
|
|
6687
|
-
"column":
|
|
6688
|
-
"index":
|
|
6812
|
+
"line": 81,
|
|
6813
|
+
"column": 23,
|
|
6814
|
+
"index": 2387
|
|
6689
6815
|
},
|
|
6690
6816
|
"end": {
|
|
6691
|
-
"line":
|
|
6817
|
+
"line": 84,
|
|
6692
6818
|
"column": 3,
|
|
6693
|
-
"index":
|
|
6819
|
+
"index": 2459
|
|
6694
6820
|
}
|
|
6695
6821
|
},
|
|
6696
|
-
"filepath": "src/components/date_picker/super_date_picker/
|
|
6822
|
+
"filepath": "src/components/date_picker/super_date_picker/date_popover/date_popover_content.tsx"
|
|
6697
6823
|
},
|
|
6698
6824
|
{
|
|
6699
|
-
"token": "
|
|
6700
|
-
"defString": "
|
|
6825
|
+
"token": "euiDatePopoverContent.absoluteTabLabel",
|
|
6826
|
+
"defString": "Absolute",
|
|
6701
6827
|
"highlighting": "string",
|
|
6702
6828
|
"loc": {
|
|
6703
6829
|
"start": {
|
|
6704
|
-
"line":
|
|
6705
|
-
"column":
|
|
6706
|
-
"index":
|
|
6830
|
+
"line": 87,
|
|
6831
|
+
"column": 24,
|
|
6832
|
+
"index": 2562
|
|
6707
6833
|
},
|
|
6708
6834
|
"end": {
|
|
6709
|
-
"line":
|
|
6835
|
+
"line": 90,
|
|
6710
6836
|
"column": 3,
|
|
6711
|
-
"index":
|
|
6837
|
+
"index": 2638
|
|
6712
6838
|
}
|
|
6713
6839
|
},
|
|
6714
|
-
"filepath": "src/components/date_picker/super_date_picker/
|
|
6840
|
+
"filepath": "src/components/date_picker/super_date_picker/date_popover/date_popover_content.tsx"
|
|
6715
6841
|
},
|
|
6716
6842
|
{
|
|
6717
|
-
"token": "
|
|
6718
|
-
"defString": "
|
|
6843
|
+
"token": "euiDatePopoverContent.relativeTabLabel",
|
|
6844
|
+
"defString": "Relative",
|
|
6719
6845
|
"highlighting": "string",
|
|
6720
6846
|
"loc": {
|
|
6721
6847
|
"start": {
|
|
6722
|
-
"line":
|
|
6723
|
-
"column":
|
|
6724
|
-
"index":
|
|
6848
|
+
"line": 91,
|
|
6849
|
+
"column": 24,
|
|
6850
|
+
"index": 2664
|
|
6725
6851
|
},
|
|
6726
6852
|
"end": {
|
|
6727
|
-
"line":
|
|
6728
|
-
"column":
|
|
6729
|
-
"index":
|
|
6853
|
+
"line": 94,
|
|
6854
|
+
"column": 3,
|
|
6855
|
+
"index": 2740
|
|
6730
6856
|
}
|
|
6731
6857
|
},
|
|
6732
|
-
"filepath": "src/components/date_picker/super_date_picker/
|
|
6858
|
+
"filepath": "src/components/date_picker/super_date_picker/date_popover/date_popover_content.tsx"
|
|
6733
6859
|
},
|
|
6734
6860
|
{
|
|
6735
|
-
"token": "
|
|
6736
|
-
"defString": "
|
|
6861
|
+
"token": "euiDatePopoverContent.nowTabLabel",
|
|
6862
|
+
"defString": "Now",
|
|
6737
6863
|
"highlighting": "string",
|
|
6738
6864
|
"loc": {
|
|
6739
6865
|
"start": {
|
|
6740
|
-
"line":
|
|
6741
|
-
"column":
|
|
6742
|
-
"index":
|
|
6866
|
+
"line": 95,
|
|
6867
|
+
"column": 19,
|
|
6868
|
+
"index": 2761
|
|
6743
6869
|
},
|
|
6744
6870
|
"end": {
|
|
6745
|
-
"line":
|
|
6746
|
-
"column":
|
|
6747
|
-
"index":
|
|
6871
|
+
"line": 95,
|
|
6872
|
+
"column": 73,
|
|
6873
|
+
"index": 2815
|
|
6748
6874
|
}
|
|
6749
6875
|
},
|
|
6750
|
-
"filepath": "src/components/date_picker/super_date_picker/
|
|
6876
|
+
"filepath": "src/components/date_picker/super_date_picker/date_popover/date_popover_content.tsx"
|
|
6751
6877
|
},
|
|
6752
6878
|
{
|
|
6753
|
-
"token": "
|
|
6754
|
-
"defString": "
|
|
6879
|
+
"token": "euiDatePopoverContent.nowTabContent",
|
|
6880
|
+
"defString": "Setting the time to \"now\" means that on every refresh this time will be set to the time of the refresh.",
|
|
6755
6881
|
"highlighting": "string",
|
|
6756
6882
|
"loc": {
|
|
6757
6883
|
"start": {
|
|
6758
|
-
"line":
|
|
6884
|
+
"line": 145,
|
|
6759
6885
|
"column": 12,
|
|
6760
|
-
"index":
|
|
6886
|
+
"index": 4197
|
|
6761
6887
|
},
|
|
6762
6888
|
"end": {
|
|
6763
|
-
"line":
|
|
6764
|
-
"column":
|
|
6765
|
-
"index":
|
|
6889
|
+
"line": 148,
|
|
6890
|
+
"column": 14,
|
|
6891
|
+
"index": 4406
|
|
6766
6892
|
}
|
|
6767
6893
|
},
|
|
6768
|
-
"filepath": "src/components/date_picker/super_date_picker/
|
|
6894
|
+
"filepath": "src/components/date_picker/super_date_picker/date_popover/date_popover_content.tsx"
|
|
6769
6895
|
},
|
|
6770
6896
|
{
|
|
6771
|
-
"token": "
|
|
6772
|
-
"defString": "
|
|
6897
|
+
"token": "euiDatePopoverContent.nowTabButtonStart",
|
|
6898
|
+
"defString": "Set start date and time to now",
|
|
6773
6899
|
"highlighting": "string",
|
|
6774
6900
|
"loc": {
|
|
6775
6901
|
"start": {
|
|
6776
|
-
"line":
|
|
6777
|
-
"column":
|
|
6778
|
-
"index":
|
|
6902
|
+
"line": 160,
|
|
6903
|
+
"column": 14,
|
|
6904
|
+
"index": 4696
|
|
6779
6905
|
},
|
|
6780
6906
|
"end": {
|
|
6781
|
-
"line":
|
|
6782
|
-
"column":
|
|
6783
|
-
"index":
|
|
6907
|
+
"line": 163,
|
|
6908
|
+
"column": 16,
|
|
6909
|
+
"index": 4842
|
|
6784
6910
|
}
|
|
6785
6911
|
},
|
|
6786
|
-
"filepath": "src/components/date_picker/super_date_picker/
|
|
6912
|
+
"filepath": "src/components/date_picker/super_date_picker/date_popover/date_popover_content.tsx"
|
|
6787
6913
|
},
|
|
6788
6914
|
{
|
|
6789
|
-
"token": "
|
|
6790
|
-
"defString": "
|
|
6915
|
+
"token": "euiDatePopoverContent.nowTabButtonEnd",
|
|
6916
|
+
"defString": "Set end date and time to now",
|
|
6791
6917
|
"highlighting": "string",
|
|
6792
6918
|
"loc": {
|
|
6793
6919
|
"start": {
|
|
6794
|
-
"line":
|
|
6795
|
-
"column":
|
|
6796
|
-
"index":
|
|
6920
|
+
"line": 165,
|
|
6921
|
+
"column": 14,
|
|
6922
|
+
"index": 4875
|
|
6797
6923
|
},
|
|
6798
6924
|
"end": {
|
|
6799
|
-
"line":
|
|
6800
|
-
"column":
|
|
6801
|
-
"index":
|
|
6925
|
+
"line": 168,
|
|
6926
|
+
"column": 16,
|
|
6927
|
+
"index": 5017
|
|
6802
6928
|
}
|
|
6803
6929
|
},
|
|
6804
|
-
"filepath": "src/components/date_picker/super_date_picker/
|
|
6930
|
+
"filepath": "src/components/date_picker/super_date_picker/date_popover/date_popover_content.tsx"
|
|
6805
6931
|
},
|
|
6806
6932
|
{
|
|
6807
|
-
"token": "
|
|
6808
|
-
"defString": "
|
|
6933
|
+
"token": "euiDatePopoverButton.invalidTitle",
|
|
6934
|
+
"defString": "Invalid date: {title}",
|
|
6809
6935
|
"highlighting": "string",
|
|
6810
6936
|
"loc": {
|
|
6811
6937
|
"start": {
|
|
6812
|
-
"line":
|
|
6813
|
-
"column":
|
|
6814
|
-
"index":
|
|
6938
|
+
"line": 107,
|
|
6939
|
+
"column": 23,
|
|
6940
|
+
"index": 3054
|
|
6815
6941
|
},
|
|
6816
6942
|
"end": {
|
|
6817
|
-
"line":
|
|
6818
|
-
"column":
|
|
6819
|
-
"index":
|
|
6943
|
+
"line": 111,
|
|
6944
|
+
"column": 3,
|
|
6945
|
+
"index": 3153
|
|
6820
6946
|
}
|
|
6821
6947
|
},
|
|
6822
|
-
"filepath": "src/components/date_picker/super_date_picker/
|
|
6948
|
+
"filepath": "src/components/date_picker/super_date_picker/date_popover/date_popover_button.tsx"
|
|
6823
6949
|
},
|
|
6824
6950
|
{
|
|
6825
|
-
"token": "
|
|
6826
|
-
"defString": "
|
|
6951
|
+
"token": "euiDatePopoverButton.outdatedTitle",
|
|
6952
|
+
"defString": "Update needed: {title}",
|
|
6827
6953
|
"highlighting": "string",
|
|
6828
6954
|
"loc": {
|
|
6829
6955
|
"start": {
|
|
6830
|
-
"line":
|
|
6831
|
-
"column":
|
|
6832
|
-
"index":
|
|
6956
|
+
"line": 112,
|
|
6957
|
+
"column": 24,
|
|
6958
|
+
"index": 3179
|
|
6833
6959
|
},
|
|
6834
6960
|
"end": {
|
|
6835
|
-
"line":
|
|
6836
|
-
"column":
|
|
6837
|
-
"index":
|
|
6961
|
+
"line": 116,
|
|
6962
|
+
"column": 3,
|
|
6963
|
+
"index": 3280
|
|
6838
6964
|
}
|
|
6839
6965
|
},
|
|
6840
|
-
"filepath": "src/components/date_picker/super_date_picker/
|
|
6966
|
+
"filepath": "src/components/date_picker/super_date_picker/date_popover/date_popover_button.tsx"
|
|
6841
6967
|
},
|
|
6842
6968
|
{
|
|
6843
|
-
"token": "
|
|
6844
|
-
"defString": "
|
|
6969
|
+
"token": "euiAbsoluteTab.dateFormatButtonLabel",
|
|
6970
|
+
"defString": "Parse date",
|
|
6845
6971
|
"highlighting": "string",
|
|
6846
6972
|
"loc": {
|
|
6847
6973
|
"start": {
|
|
6848
|
-
"line":
|
|
6849
|
-
"column":
|
|
6850
|
-
"index":
|
|
6974
|
+
"line": 94,
|
|
6975
|
+
"column": 28,
|
|
6976
|
+
"index": 2803
|
|
6851
6977
|
},
|
|
6852
6978
|
"end": {
|
|
6853
|
-
"line":
|
|
6854
|
-
"column":
|
|
6855
|
-
"index":
|
|
6979
|
+
"line": 97,
|
|
6980
|
+
"column": 3,
|
|
6981
|
+
"index": 2879
|
|
6856
6982
|
}
|
|
6857
6983
|
},
|
|
6858
|
-
"filepath": "src/components/date_picker/super_date_picker/
|
|
6984
|
+
"filepath": "src/components/date_picker/super_date_picker/date_popover/absolute_tab.tsx"
|
|
6859
6985
|
},
|
|
6860
6986
|
{
|
|
6861
|
-
"token": "
|
|
6862
|
-
"defString": "
|
|
6987
|
+
"token": "euiAbsoluteTab.dateFormatError",
|
|
6988
|
+
"defString": "Allowed formats: {dateFormat}, ISO 8601, RFC 2822, or Unix timestamp.",
|
|
6863
6989
|
"highlighting": "string",
|
|
6864
6990
|
"loc": {
|
|
6865
6991
|
"start": {
|
|
6866
|
-
"line":
|
|
6867
|
-
"column":
|
|
6868
|
-
"index":
|
|
6992
|
+
"line": 98,
|
|
6993
|
+
"column": 26,
|
|
6994
|
+
"index": 2907
|
|
6869
6995
|
},
|
|
6870
6996
|
"end": {
|
|
6871
|
-
"line":
|
|
6872
|
-
"column":
|
|
6873
|
-
"index":
|
|
6997
|
+
"line": 102,
|
|
6998
|
+
"column": 3,
|
|
6999
|
+
"index": 3089
|
|
6874
7000
|
}
|
|
6875
7001
|
},
|
|
6876
|
-
"filepath": "src/components/date_picker/super_date_picker/
|
|
7002
|
+
"filepath": "src/components/date_picker/super_date_picker/date_popover/absolute_tab.tsx"
|
|
6877
7003
|
},
|
|
6878
7004
|
{
|
|
6879
7005
|
"token": "euiDataGridHeaderCell.sortedByAscendingSingle",
|
|
@@ -6989,14 +7115,14 @@
|
|
|
6989
7115
|
"highlighting": "string",
|
|
6990
7116
|
"loc": {
|
|
6991
7117
|
"start": {
|
|
6992
|
-
"line":
|
|
7118
|
+
"line": 116,
|
|
6993
7119
|
"column": 35,
|
|
6994
|
-
"index":
|
|
7120
|
+
"index": 3324
|
|
6995
7121
|
},
|
|
6996
7122
|
"end": {
|
|
6997
|
-
"line":
|
|
7123
|
+
"line": 120,
|
|
6998
7124
|
"column": 5,
|
|
6999
|
-
"index":
|
|
7125
|
+
"index": 3466
|
|
7000
7126
|
}
|
|
7001
7127
|
},
|
|
7002
7128
|
"filepath": "src/components/datagrid/body/header/column_actions.tsx"
|
|
@@ -7007,14 +7133,14 @@
|
|
|
7007
7133
|
"highlighting": "string",
|
|
7008
7134
|
"loc": {
|
|
7009
7135
|
"start": {
|
|
7010
|
-
"line":
|
|
7136
|
+
"line": 121,
|
|
7011
7137
|
"column": 40,
|
|
7012
|
-
"index":
|
|
7138
|
+
"index": 3508
|
|
7013
7139
|
},
|
|
7014
7140
|
"end": {
|
|
7015
|
-
"line":
|
|
7141
|
+
"line": 124,
|
|
7016
7142
|
"column": 5,
|
|
7017
|
-
"index":
|
|
7143
|
+
"index": 3642
|
|
7018
7144
|
}
|
|
7019
7145
|
},
|
|
7020
7146
|
"filepath": "src/components/datagrid/body/header/column_actions.tsx"
|
|
@@ -7025,14 +7151,14 @@
|
|
|
7025
7151
|
"highlighting": "string",
|
|
7026
7152
|
"loc": {
|
|
7027
7153
|
"start": {
|
|
7028
|
-
"line":
|
|
7154
|
+
"line": 285,
|
|
7029
7155
|
"column": 6,
|
|
7030
|
-
"index":
|
|
7156
|
+
"index": 8162
|
|
7031
7157
|
},
|
|
7032
7158
|
"end": {
|
|
7033
|
-
"line":
|
|
7159
|
+
"line": 288,
|
|
7034
7160
|
"column": 8,
|
|
7035
|
-
"index":
|
|
7161
|
+
"index": 8355
|
|
7036
7162
|
}
|
|
7037
7163
|
},
|
|
7038
7164
|
"filepath": "src/components/datagrid/body/header/column_actions.tsx"
|
|
@@ -7043,14 +7169,14 @@
|
|
|
7043
7169
|
"highlighting": "string",
|
|
7044
7170
|
"loc": {
|
|
7045
7171
|
"start": {
|
|
7046
|
-
"line":
|
|
7172
|
+
"line": 396,
|
|
7047
7173
|
"column": 6,
|
|
7048
|
-
"index":
|
|
7174
|
+
"index": 10943
|
|
7049
7175
|
},
|
|
7050
7176
|
"end": {
|
|
7051
|
-
"line":
|
|
7177
|
+
"line": 396,
|
|
7052
7178
|
"column": 75,
|
|
7053
|
-
"index":
|
|
7179
|
+
"index": 11012
|
|
7054
7180
|
}
|
|
7055
7181
|
},
|
|
7056
7182
|
"filepath": "src/components/datagrid/body/header/column_actions.tsx"
|
|
@@ -7061,14 +7187,14 @@
|
|
|
7061
7187
|
"highlighting": "string",
|
|
7062
7188
|
"loc": {
|
|
7063
7189
|
"start": {
|
|
7064
|
-
"line":
|
|
7190
|
+
"line": 461,
|
|
7065
7191
|
"column": 13,
|
|
7066
|
-
"index":
|
|
7192
|
+
"index": 12717
|
|
7067
7193
|
},
|
|
7068
7194
|
"end": {
|
|
7069
|
-
"line":
|
|
7195
|
+
"line": 461,
|
|
7070
7196
|
"column": 78,
|
|
7071
|
-
"index":
|
|
7197
|
+
"index": 12782
|
|
7072
7198
|
}
|
|
7073
7199
|
},
|
|
7074
7200
|
"filepath": "src/components/datagrid/body/header/column_actions.tsx"
|
|
@@ -7079,14 +7205,14 @@
|
|
|
7079
7205
|
"highlighting": "string",
|
|
7080
7206
|
"loc": {
|
|
7081
7207
|
"start": {
|
|
7082
|
-
"line":
|
|
7208
|
+
"line": 483,
|
|
7083
7209
|
"column": 8,
|
|
7084
|
-
"index":
|
|
7210
|
+
"index": 13370
|
|
7085
7211
|
},
|
|
7086
7212
|
"end": {
|
|
7087
|
-
"line":
|
|
7213
|
+
"line": 483,
|
|
7088
7214
|
"column": 75,
|
|
7089
|
-
"index":
|
|
7215
|
+
"index": 13437
|
|
7090
7216
|
}
|
|
7091
7217
|
},
|
|
7092
7218
|
"filepath": "src/components/datagrid/body/header/column_actions.tsx"
|
|
@@ -7097,14 +7223,14 @@
|
|
|
7097
7223
|
"highlighting": "string",
|
|
7098
7224
|
"loc": {
|
|
7099
7225
|
"start": {
|
|
7100
|
-
"line":
|
|
7226
|
+
"line": 567,
|
|
7101
7227
|
"column": 8,
|
|
7102
|
-
"index":
|
|
7228
|
+
"index": 15596
|
|
7103
7229
|
},
|
|
7104
7230
|
"end": {
|
|
7105
|
-
"line":
|
|
7231
|
+
"line": 571,
|
|
7106
7232
|
"column": 10,
|
|
7107
|
-
"index":
|
|
7233
|
+
"index": 15740
|
|
7108
7234
|
}
|
|
7109
7235
|
},
|
|
7110
7236
|
"filepath": "src/components/datagrid/body/header/column_actions.tsx"
|
|
@@ -7115,14 +7241,14 @@
|
|
|
7115
7241
|
"highlighting": "string",
|
|
7116
7242
|
"loc": {
|
|
7117
7243
|
"start": {
|
|
7118
|
-
"line":
|
|
7244
|
+
"line": 573,
|
|
7119
7245
|
"column": 8,
|
|
7120
|
-
"index":
|
|
7246
|
+
"index": 15761
|
|
7121
7247
|
},
|
|
7122
7248
|
"end": {
|
|
7123
|
-
"line":
|
|
7249
|
+
"line": 577,
|
|
7124
7250
|
"column": 10,
|
|
7125
|
-
"index":
|
|
7251
|
+
"index": 15901
|
|
7126
7252
|
}
|
|
7127
7253
|
},
|
|
7128
7254
|
"filepath": "src/components/datagrid/body/header/column_actions.tsx"
|
|
@@ -7133,14 +7259,14 @@
|
|
|
7133
7259
|
"highlighting": "string",
|
|
7134
7260
|
"loc": {
|
|
7135
7261
|
"start": {
|
|
7136
|
-
"line":
|
|
7262
|
+
"line": 603,
|
|
7137
7263
|
"column": 8,
|
|
7138
|
-
"index":
|
|
7264
|
+
"index": 16549
|
|
7139
7265
|
},
|
|
7140
7266
|
"end": {
|
|
7141
|
-
"line":
|
|
7267
|
+
"line": 607,
|
|
7142
7268
|
"column": 10,
|
|
7143
|
-
"index":
|
|
7269
|
+
"index": 16693
|
|
7144
7270
|
}
|
|
7145
7271
|
},
|
|
7146
7272
|
"filepath": "src/components/datagrid/body/header/column_actions.tsx"
|
|
@@ -7151,14 +7277,14 @@
|
|
|
7151
7277
|
"highlighting": "string",
|
|
7152
7278
|
"loc": {
|
|
7153
7279
|
"start": {
|
|
7154
|
-
"line":
|
|
7280
|
+
"line": 609,
|
|
7155
7281
|
"column": 8,
|
|
7156
|
-
"index":
|
|
7282
|
+
"index": 16714
|
|
7157
7283
|
},
|
|
7158
7284
|
"end": {
|
|
7159
|
-
"line":
|
|
7285
|
+
"line": 613,
|
|
7160
7286
|
"column": 10,
|
|
7161
|
-
"index":
|
|
7287
|
+
"index": 16854
|
|
7162
7288
|
}
|
|
7163
7289
|
},
|
|
7164
7290
|
"filepath": "src/components/datagrid/body/header/column_actions.tsx"
|