@gitlab/ui 84.1.0 → 85.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +27 -0
- package/dist/components/base/accordion/accordion_item.js +1 -1
- package/dist/components/base/badge/badge.js +1 -1
- package/dist/components/base/breadcrumb/breadcrumb.js +1 -1
- package/dist/components/base/breadcrumb/breadcrumb_item.js +1 -1
- package/dist/components/base/button/button.js +1 -1
- package/dist/components/base/button_group/button_group.js +1 -1
- package/dist/components/base/carousel/carousel.js +1 -1
- package/dist/components/base/carousel/carousel_slide.js +1 -1
- package/dist/components/base/collapse/collapse.js +1 -1
- package/dist/components/base/dropdown/dropdown.js +2 -2
- package/dist/components/base/dropdown/dropdown_divider.js +1 -1
- package/dist/components/base/dropdown/dropdown_form.js +1 -1
- package/dist/components/base/dropdown/dropdown_item.js +2 -1
- package/dist/components/base/dropdown/dropdown_section_header.js +1 -1
- package/dist/components/base/dropdown/dropdown_text.js +1 -1
- package/dist/components/base/form/form.js +1 -1
- package/dist/components/base/form/form_checkbox/form_checkbox.js +1 -1
- package/dist/components/base/form/form_checkbox/form_checkbox_group.js +2 -2
- package/dist/components/base/form/form_group/form_group.js +1 -1
- package/dist/components/base/form/form_input/form_input.js +1 -1
- package/dist/components/base/form/form_input_group/form_input_group.js +4 -1
- package/dist/components/base/form/form_radio/form_radio.js +1 -1
- package/dist/components/base/form/form_radio_group/form_radio_group.js +2 -2
- package/dist/components/base/form/form_select/form_select.js +1 -1
- package/dist/components/base/form/form_text/form_text.js +1 -1
- package/dist/components/base/form/form_textarea/form_textarea.js +1 -1
- package/dist/components/base/form/input_group_text/input_group_text.js +1 -1
- package/dist/components/base/link/link.js +1 -1
- package/dist/components/base/modal/modal.js +1 -1
- package/dist/components/base/nav/nav.js +1 -1
- package/dist/components/base/nav/nav_item.js +1 -1
- package/dist/components/base/nav/nav_item_dropdown.js +1 -1
- package/dist/components/base/navbar/navbar.js +1 -1
- package/dist/components/base/new_dropdowns/disclosure/disclosure_dropdown_item.js +1 -1
- package/dist/components/base/popover/popover.js +1 -1
- package/dist/components/base/progress_bar/progress_bar.js +1 -1
- package/dist/components/base/segmented_control/segmented_control.js +1 -1
- package/dist/components/base/table/table.js +1 -1
- package/dist/components/base/table_lite/table_lite.js +1 -1
- package/dist/components/base/tabs/tab/tab.js +1 -1
- package/dist/components/base/tabs/tabs/tabs.js +1 -1
- package/dist/components/base/toast/toast.js +1 -1
- package/dist/components/base/tooltip/tooltip.js +1 -1
- package/dist/components/experimental/duo/chat/duo_chat.js +5 -2
- package/dist/config.js +1 -1
- package/dist/directives/collapse_toggle.js +1 -1
- package/dist/directives/modal.js +1 -1
- package/dist/directives/tooltip.js +1 -1
- package/dist/index.css +1 -1
- package/dist/index.css.map +1 -1
- package/dist/tokens/build/js/tokens.dark.js +78 -1
- package/dist/tokens/build/js/tokens.js +78 -1
- package/dist/tokens/css/tokens.css +77 -0
- package/dist/tokens/css/tokens.dark.css +77 -0
- package/dist/tokens/js/tokens.dark.js +77 -0
- package/dist/tokens/js/tokens.js +77 -0
- package/dist/tokens/json/tokens.dark.json +1976 -0
- package/dist/tokens/json/tokens.json +1976 -0
- package/dist/tokens/scss/_tokens.dark.scss +77 -0
- package/dist/tokens/scss/_tokens.scss +77 -0
- package/dist/tokens/scss/_tokens_custom_properties.scss +77 -0
- package/dist/utils/utils.js +1 -1
- package/dist/vendor/bootstrap-vue/src/browser-icons.js +8 -0
- package/dist/vendor/bootstrap-vue/src/browser.js +8 -0
- package/dist/vendor/bootstrap-vue/src/bv-config.js +6 -0
- package/dist/vendor/bootstrap-vue/src/components/alert/alert.js +179 -0
- package/dist/vendor/bootstrap-vue/src/components/alert/index.js +11 -0
- package/dist/vendor/bootstrap-vue/src/components/aspect/aspect.js +67 -0
- package/dist/vendor/bootstrap-vue/src/components/aspect/index.js +11 -0
- package/dist/vendor/bootstrap-vue/src/components/avatar/avatar-group.js +67 -0
- package/dist/vendor/bootstrap-vue/src/components/avatar/avatar.js +266 -0
- package/dist/vendor/bootstrap-vue/src/components/avatar/index.js +14 -0
- package/dist/vendor/bootstrap-vue/src/components/badge/badge.js +53 -0
- package/dist/vendor/bootstrap-vue/src/components/badge/index.js +11 -0
- package/dist/vendor/bootstrap-vue/src/components/breadcrumb/breadcrumb-item.js +34 -0
- package/dist/vendor/bootstrap-vue/src/components/breadcrumb/breadcrumb-link.js +48 -0
- package/dist/vendor/bootstrap-vue/src/components/breadcrumb/breadcrumb.js +67 -0
- package/dist/vendor/bootstrap-vue/src/components/breadcrumb/index.js +17 -0
- package/dist/vendor/bootstrap-vue/src/components/button/button-close.js +66 -0
- package/dist/vendor/bootstrap-vue/src/components/button/button.js +180 -0
- package/dist/vendor/bootstrap-vue/src/components/button/index.js +16 -0
- package/dist/vendor/bootstrap-vue/src/components/button-group/button-group.js +44 -0
- package/dist/vendor/bootstrap-vue/src/components/button-group/index.js +12 -0
- package/dist/vendor/bootstrap-vue/src/components/button-toolbar/button-toolbar.js +112 -0
- package/dist/vendor/bootstrap-vue/src/components/button-toolbar/index.js +12 -0
- package/dist/vendor/bootstrap-vue/src/components/calendar/calendar.js +1010 -0
- package/dist/vendor/bootstrap-vue/src/components/calendar/index.js +11 -0
- package/dist/vendor/bootstrap-vue/src/components/card/card-body.js +63 -0
- package/dist/vendor/bootstrap-vue/src/components/card/card-footer.js +48 -0
- package/dist/vendor/bootstrap-vue/src/components/card/card-group.js +33 -0
- package/dist/vendor/bootstrap-vue/src/components/card/card-header.js +48 -0
- package/dist/vendor/bootstrap-vue/src/components/card/card-img-lazy.js +46 -0
- package/dist/vendor/bootstrap-vue/src/components/card/card-img.js +58 -0
- package/dist/vendor/bootstrap-vue/src/components/card/card-sub-title.js +35 -0
- package/dist/vendor/bootstrap-vue/src/components/card/card-text.js +31 -0
- package/dist/vendor/bootstrap-vue/src/components/card/card-title.js +33 -0
- package/dist/vendor/bootstrap-vue/src/components/card/card.js +123 -0
- package/dist/vendor/bootstrap-vue/src/components/card/index.js +38 -0
- package/dist/vendor/bootstrap-vue/src/components/carousel/carousel-slide.js +123 -0
- package/dist/vendor/bootstrap-vue/src/components/carousel/carousel.js +617 -0
- package/dist/vendor/bootstrap-vue/src/components/carousel/index.js +14 -0
- package/dist/vendor/bootstrap-vue/src/components/collapse/collapse.js +274 -0
- package/dist/vendor/bootstrap-vue/src/components/collapse/helpers/bv-collapse.js +90 -0
- package/dist/vendor/bootstrap-vue/src/components/collapse/index.js +15 -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 +83 -0
- package/dist/vendor/bootstrap-vue/src/components/dropdown/dropdown-item.js +89 -0
- package/dist/vendor/bootstrap-vue/src/components/dropdown/dropdown-text.js +49 -0
- package/dist/vendor/bootstrap-vue/src/components/dropdown/dropdown.js +195 -0
- package/dist/vendor/bootstrap-vue/src/components/dropdown/index.js +42 -0
- package/dist/vendor/bootstrap-vue/src/components/embed/embed.js +50 -0
- package/dist/vendor/bootstrap-vue/src/components/embed/index.js +11 -0
- package/dist/vendor/bootstrap-vue/src/components/form/form-datalist.js +52 -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 +40 -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 +41 -0
- package/dist/vendor/bootstrap-vue/src/components/form/index.js +28 -0
- package/dist/vendor/bootstrap-vue/src/components/form-btn-label-control/bv-form-btn-label-control.js +261 -0
- package/dist/vendor/bootstrap-vue/src/components/form-checkbox/form-checkbox-group.js +37 -0
- package/dist/vendor/bootstrap-vue/src/components/form-checkbox/form-checkbox.js +134 -0
- package/dist/vendor/bootstrap-vue/src/components/form-checkbox/index.js +18 -0
- package/dist/vendor/bootstrap-vue/src/components/form-datepicker/form-datepicker.js +310 -0
- package/dist/vendor/bootstrap-vue/src/components/form-datepicker/index.js +12 -0
- package/dist/vendor/bootstrap-vue/src/components/form-file/form-file.js +561 -0
- package/dist/vendor/bootstrap-vue/src/components/form-file/index.js +12 -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 +12 -0
- package/dist/vendor/bootstrap-vue/src/components/form-input/form-input.js +157 -0
- package/dist/vendor/bootstrap-vue/src/components/form-input/index.js +12 -0
- package/dist/vendor/bootstrap-vue/src/components/form-radio/form-radio-group.js +29 -0
- package/dist/vendor/bootstrap-vue/src/components/form-radio/form-radio.js +30 -0
- package/dist/vendor/bootstrap-vue/src/components/form-radio/index.js +16 -0
- package/dist/vendor/bootstrap-vue/src/components/form-rating/form-rating.js +402 -0
- package/dist/vendor/bootstrap-vue/src/components/form-rating/index.js +12 -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 +20 -0
- package/dist/vendor/bootstrap-vue/src/components/form-spinbutton/form-spinbutton.js +555 -0
- package/dist/vendor/bootstrap-vue/src/components/form-spinbutton/index.js +12 -0
- package/dist/vendor/bootstrap-vue/src/components/form-tags/form-tag.js +97 -0
- package/dist/vendor/bootstrap-vue/src/components/form-tags/form-tags.js +806 -0
- package/dist/vendor/bootstrap-vue/src/components/form-tags/index.js +16 -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 +12 -0
- package/dist/vendor/bootstrap-vue/src/components/form-timepicker/form-timepicker.js +281 -0
- package/dist/vendor/bootstrap-vue/src/components/form-timepicker/index.js +12 -0
- package/dist/vendor/bootstrap-vue/src/components/image/img-lazy.js +157 -0
- package/dist/vendor/bootstrap-vue/src/components/image/img.js +124 -0
- package/dist/vendor/bootstrap-vue/src/components/image/index.js +14 -0
- package/dist/vendor/bootstrap-vue/src/components/index.js +109 -0
- package/dist/vendor/bootstrap-vue/src/components/input-group/index.js +23 -0
- package/dist/vendor/bootstrap-vue/src/components/input-group/input-group-addon.js +44 -0
- package/dist/vendor/bootstrap-vue/src/components/input-group/input-group-append.js +34 -0
- package/dist/vendor/bootstrap-vue/src/components/input-group/input-group-prepend.js +34 -0
- package/dist/vendor/bootstrap-vue/src/components/input-group/input-group-text.js +31 -0
- package/dist/vendor/bootstrap-vue/src/components/input-group/input-group.js +75 -0
- package/dist/vendor/bootstrap-vue/src/components/jumbotron/index.js +11 -0
- package/dist/vendor/bootstrap-vue/src/components/jumbotron/jumbotron.js +98 -0
- package/dist/vendor/bootstrap-vue/src/components/layout/col.js +156 -0
- package/dist/vendor/bootstrap-vue/src/components/layout/container.js +41 -0
- package/dist/vendor/bootstrap-vue/src/components/layout/form-row.js +31 -0
- package/dist/vendor/bootstrap-vue/src/components/layout/index.js +20 -0
- package/dist/vendor/bootstrap-vue/src/components/layout/row.js +113 -0
- package/dist/vendor/bootstrap-vue/src/components/link/index.js +11 -0
- package/dist/vendor/bootstrap-vue/src/components/link/link.js +239 -0
- package/dist/vendor/bootstrap-vue/src/components/list-group/index.js +14 -0
- package/dist/vendor/bootstrap-vue/src/components/list-group/list-group-item.js +78 -0
- package/dist/vendor/bootstrap-vue/src/components/list-group/list-group.js +42 -0
- package/dist/vendor/bootstrap-vue/src/components/media/index.js +17 -0
- package/dist/vendor/bootstrap-vue/src/components/media/media-aside.js +41 -0
- package/dist/vendor/bootstrap-vue/src/components/media/media-body.js +31 -0
- package/dist/vendor/bootstrap-vue/src/components/media/media.js +61 -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/bv-modal.js +279 -0
- package/dist/vendor/bootstrap-vue/src/components/modal/helpers/modal-manager.js +211 -0
- package/dist/vendor/bootstrap-vue/src/components/modal/index.js +20 -0
- package/dist/vendor/bootstrap-vue/src/components/modal/modal.js +920 -0
- package/dist/vendor/bootstrap-vue/src/components/nav/index.js +30 -0
- package/dist/vendor/bootstrap-vue/src/components/nav/nav-form.js +45 -0
- package/dist/vendor/bootstrap-vue/src/components/nav/nav-item-dropdown.js +108 -0
- package/dist/vendor/bootstrap-vue/src/components/nav/nav-item.js +43 -0
- package/dist/vendor/bootstrap-vue/src/components/nav/nav-text.js +26 -0
- package/dist/vendor/bootstrap-vue/src/components/nav/nav.js +65 -0
- package/dist/vendor/bootstrap-vue/src/components/navbar/index.js +29 -0
- package/dist/vendor/bootstrap-vue/src/components/navbar/navbar-brand.js +40 -0
- package/dist/vendor/bootstrap-vue/src/components/navbar/navbar-nav.js +46 -0
- package/dist/vendor/bootstrap-vue/src/components/navbar/navbar-toggle.js +89 -0
- package/dist/vendor/bootstrap-vue/src/components/navbar/navbar.js +72 -0
- package/dist/vendor/bootstrap-vue/src/components/overlay/index.js +11 -0
- package/dist/vendor/bootstrap-vue/src/components/overlay/overlay.js +163 -0
- package/dist/vendor/bootstrap-vue/src/components/pagination/index.js +11 -0
- package/dist/vendor/bootstrap-vue/src/components/pagination/pagination.js +135 -0
- package/dist/vendor/bootstrap-vue/src/components/pagination-nav/index.js +11 -0
- package/dist/vendor/bootstrap-vue/src/components/pagination-nav/pagination-nav.js +299 -0
- package/dist/vendor/bootstrap-vue/src/components/popover/helpers/bv-popover-template.js +52 -0
- package/dist/vendor/bootstrap-vue/src/components/popover/helpers/bv-popover.js +26 -0
- package/dist/vendor/bootstrap-vue/src/components/popover/index.js +15 -0
- package/dist/vendor/bootstrap-vue/src/components/popover/popover.js +45 -0
- package/dist/vendor/bootstrap-vue/src/components/progress/index.js +14 -0
- package/dist/vendor/bootstrap-vue/src/components/progress/progress-bar.js +128 -0
- package/dist/vendor/bootstrap-vue/src/components/progress/progress.js +56 -0
- package/dist/vendor/bootstrap-vue/src/components/sidebar/index.js +15 -0
- package/dist/vendor/bootstrap-vue/src/components/sidebar/sidebar.js +432 -0
- package/dist/vendor/bootstrap-vue/src/components/skeleton/index.js +23 -0
- package/dist/vendor/bootstrap-vue/src/components/skeleton/skeleton-icon.js +47 -0
- package/dist/vendor/bootstrap-vue/src/components/skeleton/skeleton-img.js +60 -0
- package/dist/vendor/bootstrap-vue/src/components/skeleton/skeleton-table.js +64 -0
- package/dist/vendor/bootstrap-vue/src/components/skeleton/skeleton-wrapper.js +46 -0
- package/dist/vendor/bootstrap-vue/src/components/skeleton/skeleton.js +49 -0
- package/dist/vendor/bootstrap-vue/src/components/spinner/index.js +11 -0
- package/dist/vendor/bootstrap-vue/src/components/spinner/spinner.js +55 -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 +265 -0
- package/dist/vendor/bootstrap-vue/src/components/table/helpers/mixin-items.js +150 -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 +187 -0
- package/dist/vendor/bootstrap-vue/src/components/table/helpers/mixin-selectable.js +229 -0
- package/dist/vendor/bootstrap-vue/src/components/table/helpers/mixin-sorting.js +290 -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 +237 -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 +214 -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 +32 -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 +47 -0
- package/dist/vendor/bootstrap-vue/src/components/table/table-lite.js +52 -0
- package/dist/vendor/bootstrap-vue/src/components/table/table-simple.js +45 -0
- package/dist/vendor/bootstrap-vue/src/components/table/table.js +68 -0
- package/dist/vendor/bootstrap-vue/src/components/table/tbody.js +109 -0
- package/dist/vendor/bootstrap-vue/src/components/table/td.js +183 -0
- package/dist/vendor/bootstrap-vue/src/components/table/tfoot.js +93 -0
- package/dist/vendor/bootstrap-vue/src/components/table/th.js +27 -0
- package/dist/vendor/bootstrap-vue/src/components/table/thead.js +96 -0
- package/dist/vendor/bootstrap-vue/src/components/table/tr.js +118 -0
- package/dist/vendor/bootstrap-vue/src/components/tabs/index.js +14 -0
- package/dist/vendor/bootstrap-vue/src/components/tabs/tab.js +199 -0
- package/dist/vendor/bootstrap-vue/src/components/tabs/tabs.js +617 -0
- package/dist/vendor/bootstrap-vue/src/components/time/index.js +11 -0
- package/dist/vendor/bootstrap-vue/src/components/time/time.js +600 -0
- package/dist/vendor/bootstrap-vue/src/components/toast/helpers/bv-toast.js +209 -0
- package/dist/vendor/bootstrap-vue/src/components/toast/index.js +19 -0
- package/dist/vendor/bootstrap-vue/src/components/toast/toast.js +419 -0
- package/dist/vendor/bootstrap-vue/src/components/toast/toaster.js +142 -0
- package/dist/vendor/bootstrap-vue/src/components/tooltip/helpers/bv-popper.js +243 -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 +929 -0
- package/dist/vendor/bootstrap-vue/src/components/tooltip/index.js +15 -0
- package/dist/vendor/bootstrap-vue/src/components/tooltip/tooltip.js +280 -0
- package/dist/vendor/bootstrap-vue/src/components/transition/bv-transition.js +85 -0
- package/dist/vendor/bootstrap-vue/src/components/transporter/transporter.js +197 -0
- package/dist/vendor/bootstrap-vue/src/constants/classes.js +4 -0
- package/dist/vendor/bootstrap-vue/src/constants/components.js +135 -0
- package/dist/vendor/bootstrap-vue/src/constants/config.js +5 -0
- package/dist/vendor/bootstrap-vue/src/constants/date.js +8 -0
- package/dist/vendor/bootstrap-vue/src/constants/env.js +47 -0
- package/dist/vendor/bootstrap-vue/src/constants/events.js +71 -0
- package/dist/vendor/bootstrap-vue/src/constants/key-codes.js +16 -0
- package/dist/vendor/bootstrap-vue/src/constants/popper.js +10 -0
- package/dist/vendor/bootstrap-vue/src/constants/props.js +27 -0
- package/dist/vendor/bootstrap-vue/src/constants/regex.js +61 -0
- package/dist/vendor/bootstrap-vue/src/constants/safe-types.js +15 -0
- package/dist/vendor/bootstrap-vue/src/constants/slots.js +66 -0
- package/dist/vendor/bootstrap-vue/src/directives/hover/hover.js +61 -0
- package/dist/vendor/bootstrap-vue/src/directives/hover/index.js +11 -0
- package/dist/vendor/bootstrap-vue/src/directives/index.js +23 -0
- package/dist/vendor/bootstrap-vue/src/directives/modal/index.js +11 -0
- package/dist/vendor/bootstrap-vue/src/directives/modal/modal.js +112 -0
- package/dist/vendor/bootstrap-vue/src/directives/popover/index.js +11 -0
- package/dist/vendor/bootstrap-vue/src/directives/popover/popover.js +265 -0
- package/dist/vendor/bootstrap-vue/src/directives/scrollspy/helpers/bv-scrollspy.class.js +404 -0
- package/dist/vendor/bootstrap-vue/src/directives/scrollspy/index.js +11 -0
- package/dist/vendor/bootstrap-vue/src/directives/scrollspy/scrollspy.js +112 -0
- package/dist/vendor/bootstrap-vue/src/directives/toggle/index.js +11 -0
- package/dist/vendor/bootstrap-vue/src/directives/toggle/toggle.js +253 -0
- package/dist/vendor/bootstrap-vue/src/directives/tooltip/index.js +11 -0
- package/dist/vendor/bootstrap-vue/src/directives/tooltip/tooltip.js +264 -0
- package/dist/vendor/bootstrap-vue/src/directives/visible/index.js +11 -0
- package/dist/vendor/bootstrap-vue/src/directives/visible/visible.js +156 -0
- package/dist/vendor/bootstrap-vue/src/icons/helpers/icon-base.js +139 -0
- package/dist/vendor/bootstrap-vue/src/icons/helpers/make-icon.js +56 -0
- package/dist/vendor/bootstrap-vue/src/icons/icon.js +56 -0
- package/dist/vendor/bootstrap-vue/src/icons/icons.js +1377 -0
- package/dist/vendor/bootstrap-vue/src/icons/iconstack.js +31 -0
- package/dist/vendor/bootstrap-vue/src/icons/index.js +4 -0
- package/dist/vendor/bootstrap-vue/src/icons/plugin.js +1410 -0
- package/dist/vendor/bootstrap-vue/src/icons-only.js +10 -0
- package/dist/vendor/bootstrap-vue/src/index.js +205 -0
- package/dist/vendor/bootstrap-vue/src/mixins/attrs.js +22 -0
- package/dist/vendor/bootstrap-vue/src/mixins/card.js +22 -0
- package/dist/vendor/bootstrap-vue/src/mixins/click-out.js +54 -0
- package/dist/vendor/bootstrap-vue/src/mixins/dropdown.js +457 -0
- package/dist/vendor/bootstrap-vue/src/mixins/focus-in.js +46 -0
- package/dist/vendor/bootstrap-vue/src/mixins/form-control.js +50 -0
- package/dist/vendor/bootstrap-vue/src/mixins/form-custom.js +23 -0
- package/dist/vendor/bootstrap-vue/src/mixins/form-options.js +72 -0
- package/dist/vendor/bootstrap-vue/src/mixins/form-radio-check-group.js +142 -0
- package/dist/vendor/bootstrap-vue/src/mixins/form-radio-check.js +318 -0
- package/dist/vendor/bootstrap-vue/src/mixins/form-selection.js +62 -0
- package/dist/vendor/bootstrap-vue/src/mixins/form-size.js +23 -0
- package/dist/vendor/bootstrap-vue/src/mixins/form-state.js +47 -0
- package/dist/vendor/bootstrap-vue/src/mixins/form-text.js +248 -0
- package/dist/vendor/bootstrap-vue/src/mixins/form-validity.js +50 -0
- package/dist/vendor/bootstrap-vue/src/mixins/has-listener.js +26 -0
- package/dist/vendor/bootstrap-vue/src/mixins/id.js +52 -0
- package/dist/vendor/bootstrap-vue/src/mixins/listen-on-document.js +63 -0
- package/dist/vendor/bootstrap-vue/src/mixins/listen-on-root.js +121 -0
- package/dist/vendor/bootstrap-vue/src/mixins/listen-on-window.js +63 -0
- package/dist/vendor/bootstrap-vue/src/mixins/listeners.js +24 -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/pagination.js +598 -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 +30 -0
- package/dist/vendor/bootstrap-vue/src/utils/bv-event.class.js +60 -0
- package/dist/vendor/bootstrap-vue/src/utils/cache.js +38 -0
- package/dist/vendor/bootstrap-vue/src/utils/clone-deep.js +18 -0
- package/dist/vendor/bootstrap-vue/src/utils/config-set.js +81 -0
- package/dist/vendor/bootstrap-vue/src/utils/config.js +77 -0
- package/dist/vendor/bootstrap-vue/src/utils/create-new-child-component.js +12 -0
- package/dist/vendor/bootstrap-vue/src/utils/css-escape.js +70 -0
- package/dist/vendor/bootstrap-vue/src/utils/date.js +135 -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 +34 -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 +5 -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 +37 -0
- package/dist/vendor/bootstrap-vue/src/utils/locale.js +19 -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 +11 -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 +79 -0
- package/dist/vendor/bootstrap-vue/src/utils/observe-dom.js +76 -0
- package/dist/vendor/bootstrap-vue/src/utils/plugins.js +183 -0
- package/dist/vendor/bootstrap-vue/src/utils/props.js +103 -0
- package/dist/vendor/bootstrap-vue/src/utils/router.js +136 -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 +62 -0
- package/dist/vendor/bootstrap-vue/src/utils/stringify-object-values.js +31 -0
- package/dist/vendor/bootstrap-vue/src/utils/warn.js +60 -0
- package/dist/vendor/bootstrap-vue/src/vue.js +103 -0
- package/package.json +6 -4
- package/src/components/base/accordion/accordion_item.vue +1 -1
- package/src/components/base/badge/badge.scss +63 -63
- package/src/components/base/badge/badge.vue +1 -1
- package/src/components/base/breadcrumb/breadcrumb.vue +1 -1
- package/src/components/base/breadcrumb/breadcrumb_item.vue +1 -1
- package/src/components/base/button/button.vue +1 -1
- package/src/components/base/button_group/button_group.vue +1 -1
- package/src/components/base/carousel/carousel.vue +1 -1
- package/src/components/base/carousel/carousel_slide.vue +1 -1
- package/src/components/base/collapse/collapse.vue +1 -1
- package/src/components/base/dropdown/dropdown.vue +2 -2
- package/src/components/base/dropdown/dropdown_divider.vue +1 -1
- package/src/components/base/dropdown/dropdown_form.vue +1 -1
- package/src/components/base/dropdown/dropdown_item.vue +2 -1
- package/src/components/base/dropdown/dropdown_section_header.vue +1 -1
- package/src/components/base/dropdown/dropdown_text.vue +1 -1
- package/src/components/base/form/form.vue +1 -1
- package/src/components/base/form/form_checkbox/form_checkbox.vue +1 -1
- package/src/components/base/form/form_checkbox/form_checkbox_group.vue +2 -2
- package/src/components/base/form/form_group/form_group.vue +1 -1
- package/src/components/base/form/form_input/form_input.vue +1 -1
- package/src/components/base/form/form_input_group/form_input_group.vue +4 -1
- package/src/components/base/form/form_radio/form_radio.vue +1 -1
- package/src/components/base/form/form_radio_group/form_radio_group.vue +2 -2
- package/src/components/base/form/form_select/form_select.vue +1 -1
- package/src/components/base/form/form_text/form_text.vue +1 -1
- package/src/components/base/form/form_textarea/form_textarea.vue +3 -3
- package/src/components/base/form/input_group_text/input_group_text.vue +1 -1
- package/src/components/base/link/link.vue +1 -1
- package/src/components/base/modal/modal.vue +1 -1
- package/src/components/base/nav/nav.vue +1 -1
- package/src/components/base/nav/nav_item.vue +1 -1
- package/src/components/base/nav/nav_item_dropdown.vue +1 -1
- package/src/components/base/navbar/navbar.vue +1 -1
- package/src/components/base/new_dropdowns/disclosure/disclosure_dropdown_item.vue +1 -1
- package/src/components/base/popover/popover.vue +1 -1
- package/src/components/base/progress_bar/progress_bar.vue +1 -1
- package/src/components/base/segmented_control/segmented_control.vue +1 -1
- package/src/components/base/table/table.vue +1 -1
- package/src/components/base/table_lite/table_lite.vue +1 -1
- package/src/components/base/tabs/tab/tab.vue +1 -1
- package/src/components/base/tabs/tabs/tabs.vue +1 -1
- package/src/components/base/toast/toast.js +2 -1
- package/src/components/base/tooltip/tooltip.vue +1 -1
- package/src/components/experimental/duo/chat/duo_chat.vue +6 -2
- package/src/config.js +1 -1
- package/src/directives/collapse_toggle.js +1 -1
- package/src/directives/modal.js +1 -1
- package/src/directives/tooltip.js +1 -1
- package/src/scss/bootstrap_vue.scss +29 -29
- package/src/tokens/build/css/tokens.css +77 -0
- package/src/tokens/build/css/tokens.dark.css +77 -0
- package/src/tokens/build/js/tokens.dark.js +77 -0
- package/src/tokens/build/js/tokens.js +77 -0
- package/src/tokens/build/json/tokens.dark.json +1976 -0
- package/src/tokens/build/json/tokens.json +1976 -0
- package/src/tokens/build/scss/_tokens.dark.scss +77 -0
- package/src/tokens/build/scss/_tokens.scss +77 -0
- package/src/tokens/build/scss/_tokens_custom_properties.scss +77 -0
- package/src/tokens/status.tokens.json +746 -0
- package/src/utils/utils.js +1 -1
- package/src/vendor/bootstrap-vue/LICENSE +21 -0
- package/src/vendor/bootstrap-vue/nuxt/index.js +185 -0
- package/src/vendor/bootstrap-vue/nuxt/plugin.template.js +35 -0
- package/src/vendor/bootstrap-vue/package.json +205 -0
- package/src/vendor/bootstrap-vue/src/_custom-controls.scss +30 -0
- package/src/vendor/bootstrap-vue/src/_utilities.scss +22 -0
- package/src/vendor/bootstrap-vue/src/_variables.scss +177 -0
- package/src/vendor/bootstrap-vue/src/browser-icons.js +9 -0
- package/src/vendor/bootstrap-vue/src/browser.js +9 -0
- package/src/vendor/bootstrap-vue/src/bv-config.d.ts +4 -0
- package/src/vendor/bootstrap-vue/src/bv-config.js +6 -0
- package/src/vendor/bootstrap-vue/src/components/alert/README.md +280 -0
- package/src/vendor/bootstrap-vue/src/components/alert/alert.js +185 -0
- package/src/vendor/bootstrap-vue/src/components/alert/alert.spec.js +442 -0
- package/src/vendor/bootstrap-vue/src/components/alert/index.d.ts +13 -0
- package/src/vendor/bootstrap-vue/src/components/alert/index.js +8 -0
- package/src/vendor/bootstrap-vue/src/components/alert/package.json +72 -0
- package/src/vendor/bootstrap-vue/src/components/aspect/README.md +65 -0
- package/src/vendor/bootstrap-vue/src/components/aspect/aspect.js +65 -0
- package/src/vendor/bootstrap-vue/src/components/aspect/aspect.spec.js +121 -0
- package/src/vendor/bootstrap-vue/src/components/aspect/index.d.ts +11 -0
- package/src/vendor/bootstrap-vue/src/components/aspect/index.js +8 -0
- package/src/vendor/bootstrap-vue/src/components/aspect/package.json +26 -0
- package/src/vendor/bootstrap-vue/src/components/avatar/README.md +567 -0
- package/src/vendor/bootstrap-vue/src/components/avatar/_avatar.scss +148 -0
- package/src/vendor/bootstrap-vue/src/components/avatar/avatar-group.js +75 -0
- package/src/vendor/bootstrap-vue/src/components/avatar/avatar-group.spec.js +74 -0
- package/src/vendor/bootstrap-vue/src/components/avatar/avatar.js +228 -0
- package/src/vendor/bootstrap-vue/src/components/avatar/avatar.spec.js +355 -0
- package/src/vendor/bootstrap-vue/src/components/avatar/index.d.ts +14 -0
- package/src/vendor/bootstrap-vue/src/components/avatar/index.js +9 -0
- package/src/vendor/bootstrap-vue/src/components/avatar/index.scss +1 -0
- package/src/vendor/bootstrap-vue/src/components/avatar/package.json +149 -0
- package/src/vendor/bootstrap-vue/src/components/badge/README.md +126 -0
- package/src/vendor/bootstrap-vue/src/components/badge/badge.js +55 -0
- package/src/vendor/bootstrap-vue/src/components/badge/badge.spec.js +141 -0
- package/src/vendor/bootstrap-vue/src/components/badge/index.d.ts +11 -0
- package/src/vendor/bootstrap-vue/src/components/badge/index.js +8 -0
- package/src/vendor/bootstrap-vue/src/components/badge/package.json +29 -0
- package/src/vendor/bootstrap-vue/src/components/breadcrumb/README.md +94 -0
- package/src/vendor/bootstrap-vue/src/components/breadcrumb/breadcrumb-item.js +27 -0
- package/src/vendor/bootstrap-vue/src/components/breadcrumb/breadcrumb-item.spec.js +123 -0
- package/src/vendor/bootstrap-vue/src/components/breadcrumb/breadcrumb-link.js +43 -0
- package/src/vendor/bootstrap-vue/src/components/breadcrumb/breadcrumb-link.spec.js +117 -0
- package/src/vendor/bootstrap-vue/src/components/breadcrumb/breadcrumb.js +52 -0
- package/src/vendor/bootstrap-vue/src/components/breadcrumb/breadcrumb.spec.js +183 -0
- package/src/vendor/bootstrap-vue/src/components/breadcrumb/index.d.ts +17 -0
- package/src/vendor/bootstrap-vue/src/components/breadcrumb/index.js +10 -0
- package/src/vendor/bootstrap-vue/src/components/breadcrumb/package.json +62 -0
- package/src/vendor/bootstrap-vue/src/components/button/README.md +281 -0
- package/src/vendor/bootstrap-vue/src/components/button/button-close.js +65 -0
- package/src/vendor/bootstrap-vue/src/components/button/button-close.spec.js +210 -0
- package/src/vendor/bootstrap-vue/src/components/button/button.js +179 -0
- package/src/vendor/bootstrap-vue/src/components/button/button.spec.js +385 -0
- package/src/vendor/bootstrap-vue/src/components/button/index.d.ts +14 -0
- package/src/vendor/bootstrap-vue/src/components/button/index.js +14 -0
- package/src/vendor/bootstrap-vue/src/components/button/package.json +105 -0
- package/src/vendor/bootstrap-vue/src/components/button-group/README.md +112 -0
- package/src/vendor/bootstrap-vue/src/components/button-group/button-group.js +42 -0
- package/src/vendor/bootstrap-vue/src/components/button-group/button-group.spec.js +98 -0
- package/src/vendor/bootstrap-vue/src/components/button-group/index.d.ts +11 -0
- package/src/vendor/bootstrap-vue/src/components/button-group/index.js +11 -0
- package/src/vendor/bootstrap-vue/src/components/button-group/package.json +29 -0
- package/src/vendor/bootstrap-vue/src/components/button-toolbar/README.md +109 -0
- package/src/vendor/bootstrap-vue/src/components/button-toolbar/button-toolbar.js +117 -0
- package/src/vendor/bootstrap-vue/src/components/button-toolbar/button-toolbar.spec.js +185 -0
- package/src/vendor/bootstrap-vue/src/components/button-toolbar/index.d.ts +11 -0
- package/src/vendor/bootstrap-vue/src/components/button-toolbar/index.js +11 -0
- package/src/vendor/bootstrap-vue/src/components/button-toolbar/package.json +32 -0
- package/src/vendor/bootstrap-vue/src/components/calendar/README.md +735 -0
- package/src/vendor/bootstrap-vue/src/components/calendar/_calendar.scss +78 -0
- package/src/vendor/bootstrap-vue/src/components/calendar/calendar.js +1146 -0
- package/src/vendor/bootstrap-vue/src/components/calendar/calendar.spec.js +466 -0
- package/src/vendor/bootstrap-vue/src/components/calendar/index.d.ts +28 -0
- package/src/vendor/bootstrap-vue/src/components/calendar/index.js +8 -0
- package/src/vendor/bootstrap-vue/src/components/calendar/index.scss +1 -0
- package/src/vendor/bootstrap-vue/src/components/calendar/package.json +317 -0
- package/src/vendor/bootstrap-vue/src/components/card/README.md +729 -0
- package/src/vendor/bootstrap-vue/src/components/card/_card-img.scss +7 -0
- package/src/vendor/bootstrap-vue/src/components/card/card-body.js +69 -0
- package/src/vendor/bootstrap-vue/src/components/card/card-body.spec.js +142 -0
- package/src/vendor/bootstrap-vue/src/components/card/card-footer.js +48 -0
- package/src/vendor/bootstrap-vue/src/components/card/card-footer.spec.js +98 -0
- package/src/vendor/bootstrap-vue/src/components/card/card-group.js +33 -0
- package/src/vendor/bootstrap-vue/src/components/card/card-group.spec.js +75 -0
- package/src/vendor/bootstrap-vue/src/components/card/card-header.js +48 -0
- package/src/vendor/bootstrap-vue/src/components/card/card-header.spec.js +98 -0
- package/src/vendor/bootstrap-vue/src/components/card/card-img-lazy.js +47 -0
- package/src/vendor/bootstrap-vue/src/components/card/card-img-lazy.spec.js +204 -0
- package/src/vendor/bootstrap-vue/src/components/card/card-img.js +50 -0
- package/src/vendor/bootstrap-vue/src/components/card/card-img.spec.js +208 -0
- package/src/vendor/bootstrap-vue/src/components/card/card-sub-title.js +35 -0
- package/src/vendor/bootstrap-vue/src/components/card/card-sub-title.spec.js +60 -0
- package/src/vendor/bootstrap-vue/src/components/card/card-text.js +25 -0
- package/src/vendor/bootstrap-vue/src/components/card/card-text.spec.js +48 -0
- package/src/vendor/bootstrap-vue/src/components/card/card-title.js +33 -0
- package/src/vendor/bootstrap-vue/src/components/card/card-title.spec.js +45 -0
- package/src/vendor/bootstrap-vue/src/components/card/card.js +140 -0
- package/src/vendor/bootstrap-vue/src/components/card/card.spec.js +296 -0
- package/src/vendor/bootstrap-vue/src/components/card/index.d.ts +38 -0
- package/src/vendor/bootstrap-vue/src/components/card/index.js +40 -0
- package/src/vendor/bootstrap-vue/src/components/card/index.scss +1 -0
- package/src/vendor/bootstrap-vue/src/components/card/package.json +262 -0
- package/src/vendor/bootstrap-vue/src/components/carousel/README.md +320 -0
- package/src/vendor/bootstrap-vue/src/components/carousel/carousel-slide.js +132 -0
- package/src/vendor/bootstrap-vue/src/components/carousel/carousel-slide.spec.js +276 -0
- package/src/vendor/bootstrap-vue/src/components/carousel/carousel.js +655 -0
- package/src/vendor/bootstrap-vue/src/components/carousel/carousel.spec.js +1069 -0
- package/src/vendor/bootstrap-vue/src/components/carousel/index.d.ts +20 -0
- package/src/vendor/bootstrap-vue/src/components/carousel/index.js +12 -0
- package/src/vendor/bootstrap-vue/src/components/carousel/package.json +185 -0
- package/src/vendor/bootstrap-vue/src/components/collapse/README.md +321 -0
- package/src/vendor/bootstrap-vue/src/components/collapse/collapse.js +272 -0
- package/src/vendor/bootstrap-vue/src/components/collapse/collapse.spec.js +558 -0
- package/src/vendor/bootstrap-vue/src/components/collapse/helpers/bv-collapse.js +88 -0
- package/src/vendor/bootstrap-vue/src/components/collapse/index.d.ts +13 -0
- package/src/vendor/bootstrap-vue/src/components/collapse/index.js +10 -0
- package/src/vendor/bootstrap-vue/src/components/collapse/package.json +111 -0
- package/src/vendor/bootstrap-vue/src/components/dropdown/README.md +730 -0
- package/src/vendor/bootstrap-vue/src/components/dropdown/_dropdown-form.scss +38 -0
- package/src/vendor/bootstrap-vue/src/components/dropdown/_dropdown-text.scss +17 -0
- package/src/vendor/bootstrap-vue/src/components/dropdown/_dropdown.scss +58 -0
- package/src/vendor/bootstrap-vue/src/components/dropdown/dropdown-divider.js +36 -0
- package/src/vendor/bootstrap-vue/src/components/dropdown/dropdown-divider.spec.js +58 -0
- package/src/vendor/bootstrap-vue/src/components/dropdown/dropdown-form.js +47 -0
- package/src/vendor/bootstrap-vue/src/components/dropdown/dropdown-form.spec.js +110 -0
- package/src/vendor/bootstrap-vue/src/components/dropdown/dropdown-group.js +76 -0
- package/src/vendor/bootstrap-vue/src/components/dropdown/dropdown-group.spec.js +94 -0
- package/src/vendor/bootstrap-vue/src/components/dropdown/dropdown-header.js +46 -0
- package/src/vendor/bootstrap-vue/src/components/dropdown/dropdown-header.spec.js +73 -0
- package/src/vendor/bootstrap-vue/src/components/dropdown/dropdown-item-button.js +93 -0
- package/src/vendor/bootstrap-vue/src/components/dropdown/dropdown-item-button.spec.js +117 -0
- package/src/vendor/bootstrap-vue/src/components/dropdown/dropdown-item.js +87 -0
- package/src/vendor/bootstrap-vue/src/components/dropdown/dropdown-item.spec.js +147 -0
- package/src/vendor/bootstrap-vue/src/components/dropdown/dropdown-text.js +42 -0
- package/src/vendor/bootstrap-vue/src/components/dropdown/dropdown-text.spec.js +59 -0
- package/src/vendor/bootstrap-vue/src/components/dropdown/dropdown.js +202 -0
- package/src/vendor/bootstrap-vue/src/components/dropdown/dropdown.spec.js +1121 -0
- package/src/vendor/bootstrap-vue/src/components/dropdown/index.d.ts +36 -0
- package/src/vendor/bootstrap-vue/src/components/dropdown/index.js +44 -0
- package/src/vendor/bootstrap-vue/src/components/dropdown/index.scss +3 -0
- package/src/vendor/bootstrap-vue/src/components/dropdown/package.json +368 -0
- package/src/vendor/bootstrap-vue/src/components/embed/README.md +63 -0
- package/src/vendor/bootstrap-vue/src/components/embed/embed.js +51 -0
- package/src/vendor/bootstrap-vue/src/components/embed/embed.spec.js +110 -0
- package/src/vendor/bootstrap-vue/src/components/embed/index.d.ts +11 -0
- package/src/vendor/bootstrap-vue/src/components/embed/index.js +8 -0
- package/src/vendor/bootstrap-vue/src/components/embed/package.json +29 -0
- package/src/vendor/bootstrap-vue/src/components/form/README.md +370 -0
- package/src/vendor/bootstrap-vue/src/components/form/form-datalist.js +42 -0
- package/src/vendor/bootstrap-vue/src/components/form/form-datalist.spec.js +57 -0
- package/src/vendor/bootstrap-vue/src/components/form/form-invalid-feedback.js +51 -0
- package/src/vendor/bootstrap-vue/src/components/form/form-invalid-feedback.spec.js +170 -0
- package/src/vendor/bootstrap-vue/src/components/form/form-text.js +40 -0
- package/src/vendor/bootstrap-vue/src/components/form/form-text.spec.js +93 -0
- package/src/vendor/bootstrap-vue/src/components/form/form-valid-feedback.js +51 -0
- package/src/vendor/bootstrap-vue/src/components/form/form-valid-feedback.spec.js +157 -0
- package/src/vendor/bootstrap-vue/src/components/form/form.js +41 -0
- package/src/vendor/bootstrap-vue/src/components/form/form.spec.js +97 -0
- package/src/vendor/bootstrap-vue/src/components/form/index.d.ts +23 -0
- package/src/vendor/bootstrap-vue/src/components/form/index.js +24 -0
- package/src/vendor/bootstrap-vue/src/components/form/package.json +124 -0
- package/src/vendor/bootstrap-vue/src/components/form-btn-label-control/_form-btn-label-control.scss +125 -0
- package/src/vendor/bootstrap-vue/src/components/form-btn-label-control/bv-form-btn-label-control.js +278 -0
- package/src/vendor/bootstrap-vue/src/components/form-btn-label-control/index.scss +1 -0
- package/src/vendor/bootstrap-vue/src/components/form-btn-label-control/package.json +5 -0
- package/src/vendor/bootstrap-vue/src/components/form-checkbox/README.md +862 -0
- package/src/vendor/bootstrap-vue/src/components/form-checkbox/_form-checkbox-group.scss +2 -0
- package/src/vendor/bootstrap-vue/src/components/form-checkbox/_form-checkbox.scss +125 -0
- package/src/vendor/bootstrap-vue/src/components/form-checkbox/form-checkbox-group.js +42 -0
- package/src/vendor/bootstrap-vue/src/components/form-checkbox/form-checkbox-group.spec.js +642 -0
- package/src/vendor/bootstrap-vue/src/components/form-checkbox/form-checkbox.js +132 -0
- package/src/vendor/bootstrap-vue/src/components/form-checkbox/form-checkbox.spec.js +1331 -0
- package/src/vendor/bootstrap-vue/src/components/form-checkbox/index.d.ts +14 -0
- package/src/vendor/bootstrap-vue/src/components/form-checkbox/index.js +16 -0
- package/src/vendor/bootstrap-vue/src/components/form-checkbox/index.scss +2 -0
- package/src/vendor/bootstrap-vue/src/components/form-checkbox/package.json +172 -0
- package/src/vendor/bootstrap-vue/src/components/form-datepicker/README.md +694 -0
- package/src/vendor/bootstrap-vue/src/components/form-datepicker/_form-datepicker.scss +1 -0
- package/src/vendor/bootstrap-vue/src/components/form-datepicker/form-datepicker.js +342 -0
- package/src/vendor/bootstrap-vue/src/components/form-datepicker/form-datepicker.spec.js +562 -0
- package/src/vendor/bootstrap-vue/src/components/form-datepicker/index.d.ts +12 -0
- package/src/vendor/bootstrap-vue/src/components/form-datepicker/index.js +11 -0
- package/src/vendor/bootstrap-vue/src/components/form-datepicker/index.scss +1 -0
- package/src/vendor/bootstrap-vue/src/components/form-datepicker/package.json +420 -0
- package/src/vendor/bootstrap-vue/src/components/form-file/README.md +357 -0
- package/src/vendor/bootstrap-vue/src/components/form-file/_form-file.scss +61 -0
- package/src/vendor/bootstrap-vue/src/components/form-file/form-file.js +575 -0
- package/src/vendor/bootstrap-vue/src/components/form-file/form-file.spec.js +885 -0
- package/src/vendor/bootstrap-vue/src/components/form-file/index.d.ts +13 -0
- package/src/vendor/bootstrap-vue/src/components/form-file/index.js +11 -0
- package/src/vendor/bootstrap-vue/src/components/form-file/index.scss +1 -0
- package/src/vendor/bootstrap-vue/src/components/form-file/package.json +131 -0
- package/src/vendor/bootstrap-vue/src/components/form-group/README.md +337 -0
- package/src/vendor/bootstrap-vue/src/components/form-group/form-group.js +403 -0
- package/src/vendor/bootstrap-vue/src/components/form-group/form-group.spec.js +477 -0
- package/src/vendor/bootstrap-vue/src/components/form-group/index.d.ts +11 -0
- package/src/vendor/bootstrap-vue/src/components/form-group/index.js +11 -0
- package/src/vendor/bootstrap-vue/src/components/form-group/package.json +183 -0
- package/src/vendor/bootstrap-vue/src/components/form-input/README.md +612 -0
- package/src/vendor/bootstrap-vue/src/components/form-input/_form-input.scss +217 -0
- package/src/vendor/bootstrap-vue/src/components/form-input/form-input.js +168 -0
- package/src/vendor/bootstrap-vue/src/components/form-input/form-input.spec.js +986 -0
- package/src/vendor/bootstrap-vue/src/components/form-input/index.d.ts +13 -0
- package/src/vendor/bootstrap-vue/src/components/form-input/index.js +11 -0
- package/src/vendor/bootstrap-vue/src/components/form-input/index.scss +1 -0
- package/src/vendor/bootstrap-vue/src/components/form-input/package.json +135 -0
- package/src/vendor/bootstrap-vue/src/components/form-radio/README.md +566 -0
- package/src/vendor/bootstrap-vue/src/components/form-radio/_form-radio-group.scss +3 -0
- package/src/vendor/bootstrap-vue/src/components/form-radio/_form-radio.scss +47 -0
- package/src/vendor/bootstrap-vue/src/components/form-radio/form-radio-group.js +30 -0
- package/src/vendor/bootstrap-vue/src/components/form-radio/form-radio-group.spec.js +469 -0
- package/src/vendor/bootstrap-vue/src/components/form-radio/form-radio.js +28 -0
- package/src/vendor/bootstrap-vue/src/components/form-radio/form-radio.spec.js +952 -0
- package/src/vendor/bootstrap-vue/src/components/form-radio/index.d.ts +14 -0
- package/src/vendor/bootstrap-vue/src/components/form-radio/index.js +14 -0
- package/src/vendor/bootstrap-vue/src/components/form-radio/index.scss +2 -0
- package/src/vendor/bootstrap-vue/src/components/form-radio/package.json +162 -0
- package/src/vendor/bootstrap-vue/src/components/form-rating/README.md +526 -0
- package/src/vendor/bootstrap-vue/src/components/form-rating/_form-rating.scss +57 -0
- package/src/vendor/bootstrap-vue/src/components/form-rating/form-rating.js +411 -0
- package/src/vendor/bootstrap-vue/src/components/form-rating/form-rating.spec.js +544 -0
- package/src/vendor/bootstrap-vue/src/components/form-rating/index.d.ts +14 -0
- package/src/vendor/bootstrap-vue/src/components/form-rating/index.js +8 -0
- package/src/vendor/bootstrap-vue/src/components/form-rating/index.scss +1 -0
- package/src/vendor/bootstrap-vue/src/components/form-rating/package.json +166 -0
- package/src/vendor/bootstrap-vue/src/components/form-select/README.md +504 -0
- package/src/vendor/bootstrap-vue/src/components/form-select/form-select-option-group.js +48 -0
- package/src/vendor/bootstrap-vue/src/components/form-select/form-select-option-group.spec.js +138 -0
- package/src/vendor/bootstrap-vue/src/components/form-select/form-select-option.js +35 -0
- package/src/vendor/bootstrap-vue/src/components/form-select/form-select-option.spec.js +75 -0
- package/src/vendor/bootstrap-vue/src/components/form-select/form-select.js +153 -0
- package/src/vendor/bootstrap-vue/src/components/form-select/form-select.spec.js +723 -0
- package/src/vendor/bootstrap-vue/src/components/form-select/helpers/mixin-options.js +56 -0
- package/src/vendor/bootstrap-vue/src/components/form-select/index.d.ts +17 -0
- package/src/vendor/bootstrap-vue/src/components/form-select/index.js +17 -0
- package/src/vendor/bootstrap-vue/src/components/form-select/package.json +132 -0
- package/src/vendor/bootstrap-vue/src/components/form-spinbutton/README.md +411 -0
- package/src/vendor/bootstrap-vue/src/components/form-spinbutton/_spinbutton.scss +76 -0
- package/src/vendor/bootstrap-vue/src/components/form-spinbutton/form-spinbutton.js +572 -0
- package/src/vendor/bootstrap-vue/src/components/form-spinbutton/form-spinbutton.spec.js +731 -0
- package/src/vendor/bootstrap-vue/src/components/form-spinbutton/index.d.ts +12 -0
- package/src/vendor/bootstrap-vue/src/components/form-spinbutton/index.js +11 -0
- package/src/vendor/bootstrap-vue/src/components/form-spinbutton/index.scss +1 -0
- package/src/vendor/bootstrap-vue/src/components/form-spinbutton/package.json +150 -0
- package/src/vendor/bootstrap-vue/src/components/form-tags/README.md +880 -0
- package/src/vendor/bootstrap-vue/src/components/form-tags/_form-tags.scss +70 -0
- package/src/vendor/bootstrap-vue/src/components/form-tags/form-tag.js +94 -0
- package/src/vendor/bootstrap-vue/src/components/form-tags/form-tag.spec.js +166 -0
- package/src/vendor/bootstrap-vue/src/components/form-tags/form-tags.js +891 -0
- package/src/vendor/bootstrap-vue/src/components/form-tags/form-tags.spec.js +920 -0
- package/src/vendor/bootstrap-vue/src/components/form-tags/index.d.ts +16 -0
- package/src/vendor/bootstrap-vue/src/components/form-tags/index.js +14 -0
- package/src/vendor/bootstrap-vue/src/components/form-tags/index.scss +1 -0
- package/src/vendor/bootstrap-vue/src/components/form-tags/package.json +440 -0
- package/src/vendor/bootstrap-vue/src/components/form-textarea/README.md +453 -0
- package/src/vendor/bootstrap-vue/src/components/form-textarea/form-textarea.js +226 -0
- package/src/vendor/bootstrap-vue/src/components/form-textarea/form-textarea.spec.js +1000 -0
- package/src/vendor/bootstrap-vue/src/components/form-textarea/index.d.ts +13 -0
- package/src/vendor/bootstrap-vue/src/components/form-textarea/index.js +11 -0
- package/src/vendor/bootstrap-vue/src/components/form-textarea/package.json +122 -0
- package/src/vendor/bootstrap-vue/src/components/form-timepicker/README.md +450 -0
- package/src/vendor/bootstrap-vue/src/components/form-timepicker/_form-timepicker.scss +1 -0
- package/src/vendor/bootstrap-vue/src/components/form-timepicker/form-timepicker.js +308 -0
- package/src/vendor/bootstrap-vue/src/components/form-timepicker/form-timepicker.spec.js +440 -0
- package/src/vendor/bootstrap-vue/src/components/form-timepicker/index.d.ts +12 -0
- package/src/vendor/bootstrap-vue/src/components/form-timepicker/index.js +11 -0
- package/src/vendor/bootstrap-vue/src/components/form-timepicker/index.scss +1 -0
- package/src/vendor/bootstrap-vue/src/components/form-timepicker/package.json +255 -0
- package/src/vendor/bootstrap-vue/src/components/image/README.md +322 -0
- package/src/vendor/bootstrap-vue/src/components/image/img-lazy.js +161 -0
- package/src/vendor/bootstrap-vue/src/components/image/img-lazy.spec.js +96 -0
- package/src/vendor/bootstrap-vue/src/components/image/img.js +139 -0
- package/src/vendor/bootstrap-vue/src/components/image/img.spec.js +255 -0
- package/src/vendor/bootstrap-vue/src/components/image/index.d.ts +14 -0
- package/src/vendor/bootstrap-vue/src/components/image/index.js +12 -0
- package/src/vendor/bootstrap-vue/src/components/image/package.json +152 -0
- package/src/vendor/bootstrap-vue/src/components/index.d.ts +56 -0
- package/src/vendor/bootstrap-vue/src/components/index.js +110 -0
- package/src/vendor/bootstrap-vue/src/components/index.scss +27 -0
- package/src/vendor/bootstrap-vue/src/components/input-group/README.md +334 -0
- package/src/vendor/bootstrap-vue/src/components/input-group/_input-group.scss +29 -0
- package/src/vendor/bootstrap-vue/src/components/input-group/index.d.ts +23 -0
- package/src/vendor/bootstrap-vue/src/components/input-group/index.js +25 -0
- package/src/vendor/bootstrap-vue/src/components/input-group/index.scss +1 -0
- package/src/vendor/bootstrap-vue/src/components/input-group/input-group-addon.js +43 -0
- package/src/vendor/bootstrap-vue/src/components/input-group/input-group-append.js +31 -0
- package/src/vendor/bootstrap-vue/src/components/input-group/input-group-append.spec.js +84 -0
- package/src/vendor/bootstrap-vue/src/components/input-group/input-group-prepend.js +31 -0
- package/src/vendor/bootstrap-vue/src/components/input-group/input-group-prepend.spec.js +84 -0
- package/src/vendor/bootstrap-vue/src/components/input-group/input-group-text.js +31 -0
- package/src/vendor/bootstrap-vue/src/components/input-group/input-group-text.spec.js +45 -0
- package/src/vendor/bootstrap-vue/src/components/input-group/input-group.js +73 -0
- package/src/vendor/bootstrap-vue/src/components/input-group/input-group.spec.js +153 -0
- package/src/vendor/bootstrap-vue/src/components/input-group/package.json +109 -0
- package/src/vendor/bootstrap-vue/src/components/jumbotron/README.md +109 -0
- package/src/vendor/bootstrap-vue/src/components/jumbotron/index.d.ts +11 -0
- package/src/vendor/bootstrap-vue/src/components/jumbotron/index.js +8 -0
- package/src/vendor/bootstrap-vue/src/components/jumbotron/jumbotron.js +103 -0
- package/src/vendor/bootstrap-vue/src/components/jumbotron/jumbotron.spec.js +254 -0
- package/src/vendor/bootstrap-vue/src/components/jumbotron/package.json +66 -0
- package/src/vendor/bootstrap-vue/src/components/layout/README.md +791 -0
- package/src/vendor/bootstrap-vue/src/components/layout/col.js +154 -0
- package/src/vendor/bootstrap-vue/src/components/layout/col.spec.js +192 -0
- package/src/vendor/bootstrap-vue/src/components/layout/container.js +40 -0
- package/src/vendor/bootstrap-vue/src/components/layout/container.spec.js +75 -0
- package/src/vendor/bootstrap-vue/src/components/layout/form-row.js +31 -0
- package/src/vendor/bootstrap-vue/src/components/layout/form-row.spec.js +45 -0
- package/src/vendor/bootstrap-vue/src/components/layout/index.d.ts +20 -0
- package/src/vendor/bootstrap-vue/src/components/layout/index.js +16 -0
- package/src/vendor/bootstrap-vue/src/components/layout/package.json +166 -0
- package/src/vendor/bootstrap-vue/src/components/layout/row.js +111 -0
- package/src/vendor/bootstrap-vue/src/components/layout/row.spec.js +138 -0
- package/src/vendor/bootstrap-vue/src/components/link/README.md +76 -0
- package/src/vendor/bootstrap-vue/src/components/link/index.d.ts +14 -0
- package/src/vendor/bootstrap-vue/src/components/link/index.js +8 -0
- package/src/vendor/bootstrap-vue/src/components/link/link.js +212 -0
- package/src/vendor/bootstrap-vue/src/components/link/link.spec.js +434 -0
- package/src/vendor/bootstrap-vue/src/components/link/package.json +57 -0
- package/src/vendor/bootstrap-vue/src/components/list-group/README.md +291 -0
- package/src/vendor/bootstrap-vue/src/components/list-group/index.d.ts +14 -0
- package/src/vendor/bootstrap-vue/src/components/list-group/index.js +12 -0
- package/src/vendor/bootstrap-vue/src/components/list-group/list-group-item.js +76 -0
- package/src/vendor/bootstrap-vue/src/components/list-group/list-group-item.spec.js +286 -0
- package/src/vendor/bootstrap-vue/src/components/list-group/list-group.js +42 -0
- package/src/vendor/bootstrap-vue/src/components/list-group/list-group.spec.js +132 -0
- package/src/vendor/bootstrap-vue/src/components/list-group/package.json +52 -0
- package/src/vendor/bootstrap-vue/src/components/media/README.md +183 -0
- package/src/vendor/bootstrap-vue/src/components/media/_media.scss +9 -0
- package/src/vendor/bootstrap-vue/src/components/media/index.d.ts +17 -0
- package/src/vendor/bootstrap-vue/src/components/media/index.js +14 -0
- package/src/vendor/bootstrap-vue/src/components/media/index.scss +1 -0
- package/src/vendor/bootstrap-vue/src/components/media/media-aside.js +45 -0
- package/src/vendor/bootstrap-vue/src/components/media/media-aside.spec.js +79 -0
- package/src/vendor/bootstrap-vue/src/components/media/media-body.js +25 -0
- package/src/vendor/bootstrap-vue/src/components/media/media-body.spec.js +47 -0
- package/src/vendor/bootstrap-vue/src/components/media/media.js +52 -0
- package/src/vendor/bootstrap-vue/src/components/media/media.spec.js +149 -0
- package/src/vendor/bootstrap-vue/src/components/media/package.json +65 -0
- package/src/vendor/bootstrap-vue/src/components/modal/README.md +1193 -0
- package/src/vendor/bootstrap-vue/src/components/modal/_modal.scss +5 -0
- package/src/vendor/bootstrap-vue/src/components/modal/helpers/bv-modal-event.class.js +22 -0
- package/src/vendor/bootstrap-vue/src/components/modal/helpers/bv-modal-event.class.spec.js +82 -0
- package/src/vendor/bootstrap-vue/src/components/modal/helpers/bv-modal.js +279 -0
- package/src/vendor/bootstrap-vue/src/components/modal/helpers/bv-modal.spec.js +178 -0
- package/src/vendor/bootstrap-vue/src/components/modal/helpers/modal-manager.js +219 -0
- package/src/vendor/bootstrap-vue/src/components/modal/index.d.ts +95 -0
- package/src/vendor/bootstrap-vue/src/components/modal/index.js +13 -0
- package/src/vendor/bootstrap-vue/src/components/modal/index.scss +1 -0
- package/src/vendor/bootstrap-vue/src/components/modal/modal.js +1022 -0
- package/src/vendor/bootstrap-vue/src/components/modal/modal.spec.js +1418 -0
- package/src/vendor/bootstrap-vue/src/components/modal/package.json +587 -0
- package/src/vendor/bootstrap-vue/src/components/nav/README.md +480 -0
- package/src/vendor/bootstrap-vue/src/components/nav/_nav-item-dropdown.scss +1 -0
- package/src/vendor/bootstrap-vue/src/components/nav/index.d.ts +27 -0
- package/src/vendor/bootstrap-vue/src/components/nav/index.js +25 -0
- package/src/vendor/bootstrap-vue/src/components/nav/index.scss +1 -0
- package/src/vendor/bootstrap-vue/src/components/nav/nav-form.js +50 -0
- package/src/vendor/bootstrap-vue/src/components/nav/nav-form.spec.js +93 -0
- package/src/vendor/bootstrap-vue/src/components/nav/nav-item-dropdown.js +123 -0
- package/src/vendor/bootstrap-vue/src/components/nav/nav-item-dropdown.spec.js +268 -0
- package/src/vendor/bootstrap-vue/src/components/nav/nav-item.js +49 -0
- package/src/vendor/bootstrap-vue/src/components/nav/nav-item.spec.js +127 -0
- package/src/vendor/bootstrap-vue/src/components/nav/nav-text.js +18 -0
- package/src/vendor/bootstrap-vue/src/components/nav/nav-text.spec.js +30 -0
- package/src/vendor/bootstrap-vue/src/components/nav/nav.js +60 -0
- package/src/vendor/bootstrap-vue/src/components/nav/nav.spec.js +244 -0
- package/src/vendor/bootstrap-vue/src/components/nav/package.json +238 -0
- package/src/vendor/bootstrap-vue/src/components/navbar/README.md +339 -0
- package/src/vendor/bootstrap-vue/src/components/navbar/_navbar.scss +1 -0
- package/src/vendor/bootstrap-vue/src/components/navbar/index.d.ts +19 -0
- package/src/vendor/bootstrap-vue/src/components/navbar/index.js +25 -0
- package/src/vendor/bootstrap-vue/src/components/navbar/index.scss +1 -0
- package/src/vendor/bootstrap-vue/src/components/navbar/navbar-brand.js +42 -0
- package/src/vendor/bootstrap-vue/src/components/navbar/navbar-brand.spec.js +50 -0
- package/src/vendor/bootstrap-vue/src/components/navbar/navbar-nav.js +45 -0
- package/src/vendor/bootstrap-vue/src/components/navbar/navbar-nav.spec.js +105 -0
- package/src/vendor/bootstrap-vue/src/components/navbar/navbar-toggle.js +84 -0
- package/src/vendor/bootstrap-vue/src/components/navbar/navbar-toggle.spec.js +189 -0
- package/src/vendor/bootstrap-vue/src/components/navbar/navbar.js +78 -0
- package/src/vendor/bootstrap-vue/src/components/navbar/navbar.spec.js +130 -0
- package/src/vendor/bootstrap-vue/src/components/navbar/package.json +134 -0
- package/src/vendor/bootstrap-vue/src/components/overlay/README.md +815 -0
- package/src/vendor/bootstrap-vue/src/components/overlay/index.d.ts +11 -0
- package/src/vendor/bootstrap-vue/src/components/overlay/index.js +8 -0
- package/src/vendor/bootstrap-vue/src/components/overlay/overlay.js +162 -0
- package/src/vendor/bootstrap-vue/src/components/overlay/overlay.spec.js +257 -0
- package/src/vendor/bootstrap-vue/src/components/overlay/package.json +130 -0
- package/src/vendor/bootstrap-vue/src/components/pagination/README.md +430 -0
- package/src/vendor/bootstrap-vue/src/components/pagination/_pagination.scss +26 -0
- package/src/vendor/bootstrap-vue/src/components/pagination/index.d.ts +11 -0
- package/src/vendor/bootstrap-vue/src/components/pagination/index.js +8 -0
- package/src/vendor/bootstrap-vue/src/components/pagination/index.scss +1 -0
- package/src/vendor/bootstrap-vue/src/components/pagination/package.json +295 -0
- package/src/vendor/bootstrap-vue/src/components/pagination/pagination.js +138 -0
- package/src/vendor/bootstrap-vue/src/components/pagination/pagination.spec.js +1198 -0
- package/src/vendor/bootstrap-vue/src/components/pagination-nav/README.md +544 -0
- package/src/vendor/bootstrap-vue/src/components/pagination-nav/_pagination-nav.scss +2 -0
- package/src/vendor/bootstrap-vue/src/components/pagination-nav/index.d.ts +11 -0
- package/src/vendor/bootstrap-vue/src/components/pagination-nav/index.js +8 -0
- package/src/vendor/bootstrap-vue/src/components/pagination-nav/index.scss +1 -0
- package/src/vendor/bootstrap-vue/src/components/pagination-nav/package.json +315 -0
- package/src/vendor/bootstrap-vue/src/components/pagination-nav/pagination-nav.js +281 -0
- package/src/vendor/bootstrap-vue/src/components/pagination-nav/pagination-nav.spec.js +671 -0
- package/src/vendor/bootstrap-vue/src/components/popover/README.md +964 -0
- package/src/vendor/bootstrap-vue/src/components/popover/_popover.scss +113 -0
- package/src/vendor/bootstrap-vue/src/components/popover/helpers/bv-popover-template.js +50 -0
- package/src/vendor/bootstrap-vue/src/components/popover/helpers/bv-popover.js +28 -0
- package/src/vendor/bootstrap-vue/src/components/popover/index.d.ts +11 -0
- package/src/vendor/bootstrap-vue/src/components/popover/index.js +10 -0
- package/src/vendor/bootstrap-vue/src/components/popover/index.scss +1 -0
- package/src/vendor/bootstrap-vue/src/components/popover/package.json +264 -0
- package/src/vendor/bootstrap-vue/src/components/popover/popover.js +46 -0
- package/src/vendor/bootstrap-vue/src/components/popover/popover.spec.js +199 -0
- package/src/vendor/bootstrap-vue/src/components/progress/README.md +376 -0
- package/src/vendor/bootstrap-vue/src/components/progress/index.d.ts +14 -0
- package/src/vendor/bootstrap-vue/src/components/progress/index.js +12 -0
- package/src/vendor/bootstrap-vue/src/components/progress/package.json +109 -0
- package/src/vendor/bootstrap-vue/src/components/progress/progress-bar.js +133 -0
- package/src/vendor/bootstrap-vue/src/components/progress/progress-bar.spec.js +270 -0
- package/src/vendor/bootstrap-vue/src/components/progress/progress.js +57 -0
- package/src/vendor/bootstrap-vue/src/components/progress/progress.spec.js +71 -0
- package/src/vendor/bootstrap-vue/src/components/sidebar/README.md +406 -0
- package/src/vendor/bootstrap-vue/src/components/sidebar/_sidebar.scss +97 -0
- package/src/vendor/bootstrap-vue/src/components/sidebar/index.d.ts +11 -0
- package/src/vendor/bootstrap-vue/src/components/sidebar/index.js +10 -0
- package/src/vendor/bootstrap-vue/src/components/sidebar/index.scss +1 -0
- package/src/vendor/bootstrap-vue/src/components/sidebar/package.json +239 -0
- package/src/vendor/bootstrap-vue/src/components/sidebar/sidebar.js +438 -0
- package/src/vendor/bootstrap-vue/src/components/sidebar/sidebar.spec.js +404 -0
- package/src/vendor/bootstrap-vue/src/components/skeleton/README.md +275 -0
- package/src/vendor/bootstrap-vue/src/components/skeleton/_skeleton.scss +141 -0
- package/src/vendor/bootstrap-vue/src/components/skeleton/index.d.ts +23 -0
- package/src/vendor/bootstrap-vue/src/components/skeleton/index.js +18 -0
- package/src/vendor/bootstrap-vue/src/components/skeleton/index.scss +1 -0
- package/src/vendor/bootstrap-vue/src/components/skeleton/package.json +136 -0
- package/src/vendor/bootstrap-vue/src/components/skeleton/skeleton-icon.js +45 -0
- package/src/vendor/bootstrap-vue/src/components/skeleton/skeleton-icon.spec.js +86 -0
- package/src/vendor/bootstrap-vue/src/components/skeleton/skeleton-img.js +49 -0
- package/src/vendor/bootstrap-vue/src/components/skeleton/skeleton-img.spec.js +139 -0
- package/src/vendor/bootstrap-vue/src/components/skeleton/skeleton-table.js +58 -0
- package/src/vendor/bootstrap-vue/src/components/skeleton/skeleton-table.spec.js +119 -0
- package/src/vendor/bootstrap-vue/src/components/skeleton/skeleton-wrapper.js +47 -0
- package/src/vendor/bootstrap-vue/src/components/skeleton/skeleton-wrapper.spec.js +48 -0
- package/src/vendor/bootstrap-vue/src/components/skeleton/skeleton.js +46 -0
- package/src/vendor/bootstrap-vue/src/components/skeleton/skeleton.spec.js +126 -0
- package/src/vendor/bootstrap-vue/src/components/spinner/README.md +229 -0
- package/src/vendor/bootstrap-vue/src/components/spinner/index.d.ts +11 -0
- package/src/vendor/bootstrap-vue/src/components/spinner/index.js +8 -0
- package/src/vendor/bootstrap-vue/src/components/spinner/package.json +38 -0
- package/src/vendor/bootstrap-vue/src/components/spinner/spinner.js +54 -0
- package/src/vendor/bootstrap-vue/src/components/spinner/spinner.spec.js +305 -0
- package/src/vendor/bootstrap-vue/src/components/table/README.md +3170 -0
- package/src/vendor/bootstrap-vue/src/components/table/_table.scss +474 -0
- package/src/vendor/bootstrap-vue/src/components/table/helpers/constants.js +30 -0
- package/src/vendor/bootstrap-vue/src/components/table/helpers/default-sort-compare.js +60 -0
- package/src/vendor/bootstrap-vue/src/components/table/helpers/default-sort-compare.spec.js +112 -0
- package/src/vendor/bootstrap-vue/src/components/table/helpers/filter-event.js +38 -0
- package/src/vendor/bootstrap-vue/src/components/table/helpers/mixin-bottom-row.js +44 -0
- package/src/vendor/bootstrap-vue/src/components/table/helpers/mixin-busy.js +88 -0
- package/src/vendor/bootstrap-vue/src/components/table/helpers/mixin-caption.js +49 -0
- package/src/vendor/bootstrap-vue/src/components/table/helpers/mixin-colgroup.js +27 -0
- package/src/vendor/bootstrap-vue/src/components/table/helpers/mixin-empty.js +105 -0
- package/src/vendor/bootstrap-vue/src/components/table/helpers/mixin-filtering.js +271 -0
- package/src/vendor/bootstrap-vue/src/components/table/helpers/mixin-items.js +146 -0
- package/src/vendor/bootstrap-vue/src/components/table/helpers/mixin-pagination.js +38 -0
- package/src/vendor/bootstrap-vue/src/components/table/helpers/mixin-provider.js +188 -0
- package/src/vendor/bootstrap-vue/src/components/table/helpers/mixin-selectable.js +241 -0
- package/src/vendor/bootstrap-vue/src/components/table/helpers/mixin-sorting.js +299 -0
- package/src/vendor/bootstrap-vue/src/components/table/helpers/mixin-stacked.js +33 -0
- package/src/vendor/bootstrap-vue/src/components/table/helpers/mixin-table-renderer.js +209 -0
- package/src/vendor/bootstrap-vue/src/components/table/helpers/mixin-tbody-row.js +360 -0
- package/src/vendor/bootstrap-vue/src/components/table/helpers/mixin-tbody.js +258 -0
- package/src/vendor/bootstrap-vue/src/components/table/helpers/mixin-tfoot.js +55 -0
- package/src/vendor/bootstrap-vue/src/components/table/helpers/mixin-thead.js +238 -0
- package/src/vendor/bootstrap-vue/src/components/table/helpers/mixin-top-row.js +37 -0
- package/src/vendor/bootstrap-vue/src/components/table/helpers/normalize-fields.js +71 -0
- package/src/vendor/bootstrap-vue/src/components/table/helpers/normalize-fields.spec.js +93 -0
- package/src/vendor/bootstrap-vue/src/components/table/helpers/sanitize-row.js +39 -0
- package/src/vendor/bootstrap-vue/src/components/table/helpers/stringify-record-values.js +11 -0
- package/src/vendor/bootstrap-vue/src/components/table/helpers/text-selection-active.js +13 -0
- package/src/vendor/bootstrap-vue/src/components/table/index.d.ts +243 -0
- package/src/vendor/bootstrap-vue/src/components/table/index.js +56 -0
- package/src/vendor/bootstrap-vue/src/components/table/index.scss +1 -0
- package/src/vendor/bootstrap-vue/src/components/table/package.json +1767 -0
- package/src/vendor/bootstrap-vue/src/components/table/table-busy.spec.js +150 -0
- package/src/vendor/bootstrap-vue/src/components/table/table-caption.spec.js +176 -0
- package/src/vendor/bootstrap-vue/src/components/table/table-colgroup.spec.js +81 -0
- package/src/vendor/bootstrap-vue/src/components/table/table-filtering.spec.js +409 -0
- package/src/vendor/bootstrap-vue/src/components/table/table-item-formatter.spec.js +56 -0
- package/src/vendor/bootstrap-vue/src/components/table/table-lite.js +63 -0
- package/src/vendor/bootstrap-vue/src/components/table/table-lite.spec.js +682 -0
- package/src/vendor/bootstrap-vue/src/components/table/table-pagination.spec.js +133 -0
- package/src/vendor/bootstrap-vue/src/components/table/table-primarykey.spec.js +83 -0
- package/src/vendor/bootstrap-vue/src/components/table/table-provider.spec.js +411 -0
- package/src/vendor/bootstrap-vue/src/components/table/table-row-details.spec.js +459 -0
- package/src/vendor/bootstrap-vue/src/components/table/table-selectable.spec.js +1182 -0
- package/src/vendor/bootstrap-vue/src/components/table/table-simple.js +50 -0
- package/src/vendor/bootstrap-vue/src/components/table/table-simple.spec.js +206 -0
- package/src/vendor/bootstrap-vue/src/components/table/table-sorting.spec.js +858 -0
- package/src/vendor/bootstrap-vue/src/components/table/table-sticky-column.spec.js +377 -0
- package/src/vendor/bootstrap-vue/src/components/table/table-tbody-bottom-row.spec.js +94 -0
- package/src/vendor/bootstrap-vue/src/components/table/table-tbody-row-events.spec.js +529 -0
- package/src/vendor/bootstrap-vue/src/components/table/table-tbody-top-row.spec.js +88 -0
- package/src/vendor/bootstrap-vue/src/components/table/table-tbody-transition.spec.js +83 -0
- package/src/vendor/bootstrap-vue/src/components/table/table-tfoot-custom.spec.js +91 -0
- package/src/vendor/bootstrap-vue/src/components/table/table-tfoot-events.spec.js +137 -0
- package/src/vendor/bootstrap-vue/src/components/table/table-thead-events.spec.js +155 -0
- package/src/vendor/bootstrap-vue/src/components/table/table-thead-top.spec.js +96 -0
- package/src/vendor/bootstrap-vue/src/components/table/table.js +89 -0
- package/src/vendor/bootstrap-vue/src/components/table/table.spec.js +692 -0
- package/src/vendor/bootstrap-vue/src/components/table/tbody.js +103 -0
- package/src/vendor/bootstrap-vue/src/components/table/td.js +195 -0
- package/src/vendor/bootstrap-vue/src/components/table/tfoot.js +95 -0
- package/src/vendor/bootstrap-vue/src/components/table/th.js +25 -0
- package/src/vendor/bootstrap-vue/src/components/table/thead.js +98 -0
- package/src/vendor/bootstrap-vue/src/components/table/tr.js +122 -0
- package/src/vendor/bootstrap-vue/src/components/tabs/README.md +575 -0
- package/src/vendor/bootstrap-vue/src/components/tabs/index.d.ts +17 -0
- package/src/vendor/bootstrap-vue/src/components/tabs/index.js +12 -0
- package/src/vendor/bootstrap-vue/src/components/tabs/package.json +205 -0
- package/src/vendor/bootstrap-vue/src/components/tabs/tab.js +197 -0
- package/src/vendor/bootstrap-vue/src/components/tabs/tab.spec.js +330 -0
- package/src/vendor/bootstrap-vue/src/components/tabs/tabs.js +688 -0
- package/src/vendor/bootstrap-vue/src/components/tabs/tabs.spec.js +836 -0
- package/src/vendor/bootstrap-vue/src/components/time/README.md +431 -0
- package/src/vendor/bootstrap-vue/src/components/time/_time.scss +41 -0
- package/src/vendor/bootstrap-vue/src/components/time/index.d.ts +27 -0
- package/src/vendor/bootstrap-vue/src/components/time/index.js +8 -0
- package/src/vendor/bootstrap-vue/src/components/time/index.scss +1 -0
- package/src/vendor/bootstrap-vue/src/components/time/package.json +123 -0
- package/src/vendor/bootstrap-vue/src/components/time/time.js +601 -0
- package/src/vendor/bootstrap-vue/src/components/time/time.spec.js +330 -0
- package/src/vendor/bootstrap-vue/src/components/toast/README.md +658 -0
- package/src/vendor/bootstrap-vue/src/components/toast/_toast.scss +79 -0
- package/src/vendor/bootstrap-vue/src/components/toast/_toaster-transition.scss +45 -0
- package/src/vendor/bootstrap-vue/src/components/toast/_toaster.scss +108 -0
- package/src/vendor/bootstrap-vue/src/components/toast/helpers/bv-toast.js +208 -0
- package/src/vendor/bootstrap-vue/src/components/toast/helpers/bv-toast.spec.js +131 -0
- package/src/vendor/bootstrap-vue/src/components/toast/index.d.ts +70 -0
- package/src/vendor/bootstrap-vue/src/components/toast/index.js +12 -0
- package/src/vendor/bootstrap-vue/src/components/toast/index.scss +3 -0
- package/src/vendor/bootstrap-vue/src/components/toast/package.json +188 -0
- package/src/vendor/bootstrap-vue/src/components/toast/toast.js +454 -0
- package/src/vendor/bootstrap-vue/src/components/toast/toast.spec.js +346 -0
- package/src/vendor/bootstrap-vue/src/components/toast/toaster.js +139 -0
- package/src/vendor/bootstrap-vue/src/components/toast/toaster.spec.js +77 -0
- package/src/vendor/bootstrap-vue/src/components/tooltip/README.md +559 -0
- package/src/vendor/bootstrap-vue/src/components/tooltip/_tooltip.scss +86 -0
- package/src/vendor/bootstrap-vue/src/components/tooltip/helpers/bv-popper.js +248 -0
- package/src/vendor/bootstrap-vue/src/components/tooltip/helpers/bv-tooltip-template.js +130 -0
- package/src/vendor/bootstrap-vue/src/components/tooltip/helpers/bv-tooltip.js +981 -0
- package/src/vendor/bootstrap-vue/src/components/tooltip/index.d.ts +11 -0
- package/src/vendor/bootstrap-vue/src/components/tooltip/index.js +10 -0
- package/src/vendor/bootstrap-vue/src/components/tooltip/index.scss +1 -0
- package/src/vendor/bootstrap-vue/src/components/tooltip/package.json +261 -0
- package/src/vendor/bootstrap-vue/src/components/tooltip/tooltip.js +316 -0
- package/src/vendor/bootstrap-vue/src/components/tooltip/tooltip.spec.js +1529 -0
- package/src/vendor/bootstrap-vue/src/components/transition/bv-transition.js +83 -0
- package/src/vendor/bootstrap-vue/src/components/transition/package.json +5 -0
- package/src/vendor/bootstrap-vue/src/components/transporter/package.json +5 -0
- package/src/vendor/bootstrap-vue/src/components/transporter/transporter.js +202 -0
- package/src/vendor/bootstrap-vue/src/components/transporter/transporter.spec.js +85 -0
- package/src/vendor/bootstrap-vue/src/constants/classes.js +2 -0
- package/src/vendor/bootstrap-vue/src/constants/components.js +133 -0
- package/src/vendor/bootstrap-vue/src/constants/config.js +4 -0
- package/src/vendor/bootstrap-vue/src/constants/date.js +7 -0
- package/src/vendor/bootstrap-vue/src/constants/env.js +58 -0
- package/src/vendor/bootstrap-vue/src/constants/events.js +68 -0
- package/src/vendor/bootstrap-vue/src/constants/key-codes.js +14 -0
- package/src/vendor/bootstrap-vue/src/constants/popper.js +8 -0
- package/src/vendor/bootstrap-vue/src/constants/props.js +29 -0
- package/src/vendor/bootstrap-vue/src/constants/regex.js +60 -0
- package/src/vendor/bootstrap-vue/src/constants/safe-types.js +17 -0
- package/src/vendor/bootstrap-vue/src/constants/slots.js +64 -0
- package/src/vendor/bootstrap-vue/src/directives/hover/README.md +87 -0
- package/src/vendor/bootstrap-vue/src/directives/hover/hover.js +54 -0
- package/src/vendor/bootstrap-vue/src/directives/hover/hover.spec.js +49 -0
- package/src/vendor/bootstrap-vue/src/directives/hover/index.d.ts +11 -0
- package/src/vendor/bootstrap-vue/src/directives/hover/index.js +8 -0
- package/src/vendor/bootstrap-vue/src/directives/hover/package.json +13 -0
- package/src/vendor/bootstrap-vue/src/directives/index.d.ts +13 -0
- package/src/vendor/bootstrap-vue/src/directives/index.js +22 -0
- package/src/vendor/bootstrap-vue/src/directives/modal/index.d.ts +11 -0
- package/src/vendor/bootstrap-vue/src/directives/modal/index.js +8 -0
- package/src/vendor/bootstrap-vue/src/directives/modal/modal.js +115 -0
- package/src/vendor/bootstrap-vue/src/directives/modal/modal.spec.js +191 -0
- package/src/vendor/bootstrap-vue/src/directives/popover/README.md +648 -0
- package/src/vendor/bootstrap-vue/src/directives/popover/index.d.ts +11 -0
- package/src/vendor/bootstrap-vue/src/directives/popover/index.js +8 -0
- package/src/vendor/bootstrap-vue/src/directives/popover/package.json +111 -0
- package/src/vendor/bootstrap-vue/src/directives/popover/popover.js +275 -0
- package/src/vendor/bootstrap-vue/src/directives/popover/popover.spec.js +129 -0
- package/src/vendor/bootstrap-vue/src/directives/scrollspy/README.md +411 -0
- package/src/vendor/bootstrap-vue/src/directives/scrollspy/helpers/bv-scrollspy.class.js +480 -0
- package/src/vendor/bootstrap-vue/src/directives/scrollspy/index.d.ts +11 -0
- package/src/vendor/bootstrap-vue/src/directives/scrollspy/index.js +8 -0
- package/src/vendor/bootstrap-vue/src/directives/scrollspy/package.json +38 -0
- package/src/vendor/bootstrap-vue/src/directives/scrollspy/scrollspy.js +117 -0
- package/src/vendor/bootstrap-vue/src/directives/toggle/README.md +164 -0
- package/src/vendor/bootstrap-vue/src/directives/toggle/index.d.ts +11 -0
- package/src/vendor/bootstrap-vue/src/directives/toggle/index.js +8 -0
- package/src/vendor/bootstrap-vue/src/directives/toggle/package.json +26 -0
- package/src/vendor/bootstrap-vue/src/directives/toggle/toggle.js +274 -0
- package/src/vendor/bootstrap-vue/src/directives/toggle/toggle.spec.js +452 -0
- package/src/vendor/bootstrap-vue/src/directives/tooltip/README.md +522 -0
- package/src/vendor/bootstrap-vue/src/directives/tooltip/index.d.ts +11 -0
- package/src/vendor/bootstrap-vue/src/directives/tooltip/index.js +8 -0
- package/src/vendor/bootstrap-vue/src/directives/tooltip/package.json +131 -0
- package/src/vendor/bootstrap-vue/src/directives/tooltip/tooltip.js +270 -0
- package/src/vendor/bootstrap-vue/src/directives/tooltip/tooltip.spec.js +223 -0
- package/src/vendor/bootstrap-vue/src/directives/visible/README.md +244 -0
- package/src/vendor/bootstrap-vue/src/directives/visible/index.d.ts +11 -0
- package/src/vendor/bootstrap-vue/src/directives/visible/index.js +8 -0
- package/src/vendor/bootstrap-vue/src/directives/visible/package.json +24 -0
- package/src/vendor/bootstrap-vue/src/directives/visible/visible.js +184 -0
- package/src/vendor/bootstrap-vue/src/icons/README.md +874 -0
- package/src/vendor/bootstrap-vue/src/icons/_icons.scss +156 -0
- package/src/vendor/bootstrap-vue/src/icons/helpers/icon-base.js +134 -0
- package/src/vendor/bootstrap-vue/src/icons/helpers/make-icon.js +48 -0
- package/src/vendor/bootstrap-vue/src/icons/icon.js +54 -0
- package/src/vendor/bootstrap-vue/src/icons/icons.d.ts +2757 -0
- package/src/vendor/bootstrap-vue/src/icons/icons.js +8244 -0
- package/src/vendor/bootstrap-vue/src/icons/icons.spec.js +522 -0
- package/src/vendor/bootstrap-vue/src/icons/iconstack.js +31 -0
- package/src/vendor/bootstrap-vue/src/icons/iconstack.spec.js +161 -0
- package/src/vendor/bootstrap-vue/src/icons/index.d.ts +18 -0
- package/src/vendor/bootstrap-vue/src/icons/index.js +16 -0
- package/src/vendor/bootstrap-vue/src/icons/index.scss +1 -0
- package/src/vendor/bootstrap-vue/src/icons/package.json +72782 -0
- package/src/vendor/bootstrap-vue/src/icons/plugin.js +4159 -0
- package/src/vendor/bootstrap-vue/src/icons-only.js +33 -0
- package/src/vendor/bootstrap-vue/src/icons.scss +8 -0
- package/src/vendor/bootstrap-vue/src/index.d.ts +67 -0
- package/src/vendor/bootstrap-vue/src/index.js +366 -0
- package/src/vendor/bootstrap-vue/src/index.scss +17 -0
- package/src/vendor/bootstrap-vue/src/mixins/attrs.js +19 -0
- package/src/vendor/bootstrap-vue/src/mixins/attrs.spec.js +194 -0
- package/src/vendor/bootstrap-vue/src/mixins/card.js +23 -0
- package/src/vendor/bootstrap-vue/src/mixins/click-out.js +72 -0
- package/src/vendor/bootstrap-vue/src/mixins/click-out.spec.js +52 -0
- package/src/vendor/bootstrap-vue/src/mixins/dropdown.js +460 -0
- package/src/vendor/bootstrap-vue/src/mixins/focus-in.js +44 -0
- package/src/vendor/bootstrap-vue/src/mixins/focus-in.spec.js +53 -0
- package/src/vendor/bootstrap-vue/src/mixins/form-control.js +51 -0
- package/src/vendor/bootstrap-vue/src/mixins/form-custom.js +24 -0
- package/src/vendor/bootstrap-vue/src/mixins/form-options.js +73 -0
- package/src/vendor/bootstrap-vue/src/mixins/form-radio-check-group.js +162 -0
- package/src/vendor/bootstrap-vue/src/mixins/form-radio-check.js +332 -0
- package/src/vendor/bootstrap-vue/src/mixins/form-selection.js +60 -0
- package/src/vendor/bootstrap-vue/src/mixins/form-size.js +24 -0
- package/src/vendor/bootstrap-vue/src/mixins/form-state.js +47 -0
- package/src/vendor/bootstrap-vue/src/mixins/form-text.js +250 -0
- package/src/vendor/bootstrap-vue/src/mixins/form-validity.js +48 -0
- package/src/vendor/bootstrap-vue/src/mixins/has-listener.js +26 -0
- package/src/vendor/bootstrap-vue/src/mixins/id.js +51 -0
- package/src/vendor/bootstrap-vue/src/mixins/listen-on-document.js +64 -0
- package/src/vendor/bootstrap-vue/src/mixins/listen-on-document.spec.js +117 -0
- package/src/vendor/bootstrap-vue/src/mixins/listen-on-root.js +121 -0
- package/src/vendor/bootstrap-vue/src/mixins/listen-on-root.spec.js +77 -0
- package/src/vendor/bootstrap-vue/src/mixins/listen-on-window.js +64 -0
- package/src/vendor/bootstrap-vue/src/mixins/listen-on-window.spec.js +115 -0
- package/src/vendor/bootstrap-vue/src/mixins/listeners.js +24 -0
- package/src/vendor/bootstrap-vue/src/mixins/listeners.spec.js +245 -0
- package/src/vendor/bootstrap-vue/src/mixins/model.js +5 -0
- package/src/vendor/bootstrap-vue/src/mixins/normalize-slot.js +30 -0
- package/src/vendor/bootstrap-vue/src/mixins/pagination.js +670 -0
- package/src/vendor/bootstrap-vue/src/mixins/scoped-style.js +14 -0
- package/src/vendor/bootstrap-vue/src/mixins/use-parent.js +12 -0
- package/src/vendor/bootstrap-vue/src/utils/array.js +22 -0
- package/src/vendor/bootstrap-vue/src/utils/bv-event.class.js +60 -0
- package/src/vendor/bootstrap-vue/src/utils/bv-event.class.spec.js +66 -0
- package/src/vendor/bootstrap-vue/src/utils/cache.js +37 -0
- package/src/vendor/bootstrap-vue/src/utils/clone-deep.js +15 -0
- package/src/vendor/bootstrap-vue/src/utils/clone-deep.spec.js +70 -0
- package/src/vendor/bootstrap-vue/src/utils/config-set.js +80 -0
- package/src/vendor/bootstrap-vue/src/utils/config.js +72 -0
- package/src/vendor/bootstrap-vue/src/utils/config.spec.js +169 -0
- package/src/vendor/bootstrap-vue/src/utils/create-new-child-component.js +10 -0
- package/src/vendor/bootstrap-vue/src/utils/css-escape.js +73 -0
- package/src/vendor/bootstrap-vue/src/utils/css-escape.spec.js +82 -0
- package/src/vendor/bootstrap-vue/src/utils/date.js +130 -0
- package/src/vendor/bootstrap-vue/src/utils/date.spec.js +159 -0
- package/src/vendor/bootstrap-vue/src/utils/dom.js +308 -0
- package/src/vendor/bootstrap-vue/src/utils/dom.spec.js +291 -0
- package/src/vendor/bootstrap-vue/src/utils/element-to-vue-instance-registry.js +40 -0
- package/src/vendor/bootstrap-vue/src/utils/env.js +15 -0
- package/src/vendor/bootstrap-vue/src/utils/events.js +71 -0
- package/src/vendor/bootstrap-vue/src/utils/events.spec.js +41 -0
- package/src/vendor/bootstrap-vue/src/utils/get-event-root.js +3 -0
- package/src/vendor/bootstrap-vue/src/utils/get-instance-from-directive.js +4 -0
- package/src/vendor/bootstrap-vue/src/utils/get-scope-id.js +6 -0
- package/src/vendor/bootstrap-vue/src/utils/get.js +64 -0
- package/src/vendor/bootstrap-vue/src/utils/get.spec.js +109 -0
- package/src/vendor/bootstrap-vue/src/utils/html.js +8 -0
- package/src/vendor/bootstrap-vue/src/utils/identity.js +1 -0
- package/src/vendor/bootstrap-vue/src/utils/inspect.js +55 -0
- package/src/vendor/bootstrap-vue/src/utils/inspect.spec.js +251 -0
- package/src/vendor/bootstrap-vue/src/utils/locale.js +34 -0
- package/src/vendor/bootstrap-vue/src/utils/loose-equal.js +57 -0
- package/src/vendor/bootstrap-vue/src/utils/loose-equal.spec.js +203 -0
- package/src/vendor/bootstrap-vue/src/utils/loose-index-of.js +11 -0
- package/src/vendor/bootstrap-vue/src/utils/math.js +15 -0
- package/src/vendor/bootstrap-vue/src/utils/memoize.js +10 -0
- package/src/vendor/bootstrap-vue/src/utils/model.js +29 -0
- package/src/vendor/bootstrap-vue/src/utils/noop.js +1 -0
- package/src/vendor/bootstrap-vue/src/utils/normalize-slot.js +44 -0
- package/src/vendor/bootstrap-vue/src/utils/normalize-slot.spec.js +63 -0
- package/src/vendor/bootstrap-vue/src/utils/number.js +19 -0
- package/src/vendor/bootstrap-vue/src/utils/number.spec.js +72 -0
- package/src/vendor/bootstrap-vue/src/utils/object.js +68 -0
- package/src/vendor/bootstrap-vue/src/utils/object.spec.js +61 -0
- package/src/vendor/bootstrap-vue/src/utils/observe-dom.js +77 -0
- package/src/vendor/bootstrap-vue/src/utils/plugins.js +169 -0
- package/src/vendor/bootstrap-vue/src/utils/props.js +98 -0
- package/src/vendor/bootstrap-vue/src/utils/props.spec.js +112 -0
- package/src/vendor/bootstrap-vue/src/utils/router.js +145 -0
- package/src/vendor/bootstrap-vue/src/utils/router.spec.js +248 -0
- package/src/vendor/bootstrap-vue/src/utils/safe-vue-instance.js +13 -0
- package/src/vendor/bootstrap-vue/src/utils/stable-sort.js +31 -0
- package/src/vendor/bootstrap-vue/src/utils/string.js +75 -0
- package/src/vendor/bootstrap-vue/src/utils/string.spec.js +94 -0
- package/src/vendor/bootstrap-vue/src/utils/stringify-object-values.js +31 -0
- package/src/vendor/bootstrap-vue/src/utils/stringify-object-values.spec.js +47 -0
- package/src/vendor/bootstrap-vue/src/utils/warn.js +57 -0
- package/src/vendor/bootstrap-vue/src/utils/warn.spec.js +54 -0
- package/src/vendor/bootstrap-vue/src/vue-injections.d.ts +13 -0
- package/src/vendor/bootstrap-vue/src/vue.js +126 -0
|
@@ -8499,6 +8499,1982 @@
|
|
|
8499
8499
|
]
|
|
8500
8500
|
}
|
|
8501
8501
|
},
|
|
8502
|
+
"status": {
|
|
8503
|
+
"muted": {
|
|
8504
|
+
"background": {
|
|
8505
|
+
"color": {
|
|
8506
|
+
"default": {
|
|
8507
|
+
"value": "#333238",
|
|
8508
|
+
"$type": "color",
|
|
8509
|
+
"comment": "Used for the background of a subtle neutral status item when static or the default state when linked.",
|
|
8510
|
+
"filePath": "src/tokens/status.tokens.json",
|
|
8511
|
+
"isSource": true,
|
|
8512
|
+
"original": {
|
|
8513
|
+
"value": {
|
|
8514
|
+
"default": "{color.neutral.50}",
|
|
8515
|
+
"dark": "{color.neutral.900}"
|
|
8516
|
+
},
|
|
8517
|
+
"$type": "color",
|
|
8518
|
+
"comment": "Used for the background of a subtle neutral status item when static or the default state when linked."
|
|
8519
|
+
},
|
|
8520
|
+
"name": "STATUS_MUTED_BACKGROUND_COLOR_DEFAULT",
|
|
8521
|
+
"attributes": {},
|
|
8522
|
+
"path": [
|
|
8523
|
+
"status",
|
|
8524
|
+
"muted",
|
|
8525
|
+
"background",
|
|
8526
|
+
"color",
|
|
8527
|
+
"default"
|
|
8528
|
+
]
|
|
8529
|
+
},
|
|
8530
|
+
"active": {
|
|
8531
|
+
"value": "#434248",
|
|
8532
|
+
"$type": "color",
|
|
8533
|
+
"comment": "Used for the background of a subtle neutral status item in the active state.",
|
|
8534
|
+
"filePath": "src/tokens/status.tokens.json",
|
|
8535
|
+
"isSource": true,
|
|
8536
|
+
"original": {
|
|
8537
|
+
"value": {
|
|
8538
|
+
"default": "{color.neutral.100}",
|
|
8539
|
+
"dark": "{color.neutral.800}"
|
|
8540
|
+
},
|
|
8541
|
+
"$type": "color",
|
|
8542
|
+
"comment": "Used for the background of a subtle neutral status item in the active state."
|
|
8543
|
+
},
|
|
8544
|
+
"name": "STATUS_MUTED_BACKGROUND_COLOR_ACTIVE",
|
|
8545
|
+
"attributes": {},
|
|
8546
|
+
"path": [
|
|
8547
|
+
"status",
|
|
8548
|
+
"muted",
|
|
8549
|
+
"background",
|
|
8550
|
+
"color",
|
|
8551
|
+
"active"
|
|
8552
|
+
]
|
|
8553
|
+
}
|
|
8554
|
+
}
|
|
8555
|
+
},
|
|
8556
|
+
"border": {
|
|
8557
|
+
"color": {
|
|
8558
|
+
"hover": {
|
|
8559
|
+
"value": "#535158",
|
|
8560
|
+
"$type": "color",
|
|
8561
|
+
"comment": "Used for the border of a subtle neutral status item in the hover state.",
|
|
8562
|
+
"filePath": "src/tokens/status.tokens.json",
|
|
8563
|
+
"isSource": true,
|
|
8564
|
+
"original": {
|
|
8565
|
+
"value": {
|
|
8566
|
+
"default": "{color.neutral.200}",
|
|
8567
|
+
"dark": "{color.neutral.700}"
|
|
8568
|
+
},
|
|
8569
|
+
"$type": "color",
|
|
8570
|
+
"comment": "Used for the border of a subtle neutral status item in the hover state."
|
|
8571
|
+
},
|
|
8572
|
+
"name": "STATUS_MUTED_BORDER_COLOR_HOVER",
|
|
8573
|
+
"attributes": {},
|
|
8574
|
+
"path": [
|
|
8575
|
+
"status",
|
|
8576
|
+
"muted",
|
|
8577
|
+
"border",
|
|
8578
|
+
"color",
|
|
8579
|
+
"hover"
|
|
8580
|
+
]
|
|
8581
|
+
}
|
|
8582
|
+
}
|
|
8583
|
+
},
|
|
8584
|
+
"text": {
|
|
8585
|
+
"color": {
|
|
8586
|
+
"default": {
|
|
8587
|
+
"value": "#a4a3a8",
|
|
8588
|
+
"$type": "color",
|
|
8589
|
+
"comment": "Used for the text of a subtle neutral status item when static or the default state when linked.",
|
|
8590
|
+
"filePath": "src/tokens/status.tokens.json",
|
|
8591
|
+
"isSource": true,
|
|
8592
|
+
"original": {
|
|
8593
|
+
"value": {
|
|
8594
|
+
"default": "{color.neutral.600}",
|
|
8595
|
+
"dark": "{color.neutral.300}"
|
|
8596
|
+
},
|
|
8597
|
+
"$type": "color",
|
|
8598
|
+
"comment": "Used for the text of a subtle neutral status item when static or the default state when linked."
|
|
8599
|
+
},
|
|
8600
|
+
"name": "STATUS_MUTED_TEXT_COLOR_DEFAULT",
|
|
8601
|
+
"attributes": {},
|
|
8602
|
+
"path": [
|
|
8603
|
+
"status",
|
|
8604
|
+
"muted",
|
|
8605
|
+
"text",
|
|
8606
|
+
"color",
|
|
8607
|
+
"default"
|
|
8608
|
+
]
|
|
8609
|
+
},
|
|
8610
|
+
"hover": {
|
|
8611
|
+
"value": "#bfbfc3",
|
|
8612
|
+
"$type": "color",
|
|
8613
|
+
"comment": "Used for the text of a subtle neutral status item in the hover state.",
|
|
8614
|
+
"filePath": "src/tokens/status.tokens.json",
|
|
8615
|
+
"isSource": true,
|
|
8616
|
+
"original": {
|
|
8617
|
+
"value": {
|
|
8618
|
+
"default": "{color.neutral.700}",
|
|
8619
|
+
"dark": "{color.neutral.200}"
|
|
8620
|
+
},
|
|
8621
|
+
"$type": "color",
|
|
8622
|
+
"comment": "Used for the text of a subtle neutral status item in the hover state."
|
|
8623
|
+
},
|
|
8624
|
+
"name": "STATUS_MUTED_TEXT_COLOR_HOVER",
|
|
8625
|
+
"attributes": {},
|
|
8626
|
+
"path": [
|
|
8627
|
+
"status",
|
|
8628
|
+
"muted",
|
|
8629
|
+
"text",
|
|
8630
|
+
"color",
|
|
8631
|
+
"hover"
|
|
8632
|
+
]
|
|
8633
|
+
},
|
|
8634
|
+
"focus": {
|
|
8635
|
+
"value": "#bfbfc3",
|
|
8636
|
+
"$type": "color",
|
|
8637
|
+
"comment": "Used for the text of a subtle neutral status item in the focus state.",
|
|
8638
|
+
"filePath": "src/tokens/status.tokens.json",
|
|
8639
|
+
"isSource": true,
|
|
8640
|
+
"original": {
|
|
8641
|
+
"value": {
|
|
8642
|
+
"default": "{color.neutral.700}",
|
|
8643
|
+
"dark": "{color.neutral.200}"
|
|
8644
|
+
},
|
|
8645
|
+
"$type": "color",
|
|
8646
|
+
"comment": "Used for the text of a subtle neutral status item in the focus state."
|
|
8647
|
+
},
|
|
8648
|
+
"name": "STATUS_MUTED_TEXT_COLOR_FOCUS",
|
|
8649
|
+
"attributes": {},
|
|
8650
|
+
"path": [
|
|
8651
|
+
"status",
|
|
8652
|
+
"muted",
|
|
8653
|
+
"text",
|
|
8654
|
+
"color",
|
|
8655
|
+
"focus"
|
|
8656
|
+
]
|
|
8657
|
+
},
|
|
8658
|
+
"active": {
|
|
8659
|
+
"value": "#dcdcde",
|
|
8660
|
+
"$type": "color",
|
|
8661
|
+
"comment": "Used for the text of a subtle neutral status item in the active state.",
|
|
8662
|
+
"filePath": "src/tokens/status.tokens.json",
|
|
8663
|
+
"isSource": true,
|
|
8664
|
+
"original": {
|
|
8665
|
+
"value": {
|
|
8666
|
+
"default": "{color.neutral.800}",
|
|
8667
|
+
"dark": "{color.neutral.100}"
|
|
8668
|
+
},
|
|
8669
|
+
"$type": "color",
|
|
8670
|
+
"comment": "Used for the text of a subtle neutral status item in the active state."
|
|
8671
|
+
},
|
|
8672
|
+
"name": "STATUS_MUTED_TEXT_COLOR_ACTIVE",
|
|
8673
|
+
"attributes": {},
|
|
8674
|
+
"path": [
|
|
8675
|
+
"status",
|
|
8676
|
+
"muted",
|
|
8677
|
+
"text",
|
|
8678
|
+
"color",
|
|
8679
|
+
"active"
|
|
8680
|
+
]
|
|
8681
|
+
}
|
|
8682
|
+
}
|
|
8683
|
+
},
|
|
8684
|
+
"icon": {
|
|
8685
|
+
"color": {
|
|
8686
|
+
"default": {
|
|
8687
|
+
"value": "#89888d",
|
|
8688
|
+
"$type": "color",
|
|
8689
|
+
"comment": "Used for the icon of a subtle neutral status item when static or the default state when linked.",
|
|
8690
|
+
"filePath": "src/tokens/status.tokens.json",
|
|
8691
|
+
"isSource": true,
|
|
8692
|
+
"original": {
|
|
8693
|
+
"value": {
|
|
8694
|
+
"default": "{color.neutral.500}",
|
|
8695
|
+
"dark": "{color.neutral.400}"
|
|
8696
|
+
},
|
|
8697
|
+
"$type": "color",
|
|
8698
|
+
"comment": "Used for the icon of a subtle neutral status item when static or the default state when linked."
|
|
8699
|
+
},
|
|
8700
|
+
"name": "STATUS_MUTED_ICON_COLOR_DEFAULT",
|
|
8701
|
+
"attributes": {},
|
|
8702
|
+
"path": [
|
|
8703
|
+
"status",
|
|
8704
|
+
"muted",
|
|
8705
|
+
"icon",
|
|
8706
|
+
"color",
|
|
8707
|
+
"default"
|
|
8708
|
+
]
|
|
8709
|
+
},
|
|
8710
|
+
"hover": {
|
|
8711
|
+
"value": "#a4a3a8",
|
|
8712
|
+
"$type": "color",
|
|
8713
|
+
"comment": "Used for the icon of a subtle neutral status item in the hover state.",
|
|
8714
|
+
"filePath": "src/tokens/status.tokens.json",
|
|
8715
|
+
"isSource": true,
|
|
8716
|
+
"original": {
|
|
8717
|
+
"value": {
|
|
8718
|
+
"default": "{color.neutral.600}",
|
|
8719
|
+
"dark": "{color.neutral.300}"
|
|
8720
|
+
},
|
|
8721
|
+
"$type": "color",
|
|
8722
|
+
"comment": "Used for the icon of a subtle neutral status item in the hover state."
|
|
8723
|
+
},
|
|
8724
|
+
"name": "STATUS_MUTED_ICON_COLOR_HOVER",
|
|
8725
|
+
"attributes": {},
|
|
8726
|
+
"path": [
|
|
8727
|
+
"status",
|
|
8728
|
+
"muted",
|
|
8729
|
+
"icon",
|
|
8730
|
+
"color",
|
|
8731
|
+
"hover"
|
|
8732
|
+
]
|
|
8733
|
+
},
|
|
8734
|
+
"focus": {
|
|
8735
|
+
"value": "#a4a3a8",
|
|
8736
|
+
"$type": "color",
|
|
8737
|
+
"comment": "Used for the icon of a subtle neutral status item in the focus state.",
|
|
8738
|
+
"filePath": "src/tokens/status.tokens.json",
|
|
8739
|
+
"isSource": true,
|
|
8740
|
+
"original": {
|
|
8741
|
+
"value": {
|
|
8742
|
+
"default": "{color.neutral.600}",
|
|
8743
|
+
"dark": "{color.neutral.300}"
|
|
8744
|
+
},
|
|
8745
|
+
"$type": "color",
|
|
8746
|
+
"comment": "Used for the icon of a subtle neutral status item in the focus state."
|
|
8747
|
+
},
|
|
8748
|
+
"name": "STATUS_MUTED_ICON_COLOR_FOCUS",
|
|
8749
|
+
"attributes": {},
|
|
8750
|
+
"path": [
|
|
8751
|
+
"status",
|
|
8752
|
+
"muted",
|
|
8753
|
+
"icon",
|
|
8754
|
+
"color",
|
|
8755
|
+
"focus"
|
|
8756
|
+
]
|
|
8757
|
+
},
|
|
8758
|
+
"active": {
|
|
8759
|
+
"value": "#bfbfc3",
|
|
8760
|
+
"$type": "color",
|
|
8761
|
+
"comment": "Used for the icon of a subtle neutral status item in the active state.",
|
|
8762
|
+
"filePath": "src/tokens/status.tokens.json",
|
|
8763
|
+
"isSource": true,
|
|
8764
|
+
"original": {
|
|
8765
|
+
"value": {
|
|
8766
|
+
"default": "{color.neutral.700}",
|
|
8767
|
+
"dark": "{color.neutral.200}"
|
|
8768
|
+
},
|
|
8769
|
+
"$type": "color",
|
|
8770
|
+
"comment": "Used for the icon of a subtle neutral status item in the active state."
|
|
8771
|
+
},
|
|
8772
|
+
"name": "STATUS_MUTED_ICON_COLOR_ACTIVE",
|
|
8773
|
+
"attributes": {},
|
|
8774
|
+
"path": [
|
|
8775
|
+
"status",
|
|
8776
|
+
"muted",
|
|
8777
|
+
"icon",
|
|
8778
|
+
"color",
|
|
8779
|
+
"active"
|
|
8780
|
+
]
|
|
8781
|
+
}
|
|
8782
|
+
}
|
|
8783
|
+
}
|
|
8784
|
+
},
|
|
8785
|
+
"neutral": {
|
|
8786
|
+
"background": {
|
|
8787
|
+
"color": {
|
|
8788
|
+
"default": {
|
|
8789
|
+
"value": "#434248",
|
|
8790
|
+
"$type": "color",
|
|
8791
|
+
"comment": "Used for the background of a neutral status item when static or the default state when linked.",
|
|
8792
|
+
"filePath": "src/tokens/status.tokens.json",
|
|
8793
|
+
"isSource": true,
|
|
8794
|
+
"original": {
|
|
8795
|
+
"value": {
|
|
8796
|
+
"default": "{color.neutral.100}",
|
|
8797
|
+
"dark": "{color.neutral.800}"
|
|
8798
|
+
},
|
|
8799
|
+
"$type": "color",
|
|
8800
|
+
"comment": "Used for the background of a neutral status item when static or the default state when linked."
|
|
8801
|
+
},
|
|
8802
|
+
"name": "STATUS_NEUTRAL_BACKGROUND_COLOR_DEFAULT",
|
|
8803
|
+
"attributes": {},
|
|
8804
|
+
"path": [
|
|
8805
|
+
"status",
|
|
8806
|
+
"neutral",
|
|
8807
|
+
"background",
|
|
8808
|
+
"color",
|
|
8809
|
+
"default"
|
|
8810
|
+
]
|
|
8811
|
+
},
|
|
8812
|
+
"active": {
|
|
8813
|
+
"value": "#535158",
|
|
8814
|
+
"$type": "color",
|
|
8815
|
+
"comment": "Used for the background of a neutral status item in the active state.",
|
|
8816
|
+
"filePath": "src/tokens/status.tokens.json",
|
|
8817
|
+
"isSource": true,
|
|
8818
|
+
"original": {
|
|
8819
|
+
"value": {
|
|
8820
|
+
"default": "{color.neutral.200}",
|
|
8821
|
+
"dark": "{color.neutral.700}"
|
|
8822
|
+
},
|
|
8823
|
+
"$type": "color",
|
|
8824
|
+
"comment": "Used for the background of a neutral status item in the active state."
|
|
8825
|
+
},
|
|
8826
|
+
"name": "STATUS_NEUTRAL_BACKGROUND_COLOR_ACTIVE",
|
|
8827
|
+
"attributes": {},
|
|
8828
|
+
"path": [
|
|
8829
|
+
"status",
|
|
8830
|
+
"neutral",
|
|
8831
|
+
"background",
|
|
8832
|
+
"color",
|
|
8833
|
+
"active"
|
|
8834
|
+
]
|
|
8835
|
+
}
|
|
8836
|
+
}
|
|
8837
|
+
},
|
|
8838
|
+
"border": {
|
|
8839
|
+
"color": {
|
|
8840
|
+
"hover": {
|
|
8841
|
+
"value": "#535158",
|
|
8842
|
+
"$type": "color",
|
|
8843
|
+
"comment": "Used for the border of a neutral status item in the hover state.",
|
|
8844
|
+
"filePath": "src/tokens/status.tokens.json",
|
|
8845
|
+
"isSource": true,
|
|
8846
|
+
"original": {
|
|
8847
|
+
"value": {
|
|
8848
|
+
"default": "{color.neutral.200}",
|
|
8849
|
+
"dark": "{color.neutral.700}"
|
|
8850
|
+
},
|
|
8851
|
+
"$type": "color",
|
|
8852
|
+
"comment": "Used for the border of a neutral status item in the hover state."
|
|
8853
|
+
},
|
|
8854
|
+
"name": "STATUS_NEUTRAL_BORDER_COLOR_HOVER",
|
|
8855
|
+
"attributes": {},
|
|
8856
|
+
"path": [
|
|
8857
|
+
"status",
|
|
8858
|
+
"neutral",
|
|
8859
|
+
"border",
|
|
8860
|
+
"color",
|
|
8861
|
+
"hover"
|
|
8862
|
+
]
|
|
8863
|
+
}
|
|
8864
|
+
}
|
|
8865
|
+
},
|
|
8866
|
+
"text": {
|
|
8867
|
+
"color": {
|
|
8868
|
+
"default": {
|
|
8869
|
+
"value": "#bfbfc3",
|
|
8870
|
+
"$type": "color",
|
|
8871
|
+
"comment": "Used for the text of a neutral status item when static or the default state when linked.",
|
|
8872
|
+
"filePath": "src/tokens/status.tokens.json",
|
|
8873
|
+
"isSource": true,
|
|
8874
|
+
"original": {
|
|
8875
|
+
"value": {
|
|
8876
|
+
"default": "{color.neutral.700}",
|
|
8877
|
+
"dark": "{color.neutral.200}"
|
|
8878
|
+
},
|
|
8879
|
+
"$type": "color",
|
|
8880
|
+
"comment": "Used for the text of a neutral status item when static or the default state when linked."
|
|
8881
|
+
},
|
|
8882
|
+
"name": "STATUS_NEUTRAL_TEXT_COLOR_DEFAULT",
|
|
8883
|
+
"attributes": {},
|
|
8884
|
+
"path": [
|
|
8885
|
+
"status",
|
|
8886
|
+
"neutral",
|
|
8887
|
+
"text",
|
|
8888
|
+
"color",
|
|
8889
|
+
"default"
|
|
8890
|
+
]
|
|
8891
|
+
},
|
|
8892
|
+
"hover": {
|
|
8893
|
+
"value": "#dcdcde",
|
|
8894
|
+
"$type": "color",
|
|
8895
|
+
"comment": "Used for the text of a neutral status item in the hover state.",
|
|
8896
|
+
"filePath": "src/tokens/status.tokens.json",
|
|
8897
|
+
"isSource": true,
|
|
8898
|
+
"original": {
|
|
8899
|
+
"value": {
|
|
8900
|
+
"default": "{color.neutral.800}",
|
|
8901
|
+
"dark": "{color.neutral.100}"
|
|
8902
|
+
},
|
|
8903
|
+
"$type": "color",
|
|
8904
|
+
"comment": "Used for the text of a neutral status item in the hover state."
|
|
8905
|
+
},
|
|
8906
|
+
"name": "STATUS_NEUTRAL_TEXT_COLOR_HOVER",
|
|
8907
|
+
"attributes": {},
|
|
8908
|
+
"path": [
|
|
8909
|
+
"status",
|
|
8910
|
+
"neutral",
|
|
8911
|
+
"text",
|
|
8912
|
+
"color",
|
|
8913
|
+
"hover"
|
|
8914
|
+
]
|
|
8915
|
+
},
|
|
8916
|
+
"focus": {
|
|
8917
|
+
"value": "#dcdcde",
|
|
8918
|
+
"$type": "color",
|
|
8919
|
+
"comment": "Used for the text of a neutral status item in the focus state.",
|
|
8920
|
+
"filePath": "src/tokens/status.tokens.json",
|
|
8921
|
+
"isSource": true,
|
|
8922
|
+
"original": {
|
|
8923
|
+
"value": {
|
|
8924
|
+
"default": "{color.neutral.800}",
|
|
8925
|
+
"dark": "{color.neutral.100}"
|
|
8926
|
+
},
|
|
8927
|
+
"$type": "color",
|
|
8928
|
+
"comment": "Used for the text of a neutral status item in the focus state."
|
|
8929
|
+
},
|
|
8930
|
+
"name": "STATUS_NEUTRAL_TEXT_COLOR_FOCUS",
|
|
8931
|
+
"attributes": {},
|
|
8932
|
+
"path": [
|
|
8933
|
+
"status",
|
|
8934
|
+
"neutral",
|
|
8935
|
+
"text",
|
|
8936
|
+
"color",
|
|
8937
|
+
"focus"
|
|
8938
|
+
]
|
|
8939
|
+
},
|
|
8940
|
+
"active": {
|
|
8941
|
+
"value": "#ececef",
|
|
8942
|
+
"$type": "color",
|
|
8943
|
+
"comment": "Used for the text of a neutral status item in the active state.",
|
|
8944
|
+
"filePath": "src/tokens/status.tokens.json",
|
|
8945
|
+
"isSource": true,
|
|
8946
|
+
"original": {
|
|
8947
|
+
"value": {
|
|
8948
|
+
"default": "{color.neutral.900}",
|
|
8949
|
+
"dark": "{color.neutral.50}"
|
|
8950
|
+
},
|
|
8951
|
+
"$type": "color",
|
|
8952
|
+
"comment": "Used for the text of a neutral status item in the active state."
|
|
8953
|
+
},
|
|
8954
|
+
"name": "STATUS_NEUTRAL_TEXT_COLOR_ACTIVE",
|
|
8955
|
+
"attributes": {},
|
|
8956
|
+
"path": [
|
|
8957
|
+
"status",
|
|
8958
|
+
"neutral",
|
|
8959
|
+
"text",
|
|
8960
|
+
"color",
|
|
8961
|
+
"active"
|
|
8962
|
+
]
|
|
8963
|
+
}
|
|
8964
|
+
}
|
|
8965
|
+
},
|
|
8966
|
+
"icon": {
|
|
8967
|
+
"color": {
|
|
8968
|
+
"default": {
|
|
8969
|
+
"value": "#89888d",
|
|
8970
|
+
"$type": "color",
|
|
8971
|
+
"comment": "Used for the icon of a neutral status item when static or the default state when linked.",
|
|
8972
|
+
"filePath": "src/tokens/status.tokens.json",
|
|
8973
|
+
"isSource": true,
|
|
8974
|
+
"original": {
|
|
8975
|
+
"value": {
|
|
8976
|
+
"default": "{color.neutral.500}",
|
|
8977
|
+
"dark": "{color.neutral.400}"
|
|
8978
|
+
},
|
|
8979
|
+
"$type": "color",
|
|
8980
|
+
"comment": "Used for the icon of a neutral status item when static or the default state when linked."
|
|
8981
|
+
},
|
|
8982
|
+
"name": "STATUS_NEUTRAL_ICON_COLOR_DEFAULT",
|
|
8983
|
+
"attributes": {},
|
|
8984
|
+
"path": [
|
|
8985
|
+
"status",
|
|
8986
|
+
"neutral",
|
|
8987
|
+
"icon",
|
|
8988
|
+
"color",
|
|
8989
|
+
"default"
|
|
8990
|
+
]
|
|
8991
|
+
},
|
|
8992
|
+
"hover": {
|
|
8993
|
+
"value": "#a4a3a8",
|
|
8994
|
+
"$type": "color",
|
|
8995
|
+
"comment": "Used for the icon of a neutral status item in the hover state.",
|
|
8996
|
+
"filePath": "src/tokens/status.tokens.json",
|
|
8997
|
+
"isSource": true,
|
|
8998
|
+
"original": {
|
|
8999
|
+
"value": {
|
|
9000
|
+
"default": "{color.neutral.600}",
|
|
9001
|
+
"dark": "{color.neutral.300}"
|
|
9002
|
+
},
|
|
9003
|
+
"$type": "color",
|
|
9004
|
+
"comment": "Used for the icon of a neutral status item in the hover state."
|
|
9005
|
+
},
|
|
9006
|
+
"name": "STATUS_NEUTRAL_ICON_COLOR_HOVER",
|
|
9007
|
+
"attributes": {},
|
|
9008
|
+
"path": [
|
|
9009
|
+
"status",
|
|
9010
|
+
"neutral",
|
|
9011
|
+
"icon",
|
|
9012
|
+
"color",
|
|
9013
|
+
"hover"
|
|
9014
|
+
]
|
|
9015
|
+
},
|
|
9016
|
+
"focus": {
|
|
9017
|
+
"value": "#a4a3a8",
|
|
9018
|
+
"$type": "color",
|
|
9019
|
+
"comment": "Used for the icon of a neutral status item in the focus state.",
|
|
9020
|
+
"filePath": "src/tokens/status.tokens.json",
|
|
9021
|
+
"isSource": true,
|
|
9022
|
+
"original": {
|
|
9023
|
+
"value": {
|
|
9024
|
+
"default": "{color.neutral.600}",
|
|
9025
|
+
"dark": "{color.neutral.300}"
|
|
9026
|
+
},
|
|
9027
|
+
"$type": "color",
|
|
9028
|
+
"comment": "Used for the icon of a neutral status item in the focus state."
|
|
9029
|
+
},
|
|
9030
|
+
"name": "STATUS_NEUTRAL_ICON_COLOR_FOCUS",
|
|
9031
|
+
"attributes": {},
|
|
9032
|
+
"path": [
|
|
9033
|
+
"status",
|
|
9034
|
+
"neutral",
|
|
9035
|
+
"icon",
|
|
9036
|
+
"color",
|
|
9037
|
+
"focus"
|
|
9038
|
+
]
|
|
9039
|
+
},
|
|
9040
|
+
"active": {
|
|
9041
|
+
"value": "#bfbfc3",
|
|
9042
|
+
"$type": "color",
|
|
9043
|
+
"comment": "Used for the icon of a neutral status item in the active state.",
|
|
9044
|
+
"filePath": "src/tokens/status.tokens.json",
|
|
9045
|
+
"isSource": true,
|
|
9046
|
+
"original": {
|
|
9047
|
+
"value": {
|
|
9048
|
+
"default": "{color.neutral.700}",
|
|
9049
|
+
"dark": "{color.neutral.200}"
|
|
9050
|
+
},
|
|
9051
|
+
"$type": "color",
|
|
9052
|
+
"comment": "Used for the icon of a neutral status item in the active state."
|
|
9053
|
+
},
|
|
9054
|
+
"name": "STATUS_NEUTRAL_ICON_COLOR_ACTIVE",
|
|
9055
|
+
"attributes": {},
|
|
9056
|
+
"path": [
|
|
9057
|
+
"status",
|
|
9058
|
+
"neutral",
|
|
9059
|
+
"icon",
|
|
9060
|
+
"color",
|
|
9061
|
+
"active"
|
|
9062
|
+
]
|
|
9063
|
+
}
|
|
9064
|
+
}
|
|
9065
|
+
}
|
|
9066
|
+
},
|
|
9067
|
+
"info": {
|
|
9068
|
+
"background": {
|
|
9069
|
+
"color": {
|
|
9070
|
+
"default": {
|
|
9071
|
+
"value": "#064787",
|
|
9072
|
+
"$type": "color",
|
|
9073
|
+
"comment": "Used for the background of an informational status item when static or the default state when linked.",
|
|
9074
|
+
"filePath": "src/tokens/status.tokens.json",
|
|
9075
|
+
"isSource": true,
|
|
9076
|
+
"original": {
|
|
9077
|
+
"value": {
|
|
9078
|
+
"default": "{color.blue.100}",
|
|
9079
|
+
"dark": "{color.blue.800}"
|
|
9080
|
+
},
|
|
9081
|
+
"$type": "color",
|
|
9082
|
+
"comment": "Used for the background of an informational status item when static or the default state when linked."
|
|
9083
|
+
},
|
|
9084
|
+
"name": "STATUS_INFO_BACKGROUND_COLOR_DEFAULT",
|
|
9085
|
+
"attributes": {},
|
|
9086
|
+
"path": [
|
|
9087
|
+
"status",
|
|
9088
|
+
"info",
|
|
9089
|
+
"background",
|
|
9090
|
+
"color",
|
|
9091
|
+
"default"
|
|
9092
|
+
]
|
|
9093
|
+
},
|
|
9094
|
+
"active": {
|
|
9095
|
+
"value": "#0b5cad",
|
|
9096
|
+
"$type": "color",
|
|
9097
|
+
"comment": "Used for the background of an informational status item in the active state.",
|
|
9098
|
+
"filePath": "src/tokens/status.tokens.json",
|
|
9099
|
+
"isSource": true,
|
|
9100
|
+
"original": {
|
|
9101
|
+
"value": {
|
|
9102
|
+
"default": "{color.blue.200}",
|
|
9103
|
+
"dark": "{color.blue.700}"
|
|
9104
|
+
},
|
|
9105
|
+
"$type": "color",
|
|
9106
|
+
"comment": "Used for the background of an informational status item in the active state."
|
|
9107
|
+
},
|
|
9108
|
+
"name": "STATUS_INFO_BACKGROUND_COLOR_ACTIVE",
|
|
9109
|
+
"attributes": {},
|
|
9110
|
+
"path": [
|
|
9111
|
+
"status",
|
|
9112
|
+
"info",
|
|
9113
|
+
"background",
|
|
9114
|
+
"color",
|
|
9115
|
+
"active"
|
|
9116
|
+
]
|
|
9117
|
+
}
|
|
9118
|
+
}
|
|
9119
|
+
},
|
|
9120
|
+
"border": {
|
|
9121
|
+
"color": {
|
|
9122
|
+
"hover": {
|
|
9123
|
+
"value": "#0b5cad",
|
|
9124
|
+
"$type": "color",
|
|
9125
|
+
"comment": "Used for the border of an informational status item in the hover state.",
|
|
9126
|
+
"filePath": "src/tokens/status.tokens.json",
|
|
9127
|
+
"isSource": true,
|
|
9128
|
+
"original": {
|
|
9129
|
+
"value": {
|
|
9130
|
+
"default": "{color.blue.200}",
|
|
9131
|
+
"dark": "{color.blue.700}"
|
|
9132
|
+
},
|
|
9133
|
+
"$type": "color",
|
|
9134
|
+
"comment": "Used for the border of an informational status item in the hover state."
|
|
9135
|
+
},
|
|
9136
|
+
"name": "STATUS_INFO_BORDER_COLOR_HOVER",
|
|
9137
|
+
"attributes": {},
|
|
9138
|
+
"path": [
|
|
9139
|
+
"status",
|
|
9140
|
+
"info",
|
|
9141
|
+
"border",
|
|
9142
|
+
"color",
|
|
9143
|
+
"hover"
|
|
9144
|
+
]
|
|
9145
|
+
}
|
|
9146
|
+
}
|
|
9147
|
+
},
|
|
9148
|
+
"text": {
|
|
9149
|
+
"color": {
|
|
9150
|
+
"default": {
|
|
9151
|
+
"value": "#9dc7f1",
|
|
9152
|
+
"$type": "color",
|
|
9153
|
+
"comment": "Used for the text of an informational status item when static or the default state when linked.",
|
|
9154
|
+
"filePath": "src/tokens/status.tokens.json",
|
|
9155
|
+
"isSource": true,
|
|
9156
|
+
"original": {
|
|
9157
|
+
"value": {
|
|
9158
|
+
"default": "{color.blue.700}",
|
|
9159
|
+
"dark": "{color.blue.200}"
|
|
9160
|
+
},
|
|
9161
|
+
"$type": "color",
|
|
9162
|
+
"comment": "Used for the text of an informational status item when static or the default state when linked."
|
|
9163
|
+
},
|
|
9164
|
+
"name": "STATUS_INFO_TEXT_COLOR_DEFAULT",
|
|
9165
|
+
"attributes": {},
|
|
9166
|
+
"path": [
|
|
9167
|
+
"status",
|
|
9168
|
+
"info",
|
|
9169
|
+
"text",
|
|
9170
|
+
"color",
|
|
9171
|
+
"default"
|
|
9172
|
+
]
|
|
9173
|
+
},
|
|
9174
|
+
"hover": {
|
|
9175
|
+
"value": "#cbe2f9",
|
|
9176
|
+
"$type": "color",
|
|
9177
|
+
"comment": "Used for the text of an informational status item in the hover state.",
|
|
9178
|
+
"filePath": "src/tokens/status.tokens.json",
|
|
9179
|
+
"isSource": true,
|
|
9180
|
+
"original": {
|
|
9181
|
+
"value": {
|
|
9182
|
+
"default": "{color.blue.800}",
|
|
9183
|
+
"dark": "{color.blue.100}"
|
|
9184
|
+
},
|
|
9185
|
+
"$type": "color",
|
|
9186
|
+
"comment": "Used for the text of an informational status item in the hover state."
|
|
9187
|
+
},
|
|
9188
|
+
"name": "STATUS_INFO_TEXT_COLOR_HOVER",
|
|
9189
|
+
"attributes": {},
|
|
9190
|
+
"path": [
|
|
9191
|
+
"status",
|
|
9192
|
+
"info",
|
|
9193
|
+
"text",
|
|
9194
|
+
"color",
|
|
9195
|
+
"hover"
|
|
9196
|
+
]
|
|
9197
|
+
},
|
|
9198
|
+
"focus": {
|
|
9199
|
+
"value": "#cbe2f9",
|
|
9200
|
+
"$type": "color",
|
|
9201
|
+
"comment": "Used for the text of an informational status item in the focus state.",
|
|
9202
|
+
"filePath": "src/tokens/status.tokens.json",
|
|
9203
|
+
"isSource": true,
|
|
9204
|
+
"original": {
|
|
9205
|
+
"value": {
|
|
9206
|
+
"default": "{color.blue.800}",
|
|
9207
|
+
"dark": "{color.blue.100}"
|
|
9208
|
+
},
|
|
9209
|
+
"$type": "color",
|
|
9210
|
+
"comment": "Used for the text of an informational status item in the focus state."
|
|
9211
|
+
},
|
|
9212
|
+
"name": "STATUS_INFO_TEXT_COLOR_FOCUS",
|
|
9213
|
+
"attributes": {},
|
|
9214
|
+
"path": [
|
|
9215
|
+
"status",
|
|
9216
|
+
"info",
|
|
9217
|
+
"text",
|
|
9218
|
+
"color",
|
|
9219
|
+
"focus"
|
|
9220
|
+
]
|
|
9221
|
+
},
|
|
9222
|
+
"active": {
|
|
9223
|
+
"value": "#e9f3fc",
|
|
9224
|
+
"$type": "color",
|
|
9225
|
+
"comment": "Used for the text of an informational status item in the active state.",
|
|
9226
|
+
"filePath": "src/tokens/status.tokens.json",
|
|
9227
|
+
"isSource": true,
|
|
9228
|
+
"original": {
|
|
9229
|
+
"value": {
|
|
9230
|
+
"default": "{color.blue.900}",
|
|
9231
|
+
"dark": "{color.blue.50}"
|
|
9232
|
+
},
|
|
9233
|
+
"$type": "color",
|
|
9234
|
+
"comment": "Used for the text of an informational status item in the active state."
|
|
9235
|
+
},
|
|
9236
|
+
"name": "STATUS_INFO_TEXT_COLOR_ACTIVE",
|
|
9237
|
+
"attributes": {},
|
|
9238
|
+
"path": [
|
|
9239
|
+
"status",
|
|
9240
|
+
"info",
|
|
9241
|
+
"text",
|
|
9242
|
+
"color",
|
|
9243
|
+
"active"
|
|
9244
|
+
]
|
|
9245
|
+
}
|
|
9246
|
+
}
|
|
9247
|
+
},
|
|
9248
|
+
"icon": {
|
|
9249
|
+
"color": {
|
|
9250
|
+
"default": {
|
|
9251
|
+
"value": "#428fdc",
|
|
9252
|
+
"$type": "color",
|
|
9253
|
+
"comment": "Used for the icon of an informational status item when static or the default state when linked.",
|
|
9254
|
+
"filePath": "src/tokens/status.tokens.json",
|
|
9255
|
+
"isSource": true,
|
|
9256
|
+
"original": {
|
|
9257
|
+
"value": {
|
|
9258
|
+
"default": "{color.blue.500}",
|
|
9259
|
+
"dark": "{color.blue.400}"
|
|
9260
|
+
},
|
|
9261
|
+
"$type": "color",
|
|
9262
|
+
"comment": "Used for the icon of an informational status item when static or the default state when linked."
|
|
9263
|
+
},
|
|
9264
|
+
"name": "STATUS_INFO_ICON_COLOR_DEFAULT",
|
|
9265
|
+
"attributes": {},
|
|
9266
|
+
"path": [
|
|
9267
|
+
"status",
|
|
9268
|
+
"info",
|
|
9269
|
+
"icon",
|
|
9270
|
+
"color",
|
|
9271
|
+
"default"
|
|
9272
|
+
]
|
|
9273
|
+
},
|
|
9274
|
+
"hover": {
|
|
9275
|
+
"value": "#63a6e9",
|
|
9276
|
+
"$type": "color",
|
|
9277
|
+
"comment": "Used for the icon of an informational status item in the hover state.",
|
|
9278
|
+
"filePath": "src/tokens/status.tokens.json",
|
|
9279
|
+
"isSource": true,
|
|
9280
|
+
"original": {
|
|
9281
|
+
"value": {
|
|
9282
|
+
"default": "{color.blue.600}",
|
|
9283
|
+
"dark": "{color.blue.300}"
|
|
9284
|
+
},
|
|
9285
|
+
"$type": "color",
|
|
9286
|
+
"comment": "Used for the icon of an informational status item in the hover state."
|
|
9287
|
+
},
|
|
9288
|
+
"name": "STATUS_INFO_ICON_COLOR_HOVER",
|
|
9289
|
+
"attributes": {},
|
|
9290
|
+
"path": [
|
|
9291
|
+
"status",
|
|
9292
|
+
"info",
|
|
9293
|
+
"icon",
|
|
9294
|
+
"color",
|
|
9295
|
+
"hover"
|
|
9296
|
+
]
|
|
9297
|
+
},
|
|
9298
|
+
"focus": {
|
|
9299
|
+
"value": "#63a6e9",
|
|
9300
|
+
"$type": "color",
|
|
9301
|
+
"comment": "Used for the icon of an informational status item in the focus state.",
|
|
9302
|
+
"filePath": "src/tokens/status.tokens.json",
|
|
9303
|
+
"isSource": true,
|
|
9304
|
+
"original": {
|
|
9305
|
+
"value": {
|
|
9306
|
+
"default": "{color.blue.600}",
|
|
9307
|
+
"dark": "{color.blue.300}"
|
|
9308
|
+
},
|
|
9309
|
+
"$type": "color",
|
|
9310
|
+
"comment": "Used for the icon of an informational status item in the focus state."
|
|
9311
|
+
},
|
|
9312
|
+
"name": "STATUS_INFO_ICON_COLOR_FOCUS",
|
|
9313
|
+
"attributes": {},
|
|
9314
|
+
"path": [
|
|
9315
|
+
"status",
|
|
9316
|
+
"info",
|
|
9317
|
+
"icon",
|
|
9318
|
+
"color",
|
|
9319
|
+
"focus"
|
|
9320
|
+
]
|
|
9321
|
+
},
|
|
9322
|
+
"active": {
|
|
9323
|
+
"value": "#9dc7f1",
|
|
9324
|
+
"$type": "color",
|
|
9325
|
+
"comment": "Used for the icon of an informational status item in the active state.",
|
|
9326
|
+
"filePath": "src/tokens/status.tokens.json",
|
|
9327
|
+
"isSource": true,
|
|
9328
|
+
"original": {
|
|
9329
|
+
"value": {
|
|
9330
|
+
"default": "{color.blue.700}",
|
|
9331
|
+
"dark": "{color.blue.200}"
|
|
9332
|
+
},
|
|
9333
|
+
"$type": "color",
|
|
9334
|
+
"comment": "Used for the icon of an informational status item in the active state."
|
|
9335
|
+
},
|
|
9336
|
+
"name": "STATUS_INFO_ICON_COLOR_ACTIVE",
|
|
9337
|
+
"attributes": {},
|
|
9338
|
+
"path": [
|
|
9339
|
+
"status",
|
|
9340
|
+
"info",
|
|
9341
|
+
"icon",
|
|
9342
|
+
"color",
|
|
9343
|
+
"active"
|
|
9344
|
+
]
|
|
9345
|
+
}
|
|
9346
|
+
}
|
|
9347
|
+
}
|
|
9348
|
+
},
|
|
9349
|
+
"success": {
|
|
9350
|
+
"background": {
|
|
9351
|
+
"color": {
|
|
9352
|
+
"default": {
|
|
9353
|
+
"value": "#0d532a",
|
|
9354
|
+
"$type": "color",
|
|
9355
|
+
"comment": "Used for the background of a success status item when static or the default state when linked.",
|
|
9356
|
+
"filePath": "src/tokens/status.tokens.json",
|
|
9357
|
+
"isSource": true,
|
|
9358
|
+
"original": {
|
|
9359
|
+
"value": {
|
|
9360
|
+
"default": "{color.green.100}",
|
|
9361
|
+
"dark": "{color.green.800}"
|
|
9362
|
+
},
|
|
9363
|
+
"$type": "color",
|
|
9364
|
+
"comment": "Used for the background of a success status item when static or the default state when linked."
|
|
9365
|
+
},
|
|
9366
|
+
"name": "STATUS_SUCCESS_BACKGROUND_COLOR_DEFAULT",
|
|
9367
|
+
"attributes": {},
|
|
9368
|
+
"path": [
|
|
9369
|
+
"status",
|
|
9370
|
+
"success",
|
|
9371
|
+
"background",
|
|
9372
|
+
"color",
|
|
9373
|
+
"default"
|
|
9374
|
+
]
|
|
9375
|
+
},
|
|
9376
|
+
"active": {
|
|
9377
|
+
"value": "#24663b",
|
|
9378
|
+
"$type": "color",
|
|
9379
|
+
"comment": "Used for the background of a success status item in the active state.",
|
|
9380
|
+
"filePath": "src/tokens/status.tokens.json",
|
|
9381
|
+
"isSource": true,
|
|
9382
|
+
"original": {
|
|
9383
|
+
"value": {
|
|
9384
|
+
"default": "{color.green.200}",
|
|
9385
|
+
"dark": "{color.green.700}"
|
|
9386
|
+
},
|
|
9387
|
+
"$type": "color",
|
|
9388
|
+
"comment": "Used for the background of a success status item in the active state."
|
|
9389
|
+
},
|
|
9390
|
+
"name": "STATUS_SUCCESS_BACKGROUND_COLOR_ACTIVE",
|
|
9391
|
+
"attributes": {},
|
|
9392
|
+
"path": [
|
|
9393
|
+
"status",
|
|
9394
|
+
"success",
|
|
9395
|
+
"background",
|
|
9396
|
+
"color",
|
|
9397
|
+
"active"
|
|
9398
|
+
]
|
|
9399
|
+
}
|
|
9400
|
+
}
|
|
9401
|
+
},
|
|
9402
|
+
"border": {
|
|
9403
|
+
"color": {
|
|
9404
|
+
"hover": {
|
|
9405
|
+
"value": "#24663b",
|
|
9406
|
+
"$type": "color",
|
|
9407
|
+
"comment": "Used for the border of a success status item in the hover state.",
|
|
9408
|
+
"filePath": "src/tokens/status.tokens.json",
|
|
9409
|
+
"isSource": true,
|
|
9410
|
+
"original": {
|
|
9411
|
+
"value": {
|
|
9412
|
+
"default": "{color.green.200}",
|
|
9413
|
+
"dark": "{color.green.700}"
|
|
9414
|
+
},
|
|
9415
|
+
"$type": "color",
|
|
9416
|
+
"comment": "Used for the border of a success status item in the hover state."
|
|
9417
|
+
},
|
|
9418
|
+
"name": "STATUS_SUCCESS_BORDER_COLOR_HOVER",
|
|
9419
|
+
"attributes": {},
|
|
9420
|
+
"path": [
|
|
9421
|
+
"status",
|
|
9422
|
+
"success",
|
|
9423
|
+
"border",
|
|
9424
|
+
"color",
|
|
9425
|
+
"hover"
|
|
9426
|
+
]
|
|
9427
|
+
}
|
|
9428
|
+
}
|
|
9429
|
+
},
|
|
9430
|
+
"text": {
|
|
9431
|
+
"color": {
|
|
9432
|
+
"default": {
|
|
9433
|
+
"value": "#91d4a8",
|
|
9434
|
+
"$type": "color",
|
|
9435
|
+
"comment": "Used for the text of a success status item when static or the default state when linked.",
|
|
9436
|
+
"filePath": "src/tokens/status.tokens.json",
|
|
9437
|
+
"isSource": true,
|
|
9438
|
+
"original": {
|
|
9439
|
+
"value": {
|
|
9440
|
+
"default": "{color.green.700}",
|
|
9441
|
+
"dark": "{color.green.200}"
|
|
9442
|
+
},
|
|
9443
|
+
"$type": "color",
|
|
9444
|
+
"comment": "Used for the text of a success status item when static or the default state when linked."
|
|
9445
|
+
},
|
|
9446
|
+
"name": "STATUS_SUCCESS_TEXT_COLOR_DEFAULT",
|
|
9447
|
+
"attributes": {},
|
|
9448
|
+
"path": [
|
|
9449
|
+
"status",
|
|
9450
|
+
"success",
|
|
9451
|
+
"text",
|
|
9452
|
+
"color",
|
|
9453
|
+
"default"
|
|
9454
|
+
]
|
|
9455
|
+
},
|
|
9456
|
+
"hover": {
|
|
9457
|
+
"value": "#c3e6cd",
|
|
9458
|
+
"$type": "color",
|
|
9459
|
+
"comment": "Used for the text of a success status item in the hover state.",
|
|
9460
|
+
"filePath": "src/tokens/status.tokens.json",
|
|
9461
|
+
"isSource": true,
|
|
9462
|
+
"original": {
|
|
9463
|
+
"value": {
|
|
9464
|
+
"default": "{color.green.800}",
|
|
9465
|
+
"dark": "{color.green.100}"
|
|
9466
|
+
},
|
|
9467
|
+
"$type": "color",
|
|
9468
|
+
"comment": "Used for the text of a success status item in the hover state."
|
|
9469
|
+
},
|
|
9470
|
+
"name": "STATUS_SUCCESS_TEXT_COLOR_HOVER",
|
|
9471
|
+
"attributes": {},
|
|
9472
|
+
"path": [
|
|
9473
|
+
"status",
|
|
9474
|
+
"success",
|
|
9475
|
+
"text",
|
|
9476
|
+
"color",
|
|
9477
|
+
"hover"
|
|
9478
|
+
]
|
|
9479
|
+
},
|
|
9480
|
+
"focus": {
|
|
9481
|
+
"value": "#c3e6cd",
|
|
9482
|
+
"$type": "color",
|
|
9483
|
+
"comment": "Used for the text of a success status item in the focus state.",
|
|
9484
|
+
"filePath": "src/tokens/status.tokens.json",
|
|
9485
|
+
"isSource": true,
|
|
9486
|
+
"original": {
|
|
9487
|
+
"value": {
|
|
9488
|
+
"default": "{color.green.800}",
|
|
9489
|
+
"dark": "{color.green.100}"
|
|
9490
|
+
},
|
|
9491
|
+
"$type": "color",
|
|
9492
|
+
"comment": "Used for the text of a success status item in the focus state."
|
|
9493
|
+
},
|
|
9494
|
+
"name": "STATUS_SUCCESS_TEXT_COLOR_FOCUS",
|
|
9495
|
+
"attributes": {},
|
|
9496
|
+
"path": [
|
|
9497
|
+
"status",
|
|
9498
|
+
"success",
|
|
9499
|
+
"text",
|
|
9500
|
+
"color",
|
|
9501
|
+
"focus"
|
|
9502
|
+
]
|
|
9503
|
+
},
|
|
9504
|
+
"active": {
|
|
9505
|
+
"value": "#ecf4ee",
|
|
9506
|
+
"$type": "color",
|
|
9507
|
+
"comment": "Used for the text of a success status item in the active state.",
|
|
9508
|
+
"filePath": "src/tokens/status.tokens.json",
|
|
9509
|
+
"isSource": true,
|
|
9510
|
+
"original": {
|
|
9511
|
+
"value": {
|
|
9512
|
+
"default": "{color.green.900}",
|
|
9513
|
+
"dark": "{color.green.50}"
|
|
9514
|
+
},
|
|
9515
|
+
"$type": "color",
|
|
9516
|
+
"comment": "Used for the text of a success status item in the active state."
|
|
9517
|
+
},
|
|
9518
|
+
"name": "STATUS_SUCCESS_TEXT_COLOR_ACTIVE",
|
|
9519
|
+
"attributes": {},
|
|
9520
|
+
"path": [
|
|
9521
|
+
"status",
|
|
9522
|
+
"success",
|
|
9523
|
+
"text",
|
|
9524
|
+
"color",
|
|
9525
|
+
"active"
|
|
9526
|
+
]
|
|
9527
|
+
}
|
|
9528
|
+
}
|
|
9529
|
+
},
|
|
9530
|
+
"icon": {
|
|
9531
|
+
"color": {
|
|
9532
|
+
"default": {
|
|
9533
|
+
"value": "#2da160",
|
|
9534
|
+
"$type": "color",
|
|
9535
|
+
"comment": "Used for the icon of a success status item when static or the default state when linked.",
|
|
9536
|
+
"filePath": "src/tokens/status.tokens.json",
|
|
9537
|
+
"isSource": true,
|
|
9538
|
+
"original": {
|
|
9539
|
+
"value": {
|
|
9540
|
+
"default": "{color.green.500}",
|
|
9541
|
+
"dark": "{color.green.400}"
|
|
9542
|
+
},
|
|
9543
|
+
"$type": "color",
|
|
9544
|
+
"comment": "Used for the icon of a success status item when static or the default state when linked."
|
|
9545
|
+
},
|
|
9546
|
+
"name": "STATUS_SUCCESS_ICON_COLOR_DEFAULT",
|
|
9547
|
+
"attributes": {},
|
|
9548
|
+
"path": [
|
|
9549
|
+
"status",
|
|
9550
|
+
"success",
|
|
9551
|
+
"icon",
|
|
9552
|
+
"color",
|
|
9553
|
+
"default"
|
|
9554
|
+
]
|
|
9555
|
+
},
|
|
9556
|
+
"hover": {
|
|
9557
|
+
"value": "#52b87a",
|
|
9558
|
+
"$type": "color",
|
|
9559
|
+
"comment": "Used for the icon of a success status item in the hover state.",
|
|
9560
|
+
"filePath": "src/tokens/status.tokens.json",
|
|
9561
|
+
"isSource": true,
|
|
9562
|
+
"original": {
|
|
9563
|
+
"value": {
|
|
9564
|
+
"default": "{color.green.600}",
|
|
9565
|
+
"dark": "{color.green.300}"
|
|
9566
|
+
},
|
|
9567
|
+
"$type": "color",
|
|
9568
|
+
"comment": "Used for the icon of a success status item in the hover state."
|
|
9569
|
+
},
|
|
9570
|
+
"name": "STATUS_SUCCESS_ICON_COLOR_HOVER",
|
|
9571
|
+
"attributes": {},
|
|
9572
|
+
"path": [
|
|
9573
|
+
"status",
|
|
9574
|
+
"success",
|
|
9575
|
+
"icon",
|
|
9576
|
+
"color",
|
|
9577
|
+
"hover"
|
|
9578
|
+
]
|
|
9579
|
+
},
|
|
9580
|
+
"focus": {
|
|
9581
|
+
"value": "#52b87a",
|
|
9582
|
+
"$type": "color",
|
|
9583
|
+
"comment": "Used for the icon of a success status item in the focus state.",
|
|
9584
|
+
"filePath": "src/tokens/status.tokens.json",
|
|
9585
|
+
"isSource": true,
|
|
9586
|
+
"original": {
|
|
9587
|
+
"value": {
|
|
9588
|
+
"default": "{color.green.600}",
|
|
9589
|
+
"dark": "{color.green.300}"
|
|
9590
|
+
},
|
|
9591
|
+
"$type": "color",
|
|
9592
|
+
"comment": "Used for the icon of a success status item in the focus state."
|
|
9593
|
+
},
|
|
9594
|
+
"name": "STATUS_SUCCESS_ICON_COLOR_FOCUS",
|
|
9595
|
+
"attributes": {},
|
|
9596
|
+
"path": [
|
|
9597
|
+
"status",
|
|
9598
|
+
"success",
|
|
9599
|
+
"icon",
|
|
9600
|
+
"color",
|
|
9601
|
+
"focus"
|
|
9602
|
+
]
|
|
9603
|
+
},
|
|
9604
|
+
"active": {
|
|
9605
|
+
"value": "#91d4a8",
|
|
9606
|
+
"$type": "color",
|
|
9607
|
+
"comment": "Used for the icon of a success status item in the active state.",
|
|
9608
|
+
"filePath": "src/tokens/status.tokens.json",
|
|
9609
|
+
"isSource": true,
|
|
9610
|
+
"original": {
|
|
9611
|
+
"value": {
|
|
9612
|
+
"default": "{color.green.700}",
|
|
9613
|
+
"dark": "{color.green.200}"
|
|
9614
|
+
},
|
|
9615
|
+
"$type": "color",
|
|
9616
|
+
"comment": "Used for the icon of a success status item in the active state."
|
|
9617
|
+
},
|
|
9618
|
+
"name": "STATUS_SUCCESS_ICON_COLOR_ACTIVE",
|
|
9619
|
+
"attributes": {},
|
|
9620
|
+
"path": [
|
|
9621
|
+
"status",
|
|
9622
|
+
"success",
|
|
9623
|
+
"icon",
|
|
9624
|
+
"color",
|
|
9625
|
+
"active"
|
|
9626
|
+
]
|
|
9627
|
+
}
|
|
9628
|
+
}
|
|
9629
|
+
}
|
|
9630
|
+
},
|
|
9631
|
+
"warning": {
|
|
9632
|
+
"background": {
|
|
9633
|
+
"color": {
|
|
9634
|
+
"default": {
|
|
9635
|
+
"value": "#703800",
|
|
9636
|
+
"$type": "color",
|
|
9637
|
+
"comment": "Used for the background of a warning status or confidential item when static or the default state when linked.",
|
|
9638
|
+
"filePath": "src/tokens/status.tokens.json",
|
|
9639
|
+
"isSource": true,
|
|
9640
|
+
"original": {
|
|
9641
|
+
"value": {
|
|
9642
|
+
"default": "{color.orange.100}",
|
|
9643
|
+
"dark": "{color.orange.800}"
|
|
9644
|
+
},
|
|
9645
|
+
"$type": "color",
|
|
9646
|
+
"comment": "Used for the background of a warning status or confidential item when static or the default state when linked."
|
|
9647
|
+
},
|
|
9648
|
+
"name": "STATUS_WARNING_BACKGROUND_COLOR_DEFAULT",
|
|
9649
|
+
"attributes": {},
|
|
9650
|
+
"path": [
|
|
9651
|
+
"status",
|
|
9652
|
+
"warning",
|
|
9653
|
+
"background",
|
|
9654
|
+
"color",
|
|
9655
|
+
"default"
|
|
9656
|
+
]
|
|
9657
|
+
},
|
|
9658
|
+
"active": {
|
|
9659
|
+
"value": "#8f4700",
|
|
9660
|
+
"$type": "color",
|
|
9661
|
+
"comment": "Used for the background of a warning status or confidential item in the active state.",
|
|
9662
|
+
"filePath": "src/tokens/status.tokens.json",
|
|
9663
|
+
"isSource": true,
|
|
9664
|
+
"original": {
|
|
9665
|
+
"value": {
|
|
9666
|
+
"default": "{color.orange.200}",
|
|
9667
|
+
"dark": "{color.orange.700}"
|
|
9668
|
+
},
|
|
9669
|
+
"$type": "color",
|
|
9670
|
+
"comment": "Used for the background of a warning status or confidential item in the active state."
|
|
9671
|
+
},
|
|
9672
|
+
"name": "STATUS_WARNING_BACKGROUND_COLOR_ACTIVE",
|
|
9673
|
+
"attributes": {},
|
|
9674
|
+
"path": [
|
|
9675
|
+
"status",
|
|
9676
|
+
"warning",
|
|
9677
|
+
"background",
|
|
9678
|
+
"color",
|
|
9679
|
+
"active"
|
|
9680
|
+
]
|
|
9681
|
+
}
|
|
9682
|
+
}
|
|
9683
|
+
},
|
|
9684
|
+
"border": {
|
|
9685
|
+
"color": {
|
|
9686
|
+
"hover": {
|
|
9687
|
+
"value": "#8f4700",
|
|
9688
|
+
"$type": "color",
|
|
9689
|
+
"comment": "Used for the border of a warning status or confidential item in the hover state.",
|
|
9690
|
+
"filePath": "src/tokens/status.tokens.json",
|
|
9691
|
+
"isSource": true,
|
|
9692
|
+
"original": {
|
|
9693
|
+
"value": {
|
|
9694
|
+
"default": "{color.orange.200}",
|
|
9695
|
+
"dark": "{color.orange.700}"
|
|
9696
|
+
},
|
|
9697
|
+
"$type": "color",
|
|
9698
|
+
"comment": "Used for the border of a warning status or confidential item in the hover state."
|
|
9699
|
+
},
|
|
9700
|
+
"name": "STATUS_WARNING_BORDER_COLOR_HOVER",
|
|
9701
|
+
"attributes": {},
|
|
9702
|
+
"path": [
|
|
9703
|
+
"status",
|
|
9704
|
+
"warning",
|
|
9705
|
+
"border",
|
|
9706
|
+
"color",
|
|
9707
|
+
"hover"
|
|
9708
|
+
]
|
|
9709
|
+
}
|
|
9710
|
+
}
|
|
9711
|
+
},
|
|
9712
|
+
"text": {
|
|
9713
|
+
"color": {
|
|
9714
|
+
"default": {
|
|
9715
|
+
"value": "#e9be74",
|
|
9716
|
+
"$type": "color",
|
|
9717
|
+
"comment": "Used for the text of a warning status or confidential item when static or the default state when linked.",
|
|
9718
|
+
"filePath": "src/tokens/status.tokens.json",
|
|
9719
|
+
"isSource": true,
|
|
9720
|
+
"original": {
|
|
9721
|
+
"value": {
|
|
9722
|
+
"default": "{color.orange.700}",
|
|
9723
|
+
"dark": "{color.orange.200}"
|
|
9724
|
+
},
|
|
9725
|
+
"$type": "color",
|
|
9726
|
+
"comment": "Used for the text of a warning status or confidential item when static or the default state when linked."
|
|
9727
|
+
},
|
|
9728
|
+
"name": "STATUS_WARNING_TEXT_COLOR_DEFAULT",
|
|
9729
|
+
"attributes": {},
|
|
9730
|
+
"path": [
|
|
9731
|
+
"status",
|
|
9732
|
+
"warning",
|
|
9733
|
+
"text",
|
|
9734
|
+
"color",
|
|
9735
|
+
"default"
|
|
9736
|
+
]
|
|
9737
|
+
},
|
|
9738
|
+
"hover": {
|
|
9739
|
+
"value": "#f5d9a8",
|
|
9740
|
+
"$type": "color",
|
|
9741
|
+
"comment": "Used for the text of a warning status or confidential item in the hover state.",
|
|
9742
|
+
"filePath": "src/tokens/status.tokens.json",
|
|
9743
|
+
"isSource": true,
|
|
9744
|
+
"original": {
|
|
9745
|
+
"value": {
|
|
9746
|
+
"default": "{color.orange.800}",
|
|
9747
|
+
"dark": "{color.orange.100}"
|
|
9748
|
+
},
|
|
9749
|
+
"$type": "color",
|
|
9750
|
+
"comment": "Used for the text of a warning status or confidential item in the hover state."
|
|
9751
|
+
},
|
|
9752
|
+
"name": "STATUS_WARNING_TEXT_COLOR_HOVER",
|
|
9753
|
+
"attributes": {},
|
|
9754
|
+
"path": [
|
|
9755
|
+
"status",
|
|
9756
|
+
"warning",
|
|
9757
|
+
"text",
|
|
9758
|
+
"color",
|
|
9759
|
+
"hover"
|
|
9760
|
+
]
|
|
9761
|
+
},
|
|
9762
|
+
"focus": {
|
|
9763
|
+
"value": "#f5d9a8",
|
|
9764
|
+
"$type": "color",
|
|
9765
|
+
"comment": "Used for the text of a warning status or confidential item in the focus state.",
|
|
9766
|
+
"filePath": "src/tokens/status.tokens.json",
|
|
9767
|
+
"isSource": true,
|
|
9768
|
+
"original": {
|
|
9769
|
+
"value": {
|
|
9770
|
+
"default": "{color.orange.800}",
|
|
9771
|
+
"dark": "{color.orange.100}"
|
|
9772
|
+
},
|
|
9773
|
+
"$type": "color",
|
|
9774
|
+
"comment": "Used for the text of a warning status or confidential item in the focus state."
|
|
9775
|
+
},
|
|
9776
|
+
"name": "STATUS_WARNING_TEXT_COLOR_FOCUS",
|
|
9777
|
+
"attributes": {},
|
|
9778
|
+
"path": [
|
|
9779
|
+
"status",
|
|
9780
|
+
"warning",
|
|
9781
|
+
"text",
|
|
9782
|
+
"color",
|
|
9783
|
+
"focus"
|
|
9784
|
+
]
|
|
9785
|
+
},
|
|
9786
|
+
"active": {
|
|
9787
|
+
"value": "#fdf1dd",
|
|
9788
|
+
"$type": "color",
|
|
9789
|
+
"comment": "Used for the text of a warning status or confidential item in the active state.N",
|
|
9790
|
+
"filePath": "src/tokens/status.tokens.json",
|
|
9791
|
+
"isSource": true,
|
|
9792
|
+
"original": {
|
|
9793
|
+
"value": {
|
|
9794
|
+
"default": "{color.orange.900}",
|
|
9795
|
+
"dark": "{color.orange.50}"
|
|
9796
|
+
},
|
|
9797
|
+
"$type": "color",
|
|
9798
|
+
"comment": "Used for the text of a warning status or confidential item in the active state.N"
|
|
9799
|
+
},
|
|
9800
|
+
"name": "STATUS_WARNING_TEXT_COLOR_ACTIVE",
|
|
9801
|
+
"attributes": {},
|
|
9802
|
+
"path": [
|
|
9803
|
+
"status",
|
|
9804
|
+
"warning",
|
|
9805
|
+
"text",
|
|
9806
|
+
"color",
|
|
9807
|
+
"active"
|
|
9808
|
+
]
|
|
9809
|
+
}
|
|
9810
|
+
}
|
|
9811
|
+
},
|
|
9812
|
+
"icon": {
|
|
9813
|
+
"color": {
|
|
9814
|
+
"default": {
|
|
9815
|
+
"value": "#c17d10",
|
|
9816
|
+
"$type": "color",
|
|
9817
|
+
"comment": "Used for the icon of a warning status or confidential item when static or the default state when linked.",
|
|
9818
|
+
"filePath": "src/tokens/status.tokens.json",
|
|
9819
|
+
"isSource": true,
|
|
9820
|
+
"original": {
|
|
9821
|
+
"value": {
|
|
9822
|
+
"default": "{color.orange.500}",
|
|
9823
|
+
"dark": "{color.orange.400}"
|
|
9824
|
+
},
|
|
9825
|
+
"$type": "color",
|
|
9826
|
+
"comment": "Used for the icon of a warning status or confidential item when static or the default state when linked."
|
|
9827
|
+
},
|
|
9828
|
+
"name": "STATUS_WARNING_ICON_COLOR_DEFAULT",
|
|
9829
|
+
"attributes": {},
|
|
9830
|
+
"path": [
|
|
9831
|
+
"status",
|
|
9832
|
+
"warning",
|
|
9833
|
+
"icon",
|
|
9834
|
+
"color",
|
|
9835
|
+
"default"
|
|
9836
|
+
]
|
|
9837
|
+
},
|
|
9838
|
+
"hover": {
|
|
9839
|
+
"value": "#d99530",
|
|
9840
|
+
"$type": "color",
|
|
9841
|
+
"comment": "Used for the icon of a warning status or confidential item in the hover state.",
|
|
9842
|
+
"filePath": "src/tokens/status.tokens.json",
|
|
9843
|
+
"isSource": true,
|
|
9844
|
+
"original": {
|
|
9845
|
+
"value": {
|
|
9846
|
+
"default": "{color.orange.600}",
|
|
9847
|
+
"dark": "{color.orange.300}"
|
|
9848
|
+
},
|
|
9849
|
+
"$type": "color",
|
|
9850
|
+
"comment": "Used for the icon of a warning status or confidential item in the hover state."
|
|
9851
|
+
},
|
|
9852
|
+
"name": "STATUS_WARNING_ICON_COLOR_HOVER",
|
|
9853
|
+
"attributes": {},
|
|
9854
|
+
"path": [
|
|
9855
|
+
"status",
|
|
9856
|
+
"warning",
|
|
9857
|
+
"icon",
|
|
9858
|
+
"color",
|
|
9859
|
+
"hover"
|
|
9860
|
+
]
|
|
9861
|
+
},
|
|
9862
|
+
"focus": {
|
|
9863
|
+
"value": "#d99530",
|
|
9864
|
+
"$type": "color",
|
|
9865
|
+
"comment": "Used for the icon of a warning status or confidential item in the focus state.",
|
|
9866
|
+
"filePath": "src/tokens/status.tokens.json",
|
|
9867
|
+
"isSource": true,
|
|
9868
|
+
"original": {
|
|
9869
|
+
"value": {
|
|
9870
|
+
"default": "{color.orange.600}",
|
|
9871
|
+
"dark": "{color.orange.300}"
|
|
9872
|
+
},
|
|
9873
|
+
"$type": "color",
|
|
9874
|
+
"comment": "Used for the icon of a warning status or confidential item in the focus state."
|
|
9875
|
+
},
|
|
9876
|
+
"name": "STATUS_WARNING_ICON_COLOR_FOCUS",
|
|
9877
|
+
"attributes": {},
|
|
9878
|
+
"path": [
|
|
9879
|
+
"status",
|
|
9880
|
+
"warning",
|
|
9881
|
+
"icon",
|
|
9882
|
+
"color",
|
|
9883
|
+
"focus"
|
|
9884
|
+
]
|
|
9885
|
+
},
|
|
9886
|
+
"active": {
|
|
9887
|
+
"value": "#e9be74",
|
|
9888
|
+
"$type": "color",
|
|
9889
|
+
"comment": "Used for the icon of a warning status or confidential item in the active state.",
|
|
9890
|
+
"filePath": "src/tokens/status.tokens.json",
|
|
9891
|
+
"isSource": true,
|
|
9892
|
+
"original": {
|
|
9893
|
+
"value": {
|
|
9894
|
+
"default": "{color.orange.700}",
|
|
9895
|
+
"dark": "{color.orange.200}"
|
|
9896
|
+
},
|
|
9897
|
+
"$type": "color",
|
|
9898
|
+
"comment": "Used for the icon of a warning status or confidential item in the active state."
|
|
9899
|
+
},
|
|
9900
|
+
"name": "STATUS_WARNING_ICON_COLOR_ACTIVE",
|
|
9901
|
+
"attributes": {},
|
|
9902
|
+
"path": [
|
|
9903
|
+
"status",
|
|
9904
|
+
"warning",
|
|
9905
|
+
"icon",
|
|
9906
|
+
"color",
|
|
9907
|
+
"active"
|
|
9908
|
+
]
|
|
9909
|
+
}
|
|
9910
|
+
}
|
|
9911
|
+
}
|
|
9912
|
+
},
|
|
9913
|
+
"danger": {
|
|
9914
|
+
"background": {
|
|
9915
|
+
"color": {
|
|
9916
|
+
"default": {
|
|
9917
|
+
"value": "#8d1300",
|
|
9918
|
+
"$type": "color",
|
|
9919
|
+
"comment": "Used for the background of a danger (critical) status item when static or the default state when linked.",
|
|
9920
|
+
"filePath": "src/tokens/status.tokens.json",
|
|
9921
|
+
"isSource": true,
|
|
9922
|
+
"original": {
|
|
9923
|
+
"value": {
|
|
9924
|
+
"default": "{color.red.100}",
|
|
9925
|
+
"dark": "{color.red.800}"
|
|
9926
|
+
},
|
|
9927
|
+
"$type": "color",
|
|
9928
|
+
"comment": "Used for the background of a danger (critical) status item when static or the default state when linked."
|
|
9929
|
+
},
|
|
9930
|
+
"name": "STATUS_DANGER_BACKGROUND_COLOR_DEFAULT",
|
|
9931
|
+
"attributes": {},
|
|
9932
|
+
"path": [
|
|
9933
|
+
"status",
|
|
9934
|
+
"danger",
|
|
9935
|
+
"background",
|
|
9936
|
+
"color",
|
|
9937
|
+
"default"
|
|
9938
|
+
]
|
|
9939
|
+
},
|
|
9940
|
+
"active": {
|
|
9941
|
+
"value": "#ae1800",
|
|
9942
|
+
"$type": "color",
|
|
9943
|
+
"comment": "Used for the background of a danger (critical) status item in the active state.",
|
|
9944
|
+
"filePath": "src/tokens/status.tokens.json",
|
|
9945
|
+
"isSource": true,
|
|
9946
|
+
"original": {
|
|
9947
|
+
"value": {
|
|
9948
|
+
"default": "{color.red.200}",
|
|
9949
|
+
"dark": "{color.red.700}"
|
|
9950
|
+
},
|
|
9951
|
+
"$type": "color",
|
|
9952
|
+
"comment": "Used for the background of a danger (critical) status item in the active state."
|
|
9953
|
+
},
|
|
9954
|
+
"name": "STATUS_DANGER_BACKGROUND_COLOR_ACTIVE",
|
|
9955
|
+
"attributes": {},
|
|
9956
|
+
"path": [
|
|
9957
|
+
"status",
|
|
9958
|
+
"danger",
|
|
9959
|
+
"background",
|
|
9960
|
+
"color",
|
|
9961
|
+
"active"
|
|
9962
|
+
]
|
|
9963
|
+
}
|
|
9964
|
+
}
|
|
9965
|
+
},
|
|
9966
|
+
"border": {
|
|
9967
|
+
"color": {
|
|
9968
|
+
"hover": {
|
|
9969
|
+
"value": "#ae1800",
|
|
9970
|
+
"$type": "color",
|
|
9971
|
+
"comment": "Used for the border of a danger (critical) status item in the hover state.",
|
|
9972
|
+
"filePath": "src/tokens/status.tokens.json",
|
|
9973
|
+
"isSource": true,
|
|
9974
|
+
"original": {
|
|
9975
|
+
"value": {
|
|
9976
|
+
"default": "{color.red.200}",
|
|
9977
|
+
"dark": "{color.red.700}"
|
|
9978
|
+
},
|
|
9979
|
+
"$type": "color",
|
|
9980
|
+
"comment": "Used for the border of a danger (critical) status item in the hover state."
|
|
9981
|
+
},
|
|
9982
|
+
"name": "STATUS_DANGER_BORDER_COLOR_HOVER",
|
|
9983
|
+
"attributes": {},
|
|
9984
|
+
"path": [
|
|
9985
|
+
"status",
|
|
9986
|
+
"danger",
|
|
9987
|
+
"border",
|
|
9988
|
+
"color",
|
|
9989
|
+
"hover"
|
|
9990
|
+
]
|
|
9991
|
+
}
|
|
9992
|
+
}
|
|
9993
|
+
},
|
|
9994
|
+
"text": {
|
|
9995
|
+
"color": {
|
|
9996
|
+
"default": {
|
|
9997
|
+
"value": "#fcb5aa",
|
|
9998
|
+
"$type": "color",
|
|
9999
|
+
"comment": "Used for the text of a danger (critical) status item when static or the default state when linked.",
|
|
10000
|
+
"filePath": "src/tokens/status.tokens.json",
|
|
10001
|
+
"isSource": true,
|
|
10002
|
+
"original": {
|
|
10003
|
+
"value": {
|
|
10004
|
+
"default": "{color.red.700}",
|
|
10005
|
+
"dark": "{color.red.200}"
|
|
10006
|
+
},
|
|
10007
|
+
"$type": "color",
|
|
10008
|
+
"comment": "Used for the text of a danger (critical) status item when static or the default state when linked."
|
|
10009
|
+
},
|
|
10010
|
+
"name": "STATUS_DANGER_TEXT_COLOR_DEFAULT",
|
|
10011
|
+
"attributes": {},
|
|
10012
|
+
"path": [
|
|
10013
|
+
"status",
|
|
10014
|
+
"danger",
|
|
10015
|
+
"text",
|
|
10016
|
+
"color",
|
|
10017
|
+
"default"
|
|
10018
|
+
]
|
|
10019
|
+
},
|
|
10020
|
+
"hover": {
|
|
10021
|
+
"value": "#fdd4cd",
|
|
10022
|
+
"$type": "color",
|
|
10023
|
+
"comment": "Used for the text of a danger (critical) status item in the hover state.",
|
|
10024
|
+
"filePath": "src/tokens/status.tokens.json",
|
|
10025
|
+
"isSource": true,
|
|
10026
|
+
"original": {
|
|
10027
|
+
"value": {
|
|
10028
|
+
"default": "{color.red.800}",
|
|
10029
|
+
"dark": "{color.red.100}"
|
|
10030
|
+
},
|
|
10031
|
+
"$type": "color",
|
|
10032
|
+
"comment": "Used for the text of a danger (critical) status item in the hover state."
|
|
10033
|
+
},
|
|
10034
|
+
"name": "STATUS_DANGER_TEXT_COLOR_HOVER",
|
|
10035
|
+
"attributes": {},
|
|
10036
|
+
"path": [
|
|
10037
|
+
"status",
|
|
10038
|
+
"danger",
|
|
10039
|
+
"text",
|
|
10040
|
+
"color",
|
|
10041
|
+
"hover"
|
|
10042
|
+
]
|
|
10043
|
+
},
|
|
10044
|
+
"focus": {
|
|
10045
|
+
"value": "#fdd4cd",
|
|
10046
|
+
"$type": "color",
|
|
10047
|
+
"comment": "Used for the text of a danger (critical) status item in the focus state.",
|
|
10048
|
+
"filePath": "src/tokens/status.tokens.json",
|
|
10049
|
+
"isSource": true,
|
|
10050
|
+
"original": {
|
|
10051
|
+
"value": {
|
|
10052
|
+
"default": "{color.red.800}",
|
|
10053
|
+
"dark": "{color.red.100}"
|
|
10054
|
+
},
|
|
10055
|
+
"$type": "color",
|
|
10056
|
+
"comment": "Used for the text of a danger (critical) status item in the focus state."
|
|
10057
|
+
},
|
|
10058
|
+
"name": "STATUS_DANGER_TEXT_COLOR_FOCUS",
|
|
10059
|
+
"attributes": {},
|
|
10060
|
+
"path": [
|
|
10061
|
+
"status",
|
|
10062
|
+
"danger",
|
|
10063
|
+
"text",
|
|
10064
|
+
"color",
|
|
10065
|
+
"focus"
|
|
10066
|
+
]
|
|
10067
|
+
},
|
|
10068
|
+
"active": {
|
|
10069
|
+
"value": "#fcf1ef",
|
|
10070
|
+
"$type": "color",
|
|
10071
|
+
"comment": "Used for the text of a danger (critical) status item in the active state.",
|
|
10072
|
+
"filePath": "src/tokens/status.tokens.json",
|
|
10073
|
+
"isSource": true,
|
|
10074
|
+
"original": {
|
|
10075
|
+
"value": {
|
|
10076
|
+
"default": "{color.red.900}",
|
|
10077
|
+
"dark": "{color.red.50}"
|
|
10078
|
+
},
|
|
10079
|
+
"$type": "color",
|
|
10080
|
+
"comment": "Used for the text of a danger (critical) status item in the active state."
|
|
10081
|
+
},
|
|
10082
|
+
"name": "STATUS_DANGER_TEXT_COLOR_ACTIVE",
|
|
10083
|
+
"attributes": {},
|
|
10084
|
+
"path": [
|
|
10085
|
+
"status",
|
|
10086
|
+
"danger",
|
|
10087
|
+
"text",
|
|
10088
|
+
"color",
|
|
10089
|
+
"active"
|
|
10090
|
+
]
|
|
10091
|
+
}
|
|
10092
|
+
}
|
|
10093
|
+
},
|
|
10094
|
+
"icon": {
|
|
10095
|
+
"color": {
|
|
10096
|
+
"default": {
|
|
10097
|
+
"value": "#ec5941",
|
|
10098
|
+
"$type": "color",
|
|
10099
|
+
"comment": "Used for the icon of a danger (critical) status item when static or the default state when linked.",
|
|
10100
|
+
"filePath": "src/tokens/status.tokens.json",
|
|
10101
|
+
"isSource": true,
|
|
10102
|
+
"original": {
|
|
10103
|
+
"value": {
|
|
10104
|
+
"default": "{color.red.500}",
|
|
10105
|
+
"dark": "{color.red.400}"
|
|
10106
|
+
},
|
|
10107
|
+
"$type": "color",
|
|
10108
|
+
"comment": "Used for the icon of a danger (critical) status item when static or the default state when linked."
|
|
10109
|
+
},
|
|
10110
|
+
"name": "STATUS_DANGER_ICON_COLOR_DEFAULT",
|
|
10111
|
+
"attributes": {},
|
|
10112
|
+
"path": [
|
|
10113
|
+
"status",
|
|
10114
|
+
"danger",
|
|
10115
|
+
"icon",
|
|
10116
|
+
"color",
|
|
10117
|
+
"default"
|
|
10118
|
+
]
|
|
10119
|
+
},
|
|
10120
|
+
"hover": {
|
|
10121
|
+
"value": "#f57f6c",
|
|
10122
|
+
"$type": "color",
|
|
10123
|
+
"comment": "Used for the icon of a danger (critical) status item in the hover state.",
|
|
10124
|
+
"filePath": "src/tokens/status.tokens.json",
|
|
10125
|
+
"isSource": true,
|
|
10126
|
+
"original": {
|
|
10127
|
+
"value": {
|
|
10128
|
+
"default": "{color.red.600}",
|
|
10129
|
+
"dark": "{color.red.300}"
|
|
10130
|
+
},
|
|
10131
|
+
"$type": "color",
|
|
10132
|
+
"comment": "Used for the icon of a danger (critical) status item in the hover state."
|
|
10133
|
+
},
|
|
10134
|
+
"name": "STATUS_DANGER_ICON_COLOR_HOVER",
|
|
10135
|
+
"attributes": {},
|
|
10136
|
+
"path": [
|
|
10137
|
+
"status",
|
|
10138
|
+
"danger",
|
|
10139
|
+
"icon",
|
|
10140
|
+
"color",
|
|
10141
|
+
"hover"
|
|
10142
|
+
]
|
|
10143
|
+
},
|
|
10144
|
+
"focus": {
|
|
10145
|
+
"value": "#f57f6c",
|
|
10146
|
+
"$type": "color",
|
|
10147
|
+
"comment": "Used for the icon of a danger (critical) status item in the focus state.",
|
|
10148
|
+
"filePath": "src/tokens/status.tokens.json",
|
|
10149
|
+
"isSource": true,
|
|
10150
|
+
"original": {
|
|
10151
|
+
"value": {
|
|
10152
|
+
"default": "{color.red.600}",
|
|
10153
|
+
"dark": "{color.red.300}"
|
|
10154
|
+
},
|
|
10155
|
+
"$type": "color",
|
|
10156
|
+
"comment": "Used for the icon of a danger (critical) status item in the focus state."
|
|
10157
|
+
},
|
|
10158
|
+
"name": "STATUS_DANGER_ICON_COLOR_FOCUS",
|
|
10159
|
+
"attributes": {},
|
|
10160
|
+
"path": [
|
|
10161
|
+
"status",
|
|
10162
|
+
"danger",
|
|
10163
|
+
"icon",
|
|
10164
|
+
"color",
|
|
10165
|
+
"focus"
|
|
10166
|
+
]
|
|
10167
|
+
},
|
|
10168
|
+
"active": {
|
|
10169
|
+
"value": "#fcb5aa",
|
|
10170
|
+
"$type": "color",
|
|
10171
|
+
"comment": "Used for the icon of a danger (critical) status item in the active state.",
|
|
10172
|
+
"filePath": "src/tokens/status.tokens.json",
|
|
10173
|
+
"isSource": true,
|
|
10174
|
+
"original": {
|
|
10175
|
+
"value": {
|
|
10176
|
+
"default": "{color.red.700}",
|
|
10177
|
+
"dark": "{color.red.200}"
|
|
10178
|
+
},
|
|
10179
|
+
"$type": "color",
|
|
10180
|
+
"comment": "Used for the icon of a danger (critical) status item in the active state."
|
|
10181
|
+
},
|
|
10182
|
+
"name": "STATUS_DANGER_ICON_COLOR_ACTIVE",
|
|
10183
|
+
"attributes": {},
|
|
10184
|
+
"path": [
|
|
10185
|
+
"status",
|
|
10186
|
+
"danger",
|
|
10187
|
+
"icon",
|
|
10188
|
+
"color",
|
|
10189
|
+
"active"
|
|
10190
|
+
]
|
|
10191
|
+
}
|
|
10192
|
+
}
|
|
10193
|
+
}
|
|
10194
|
+
},
|
|
10195
|
+
"brand": {
|
|
10196
|
+
"background": {
|
|
10197
|
+
"color": {
|
|
10198
|
+
"default": {
|
|
10199
|
+
"value": "#2f2a6b",
|
|
10200
|
+
"$type": "color",
|
|
10201
|
+
"comment": "Used for the background of a brand related status item when static or the default state when linked.",
|
|
10202
|
+
"filePath": "src/tokens/status.tokens.json",
|
|
10203
|
+
"isSource": true,
|
|
10204
|
+
"original": {
|
|
10205
|
+
"value": {
|
|
10206
|
+
"default": "{color.purple.100}",
|
|
10207
|
+
"dark": "{color.purple.900}"
|
|
10208
|
+
},
|
|
10209
|
+
"$type": "color",
|
|
10210
|
+
"comment": "Used for the background of a brand related status item when static or the default state when linked."
|
|
10211
|
+
},
|
|
10212
|
+
"name": "STATUS_BRAND_BACKGROUND_COLOR_DEFAULT",
|
|
10213
|
+
"attributes": {},
|
|
10214
|
+
"path": [
|
|
10215
|
+
"status",
|
|
10216
|
+
"brand",
|
|
10217
|
+
"background",
|
|
10218
|
+
"color",
|
|
10219
|
+
"default"
|
|
10220
|
+
]
|
|
10221
|
+
},
|
|
10222
|
+
"active": {
|
|
10223
|
+
"value": "#453894",
|
|
10224
|
+
"$type": "color",
|
|
10225
|
+
"comment": "Used for the background of a brand related status item in the active state.",
|
|
10226
|
+
"filePath": "src/tokens/status.tokens.json",
|
|
10227
|
+
"isSource": true,
|
|
10228
|
+
"original": {
|
|
10229
|
+
"value": {
|
|
10230
|
+
"default": "{color.purple.200}",
|
|
10231
|
+
"dark": "{color.purple.800}"
|
|
10232
|
+
},
|
|
10233
|
+
"$type": "color",
|
|
10234
|
+
"comment": "Used for the background of a brand related status item in the active state."
|
|
10235
|
+
},
|
|
10236
|
+
"name": "STATUS_BRAND_BACKGROUND_COLOR_ACTIVE",
|
|
10237
|
+
"attributes": {},
|
|
10238
|
+
"path": [
|
|
10239
|
+
"status",
|
|
10240
|
+
"brand",
|
|
10241
|
+
"background",
|
|
10242
|
+
"color",
|
|
10243
|
+
"active"
|
|
10244
|
+
]
|
|
10245
|
+
}
|
|
10246
|
+
}
|
|
10247
|
+
},
|
|
10248
|
+
"border": {
|
|
10249
|
+
"color": {
|
|
10250
|
+
"hover": {
|
|
10251
|
+
"value": "#453894",
|
|
10252
|
+
"$type": "color",
|
|
10253
|
+
"comment": "Used for the border of a brand related status item in the hover state.",
|
|
10254
|
+
"filePath": "src/tokens/status.tokens.json",
|
|
10255
|
+
"isSource": true,
|
|
10256
|
+
"original": {
|
|
10257
|
+
"value": {
|
|
10258
|
+
"default": "{color.purple.200}",
|
|
10259
|
+
"dark": "{color.purple.800}"
|
|
10260
|
+
},
|
|
10261
|
+
"$type": "color",
|
|
10262
|
+
"comment": "Used for the border of a brand related status item in the hover state."
|
|
10263
|
+
},
|
|
10264
|
+
"name": "STATUS_BRAND_BORDER_COLOR_HOVER",
|
|
10265
|
+
"attributes": {},
|
|
10266
|
+
"path": [
|
|
10267
|
+
"status",
|
|
10268
|
+
"brand",
|
|
10269
|
+
"border",
|
|
10270
|
+
"color",
|
|
10271
|
+
"hover"
|
|
10272
|
+
]
|
|
10273
|
+
}
|
|
10274
|
+
}
|
|
10275
|
+
},
|
|
10276
|
+
"text": {
|
|
10277
|
+
"color": {
|
|
10278
|
+
"default": {
|
|
10279
|
+
"value": "#ac93e6",
|
|
10280
|
+
"$type": "color",
|
|
10281
|
+
"comment": "Used for the text of a brand related status item when static or the default state when linked.",
|
|
10282
|
+
"filePath": "src/tokens/status.tokens.json",
|
|
10283
|
+
"isSource": true,
|
|
10284
|
+
"original": {
|
|
10285
|
+
"value": {
|
|
10286
|
+
"default": "{color.purple.700}",
|
|
10287
|
+
"dark": "{color.purple.300}"
|
|
10288
|
+
},
|
|
10289
|
+
"$type": "color",
|
|
10290
|
+
"comment": "Used for the text of a brand related status item when static or the default state when linked."
|
|
10291
|
+
},
|
|
10292
|
+
"name": "STATUS_BRAND_TEXT_COLOR_DEFAULT",
|
|
10293
|
+
"attributes": {},
|
|
10294
|
+
"path": [
|
|
10295
|
+
"status",
|
|
10296
|
+
"brand",
|
|
10297
|
+
"text",
|
|
10298
|
+
"color",
|
|
10299
|
+
"default"
|
|
10300
|
+
]
|
|
10301
|
+
},
|
|
10302
|
+
"hover": {
|
|
10303
|
+
"value": "#cbbbf2",
|
|
10304
|
+
"$type": "color",
|
|
10305
|
+
"comment": "Used for the text of a brand related status item in the hover state.",
|
|
10306
|
+
"filePath": "src/tokens/status.tokens.json",
|
|
10307
|
+
"isSource": true,
|
|
10308
|
+
"original": {
|
|
10309
|
+
"value": {
|
|
10310
|
+
"default": "{color.purple.800}",
|
|
10311
|
+
"dark": "{color.purple.200}"
|
|
10312
|
+
},
|
|
10313
|
+
"$type": "color",
|
|
10314
|
+
"comment": "Used for the text of a brand related status item in the hover state."
|
|
10315
|
+
},
|
|
10316
|
+
"name": "STATUS_BRAND_TEXT_COLOR_HOVER",
|
|
10317
|
+
"attributes": {},
|
|
10318
|
+
"path": [
|
|
10319
|
+
"status",
|
|
10320
|
+
"brand",
|
|
10321
|
+
"text",
|
|
10322
|
+
"color",
|
|
10323
|
+
"hover"
|
|
10324
|
+
]
|
|
10325
|
+
},
|
|
10326
|
+
"focus": {
|
|
10327
|
+
"value": "#cbbbf2",
|
|
10328
|
+
"$type": "color",
|
|
10329
|
+
"comment": "Used for the text of a brand related status item in the focus state.",
|
|
10330
|
+
"filePath": "src/tokens/status.tokens.json",
|
|
10331
|
+
"isSource": true,
|
|
10332
|
+
"original": {
|
|
10333
|
+
"value": {
|
|
10334
|
+
"default": "{color.purple.800}",
|
|
10335
|
+
"dark": "{color.purple.200}"
|
|
10336
|
+
},
|
|
10337
|
+
"$type": "color",
|
|
10338
|
+
"comment": "Used for the text of a brand related status item in the focus state."
|
|
10339
|
+
},
|
|
10340
|
+
"name": "STATUS_BRAND_TEXT_COLOR_FOCUS",
|
|
10341
|
+
"attributes": {},
|
|
10342
|
+
"path": [
|
|
10343
|
+
"status",
|
|
10344
|
+
"brand",
|
|
10345
|
+
"text",
|
|
10346
|
+
"color",
|
|
10347
|
+
"focus"
|
|
10348
|
+
]
|
|
10349
|
+
},
|
|
10350
|
+
"active": {
|
|
10351
|
+
"value": "#e1d8f9",
|
|
10352
|
+
"$type": "color",
|
|
10353
|
+
"comment": "Used for the text of a brand related status item in the active state.",
|
|
10354
|
+
"filePath": "src/tokens/status.tokens.json",
|
|
10355
|
+
"isSource": true,
|
|
10356
|
+
"original": {
|
|
10357
|
+
"value": {
|
|
10358
|
+
"default": "{color.purple.900}",
|
|
10359
|
+
"dark": "{color.purple.100}"
|
|
10360
|
+
},
|
|
10361
|
+
"$type": "color",
|
|
10362
|
+
"comment": "Used for the text of a brand related status item in the active state."
|
|
10363
|
+
},
|
|
10364
|
+
"name": "STATUS_BRAND_TEXT_COLOR_ACTIVE",
|
|
10365
|
+
"attributes": {},
|
|
10366
|
+
"path": [
|
|
10367
|
+
"status",
|
|
10368
|
+
"brand",
|
|
10369
|
+
"text",
|
|
10370
|
+
"color",
|
|
10371
|
+
"active"
|
|
10372
|
+
]
|
|
10373
|
+
}
|
|
10374
|
+
}
|
|
10375
|
+
},
|
|
10376
|
+
"icon": {
|
|
10377
|
+
"color": {
|
|
10378
|
+
"default": {
|
|
10379
|
+
"value": "#7b58cf",
|
|
10380
|
+
"$type": "color",
|
|
10381
|
+
"comment": "Used for the icon of a brand related status item when static or the default state when linked.",
|
|
10382
|
+
"filePath": "src/tokens/status.tokens.json",
|
|
10383
|
+
"isSource": true,
|
|
10384
|
+
"original": {
|
|
10385
|
+
"value": {
|
|
10386
|
+
"default": "{color.purple.500}",
|
|
10387
|
+
"dark": "{color.purple.500}"
|
|
10388
|
+
},
|
|
10389
|
+
"$type": "color",
|
|
10390
|
+
"comment": "Used for the icon of a brand related status item when static or the default state when linked."
|
|
10391
|
+
},
|
|
10392
|
+
"name": "STATUS_BRAND_ICON_COLOR_DEFAULT",
|
|
10393
|
+
"attributes": {},
|
|
10394
|
+
"path": [
|
|
10395
|
+
"status",
|
|
10396
|
+
"brand",
|
|
10397
|
+
"icon",
|
|
10398
|
+
"color",
|
|
10399
|
+
"default"
|
|
10400
|
+
]
|
|
10401
|
+
},
|
|
10402
|
+
"hover": {
|
|
10403
|
+
"value": "#9475db",
|
|
10404
|
+
"$type": "color",
|
|
10405
|
+
"comment": "Used for the icon of a brand related status item in the hover state.",
|
|
10406
|
+
"filePath": "src/tokens/status.tokens.json",
|
|
10407
|
+
"isSource": true,
|
|
10408
|
+
"original": {
|
|
10409
|
+
"value": {
|
|
10410
|
+
"default": "{color.purple.600}",
|
|
10411
|
+
"dark": "{color.purple.400}"
|
|
10412
|
+
},
|
|
10413
|
+
"$type": "color",
|
|
10414
|
+
"comment": "Used for the icon of a brand related status item in the hover state."
|
|
10415
|
+
},
|
|
10416
|
+
"name": "STATUS_BRAND_ICON_COLOR_HOVER",
|
|
10417
|
+
"attributes": {},
|
|
10418
|
+
"path": [
|
|
10419
|
+
"status",
|
|
10420
|
+
"brand",
|
|
10421
|
+
"icon",
|
|
10422
|
+
"color",
|
|
10423
|
+
"hover"
|
|
10424
|
+
]
|
|
10425
|
+
},
|
|
10426
|
+
"focus": {
|
|
10427
|
+
"value": "#9475db",
|
|
10428
|
+
"$type": "color",
|
|
10429
|
+
"comment": "Used for the icon of a brand related status item in the focus state.",
|
|
10430
|
+
"filePath": "src/tokens/status.tokens.json",
|
|
10431
|
+
"isSource": true,
|
|
10432
|
+
"original": {
|
|
10433
|
+
"value": {
|
|
10434
|
+
"default": "{color.purple.600}",
|
|
10435
|
+
"dark": "{color.purple.400}"
|
|
10436
|
+
},
|
|
10437
|
+
"$type": "color",
|
|
10438
|
+
"comment": "Used for the icon of a brand related status item in the focus state."
|
|
10439
|
+
},
|
|
10440
|
+
"name": "STATUS_BRAND_ICON_COLOR_FOCUS",
|
|
10441
|
+
"attributes": {},
|
|
10442
|
+
"path": [
|
|
10443
|
+
"status",
|
|
10444
|
+
"brand",
|
|
10445
|
+
"icon",
|
|
10446
|
+
"color",
|
|
10447
|
+
"focus"
|
|
10448
|
+
]
|
|
10449
|
+
},
|
|
10450
|
+
"active": {
|
|
10451
|
+
"value": "#ac93e6",
|
|
10452
|
+
"$type": "color",
|
|
10453
|
+
"comment": "Used for the icon of a brand related status item in the active state.",
|
|
10454
|
+
"filePath": "src/tokens/status.tokens.json",
|
|
10455
|
+
"isSource": true,
|
|
10456
|
+
"original": {
|
|
10457
|
+
"value": {
|
|
10458
|
+
"default": "{color.purple.700}",
|
|
10459
|
+
"dark": "{color.purple.300}"
|
|
10460
|
+
},
|
|
10461
|
+
"$type": "color",
|
|
10462
|
+
"comment": "Used for the icon of a brand related status item in the active state."
|
|
10463
|
+
},
|
|
10464
|
+
"name": "STATUS_BRAND_ICON_COLOR_ACTIVE",
|
|
10465
|
+
"attributes": {},
|
|
10466
|
+
"path": [
|
|
10467
|
+
"status",
|
|
10468
|
+
"brand",
|
|
10469
|
+
"icon",
|
|
10470
|
+
"color",
|
|
10471
|
+
"active"
|
|
10472
|
+
]
|
|
10473
|
+
}
|
|
10474
|
+
}
|
|
10475
|
+
}
|
|
10476
|
+
}
|
|
10477
|
+
},
|
|
8502
10478
|
"text": {
|
|
8503
10479
|
"primary": {
|
|
8504
10480
|
"value": "#ececef",
|