@adyen/bento-vue3 1.21.1 → 1.23.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/@types/packages/core/src/components/button/button.types.d.ts +3 -0
- package/dist/@types/packages/core/src/components/link/link.types.d.ts +3 -0
- package/dist/@types/packages/vue2/src/components/accordion/accordion.vue.d.ts +33 -0
- package/dist/@types/packages/vue2/src/components/accordion/components/accordion-item.vue.d.ts +35 -0
- package/dist/@types/packages/vue2/src/components/action-bar/action-bar.vue.d.ts +83 -0
- package/dist/@types/packages/vue2/src/components/alert/alert.types.d.ts +6 -0
- package/dist/@types/packages/vue2/src/components/alert/alert.vue.d.ts +38 -0
- package/dist/@types/packages/vue2/src/components/avatar-image/avatar-image.vue.d.ts +34 -0
- package/dist/@types/packages/vue2/src/components/badge/badge.vue.d.ts +14 -0
- package/dist/@types/packages/vue2/src/components/button/button.vue.d.ts +76 -0
- package/dist/@types/packages/vue2/src/components/button/components/button-actions/button-actions.types.d.ts +3 -0
- package/dist/@types/packages/vue2/src/components/button/components/button-actions/button-actions.vue.d.ts +121 -0
- package/dist/@types/packages/vue2/src/components/button/components/loading-button/loading-button.vue.d.ts +55 -0
- package/dist/@types/packages/vue2/src/components/button/components/toggle-button/toggle-button.vue.d.ts +48 -0
- package/dist/@types/packages/vue2/src/components/card/card.types.d.ts +6 -0
- package/dist/@types/packages/vue2/src/components/card/card.vue.d.ts +116 -0
- package/dist/@types/packages/vue2/src/components/checkbox/checkbox.vue.d.ts +111 -0
- package/dist/@types/packages/vue2/src/components/checkbox/components/checkbox-group/checkbox-group.types.d.ts +3 -0
- package/dist/@types/packages/vue2/src/components/checkbox/components/checkbox-group/checkbox-group.vue.d.ts +115 -2
- package/dist/@types/packages/vue2/src/components/click-outside/click-outside.d.ts +6 -0
- package/dist/@types/packages/vue2/src/components/code-snippet/code-snippet.types.d.ts +6 -0
- package/dist/@types/packages/vue2/src/components/code-snippet/code-snippet.vue.d.ts +74 -0
- package/dist/@types/packages/vue2/src/components/code-snippet/utils/get-lang-loader.d.ts +7 -0
- package/dist/@types/packages/vue2/src/components/code-snippet/utils/indent-same-as-line-before-extension.d.ts +4 -0
- package/dist/@types/packages/vue2/src/components/country/composables/use-country-capital/use-country-capital.d.ts +5 -0
- package/dist/@types/packages/vue2/src/components/country/composables/use-country-name/use-country-name.d.ts +5 -0
- package/dist/@types/packages/vue2/src/components/country/composables/use-country-phone-code/use-country-phon-code.d.ts +6 -0
- package/dist/@types/packages/vue2/src/components/country/country.types.d.ts +4 -0
- package/dist/@types/packages/vue2/src/components/country/country.vue.d.ts +34 -0
- package/dist/@types/packages/vue2/src/components/currency/currency.vue.d.ts +28 -0
- package/dist/@types/packages/vue2/src/components/data-grid/components/data-grid-cell/data-grid-cell.types.d.ts +9 -5
- package/dist/@types/packages/vue2/src/components/data-grid/components/data-grid-cell/data-grid-cell.vue.d.ts +71 -0
- package/dist/@types/packages/vue2/src/components/data-grid/components/data-grid-cell-actions/data-grid-cell-actions.vue.d.ts +53 -0
- package/dist/@types/packages/vue2/src/components/data-grid/components/data-grid-columns/data-grid-columns.types.d.ts +10 -0
- package/dist/@types/packages/vue2/src/components/data-grid/components/data-grid-columns/data-grid-columns.vue.d.ts +151 -0
- package/dist/@types/packages/vue2/src/components/data-grid/components/data-grid-config-settings/components/data-grid-config-settings-column-row/data-grid-config-settings-column-row.vue.d.ts +12 -0
- package/dist/@types/packages/vue2/src/components/data-grid/components/data-grid-config-settings/data-grid-config-settings.types.d.ts +3 -0
- package/dist/@types/packages/vue2/src/components/data-grid/components/data-grid-config-settings/data-grid-config-settings.vue.d.ts +12 -0
- package/dist/@types/packages/vue2/src/components/data-grid/components/data-grid-lazy-load/data-grid-lazy-load.vue.d.ts +16 -0
- package/dist/@types/packages/vue2/src/components/data-grid/composables/index.d.ts +1 -0
- package/dist/@types/packages/vue2/src/components/data-grid/composables/use-calculate-column-width/use-calculate-column-width.d.ts +12 -0
- package/dist/@types/packages/vue2/src/components/data-grid/composables/use-calculate-column-width/use-calculate-column-width.types.d.ts +1 -0
- package/dist/@types/packages/vue2/src/components/data-grid/composables/use-calculate-sticky-element-height/use-calculate-sticky-element-height.d.ts +7 -0
- package/dist/@types/packages/vue2/src/components/data-grid/composables/use-column-hovering/index.d.ts +2 -0
- package/dist/@types/packages/vue2/src/components/data-grid/composables/use-column-hovering/use-column-hovering.d.ts +53 -0
- package/dist/@types/packages/vue2/src/components/data-grid/composables/use-column-hovering/use-column-hovering.types.d.ts +12 -0
- package/dist/@types/packages/vue2/src/components/data-grid/composables/use-column-reorderer/use-column-reorderer.d.ts +7 -0
- package/dist/@types/packages/vue2/src/components/data-grid/composables/use-config-settings/use-config-settings.d.ts +13 -99
- package/dist/@types/packages/vue2/src/components/data-grid/composables/use-config-settings/use-config.settings.types.d.ts +7 -0
- package/dist/@types/packages/vue2/src/components/data-grid/composables/use-keyboard-navigator/use-keyboard-navigator.d.ts +7 -0
- package/dist/@types/packages/vue2/src/components/data-grid/composables/use-lazy-loading/use-lazy-loading.d.ts +10 -0
- package/dist/@types/packages/vue2/src/components/data-grid/composables/use-resizer.d.ts +60 -1
- package/dist/@types/packages/vue2/src/components/data-grid/composables/use-scroller/use-scroller.d.ts +7 -0
- package/dist/@types/packages/vue2/src/components/data-grid/composables/use-selector.d.ts +8 -0
- package/dist/@types/packages/vue2/src/components/data-grid/composables/use-sorter.d.ts +9 -3
- package/dist/@types/packages/vue2/src/components/data-grid/data-grid.vue.d.ts +271 -0
- package/dist/@types/packages/vue2/src/components/date/date.vue.d.ts +37 -0
- package/dist/@types/packages/vue2/src/components/date-picker/composables/use-date-picker-single-calendar-text.d.ts +5 -0
- package/dist/@types/packages/vue2/src/components/date-picker/date-picker.vue.d.ts +105 -0
- package/dist/@types/packages/vue2/src/components/date-range-picker/components/date-range-picker-calendar/date-range-picker-calendar.vue.d.ts +95 -0
- package/dist/@types/packages/vue2/src/components/date-range-picker/composables/use-granularity-memory.d.ts +5 -0
- package/dist/@types/packages/vue2/src/components/date-range-picker/date-range-picker.vue.d.ts +145 -0
- package/dist/@types/packages/vue2/src/components/divider/divider.vue.d.ts +11 -0
- package/dist/@types/packages/vue2/src/components/dropdown/components/dropdown-base-textbox/dropdown-base-textbox.types.d.ts +34 -0
- package/dist/@types/packages/vue2/src/components/dropdown/components/dropdown-base-textbox/dropdown-base-textbox.vue.d.ts +101 -0
- package/dist/@types/packages/vue2/src/components/dropdown/components/dropdown-default-textbox/dropdown-default-textbox.vue.d.ts +101 -0
- package/dist/@types/packages/vue2/src/components/dropdown/components/dropdown-options-container/composables/use-dropdown-options-listbox.d.ts +10 -0
- package/dist/@types/packages/vue2/src/components/dropdown/components/dropdown-options-container/dropdown-options-container.vue.d.ts +162 -0
- package/dist/@types/packages/vue2/src/components/dropdown/components/dropdown-small-textbox/dropdown-small-textbox.vue.d.ts +83 -0
- package/dist/@types/packages/vue2/src/components/dropdown/components/variants/dropdown-avatar/dropdown-avatar.vue.d.ts +28 -0
- package/dist/@types/packages/vue2/src/components/dropdown/components/variants/dropdown-country/composables/use-country-items.d.ts +8 -0
- package/dist/@types/packages/vue2/src/components/dropdown/components/variants/dropdown-country/dropdown-country.types.d.ts +1 -0
- package/dist/@types/packages/vue2/src/components/dropdown/components/variants/dropdown-country/dropdown-country.vue.d.ts +28 -0
- package/dist/@types/packages/vue2/src/components/dropdown/components/variants/dropdown-currency/dropdown-currency.vue.d.ts +28 -0
- package/dist/@types/packages/vue2/src/components/dropdown/components/variants/dropdown-payment-method/dropdown-payment-method.types.d.ts +1 -2
- package/dist/@types/packages/vue2/src/components/dropdown/components/variants/dropdown-payment-method/dropdown-payment-method.vue.d.ts +28 -0
- package/dist/@types/packages/vue2/src/components/dropdown/components/variants/dropdown-tag/dropdown-tag.vue.d.ts +26 -0
- package/dist/@types/packages/vue2/src/components/dropdown/composables/use-display-value.d.ts +10 -0
- package/dist/@types/packages/vue2/src/components/dropdown/composables/use-keyboard-navigation.d.ts +31 -0
- package/dist/@types/packages/vue2/src/components/dropdown/dropdown.types.d.ts +8 -1
- package/dist/@types/packages/vue2/src/components/dropdown/dropdown.vue.d.ts +220 -0
- package/dist/@types/packages/vue2/src/components/empty-state/empty-state.vue.d.ts +70 -0
- package/dist/@types/packages/vue2/src/components/filter-bar/components/all-filters-modal/all-filters-modal.vue.d.ts +105 -26
- package/dist/@types/packages/vue2/src/components/filter-bar/components/all-filters-modal/components/all-filters-modal-button/all-filters-modal-button.vue.d.ts +24 -0
- package/dist/@types/packages/vue2/src/components/filter-bar/components/base-filter/base-filter.vue.d.ts +72 -0
- package/dist/@types/packages/vue2/src/components/filter-bar/components/base-filter-button/base-filter-button.vue.d.ts +48 -0
- package/dist/@types/packages/vue2/src/components/filter-bar/components/boolean-filter/boolean-filter.vue.d.ts +59 -0
- package/dist/@types/packages/vue2/src/components/filter-bar/components/date-filter/date-filter.vue.d.ts +66 -0
- package/dist/@types/packages/vue2/src/components/filter-bar/components/date-range-filter/date-range-filter.vue.d.ts +74 -0
- package/dist/@types/packages/vue2/src/components/filter-bar/components/filter-bar-button/filter-bar-button.vue.d.ts +52 -0
- package/dist/@types/packages/vue2/src/components/filter-bar/components/input-filter/input-filter.vue.d.ts +51 -0
- package/dist/@types/packages/vue2/src/components/filter-bar/components/range-filter/range-filter.vue.d.ts +47 -0
- package/dist/@types/packages/vue2/src/components/filter-bar/components/select-filter/select-filter.vue.d.ts +66 -0
- package/dist/@types/packages/vue2/src/components/filter-bar/components/select-filter/variants/select-avatar-filter/select-avatar-filter.vue.d.ts +29 -0
- package/dist/@types/packages/vue2/src/components/filter-bar/components/select-filter/variants/select-country-filter/select-country-filter.vue.d.ts +27 -0
- package/dist/@types/packages/vue2/src/components/filter-bar/components/select-filter/variants/select-currency-filter/select-currency-filter.vue.d.ts +30 -0
- package/dist/@types/packages/vue2/src/components/filter-bar/components/select-filter/variants/select-payment-method-filter/select-payment-method-filter.vue.d.ts +25 -0
- package/dist/@types/packages/vue2/src/components/filter-bar/components/select-filter/variants/select-tag-filter/select-tag-filter.vue.d.ts +27 -0
- package/dist/@types/packages/vue2/src/components/filter-bar/filter-bar.types.d.ts +55 -2
- package/dist/@types/packages/vue2/src/components/filter-bar/filter-bar.vue.d.ts +136 -0
- package/dist/@types/packages/vue2/src/components/focus-trap/focus-trap.types.d.ts +9 -0
- package/dist/@types/packages/vue2/src/components/focus-trap/focus-trap.vue.d.ts +54 -0
- package/dist/@types/packages/vue2/src/components/form-layout/components/form-layout-field-tip/form-layout-field-tip.vue.d.ts +30 -0
- package/dist/@types/packages/vue2/src/components/form-layout/components/form-layout-group/form-layout-group.vue.d.ts +66 -0
- package/dist/@types/packages/vue2/src/components/form-layout/components/form-layout-title/form-layout-title.vue.d.ts +40 -0
- package/dist/@types/packages/vue2/src/components/form-layout/form-layout.vue.d.ts +49 -0
- package/dist/@types/packages/vue2/src/components/header/components/info-icon-with-popover/info-icon-with-popover.vue.d.ts +27 -0
- package/dist/@types/packages/vue2/src/components/header/header.types.d.ts +3 -0
- package/dist/@types/packages/vue2/src/components/header/header.vue.d.ts +38 -0
- package/dist/@types/packages/vue2/src/components/image/image.vue.d.ts +24 -0
- package/dist/@types/packages/vue2/src/components/info-icon/info-icon.vue.d.ts +23 -0
- package/dist/@types/packages/vue2/src/components/input-field/input-field.types.d.ts +14 -0
- package/dist/@types/packages/vue2/src/components/input-field/input-field.vue.d.ts +140 -0
- package/dist/@types/packages/vue2/src/components/internal/avatar/avatar.vue.d.ts +37 -0
- package/dist/@types/packages/vue2/src/components/internal/base-button/base-button.vue.d.ts +49 -0
- package/dist/@types/packages/vue2/src/components/internal/button-actions-with-menu/button-actions-with-menu.vue.d.ts +112 -0
- package/dist/@types/packages/vue2/src/components/internal/calendar/calendar.types.d.ts +1 -0
- package/dist/@types/packages/vue2/src/components/internal/calendar/calendar.vue.d.ts +80 -0
- package/dist/@types/packages/vue2/src/components/internal/calendar/components/calendar-month/calendar-month.vue.d.ts +84 -0
- package/dist/@types/packages/vue2/src/components/internal/calendar/components/calendar-month/components/calendar-month-day/calendar-month-day.vue.d.ts +50 -0
- package/dist/@types/packages/vue2/src/components/internal/calendar/components/calendar-month/composables/granular-min-max-date.d.ts +5 -0
- package/dist/@types/packages/vue2/src/components/internal/calendar/components/calendar-month/composables/move-calendar-date.d.ts +9 -0
- package/dist/@types/packages/vue2/src/components/internal/calendar/composables/use-granularity-adjustments.d.ts +7 -0
- package/dist/@types/packages/vue2/src/components/internal/calendar/composables/use-range-pane.d.ts +6 -0
- package/dist/@types/packages/vue2/src/components/internal/checkbox-input/checkbox-input.vue.d.ts +89 -0
- package/dist/@types/packages/vue2/src/components/internal/controls-group/controls-group.vue.d.ts +86 -0
- package/dist/@types/packages/vue2/src/components/internal/copy/copy.vue.d.ts +37 -0
- package/dist/@types/packages/vue2/src/components/internal/dialog-page/dialog-page.vue.d.ts +45 -0
- package/dist/@types/packages/vue2/src/components/internal/error-message/error-message.vue.d.ts +6 -0
- package/dist/@types/packages/vue2/src/components/internal/field-label/field-label.vue.d.ts +43 -0
- package/dist/@types/packages/vue2/src/components/internal/fixed-scroller/composables/useFixedScroller.d.ts +25 -0
- package/dist/@types/packages/vue2/src/components/internal/fixed-scroller/fixed-scroller.vue.d.ts +29 -0
- package/dist/@types/packages/vue2/src/components/internal/footer-actions/footer-actions.vue.d.ts +81 -0
- package/dist/@types/packages/vue2/src/components/internal/grid-layout/grid-layout.vue.d.ts +23 -0
- package/dist/@types/packages/vue2/src/components/internal/listbox/components/listbox-multi-select/components/listbox-multi-select-chips/listbox-multi-select-chips.vue.d.ts +45 -0
- package/dist/@types/packages/vue2/src/components/internal/listbox/components/listbox-multi-select/components/listbox-multi-select-options/components/listbox-multi-select-category/listbox-multi-select-category.vue.d.ts +77 -0
- package/dist/@types/packages/vue2/src/components/internal/listbox/components/listbox-multi-select/components/listbox-multi-select-options/listbox-multi-select-options.vue.d.ts +90 -0
- package/dist/@types/packages/vue2/src/components/internal/listbox/components/listbox-multi-select/listbox-multi-select.vue.d.ts +74 -0
- package/dist/@types/packages/vue2/src/components/internal/listbox/components/listbox-option/listbox-option.vue.d.ts +24 -0
- package/dist/@types/packages/vue2/src/components/internal/listbox/components/listbox-option-tag/listbox-option-tag.vue.d.ts +11 -0
- package/dist/@types/packages/vue2/src/components/internal/listbox/components/listbox-single-select/components/listbox-single-select-category/listbox-single-select-category.vue.d.ts +6 -0
- package/dist/@types/packages/vue2/src/components/internal/listbox/components/listbox-single-select/listbox-single-select.vue.d.ts +64 -0
- package/dist/@types/packages/vue2/src/components/internal/listbox/components/listbox-single-select-option/listbox-single-select-option.vue.d.ts +32 -0
- package/dist/@types/packages/vue2/src/components/internal/listbox/composables/use-cached-selected-values/use-cached-selected-values.d.ts +13 -0
- package/dist/@types/packages/vue2/src/components/internal/listbox/composables/use-multi-level-items/use-multi-level-items.d.ts +10 -0
- package/dist/@types/packages/vue2/src/components/internal/listbox/listbox.vue.d.ts +139 -0
- package/dist/@types/packages/vue2/src/components/internal/radio-input/radio-input.vue.d.ts +65 -0
- package/dist/@types/packages/vue2/src/components/link/link.vue.d.ts +104 -0
- package/dist/@types/packages/vue2/src/components/loading-indicator/loading-indicator.vue.d.ts +18 -0
- package/dist/@types/packages/vue2/src/components/menu/components/menu-item/menu-item.vue.d.ts +57 -0
- package/dist/@types/packages/vue2/src/components/menu/components/menu-item-list/menu-item-list.vue.d.ts +21 -0
- package/dist/@types/packages/vue2/src/components/menu/components/menu-list-container/menu-list-container.vue.d.ts +3 -0
- package/dist/@types/packages/vue2/src/components/menu/components/sub-menu-item-list/sub-menu-item-list.vue.d.ts +3 -0
- package/dist/@types/packages/vue2/src/components/menu/menu.types.d.ts +1 -1
- package/dist/@types/packages/vue2/src/components/menu/menu.vue.d.ts +58 -0
- package/dist/@types/packages/vue2/src/components/modal/components/base-modal/base-modal.vue.d.ts +161 -0
- package/dist/@types/packages/vue2/src/components/modal/components/modal-default/modal-default.vue.d.ts +161 -0
- package/dist/@types/packages/vue2/src/components/modal/components/modal-dialog/modal-dialog.vue.d.ts +107 -0
- package/dist/@types/packages/vue2/src/components/modal/components/modal-page/modal-page.vue.d.ts +143 -0
- package/dist/@types/packages/vue2/src/components/modal/modal.types.d.ts +21 -0
- package/dist/@types/packages/vue2/src/components/modal/modal.vue.d.ts +156 -0
- package/dist/@types/packages/vue2/src/components/modal-fullscreen/components/modal-fullscreen-page.vue.d.ts +85 -0
- package/dist/@types/packages/vue2/src/components/modal-fullscreen/modal-fullscreen.vue.d.ts +68 -0
- package/dist/@types/packages/vue2/src/components/pagination/components/pagination-context/pagination-context.vue.d.ts +18 -0
- package/dist/@types/packages/vue2/src/components/pagination/components/pagination-controls/pagination-controls.vue.d.ts +18 -0
- package/dist/@types/packages/vue2/src/components/pagination/components/pagination-results-per-page/pagination-results-per-page.vue.d.ts +12 -0
- package/dist/@types/packages/vue2/src/components/pagination/pagination.vue.d.ts +75 -0
- package/dist/@types/packages/vue2/src/components/payment-method/composables/use-payment-icon/use-payment-icon.d.ts +14 -3
- package/dist/@types/packages/vue2/src/components/payment-method/payment-method.types.d.ts +7 -0
- package/dist/@types/packages/vue2/src/components/payment-method/payment-method.vue.d.ts +36 -9
- package/dist/@types/packages/vue2/src/components/popover/components/popover-image/popover-image.vue.d.ts +14 -0
- package/dist/@types/packages/vue2/src/components/popover/components/popover-title/popover-title.vue.d.ts +12 -0
- package/dist/@types/packages/vue2/src/components/popover/popover.types.d.ts +3 -0
- package/dist/@types/packages/vue2/src/components/popover/popover.vue.d.ts +203 -0
- package/dist/@types/packages/vue2/src/components/popper-container/popper-container.types.d.ts +3 -0
- package/dist/@types/packages/vue2/src/components/popper-container/popper-container.utils.d.ts +18 -0
- package/dist/@types/packages/vue2/src/components/popper-container/popper-container.vue.d.ts +122 -0
- package/dist/@types/packages/vue2/src/components/radio-group/components/radio-button/radio-button.vue.d.ts +73 -0
- package/dist/@types/packages/vue2/src/components/radio-group/radio-group.types.d.ts +3 -0
- package/dist/@types/packages/vue2/src/components/radio-group/radio-group.vue.d.ts +110 -0
- package/dist/@types/packages/vue2/src/components/search-bar/search-bar.vue.d.ts +73 -0
- package/dist/@types/packages/vue2/src/components/search-bar/useSearchBarDataFilter.d.ts +8 -0
- package/dist/@types/packages/vue2/src/components/secondary-nav/components/secondary-nav-category/secondary-nav-category.vue.d.ts +15 -0
- package/dist/@types/packages/vue2/src/components/secondary-nav/components/secondary-nav-item/secondary-nav-item.vue.d.ts +15 -0
- package/dist/@types/packages/vue2/src/components/secondary-nav/secondary-nav.vue.d.ts +36 -0
- package/dist/@types/packages/vue2/src/components/segmented-control/components/segmented-control-button/segmented-control-button.vue.d.ts +47 -0
- package/dist/@types/packages/vue2/src/components/segmented-control/segmented-control.vue.d.ts +51 -0
- package/dist/@types/packages/vue2/src/components/selection-card/components/selection-card-group/selection-card-group.vue.d.ts +125 -0
- package/dist/@types/packages/vue2/src/components/selection-card/selection-card.vue.d.ts +78 -0
- package/dist/@types/packages/vue2/src/components/sidepanel/components/sidepanel-page.vue.d.ts +102 -0
- package/dist/@types/packages/vue2/src/components/sidepanel/sidepanel.vue.d.ts +58 -0
- package/dist/@types/packages/vue2/src/components/status/status.types.d.ts +3 -0
- package/dist/@types/packages/vue2/src/components/status/status.vue.d.ts +16 -0
- package/dist/@types/packages/vue2/src/components/stepper/components/step/step.vue.d.ts +34 -0
- package/dist/@types/packages/vue2/src/components/stepper/composables/index.d.ts +2 -0
- package/dist/@types/packages/vue2/src/components/stepper/composables/{useKeyboardNavigation/useKeyboardNavigation.d.ts → use-keyboard-navigation/use-keyboard-navigation.d.ts} +6 -0
- package/dist/@types/packages/vue2/src/components/stepper/composables/use-step-register/use-step-register.d.ts +11 -0
- package/dist/@types/packages/vue2/src/components/stepper/stepper.types.d.ts +1 -0
- package/dist/@types/packages/vue2/src/components/stepper/stepper.vue.d.ts +39 -0
- package/dist/@types/packages/vue2/src/components/structured-list/components/structered-list-item/structured-list-item.vue.d.ts +55 -0
- package/dist/@types/packages/vue2/src/components/structured-list/structured-list.vue.d.ts +53 -0
- package/dist/@types/packages/vue2/src/components/summary-grid/components/summary-grid-item/summary-grid-item.types.d.ts +3 -0
- package/dist/@types/packages/vue2/src/components/summary-grid/components/summary-grid-item/summary-grid-item.vue.d.ts +75 -0
- package/dist/@types/packages/vue2/src/components/summary-grid/components/summary-grid-item-amount/summary-grid-item-amount.vue.d.ts +93 -0
- package/dist/@types/packages/vue2/src/components/summary-grid/components/summary-grid-item-custom/summary-grid-item-custom.vue.d.ts +39 -0
- package/dist/@types/packages/vue2/src/components/summary-grid/components/summary-grid-item-numeric/summary-grid-item-numeric.vue.d.ts +86 -0
- package/dist/@types/packages/vue2/src/components/summary-grid/components/summary-grid-item-percentage/summary-grid-item-percentage.vue.d.ts +86 -0
- package/dist/@types/packages/vue2/src/components/summary-grid/components/summary-grid-item-text/summary-grid-item-text.vue.d.ts +47 -0
- package/dist/@types/packages/vue2/src/components/summary-grid/summary-grid.types.d.ts +6 -0
- package/dist/@types/packages/vue2/src/components/summary-grid/summary-grid.vue.d.ts +28 -0
- package/dist/@types/packages/vue2/src/components/tabs/components/tab.vue.d.ts +18 -0
- package/dist/@types/packages/vue2/src/components/tabs/tabs.vue.d.ts +33 -0
- package/dist/@types/packages/vue2/src/components/tag/tag.types.d.ts +3 -0
- package/dist/@types/packages/vue2/src/components/tag/tag.vue.d.ts +18 -0
- package/dist/@types/packages/vue2/src/components/textarea/textarea.types.d.ts +3 -0
- package/dist/@types/packages/vue2/src/components/textarea/textarea.vue.d.ts +90 -0
- package/dist/@types/packages/vue2/src/components/timeline/components/timeline-item/timeline-item.vue.d.ts +87 -0
- package/dist/@types/packages/vue2/src/components/timeline/timeline.types.d.ts +12 -0
- package/dist/@types/packages/vue2/src/components/timeline/timeline.vue.d.ts +58 -0
- package/dist/@types/packages/vue2/src/components/toast/components/toast-item/toast-item.vue.d.ts +16 -0
- package/dist/@types/packages/vue2/src/components/toast/toast.vue.d.ts +17 -0
- package/dist/@types/packages/vue2/src/components/toggle/toggle.types.d.ts +3 -0
- package/dist/@types/packages/vue2/src/components/toggle/toggle.vue.d.ts +57 -0
- package/dist/@types/packages/vue2/src/components/tooltip/tooltip.vue.d.ts +69 -0
- package/dist/@types/packages/vue2/src/components/tutorial/components/tutorial-popover/components/tutorial-indicator/tutorial-indicator.vue.d.ts +8 -0
- package/dist/@types/packages/vue2/src/components/tutorial/components/tutorial-popover/tutorial-popover.vue.d.ts +78 -0
- package/dist/@types/packages/vue2/src/components/tutorial/tutorial.vue.d.ts +42 -0
- package/dist/@types/packages/vue2/src/components/typography/typography.types.d.ts +7 -0
- package/dist/@types/packages/vue2/src/components/typography/typography.vue.d.ts +74 -0
- package/dist/@types/packages/vue2/src/composables/initials.d.ts +7 -0
- package/dist/@types/packages/vue2/src/composables/use-checkbox-select-all/use-checkbox-select-all.d.ts +38 -0
- package/dist/@types/packages/vue2/src/composables/use-click-outside/use-click-outside.d.ts +7 -0
- package/dist/@types/packages/vue2/src/composables/use-expandable-content-height/use-expandable-content-height.d.ts +32 -0
- package/dist/@types/packages/vue2/src/composables/use-form-layout-loading/use-form-layout-loading.d.ts +10 -0
- package/dist/@types/packages/vue2/src/composables/use-form-validate/use-form.d.ts +50 -0
- package/dist/@types/packages/vue2/src/composables/use-form-validate/use-form.types.d.ts +6 -0
- package/dist/@types/packages/vue2/src/composables/use-has-slot/use-has-slot.d.ts +15 -0
- package/dist/@types/packages/vue2/src/composables/use-virtual-list/use-virtual-list.d.ts +38 -0
- package/dist/@types/packages/vue2/src/composables/useDynamicImport.d.ts +6 -0
- package/dist/@types/packages/vue2/src/directives/click-outside/on-click-outside.d.ts +8 -0
- package/dist/@types/packages/vue2/src/directives/click-outside/types.d.ts +11 -0
- package/dist/@types/packages/vue2/src/directives/click-outside/useEventListener/index.d.ts +54 -0
- package/dist/@types/packages/vue2/src/directives/click-outside/utils.d.ts +8 -0
- package/dist/@types/packages/vue2/src/directives/tooltip/tooltip.d.ts +26 -0
- package/dist/@types/packages/vue2/src/templates/data-grid-template/data-grid-template.vue.d.ts +45 -0
- package/dist/@types/packages/vue2/src/types/elements.d.ts +28 -0
- package/dist/@types/packages/vue2/src/types/functions.d.ts +6 -0
- package/dist/@types/packages/vue2/src/types/listbox.d.ts +9 -0
- package/dist/@types/packages/vue2/src/types/maybe-ref.d.ts +5 -0
- package/dist/@types/packages/vue2/src/types/refs.d.ts +26 -0
- package/dist/@types/packages/vue2/src/types/utils-events.d.ts +3 -0
- package/dist/@types/packages/vue2/src/utils/ts/aria-label.d.ts +7 -0
- package/dist/@types/packages/vue2/src/utils/ts/currency/countries-list.d.ts +7 -0
- package/dist/@types/packages/vue2/src/utils/ts/currency/currency.d.ts +29 -0
- package/dist/@types/packages/vue2/src/utils/ts/debounce/debounce.d.ts +9 -0
- package/dist/@types/packages/vue2/src/utils/ts/deprecate.d.ts +12 -0
- package/dist/@types/packages/vue2/src/utils/ts/events.d.ts +19 -0
- package/dist/@types/packages/vue2/src/utils/ts/focus-trap.utils.d.ts +25 -0
- package/dist/@types/packages/vue2/src/utils/ts/get-slot-text/get-slot-text.d.ts +6 -0
- package/dist/@types/packages/vue2/src/utils/ts/i18n.d.ts +7 -0
- package/dist/@types/packages/vue2/src/utils/ts/print-development-warning.d.ts +5 -0
- package/dist/@types/packages/vue2/src/utils/ts/truncate.d.ts +6 -0
- package/dist/@types/packages/vue2/src/utils/ts/unique-id.d.ts +4 -0
- package/dist/accordion.js +3 -3
- package/dist/action-bar.js +7 -7
- package/dist/alert.js +7 -7
- package/dist/assets/base-modal.css +1 -1
- package/dist/assets/button.css +1 -1
- package/dist/assets/dialog-page.css +1 -1
- package/dist/assets/index10.css +1 -1
- package/dist/assets/index11.css +1 -1
- package/dist/assets/index12.css +1 -1
- package/dist/assets/index13.css +1 -1
- package/dist/assets/index14.css +1 -1
- package/dist/assets/index15.css +1 -1
- package/dist/assets/index16.css +1 -1
- package/dist/assets/index17.css +1 -1
- package/dist/assets/index18.css +1 -1
- package/dist/assets/index19.css +1 -1
- package/dist/assets/index2.css +1 -1
- package/dist/assets/index20.css +1 -1
- package/dist/assets/index21.css +1 -1
- package/dist/assets/index22.css +1 -1
- package/dist/assets/index23.css +1 -1
- package/dist/assets/index24.css +1 -1
- package/dist/assets/index25.css +1 -1
- package/dist/assets/index26.css +1 -1
- package/dist/assets/index27.css +1 -1
- package/dist/assets/index28.css +1 -1
- package/dist/assets/index29.css +1 -1
- package/dist/assets/index3.css +1 -1
- package/dist/assets/index30.css +1 -1
- package/dist/assets/index31.css +1 -1
- package/dist/assets/index32.css +1 -1
- package/dist/assets/index33.css +1 -1
- package/dist/assets/index34.css +1 -1
- package/dist/assets/index35.css +1 -1
- package/dist/assets/index36.css +1 -1
- package/dist/assets/index37.css +1 -1
- package/dist/assets/index38.css +1 -1
- package/dist/assets/index39.css +1 -1
- package/dist/assets/index4.css +1 -1
- package/dist/assets/index40.css +1 -1
- package/dist/assets/index41.css +1 -1
- package/dist/assets/index42.css +1 -1
- package/dist/assets/index43.css +1 -1
- package/dist/assets/index44.css +1 -1
- package/dist/assets/index45.css +1 -1
- package/dist/assets/index46.css +1 -1
- package/dist/assets/index47.css +1 -1
- package/dist/assets/index48.css +1 -1
- package/dist/assets/index5.css +1 -1
- package/dist/assets/index6.css +1 -1
- package/dist/assets/index7.css +1 -1
- package/dist/assets/index8.css +1 -1
- package/dist/assets/index9.css +1 -1
- package/dist/assets/payment-method.css +1 -0
- package/dist/avatar-image.js +1 -1
- package/dist/button.js +31 -30
- package/dist/button.js.map +1 -1
- package/dist/card.js +4 -4
- package/dist/checkbox.js +6 -6
- package/dist/chunks/1-generic-use.3ea646cd.js +5 -0
- package/dist/chunks/1-generic-use.3ea646cd.js.map +1 -0
- package/dist/chunks/1-generic-use.ccca5813.js +5 -0
- package/dist/chunks/1-generic-use.ccca5813.js.map +1 -0
- package/dist/chunks/2-generic-use.443db127.js +5 -0
- package/dist/chunks/2-generic-use.443db127.js.map +1 -0
- package/dist/chunks/2-generic-use.d69d7c08.js +5 -0
- package/dist/chunks/2-generic-use.d69d7c08.js.map +1 -0
- package/dist/chunks/3-generic-use.9f74667f.js +5 -0
- package/dist/chunks/3-generic-use.9f74667f.js.map +1 -0
- package/dist/chunks/3-generic-use.fe7ae2ce.js +5 -0
- package/dist/chunks/3-generic-use.fe7ae2ce.js.map +1 -0
- package/dist/chunks/4-generic-use.0356f4a1.js +5 -0
- package/dist/chunks/4-generic-use.0356f4a1.js.map +1 -0
- package/dist/chunks/4-generic-use.cd04bad0.js +5 -0
- package/dist/chunks/4-generic-use.cd04bad0.js.map +1 -0
- package/dist/chunks/adding-payment-methods.d570e03e.js +5 -0
- package/dist/chunks/adding-payment-methods.d570e03e.js.map +1 -0
- package/dist/chunks/adding-payment-methods.e419d6c0.js +5 -0
- package/dist/chunks/adding-payment-methods.e419d6c0.js.map +1 -0
- package/dist/chunks/adyen-giving.480913b5.js +5 -0
- package/dist/chunks/adyen-giving.480913b5.js.map +1 -0
- package/dist/chunks/adyen-giving.54ed984c.js +5 -0
- package/dist/chunks/adyen-giving.54ed984c.js.map +1 -0
- package/dist/chunks/{base-button.4e5abd2a.js → base-button.13df4e44.js} +2 -2
- package/dist/chunks/{base-button.4e5abd2a.js.map → base-button.13df4e44.js.map} +1 -1
- package/dist/chunks/{base-modal.da3f56b5.js → base-modal.30bce990.js} +7 -7
- package/dist/chunks/{base-modal.da3f56b5.js.map → base-modal.30bce990.js.map} +1 -1
- package/dist/chunks/{button-actions-with-menu.985fc1c4.js → button-actions-with-menu.a5d2bb13.js} +4 -4
- package/dist/chunks/{button-actions-with-menu.985fc1c4.js.map → button-actions-with-menu.a5d2bb13.js.map} +1 -1
- package/dist/chunks/{button-actions.0447777d.js → button-actions.ec3c649c.js} +3 -3
- package/dist/chunks/{button-actions.0447777d.js.map → button-actions.ec3c649c.js.map} +1 -1
- package/dist/chunks/{button.9d3721af.js → button.e965bf53.js} +16 -16
- package/dist/chunks/{button.9d3721af.js.map → button.e965bf53.js.map} +1 -1
- package/dist/chunks/{calendar.591f4076.js → calendar.52fe4032.js} +5 -5
- package/dist/chunks/{calendar.591f4076.js.map → calendar.52fe4032.js.map} +1 -1
- package/dist/chunks/{checkbox-input.8dae4c7d.js → checkbox-input.99336948.js} +2 -2
- package/dist/chunks/{checkbox-input.8dae4c7d.js.map → checkbox-input.99336948.js.map} +1 -1
- package/dist/chunks/{checkbox.019a2ab7.js → checkbox.1442f41a.js} +4 -4
- package/dist/chunks/{checkbox.019a2ab7.js.map → checkbox.1442f41a.js.map} +1 -1
- package/dist/chunks/{checkmark-circle-fill.f9fba300.js → checkmark-circle-fill.c45a999d.js} +2 -2
- package/dist/chunks/{checkmark-circle-fill.f9fba300.js.map → checkmark-circle-fill.c45a999d.js.map} +1 -1
- package/dist/chunks/{checkmark-small.a4b1d227.js → checkmark-small.c79220d9.js} +2 -2
- package/dist/chunks/{checkmark-small.a4b1d227.js.map → checkmark-small.c79220d9.js.map} +1 -1
- package/dist/chunks/{checkmark.858ae91f.js → checkmark.eb3c7a06.js} +2 -2
- package/dist/chunks/{checkmark.858ae91f.js.map → checkmark.eb3c7a06.js.map} +1 -1
- package/dist/chunks/{chevron-left.9d165960.js → chevron-left.4ee92950.js} +2 -2
- package/dist/chunks/{chevron-left.9d165960.js.map → chevron-left.4ee92950.js.map} +1 -1
- package/dist/chunks/{chevron-up.abfbe24b.js → chevron-up.638a9f34.js} +2 -2
- package/dist/chunks/{chevron-up.abfbe24b.js.map → chevron-up.638a9f34.js.map} +1 -1
- package/dist/chunks/{controls-group.1e32c48d.js → controls-group.1f29b602.js} +3 -3
- package/dist/chunks/{controls-group.1e32c48d.js.map → controls-group.1f29b602.js.map} +1 -1
- package/dist/chunks/{copy.36082972.js → copy.d052f444.js} +4 -4
- package/dist/chunks/{copy.36082972.js.map → copy.d052f444.js.map} +1 -1
- package/dist/chunks/{cross-circle-fill.7757ad2d.js → cross-circle-fill.1abec1a2.js} +2 -2
- package/dist/chunks/{cross-circle-fill.7757ad2d.js.map → cross-circle-fill.1abec1a2.js.map} +1 -1
- package/dist/chunks/{cross-small.1fb52df1.js → cross-small.b85406fe.js} +2 -2
- package/dist/chunks/{cross-small.1fb52df1.js.map → cross-small.b85406fe.js.map} +1 -1
- package/dist/chunks/{cross.5b206f58.js → cross.26509efc.js} +2 -2
- package/dist/chunks/{cross.5b206f58.js.map → cross.26509efc.js.map} +1 -1
- package/dist/chunks/{dialog-page.9768440a.js → dialog-page.d505c5ec.js} +3 -3
- package/dist/chunks/{dialog-page.9768440a.js.map → dialog-page.d505c5ec.js.map} +1 -1
- package/dist/chunks/{dropdown-default-textbox.b7a03bed.js → dropdown-default-textbox.e0ca5afb.js} +136 -116
- package/dist/chunks/dropdown-default-textbox.e0ca5afb.js.map +1 -0
- package/dist/chunks/{dropdown.25d06e18.js → dropdown.257691c0.js} +14 -15
- package/dist/chunks/{dropdown.25d06e18.js.map → dropdown.257691c0.js.map} +1 -1
- package/dist/chunks/{error-message.31ee87b0.js → error-message.56247bcc.js} +3 -3
- package/dist/chunks/{error-message.31ee87b0.js.map → error-message.56247bcc.js.map} +1 -1
- package/dist/chunks/{fixed-scroller.d046696a.js → fixed-scroller.47546775.js} +3 -3
- package/dist/chunks/{fixed-scroller.d046696a.js.map → fixed-scroller.47546775.js.map} +1 -1
- package/dist/chunks/{footer-actions.e912b4a8.js → footer-actions.3c2dbf43.js} +4 -4
- package/dist/chunks/{footer-actions.e912b4a8.js.map → footer-actions.3c2dbf43.js.map} +1 -1
- package/dist/chunks/{index.1dc7387c.js → index.08d813e2.js} +7 -7
- package/dist/chunks/{index.1dc7387c.js.map → index.08d813e2.js.map} +1 -1
- package/dist/chunks/{index.97cbaeca.js → index.0e01e0b2.js} +3 -3
- package/dist/chunks/{index.97cbaeca.js.map → index.0e01e0b2.js.map} +1 -1
- package/dist/chunks/{index.613e0381.js → index.10c69f39.js} +189 -189
- package/dist/chunks/index.10c69f39.js.map +1 -0
- package/dist/chunks/{index.7ce98690.js → index.44f2aca7.js} +2 -2
- package/dist/chunks/{index.7ce98690.js.map → index.44f2aca7.js.map} +1 -1
- package/dist/chunks/{index.a7bd4403.js → index.4fb57ba0.js} +6 -6
- package/dist/chunks/{index.a7bd4403.js.map → index.4fb57ba0.js.map} +1 -1
- package/dist/chunks/{index.45c2c06d.js → index.56c13d2c.js} +16 -17
- package/dist/chunks/{index.45c2c06d.js.map → index.56c13d2c.js.map} +1 -1
- package/dist/chunks/{index.0108f090.js → index.824101bb.js} +2 -2
- package/dist/chunks/{index.0108f090.js.map → index.824101bb.js.map} +1 -1
- package/dist/chunks/{index.9d34d36f.js → index.99c63a74.js} +2 -2
- package/dist/chunks/{index.9d34d36f.js.map → index.99c63a74.js.map} +1 -1
- package/dist/chunks/{index.bdb05d13.js → index.9aaed799.js} +3 -3
- package/dist/chunks/{index.bdb05d13.js.map → index.9aaed799.js.map} +1 -1
- package/dist/chunks/{index.62b7aca9.js → index.bf4a116b.js} +29 -27
- package/dist/chunks/index.bf4a116b.js.map +1 -0
- package/dist/chunks/{index.2900fb28.js → index.f800b267.js} +2 -2
- package/dist/chunks/{index.2900fb28.js.map → index.f800b267.js.map} +1 -1
- package/dist/chunks/{info-filled.5f31a284.js → info-filled.a6f9d7d0.js} +2 -2
- package/dist/chunks/{info-filled.5f31a284.js.map → info-filled.a6f9d7d0.js.map} +1 -1
- package/dist/chunks/{info.be04ebf6.js → info.550f9511.js} +2 -2
- package/dist/chunks/{info.be04ebf6.js.map → info.550f9511.js.map} +1 -1
- package/dist/chunks/internal-error.35cbb071.js +5 -0
- package/dist/chunks/internal-error.35cbb071.js.map +1 -0
- package/dist/chunks/internal-error.9a4823ed.js +5 -0
- package/dist/chunks/internal-error.9a4823ed.js.map +1 -0
- package/dist/chunks/{listbox-option-tag.45852be1.js → listbox-option-tag.4de1659c.js} +3 -3
- package/dist/chunks/{listbox-option-tag.45852be1.js.map → listbox-option-tag.4de1659c.js.map} +1 -1
- package/dist/chunks/{listbox.e2b26adc.js → listbox.eb436d06.js} +8 -8
- package/dist/chunks/{listbox.e2b26adc.js.map → listbox.eb436d06.js.map} +1 -1
- package/dist/chunks/{loading-button.5351416c.js → loading-button.6e15f27f.js} +4 -4
- package/dist/chunks/{loading-button.5351416c.js.map → loading-button.6e15f27f.js.map} +1 -1
- package/dist/chunks/no-results-found.58856d70.js +5 -0
- package/dist/chunks/no-results-found.58856d70.js.map +1 -0
- package/dist/chunks/no-results-found.cbb12f78.js +5 -0
- package/dist/chunks/no-results-found.cbb12f78.js.map +1 -0
- package/dist/chunks/notifications-cleared.71025c22.js +5 -0
- package/dist/chunks/notifications-cleared.71025c22.js.map +1 -0
- package/dist/chunks/notifications-cleared.c4f4bed4.js +5 -0
- package/dist/chunks/notifications-cleared.c4f4bed4.js.map +1 -0
- package/dist/chunks/page-not-found.a500440d.js +5 -0
- package/dist/chunks/page-not-found.a500440d.js.map +1 -0
- package/dist/chunks/page-not-found.d1a84ba7.js +5 -0
- package/dist/chunks/page-not-found.d1a84ba7.js.map +1 -0
- package/dist/chunks/payment-method.df1b62db.js +104 -0
- package/dist/chunks/payment-method.df1b62db.js.map +1 -0
- package/dist/chunks/planned-maintenance.7fa5ac16.js +5 -0
- package/dist/chunks/planned-maintenance.7fa5ac16.js.map +1 -0
- package/dist/chunks/planned-maintenance.cff01aed.js +5 -0
- package/dist/chunks/planned-maintenance.cff01aed.js.map +1 -0
- package/dist/chunks/referrals.178ce0eb.js +5 -0
- package/dist/chunks/referrals.178ce0eb.js.map +1 -0
- package/dist/chunks/referrals.599047da.js +5 -0
- package/dist/chunks/referrals.599047da.js.map +1 -0
- package/dist/chunks/{refresh.9fa2dfa3.js → refresh.bd60f6a8.js} +2 -2
- package/dist/chunks/{refresh.9fa2dfa3.js.map → refresh.bd60f6a8.js.map} +1 -1
- package/dist/chunks/{search.010eef6e.js → search.ade93bda.js} +2 -2
- package/dist/chunks/{search.010eef6e.js.map → search.ade93bda.js.map} +1 -1
- package/dist/chunks/success.41981fe8.js +5 -0
- package/dist/chunks/success.41981fe8.js.map +1 -0
- package/dist/chunks/success.77fac78b.js +5 -0
- package/dist/chunks/success.77fac78b.js.map +1 -0
- package/dist/chunks/{tooltip.5dfe726a.js → tooltip.066fd8f7.js} +3 -3
- package/dist/chunks/{tooltip.5dfe726a.js.map → tooltip.066fd8f7.js.map} +1 -1
- package/dist/chunks/upload-files.2708eca7.js +5 -0
- package/dist/chunks/upload-files.2708eca7.js.map +1 -0
- package/dist/chunks/upload-files.b4cd9f8b.js +5 -0
- package/dist/chunks/upload-files.b4cd9f8b.js.map +1 -0
- package/dist/chunks/use-click-outside.941d1600.js +14 -0
- package/dist/chunks/use-click-outside.941d1600.js.map +1 -0
- package/dist/chunks/wrong-environment.c73b0bc0.js +5 -0
- package/dist/chunks/wrong-environment.c73b0bc0.js.map +1 -0
- package/dist/chunks/wrong-environment.f890a237.js +5 -0
- package/dist/chunks/wrong-environment.f890a237.js.map +1 -0
- package/dist/code-snippet.js +7 -7
- package/dist/code-snippet.js.map +1 -1
- package/dist/country.js +2 -2
- package/dist/currency.js +1 -1
- package/dist/data-grid-template.js +1 -1
- package/dist/data-grid.js +1358 -1144
- package/dist/data-grid.js.map +1 -1
- package/dist/date-picker.js +21 -22
- package/dist/date-picker.js.map +1 -1
- package/dist/date-range-picker.js +2 -2
- package/dist/date.js +1 -1
- package/dist/divider.js +1 -1
- package/dist/dropdown.js +22 -22
- package/dist/dropdown.js.map +1 -1
- package/dist/empty-state.js +88 -77
- package/dist/empty-state.js.map +1 -1
- package/dist/filter-bar.js +584 -591
- package/dist/filter-bar.js.map +1 -1
- package/dist/focus-trap.js +1 -1
- package/dist/fonts/fonts.css +2 -71
- package/dist/form-layout.js +67 -86
- package/dist/form-layout.js.map +1 -1
- package/dist/header.js +5 -5
- package/dist/index.js +132 -131
- package/dist/index.js.map +1 -1
- package/dist/info-icon.js +4 -4
- package/dist/input-field.js +4 -4
- package/dist/internal.js +8 -8
- package/dist/link.js +1 -1
- package/dist/loading-indicator.js +1 -1
- package/dist/menu.js +1 -1
- package/dist/modal-fullscreen.js +7 -7
- package/dist/modal.js +6 -6
- package/dist/pagination.js +4 -4
- package/dist/payment-method.js +4 -104
- package/dist/payment-method.js.map +1 -1
- package/dist/popover.js +1 -1
- package/dist/popper-container.js +1 -1
- package/dist/radio-group.js +4 -4
- package/dist/search-bar.js +4 -4
- package/dist/secondary-nav.js +48 -43
- package/dist/secondary-nav.js.map +1 -1
- package/dist/segmented-control.js +4 -4
- package/dist/selection-card.js +5 -5
- package/dist/sidepanel.js +7 -7
- package/dist/status.js +2 -2
- package/dist/stepper.js +152 -141
- package/dist/stepper.js.map +1 -1
- package/dist/structured-list.js +1 -1
- package/dist/summary-grid.js +3 -3
- package/dist/tabs.js +3 -3
- package/dist/tag.js +3 -3
- package/dist/textarea.js +4 -4
- package/dist/timeline.js +7 -7
- package/dist/toast.js +5 -5
- package/dist/toggle.js +3 -3
- package/dist/tutorial.js +7 -7
- package/dist/typography.js +1 -1
- package/dist/web-types.json +1 -1
- package/package.json +2 -2
- package/dist/@types/packages/vue2/src/components/form-layout/components/form-layout-group/composable/use-form-layout-group-percentage.d.ts +0 -3
- package/dist/assets/index49.css +0 -1
- package/dist/chunks/directive.0408e565.js +0 -23
- package/dist/chunks/directive.0408e565.js.map +0 -1
- package/dist/chunks/dropdown-default-textbox.b7a03bed.js.map +0 -1
- package/dist/chunks/index.613e0381.js.map +0 -1
- package/dist/chunks/index.62b7aca9.js.map +0 -1
- package/dist/fonts/Inter-Bold.otf +0 -0
- package/dist/fonts/Inter-Bold.ttf +0 -0
- package/dist/fonts/Inter-Bold.woff +0 -0
- package/dist/fonts/Inter-Bold.woff2 +0 -0
- package/dist/fonts/Inter-ExtraBold.otf +0 -0
- package/dist/fonts/Inter-ExtraBold.ttf +0 -0
- package/dist/fonts/Inter-ExtraBold.woff +0 -0
- package/dist/fonts/Inter-ExtraBold.woff2 +0 -0
- package/dist/fonts/Inter-ExtraLight.otf +0 -0
- package/dist/fonts/Inter-ExtraLight.ttf +0 -0
- package/dist/fonts/Inter-ExtraLight.woff +0 -0
- package/dist/fonts/Inter-ExtraLight.woff2 +0 -0
- package/dist/fonts/Inter-Italic.woff +0 -0
- package/dist/fonts/Inter-Italic.woff2 +0 -0
- package/dist/fonts/Inter-Light.otf +0 -0
- package/dist/fonts/Inter-Light.ttf +0 -0
- package/dist/fonts/Inter-Light.woff +0 -0
- package/dist/fonts/Inter-Light.woff2 +0 -0
- package/dist/fonts/Inter-Medium.otf +0 -0
- package/dist/fonts/Inter-Medium.ttf +0 -0
- package/dist/fonts/Inter-Medium.woff +0 -0
- package/dist/fonts/Inter-Medium.woff2 +0 -0
- package/dist/fonts/Inter-Regular.otf +0 -0
- package/dist/fonts/Inter-Regular.ttf +0 -0
- package/dist/fonts/Inter-Regular.woff +0 -0
- package/dist/fonts/Inter-Regular.woff2 +0 -0
- package/dist/fonts/Inter-SemiBold.otf +0 -0
- package/dist/fonts/Inter-SemiBold.ttf +0 -0
- package/dist/fonts/Inter-SemiBold.woff +0 -0
- package/dist/fonts/Inter-SemiBold.woff2 +0 -0
- package/dist/fonts/Inter-Thin.otf +0 -0
- package/dist/fonts/Inter-Thin.ttf +0 -0
- package/dist/fonts/Inter-Thin.woff +0 -0
- package/dist/fonts/Inter-Thin.woff2 +0 -0
- /package/dist/assets/{cross-circle-fill.css → cross.css} +0 -0
|
@@ -1,11 +1,44 @@
|
|
|
1
1
|
import { PropType } from "../../../../vue3/node_modules/vue";
|
|
2
2
|
import type { BentoAccordionTitleSize } from './accordion.types';
|
|
3
|
+
/**
|
|
4
|
+
* An accordion is a vertical stack of interactive headers used to reveal or hide
|
|
5
|
+
* sections of content associated with these headers.
|
|
6
|
+
*
|
|
7
|
+
* This component must only have `BentoAccordionItem` components in its default slot.
|
|
8
|
+
*
|
|
9
|
+
* Accordion items should be collapsed by default.
|
|
10
|
+
*
|
|
11
|
+
* @example
|
|
12
|
+
* import { BentoAccordion, BentoAccordionItem } from '@adyen/bento-vue2';
|
|
13
|
+
*
|
|
14
|
+
* export default {
|
|
15
|
+
* components: { BentoAccordion, BentoAccordionItem },
|
|
16
|
+
* template: `
|
|
17
|
+
* <bento-accordion>
|
|
18
|
+
* <bento-accordion-item title="Item 1">
|
|
19
|
+
* Content for item 1
|
|
20
|
+
* </bento-accordion-item>
|
|
21
|
+
* <bento-accordion-item title="Item 2">
|
|
22
|
+
* Content for item 2
|
|
23
|
+
* </bento-accordion-item>
|
|
24
|
+
* </bento-accordion>
|
|
25
|
+
* `
|
|
26
|
+
* }
|
|
27
|
+
*/
|
|
3
28
|
declare const _default: __VLS_WithTemplateSlots<import("../../../../vue3/node_modules/vue").DefineComponent<{
|
|
29
|
+
/**
|
|
30
|
+
* Controls accordion title size.
|
|
31
|
+
* @values default, small
|
|
32
|
+
*/
|
|
4
33
|
titleSize: {
|
|
5
34
|
type: PropType<BentoAccordionTitleSize>;
|
|
6
35
|
default: string;
|
|
7
36
|
};
|
|
8
37
|
}, {}, unknown, {}, {}, import("../../../../vue3/node_modules/vue").ComponentOptionsMixin, import("../../../../vue3/node_modules/vue").ComponentOptionsMixin, {}, string, import("../../../../vue3/node_modules/vue").VNodeProps & import("../../../../vue3/node_modules/vue").AllowedComponentProps & import("../../../../vue3/node_modules/vue").ComponentCustomProps, Readonly<import("../../../../vue3/node_modules/vue").ExtractPropTypes<{
|
|
38
|
+
/**
|
|
39
|
+
* Controls accordion title size.
|
|
40
|
+
* @values default, small
|
|
41
|
+
*/
|
|
9
42
|
titleSize: {
|
|
10
43
|
type: PropType<BentoAccordionTitleSize>;
|
|
11
44
|
default: string;
|
package/dist/@types/packages/vue2/src/components/accordion/components/accordion-item.vue.d.ts
CHANGED
|
@@ -1,8 +1,37 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* An accordion item is an interactive header used to reveal or hide a
|
|
3
|
+
* section of content associated with this header.
|
|
4
|
+
*
|
|
5
|
+
* This component must always be wrapped by a `BentoAccordion` component.
|
|
6
|
+
*
|
|
7
|
+
* @example
|
|
8
|
+
* import { BentoAccordion, BentoAccordionItem } from '@adyen/bento-vue2';
|
|
9
|
+
*
|
|
10
|
+
* export default {
|
|
11
|
+
* components: { BentoAccordion, BentoAccordionItem },
|
|
12
|
+
* template: `
|
|
13
|
+
* <bento-accordion>
|
|
14
|
+
* <bento-accordion-item title="Item 1">
|
|
15
|
+
* Content for item 1
|
|
16
|
+
* </bento-accordion-item>
|
|
17
|
+
* <bento-accordion-item title="Item 2">
|
|
18
|
+
* Content for item 2
|
|
19
|
+
* </bento-accordion-item>
|
|
20
|
+
* </bento-accordion>
|
|
21
|
+
* `
|
|
22
|
+
* }
|
|
23
|
+
*/
|
|
1
24
|
declare const _default: __VLS_WithTemplateSlots<import("../../../../../vue3/node_modules/vue").DefineComponent<{
|
|
25
|
+
/**
|
|
26
|
+
* Sets the title of the accordion item.
|
|
27
|
+
*/
|
|
2
28
|
title: {
|
|
3
29
|
type: StringConstructor;
|
|
4
30
|
required: true;
|
|
5
31
|
};
|
|
32
|
+
/**
|
|
33
|
+
* Controls if the content is visible or hidden.
|
|
34
|
+
*/
|
|
6
35
|
isExpanded: {
|
|
7
36
|
type: BooleanConstructor;
|
|
8
37
|
default: boolean;
|
|
@@ -10,10 +39,16 @@ declare const _default: __VLS_WithTemplateSlots<import("../../../../../vue3/node
|
|
|
10
39
|
}, {}, unknown, {}, {}, import("../../../../../vue3/node_modules/vue").ComponentOptionsMixin, import("../../../../../vue3/node_modules/vue").ComponentOptionsMixin, {
|
|
11
40
|
"update:is-expanded": (value: boolean) => void;
|
|
12
41
|
}, string, import("../../../../../vue3/node_modules/vue").VNodeProps & import("../../../../../vue3/node_modules/vue").AllowedComponentProps & import("../../../../../vue3/node_modules/vue").ComponentCustomProps, Readonly<import("../../../../../vue3/node_modules/vue").ExtractPropTypes<{
|
|
42
|
+
/**
|
|
43
|
+
* Sets the title of the accordion item.
|
|
44
|
+
*/
|
|
13
45
|
title: {
|
|
14
46
|
type: StringConstructor;
|
|
15
47
|
required: true;
|
|
16
48
|
};
|
|
49
|
+
/**
|
|
50
|
+
* Controls if the content is visible or hidden.
|
|
51
|
+
*/
|
|
17
52
|
isExpanded: {
|
|
18
53
|
type: BooleanConstructor;
|
|
19
54
|
default: boolean;
|
|
@@ -1,28 +1,84 @@
|
|
|
1
1
|
import { PropType } from "../../../../vue3/node_modules/vue";
|
|
2
2
|
import { BentoButtonActionsList } from "../button";
|
|
3
3
|
import { type BentoActionBarVariant } from "./action-bar.types";
|
|
4
|
+
/**
|
|
5
|
+
* Action bar is a floating bar that provides users with quick access to key actions that can be applied to one or multiple items.
|
|
6
|
+
*
|
|
7
|
+
* @example
|
|
8
|
+
* import { BentoActionBar } from '@adyen/bento-vue2';
|
|
9
|
+
*
|
|
10
|
+
* export default {
|
|
11
|
+
* components: { BentoActionBar },
|
|
12
|
+
* template: `
|
|
13
|
+
* <bento-action-bar
|
|
14
|
+
* :actions='[
|
|
15
|
+
* {
|
|
16
|
+
* title: 'Delete',
|
|
17
|
+
* critical: true,
|
|
18
|
+
* icon: BinIcon,
|
|
19
|
+
* event: () => true,
|
|
20
|
+
* },
|
|
21
|
+
* {
|
|
22
|
+
* title: 'Edit',
|
|
23
|
+
* icon: EditIcon,
|
|
24
|
+
* event: () => true,
|
|
25
|
+
* }
|
|
26
|
+
* ]'
|
|
27
|
+
* @close="closeAction"
|
|
28
|
+
* :item-counter="5"
|
|
29
|
+
* />
|
|
30
|
+
* `
|
|
31
|
+
* }
|
|
32
|
+
*/
|
|
4
33
|
declare const _default: import("../../../../vue3/node_modules/vue").DefineComponent<{
|
|
34
|
+
/**
|
|
35
|
+
* List of actions that will be used to render the buttons.
|
|
36
|
+
* Required and used for the `default` variant.
|
|
37
|
+
*
|
|
38
|
+
* Each object in the list should have a `title`, an `event` and,
|
|
39
|
+
* optionally, an `icon`.
|
|
40
|
+
*
|
|
41
|
+
* The component will display 4 actions and the hide the rest inside a menu.
|
|
42
|
+
*
|
|
43
|
+
* @see BentoButton for a list of all the other props supported by each button action.
|
|
44
|
+
*/
|
|
5
45
|
actions: {
|
|
6
46
|
type: PropType<BentoButtonActionsList>;
|
|
7
47
|
default: () => any[];
|
|
8
48
|
};
|
|
49
|
+
/**
|
|
50
|
+
* How many actions should be visible outside the menu, cannot be more than 4
|
|
51
|
+
*/
|
|
9
52
|
visibleActions: {
|
|
10
53
|
type: NumberConstructor;
|
|
11
54
|
default: number;
|
|
12
55
|
validator: (value: number) => boolean;
|
|
13
56
|
};
|
|
57
|
+
/**
|
|
58
|
+
* Use when there are sticky elements at the bottom, like sticky pagination
|
|
59
|
+
*/
|
|
14
60
|
extraBottomSpacing: {
|
|
15
61
|
type: BooleanConstructor;
|
|
16
62
|
default: boolean;
|
|
17
63
|
};
|
|
64
|
+
/**
|
|
65
|
+
* Show how many items are selected
|
|
66
|
+
*/
|
|
18
67
|
itemCounter: {
|
|
19
68
|
type: NumberConstructor;
|
|
20
69
|
required: true;
|
|
21
70
|
};
|
|
71
|
+
/**
|
|
72
|
+
* Label for the selection, e.g. 'selected'/'changed'
|
|
73
|
+
*/
|
|
22
74
|
selectionLabel: {
|
|
23
75
|
type: StringConstructor;
|
|
24
76
|
default: any;
|
|
25
77
|
};
|
|
78
|
+
/**
|
|
79
|
+
* Variant for the action bar
|
|
80
|
+
* @values default, confirmation
|
|
81
|
+
*/
|
|
26
82
|
variant: {
|
|
27
83
|
type: PropType<BentoActionBarVariant>;
|
|
28
84
|
default: string;
|
|
@@ -34,27 +90,54 @@ declare const _default: import("../../../../vue3/node_modules/vue").DefineCompon
|
|
|
34
90
|
} & {
|
|
35
91
|
save: () => void;
|
|
36
92
|
}, string, import("../../../../vue3/node_modules/vue").VNodeProps & import("../../../../vue3/node_modules/vue").AllowedComponentProps & import("../../../../vue3/node_modules/vue").ComponentCustomProps, Readonly<import("../../../../vue3/node_modules/vue").ExtractPropTypes<{
|
|
93
|
+
/**
|
|
94
|
+
* List of actions that will be used to render the buttons.
|
|
95
|
+
* Required and used for the `default` variant.
|
|
96
|
+
*
|
|
97
|
+
* Each object in the list should have a `title`, an `event` and,
|
|
98
|
+
* optionally, an `icon`.
|
|
99
|
+
*
|
|
100
|
+
* The component will display 4 actions and the hide the rest inside a menu.
|
|
101
|
+
*
|
|
102
|
+
* @see BentoButton for a list of all the other props supported by each button action.
|
|
103
|
+
*/
|
|
37
104
|
actions: {
|
|
38
105
|
type: PropType<BentoButtonActionsList>;
|
|
39
106
|
default: () => any[];
|
|
40
107
|
};
|
|
108
|
+
/**
|
|
109
|
+
* How many actions should be visible outside the menu, cannot be more than 4
|
|
110
|
+
*/
|
|
41
111
|
visibleActions: {
|
|
42
112
|
type: NumberConstructor;
|
|
43
113
|
default: number;
|
|
44
114
|
validator: (value: number) => boolean;
|
|
45
115
|
};
|
|
116
|
+
/**
|
|
117
|
+
* Use when there are sticky elements at the bottom, like sticky pagination
|
|
118
|
+
*/
|
|
46
119
|
extraBottomSpacing: {
|
|
47
120
|
type: BooleanConstructor;
|
|
48
121
|
default: boolean;
|
|
49
122
|
};
|
|
123
|
+
/**
|
|
124
|
+
* Show how many items are selected
|
|
125
|
+
*/
|
|
50
126
|
itemCounter: {
|
|
51
127
|
type: NumberConstructor;
|
|
52
128
|
required: true;
|
|
53
129
|
};
|
|
130
|
+
/**
|
|
131
|
+
* Label for the selection, e.g. 'selected'/'changed'
|
|
132
|
+
*/
|
|
54
133
|
selectionLabel: {
|
|
55
134
|
type: StringConstructor;
|
|
56
135
|
default: any;
|
|
57
136
|
};
|
|
137
|
+
/**
|
|
138
|
+
* Variant for the action bar
|
|
139
|
+
* @values default, confirmation
|
|
140
|
+
*/
|
|
58
141
|
variant: {
|
|
59
142
|
type: PropType<BentoActionBarVariant>;
|
|
60
143
|
default: string;
|
|
@@ -1,7 +1,13 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @deprecated for usage with properties since version 2.0. Use the string literal instead.
|
|
3
|
+
*/
|
|
1
4
|
export declare enum BentoAlertVariant {
|
|
2
5
|
DEFAULT = "default",
|
|
3
6
|
TIP = "tip"
|
|
4
7
|
}
|
|
8
|
+
/**
|
|
9
|
+
* @deprecated for usage with properties since version 2.0. Use the string literal instead.
|
|
10
|
+
*/
|
|
5
11
|
export declare enum BentoAlertTypeOption {
|
|
6
12
|
WARNING = "warning",
|
|
7
13
|
CRITICAL = "critical",
|
|
@@ -1,16 +1,43 @@
|
|
|
1
1
|
import { PropType } from "../../../../vue3/node_modules/vue";
|
|
2
2
|
import { BentoAlertEvent, BentoAlertTypeOption, BentoAlertVariant } from "./alert.types";
|
|
3
3
|
import { BentoTypographyElement, BentoTypographyVariant } from "../typography";
|
|
4
|
+
/**
|
|
5
|
+
* An Alert component is used to display a persistent
|
|
6
|
+
* notification containing information important to the user
|
|
7
|
+
*
|
|
8
|
+
* @example
|
|
9
|
+
* import { BentoAlert, BentoAlertTypeOption } from '@adyen/bento-vue2';
|
|
10
|
+
*
|
|
11
|
+
* export default {
|
|
12
|
+
* components: { BentoAlert },
|
|
13
|
+
* template: `
|
|
14
|
+
* <bento-alert type="highlight">
|
|
15
|
+
* Title of the Alert
|
|
16
|
+
* </bento-alert>
|
|
17
|
+
* `
|
|
18
|
+
* }
|
|
19
|
+
*/
|
|
4
20
|
declare const _default: import("../../../../vue3/node_modules/vue").DefineComponent<{
|
|
21
|
+
/**
|
|
22
|
+
* Adds a close button on the right side of the alert
|
|
23
|
+
*/
|
|
5
24
|
closeButton: {
|
|
6
25
|
type: BooleanConstructor;
|
|
7
26
|
default: boolean;
|
|
8
27
|
};
|
|
28
|
+
/**
|
|
29
|
+
* Type of a alert; set a distinctive icon and color. Defaults to highlight.
|
|
30
|
+
* @values HIGHLIGHT, SUCCESS, CRITICAL, WARNING
|
|
31
|
+
*/
|
|
9
32
|
type: {
|
|
10
33
|
type: PropType<"critical" | "success" | "warning" | "highlight" | BentoAlertTypeOption>;
|
|
11
34
|
default: BentoAlertTypeOption;
|
|
12
35
|
validator: (value: BentoAlertTypeOption) => boolean;
|
|
13
36
|
};
|
|
37
|
+
/**
|
|
38
|
+
* Variant for the alert
|
|
39
|
+
* @values DEFAULT, TIP
|
|
40
|
+
*/
|
|
14
41
|
variant: {
|
|
15
42
|
type: PropType<"default" | "tip" | BentoAlertVariant>;
|
|
16
43
|
default: BentoAlertVariant;
|
|
@@ -34,15 +61,26 @@ declare const _default: import("../../../../vue3/node_modules/vue").DefineCompon
|
|
|
34
61
|
t: (key: "close" | "highlightIcon" | "successIcon" | "criticalIcon" | "warningIcon", values?: import("vue-i18n").default.Values) => string;
|
|
35
62
|
BentoTypographyVariant: typeof BentoTypographyVariant;
|
|
36
63
|
}, unknown, {}, {}, import("../../../../vue3/node_modules/vue").ComponentOptionsMixin, import("../../../../vue3/node_modules/vue").ComponentOptionsMixin, BentoAlertEvent[], BentoAlertEvent, import("../../../../vue3/node_modules/vue").VNodeProps & import("../../../../vue3/node_modules/vue").AllowedComponentProps & import("../../../../vue3/node_modules/vue").ComponentCustomProps, Readonly<import("../../../../vue3/node_modules/vue").ExtractPropTypes<{
|
|
64
|
+
/**
|
|
65
|
+
* Adds a close button on the right side of the alert
|
|
66
|
+
*/
|
|
37
67
|
closeButton: {
|
|
38
68
|
type: BooleanConstructor;
|
|
39
69
|
default: boolean;
|
|
40
70
|
};
|
|
71
|
+
/**
|
|
72
|
+
* Type of a alert; set a distinctive icon and color. Defaults to highlight.
|
|
73
|
+
* @values HIGHLIGHT, SUCCESS, CRITICAL, WARNING
|
|
74
|
+
*/
|
|
41
75
|
type: {
|
|
42
76
|
type: PropType<"critical" | "success" | "warning" | "highlight" | BentoAlertTypeOption>;
|
|
43
77
|
default: BentoAlertTypeOption;
|
|
44
78
|
validator: (value: BentoAlertTypeOption) => boolean;
|
|
45
79
|
};
|
|
80
|
+
/**
|
|
81
|
+
* Variant for the alert
|
|
82
|
+
* @values DEFAULT, TIP
|
|
83
|
+
*/
|
|
46
84
|
variant: {
|
|
47
85
|
type: PropType<"default" | "tip" | BentoAlertVariant>;
|
|
48
86
|
default: BentoAlertVariant;
|
|
@@ -1,19 +1,36 @@
|
|
|
1
1
|
import { PropType } from "../../../../vue3/node_modules/vue";
|
|
2
2
|
import { BentoAvatarImageColor, BentoAvatarImageVariant } from './avatar-image.types';
|
|
3
3
|
declare const _default: import("../../../../vue3/node_modules/vue").DefineComponent<{
|
|
4
|
+
/**
|
|
5
|
+
* Image src to load the profile picture.
|
|
6
|
+
*/
|
|
4
7
|
src: {
|
|
5
8
|
type: StringConstructor;
|
|
6
9
|
default: any;
|
|
7
10
|
};
|
|
11
|
+
/**
|
|
12
|
+
* Name of the user that will be used to extract initials to display default value.
|
|
13
|
+
* John => J
|
|
14
|
+
* John Smith => JS
|
|
15
|
+
* John Smith Doe => JD
|
|
16
|
+
* John Smith Doe Holly => JH
|
|
17
|
+
*/
|
|
8
18
|
username: {
|
|
9
19
|
type: StringConstructor;
|
|
10
20
|
default: any;
|
|
11
21
|
};
|
|
22
|
+
/**
|
|
23
|
+
* Variants supported for small and large.
|
|
24
|
+
* Default - large
|
|
25
|
+
*/
|
|
12
26
|
variant: {
|
|
13
27
|
type: PropType<BentoAvatarImageVariant>;
|
|
14
28
|
default: BentoAvatarImageVariant;
|
|
15
29
|
validator: (value: BentoAvatarImageVariant) => boolean;
|
|
16
30
|
};
|
|
31
|
+
/**
|
|
32
|
+
* Avatar color. Defaults to yellow.
|
|
33
|
+
*/
|
|
17
34
|
color: {
|
|
18
35
|
type: PropType<BentoAvatarImageColor>;
|
|
19
36
|
default: BentoAvatarImageColor;
|
|
@@ -25,19 +42,36 @@ declare const _default: import("../../../../vue3/node_modules/vue").DefineCompon
|
|
|
25
42
|
}>;
|
|
26
43
|
initials: import("../../../../vue3/node_modules/vue").ComputedRef<string>;
|
|
27
44
|
}, unknown, {}, {}, import("../../../../vue3/node_modules/vue").ComponentOptionsMixin, import("../../../../vue3/node_modules/vue").ComponentOptionsMixin, {}, string, import("../../../../vue3/node_modules/vue").VNodeProps & import("../../../../vue3/node_modules/vue").AllowedComponentProps & import("../../../../vue3/node_modules/vue").ComponentCustomProps, Readonly<import("../../../../vue3/node_modules/vue").ExtractPropTypes<{
|
|
45
|
+
/**
|
|
46
|
+
* Image src to load the profile picture.
|
|
47
|
+
*/
|
|
28
48
|
src: {
|
|
29
49
|
type: StringConstructor;
|
|
30
50
|
default: any;
|
|
31
51
|
};
|
|
52
|
+
/**
|
|
53
|
+
* Name of the user that will be used to extract initials to display default value.
|
|
54
|
+
* John => J
|
|
55
|
+
* John Smith => JS
|
|
56
|
+
* John Smith Doe => JD
|
|
57
|
+
* John Smith Doe Holly => JH
|
|
58
|
+
*/
|
|
32
59
|
username: {
|
|
33
60
|
type: StringConstructor;
|
|
34
61
|
default: any;
|
|
35
62
|
};
|
|
63
|
+
/**
|
|
64
|
+
* Variants supported for small and large.
|
|
65
|
+
* Default - large
|
|
66
|
+
*/
|
|
36
67
|
variant: {
|
|
37
68
|
type: PropType<BentoAvatarImageVariant>;
|
|
38
69
|
default: BentoAvatarImageVariant;
|
|
39
70
|
validator: (value: BentoAvatarImageVariant) => boolean;
|
|
40
71
|
};
|
|
72
|
+
/**
|
|
73
|
+
* Avatar color. Defaults to yellow.
|
|
74
|
+
*/
|
|
41
75
|
color: {
|
|
42
76
|
type: PropType<BentoAvatarImageColor>;
|
|
43
77
|
default: BentoAvatarImageColor;
|
|
@@ -1,11 +1,18 @@
|
|
|
1
1
|
import { PropType } from "../../../../vue3/node_modules/vue";
|
|
2
2
|
import { AdlBadgeVariant } from './badge.types';
|
|
3
3
|
declare const _default: import("../../../../vue3/node_modules/vue").DefineComponent<{
|
|
4
|
+
/**
|
|
5
|
+
* Types of flavour of Badge
|
|
6
|
+
* @values default, attention, warning, critical, success
|
|
7
|
+
*/
|
|
4
8
|
variant: {
|
|
5
9
|
type: PropType<AdlBadgeVariant>;
|
|
6
10
|
default: AdlBadgeVariant;
|
|
7
11
|
validator: (value: AdlBadgeVariant) => boolean;
|
|
8
12
|
};
|
|
13
|
+
/**
|
|
14
|
+
* For testing purposes you can decide which testId your adl-badge instance will have
|
|
15
|
+
*/
|
|
9
16
|
testId: {
|
|
10
17
|
type: StringConstructor;
|
|
11
18
|
default: string;
|
|
@@ -16,11 +23,18 @@ declare const _default: import("../../../../vue3/node_modules/vue").DefineCompon
|
|
|
16
23
|
[x: string]: boolean;
|
|
17
24
|
}>;
|
|
18
25
|
}, unknown, {}, {}, import("../../../../vue3/node_modules/vue").ComponentOptionsMixin, import("../../../../vue3/node_modules/vue").ComponentOptionsMixin, {}, string, import("../../../../vue3/node_modules/vue").VNodeProps & import("../../../../vue3/node_modules/vue").AllowedComponentProps & import("../../../../vue3/node_modules/vue").ComponentCustomProps, Readonly<import("../../../../vue3/node_modules/vue").ExtractPropTypes<{
|
|
26
|
+
/**
|
|
27
|
+
* Types of flavour of Badge
|
|
28
|
+
* @values default, attention, warning, critical, success
|
|
29
|
+
*/
|
|
19
30
|
variant: {
|
|
20
31
|
type: PropType<AdlBadgeVariant>;
|
|
21
32
|
default: AdlBadgeVariant;
|
|
22
33
|
validator: (value: AdlBadgeVariant) => boolean;
|
|
23
34
|
};
|
|
35
|
+
/**
|
|
36
|
+
* For testing purposes you can decide which testId your adl-badge instance will have
|
|
37
|
+
*/
|
|
24
38
|
testId: {
|
|
25
39
|
type: StringConstructor;
|
|
26
40
|
default: string;
|
|
@@ -6,33 +6,86 @@ export interface LinkProps extends RouterLinkProps, AnchorHTMLAttributes {
|
|
|
6
6
|
args?: {
|
|
7
7
|
props: RouterLinkProps;
|
|
8
8
|
};
|
|
9
|
+
/**
|
|
10
|
+
* Set the rendered link to a regular external anchor link.
|
|
11
|
+
*/
|
|
9
12
|
external: boolean;
|
|
10
13
|
}
|
|
14
|
+
/**
|
|
15
|
+
* Button component for all the various types of bento buttons.
|
|
16
|
+
*
|
|
17
|
+
* @example
|
|
18
|
+
* import { BentoButton } from '@adyen/bento-vue2';
|
|
19
|
+
* import { CheckMarkIcon } from '@adyen/ui-assets-icons-16';
|
|
20
|
+
*
|
|
21
|
+
* export default {
|
|
22
|
+
* components: { BentoButton },
|
|
23
|
+
* template: `
|
|
24
|
+
* <bento-button
|
|
25
|
+
* disabled
|
|
26
|
+
* variant="secondary"
|
|
27
|
+
* >
|
|
28
|
+
* <template #iconLeft>
|
|
29
|
+
* <check-mark svg-title="checked" />
|
|
30
|
+
* </template>
|
|
31
|
+
*
|
|
32
|
+
* Button text
|
|
33
|
+
*
|
|
34
|
+
* <template #iconRight>
|
|
35
|
+
* <check-mark svg-title="checked" />
|
|
36
|
+
* </template>
|
|
37
|
+
* </bento-button>
|
|
38
|
+
* `,
|
|
39
|
+
* }
|
|
40
|
+
*/
|
|
11
41
|
declare const _default: __VLS_WithTemplateSlots<import("../../../../vue3/node_modules/vue").DefineComponent<{
|
|
42
|
+
/**
|
|
43
|
+
* Reduces sizing of button
|
|
44
|
+
*/
|
|
12
45
|
condensed: {
|
|
13
46
|
type: BooleanConstructor;
|
|
14
47
|
default: boolean;
|
|
15
48
|
};
|
|
49
|
+
/**
|
|
50
|
+
* Displays button as critical
|
|
51
|
+
*/
|
|
16
52
|
critical: {
|
|
17
53
|
type: BooleanConstructor;
|
|
18
54
|
default: boolean;
|
|
19
55
|
};
|
|
56
|
+
/**
|
|
57
|
+
* Disables button functionality
|
|
58
|
+
*/
|
|
20
59
|
disabled: {
|
|
21
60
|
type: BooleanConstructor;
|
|
22
61
|
default: boolean;
|
|
23
62
|
};
|
|
63
|
+
/**
|
|
64
|
+
* Sets color set to inverse
|
|
65
|
+
*/
|
|
24
66
|
inverse: {
|
|
25
67
|
type: BooleanConstructor;
|
|
26
68
|
default: boolean;
|
|
27
69
|
};
|
|
70
|
+
/**
|
|
71
|
+
* Object containing props passed on to the BentoLink component. @see BentoLink documentation for which properties you can pass.
|
|
72
|
+
*/
|
|
28
73
|
link: {
|
|
29
74
|
type: ObjectConstructor;
|
|
30
75
|
default: any;
|
|
31
76
|
};
|
|
77
|
+
/**
|
|
78
|
+
* The default behavior of the button.
|
|
79
|
+
* Possible values are: 'button', 'reset', 'submit'
|
|
80
|
+
*/
|
|
32
81
|
type: {
|
|
33
82
|
type: PropType<"button" | "submit" | "reset">;
|
|
34
83
|
default: string;
|
|
35
84
|
};
|
|
85
|
+
/**
|
|
86
|
+
* Types of flavour of Button
|
|
87
|
+
* @values primary, secondary, tertiary, tertiary-with-background
|
|
88
|
+
*/
|
|
36
89
|
variant: {
|
|
37
90
|
type: PropType<"primary" | "secondary" | "tertiary" | "tertiary-with-background" | BentoButtonVariant>;
|
|
38
91
|
default: BentoButtonVariant;
|
|
@@ -47,30 +100,53 @@ declare const _default: __VLS_WithTemplateSlots<import("../../../../vue3/node_mo
|
|
|
47
100
|
} & {
|
|
48
101
|
"keydown.esc": () => void;
|
|
49
102
|
}, string, import("../../../../vue3/node_modules/vue").VNodeProps & import("../../../../vue3/node_modules/vue").AllowedComponentProps & import("../../../../vue3/node_modules/vue").ComponentCustomProps, Readonly<import("../../../../vue3/node_modules/vue").ExtractPropTypes<{
|
|
103
|
+
/**
|
|
104
|
+
* Reduces sizing of button
|
|
105
|
+
*/
|
|
50
106
|
condensed: {
|
|
51
107
|
type: BooleanConstructor;
|
|
52
108
|
default: boolean;
|
|
53
109
|
};
|
|
110
|
+
/**
|
|
111
|
+
* Displays button as critical
|
|
112
|
+
*/
|
|
54
113
|
critical: {
|
|
55
114
|
type: BooleanConstructor;
|
|
56
115
|
default: boolean;
|
|
57
116
|
};
|
|
117
|
+
/**
|
|
118
|
+
* Disables button functionality
|
|
119
|
+
*/
|
|
58
120
|
disabled: {
|
|
59
121
|
type: BooleanConstructor;
|
|
60
122
|
default: boolean;
|
|
61
123
|
};
|
|
124
|
+
/**
|
|
125
|
+
* Sets color set to inverse
|
|
126
|
+
*/
|
|
62
127
|
inverse: {
|
|
63
128
|
type: BooleanConstructor;
|
|
64
129
|
default: boolean;
|
|
65
130
|
};
|
|
131
|
+
/**
|
|
132
|
+
* Object containing props passed on to the BentoLink component. @see BentoLink documentation for which properties you can pass.
|
|
133
|
+
*/
|
|
66
134
|
link: {
|
|
67
135
|
type: ObjectConstructor;
|
|
68
136
|
default: any;
|
|
69
137
|
};
|
|
138
|
+
/**
|
|
139
|
+
* The default behavior of the button.
|
|
140
|
+
* Possible values are: 'button', 'reset', 'submit'
|
|
141
|
+
*/
|
|
70
142
|
type: {
|
|
71
143
|
type: PropType<"button" | "submit" | "reset">;
|
|
72
144
|
default: string;
|
|
73
145
|
};
|
|
146
|
+
/**
|
|
147
|
+
* Types of flavour of Button
|
|
148
|
+
* @values primary, secondary, tertiary, tertiary-with-background
|
|
149
|
+
*/
|
|
74
150
|
variant: {
|
|
75
151
|
type: PropType<"primary" | "secondary" | "tertiary" | "tertiary-with-background" | BentoButtonVariant>;
|
|
76
152
|
default: BentoButtonVariant;
|
|
@@ -18,6 +18,9 @@ export declare enum BentoButtonActionsLayoutBasic {
|
|
|
18
18
|
export declare enum BentoButtonActionsLayoutExtended {
|
|
19
19
|
BUTTONS_START = "buttons-start"
|
|
20
20
|
}
|
|
21
|
+
/**
|
|
22
|
+
* @deprecated for usage with properties since version 2.0. Use the string literal instead.
|
|
23
|
+
*/
|
|
21
24
|
export declare const BentoButtonActionsLayout: {
|
|
22
25
|
BUTTONS_START: BentoButtonActionsLayoutExtended.BUTTONS_START;
|
|
23
26
|
BUTTONS_END: BentoButtonActionsLayoutBasic.BUTTONS_END;
|