@gitlab/ui 132.0.1 → 132.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/charts.js +13 -0
- package/dist/components/base/accordion/accordion.js +69 -0
- package/dist/components/base/accordion/accordion_item.js +160 -0
- package/dist/components/base/accordion/constants.js +3 -0
- package/dist/components/base/alert/alert.js +263 -0
- package/dist/components/base/animated_icon/animated_chevron_down_up_icon.js +45 -0
- package/dist/components/base/animated_icon/animated_chevron_lg_down_up_icon.js +45 -0
- package/dist/components/base/animated_icon/animated_chevron_lg_right_down_icon.js +45 -0
- package/dist/components/base/animated_icon/animated_chevron_right_down_icon.js +45 -0
- package/dist/components/base/animated_icon/animated_duo_chat_icon.js +45 -0
- package/dist/components/base/animated_icon/animated_loader_icon.js +45 -0
- package/dist/components/base/animated_icon/animated_notifications_icon.js +45 -0
- package/dist/components/base/animated_icon/animated_sidebar_icon.js +45 -0
- package/dist/components/base/animated_icon/animated_smile_icon.js +45 -0
- package/dist/components/base/animated_icon/animated_sort_icon.js +45 -0
- package/dist/components/base/animated_icon/animated_star_icon.js +45 -0
- package/dist/components/base/animated_icon/animated_todo_icon.js +45 -0
- package/dist/components/base/animated_icon/animated_upload_icon.js +45 -0
- package/dist/components/base/animated_icon/base_animated_icon.js +77 -0
- package/dist/components/base/attribute_list/attribute_list.js +100 -0
- package/dist/components/base/avatar/avatar.js +175 -0
- package/dist/components/base/avatar/utils.js +17 -0
- package/dist/components/base/avatar_labeled/avatar_labeled.js +198 -0
- package/dist/components/base/avatar_link/avatar_link.js +47 -0
- package/dist/components/base/avatars_inline/avatars_inline.js +139 -0
- package/dist/components/base/badge/badge.js +197 -0
- package/dist/components/base/banner/banner.js +149 -0
- package/dist/components/base/breadcrumb/breadcrumb.js +282 -0
- package/dist/components/base/breadcrumb/breadcrumb_item.js +96 -0
- package/dist/components/base/broadcast_message/broadcast_message.js +113 -0
- package/dist/components/base/broadcast_message/constants.js +5 -0
- package/dist/components/base/button/button.js +419 -0
- package/dist/components/base/button_group/button_group.js +53 -0
- package/dist/components/base/card/card.js +69 -0
- package/dist/components/base/collapse/collapse.js +163 -0
- package/dist/components/base/color_mode_toggle/color_mode_toggle.js +92 -0
- package/dist/components/base/datepicker/datepicker.js +475 -0
- package/dist/components/base/daterange_picker/daterange_picker.js +394 -0
- package/dist/components/base/drawer/drawer.js +156 -0
- package/dist/components/base/dropdown/dropdown.js +330 -0
- package/dist/components/base/dropdown/dropdown_divider.js +48 -0
- package/dist/components/base/dropdown/dropdown_form.js +48 -0
- package/dist/components/base/dropdown/dropdown_item.js +175 -0
- package/dist/components/base/dropdown/dropdown_section_header.js +48 -0
- package/dist/components/base/dropdown/dropdown_text.js +48 -0
- package/dist/components/base/filtered_search/common_story_options.js +14 -0
- package/dist/components/base/filtered_search/filtered_search.js +428 -0
- package/dist/components/base/filtered_search/filtered_search_suggestion.js +95 -0
- package/dist/components/base/filtered_search/filtered_search_suggestion_list.js +139 -0
- package/dist/components/base/filtered_search/filtered_search_term.js +217 -0
- package/dist/components/base/filtered_search/filtered_search_token.js +383 -0
- package/dist/components/base/filtered_search/filtered_search_token_segment.js +444 -0
- package/dist/components/base/filtered_search/filtered_search_utils.js +241 -0
- package/dist/components/base/form/form.js +43 -0
- package/dist/components/base/form/form_character_count/form_character_count.js +107 -0
- package/dist/components/base/form/form_checkbox/form_checkbox.js +342 -0
- package/dist/components/base/form/form_checkbox/form_checkbox_group.js +188 -0
- package/dist/components/base/form/form_combobox/constants.js +55 -0
- package/dist/components/base/form/form_combobox/form_combobox.js +239 -0
- package/dist/components/base/form/form_date/form_date.js +143 -0
- package/dist/components/base/form/form_fields/form_field_validator.js +93 -0
- package/dist/components/base/form/form_fields/form_fields.js +289 -0
- package/dist/components/base/form/form_fields/form_fields_loop.js +75 -0
- package/dist/components/base/form/form_fields/mappers.js +13 -0
- package/dist/components/base/form/form_fields/validators.js +48 -0
- package/dist/components/base/form/form_group/form_group.js +119 -0
- package/dist/components/base/form/form_input/form_input.js +695 -0
- package/dist/components/base/form/form_input_group/form_input_group.js +120 -0
- package/dist/components/base/form/form_input_group/form_input_group_mixin.js +41 -0
- package/dist/components/base/form/form_radio/form_radio.js +259 -0
- package/dist/components/base/form/form_radio_group/form_radio_group.js +189 -0
- package/dist/components/base/form/form_select/constants.js +12 -0
- package/dist/components/base/form/form_select/form_select.js +96 -0
- package/dist/components/base/form/form_textarea/form_textarea.js +166 -0
- package/dist/components/base/form/input_group_text/input_group_text.js +43 -0
- package/dist/components/base/icon/icon.js +113 -0
- package/dist/components/base/illustration/illustration.js +80 -0
- package/dist/components/base/infinite_scroll/infinite_scroll.js +196 -0
- package/dist/components/base/keyset_pagination/keyset_pagination.js +152 -0
- package/dist/components/base/label/label.js +174 -0
- package/dist/components/base/link/link.js +330 -0
- package/dist/components/base/loading_icon/loading_icon.js +120 -0
- package/dist/components/base/markdown/markdown.js +50 -0
- package/dist/components/base/modal/modal.js +259 -0
- package/dist/components/base/new_dropdowns/base_dropdown/base_dropdown.js +716 -0
- package/dist/components/base/new_dropdowns/base_dropdown/constants.js +5 -0
- package/dist/components/base/new_dropdowns/base_dropdown/dropdown_container.js +32 -0
- package/dist/components/base/new_dropdowns/constants.js +24 -0
- package/dist/components/base/new_dropdowns/disclosure/constants.js +8 -0
- package/dist/components/base/new_dropdowns/disclosure/disclosure_dropdown.js +400 -0
- package/dist/components/base/new_dropdowns/disclosure/disclosure_dropdown_group.js +112 -0
- package/dist/components/base/new_dropdowns/disclosure/disclosure_dropdown_item.js +196 -0
- package/dist/components/base/new_dropdowns/disclosure/mock_data.js +168 -0
- package/dist/components/base/new_dropdowns/disclosure/utils.js +84 -0
- package/dist/components/base/new_dropdowns/listbox/listbox.js +997 -0
- package/dist/components/base/new_dropdowns/listbox/listbox_group.js +58 -0
- package/dist/components/base/new_dropdowns/listbox/listbox_item.js +112 -0
- package/dist/components/base/new_dropdowns/listbox/listbox_search_input.js +94 -0
- package/dist/components/base/new_dropdowns/listbox/mock_data.js +131 -0
- package/dist/components/base/new_dropdowns/listbox/utils.js +33 -0
- package/dist/components/base/pagination/pagination.js +397 -0
- package/dist/components/base/path/data.js +34 -0
- package/dist/components/base/path/path.js +177 -0
- package/dist/components/base/popover/popover.js +142 -0
- package/dist/components/base/progress_bar/progress_bar.js +117 -0
- package/dist/components/base/search_box_by_click/search_box_by_click.js +245 -0
- package/dist/components/base/search_box_by_type/search_box_by_type.js +187 -0
- package/dist/components/base/segmented_control/segmented_control.js +73 -0
- package/dist/components/base/skeleton_loader/skeleton_loader.js +232 -0
- package/dist/components/base/sorting/sorting.js +180 -0
- package/dist/components/base/table/constants.js +5 -0
- package/dist/components/base/table/table.js +187 -0
- package/dist/components/base/table_lite/table_lite.js +80 -0
- package/dist/components/base/tabs/constants.js +3 -0
- package/dist/components/base/tabs/tab/tab.js +113 -0
- package/dist/components/base/tabs/tabs/scrollable_tabs.js +162 -0
- package/dist/components/base/tabs/tabs/tabs.js +223 -0
- package/dist/components/base/toast/index.js +66 -0
- package/dist/components/base/toast/toast.js +125 -0
- package/dist/components/base/toast/toaster.js +87 -0
- package/dist/components/base/toggle/toggle.js +178 -0
- package/dist/components/base/token/token.js +97 -0
- package/dist/components/base/token_selector/helpers.js +5 -0
- package/dist/components/base/token_selector/token_container.js +160 -0
- package/dist/components/base/token_selector/token_selector.js +454 -0
- package/dist/components/base/token_selector/token_selector_dropdown.js +223 -0
- package/dist/components/base/tooltip/tooltip.js +54 -0
- package/dist/components/charts/area/area.js +329 -0
- package/dist/components/charts/bar/bar.js +207 -0
- package/dist/components/charts/chart/chart.js +215 -0
- package/dist/components/charts/column/column.js +221 -0
- package/dist/components/charts/discrete_scatter/discrete_scatter.js +199 -0
- package/dist/components/charts/gauge/gauge.js +205 -0
- package/dist/components/charts/heatmap/heatmap.js +299 -0
- package/dist/components/charts/heatmap/index.js +2 -0
- package/dist/components/charts/legend/legend.js +245 -0
- package/dist/components/charts/line/line.js +340 -0
- package/dist/components/charts/series_label/series_label.js +101 -0
- package/dist/components/charts/shared/tooltip/tooltip.js +369 -0
- package/dist/components/charts/shared/tooltip/tooltip_default_format/tooltip_default_format.js +53 -0
- package/dist/components/charts/single_stat/single_stat.js +164 -0
- package/dist/components/charts/sparkline/sparkline.js +299 -0
- package/dist/components/charts/stacked_column/stacked_column.js +380 -0
- package/dist/components/dashboards/dashboard_layout/dashboard_layout.js +125 -0
- package/dist/components/dashboards/dashboard_layout/grid_layout/grid_layout.js +326 -0
- package/dist/components/dashboards/dashboard_layout/validators.js +14 -0
- package/dist/components/dashboards/dashboard_panel/dashboard_panel.js +236 -0
- package/dist/components/dashboards/mock_data.js +49 -0
- package/dist/components/experimental/experiment_badge/constants.js +4 -0
- package/dist/components/experimental/experiment_badge/experiment_badge.js +102 -0
- package/dist/components/extended/multi_step_form_template/multi_step_form_template.js +87 -0
- package/dist/components/index.js +107 -0
- package/dist/components/mixins/button_mixin.js +11 -0
- package/dist/components/mixins/safe_link_mixin.js +30 -0
- package/dist/components/mixins/tooltip_mixin.js +21 -0
- package/dist/components/regions/dashboard_skeleton/dashboard_skeleton.js +53 -0
- package/dist/components/regions/empty_state/empty_state.js +181 -0
- package/dist/components/shared_components/clear_icon_button/clear_icon_button.js +64 -0
- package/dist/components/shared_components/clipboard_button/clipboard_button.js +100 -0
- package/dist/components/shared_components/close_button/close_button.js +55 -0
- package/dist/components/utilities/animated_number/animated_number.js +131 -0
- package/dist/components/utilities/friendly_wrap/friendly_wrap.js +75 -0
- package/dist/components/utilities/intersection_observer/intersection_observer.js +88 -0
- package/dist/components/utilities/intersperse/intersperse.js +104 -0
- package/dist/components/utilities/sprintf/sprintf.js +171 -0
- package/dist/components/utilities/truncate/constants.js +8 -0
- package/dist/components/utilities/truncate/truncate.js +154 -0
- package/dist/components/utilities/truncate_text/constants.js +7 -0
- package/dist/components/utilities/truncate_text/truncate_text.js +146 -0
- package/dist/config.js +53 -0
- package/dist/directives/hover_load/hover_load.js +45 -0
- package/dist/directives/index.js +8 -0
- package/dist/directives/modal.js +1 -0
- package/dist/directives/outside/outside.js +149 -0
- package/dist/directives/resize_observer/resize_observer.js +58 -0
- package/dist/directives/safe_html/constants.js +6 -0
- package/dist/directives/safe_html/safe_html.js +39 -0
- package/dist/directives/safe_link/mock_data.js +10 -0
- package/dist/directives/safe_link/safe_link.js +67 -0
- package/dist/directives/tooltip/container.js +7 -0
- package/dist/directives/tooltip/tooltip.js +18 -0
- package/dist/index.css +7 -0
- package/dist/index.css.map +1 -0
- package/dist/index.js +2 -0
- package/dist/tailwind.css +2 -0
- package/dist/tailwind.css.map +1 -0
- package/dist/tokens/build/js/tokens.dark.js +1410 -0
- package/dist/tokens/build/js/tokens.js +1410 -0
- package/dist/tokens/common_story_options.js +29 -0
- package/dist/tokens/tokens_story.js +76 -0
- package/dist/utils/breakpoints.js +20 -0
- package/dist/utils/charts/config.js +616 -0
- package/dist/utils/charts/constants.js +69 -0
- package/dist/utils/charts/mock_data.js +191 -0
- package/dist/utils/charts/story_config.js +24 -0
- package/dist/utils/charts/theme.js +200 -0
- package/dist/utils/charts/utils.js +54 -0
- package/dist/utils/constants.js +331 -0
- package/dist/utils/data_utils.js +19 -0
- package/dist/utils/datetime_utility.js +61 -0
- package/dist/utils/equality_utils.js +84 -0
- package/dist/utils/form_options_utils.js +46 -0
- package/dist/utils/i18n.js +65 -0
- package/dist/utils/is_slot_empty.js +34 -0
- package/dist/utils/number_utils.js +132 -0
- package/dist/utils/play_utils.js +11 -0
- package/dist/utils/set_utils.js +25 -0
- package/dist/utils/stories_constants.js +29 -0
- package/dist/utils/stories_utils.js +62 -0
- package/dist/utils/story_decorators/container.js +19 -0
- package/dist/utils/string_utils.js +69 -0
- package/dist/utils/svgs/svg_paths.js +7 -0
- package/dist/utils/test_utils.js +33 -0
- package/dist/utils/use_fake_date.js +29 -0
- package/dist/utils/use_mock_intersection_observer.js +105 -0
- package/dist/utils/utils.js +205 -0
- package/dist/utils/vue_utils.js +57 -0
- package/dist/utils.js +5 -0
- package/dist/vendor/bootstrap-vue/src/bv-config.js +8 -0
- package/dist/vendor/bootstrap-vue/src/components/button/button-close.js +81 -0
- package/dist/vendor/bootstrap-vue/src/components/button/button.js +204 -0
- package/dist/vendor/bootstrap-vue/src/components/button/index.js +2 -0
- package/dist/vendor/bootstrap-vue/src/components/dropdown/dropdown-divider.js +41 -0
- package/dist/vendor/bootstrap-vue/src/components/dropdown/dropdown-form.js +52 -0
- package/dist/vendor/bootstrap-vue/src/components/dropdown/dropdown-group.js +75 -0
- package/dist/vendor/bootstrap-vue/src/components/dropdown/dropdown-header.js +52 -0
- package/dist/vendor/bootstrap-vue/src/components/dropdown/dropdown-item-button.js +85 -0
- package/dist/vendor/bootstrap-vue/src/components/dropdown/dropdown-item.js +97 -0
- package/dist/vendor/bootstrap-vue/src/components/dropdown/dropdown-text.js +60 -0
- package/dist/vendor/bootstrap-vue/src/components/dropdown/dropdown.js +270 -0
- package/dist/vendor/bootstrap-vue/src/components/dropdown/index.js +8 -0
- package/dist/vendor/bootstrap-vue/src/components/form/form-invalid-feedback.js +53 -0
- package/dist/vendor/bootstrap-vue/src/components/form/form-text.js +55 -0
- package/dist/vendor/bootstrap-vue/src/components/form/form-valid-feedback.js +53 -0
- package/dist/vendor/bootstrap-vue/src/components/form/form.js +56 -0
- package/dist/vendor/bootstrap-vue/src/components/form/index.js +4 -0
- package/dist/vendor/bootstrap-vue/src/components/form-group/form-group.js +347 -0
- package/dist/vendor/bootstrap-vue/src/components/form-group/index.js +1 -0
- package/dist/vendor/bootstrap-vue/src/components/form-select/form-select-option-group.js +54 -0
- package/dist/vendor/bootstrap-vue/src/components/form-select/form-select-option.js +41 -0
- package/dist/vendor/bootstrap-vue/src/components/form-select/form-select.js +143 -0
- package/dist/vendor/bootstrap-vue/src/components/form-select/helpers/mixin-options.js +56 -0
- package/dist/vendor/bootstrap-vue/src/components/form-select/index.js +3 -0
- package/dist/vendor/bootstrap-vue/src/components/form-textarea/form-textarea.js +217 -0
- package/dist/vendor/bootstrap-vue/src/components/form-textarea/index.js +1 -0
- package/dist/vendor/bootstrap-vue/src/components/layout/col.js +155 -0
- package/dist/vendor/bootstrap-vue/src/components/layout/form-row.js +34 -0
- package/dist/vendor/bootstrap-vue/src/components/layout/index.js +2 -0
- package/dist/vendor/bootstrap-vue/src/components/link/index.js +1 -0
- package/dist/vendor/bootstrap-vue/src/components/link/link.js +283 -0
- package/dist/vendor/bootstrap-vue/src/components/modal/helpers/bv-modal-event.class.js +21 -0
- package/dist/vendor/bootstrap-vue/src/components/modal/helpers/modal-manager.js +212 -0
- package/dist/vendor/bootstrap-vue/src/components/modal/index.js +1 -0
- package/dist/vendor/bootstrap-vue/src/components/modal/modal.js +1059 -0
- package/dist/vendor/bootstrap-vue/src/components/popover/helpers/bv-popover-template.js +55 -0
- package/dist/vendor/bootstrap-vue/src/components/popover/helpers/bv-popover.js +31 -0
- package/dist/vendor/bootstrap-vue/src/components/popover/index.js +1 -0
- package/dist/vendor/bootstrap-vue/src/components/popover/popover.js +49 -0
- package/dist/vendor/bootstrap-vue/src/components/table/helpers/constants.js +22 -0
- package/dist/vendor/bootstrap-vue/src/components/table/helpers/default-sort-compare.js +64 -0
- package/dist/vendor/bootstrap-vue/src/components/table/helpers/filter-event.js +40 -0
- package/dist/vendor/bootstrap-vue/src/components/table/helpers/mixin-bottom-row.js +43 -0
- package/dist/vendor/bootstrap-vue/src/components/table/helpers/mixin-busy.js +83 -0
- package/dist/vendor/bootstrap-vue/src/components/table/helpers/mixin-caption.js +50 -0
- package/dist/vendor/bootstrap-vue/src/components/table/helpers/mixin-colgroup.js +32 -0
- package/dist/vendor/bootstrap-vue/src/components/table/helpers/mixin-empty.js +82 -0
- package/dist/vendor/bootstrap-vue/src/components/table/helpers/mixin-filtering.js +292 -0
- package/dist/vendor/bootstrap-vue/src/components/table/helpers/mixin-items.js +154 -0
- package/dist/vendor/bootstrap-vue/src/components/table/helpers/mixin-pagination.js +44 -0
- package/dist/vendor/bootstrap-vue/src/components/table/helpers/mixin-provider.js +191 -0
- package/dist/vendor/bootstrap-vue/src/components/table/helpers/mixin-selectable.js +213 -0
- package/dist/vendor/bootstrap-vue/src/components/table/helpers/mixin-sorting.js +274 -0
- package/dist/vendor/bootstrap-vue/src/components/table/helpers/mixin-stacked.js +39 -0
- package/dist/vendor/bootstrap-vue/src/components/table/helpers/mixin-table-renderer.js +186 -0
- package/dist/vendor/bootstrap-vue/src/components/table/helpers/mixin-tbody-row.js +338 -0
- package/dist/vendor/bootstrap-vue/src/components/table/helpers/mixin-tbody.js +243 -0
- package/dist/vendor/bootstrap-vue/src/components/table/helpers/mixin-tfoot.js +50 -0
- package/dist/vendor/bootstrap-vue/src/components/table/helpers/mixin-thead.js +218 -0
- package/dist/vendor/bootstrap-vue/src/components/table/helpers/mixin-top-row.js +42 -0
- package/dist/vendor/bootstrap-vue/src/components/table/helpers/normalize-fields.js +86 -0
- package/dist/vendor/bootstrap-vue/src/components/table/helpers/sanitize-row.js +31 -0
- package/dist/vendor/bootstrap-vue/src/components/table/helpers/stringify-record-values.js +11 -0
- package/dist/vendor/bootstrap-vue/src/components/table/helpers/text-selection-active.js +14 -0
- package/dist/vendor/bootstrap-vue/src/components/table/index.js +9 -0
- package/dist/vendor/bootstrap-vue/src/components/table/table-lite.js +51 -0
- package/dist/vendor/bootstrap-vue/src/components/table/table-simple.js +44 -0
- package/dist/vendor/bootstrap-vue/src/components/table/table.js +67 -0
- package/dist/vendor/bootstrap-vue/src/components/table/tbody.js +116 -0
- package/dist/vendor/bootstrap-vue/src/components/table/td.js +204 -0
- package/dist/vendor/bootstrap-vue/src/components/table/tfoot.js +96 -0
- package/dist/vendor/bootstrap-vue/src/components/table/th.js +26 -0
- package/dist/vendor/bootstrap-vue/src/components/table/thead.js +99 -0
- package/dist/vendor/bootstrap-vue/src/components/table/tr.js +121 -0
- package/dist/vendor/bootstrap-vue/src/components/tabs/index.js +2 -0
- package/dist/vendor/bootstrap-vue/src/components/tabs/tab.js +238 -0
- package/dist/vendor/bootstrap-vue/src/components/tabs/tabs.js +690 -0
- package/dist/vendor/bootstrap-vue/src/components/tooltip/helpers/bv-popper.js +251 -0
- package/dist/vendor/bootstrap-vue/src/components/tooltip/helpers/bv-tooltip-template.js +118 -0
- package/dist/vendor/bootstrap-vue/src/components/tooltip/helpers/bv-tooltip.js +932 -0
- package/dist/vendor/bootstrap-vue/src/components/tooltip/index.js +1 -0
- package/dist/vendor/bootstrap-vue/src/components/tooltip/tooltip.js +337 -0
- package/dist/vendor/bootstrap-vue/src/components/transition/bv-transition.js +103 -0
- package/dist/vendor/bootstrap-vue/src/components/transporter/transporter.js +205 -0
- package/dist/vendor/bootstrap-vue/src/constants/components.js +55 -0
- package/dist/vendor/bootstrap-vue/src/constants/config.js +11 -0
- package/dist/vendor/bootstrap-vue/src/constants/env.js +36 -0
- package/dist/vendor/bootstrap-vue/src/constants/events.js +56 -0
- package/dist/vendor/bootstrap-vue/src/constants/key-codes.js +11 -0
- package/dist/vendor/bootstrap-vue/src/constants/popper.js +10 -0
- package/dist/vendor/bootstrap-vue/src/constants/props.js +24 -0
- package/dist/vendor/bootstrap-vue/src/constants/regex.js +35 -0
- package/dist/vendor/bootstrap-vue/src/constants/safe-types.js +15 -0
- package/dist/vendor/bootstrap-vue/src/constants/slots.js +36 -0
- package/dist/vendor/bootstrap-vue/src/directives/modal/index.js +1 -0
- package/dist/vendor/bootstrap-vue/src/directives/modal/modal.js +112 -0
- package/dist/vendor/bootstrap-vue/src/directives/tooltip/index.js +1 -0
- package/dist/vendor/bootstrap-vue/src/directives/tooltip/tooltip.js +267 -0
- package/dist/vendor/bootstrap-vue/src/directives/visible/index.js +1 -0
- package/dist/vendor/bootstrap-vue/src/directives/visible/visible.js +187 -0
- package/dist/vendor/bootstrap-vue/src/mixins/attrs.js +5 -0
- package/dist/vendor/bootstrap-vue/src/mixins/click-out.js +54 -0
- package/dist/vendor/bootstrap-vue/src/mixins/dropdown.js +470 -0
- package/dist/vendor/bootstrap-vue/src/mixins/focus-in.js +46 -0
- package/dist/vendor/bootstrap-vue/src/mixins/form-control.js +73 -0
- package/dist/vendor/bootstrap-vue/src/mixins/form-custom.js +26 -0
- package/dist/vendor/bootstrap-vue/src/mixins/form-options.js +91 -0
- package/dist/vendor/bootstrap-vue/src/mixins/form-selection.js +62 -0
- package/dist/vendor/bootstrap-vue/src/mixins/form-size.js +26 -0
- package/dist/vendor/bootstrap-vue/src/mixins/form-state.js +50 -0
- package/dist/vendor/bootstrap-vue/src/mixins/form-text.js +293 -0
- package/dist/vendor/bootstrap-vue/src/mixins/form-validity.js +50 -0
- package/dist/vendor/bootstrap-vue/src/mixins/has-listener.js +29 -0
- package/dist/vendor/bootstrap-vue/src/mixins/id.js +57 -0
- package/dist/vendor/bootstrap-vue/src/mixins/listen-on-document.js +62 -0
- package/dist/vendor/bootstrap-vue/src/mixins/listen-on-root.js +120 -0
- package/dist/vendor/bootstrap-vue/src/mixins/listen-on-window.js +62 -0
- package/dist/vendor/bootstrap-vue/src/mixins/listeners.js +25 -0
- package/dist/vendor/bootstrap-vue/src/mixins/model.js +10 -0
- package/dist/vendor/bootstrap-vue/src/mixins/normalize-slot.js +30 -0
- package/dist/vendor/bootstrap-vue/src/mixins/scoped-style.js +18 -0
- package/dist/vendor/bootstrap-vue/src/mixins/use-parent.js +14 -0
- package/dist/vendor/bootstrap-vue/src/utils/array.js +27 -0
- package/dist/vendor/bootstrap-vue/src/utils/bv-event.class.js +60 -0
- package/dist/vendor/bootstrap-vue/src/utils/cache.js +60 -0
- package/dist/vendor/bootstrap-vue/src/utils/clone-deep.js +18 -0
- package/dist/vendor/bootstrap-vue/src/utils/config-set.js +86 -0
- package/dist/vendor/bootstrap-vue/src/utils/config.js +71 -0
- package/dist/vendor/bootstrap-vue/src/utils/create-new-child-component.js +133 -0
- package/dist/vendor/bootstrap-vue/src/utils/css-escape.js +70 -0
- package/dist/vendor/bootstrap-vue/src/utils/dom.js +298 -0
- package/dist/vendor/bootstrap-vue/src/utils/element-to-vue-instance-registry.js +28 -0
- package/dist/vendor/bootstrap-vue/src/utils/env.js +16 -0
- package/dist/vendor/bootstrap-vue/src/utils/events.js +78 -0
- package/dist/vendor/bootstrap-vue/src/utils/get-event-root.js +5 -0
- package/dist/vendor/bootstrap-vue/src/utils/get-instance-from-directive.js +3 -0
- package/dist/vendor/bootstrap-vue/src/utils/get-scope-id.js +9 -0
- package/dist/vendor/bootstrap-vue/src/utils/get.js +63 -0
- package/dist/vendor/bootstrap-vue/src/utils/html.js +16 -0
- package/dist/vendor/bootstrap-vue/src/utils/identity.js +3 -0
- package/dist/vendor/bootstrap-vue/src/utils/inspect.js +35 -0
- package/dist/vendor/bootstrap-vue/src/utils/locale.js +18 -0
- package/dist/vendor/bootstrap-vue/src/utils/loose-equal.js +59 -0
- package/dist/vendor/bootstrap-vue/src/utils/loose-index-of.js +13 -0
- package/dist/vendor/bootstrap-vue/src/utils/math.js +9 -0
- package/dist/vendor/bootstrap-vue/src/utils/memoize.js +14 -0
- package/dist/vendor/bootstrap-vue/src/utils/model.js +33 -0
- package/dist/vendor/bootstrap-vue/src/utils/noop.js +3 -0
- package/dist/vendor/bootstrap-vue/src/utils/normalize-slot.js +51 -0
- package/dist/vendor/bootstrap-vue/src/utils/number.js +23 -0
- package/dist/vendor/bootstrap-vue/src/utils/object.js +72 -0
- package/dist/vendor/bootstrap-vue/src/utils/observe-dom.js +76 -0
- package/dist/vendor/bootstrap-vue/src/utils/on-instance-destroy.js +22 -0
- package/dist/vendor/bootstrap-vue/src/utils/plugins.js +124 -0
- package/dist/vendor/bootstrap-vue/src/utils/props.js +67 -0
- package/dist/vendor/bootstrap-vue/src/utils/router.js +150 -0
- package/dist/vendor/bootstrap-vue/src/utils/safe-vue-instance.js +14 -0
- package/dist/vendor/bootstrap-vue/src/utils/stable-sort.js +28 -0
- package/dist/vendor/bootstrap-vue/src/utils/string.js +47 -0
- package/dist/vendor/bootstrap-vue/src/utils/stringify-object-values.js +31 -0
- package/dist/vendor/bootstrap-vue/src/utils/warn.js +45 -0
- package/dist/vendor/bootstrap-vue/src/vue.js +55 -0
- package/package.json +4 -3
- package/src/vendor/bootstrap-vue/src/components/dropdown/dropdown.js +2 -2
- package/src/vendor/bootstrap-vue/src/components/form-group/form-group.js +2 -2
- package/src/vendor/bootstrap-vue/src/components/layout/col.js +2 -2
- package/src/vendor/bootstrap-vue/src/components/modal/modal.js +2 -2
- package/src/vendor/bootstrap-vue/src/components/tabs/tabs.js +2 -2
- package/src/vendor/bootstrap-vue/src/components/tooltip/helpers/bv-tooltip.js +8 -9
- package/src/vendor/bootstrap-vue/src/mixins/listen-on-document.js +1 -2
- package/src/vendor/bootstrap-vue/src/mixins/listen-on-root.js +1 -2
- package/src/vendor/bootstrap-vue/src/mixins/listen-on-window.js +1 -2
- package/src/vendor/bootstrap-vue/src/utils/array.js +0 -1
- package/src/vendor/bootstrap-vue/src/utils/locale.js +1 -2
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
const noop = () => {};
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* A mocked provide option for components that expect to be descendants of
|
|
5
|
+
* GlFilteredSearch, to be used in their stories.
|
|
6
|
+
*/
|
|
7
|
+
const provide = () => ({
|
|
8
|
+
portalName: 'portal',
|
|
9
|
+
alignSuggestions: noop,
|
|
10
|
+
suggestionsListClass: noop,
|
|
11
|
+
termsAsTokens: () => false
|
|
12
|
+
});
|
|
13
|
+
|
|
14
|
+
export { provide };
|
|
@@ -0,0 +1,428 @@
|
|
|
1
|
+
import { isEqual, cloneDeep } from 'lodash-es';
|
|
2
|
+
import { PortalTarget } from 'portal-vue';
|
|
3
|
+
import { GlTooltipDirective } from '../../../directives/tooltip/tooltip';
|
|
4
|
+
import { logWarning } from '../../../utils/utils';
|
|
5
|
+
import GlIcon from '../icon/icon';
|
|
6
|
+
import GlSearchBoxByClick from '../search_box_by_click/search_box_by_click';
|
|
7
|
+
import GlFilteredSearchTerm from './filtered_search_term';
|
|
8
|
+
import { termTokenDefinition, isEmptyTerm, createTerm, INTENT_ACTIVATE_PREVIOUS, ensureTokenId, normalizeTokens, needDenormalization, denormalizeTokens } from './filtered_search_utils';
|
|
9
|
+
import __vue_normalize__ from 'vue-runtime-helpers/dist/normalize-component.js';
|
|
10
|
+
|
|
11
|
+
let portalUuid = 0;
|
|
12
|
+
function initialState() {
|
|
13
|
+
return [createTerm()];
|
|
14
|
+
}
|
|
15
|
+
function computeTokens(value, termsAsTokens) {
|
|
16
|
+
const resolved = value !== null && value !== void 0 && value.length ? cloneDeep(value) : initialState();
|
|
17
|
+
return needDenormalization(resolved) ? denormalizeTokens(resolved, termsAsTokens) : resolved;
|
|
18
|
+
}
|
|
19
|
+
var script = {
|
|
20
|
+
name: 'GlFilteredSearch',
|
|
21
|
+
components: {
|
|
22
|
+
GlSearchBoxByClick,
|
|
23
|
+
GlIcon,
|
|
24
|
+
PortalTarget
|
|
25
|
+
},
|
|
26
|
+
directives: {
|
|
27
|
+
GlTooltip: GlTooltipDirective
|
|
28
|
+
},
|
|
29
|
+
provide() {
|
|
30
|
+
portalUuid += 1;
|
|
31
|
+
this.portalName = `filters_portal_${portalUuid}`;
|
|
32
|
+
return {
|
|
33
|
+
portalName: this.portalName,
|
|
34
|
+
alignSuggestions: ref => this.alignSuggestions(ref),
|
|
35
|
+
// Return a function reference instead of a prop to work around vue-apollo@3 bug.
|
|
36
|
+
// TODO: This can be reverted once https://github.com/vuejs/vue-apollo/pull/1153
|
|
37
|
+
// has been merged and we consume it, or we upgrade to vue-apollo@4.
|
|
38
|
+
suggestionsListClass: () => this.suggestionsListClass,
|
|
39
|
+
termsAsTokens: () => this.termsAsTokens
|
|
40
|
+
};
|
|
41
|
+
},
|
|
42
|
+
inheritAttrs: false,
|
|
43
|
+
props: {
|
|
44
|
+
/**
|
|
45
|
+
* If provided, used as value of filtered search
|
|
46
|
+
*/
|
|
47
|
+
value: {
|
|
48
|
+
required: false,
|
|
49
|
+
type: Array,
|
|
50
|
+
default: () => []
|
|
51
|
+
},
|
|
52
|
+
/**
|
|
53
|
+
* Available tokens
|
|
54
|
+
*/
|
|
55
|
+
availableTokens: {
|
|
56
|
+
type: Array,
|
|
57
|
+
required: false,
|
|
58
|
+
default: () => [],
|
|
59
|
+
validator(value) {
|
|
60
|
+
// eslint-disable-next-line no-underscore-dangle
|
|
61
|
+
if (!value.__v_raw) {
|
|
62
|
+
// This is Vue 2
|
|
63
|
+
return true;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
// eslint-disable-next-line no-underscore-dangle
|
|
67
|
+
const isOk = Array.isArray(value) && value.every(_ref => {
|
|
68
|
+
let {
|
|
69
|
+
token
|
|
70
|
+
} = _ref;
|
|
71
|
+
return !token || token.__v_skip;
|
|
72
|
+
});
|
|
73
|
+
if (!isOk) {
|
|
74
|
+
logWarning('You are using Vue3. In Vue3 each token component passed to filtered search must be wrapped into markRaw', {
|
|
75
|
+
name: 'GlFilteredSearch'
|
|
76
|
+
});
|
|
77
|
+
}
|
|
78
|
+
return isOk;
|
|
79
|
+
}
|
|
80
|
+
},
|
|
81
|
+
/**
|
|
82
|
+
* If provided, used as history items for this component
|
|
83
|
+
*/
|
|
84
|
+
placeholder: {
|
|
85
|
+
type: String,
|
|
86
|
+
required: false,
|
|
87
|
+
default: 'Search'
|
|
88
|
+
},
|
|
89
|
+
clearButtonTitle: {
|
|
90
|
+
type: String,
|
|
91
|
+
required: false,
|
|
92
|
+
default: 'Clear'
|
|
93
|
+
},
|
|
94
|
+
historyItems: {
|
|
95
|
+
type: Array,
|
|
96
|
+
required: false,
|
|
97
|
+
default: null
|
|
98
|
+
},
|
|
99
|
+
/**
|
|
100
|
+
* Additional classes to add to the suggestion list menu. NOTE: this not reactive, and the value
|
|
101
|
+
* must be available and fixed when the component is instantiated
|
|
102
|
+
*/
|
|
103
|
+
suggestionsListClass: {
|
|
104
|
+
type: [String, Array, Object],
|
|
105
|
+
required: false,
|
|
106
|
+
default: null
|
|
107
|
+
},
|
|
108
|
+
/**
|
|
109
|
+
* Display operators' descriptions instead of their values (e.g., "is" instead of "=").
|
|
110
|
+
*/
|
|
111
|
+
showFriendlyText: {
|
|
112
|
+
type: Boolean,
|
|
113
|
+
required: false,
|
|
114
|
+
default: false
|
|
115
|
+
},
|
|
116
|
+
/**
|
|
117
|
+
* HTML attributes to add to the search button
|
|
118
|
+
*/
|
|
119
|
+
searchButtonAttributes: {
|
|
120
|
+
type: Object,
|
|
121
|
+
required: false,
|
|
122
|
+
default: () => ({})
|
|
123
|
+
},
|
|
124
|
+
/**
|
|
125
|
+
* HTML attributes to add to the search input
|
|
126
|
+
*/
|
|
127
|
+
searchInputAttributes: {
|
|
128
|
+
type: Object,
|
|
129
|
+
required: false,
|
|
130
|
+
default: () => ({})
|
|
131
|
+
},
|
|
132
|
+
viewOnly: {
|
|
133
|
+
type: Boolean,
|
|
134
|
+
required: false,
|
|
135
|
+
default: false
|
|
136
|
+
},
|
|
137
|
+
/**
|
|
138
|
+
* Render search terms as GlTokens. Ideally, this prop will be as
|
|
139
|
+
* short-lived as possible, and this behavior will become the default and
|
|
140
|
+
* only behavior.
|
|
141
|
+
*
|
|
142
|
+
* This prop is *not* reactive.
|
|
143
|
+
*
|
|
144
|
+
* See https://gitlab.com/gitlab-org/gitlab-ui/-/issues/2159.
|
|
145
|
+
*/
|
|
146
|
+
termsAsTokens: {
|
|
147
|
+
type: Boolean,
|
|
148
|
+
required: false,
|
|
149
|
+
default: false
|
|
150
|
+
},
|
|
151
|
+
/**
|
|
152
|
+
* The title of the text search option. Ignored unless termsAsTokens is enabled.
|
|
153
|
+
*/
|
|
154
|
+
searchTextOptionLabel: {
|
|
155
|
+
type: String,
|
|
156
|
+
required: false,
|
|
157
|
+
default: termTokenDefinition.title
|
|
158
|
+
},
|
|
159
|
+
/**
|
|
160
|
+
* Display search button to perform a search.
|
|
161
|
+
*
|
|
162
|
+
* Note: it is required to ensure accessibility for WCAG 2.1 3.2.2: On Input.
|
|
163
|
+
* If the search button is hidden, a separate button should be provided for the same context.
|
|
164
|
+
*/
|
|
165
|
+
showSearchButton: {
|
|
166
|
+
type: Boolean,
|
|
167
|
+
required: false,
|
|
168
|
+
default: true
|
|
169
|
+
}
|
|
170
|
+
},
|
|
171
|
+
data() {
|
|
172
|
+
return {
|
|
173
|
+
tokens: computeTokens(this.value, this.termsAsTokens),
|
|
174
|
+
activeTokenIdx: null,
|
|
175
|
+
suggestionsStyle: {},
|
|
176
|
+
intendedCursorPosition: 'end'
|
|
177
|
+
};
|
|
178
|
+
},
|
|
179
|
+
computed: {
|
|
180
|
+
activeToken() {
|
|
181
|
+
return this.tokens[this.activeTokenIdx];
|
|
182
|
+
},
|
|
183
|
+
appliedTokens() {
|
|
184
|
+
return this.tokens.filter(token => !isEmptyTerm(token));
|
|
185
|
+
},
|
|
186
|
+
lastTokenIdx() {
|
|
187
|
+
return this.tokens.length - 1;
|
|
188
|
+
},
|
|
189
|
+
isLastTokenActive() {
|
|
190
|
+
return this.activeTokenIdx === this.lastTokenIdx;
|
|
191
|
+
},
|
|
192
|
+
hasValue() {
|
|
193
|
+
return this.tokens.length > 1 || this.tokens[0].value.data !== '';
|
|
194
|
+
},
|
|
195
|
+
termPlaceholder() {
|
|
196
|
+
return this.hasValue ? null : this.placeholder;
|
|
197
|
+
},
|
|
198
|
+
currentAvailableTokens() {
|
|
199
|
+
return this.availableTokens.filter(token => {
|
|
200
|
+
if (token.disabled) {
|
|
201
|
+
return false;
|
|
202
|
+
}
|
|
203
|
+
if (token.unique) {
|
|
204
|
+
return !this.tokens.find(t => t.type === token.type);
|
|
205
|
+
}
|
|
206
|
+
return true;
|
|
207
|
+
});
|
|
208
|
+
}
|
|
209
|
+
},
|
|
210
|
+
watch: {
|
|
211
|
+
tokens: {
|
|
212
|
+
handler() {
|
|
213
|
+
if (process.env.NODE_ENV !== 'production') {
|
|
214
|
+
const invalidToken = this.tokens.find(token => !token.id);
|
|
215
|
+
if (invalidToken) {
|
|
216
|
+
throw new Error(`Token does not have an id:\n${JSON.stringify(invalidToken)}`);
|
|
217
|
+
}
|
|
218
|
+
}
|
|
219
|
+
if ((this.tokens.length === 0 || !this.isLastTokenEmpty()) && !this.viewOnly) {
|
|
220
|
+
this.tokens.push(createTerm());
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
/**
|
|
224
|
+
* Emitted when the tokens (value) changes
|
|
225
|
+
* @property {array} tokens
|
|
226
|
+
*/
|
|
227
|
+
this.$emit('input', this.tokens);
|
|
228
|
+
},
|
|
229
|
+
deep: true,
|
|
230
|
+
immediate: true
|
|
231
|
+
},
|
|
232
|
+
value: {
|
|
233
|
+
handler(newValue, oldValue) {
|
|
234
|
+
if (!isEqual(newValue, oldValue)) {
|
|
235
|
+
this.applyNewValue(newValue);
|
|
236
|
+
}
|
|
237
|
+
},
|
|
238
|
+
deep: true
|
|
239
|
+
}
|
|
240
|
+
},
|
|
241
|
+
methods: {
|
|
242
|
+
applyNewValue(newValue) {
|
|
243
|
+
this.tokens = computeTokens(newValue, this.termsAsTokens);
|
|
244
|
+
},
|
|
245
|
+
isActiveToken(idx) {
|
|
246
|
+
return this.activeTokenIdx === idx;
|
|
247
|
+
},
|
|
248
|
+
isLastToken(idx) {
|
|
249
|
+
return this.activeTokenIdx === null && idx === this.lastTokenIdx;
|
|
250
|
+
},
|
|
251
|
+
isLastTokenEmpty() {
|
|
252
|
+
return isEmptyTerm(this.tokens[this.lastTokenIdx]);
|
|
253
|
+
},
|
|
254
|
+
getTokenEntry(type) {
|
|
255
|
+
return this.availableTokens.find(t => t.type === type);
|
|
256
|
+
},
|
|
257
|
+
getTokenComponent(type) {
|
|
258
|
+
var _this$getTokenEntry;
|
|
259
|
+
return ((_this$getTokenEntry = this.getTokenEntry(type)) === null || _this$getTokenEntry === void 0 ? void 0 : _this$getTokenEntry.token) || GlFilteredSearchTerm;
|
|
260
|
+
},
|
|
261
|
+
getTokenClassList(idx) {
|
|
262
|
+
return {
|
|
263
|
+
'gl-filtered-search-item': true,
|
|
264
|
+
'gl-filtered-search-last-item': this.isLastToken(idx) && !this.viewOnly
|
|
265
|
+
};
|
|
266
|
+
},
|
|
267
|
+
activate(idx) {
|
|
268
|
+
if (!this.viewOnly) {
|
|
269
|
+
this.activeTokenIdx = idx;
|
|
270
|
+
}
|
|
271
|
+
},
|
|
272
|
+
activatePreviousToken() {
|
|
273
|
+
if (this.activeTokenIdx > 0) {
|
|
274
|
+
this.activeTokenIdx -= 1;
|
|
275
|
+
this.intendedCursorPosition = 'end';
|
|
276
|
+
}
|
|
277
|
+
},
|
|
278
|
+
activateNextToken() {
|
|
279
|
+
if (this.activeTokenIdx < this.value.length) {
|
|
280
|
+
this.activeTokenIdx += 1;
|
|
281
|
+
this.intendedCursorPosition = 'start';
|
|
282
|
+
}
|
|
283
|
+
},
|
|
284
|
+
alignSuggestions(ref) {
|
|
285
|
+
const offsetRef = ref.getBoundingClientRect().left;
|
|
286
|
+
const offsetMenu = this.$el.getBoundingClientRect().left;
|
|
287
|
+
const transform = `translateX(${Math.floor(offsetRef - offsetMenu)}px)`;
|
|
288
|
+
this.suggestionsStyle = {
|
|
289
|
+
transform
|
|
290
|
+
};
|
|
291
|
+
},
|
|
292
|
+
deactivate(token) {
|
|
293
|
+
this.intendedCursorPosition = 'end';
|
|
294
|
+
const tokenIdx = this.tokens.indexOf(token);
|
|
295
|
+
if (tokenIdx === -1 || this.activeTokenIdx !== tokenIdx) {
|
|
296
|
+
return;
|
|
297
|
+
}
|
|
298
|
+
if (!this.isLastTokenEmpty()) {
|
|
299
|
+
this.tokens.push(createTerm());
|
|
300
|
+
}
|
|
301
|
+
if (!this.isLastTokenActive && isEmptyTerm(this.activeToken)) {
|
|
302
|
+
this.tokens.splice(tokenIdx, 1);
|
|
303
|
+
}
|
|
304
|
+
this.activeTokenIdx = null;
|
|
305
|
+
},
|
|
306
|
+
destroyToken(idx) {
|
|
307
|
+
let {
|
|
308
|
+
intent
|
|
309
|
+
} = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
|
|
310
|
+
if (this.tokens.length === 1) {
|
|
311
|
+
return;
|
|
312
|
+
}
|
|
313
|
+
const [destroyedToken] = this.tokens.splice(idx, 1);
|
|
314
|
+
/**
|
|
315
|
+
* Emitted when a token is destroyed, with the token as the payload.
|
|
316
|
+
*/
|
|
317
|
+
this.$emit('token-destroy', destroyedToken);
|
|
318
|
+
|
|
319
|
+
// First, attempt to honor the user's activation intent behind the
|
|
320
|
+
// destruction of the token, if any. Otherwise, try to maintain the
|
|
321
|
+
// active state for the token that was active at the time. If that's not
|
|
322
|
+
// possible, make sure no token is active.
|
|
323
|
+
if (intent === INTENT_ACTIVATE_PREVIOUS) {
|
|
324
|
+
// If there is a previous token, activate it; else, activate the first token
|
|
325
|
+
this.activeTokenIdx = Math.max(idx - 1, 0);
|
|
326
|
+
} else if (idx < this.activeTokenIdx) {
|
|
327
|
+
// Preserve the active token's active status (it shifted down one index)
|
|
328
|
+
this.activeTokenIdx -= 1;
|
|
329
|
+
} else if (idx === this.activeTokenIdx) {
|
|
330
|
+
// User destroyed the active token; activate the last token so focus
|
|
331
|
+
// moves to the search input rather than being lost.
|
|
332
|
+
this.activeTokenIdx = this.lastTokenIdx;
|
|
333
|
+
} else if (this.activeTokenIdx === null) {
|
|
334
|
+
// No token was active (e.g. clicking the X button on an inactive token);
|
|
335
|
+
// activate the last token so focus moves to the search input.
|
|
336
|
+
this.activeTokenIdx = this.lastTokenIdx;
|
|
337
|
+
}
|
|
338
|
+
// Do nothing if idx > this.activeTokenIdx,
|
|
339
|
+
// to preserve the active state of the remaining tokens.
|
|
340
|
+
},
|
|
341
|
+
replaceToken(idx, token) {
|
|
342
|
+
this.$set(this.tokens, idx, ensureTokenId({
|
|
343
|
+
...token,
|
|
344
|
+
value: {
|
|
345
|
+
data: '',
|
|
346
|
+
...token.value
|
|
347
|
+
}
|
|
348
|
+
}));
|
|
349
|
+
this.activeTokenIdx = idx;
|
|
350
|
+
},
|
|
351
|
+
// This method can be deleted once termsAsTokens behavior is the default.
|
|
352
|
+
createTokens(idx) {
|
|
353
|
+
let newStrings = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : [''];
|
|
354
|
+
if (!this.isLastTokenActive && newStrings.length === 1 && newStrings[0] === '') {
|
|
355
|
+
this.activeTokenIdx = this.lastTokenIdx;
|
|
356
|
+
return;
|
|
357
|
+
}
|
|
358
|
+
const newTokens = newStrings.map(data => createTerm(data));
|
|
359
|
+
this.tokens.splice(idx + 1, 0, ...newTokens);
|
|
360
|
+
this.activeTokenIdx = idx + newStrings.length;
|
|
361
|
+
},
|
|
362
|
+
completeToken() {
|
|
363
|
+
/**
|
|
364
|
+
* Emitted when a token is completed, with the token as the payload.
|
|
365
|
+
*/
|
|
366
|
+
this.$emit('token-complete', this.activeToken);
|
|
367
|
+
if (this.activeTokenIdx === this.lastTokenIdx - 1) {
|
|
368
|
+
this.activeTokenIdx = this.lastTokenIdx;
|
|
369
|
+
} else {
|
|
370
|
+
this.activeTokenIdx = null;
|
|
371
|
+
}
|
|
372
|
+
},
|
|
373
|
+
onClear() {
|
|
374
|
+
this.$nextTick(() => {
|
|
375
|
+
this.activeTokenIdx = this.lastTokenIdx;
|
|
376
|
+
this.$emit('clear');
|
|
377
|
+
});
|
|
378
|
+
},
|
|
379
|
+
submit() {
|
|
380
|
+
/**
|
|
381
|
+
* Emitted when search is submitted
|
|
382
|
+
* @property {array} tokens
|
|
383
|
+
*/
|
|
384
|
+
this.$emit('submit', normalizeTokens(cloneDeep(this.tokens)));
|
|
385
|
+
}
|
|
386
|
+
}
|
|
387
|
+
};
|
|
388
|
+
|
|
389
|
+
/* script */
|
|
390
|
+
const __vue_script__ = script;
|
|
391
|
+
|
|
392
|
+
/* template */
|
|
393
|
+
var __vue_render__ = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('gl-search-box-by-click',_vm._b({attrs:{"value":_vm.tokens,"history-items":_vm.historyItems,"clearable":_vm.hasValue,"search-button-attributes":_vm.searchButtonAttributes,"show-search-button":_vm.showSearchButton,"disabled":_vm.viewOnly,"wrapper-attributes":{ 'data-testid': 'filtered-search-input' }},on:{"submit":_vm.submit,"input":_vm.applyNewValue,"history-item-selected":function($event){return _vm.$emit('history-item-selected', $event)},"clear":_vm.onClear,"clear-history":function($event){return _vm.$emit('clear-history')}},scopedSlots:_vm._u([{key:"history-item",fn:function(slotScope){return [_vm._t("history-item",null,null,slotScope)]}},{key:"input",fn:function(){return [_c('div',{staticClass:"gl-filtered-search-scrollable-container",class:{
|
|
394
|
+
'gl-filtered-search-scrollable-container-with-search-button': _vm.showSearchButton,
|
|
395
|
+
'gl-filtered-search-view-only': _vm.viewOnly,
|
|
396
|
+
}},[_c('div',{staticClass:"gl-filtered-search-scrollable"},_vm._l((_vm.tokens),function(token,idx){return _c(_vm.getTokenComponent(token.type),{key:token.id,ref:"tokens",refInFor:true,tag:"component",class:_vm.getTokenClassList(idx),attrs:{"config":_vm.getTokenEntry(token.type),"active":_vm.activeTokenIdx === idx,"cursor-position":_vm.intendedCursorPosition,"available-tokens":_vm.currentAvailableTokens,"current-value":_vm.tokens,"index":idx,"placeholder":_vm.termPlaceholder,"show-friendly-text":_vm.showFriendlyText,"search-input-attributes":_vm.searchInputAttributes,"view-only":_vm.viewOnly,"is-last-token":_vm.isLastToken(idx),"search-text-option-label":_vm.searchTextOptionLabel,"applied-tokens":_vm.appliedTokens},on:{"activate":function($event){return _vm.activate(idx)},"deactivate":function($event){return _vm.deactivate(token)},"destroy":function($event){return _vm.destroyToken(idx, $event)},"replace":function($event){return _vm.replaceToken(idx, $event)},"complete":_vm.completeToken,"submit":_vm.submit,"split":function($event){return _vm.createTokens(idx, $event)},"previous":_vm.activatePreviousToken,"next":_vm.activateNextToken},model:{value:(token.value),callback:function ($$v) {_vm.$set(token, "value", $$v);},expression:"token.value"}})}),1)]),_vm._v(" "),_c('portal-target',{key:_vm.activeTokenIdx,ref:"menu",style:(_vm.suggestionsStyle),attrs:{"name":_vm.portalName,"slim":""}})]},proxy:true}],null,true)},'gl-search-box-by-click',_vm.$attrs,false))};
|
|
397
|
+
var __vue_staticRenderFns__ = [];
|
|
398
|
+
|
|
399
|
+
/* style */
|
|
400
|
+
const __vue_inject_styles__ = undefined;
|
|
401
|
+
/* scoped */
|
|
402
|
+
const __vue_scope_id__ = undefined;
|
|
403
|
+
/* module identifier */
|
|
404
|
+
const __vue_module_identifier__ = undefined;
|
|
405
|
+
/* functional template */
|
|
406
|
+
const __vue_is_functional_template__ = false;
|
|
407
|
+
/* style inject */
|
|
408
|
+
|
|
409
|
+
/* style inject SSR */
|
|
410
|
+
|
|
411
|
+
/* style inject shadow dom */
|
|
412
|
+
|
|
413
|
+
|
|
414
|
+
|
|
415
|
+
const __vue_component__ = /*#__PURE__*/__vue_normalize__(
|
|
416
|
+
{ render: __vue_render__, staticRenderFns: __vue_staticRenderFns__ },
|
|
417
|
+
__vue_inject_styles__,
|
|
418
|
+
__vue_script__,
|
|
419
|
+
__vue_scope_id__,
|
|
420
|
+
__vue_is_functional_template__,
|
|
421
|
+
__vue_module_identifier__,
|
|
422
|
+
false,
|
|
423
|
+
undefined,
|
|
424
|
+
undefined,
|
|
425
|
+
undefined
|
|
426
|
+
);
|
|
427
|
+
|
|
428
|
+
export { __vue_component__ as default };
|
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
import GlIcon from '../icon/icon';
|
|
2
|
+
import __vue_normalize__ from 'vue-runtime-helpers/dist/normalize-component.js';
|
|
3
|
+
|
|
4
|
+
var script = {
|
|
5
|
+
name: 'GlFilteredSearchSuggestion',
|
|
6
|
+
components: {
|
|
7
|
+
GlIcon
|
|
8
|
+
},
|
|
9
|
+
inject: ['filteredSearchSuggestionListInstance'],
|
|
10
|
+
inheritAttrs: false,
|
|
11
|
+
props: {
|
|
12
|
+
/**
|
|
13
|
+
* Value that will be emitted if this suggestion is selected.
|
|
14
|
+
*/
|
|
15
|
+
iconName: {
|
|
16
|
+
type: String,
|
|
17
|
+
required: false,
|
|
18
|
+
default: ''
|
|
19
|
+
},
|
|
20
|
+
value: {
|
|
21
|
+
required: true,
|
|
22
|
+
validator: () => true
|
|
23
|
+
}
|
|
24
|
+
},
|
|
25
|
+
emits: ['suggestion'],
|
|
26
|
+
computed: {
|
|
27
|
+
isActive() {
|
|
28
|
+
return this.filteredSearchSuggestionListInstance.activeItem === this;
|
|
29
|
+
}
|
|
30
|
+
},
|
|
31
|
+
watch: {
|
|
32
|
+
isActive(newValue) {
|
|
33
|
+
if (newValue) {
|
|
34
|
+
window.requestAnimationFrame(() => {
|
|
35
|
+
var _this$$el;
|
|
36
|
+
(_this$$el = this.$el) === null || _this$$el === void 0 ? void 0 : _this$$el.scrollIntoView({
|
|
37
|
+
block: 'nearest',
|
|
38
|
+
inline: 'end'
|
|
39
|
+
});
|
|
40
|
+
});
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
},
|
|
44
|
+
created() {
|
|
45
|
+
this.filteredSearchSuggestionListInstance.register(this);
|
|
46
|
+
},
|
|
47
|
+
beforeDestroy() {
|
|
48
|
+
this.filteredSearchSuggestionListInstance.unregister(this);
|
|
49
|
+
},
|
|
50
|
+
methods: {
|
|
51
|
+
emitValue() {
|
|
52
|
+
// We use href argument for gl-dropdown-item to use <a> instead of <button>
|
|
53
|
+
// due to https://bugs.webkit.org/show_bug.cgi?id=22261
|
|
54
|
+
this.filteredSearchSuggestionListInstance.$emit('suggestion', this.value);
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
};
|
|
58
|
+
|
|
59
|
+
/* script */
|
|
60
|
+
const __vue_script__ = script;
|
|
61
|
+
|
|
62
|
+
/* template */
|
|
63
|
+
var __vue_render__ = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('li',{staticClass:"gl-dropdown-item gl-filtered-search-suggestion",class:{ 'gl-filtered-search-suggestion-active': _vm.isActive }},[_c('button',{staticClass:"dropdown-item",attrs:{"data-testid":"filtered-search-suggestion","tabindex":"-1"},on:{"mousedown":function($event){$event.preventDefault();return _vm.emitValue.apply(null, arguments)}}},[(_vm.iconName)?_c('gl-icon',{staticClass:"gl-dropdown-item-icon gl-fill-icon-default",attrs:{"name":_vm.iconName}}):_vm._e(),_vm._v(" "),_c('div',{staticClass:"gl-dropdown-item-text-wrapper"},[_c('p',{staticClass:"gl-dropdown-item-text-primary"},[_vm._t("default")],2)])],1)])};
|
|
64
|
+
var __vue_staticRenderFns__ = [];
|
|
65
|
+
|
|
66
|
+
/* style */
|
|
67
|
+
const __vue_inject_styles__ = undefined;
|
|
68
|
+
/* scoped */
|
|
69
|
+
const __vue_scope_id__ = undefined;
|
|
70
|
+
/* module identifier */
|
|
71
|
+
const __vue_module_identifier__ = undefined;
|
|
72
|
+
/* functional template */
|
|
73
|
+
const __vue_is_functional_template__ = false;
|
|
74
|
+
/* style inject */
|
|
75
|
+
|
|
76
|
+
/* style inject SSR */
|
|
77
|
+
|
|
78
|
+
/* style inject shadow dom */
|
|
79
|
+
|
|
80
|
+
|
|
81
|
+
|
|
82
|
+
const __vue_component__ = /*#__PURE__*/__vue_normalize__(
|
|
83
|
+
{ render: __vue_render__, staticRenderFns: __vue_staticRenderFns__ },
|
|
84
|
+
__vue_inject_styles__,
|
|
85
|
+
__vue_script__,
|
|
86
|
+
__vue_scope_id__,
|
|
87
|
+
__vue_is_functional_template__,
|
|
88
|
+
__vue_module_identifier__,
|
|
89
|
+
false,
|
|
90
|
+
undefined,
|
|
91
|
+
undefined,
|
|
92
|
+
undefined
|
|
93
|
+
);
|
|
94
|
+
|
|
95
|
+
export { __vue_component__ as default };
|
|
@@ -0,0 +1,139 @@
|
|
|
1
|
+
import { FILTERED_SEARCH_SUGGESTIONS_CLASS, stepIndexAndWrap } from './filtered_search_utils';
|
|
2
|
+
import __vue_normalize__ from 'vue-runtime-helpers/dist/normalize-component.js';
|
|
3
|
+
|
|
4
|
+
const DEFER_TO_INITIAL_VALUE = -1;
|
|
5
|
+
const NO_ACTIVE_ITEM = -2;
|
|
6
|
+
var script = {
|
|
7
|
+
name: 'GlFilteredSearchSuggestionList',
|
|
8
|
+
inject: ['suggestionsListClass', 'termsAsTokens'],
|
|
9
|
+
provide() {
|
|
10
|
+
return {
|
|
11
|
+
filteredSearchSuggestionListInstance: this
|
|
12
|
+
};
|
|
13
|
+
},
|
|
14
|
+
props: {
|
|
15
|
+
/**
|
|
16
|
+
* Value to be initially selected in list.
|
|
17
|
+
*/
|
|
18
|
+
initialValue: {
|
|
19
|
+
required: false,
|
|
20
|
+
validator: () => true,
|
|
21
|
+
default: null
|
|
22
|
+
}
|
|
23
|
+
},
|
|
24
|
+
data() {
|
|
25
|
+
return {
|
|
26
|
+
activeIdx: DEFER_TO_INITIAL_VALUE,
|
|
27
|
+
registeredItems: []
|
|
28
|
+
};
|
|
29
|
+
},
|
|
30
|
+
computed: {
|
|
31
|
+
initialActiveIdx() {
|
|
32
|
+
return this.registeredItems.findIndex(item => this.valuesMatch(item.value, this.initialValue));
|
|
33
|
+
},
|
|
34
|
+
initialActiveItem() {
|
|
35
|
+
return this.registeredItems[this.initialActiveIdx];
|
|
36
|
+
},
|
|
37
|
+
activeItem() {
|
|
38
|
+
if (!this.termsAsTokens() && this.activeIdx === NO_ACTIVE_ITEM) return null;
|
|
39
|
+
if (this.activeIdx === DEFER_TO_INITIAL_VALUE) return this.initialActiveItem;
|
|
40
|
+
return this.registeredItems[this.activeIdx];
|
|
41
|
+
},
|
|
42
|
+
listClasses() {
|
|
43
|
+
return [this.suggestionsListClass(), `dropdown-menu ${FILTERED_SEARCH_SUGGESTIONS_CLASS}`];
|
|
44
|
+
}
|
|
45
|
+
},
|
|
46
|
+
watch: {
|
|
47
|
+
initialValue() {
|
|
48
|
+
this.activeIdx = DEFER_TO_INITIAL_VALUE;
|
|
49
|
+
}
|
|
50
|
+
},
|
|
51
|
+
methods: {
|
|
52
|
+
valuesMatch(firstValue, secondValue) {
|
|
53
|
+
if (firstValue == null || secondValue == null) return false;
|
|
54
|
+
return typeof firstValue === 'string' && typeof secondValue === 'string' ? firstValue.toLowerCase() === secondValue.toLowerCase() : firstValue === secondValue;
|
|
55
|
+
},
|
|
56
|
+
register(item) {
|
|
57
|
+
this.registeredItems.push(item);
|
|
58
|
+
},
|
|
59
|
+
unregister(item) {
|
|
60
|
+
const idx = this.registeredItems.indexOf(item);
|
|
61
|
+
if (idx !== -1) {
|
|
62
|
+
this.registeredItems.splice(idx, 1);
|
|
63
|
+
if (idx === this.activeIdx) {
|
|
64
|
+
this.activeIdx = DEFER_TO_INITIAL_VALUE;
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
},
|
|
68
|
+
nextItem() {
|
|
69
|
+
if (this.termsAsTokens()) {
|
|
70
|
+
this.stepItem(1);
|
|
71
|
+
} else {
|
|
72
|
+
this.stepItem(1, this.registeredItems.length - 1);
|
|
73
|
+
}
|
|
74
|
+
},
|
|
75
|
+
prevItem() {
|
|
76
|
+
if (this.termsAsTokens()) {
|
|
77
|
+
this.stepItem(-1);
|
|
78
|
+
} else {
|
|
79
|
+
this.stepItem(-1, 0);
|
|
80
|
+
}
|
|
81
|
+
},
|
|
82
|
+
stepItem(direction, endIdx) {
|
|
83
|
+
if (!this.termsAsTokens() && (this.activeIdx === endIdx || this.activeIdx === DEFER_TO_INITIAL_VALUE && this.initialActiveIdx === endIdx)) {
|
|
84
|
+
// The user wants to move past the end of the list, so ensure nothing is selected.
|
|
85
|
+
this.activeIdx = NO_ACTIVE_ITEM;
|
|
86
|
+
this.$refs.top.scrollIntoView();
|
|
87
|
+
} else {
|
|
88
|
+
const index = this.activeIdx === DEFER_TO_INITIAL_VALUE ?
|
|
89
|
+
// Currently active item is set by initialValue (i.e., text input matching),
|
|
90
|
+
// so step relative to that.
|
|
91
|
+
this.initialActiveIdx :
|
|
92
|
+
// Otherwise, step relative to the explicitly (via up/down arrows) activated item.
|
|
93
|
+
this.activeIdx;
|
|
94
|
+
this.activeIdx = stepIndexAndWrap(index, direction, this.registeredItems.length);
|
|
95
|
+
}
|
|
96
|
+
},
|
|
97
|
+
getValue() {
|
|
98
|
+
return this.activeItem ? this.activeItem.value : null;
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
};
|
|
102
|
+
|
|
103
|
+
/* script */
|
|
104
|
+
const __vue_script__ = script;
|
|
105
|
+
|
|
106
|
+
/* template */
|
|
107
|
+
var __vue_render__ = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('ul',{class:_vm.listClasses},[_c('li',{ref:"top"}),_vm._v(" "),_vm._t("default")],2)};
|
|
108
|
+
var __vue_staticRenderFns__ = [];
|
|
109
|
+
|
|
110
|
+
/* style */
|
|
111
|
+
const __vue_inject_styles__ = undefined;
|
|
112
|
+
/* scoped */
|
|
113
|
+
const __vue_scope_id__ = undefined;
|
|
114
|
+
/* module identifier */
|
|
115
|
+
const __vue_module_identifier__ = undefined;
|
|
116
|
+
/* functional template */
|
|
117
|
+
const __vue_is_functional_template__ = false;
|
|
118
|
+
/* style inject */
|
|
119
|
+
|
|
120
|
+
/* style inject SSR */
|
|
121
|
+
|
|
122
|
+
/* style inject shadow dom */
|
|
123
|
+
|
|
124
|
+
|
|
125
|
+
|
|
126
|
+
const __vue_component__ = /*#__PURE__*/__vue_normalize__(
|
|
127
|
+
{ render: __vue_render__, staticRenderFns: __vue_staticRenderFns__ },
|
|
128
|
+
__vue_inject_styles__,
|
|
129
|
+
__vue_script__,
|
|
130
|
+
__vue_scope_id__,
|
|
131
|
+
__vue_is_functional_template__,
|
|
132
|
+
__vue_module_identifier__,
|
|
133
|
+
false,
|
|
134
|
+
undefined,
|
|
135
|
+
undefined,
|
|
136
|
+
undefined
|
|
137
|
+
);
|
|
138
|
+
|
|
139
|
+
export { __vue_component__ as default };
|