vueless 0.0.474 → 0.0.475
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/adatper.locale/locales/en.d.ts +289 -0
- package/adatper.locale/vue-i18n.d.ts +9 -0
- package/adatper.locale/vueless.d.ts +11 -0
- package/composables/useAutoPosition.d.ts +15 -0
- package/composables/useBreakpoint.d.ts +7 -0
- package/composables/useBreakpoint.js +1 -1
- package/composables/useLocale.d.ts +3 -0
- package/composables/useMutationObserver.d.ts +7 -0
- package/composables/useUI.d.ts +17 -0
- package/composablesTs/useAutoPosition.d.ts +28 -0
- package/composablesTs/useAutoPosition.ts +115 -0
- package/composablesTs/useBreakpoint.d.ts +7 -0
- package/composablesTs/useBreakpoint.ts +106 -0
- package/composablesTs/useLocale.d.ts +3 -0
- package/composablesTs/useLocale.ts +25 -0
- package/composablesTs/useMutationObserver.d.ts +8 -0
- package/composablesTs/useMutationObserver.ts +50 -0
- package/composablesTs/useUI.d.ts +68 -0
- package/composablesTs/useUI.ts +566 -0
- package/constants.d.ts +42 -0
- package/constants.js +1 -1
- package/constants.ts +73 -0
- package/directives/clickOutside/storybook/stories.d.ts +653 -0
- package/directives/clickOutside/vClickOutside.d.ts +6 -0
- package/directives/clickOutside/vClickOutside.js +2 -2
- package/directives/index.d.ts +2 -0
- package/directives/tooltip/storybook/stories.d.ts +252 -0
- package/directives/tooltip/storybook/stories.js +5 -5
- package/directives/tooltip/vTooltip.d.ts +6 -0
- package/index.d.ts +15 -0
- package/{index.js → index.ts} +9 -6
- package/package.json +28 -17
- package/preset.tailwind.d.ts +116 -0
- package/{preset.tailwind.js → preset.tailwind.ts} +30 -22
- package/types.d.ts +131 -0
- package/types.ts +218 -0
- package/ui.button/UButton.vue.d.ts +73 -0
- package/ui.button/config.d.ts +130 -0
- package/ui.button/constants.d.ts +1 -0
- package/ui.button/storybook/stories.d.ts +3062 -0
- package/ui.button/useAttrs.d.ts +11 -0
- package/ui.button-link/ULink.vue +1 -1
- package/ui.button-link/ULink.vue.d.ts +66 -0
- package/ui.button-link/config.d.ts +101 -0
- package/ui.button-link/constants.d.ts +1 -0
- package/ui.button-link/storybook/stories.d.ts +4567 -0
- package/ui.button-link/useAttrs.d.ts +14 -0
- package/ui.button-toggle/UToggle.vue.d.ts +50 -0
- package/ui.button-toggle/config.d.ts +65 -0
- package/ui.button-toggle/constants.d.ts +3 -0
- package/ui.button-toggle/storybook/stories.d.ts +2683 -0
- package/ui.button-toggle/useAttrs.d.ts +11 -0
- package/ui.button-toggle-item/UToggleItem.vue.d.ts +36 -0
- package/ui.button-toggle-item/config.d.ts +41 -0
- package/ui.button-toggle-item/constants.d.ts +1 -0
- package/ui.button-toggle-item/storybook/stories.d.ts +495 -0
- package/ui.button-toggle-item/useAttrs.d.ts +15 -0
- package/ui.container-accordion/UAccordion.vue.d.ts +32 -0
- package/ui.container-accordion/config.d.ts +40 -0
- package/ui.container-accordion/constants.d.ts +1 -0
- package/ui.container-accordion/storybook/stories.d.ts +732 -0
- package/ui.container-accordion/useAttrs.d.ts +13 -0
- package/ui.container-card/UCard.vue.d.ts +31 -0
- package/ui.container-card/config.d.ts +13 -0
- package/ui.container-card/constants.d.ts +1 -0
- package/ui.container-card/storybook/stories.d.ts +3906 -0
- package/ui.container-card/useAttrs.d.ts +11 -0
- package/ui.container-col/UCol.vue.d.ts +33 -0
- package/ui.container-col/config.d.ts +81 -0
- package/ui.container-col/constants.d.ts +1 -0
- package/ui.container-col/storybook/stories.d.ts +840 -0
- package/ui.container-col/useAttrs.d.ts +11 -0
- package/ui.container-divider/UDivider.vue.d.ts +25 -0
- package/ui.container-divider/config.d.ts +102 -0
- package/ui.container-divider/constants.d.ts +1 -0
- package/ui.container-divider/storybook/stories.d.ts +577 -0
- package/ui.container-divider/useAttrs.d.ts +11 -0
- package/ui.container-group/UGroup.vue.d.ts +33 -0
- package/ui.container-group/config.d.ts +38 -0
- package/ui.container-group/constants.d.ts +1 -0
- package/ui.container-group/storybook/stories.d.ts +2869 -0
- package/ui.container-group/useAttrs.d.ts +11 -0
- package/ui.container-modal/UModal.vue.d.ts +59 -0
- package/ui.container-modal/config.d.ts +77 -0
- package/ui.container-modal/constants.d.ts +1 -0
- package/ui.container-modal/storybook/stories.d.ts +8377 -0
- package/ui.container-modal/useAttrs.d.ts +11 -0
- package/ui.container-modal-confirm/UModalConfirm.vue.d.ts +59 -0
- package/ui.container-modal-confirm/config.d.ts +23 -0
- package/ui.container-modal-confirm/constants.d.ts +1 -0
- package/ui.container-modal-confirm/storybook/stories.d.ts +4494 -0
- package/ui.container-modal-confirm/useAttrs.d.ts +11 -0
- package/ui.container-page/UPage.vue.d.ts +47 -0
- package/ui.container-page/config.d.ts +85 -0
- package/ui.container-page/constants.d.ts +1 -0
- package/ui.container-page/storybook/stories.d.ts +8723 -0
- package/ui.container-page/useAttrs.d.ts +13 -0
- package/ui.container-row/URow.vue.d.ts +35 -0
- package/ui.container-row/config.d.ts +85 -0
- package/ui.container-row/constants.d.ts +1 -0
- package/ui.container-row/storybook/stories.d.ts +2619 -0
- package/ui.container-row/useAttrs.d.ts +11 -0
- package/ui.data-list/UDataList.vue +4 -4
- package/ui.data-list/UDataList.vue.d.ts +74 -0
- package/ui.data-list/config.d.ts +48 -0
- package/ui.data-list/constants.d.ts +1 -0
- package/ui.data-list/storybook/stories.d.ts +3342 -0
- package/ui.data-list/useAttrs.d.ts +11 -0
- package/ui.data-table/UTable.vue.d.ts +90 -0
- package/ui.data-table/UTableRow.vue.d.ts +61 -0
- package/ui.data-table/config.d.ts +128 -0
- package/ui.data-table/constants.d.ts +1 -0
- package/ui.data-table/storybook/stories.d.ts +13069 -0
- package/ui.data-table/useAttrs.d.ts +17 -0
- package/ui.data-table/utilTable.d.ts +9 -0
- package/ui.dropdown-badge/UDropdownBadge.vue.d.ts +145 -0
- package/ui.dropdown-badge/config.d.ts +39 -0
- package/ui.dropdown-badge/constants.d.ts +1 -0
- package/ui.dropdown-badge/storybook/stories.d.ts +1246 -0
- package/ui.dropdown-badge/useAttrs.d.ts +13 -0
- package/ui.dropdown-button/UDropdownButton.vue.d.ts +151 -0
- package/ui.dropdown-button/config.d.ts +52 -0
- package/ui.dropdown-button/constants.d.ts +4 -0
- package/ui.dropdown-button/storybook/stories.d.ts +1912 -0
- package/ui.dropdown-button/useAttrs.d.ts +13 -0
- package/ui.dropdown-link/UDropdownLink.vue.d.ts +149 -0
- package/ui.dropdown-link/config.d.ts +37 -0
- package/ui.dropdown-link/constants.d.ts +1 -0
- package/ui.dropdown-link/storybook/stories.d.ts +1333 -0
- package/ui.dropdown-link/useAttrs.d.ts +13 -0
- package/ui.dropdown-list/UDropdownList.vue.d.ts +59 -0
- package/ui.dropdown-list/config.d.ts +77 -0
- package/ui.dropdown-list/constants.d.ts +1 -0
- package/ui.dropdown-list/storybook/stories.d.ts +783 -0
- package/ui.dropdown-list/useAttrs.d.ts +11 -0
- package/ui.dropdown-list/usePointer.d.ts +8 -0
- package/ui.form-calendar/UCalendar.vue.d.ts +31 -0
- package/ui.form-calendar/UCalendarDayView.vue.d.ts +26 -0
- package/ui.form-calendar/UCalendarMonthView.vue.d.ts +26 -0
- package/ui.form-calendar/UCalendarYearView.vue.d.ts +26 -0
- package/ui.form-calendar/config.d.ts +207 -0
- package/ui.form-calendar/constants.d.ts +66 -0
- package/ui.form-calendar/storybook/stories.d.ts +262 -0
- package/ui.form-calendar/useAttrs.d.ts +11 -0
- package/ui.form-calendar/utilCalendar.d.ts +8 -0
- package/ui.form-calendar/utilDate.d.ts +30 -0
- package/ui.form-calendar/utilFormatting.d.ts +68 -0
- package/ui.form-checkbox/UCheckbox.vue.d.ts +50 -0
- package/ui.form-checkbox/config.d.ts +67 -0
- package/ui.form-checkbox/constants.d.ts +1 -0
- package/ui.form-checkbox/storybook/stories.d.ts +1589 -0
- package/ui.form-checkbox/useAttrs.d.ts +14 -0
- package/ui.form-checkbox-group/UCheckboxGroup.vue.d.ts +40 -0
- package/ui.form-checkbox-group/config.d.ts +21 -0
- package/ui.form-checkbox-group/constants.d.ts +1 -0
- package/ui.form-checkbox-group/storybook/stories.d.ts +2441 -0
- package/ui.form-checkbox-group/useAttrs.d.ts +11 -0
- package/ui.form-checkbox-multi-state/UCheckboxMultiState.vue.d.ts +24 -0
- package/ui.form-checkbox-multi-state/config.d.ts +10 -0
- package/ui.form-checkbox-multi-state/constants.d.ts +1 -0
- package/ui.form-checkbox-multi-state/storybook/stories.d.ts +187 -0
- package/ui.form-checkbox-multi-state/useAttrs.d.ts +13 -0
- package/ui.form-color-picker/UColorPicker.vue.d.ts +28 -0
- package/ui.form-color-picker/config.d.ts +42 -0
- package/ui.form-color-picker/constants.d.ts +1 -0
- package/ui.form-color-picker/storybook/stories.d.ts +316 -0
- package/ui.form-color-picker/useAttrs.d.ts +11 -0
- package/ui.form-date-picker/UDatePicker.vue.d.ts +135 -0
- package/ui.form-date-picker/config.d.ts +184 -0
- package/ui.form-date-picker/constants.d.ts +1 -0
- package/ui.form-date-picker/index.d.ts +1 -0
- package/ui.form-date-picker/storybook/stories.d.ts +3242 -0
- package/ui.form-date-picker/useAttrs.d.ts +14 -0
- package/ui.form-date-picker-range/UDatePickerRange.vue.d.ts +545 -0
- package/ui.form-date-picker-range/UDatePickerRangeInputs.vue.d.ts +6 -0
- package/ui.form-date-picker-range/UDatePickerRangePeriodMenu.vue.d.ts +7 -0
- package/ui.form-date-picker-range/config.d.ts +265 -0
- package/ui.form-date-picker-range/constants.d.ts +20 -0
- package/ui.form-date-picker-range/storybook/stories.d.ts +5545 -0
- package/ui.form-date-picker-range/useAttrs.d.ts +17 -0
- package/ui.form-date-picker-range/useUserFormat.d.ts +3 -0
- package/ui.form-date-picker-range/utilDateRange.d.ts +20 -0
- package/ui.form-date-picker-range/utilValidation.d.ts +3 -0
- package/ui.form-input/UInput.vue +1 -1
- package/ui.form-input/UInput.vue.d.ts +59 -0
- package/ui.form-input/config.d.ts +59 -0
- package/ui.form-input/constants.d.ts +1 -0
- package/ui.form-input/storybook/stories.d.ts +5734 -0
- package/ui.form-input/useAttrs.d.ts +11 -0
- package/ui.form-input-file/UInputFile.vue.d.ts +57 -0
- package/ui.form-input-file/config.d.ts +94 -0
- package/ui.form-input-file/constants.d.ts +1 -0
- package/ui.form-input-file/storybook/stories.d.ts +1116 -0
- package/ui.form-input-file/useAttrs.d.ts +11 -0
- package/ui.form-input-file/utilFileForm.d.ts +1 -0
- package/ui.form-input-money/UInputMoney.vue.d.ts +183 -0
- package/ui.form-input-money/config.d.ts +17 -0
- package/ui.form-input-money/constants.d.ts +1 -0
- package/ui.form-input-money/storybook/stories.d.ts +7519 -0
- package/ui.form-input-money/useAttrs.d.ts +11 -0
- package/ui.form-input-money/useFormatCurrency.d.ts +5 -0
- package/ui.form-input-money/useFormatCurrency.js +1 -1
- package/ui.form-input-money/utilFormat.d.ts +7 -0
- package/ui.form-input-number/UInputNumber.vue +4 -3
- package/ui.form-input-number/UInputNumber.vue.d.ts +30 -0
- package/ui.form-input-number/config.d.ts +40 -0
- package/ui.form-input-number/constants.d.ts +1 -0
- package/ui.form-input-number/storybook/stories.d.ts +363 -0
- package/ui.form-input-number/useAttrs.d.ts +11 -0
- package/ui.form-input-rating/UInputRating.vue.d.ts +49 -0
- package/ui.form-input-rating/config.d.ts +56 -0
- package/ui.form-input-rating/constants.d.ts +1 -0
- package/ui.form-input-rating/storybook/stories.d.ts +1336 -0
- package/ui.form-input-rating/useAttrs.d.ts +11 -0
- package/ui.form-input-search/UInputSearch.vue.d.ts +177 -0
- package/ui.form-input-search/config.d.ts +21 -0
- package/ui.form-input-search/constants.d.ts +1 -0
- package/ui.form-input-search/storybook/stories.d.ts +3325 -0
- package/ui.form-input-search/useAttrs.d.ts +11 -0
- package/ui.form-label/ULabel.vue.d.ts +46 -0
- package/ui.form-label/config.d.ts +139 -0
- package/ui.form-label/config.js +2 -2
- package/ui.form-label/constants.d.ts +8 -0
- package/ui.form-label/storybook/stories.d.ts +1133 -0
- package/ui.form-label/useAttrs.d.ts +11 -0
- package/ui.form-radio/URadio.vue.d.ts +46 -0
- package/ui.form-radio/config.d.ts +30 -0
- package/ui.form-radio/constants.d.ts +1 -0
- package/ui.form-radio/storybook/stories.d.ts +1270 -0
- package/ui.form-radio/useAttrs.d.ts +14 -0
- package/ui.form-radio-group/URadioGroup.vue.d.ts +40 -0
- package/ui.form-radio-group/config.d.ts +21 -0
- package/ui.form-radio-group/constants.d.ts +1 -0
- package/ui.form-radio-group/storybook/stories.d.ts +1239 -0
- package/ui.form-radio-group/useAttrs.d.ts +11 -0
- package/ui.form-select/USelect.vue.d.ts +405 -0
- package/ui.form-select/config.d.ts +146 -0
- package/ui.form-select/constants.d.ts +13 -0
- package/ui.form-select/storybook/stories.d.ts +19025 -0
- package/ui.form-select/useAttrs.d.ts +15 -0
- package/ui.form-select/utilSelect.d.ts +11 -0
- package/ui.form-switch/USwitch.vue.d.ts +30 -0
- package/ui.form-switch/config.d.ts +106 -0
- package/ui.form-switch/constants.d.ts +1 -0
- package/ui.form-switch/storybook/stories.d.ts +703 -0
- package/ui.form-switch/useAttrs.d.ts +13 -0
- package/ui.form-switch/utilVariant.d.ts +169 -0
- package/ui.form-textarea/UTextarea.vue.d.ts +132 -0
- package/ui.form-textarea/config.d.ts +55 -0
- package/ui.form-textarea/constants.d.ts +1 -0
- package/ui.form-textarea/storybook/stories.d.ts +2175 -0
- package/ui.form-textarea/useAttrs.d.ts +11 -0
- package/ui.image-avatar/UAvatar.vue.d.ts +40 -0
- package/ui.image-avatar/config.d.ts +51 -0
- package/ui.image-avatar/constants.d.ts +1 -0
- package/ui.image-avatar/storybook/stories.d.ts +1640 -0
- package/ui.image-avatar/useAttrs.d.ts +11 -0
- package/ui.image-icon/UIcon.vue.d.ts +28 -0
- package/ui.image-icon/config.d.ts +52 -0
- package/ui.image-icon/constants.d.ts +1 -0
- package/ui.image-icon/storybook/stories.d.ts +516 -0
- package/ui.image-icon/useAttrs.d.ts +11 -0
- package/ui.loader/ULoader.vue.d.ts +23 -0
- package/ui.loader/config.d.ts +49 -0
- package/ui.loader/constants.d.ts +2 -0
- package/ui.loader/storybook/stories.d.ts +655 -0
- package/ui.loader/useAttrs.d.ts +11 -0
- package/ui.loader-overlay/ULoaderOverlay.vue.d.ts +21 -0
- package/ui.loader-overlay/config.d.ts +25 -0
- package/ui.loader-overlay/constants.d.ts +1 -0
- package/ui.loader-overlay/storybook/stories.d.ts +362 -0
- package/ui.loader-overlay/useAttrs.d.ts +11 -0
- package/ui.loader-overlay/useLoaderOverlay.d.ts +10 -0
- package/ui.loader-overlay/utilLoaderOverlay.d.ts +2 -0
- package/ui.loader-progress/ULoaderProgress.vue.d.ts +11 -0
- package/ui.loader-progress/config.d.ts +24 -0
- package/ui.loader-progress/constants.d.ts +3 -0
- package/ui.loader-progress/storybook/stories.d.ts +742 -0
- package/ui.loader-progress/useAttrs.d.ts +11 -0
- package/ui.loader-progress/useLoaderProgress.d.ts +15 -0
- package/ui.loader-progress/utilLoaderProgress.d.ts +5 -0
- package/ui.navigation-pagination/UPagination.vue.d.ts +54 -0
- package/ui.navigation-pagination/config.d.ts +41 -0
- package/ui.navigation-pagination/constants.d.ts +1 -0
- package/ui.navigation-pagination/storybook/stories.d.ts +1033 -0
- package/ui.navigation-pagination/useAttrs.d.ts +11 -0
- package/ui.navigation-progress/StepperProgress.vue.d.ts +15 -0
- package/ui.navigation-progress/UProgress.vue.d.ts +41 -0
- package/ui.navigation-progress/config.d.ts +139 -0
- package/ui.navigation-progress/constants.d.ts +5 -0
- package/ui.navigation-progress/storybook/stories.d.ts +2827 -0
- package/ui.navigation-progress/useAttrs.d.ts +11 -0
- package/ui.navigation-tab/UTab.vue.d.ts +27 -0
- package/ui.navigation-tab/config.d.ts +24 -0
- package/ui.navigation-tab/constants.d.ts +1 -0
- package/ui.navigation-tab/storybook/stories.d.ts +316 -0
- package/ui.navigation-tab/useAttrs.d.ts +14 -0
- package/ui.navigation-tabs/UTabs.vue.d.ts +30 -0
- package/ui.navigation-tabs/config.d.ts +24 -0
- package/ui.navigation-tabs/constants.d.ts +1 -0
- package/ui.navigation-tabs/storybook/stories.d.ts +354 -0
- package/ui.navigation-tabs/useAttrs.d.ts +11 -0
- package/ui.other-dot/UDot.vue.d.ts +13 -0
- package/ui.other-dot/config.d.ts +28 -0
- package/ui.other-dot/constants.d.ts +1 -0
- package/ui.other-dot/storybook/stories.d.ts +645 -0
- package/ui.other-dot/useAttrs.d.ts +11 -0
- package/ui.text-alert/UAlert.vue.d.ts +53 -0
- package/ui.text-alert/config.d.ts +75 -0
- package/ui.text-alert/constants.d.ts +1 -0
- package/ui.text-alert/storybook/stories.d.ts +4845 -0
- package/ui.text-alert/useAttrs.d.ts +11 -0
- package/ui.text-badge/UBadge.vue.d.ts +60 -0
- package/ui.text-badge/config.d.ts +102 -0
- package/ui.text-badge/constants.d.ts +1 -0
- package/ui.text-badge/storybook/stories.d.ts +1869 -0
- package/ui.text-badge/useAttrs.d.ts +11 -0
- package/ui.text-block/UText.vue +18 -62
- package/ui.text-block/UText.vue.d.ts +21 -0
- package/ui.text-block/config.d.ts +27 -0
- package/ui.text-block/constants.d.ts +1 -0
- package/ui.text-block/storybook/Docs.mdx +2 -2
- package/ui.text-block/storybook/stories.d.ts +12 -0
- package/ui.text-block/storybook/{stories.js → stories.ts} +12 -7
- package/ui.text-block/types.d.ts +9 -0
- package/ui.text-block/types.ts +33 -0
- package/ui.text-block/useAttrs.d.ts +3 -0
- package/ui.text-block/useAttrs.ts +18 -0
- package/ui.text-empty/UEmpty.vue.d.ts +29 -0
- package/ui.text-empty/config.d.ts +55 -0
- package/ui.text-empty/constants.d.ts +1 -0
- package/ui.text-empty/storybook/stories.d.ts +1212 -0
- package/ui.text-empty/useAttrs.d.ts +11 -0
- package/ui.text-file/UFile.vue +12 -14
- package/ui.text-file/UFile.vue.d.ts +57 -0
- package/ui.text-file/config.d.ts +42 -0
- package/ui.text-file/config.js +12 -2
- package/ui.text-file/constants.d.ts +1 -0
- package/ui.text-file/storybook/stories.d.ts +136 -0
- package/ui.text-file/useAttrs.d.ts +11 -0
- package/ui.text-files/UFiles.vue.d.ts +52 -0
- package/ui.text-files/config.d.ts +10 -0
- package/ui.text-files/config.js +1 -1
- package/ui.text-files/constants.d.ts +1 -0
- package/ui.text-files/storybook/stories.d.ts +131 -0
- package/ui.text-files/useAttrs.d.ts +11 -0
- package/ui.text-header/UHeader.vue.d.ts +33 -0
- package/ui.text-header/config.d.ts +54 -0
- package/ui.text-header/constants.d.ts +1 -0
- package/ui.text-header/storybook/stories.d.ts +694 -0
- package/ui.text-header/useAttrs.d.ts +11 -0
- package/ui.text-money/UMoney.vue.d.ts +48 -0
- package/ui.text-money/config.d.ts +77 -0
- package/ui.text-money/constants.d.ts +1 -0
- package/ui.text-money/storybook/stories.d.ts +2090 -0
- package/ui.text-money/useAttrs.d.ts +11 -0
- package/ui.text-money/utilMoney.d.ts +14 -0
- package/ui.text-money/utilMoney.js +2 -2
- package/ui.text-notify/UNotify.vue.d.ts +13 -0
- package/ui.text-notify/config.d.ts +58 -0
- package/ui.text-notify/constants.d.ts +20 -0
- package/ui.text-notify/storybook/stories.d.ts +653 -0
- package/ui.text-notify/useAttrs.d.ts +11 -0
- package/ui.text-notify/utilNotify.d.ts +7 -0
- package/utils/utilHelper.d.ts +9 -0
- package/utils/utilPlatform.d.ts +6 -0
- package/utils/utilStorybook.d.ts +15 -0
- package/utils/utilUI.d.ts +68 -0
- package/utilsTs/utilHelper.d.ts +9 -0
- package/utilsTs/utilHelper.ts +70 -0
- package/utilsTs/utilPlatform.d.ts +7 -0
- package/utilsTs/utilPlatform.ts +53 -0
- package/utilsTs/utilStorybook.d.ts +24 -0
- package/utilsTs/utilStorybook.ts +292 -0
- package/utilsTs/utilTailwind.d.ts +1 -0
- package/utilsTs/utilTailwind.ts +38 -0
- package/utilsTs/utilTheme.d.ts +8 -0
- package/{utils/utilTheme.js → utilsTs/utilTheme.ts} +31 -27
- package/utilsTs/utilUI.d.ts +67 -0
- package/utilsTs/utilUI.ts +142 -0
- package/web-types.json +30 -120
- package/ui.text-block/useAttrs.js +0 -15
- /package/ui.text-block/{config.js → config.ts} +0 -0
- /package/ui.text-block/{constants.js → constants.ts} +0 -0
|
@@ -0,0 +1,3062 @@
|
|
|
1
|
+
declare namespace _default {
|
|
2
|
+
export let id: string;
|
|
3
|
+
export let title: string;
|
|
4
|
+
export { UButton as component };
|
|
5
|
+
export namespace args {
|
|
6
|
+
let label: string;
|
|
7
|
+
}
|
|
8
|
+
export let argTypes: {
|
|
9
|
+
defaultTemplate?: {
|
|
10
|
+
table: {
|
|
11
|
+
disable: boolean;
|
|
12
|
+
};
|
|
13
|
+
} | undefined;
|
|
14
|
+
slotTemplate?: {
|
|
15
|
+
table: {
|
|
16
|
+
disable: boolean;
|
|
17
|
+
};
|
|
18
|
+
} | undefined;
|
|
19
|
+
};
|
|
20
|
+
}
|
|
21
|
+
export default _default;
|
|
22
|
+
export function Default(args: any): {
|
|
23
|
+
components: {
|
|
24
|
+
UButton: {
|
|
25
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
|
|
26
|
+
buttonRef: import("vue").Ref<null, null>;
|
|
27
|
+
label: string;
|
|
28
|
+
id: string;
|
|
29
|
+
rightIcon: string;
|
|
30
|
+
leftIcon: string;
|
|
31
|
+
config: Record<string, any>;
|
|
32
|
+
dataTest: string;
|
|
33
|
+
icon: string;
|
|
34
|
+
color?: string | undefined;
|
|
35
|
+
disabled?: boolean | undefined;
|
|
36
|
+
size?: string | undefined;
|
|
37
|
+
square?: boolean | undefined;
|
|
38
|
+
filled?: boolean | undefined;
|
|
39
|
+
variant?: string | undefined;
|
|
40
|
+
loading?: boolean | undefined;
|
|
41
|
+
tag?: string | undefined;
|
|
42
|
+
tabindex?: string | number | undefined;
|
|
43
|
+
block?: boolean | undefined;
|
|
44
|
+
round?: boolean | undefined;
|
|
45
|
+
noRing?: boolean | undefined;
|
|
46
|
+
$props: {
|
|
47
|
+
readonly label?: string | undefined;
|
|
48
|
+
readonly id?: string | undefined;
|
|
49
|
+
readonly rightIcon?: string | undefined;
|
|
50
|
+
readonly leftIcon?: string | undefined;
|
|
51
|
+
readonly config?: Record<string, any> | undefined;
|
|
52
|
+
readonly dataTest?: string | undefined;
|
|
53
|
+
readonly icon?: string | undefined;
|
|
54
|
+
readonly color?: string | undefined;
|
|
55
|
+
readonly disabled?: boolean | undefined;
|
|
56
|
+
readonly size?: string | undefined;
|
|
57
|
+
readonly square?: boolean | undefined;
|
|
58
|
+
readonly filled?: boolean | undefined;
|
|
59
|
+
readonly variant?: string | undefined;
|
|
60
|
+
readonly loading?: boolean | undefined;
|
|
61
|
+
readonly tag?: string | undefined;
|
|
62
|
+
readonly tabindex?: string | number | undefined;
|
|
63
|
+
readonly block?: boolean | undefined;
|
|
64
|
+
readonly round?: boolean | undefined;
|
|
65
|
+
readonly noRing?: boolean | undefined;
|
|
66
|
+
};
|
|
67
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<{}> & Readonly<{}>, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
68
|
+
P: {};
|
|
69
|
+
B: {};
|
|
70
|
+
D: {};
|
|
71
|
+
C: {};
|
|
72
|
+
M: {};
|
|
73
|
+
Defaults: {};
|
|
74
|
+
}, Readonly<{}> & Readonly<{}>, {
|
|
75
|
+
buttonRef: import("vue").Ref<null, null>;
|
|
76
|
+
label: string;
|
|
77
|
+
id: string;
|
|
78
|
+
rightIcon: string;
|
|
79
|
+
leftIcon: string;
|
|
80
|
+
config: Record<string, any>;
|
|
81
|
+
dataTest: string;
|
|
82
|
+
icon: string;
|
|
83
|
+
color?: string | undefined;
|
|
84
|
+
disabled?: boolean | undefined;
|
|
85
|
+
size?: string | undefined;
|
|
86
|
+
square?: boolean | undefined;
|
|
87
|
+
filled?: boolean | undefined;
|
|
88
|
+
variant?: string | undefined;
|
|
89
|
+
loading?: boolean | undefined;
|
|
90
|
+
tag?: string | undefined;
|
|
91
|
+
tabindex?: string | number | undefined;
|
|
92
|
+
block?: boolean | undefined;
|
|
93
|
+
round?: boolean | undefined;
|
|
94
|
+
noRing?: boolean | undefined;
|
|
95
|
+
$props: {
|
|
96
|
+
readonly label?: string | undefined;
|
|
97
|
+
readonly id?: string | undefined;
|
|
98
|
+
readonly rightIcon?: string | undefined;
|
|
99
|
+
readonly leftIcon?: string | undefined;
|
|
100
|
+
readonly config?: Record<string, any> | undefined;
|
|
101
|
+
readonly dataTest?: string | undefined;
|
|
102
|
+
readonly icon?: string | undefined;
|
|
103
|
+
readonly color?: string | undefined;
|
|
104
|
+
readonly disabled?: boolean | undefined;
|
|
105
|
+
readonly size?: string | undefined;
|
|
106
|
+
readonly square?: boolean | undefined;
|
|
107
|
+
readonly filled?: boolean | undefined;
|
|
108
|
+
readonly variant?: string | undefined;
|
|
109
|
+
readonly loading?: boolean | undefined;
|
|
110
|
+
readonly tag?: string | undefined;
|
|
111
|
+
readonly tabindex?: string | number | undefined;
|
|
112
|
+
readonly block?: boolean | undefined;
|
|
113
|
+
readonly round?: boolean | undefined;
|
|
114
|
+
readonly noRing?: boolean | undefined;
|
|
115
|
+
};
|
|
116
|
+
}, {}, {}, {}, {}>;
|
|
117
|
+
__isFragment?: never;
|
|
118
|
+
__isTeleport?: never;
|
|
119
|
+
__isSuspense?: never;
|
|
120
|
+
} & import("vue").ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
|
|
121
|
+
buttonRef: import("vue").Ref<null, null>;
|
|
122
|
+
label: string;
|
|
123
|
+
id: string;
|
|
124
|
+
rightIcon: string;
|
|
125
|
+
leftIcon: string;
|
|
126
|
+
config: Record<string, any>;
|
|
127
|
+
dataTest: string;
|
|
128
|
+
icon: string;
|
|
129
|
+
color?: string | undefined;
|
|
130
|
+
disabled?: boolean | undefined;
|
|
131
|
+
size?: string | undefined;
|
|
132
|
+
square?: boolean | undefined;
|
|
133
|
+
filled?: boolean | undefined;
|
|
134
|
+
variant?: string | undefined;
|
|
135
|
+
loading?: boolean | undefined;
|
|
136
|
+
tag?: string | undefined;
|
|
137
|
+
tabindex?: string | number | undefined;
|
|
138
|
+
block?: boolean | undefined;
|
|
139
|
+
round?: boolean | undefined;
|
|
140
|
+
noRing?: boolean | undefined;
|
|
141
|
+
$props: {
|
|
142
|
+
readonly label?: string | undefined;
|
|
143
|
+
readonly id?: string | undefined;
|
|
144
|
+
readonly rightIcon?: string | undefined;
|
|
145
|
+
readonly leftIcon?: string | undefined;
|
|
146
|
+
readonly config?: Record<string, any> | undefined;
|
|
147
|
+
readonly dataTest?: string | undefined;
|
|
148
|
+
readonly icon?: string | undefined;
|
|
149
|
+
readonly color?: string | undefined;
|
|
150
|
+
readonly disabled?: boolean | undefined;
|
|
151
|
+
readonly size?: string | undefined;
|
|
152
|
+
readonly square?: boolean | undefined;
|
|
153
|
+
readonly filled?: boolean | undefined;
|
|
154
|
+
readonly variant?: string | undefined;
|
|
155
|
+
readonly loading?: boolean | undefined;
|
|
156
|
+
readonly tag?: string | undefined;
|
|
157
|
+
readonly tabindex?: string | number | undefined;
|
|
158
|
+
readonly block?: boolean | undefined;
|
|
159
|
+
readonly round?: boolean | undefined;
|
|
160
|
+
readonly noRing?: boolean | undefined;
|
|
161
|
+
};
|
|
162
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
163
|
+
$slots: {
|
|
164
|
+
left?(_: {
|
|
165
|
+
iconName: string;
|
|
166
|
+
iconSize: any;
|
|
167
|
+
iconColor: string | undefined;
|
|
168
|
+
}): any;
|
|
169
|
+
default?(_: {
|
|
170
|
+
label: string;
|
|
171
|
+
iconName: string;
|
|
172
|
+
iconSize: any;
|
|
173
|
+
iconColor: string | undefined;
|
|
174
|
+
}): any;
|
|
175
|
+
right?(_: {
|
|
176
|
+
iconName: string;
|
|
177
|
+
iconSize: any;
|
|
178
|
+
iconColor: string | undefined;
|
|
179
|
+
}): any;
|
|
180
|
+
};
|
|
181
|
+
});
|
|
182
|
+
UIcon: import("vue").DefineComponent<{}, {
|
|
183
|
+
$emit: (event: "click", ...args: any[]) => void;
|
|
184
|
+
config: Record<string, any>;
|
|
185
|
+
name: string;
|
|
186
|
+
src: Record<string, any>;
|
|
187
|
+
tooltip: string;
|
|
188
|
+
tooltipSettings: Record<string, any>;
|
|
189
|
+
dataTest: string;
|
|
190
|
+
internal: boolean;
|
|
191
|
+
color?: string | undefined;
|
|
192
|
+
size?: string | undefined;
|
|
193
|
+
interactive?: boolean | undefined;
|
|
194
|
+
variant?: string | undefined;
|
|
195
|
+
$props: {
|
|
196
|
+
readonly config?: Record<string, any> | undefined;
|
|
197
|
+
readonly name?: string | undefined;
|
|
198
|
+
readonly src?: Record<string, any> | undefined;
|
|
199
|
+
readonly tooltip?: string | undefined;
|
|
200
|
+
readonly tooltipSettings?: Record<string, any> | undefined;
|
|
201
|
+
readonly dataTest?: string | undefined;
|
|
202
|
+
readonly internal?: boolean | undefined;
|
|
203
|
+
readonly color?: string | undefined;
|
|
204
|
+
readonly size?: string | undefined;
|
|
205
|
+
readonly interactive?: boolean | undefined;
|
|
206
|
+
readonly variant?: string | undefined;
|
|
207
|
+
};
|
|
208
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
209
|
+
};
|
|
210
|
+
setup(): {
|
|
211
|
+
args: any;
|
|
212
|
+
slots: any;
|
|
213
|
+
};
|
|
214
|
+
template: string;
|
|
215
|
+
};
|
|
216
|
+
export namespace Default {
|
|
217
|
+
let args_1: {};
|
|
218
|
+
export { args_1 as args };
|
|
219
|
+
}
|
|
220
|
+
export function Variants(args: any, { argTypes }?: {}): {
|
|
221
|
+
components: {
|
|
222
|
+
UButton: {
|
|
223
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
|
|
224
|
+
buttonRef: import("vue").Ref<null, null>;
|
|
225
|
+
label: string;
|
|
226
|
+
id: string;
|
|
227
|
+
rightIcon: string;
|
|
228
|
+
leftIcon: string;
|
|
229
|
+
config: Record<string, any>;
|
|
230
|
+
dataTest: string;
|
|
231
|
+
icon: string;
|
|
232
|
+
color?: string | undefined;
|
|
233
|
+
disabled?: boolean | undefined;
|
|
234
|
+
size?: string | undefined;
|
|
235
|
+
square?: boolean | undefined;
|
|
236
|
+
filled?: boolean | undefined;
|
|
237
|
+
variant?: string | undefined;
|
|
238
|
+
loading?: boolean | undefined;
|
|
239
|
+
tag?: string | undefined;
|
|
240
|
+
tabindex?: string | number | undefined;
|
|
241
|
+
block?: boolean | undefined;
|
|
242
|
+
round?: boolean | undefined;
|
|
243
|
+
noRing?: boolean | undefined;
|
|
244
|
+
$props: {
|
|
245
|
+
readonly label?: string | undefined;
|
|
246
|
+
readonly id?: string | undefined;
|
|
247
|
+
readonly rightIcon?: string | undefined;
|
|
248
|
+
readonly leftIcon?: string | undefined;
|
|
249
|
+
readonly config?: Record<string, any> | undefined;
|
|
250
|
+
readonly dataTest?: string | undefined;
|
|
251
|
+
readonly icon?: string | undefined;
|
|
252
|
+
readonly color?: string | undefined;
|
|
253
|
+
readonly disabled?: boolean | undefined;
|
|
254
|
+
readonly size?: string | undefined;
|
|
255
|
+
readonly square?: boolean | undefined;
|
|
256
|
+
readonly filled?: boolean | undefined;
|
|
257
|
+
readonly variant?: string | undefined;
|
|
258
|
+
readonly loading?: boolean | undefined;
|
|
259
|
+
readonly tag?: string | undefined;
|
|
260
|
+
readonly tabindex?: string | number | undefined;
|
|
261
|
+
readonly block?: boolean | undefined;
|
|
262
|
+
readonly round?: boolean | undefined;
|
|
263
|
+
readonly noRing?: boolean | undefined;
|
|
264
|
+
};
|
|
265
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<{}> & Readonly<{}>, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
266
|
+
P: {};
|
|
267
|
+
B: {};
|
|
268
|
+
D: {};
|
|
269
|
+
C: {};
|
|
270
|
+
M: {};
|
|
271
|
+
Defaults: {};
|
|
272
|
+
}, Readonly<{}> & Readonly<{}>, {
|
|
273
|
+
buttonRef: import("vue").Ref<null, null>;
|
|
274
|
+
label: string;
|
|
275
|
+
id: string;
|
|
276
|
+
rightIcon: string;
|
|
277
|
+
leftIcon: string;
|
|
278
|
+
config: Record<string, any>;
|
|
279
|
+
dataTest: string;
|
|
280
|
+
icon: string;
|
|
281
|
+
color?: string | undefined;
|
|
282
|
+
disabled?: boolean | undefined;
|
|
283
|
+
size?: string | undefined;
|
|
284
|
+
square?: boolean | undefined;
|
|
285
|
+
filled?: boolean | undefined;
|
|
286
|
+
variant?: string | undefined;
|
|
287
|
+
loading?: boolean | undefined;
|
|
288
|
+
tag?: string | undefined;
|
|
289
|
+
tabindex?: string | number | undefined;
|
|
290
|
+
block?: boolean | undefined;
|
|
291
|
+
round?: boolean | undefined;
|
|
292
|
+
noRing?: boolean | undefined;
|
|
293
|
+
$props: {
|
|
294
|
+
readonly label?: string | undefined;
|
|
295
|
+
readonly id?: string | undefined;
|
|
296
|
+
readonly rightIcon?: string | undefined;
|
|
297
|
+
readonly leftIcon?: string | undefined;
|
|
298
|
+
readonly config?: Record<string, any> | undefined;
|
|
299
|
+
readonly dataTest?: string | undefined;
|
|
300
|
+
readonly icon?: string | undefined;
|
|
301
|
+
readonly color?: string | undefined;
|
|
302
|
+
readonly disabled?: boolean | undefined;
|
|
303
|
+
readonly size?: string | undefined;
|
|
304
|
+
readonly square?: boolean | undefined;
|
|
305
|
+
readonly filled?: boolean | undefined;
|
|
306
|
+
readonly variant?: string | undefined;
|
|
307
|
+
readonly loading?: boolean | undefined;
|
|
308
|
+
readonly tag?: string | undefined;
|
|
309
|
+
readonly tabindex?: string | number | undefined;
|
|
310
|
+
readonly block?: boolean | undefined;
|
|
311
|
+
readonly round?: boolean | undefined;
|
|
312
|
+
readonly noRing?: boolean | undefined;
|
|
313
|
+
};
|
|
314
|
+
}, {}, {}, {}, {}>;
|
|
315
|
+
__isFragment?: never;
|
|
316
|
+
__isTeleport?: never;
|
|
317
|
+
__isSuspense?: never;
|
|
318
|
+
} & import("vue").ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
|
|
319
|
+
buttonRef: import("vue").Ref<null, null>;
|
|
320
|
+
label: string;
|
|
321
|
+
id: string;
|
|
322
|
+
rightIcon: string;
|
|
323
|
+
leftIcon: string;
|
|
324
|
+
config: Record<string, any>;
|
|
325
|
+
dataTest: string;
|
|
326
|
+
icon: string;
|
|
327
|
+
color?: string | undefined;
|
|
328
|
+
disabled?: boolean | undefined;
|
|
329
|
+
size?: string | undefined;
|
|
330
|
+
square?: boolean | undefined;
|
|
331
|
+
filled?: boolean | undefined;
|
|
332
|
+
variant?: string | undefined;
|
|
333
|
+
loading?: boolean | undefined;
|
|
334
|
+
tag?: string | undefined;
|
|
335
|
+
tabindex?: string | number | undefined;
|
|
336
|
+
block?: boolean | undefined;
|
|
337
|
+
round?: boolean | undefined;
|
|
338
|
+
noRing?: boolean | undefined;
|
|
339
|
+
$props: {
|
|
340
|
+
readonly label?: string | undefined;
|
|
341
|
+
readonly id?: string | undefined;
|
|
342
|
+
readonly rightIcon?: string | undefined;
|
|
343
|
+
readonly leftIcon?: string | undefined;
|
|
344
|
+
readonly config?: Record<string, any> | undefined;
|
|
345
|
+
readonly dataTest?: string | undefined;
|
|
346
|
+
readonly icon?: string | undefined;
|
|
347
|
+
readonly color?: string | undefined;
|
|
348
|
+
readonly disabled?: boolean | undefined;
|
|
349
|
+
readonly size?: string | undefined;
|
|
350
|
+
readonly square?: boolean | undefined;
|
|
351
|
+
readonly filled?: boolean | undefined;
|
|
352
|
+
readonly variant?: string | undefined;
|
|
353
|
+
readonly loading?: boolean | undefined;
|
|
354
|
+
readonly tag?: string | undefined;
|
|
355
|
+
readonly tabindex?: string | number | undefined;
|
|
356
|
+
readonly block?: boolean | undefined;
|
|
357
|
+
readonly round?: boolean | undefined;
|
|
358
|
+
readonly noRing?: boolean | undefined;
|
|
359
|
+
};
|
|
360
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
361
|
+
$slots: {
|
|
362
|
+
left?(_: {
|
|
363
|
+
iconName: string;
|
|
364
|
+
iconSize: any;
|
|
365
|
+
iconColor: string | undefined;
|
|
366
|
+
}): any;
|
|
367
|
+
default?(_: {
|
|
368
|
+
label: string;
|
|
369
|
+
iconName: string;
|
|
370
|
+
iconSize: any;
|
|
371
|
+
iconColor: string | undefined;
|
|
372
|
+
}): any;
|
|
373
|
+
right?(_: {
|
|
374
|
+
iconName: string;
|
|
375
|
+
iconSize: any;
|
|
376
|
+
iconColor: string | undefined;
|
|
377
|
+
}): any;
|
|
378
|
+
};
|
|
379
|
+
});
|
|
380
|
+
URow: {
|
|
381
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
|
|
382
|
+
config: Record<string, any>;
|
|
383
|
+
dataTest: string;
|
|
384
|
+
reverse?: boolean | undefined;
|
|
385
|
+
content?: string | undefined;
|
|
386
|
+
gap?: string | undefined;
|
|
387
|
+
align?: string | undefined;
|
|
388
|
+
justify?: string | undefined;
|
|
389
|
+
wrap?: boolean | undefined;
|
|
390
|
+
noMobile?: boolean | undefined;
|
|
391
|
+
$props: {
|
|
392
|
+
readonly config?: Record<string, any> | undefined;
|
|
393
|
+
readonly dataTest?: string | undefined;
|
|
394
|
+
readonly reverse?: boolean | undefined;
|
|
395
|
+
readonly content?: string | undefined;
|
|
396
|
+
readonly gap?: string | undefined;
|
|
397
|
+
readonly align?: string | undefined;
|
|
398
|
+
readonly justify?: string | undefined;
|
|
399
|
+
readonly wrap?: boolean | undefined;
|
|
400
|
+
readonly noMobile?: boolean | undefined;
|
|
401
|
+
};
|
|
402
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<{}> & Readonly<{}>, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
403
|
+
P: {};
|
|
404
|
+
B: {};
|
|
405
|
+
D: {};
|
|
406
|
+
C: {};
|
|
407
|
+
M: {};
|
|
408
|
+
Defaults: {};
|
|
409
|
+
}, Readonly<{}> & Readonly<{}>, {
|
|
410
|
+
config: Record<string, any>;
|
|
411
|
+
dataTest: string;
|
|
412
|
+
reverse?: boolean | undefined;
|
|
413
|
+
content?: string | undefined;
|
|
414
|
+
gap?: string | undefined;
|
|
415
|
+
align?: string | undefined;
|
|
416
|
+
justify?: string | undefined;
|
|
417
|
+
wrap?: boolean | undefined;
|
|
418
|
+
noMobile?: boolean | undefined;
|
|
419
|
+
$props: {
|
|
420
|
+
readonly config?: Record<string, any> | undefined;
|
|
421
|
+
readonly dataTest?: string | undefined;
|
|
422
|
+
readonly reverse?: boolean | undefined;
|
|
423
|
+
readonly content?: string | undefined;
|
|
424
|
+
readonly gap?: string | undefined;
|
|
425
|
+
readonly align?: string | undefined;
|
|
426
|
+
readonly justify?: string | undefined;
|
|
427
|
+
readonly wrap?: boolean | undefined;
|
|
428
|
+
readonly noMobile?: boolean | undefined;
|
|
429
|
+
};
|
|
430
|
+
}, {}, {}, {}, {}>;
|
|
431
|
+
__isFragment?: never;
|
|
432
|
+
__isTeleport?: never;
|
|
433
|
+
__isSuspense?: never;
|
|
434
|
+
} & import("vue").ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
|
|
435
|
+
config: Record<string, any>;
|
|
436
|
+
dataTest: string;
|
|
437
|
+
reverse?: boolean | undefined;
|
|
438
|
+
content?: string | undefined;
|
|
439
|
+
gap?: string | undefined;
|
|
440
|
+
align?: string | undefined;
|
|
441
|
+
justify?: string | undefined;
|
|
442
|
+
wrap?: boolean | undefined;
|
|
443
|
+
noMobile?: boolean | undefined;
|
|
444
|
+
$props: {
|
|
445
|
+
readonly config?: Record<string, any> | undefined;
|
|
446
|
+
readonly dataTest?: string | undefined;
|
|
447
|
+
readonly reverse?: boolean | undefined;
|
|
448
|
+
readonly content?: string | undefined;
|
|
449
|
+
readonly gap?: string | undefined;
|
|
450
|
+
readonly align?: string | undefined;
|
|
451
|
+
readonly justify?: string | undefined;
|
|
452
|
+
readonly wrap?: boolean | undefined;
|
|
453
|
+
readonly noMobile?: boolean | undefined;
|
|
454
|
+
};
|
|
455
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
456
|
+
$slots: {
|
|
457
|
+
default?(_: {}): any;
|
|
458
|
+
};
|
|
459
|
+
});
|
|
460
|
+
UCol: {
|
|
461
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
|
|
462
|
+
config: Record<string, any>;
|
|
463
|
+
dataTest: string;
|
|
464
|
+
reverse?: boolean | undefined;
|
|
465
|
+
content?: string | undefined;
|
|
466
|
+
gap?: string | undefined;
|
|
467
|
+
align?: string | undefined;
|
|
468
|
+
justify?: string | undefined;
|
|
469
|
+
wrap?: boolean | undefined;
|
|
470
|
+
$props: {
|
|
471
|
+
readonly config?: Record<string, any> | undefined;
|
|
472
|
+
readonly dataTest?: string | undefined;
|
|
473
|
+
readonly reverse?: boolean | undefined;
|
|
474
|
+
readonly content?: string | undefined;
|
|
475
|
+
readonly gap?: string | undefined;
|
|
476
|
+
readonly align?: string | undefined;
|
|
477
|
+
readonly justify?: string | undefined;
|
|
478
|
+
readonly wrap?: boolean | undefined;
|
|
479
|
+
};
|
|
480
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<{}> & Readonly<{}>, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
481
|
+
P: {};
|
|
482
|
+
B: {};
|
|
483
|
+
D: {};
|
|
484
|
+
C: {};
|
|
485
|
+
M: {};
|
|
486
|
+
Defaults: {};
|
|
487
|
+
}, Readonly<{}> & Readonly<{}>, {
|
|
488
|
+
config: Record<string, any>;
|
|
489
|
+
dataTest: string;
|
|
490
|
+
reverse?: boolean | undefined;
|
|
491
|
+
content?: string | undefined;
|
|
492
|
+
gap?: string | undefined;
|
|
493
|
+
align?: string | undefined;
|
|
494
|
+
justify?: string | undefined;
|
|
495
|
+
wrap?: boolean | undefined;
|
|
496
|
+
$props: {
|
|
497
|
+
readonly config?: Record<string, any> | undefined;
|
|
498
|
+
readonly dataTest?: string | undefined;
|
|
499
|
+
readonly reverse?: boolean | undefined;
|
|
500
|
+
readonly content?: string | undefined;
|
|
501
|
+
readonly gap?: string | undefined;
|
|
502
|
+
readonly align?: string | undefined;
|
|
503
|
+
readonly justify?: string | undefined;
|
|
504
|
+
readonly wrap?: boolean | undefined;
|
|
505
|
+
};
|
|
506
|
+
}, {}, {}, {}, {}>;
|
|
507
|
+
__isFragment?: never;
|
|
508
|
+
__isTeleport?: never;
|
|
509
|
+
__isSuspense?: never;
|
|
510
|
+
} & import("vue").ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
|
|
511
|
+
config: Record<string, any>;
|
|
512
|
+
dataTest: string;
|
|
513
|
+
reverse?: boolean | undefined;
|
|
514
|
+
content?: string | undefined;
|
|
515
|
+
gap?: string | undefined;
|
|
516
|
+
align?: string | undefined;
|
|
517
|
+
justify?: string | undefined;
|
|
518
|
+
wrap?: boolean | undefined;
|
|
519
|
+
$props: {
|
|
520
|
+
readonly config?: Record<string, any> | undefined;
|
|
521
|
+
readonly dataTest?: string | undefined;
|
|
522
|
+
readonly reverse?: boolean | undefined;
|
|
523
|
+
readonly content?: string | undefined;
|
|
524
|
+
readonly gap?: string | undefined;
|
|
525
|
+
readonly align?: string | undefined;
|
|
526
|
+
readonly justify?: string | undefined;
|
|
527
|
+
readonly wrap?: boolean | undefined;
|
|
528
|
+
};
|
|
529
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
530
|
+
$slots: {
|
|
531
|
+
default?(_: {}): any;
|
|
532
|
+
};
|
|
533
|
+
});
|
|
534
|
+
};
|
|
535
|
+
setup(): {
|
|
536
|
+
args: any;
|
|
537
|
+
options: any;
|
|
538
|
+
};
|
|
539
|
+
template: string;
|
|
540
|
+
};
|
|
541
|
+
export namespace Variants {
|
|
542
|
+
export namespace args_2 {
|
|
543
|
+
let _enum: string;
|
|
544
|
+
export { _enum as enum };
|
|
545
|
+
}
|
|
546
|
+
export { args_2 as args };
|
|
547
|
+
}
|
|
548
|
+
export function Sizes(args: any, { argTypes }?: {}): {
|
|
549
|
+
components: {
|
|
550
|
+
UButton: {
|
|
551
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
|
|
552
|
+
buttonRef: import("vue").Ref<null, null>;
|
|
553
|
+
label: string;
|
|
554
|
+
id: string;
|
|
555
|
+
rightIcon: string;
|
|
556
|
+
leftIcon: string;
|
|
557
|
+
config: Record<string, any>;
|
|
558
|
+
dataTest: string;
|
|
559
|
+
icon: string;
|
|
560
|
+
color?: string | undefined;
|
|
561
|
+
disabled?: boolean | undefined;
|
|
562
|
+
size?: string | undefined;
|
|
563
|
+
square?: boolean | undefined;
|
|
564
|
+
filled?: boolean | undefined;
|
|
565
|
+
variant?: string | undefined;
|
|
566
|
+
loading?: boolean | undefined;
|
|
567
|
+
tag?: string | undefined;
|
|
568
|
+
tabindex?: string | number | undefined;
|
|
569
|
+
block?: boolean | undefined;
|
|
570
|
+
round?: boolean | undefined;
|
|
571
|
+
noRing?: boolean | undefined;
|
|
572
|
+
$props: {
|
|
573
|
+
readonly label?: string | undefined;
|
|
574
|
+
readonly id?: string | undefined;
|
|
575
|
+
readonly rightIcon?: string | undefined;
|
|
576
|
+
readonly leftIcon?: string | undefined;
|
|
577
|
+
readonly config?: Record<string, any> | undefined;
|
|
578
|
+
readonly dataTest?: string | undefined;
|
|
579
|
+
readonly icon?: string | undefined;
|
|
580
|
+
readonly color?: string | undefined;
|
|
581
|
+
readonly disabled?: boolean | undefined;
|
|
582
|
+
readonly size?: string | undefined;
|
|
583
|
+
readonly square?: boolean | undefined;
|
|
584
|
+
readonly filled?: boolean | undefined;
|
|
585
|
+
readonly variant?: string | undefined;
|
|
586
|
+
readonly loading?: boolean | undefined;
|
|
587
|
+
readonly tag?: string | undefined;
|
|
588
|
+
readonly tabindex?: string | number | undefined;
|
|
589
|
+
readonly block?: boolean | undefined;
|
|
590
|
+
readonly round?: boolean | undefined;
|
|
591
|
+
readonly noRing?: boolean | undefined;
|
|
592
|
+
};
|
|
593
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<{}> & Readonly<{}>, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
594
|
+
P: {};
|
|
595
|
+
B: {};
|
|
596
|
+
D: {};
|
|
597
|
+
C: {};
|
|
598
|
+
M: {};
|
|
599
|
+
Defaults: {};
|
|
600
|
+
}, Readonly<{}> & Readonly<{}>, {
|
|
601
|
+
buttonRef: import("vue").Ref<null, null>;
|
|
602
|
+
label: string;
|
|
603
|
+
id: string;
|
|
604
|
+
rightIcon: string;
|
|
605
|
+
leftIcon: string;
|
|
606
|
+
config: Record<string, any>;
|
|
607
|
+
dataTest: string;
|
|
608
|
+
icon: string;
|
|
609
|
+
color?: string | undefined;
|
|
610
|
+
disabled?: boolean | undefined;
|
|
611
|
+
size?: string | undefined;
|
|
612
|
+
square?: boolean | undefined;
|
|
613
|
+
filled?: boolean | undefined;
|
|
614
|
+
variant?: string | undefined;
|
|
615
|
+
loading?: boolean | undefined;
|
|
616
|
+
tag?: string | undefined;
|
|
617
|
+
tabindex?: string | number | undefined;
|
|
618
|
+
block?: boolean | undefined;
|
|
619
|
+
round?: boolean | undefined;
|
|
620
|
+
noRing?: boolean | undefined;
|
|
621
|
+
$props: {
|
|
622
|
+
readonly label?: string | undefined;
|
|
623
|
+
readonly id?: string | undefined;
|
|
624
|
+
readonly rightIcon?: string | undefined;
|
|
625
|
+
readonly leftIcon?: string | undefined;
|
|
626
|
+
readonly config?: Record<string, any> | undefined;
|
|
627
|
+
readonly dataTest?: string | undefined;
|
|
628
|
+
readonly icon?: string | undefined;
|
|
629
|
+
readonly color?: string | undefined;
|
|
630
|
+
readonly disabled?: boolean | undefined;
|
|
631
|
+
readonly size?: string | undefined;
|
|
632
|
+
readonly square?: boolean | undefined;
|
|
633
|
+
readonly filled?: boolean | undefined;
|
|
634
|
+
readonly variant?: string | undefined;
|
|
635
|
+
readonly loading?: boolean | undefined;
|
|
636
|
+
readonly tag?: string | undefined;
|
|
637
|
+
readonly tabindex?: string | number | undefined;
|
|
638
|
+
readonly block?: boolean | undefined;
|
|
639
|
+
readonly round?: boolean | undefined;
|
|
640
|
+
readonly noRing?: boolean | undefined;
|
|
641
|
+
};
|
|
642
|
+
}, {}, {}, {}, {}>;
|
|
643
|
+
__isFragment?: never;
|
|
644
|
+
__isTeleport?: never;
|
|
645
|
+
__isSuspense?: never;
|
|
646
|
+
} & import("vue").ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
|
|
647
|
+
buttonRef: import("vue").Ref<null, null>;
|
|
648
|
+
label: string;
|
|
649
|
+
id: string;
|
|
650
|
+
rightIcon: string;
|
|
651
|
+
leftIcon: string;
|
|
652
|
+
config: Record<string, any>;
|
|
653
|
+
dataTest: string;
|
|
654
|
+
icon: string;
|
|
655
|
+
color?: string | undefined;
|
|
656
|
+
disabled?: boolean | undefined;
|
|
657
|
+
size?: string | undefined;
|
|
658
|
+
square?: boolean | undefined;
|
|
659
|
+
filled?: boolean | undefined;
|
|
660
|
+
variant?: string | undefined;
|
|
661
|
+
loading?: boolean | undefined;
|
|
662
|
+
tag?: string | undefined;
|
|
663
|
+
tabindex?: string | number | undefined;
|
|
664
|
+
block?: boolean | undefined;
|
|
665
|
+
round?: boolean | undefined;
|
|
666
|
+
noRing?: boolean | undefined;
|
|
667
|
+
$props: {
|
|
668
|
+
readonly label?: string | undefined;
|
|
669
|
+
readonly id?: string | undefined;
|
|
670
|
+
readonly rightIcon?: string | undefined;
|
|
671
|
+
readonly leftIcon?: string | undefined;
|
|
672
|
+
readonly config?: Record<string, any> | undefined;
|
|
673
|
+
readonly dataTest?: string | undefined;
|
|
674
|
+
readonly icon?: string | undefined;
|
|
675
|
+
readonly color?: string | undefined;
|
|
676
|
+
readonly disabled?: boolean | undefined;
|
|
677
|
+
readonly size?: string | undefined;
|
|
678
|
+
readonly square?: boolean | undefined;
|
|
679
|
+
readonly filled?: boolean | undefined;
|
|
680
|
+
readonly variant?: string | undefined;
|
|
681
|
+
readonly loading?: boolean | undefined;
|
|
682
|
+
readonly tag?: string | undefined;
|
|
683
|
+
readonly tabindex?: string | number | undefined;
|
|
684
|
+
readonly block?: boolean | undefined;
|
|
685
|
+
readonly round?: boolean | undefined;
|
|
686
|
+
readonly noRing?: boolean | undefined;
|
|
687
|
+
};
|
|
688
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
689
|
+
$slots: {
|
|
690
|
+
left?(_: {
|
|
691
|
+
iconName: string;
|
|
692
|
+
iconSize: any;
|
|
693
|
+
iconColor: string | undefined;
|
|
694
|
+
}): any;
|
|
695
|
+
default?(_: {
|
|
696
|
+
label: string;
|
|
697
|
+
iconName: string;
|
|
698
|
+
iconSize: any;
|
|
699
|
+
iconColor: string | undefined;
|
|
700
|
+
}): any;
|
|
701
|
+
right?(_: {
|
|
702
|
+
iconName: string;
|
|
703
|
+
iconSize: any;
|
|
704
|
+
iconColor: string | undefined;
|
|
705
|
+
}): any;
|
|
706
|
+
};
|
|
707
|
+
});
|
|
708
|
+
URow: {
|
|
709
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
|
|
710
|
+
config: Record<string, any>;
|
|
711
|
+
dataTest: string;
|
|
712
|
+
reverse?: boolean | undefined;
|
|
713
|
+
content?: string | undefined;
|
|
714
|
+
gap?: string | undefined;
|
|
715
|
+
align?: string | undefined;
|
|
716
|
+
justify?: string | undefined;
|
|
717
|
+
wrap?: boolean | undefined;
|
|
718
|
+
noMobile?: boolean | undefined;
|
|
719
|
+
$props: {
|
|
720
|
+
readonly config?: Record<string, any> | undefined;
|
|
721
|
+
readonly dataTest?: string | undefined;
|
|
722
|
+
readonly reverse?: boolean | undefined;
|
|
723
|
+
readonly content?: string | undefined;
|
|
724
|
+
readonly gap?: string | undefined;
|
|
725
|
+
readonly align?: string | undefined;
|
|
726
|
+
readonly justify?: string | undefined;
|
|
727
|
+
readonly wrap?: boolean | undefined;
|
|
728
|
+
readonly noMobile?: boolean | undefined;
|
|
729
|
+
};
|
|
730
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<{}> & Readonly<{}>, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
731
|
+
P: {};
|
|
732
|
+
B: {};
|
|
733
|
+
D: {};
|
|
734
|
+
C: {};
|
|
735
|
+
M: {};
|
|
736
|
+
Defaults: {};
|
|
737
|
+
}, Readonly<{}> & Readonly<{}>, {
|
|
738
|
+
config: Record<string, any>;
|
|
739
|
+
dataTest: string;
|
|
740
|
+
reverse?: boolean | undefined;
|
|
741
|
+
content?: string | undefined;
|
|
742
|
+
gap?: string | undefined;
|
|
743
|
+
align?: string | undefined;
|
|
744
|
+
justify?: string | undefined;
|
|
745
|
+
wrap?: boolean | undefined;
|
|
746
|
+
noMobile?: boolean | undefined;
|
|
747
|
+
$props: {
|
|
748
|
+
readonly config?: Record<string, any> | undefined;
|
|
749
|
+
readonly dataTest?: string | undefined;
|
|
750
|
+
readonly reverse?: boolean | undefined;
|
|
751
|
+
readonly content?: string | undefined;
|
|
752
|
+
readonly gap?: string | undefined;
|
|
753
|
+
readonly align?: string | undefined;
|
|
754
|
+
readonly justify?: string | undefined;
|
|
755
|
+
readonly wrap?: boolean | undefined;
|
|
756
|
+
readonly noMobile?: boolean | undefined;
|
|
757
|
+
};
|
|
758
|
+
}, {}, {}, {}, {}>;
|
|
759
|
+
__isFragment?: never;
|
|
760
|
+
__isTeleport?: never;
|
|
761
|
+
__isSuspense?: never;
|
|
762
|
+
} & import("vue").ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
|
|
763
|
+
config: Record<string, any>;
|
|
764
|
+
dataTest: string;
|
|
765
|
+
reverse?: boolean | undefined;
|
|
766
|
+
content?: string | undefined;
|
|
767
|
+
gap?: string | undefined;
|
|
768
|
+
align?: string | undefined;
|
|
769
|
+
justify?: string | undefined;
|
|
770
|
+
wrap?: boolean | undefined;
|
|
771
|
+
noMobile?: boolean | undefined;
|
|
772
|
+
$props: {
|
|
773
|
+
readonly config?: Record<string, any> | undefined;
|
|
774
|
+
readonly dataTest?: string | undefined;
|
|
775
|
+
readonly reverse?: boolean | undefined;
|
|
776
|
+
readonly content?: string | undefined;
|
|
777
|
+
readonly gap?: string | undefined;
|
|
778
|
+
readonly align?: string | undefined;
|
|
779
|
+
readonly justify?: string | undefined;
|
|
780
|
+
readonly wrap?: boolean | undefined;
|
|
781
|
+
readonly noMobile?: boolean | undefined;
|
|
782
|
+
};
|
|
783
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
784
|
+
$slots: {
|
|
785
|
+
default?(_: {}): any;
|
|
786
|
+
};
|
|
787
|
+
});
|
|
788
|
+
UCol: {
|
|
789
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
|
|
790
|
+
config: Record<string, any>;
|
|
791
|
+
dataTest: string;
|
|
792
|
+
reverse?: boolean | undefined;
|
|
793
|
+
content?: string | undefined;
|
|
794
|
+
gap?: string | undefined;
|
|
795
|
+
align?: string | undefined;
|
|
796
|
+
justify?: string | undefined;
|
|
797
|
+
wrap?: boolean | undefined;
|
|
798
|
+
$props: {
|
|
799
|
+
readonly config?: Record<string, any> | undefined;
|
|
800
|
+
readonly dataTest?: string | undefined;
|
|
801
|
+
readonly reverse?: boolean | undefined;
|
|
802
|
+
readonly content?: string | undefined;
|
|
803
|
+
readonly gap?: string | undefined;
|
|
804
|
+
readonly align?: string | undefined;
|
|
805
|
+
readonly justify?: string | undefined;
|
|
806
|
+
readonly wrap?: boolean | undefined;
|
|
807
|
+
};
|
|
808
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<{}> & Readonly<{}>, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
809
|
+
P: {};
|
|
810
|
+
B: {};
|
|
811
|
+
D: {};
|
|
812
|
+
C: {};
|
|
813
|
+
M: {};
|
|
814
|
+
Defaults: {};
|
|
815
|
+
}, Readonly<{}> & Readonly<{}>, {
|
|
816
|
+
config: Record<string, any>;
|
|
817
|
+
dataTest: string;
|
|
818
|
+
reverse?: boolean | undefined;
|
|
819
|
+
content?: string | undefined;
|
|
820
|
+
gap?: string | undefined;
|
|
821
|
+
align?: string | undefined;
|
|
822
|
+
justify?: string | undefined;
|
|
823
|
+
wrap?: boolean | undefined;
|
|
824
|
+
$props: {
|
|
825
|
+
readonly config?: Record<string, any> | undefined;
|
|
826
|
+
readonly dataTest?: string | undefined;
|
|
827
|
+
readonly reverse?: boolean | undefined;
|
|
828
|
+
readonly content?: string | undefined;
|
|
829
|
+
readonly gap?: string | undefined;
|
|
830
|
+
readonly align?: string | undefined;
|
|
831
|
+
readonly justify?: string | undefined;
|
|
832
|
+
readonly wrap?: boolean | undefined;
|
|
833
|
+
};
|
|
834
|
+
}, {}, {}, {}, {}>;
|
|
835
|
+
__isFragment?: never;
|
|
836
|
+
__isTeleport?: never;
|
|
837
|
+
__isSuspense?: never;
|
|
838
|
+
} & import("vue").ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
|
|
839
|
+
config: Record<string, any>;
|
|
840
|
+
dataTest: string;
|
|
841
|
+
reverse?: boolean | undefined;
|
|
842
|
+
content?: string | undefined;
|
|
843
|
+
gap?: string | undefined;
|
|
844
|
+
align?: string | undefined;
|
|
845
|
+
justify?: string | undefined;
|
|
846
|
+
wrap?: boolean | undefined;
|
|
847
|
+
$props: {
|
|
848
|
+
readonly config?: Record<string, any> | undefined;
|
|
849
|
+
readonly dataTest?: string | undefined;
|
|
850
|
+
readonly reverse?: boolean | undefined;
|
|
851
|
+
readonly content?: string | undefined;
|
|
852
|
+
readonly gap?: string | undefined;
|
|
853
|
+
readonly align?: string | undefined;
|
|
854
|
+
readonly justify?: string | undefined;
|
|
855
|
+
readonly wrap?: boolean | undefined;
|
|
856
|
+
};
|
|
857
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
858
|
+
$slots: {
|
|
859
|
+
default?(_: {}): any;
|
|
860
|
+
};
|
|
861
|
+
});
|
|
862
|
+
};
|
|
863
|
+
setup(): {
|
|
864
|
+
args: any;
|
|
865
|
+
options: any;
|
|
866
|
+
};
|
|
867
|
+
template: string;
|
|
868
|
+
};
|
|
869
|
+
export namespace Sizes {
|
|
870
|
+
export namespace args_3 {
|
|
871
|
+
let _enum_1: string;
|
|
872
|
+
export { _enum_1 as enum };
|
|
873
|
+
}
|
|
874
|
+
export { args_3 as args };
|
|
875
|
+
}
|
|
876
|
+
export function Round(args: any, { argTypes }?: {}): {
|
|
877
|
+
components: {
|
|
878
|
+
UButton: {
|
|
879
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
|
|
880
|
+
buttonRef: import("vue").Ref<null, null>;
|
|
881
|
+
label: string;
|
|
882
|
+
id: string;
|
|
883
|
+
rightIcon: string;
|
|
884
|
+
leftIcon: string;
|
|
885
|
+
config: Record<string, any>;
|
|
886
|
+
dataTest: string;
|
|
887
|
+
icon: string;
|
|
888
|
+
color?: string | undefined;
|
|
889
|
+
disabled?: boolean | undefined;
|
|
890
|
+
size?: string | undefined;
|
|
891
|
+
square?: boolean | undefined;
|
|
892
|
+
filled?: boolean | undefined;
|
|
893
|
+
variant?: string | undefined;
|
|
894
|
+
loading?: boolean | undefined;
|
|
895
|
+
tag?: string | undefined;
|
|
896
|
+
tabindex?: string | number | undefined;
|
|
897
|
+
block?: boolean | undefined;
|
|
898
|
+
round?: boolean | undefined;
|
|
899
|
+
noRing?: boolean | undefined;
|
|
900
|
+
$props: {
|
|
901
|
+
readonly label?: string | undefined;
|
|
902
|
+
readonly id?: string | undefined;
|
|
903
|
+
readonly rightIcon?: string | undefined;
|
|
904
|
+
readonly leftIcon?: string | undefined;
|
|
905
|
+
readonly config?: Record<string, any> | undefined;
|
|
906
|
+
readonly dataTest?: string | undefined;
|
|
907
|
+
readonly icon?: string | undefined;
|
|
908
|
+
readonly color?: string | undefined;
|
|
909
|
+
readonly disabled?: boolean | undefined;
|
|
910
|
+
readonly size?: string | undefined;
|
|
911
|
+
readonly square?: boolean | undefined;
|
|
912
|
+
readonly filled?: boolean | undefined;
|
|
913
|
+
readonly variant?: string | undefined;
|
|
914
|
+
readonly loading?: boolean | undefined;
|
|
915
|
+
readonly tag?: string | undefined;
|
|
916
|
+
readonly tabindex?: string | number | undefined;
|
|
917
|
+
readonly block?: boolean | undefined;
|
|
918
|
+
readonly round?: boolean | undefined;
|
|
919
|
+
readonly noRing?: boolean | undefined;
|
|
920
|
+
};
|
|
921
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<{}> & Readonly<{}>, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
922
|
+
P: {};
|
|
923
|
+
B: {};
|
|
924
|
+
D: {};
|
|
925
|
+
C: {};
|
|
926
|
+
M: {};
|
|
927
|
+
Defaults: {};
|
|
928
|
+
}, Readonly<{}> & Readonly<{}>, {
|
|
929
|
+
buttonRef: import("vue").Ref<null, null>;
|
|
930
|
+
label: string;
|
|
931
|
+
id: string;
|
|
932
|
+
rightIcon: string;
|
|
933
|
+
leftIcon: string;
|
|
934
|
+
config: Record<string, any>;
|
|
935
|
+
dataTest: string;
|
|
936
|
+
icon: string;
|
|
937
|
+
color?: string | undefined;
|
|
938
|
+
disabled?: boolean | undefined;
|
|
939
|
+
size?: string | undefined;
|
|
940
|
+
square?: boolean | undefined;
|
|
941
|
+
filled?: boolean | undefined;
|
|
942
|
+
variant?: string | undefined;
|
|
943
|
+
loading?: boolean | undefined;
|
|
944
|
+
tag?: string | undefined;
|
|
945
|
+
tabindex?: string | number | undefined;
|
|
946
|
+
block?: boolean | undefined;
|
|
947
|
+
round?: boolean | undefined;
|
|
948
|
+
noRing?: boolean | undefined;
|
|
949
|
+
$props: {
|
|
950
|
+
readonly label?: string | undefined;
|
|
951
|
+
readonly id?: string | undefined;
|
|
952
|
+
readonly rightIcon?: string | undefined;
|
|
953
|
+
readonly leftIcon?: string | undefined;
|
|
954
|
+
readonly config?: Record<string, any> | undefined;
|
|
955
|
+
readonly dataTest?: string | undefined;
|
|
956
|
+
readonly icon?: string | undefined;
|
|
957
|
+
readonly color?: string | undefined;
|
|
958
|
+
readonly disabled?: boolean | undefined;
|
|
959
|
+
readonly size?: string | undefined;
|
|
960
|
+
readonly square?: boolean | undefined;
|
|
961
|
+
readonly filled?: boolean | undefined;
|
|
962
|
+
readonly variant?: string | undefined;
|
|
963
|
+
readonly loading?: boolean | undefined;
|
|
964
|
+
readonly tag?: string | undefined;
|
|
965
|
+
readonly tabindex?: string | number | undefined;
|
|
966
|
+
readonly block?: boolean | undefined;
|
|
967
|
+
readonly round?: boolean | undefined;
|
|
968
|
+
readonly noRing?: boolean | undefined;
|
|
969
|
+
};
|
|
970
|
+
}, {}, {}, {}, {}>;
|
|
971
|
+
__isFragment?: never;
|
|
972
|
+
__isTeleport?: never;
|
|
973
|
+
__isSuspense?: never;
|
|
974
|
+
} & import("vue").ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
|
|
975
|
+
buttonRef: import("vue").Ref<null, null>;
|
|
976
|
+
label: string;
|
|
977
|
+
id: string;
|
|
978
|
+
rightIcon: string;
|
|
979
|
+
leftIcon: string;
|
|
980
|
+
config: Record<string, any>;
|
|
981
|
+
dataTest: string;
|
|
982
|
+
icon: string;
|
|
983
|
+
color?: string | undefined;
|
|
984
|
+
disabled?: boolean | undefined;
|
|
985
|
+
size?: string | undefined;
|
|
986
|
+
square?: boolean | undefined;
|
|
987
|
+
filled?: boolean | undefined;
|
|
988
|
+
variant?: string | undefined;
|
|
989
|
+
loading?: boolean | undefined;
|
|
990
|
+
tag?: string | undefined;
|
|
991
|
+
tabindex?: string | number | undefined;
|
|
992
|
+
block?: boolean | undefined;
|
|
993
|
+
round?: boolean | undefined;
|
|
994
|
+
noRing?: boolean | undefined;
|
|
995
|
+
$props: {
|
|
996
|
+
readonly label?: string | undefined;
|
|
997
|
+
readonly id?: string | undefined;
|
|
998
|
+
readonly rightIcon?: string | undefined;
|
|
999
|
+
readonly leftIcon?: string | undefined;
|
|
1000
|
+
readonly config?: Record<string, any> | undefined;
|
|
1001
|
+
readonly dataTest?: string | undefined;
|
|
1002
|
+
readonly icon?: string | undefined;
|
|
1003
|
+
readonly color?: string | undefined;
|
|
1004
|
+
readonly disabled?: boolean | undefined;
|
|
1005
|
+
readonly size?: string | undefined;
|
|
1006
|
+
readonly square?: boolean | undefined;
|
|
1007
|
+
readonly filled?: boolean | undefined;
|
|
1008
|
+
readonly variant?: string | undefined;
|
|
1009
|
+
readonly loading?: boolean | undefined;
|
|
1010
|
+
readonly tag?: string | undefined;
|
|
1011
|
+
readonly tabindex?: string | number | undefined;
|
|
1012
|
+
readonly block?: boolean | undefined;
|
|
1013
|
+
readonly round?: boolean | undefined;
|
|
1014
|
+
readonly noRing?: boolean | undefined;
|
|
1015
|
+
};
|
|
1016
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
1017
|
+
$slots: {
|
|
1018
|
+
left?(_: {
|
|
1019
|
+
iconName: string;
|
|
1020
|
+
iconSize: any;
|
|
1021
|
+
iconColor: string | undefined;
|
|
1022
|
+
}): any;
|
|
1023
|
+
default?(_: {
|
|
1024
|
+
label: string;
|
|
1025
|
+
iconName: string;
|
|
1026
|
+
iconSize: any;
|
|
1027
|
+
iconColor: string | undefined;
|
|
1028
|
+
}): any;
|
|
1029
|
+
right?(_: {
|
|
1030
|
+
iconName: string;
|
|
1031
|
+
iconSize: any;
|
|
1032
|
+
iconColor: string | undefined;
|
|
1033
|
+
}): any;
|
|
1034
|
+
};
|
|
1035
|
+
});
|
|
1036
|
+
URow: {
|
|
1037
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
|
|
1038
|
+
config: Record<string, any>;
|
|
1039
|
+
dataTest: string;
|
|
1040
|
+
reverse?: boolean | undefined;
|
|
1041
|
+
content?: string | undefined;
|
|
1042
|
+
gap?: string | undefined;
|
|
1043
|
+
align?: string | undefined;
|
|
1044
|
+
justify?: string | undefined;
|
|
1045
|
+
wrap?: boolean | undefined;
|
|
1046
|
+
noMobile?: boolean | undefined;
|
|
1047
|
+
$props: {
|
|
1048
|
+
readonly config?: Record<string, any> | undefined;
|
|
1049
|
+
readonly dataTest?: string | undefined;
|
|
1050
|
+
readonly reverse?: boolean | undefined;
|
|
1051
|
+
readonly content?: string | undefined;
|
|
1052
|
+
readonly gap?: string | undefined;
|
|
1053
|
+
readonly align?: string | undefined;
|
|
1054
|
+
readonly justify?: string | undefined;
|
|
1055
|
+
readonly wrap?: boolean | undefined;
|
|
1056
|
+
readonly noMobile?: boolean | undefined;
|
|
1057
|
+
};
|
|
1058
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<{}> & Readonly<{}>, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
1059
|
+
P: {};
|
|
1060
|
+
B: {};
|
|
1061
|
+
D: {};
|
|
1062
|
+
C: {};
|
|
1063
|
+
M: {};
|
|
1064
|
+
Defaults: {};
|
|
1065
|
+
}, Readonly<{}> & Readonly<{}>, {
|
|
1066
|
+
config: Record<string, any>;
|
|
1067
|
+
dataTest: string;
|
|
1068
|
+
reverse?: boolean | undefined;
|
|
1069
|
+
content?: string | undefined;
|
|
1070
|
+
gap?: string | undefined;
|
|
1071
|
+
align?: string | undefined;
|
|
1072
|
+
justify?: string | undefined;
|
|
1073
|
+
wrap?: boolean | undefined;
|
|
1074
|
+
noMobile?: boolean | undefined;
|
|
1075
|
+
$props: {
|
|
1076
|
+
readonly config?: Record<string, any> | undefined;
|
|
1077
|
+
readonly dataTest?: string | undefined;
|
|
1078
|
+
readonly reverse?: boolean | undefined;
|
|
1079
|
+
readonly content?: string | undefined;
|
|
1080
|
+
readonly gap?: string | undefined;
|
|
1081
|
+
readonly align?: string | undefined;
|
|
1082
|
+
readonly justify?: string | undefined;
|
|
1083
|
+
readonly wrap?: boolean | undefined;
|
|
1084
|
+
readonly noMobile?: boolean | undefined;
|
|
1085
|
+
};
|
|
1086
|
+
}, {}, {}, {}, {}>;
|
|
1087
|
+
__isFragment?: never;
|
|
1088
|
+
__isTeleport?: never;
|
|
1089
|
+
__isSuspense?: never;
|
|
1090
|
+
} & import("vue").ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
|
|
1091
|
+
config: Record<string, any>;
|
|
1092
|
+
dataTest: string;
|
|
1093
|
+
reverse?: boolean | undefined;
|
|
1094
|
+
content?: string | undefined;
|
|
1095
|
+
gap?: string | undefined;
|
|
1096
|
+
align?: string | undefined;
|
|
1097
|
+
justify?: string | undefined;
|
|
1098
|
+
wrap?: boolean | undefined;
|
|
1099
|
+
noMobile?: boolean | undefined;
|
|
1100
|
+
$props: {
|
|
1101
|
+
readonly config?: Record<string, any> | undefined;
|
|
1102
|
+
readonly dataTest?: string | undefined;
|
|
1103
|
+
readonly reverse?: boolean | undefined;
|
|
1104
|
+
readonly content?: string | undefined;
|
|
1105
|
+
readonly gap?: string | undefined;
|
|
1106
|
+
readonly align?: string | undefined;
|
|
1107
|
+
readonly justify?: string | undefined;
|
|
1108
|
+
readonly wrap?: boolean | undefined;
|
|
1109
|
+
readonly noMobile?: boolean | undefined;
|
|
1110
|
+
};
|
|
1111
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
1112
|
+
$slots: {
|
|
1113
|
+
default?(_: {}): any;
|
|
1114
|
+
};
|
|
1115
|
+
});
|
|
1116
|
+
UCol: {
|
|
1117
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
|
|
1118
|
+
config: Record<string, any>;
|
|
1119
|
+
dataTest: string;
|
|
1120
|
+
reverse?: boolean | undefined;
|
|
1121
|
+
content?: string | undefined;
|
|
1122
|
+
gap?: string | undefined;
|
|
1123
|
+
align?: string | undefined;
|
|
1124
|
+
justify?: string | undefined;
|
|
1125
|
+
wrap?: boolean | undefined;
|
|
1126
|
+
$props: {
|
|
1127
|
+
readonly config?: Record<string, any> | undefined;
|
|
1128
|
+
readonly dataTest?: string | undefined;
|
|
1129
|
+
readonly reverse?: boolean | undefined;
|
|
1130
|
+
readonly content?: string | undefined;
|
|
1131
|
+
readonly gap?: string | undefined;
|
|
1132
|
+
readonly align?: string | undefined;
|
|
1133
|
+
readonly justify?: string | undefined;
|
|
1134
|
+
readonly wrap?: boolean | undefined;
|
|
1135
|
+
};
|
|
1136
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<{}> & Readonly<{}>, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
1137
|
+
P: {};
|
|
1138
|
+
B: {};
|
|
1139
|
+
D: {};
|
|
1140
|
+
C: {};
|
|
1141
|
+
M: {};
|
|
1142
|
+
Defaults: {};
|
|
1143
|
+
}, Readonly<{}> & Readonly<{}>, {
|
|
1144
|
+
config: Record<string, any>;
|
|
1145
|
+
dataTest: string;
|
|
1146
|
+
reverse?: boolean | undefined;
|
|
1147
|
+
content?: string | undefined;
|
|
1148
|
+
gap?: string | undefined;
|
|
1149
|
+
align?: string | undefined;
|
|
1150
|
+
justify?: string | undefined;
|
|
1151
|
+
wrap?: boolean | undefined;
|
|
1152
|
+
$props: {
|
|
1153
|
+
readonly config?: Record<string, any> | undefined;
|
|
1154
|
+
readonly dataTest?: string | undefined;
|
|
1155
|
+
readonly reverse?: boolean | undefined;
|
|
1156
|
+
readonly content?: string | undefined;
|
|
1157
|
+
readonly gap?: string | undefined;
|
|
1158
|
+
readonly align?: string | undefined;
|
|
1159
|
+
readonly justify?: string | undefined;
|
|
1160
|
+
readonly wrap?: boolean | undefined;
|
|
1161
|
+
};
|
|
1162
|
+
}, {}, {}, {}, {}>;
|
|
1163
|
+
__isFragment?: never;
|
|
1164
|
+
__isTeleport?: never;
|
|
1165
|
+
__isSuspense?: never;
|
|
1166
|
+
} & import("vue").ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
|
|
1167
|
+
config: Record<string, any>;
|
|
1168
|
+
dataTest: string;
|
|
1169
|
+
reverse?: boolean | undefined;
|
|
1170
|
+
content?: string | undefined;
|
|
1171
|
+
gap?: string | undefined;
|
|
1172
|
+
align?: string | undefined;
|
|
1173
|
+
justify?: string | undefined;
|
|
1174
|
+
wrap?: boolean | undefined;
|
|
1175
|
+
$props: {
|
|
1176
|
+
readonly config?: Record<string, any> | undefined;
|
|
1177
|
+
readonly dataTest?: string | undefined;
|
|
1178
|
+
readonly reverse?: boolean | undefined;
|
|
1179
|
+
readonly content?: string | undefined;
|
|
1180
|
+
readonly gap?: string | undefined;
|
|
1181
|
+
readonly align?: string | undefined;
|
|
1182
|
+
readonly justify?: string | undefined;
|
|
1183
|
+
readonly wrap?: boolean | undefined;
|
|
1184
|
+
};
|
|
1185
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
1186
|
+
$slots: {
|
|
1187
|
+
default?(_: {}): any;
|
|
1188
|
+
};
|
|
1189
|
+
});
|
|
1190
|
+
};
|
|
1191
|
+
setup(): {
|
|
1192
|
+
args: any;
|
|
1193
|
+
options: any;
|
|
1194
|
+
};
|
|
1195
|
+
template: string;
|
|
1196
|
+
};
|
|
1197
|
+
export namespace Round {
|
|
1198
|
+
export namespace args_4 {
|
|
1199
|
+
let _enum_2: string;
|
|
1200
|
+
export { _enum_2 as enum };
|
|
1201
|
+
export let round: boolean;
|
|
1202
|
+
}
|
|
1203
|
+
export { args_4 as args };
|
|
1204
|
+
}
|
|
1205
|
+
export function Disabled(args: any, { argTypes }?: {}): {
|
|
1206
|
+
components: {
|
|
1207
|
+
UButton: {
|
|
1208
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
|
|
1209
|
+
buttonRef: import("vue").Ref<null, null>;
|
|
1210
|
+
label: string;
|
|
1211
|
+
id: string;
|
|
1212
|
+
rightIcon: string;
|
|
1213
|
+
leftIcon: string;
|
|
1214
|
+
config: Record<string, any>;
|
|
1215
|
+
dataTest: string;
|
|
1216
|
+
icon: string;
|
|
1217
|
+
color?: string | undefined;
|
|
1218
|
+
disabled?: boolean | undefined;
|
|
1219
|
+
size?: string | undefined;
|
|
1220
|
+
square?: boolean | undefined;
|
|
1221
|
+
filled?: boolean | undefined;
|
|
1222
|
+
variant?: string | undefined;
|
|
1223
|
+
loading?: boolean | undefined;
|
|
1224
|
+
tag?: string | undefined;
|
|
1225
|
+
tabindex?: string | number | undefined;
|
|
1226
|
+
block?: boolean | undefined;
|
|
1227
|
+
round?: boolean | undefined;
|
|
1228
|
+
noRing?: boolean | undefined;
|
|
1229
|
+
$props: {
|
|
1230
|
+
readonly label?: string | undefined;
|
|
1231
|
+
readonly id?: string | undefined;
|
|
1232
|
+
readonly rightIcon?: string | undefined;
|
|
1233
|
+
readonly leftIcon?: string | undefined;
|
|
1234
|
+
readonly config?: Record<string, any> | undefined;
|
|
1235
|
+
readonly dataTest?: string | undefined;
|
|
1236
|
+
readonly icon?: string | undefined;
|
|
1237
|
+
readonly color?: string | undefined;
|
|
1238
|
+
readonly disabled?: boolean | undefined;
|
|
1239
|
+
readonly size?: string | undefined;
|
|
1240
|
+
readonly square?: boolean | undefined;
|
|
1241
|
+
readonly filled?: boolean | undefined;
|
|
1242
|
+
readonly variant?: string | undefined;
|
|
1243
|
+
readonly loading?: boolean | undefined;
|
|
1244
|
+
readonly tag?: string | undefined;
|
|
1245
|
+
readonly tabindex?: string | number | undefined;
|
|
1246
|
+
readonly block?: boolean | undefined;
|
|
1247
|
+
readonly round?: boolean | undefined;
|
|
1248
|
+
readonly noRing?: boolean | undefined;
|
|
1249
|
+
};
|
|
1250
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<{}> & Readonly<{}>, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
1251
|
+
P: {};
|
|
1252
|
+
B: {};
|
|
1253
|
+
D: {};
|
|
1254
|
+
C: {};
|
|
1255
|
+
M: {};
|
|
1256
|
+
Defaults: {};
|
|
1257
|
+
}, Readonly<{}> & Readonly<{}>, {
|
|
1258
|
+
buttonRef: import("vue").Ref<null, null>;
|
|
1259
|
+
label: string;
|
|
1260
|
+
id: string;
|
|
1261
|
+
rightIcon: string;
|
|
1262
|
+
leftIcon: string;
|
|
1263
|
+
config: Record<string, any>;
|
|
1264
|
+
dataTest: string;
|
|
1265
|
+
icon: string;
|
|
1266
|
+
color?: string | undefined;
|
|
1267
|
+
disabled?: boolean | undefined;
|
|
1268
|
+
size?: string | undefined;
|
|
1269
|
+
square?: boolean | undefined;
|
|
1270
|
+
filled?: boolean | undefined;
|
|
1271
|
+
variant?: string | undefined;
|
|
1272
|
+
loading?: boolean | undefined;
|
|
1273
|
+
tag?: string | undefined;
|
|
1274
|
+
tabindex?: string | number | undefined;
|
|
1275
|
+
block?: boolean | undefined;
|
|
1276
|
+
round?: boolean | undefined;
|
|
1277
|
+
noRing?: boolean | undefined;
|
|
1278
|
+
$props: {
|
|
1279
|
+
readonly label?: string | undefined;
|
|
1280
|
+
readonly id?: string | undefined;
|
|
1281
|
+
readonly rightIcon?: string | undefined;
|
|
1282
|
+
readonly leftIcon?: string | undefined;
|
|
1283
|
+
readonly config?: Record<string, any> | undefined;
|
|
1284
|
+
readonly dataTest?: string | undefined;
|
|
1285
|
+
readonly icon?: string | undefined;
|
|
1286
|
+
readonly color?: string | undefined;
|
|
1287
|
+
readonly disabled?: boolean | undefined;
|
|
1288
|
+
readonly size?: string | undefined;
|
|
1289
|
+
readonly square?: boolean | undefined;
|
|
1290
|
+
readonly filled?: boolean | undefined;
|
|
1291
|
+
readonly variant?: string | undefined;
|
|
1292
|
+
readonly loading?: boolean | undefined;
|
|
1293
|
+
readonly tag?: string | undefined;
|
|
1294
|
+
readonly tabindex?: string | number | undefined;
|
|
1295
|
+
readonly block?: boolean | undefined;
|
|
1296
|
+
readonly round?: boolean | undefined;
|
|
1297
|
+
readonly noRing?: boolean | undefined;
|
|
1298
|
+
};
|
|
1299
|
+
}, {}, {}, {}, {}>;
|
|
1300
|
+
__isFragment?: never;
|
|
1301
|
+
__isTeleport?: never;
|
|
1302
|
+
__isSuspense?: never;
|
|
1303
|
+
} & import("vue").ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
|
|
1304
|
+
buttonRef: import("vue").Ref<null, null>;
|
|
1305
|
+
label: string;
|
|
1306
|
+
id: string;
|
|
1307
|
+
rightIcon: string;
|
|
1308
|
+
leftIcon: string;
|
|
1309
|
+
config: Record<string, any>;
|
|
1310
|
+
dataTest: string;
|
|
1311
|
+
icon: string;
|
|
1312
|
+
color?: string | undefined;
|
|
1313
|
+
disabled?: boolean | undefined;
|
|
1314
|
+
size?: string | undefined;
|
|
1315
|
+
square?: boolean | undefined;
|
|
1316
|
+
filled?: boolean | undefined;
|
|
1317
|
+
variant?: string | undefined;
|
|
1318
|
+
loading?: boolean | undefined;
|
|
1319
|
+
tag?: string | undefined;
|
|
1320
|
+
tabindex?: string | number | undefined;
|
|
1321
|
+
block?: boolean | undefined;
|
|
1322
|
+
round?: boolean | undefined;
|
|
1323
|
+
noRing?: boolean | undefined;
|
|
1324
|
+
$props: {
|
|
1325
|
+
readonly label?: string | undefined;
|
|
1326
|
+
readonly id?: string | undefined;
|
|
1327
|
+
readonly rightIcon?: string | undefined;
|
|
1328
|
+
readonly leftIcon?: string | undefined;
|
|
1329
|
+
readonly config?: Record<string, any> | undefined;
|
|
1330
|
+
readonly dataTest?: string | undefined;
|
|
1331
|
+
readonly icon?: string | undefined;
|
|
1332
|
+
readonly color?: string | undefined;
|
|
1333
|
+
readonly disabled?: boolean | undefined;
|
|
1334
|
+
readonly size?: string | undefined;
|
|
1335
|
+
readonly square?: boolean | undefined;
|
|
1336
|
+
readonly filled?: boolean | undefined;
|
|
1337
|
+
readonly variant?: string | undefined;
|
|
1338
|
+
readonly loading?: boolean | undefined;
|
|
1339
|
+
readonly tag?: string | undefined;
|
|
1340
|
+
readonly tabindex?: string | number | undefined;
|
|
1341
|
+
readonly block?: boolean | undefined;
|
|
1342
|
+
readonly round?: boolean | undefined;
|
|
1343
|
+
readonly noRing?: boolean | undefined;
|
|
1344
|
+
};
|
|
1345
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
1346
|
+
$slots: {
|
|
1347
|
+
left?(_: {
|
|
1348
|
+
iconName: string;
|
|
1349
|
+
iconSize: any;
|
|
1350
|
+
iconColor: string | undefined;
|
|
1351
|
+
}): any;
|
|
1352
|
+
default?(_: {
|
|
1353
|
+
label: string;
|
|
1354
|
+
iconName: string;
|
|
1355
|
+
iconSize: any;
|
|
1356
|
+
iconColor: string | undefined;
|
|
1357
|
+
}): any;
|
|
1358
|
+
right?(_: {
|
|
1359
|
+
iconName: string;
|
|
1360
|
+
iconSize: any;
|
|
1361
|
+
iconColor: string | undefined;
|
|
1362
|
+
}): any;
|
|
1363
|
+
};
|
|
1364
|
+
});
|
|
1365
|
+
URow: {
|
|
1366
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
|
|
1367
|
+
config: Record<string, any>;
|
|
1368
|
+
dataTest: string;
|
|
1369
|
+
reverse?: boolean | undefined;
|
|
1370
|
+
content?: string | undefined;
|
|
1371
|
+
gap?: string | undefined;
|
|
1372
|
+
align?: string | undefined;
|
|
1373
|
+
justify?: string | undefined;
|
|
1374
|
+
wrap?: boolean | undefined;
|
|
1375
|
+
noMobile?: boolean | undefined;
|
|
1376
|
+
$props: {
|
|
1377
|
+
readonly config?: Record<string, any> | undefined;
|
|
1378
|
+
readonly dataTest?: string | undefined;
|
|
1379
|
+
readonly reverse?: boolean | undefined;
|
|
1380
|
+
readonly content?: string | undefined;
|
|
1381
|
+
readonly gap?: string | undefined;
|
|
1382
|
+
readonly align?: string | undefined;
|
|
1383
|
+
readonly justify?: string | undefined;
|
|
1384
|
+
readonly wrap?: boolean | undefined;
|
|
1385
|
+
readonly noMobile?: boolean | undefined;
|
|
1386
|
+
};
|
|
1387
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<{}> & Readonly<{}>, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
1388
|
+
P: {};
|
|
1389
|
+
B: {};
|
|
1390
|
+
D: {};
|
|
1391
|
+
C: {};
|
|
1392
|
+
M: {};
|
|
1393
|
+
Defaults: {};
|
|
1394
|
+
}, Readonly<{}> & Readonly<{}>, {
|
|
1395
|
+
config: Record<string, any>;
|
|
1396
|
+
dataTest: string;
|
|
1397
|
+
reverse?: boolean | undefined;
|
|
1398
|
+
content?: string | undefined;
|
|
1399
|
+
gap?: string | undefined;
|
|
1400
|
+
align?: string | undefined;
|
|
1401
|
+
justify?: string | undefined;
|
|
1402
|
+
wrap?: boolean | undefined;
|
|
1403
|
+
noMobile?: boolean | undefined;
|
|
1404
|
+
$props: {
|
|
1405
|
+
readonly config?: Record<string, any> | undefined;
|
|
1406
|
+
readonly dataTest?: string | undefined;
|
|
1407
|
+
readonly reverse?: boolean | undefined;
|
|
1408
|
+
readonly content?: string | undefined;
|
|
1409
|
+
readonly gap?: string | undefined;
|
|
1410
|
+
readonly align?: string | undefined;
|
|
1411
|
+
readonly justify?: string | undefined;
|
|
1412
|
+
readonly wrap?: boolean | undefined;
|
|
1413
|
+
readonly noMobile?: boolean | undefined;
|
|
1414
|
+
};
|
|
1415
|
+
}, {}, {}, {}, {}>;
|
|
1416
|
+
__isFragment?: never;
|
|
1417
|
+
__isTeleport?: never;
|
|
1418
|
+
__isSuspense?: never;
|
|
1419
|
+
} & import("vue").ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
|
|
1420
|
+
config: Record<string, any>;
|
|
1421
|
+
dataTest: string;
|
|
1422
|
+
reverse?: boolean | undefined;
|
|
1423
|
+
content?: string | undefined;
|
|
1424
|
+
gap?: string | undefined;
|
|
1425
|
+
align?: string | undefined;
|
|
1426
|
+
justify?: string | undefined;
|
|
1427
|
+
wrap?: boolean | undefined;
|
|
1428
|
+
noMobile?: boolean | undefined;
|
|
1429
|
+
$props: {
|
|
1430
|
+
readonly config?: Record<string, any> | undefined;
|
|
1431
|
+
readonly dataTest?: string | undefined;
|
|
1432
|
+
readonly reverse?: boolean | undefined;
|
|
1433
|
+
readonly content?: string | undefined;
|
|
1434
|
+
readonly gap?: string | undefined;
|
|
1435
|
+
readonly align?: string | undefined;
|
|
1436
|
+
readonly justify?: string | undefined;
|
|
1437
|
+
readonly wrap?: boolean | undefined;
|
|
1438
|
+
readonly noMobile?: boolean | undefined;
|
|
1439
|
+
};
|
|
1440
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
1441
|
+
$slots: {
|
|
1442
|
+
default?(_: {}): any;
|
|
1443
|
+
};
|
|
1444
|
+
});
|
|
1445
|
+
UCol: {
|
|
1446
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
|
|
1447
|
+
config: Record<string, any>;
|
|
1448
|
+
dataTest: string;
|
|
1449
|
+
reverse?: boolean | undefined;
|
|
1450
|
+
content?: string | undefined;
|
|
1451
|
+
gap?: string | undefined;
|
|
1452
|
+
align?: string | undefined;
|
|
1453
|
+
justify?: string | undefined;
|
|
1454
|
+
wrap?: boolean | undefined;
|
|
1455
|
+
$props: {
|
|
1456
|
+
readonly config?: Record<string, any> | undefined;
|
|
1457
|
+
readonly dataTest?: string | undefined;
|
|
1458
|
+
readonly reverse?: boolean | undefined;
|
|
1459
|
+
readonly content?: string | undefined;
|
|
1460
|
+
readonly gap?: string | undefined;
|
|
1461
|
+
readonly align?: string | undefined;
|
|
1462
|
+
readonly justify?: string | undefined;
|
|
1463
|
+
readonly wrap?: boolean | undefined;
|
|
1464
|
+
};
|
|
1465
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<{}> & Readonly<{}>, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
1466
|
+
P: {};
|
|
1467
|
+
B: {};
|
|
1468
|
+
D: {};
|
|
1469
|
+
C: {};
|
|
1470
|
+
M: {};
|
|
1471
|
+
Defaults: {};
|
|
1472
|
+
}, Readonly<{}> & Readonly<{}>, {
|
|
1473
|
+
config: Record<string, any>;
|
|
1474
|
+
dataTest: string;
|
|
1475
|
+
reverse?: boolean | undefined;
|
|
1476
|
+
content?: string | undefined;
|
|
1477
|
+
gap?: string | undefined;
|
|
1478
|
+
align?: string | undefined;
|
|
1479
|
+
justify?: string | undefined;
|
|
1480
|
+
wrap?: boolean | undefined;
|
|
1481
|
+
$props: {
|
|
1482
|
+
readonly config?: Record<string, any> | undefined;
|
|
1483
|
+
readonly dataTest?: string | undefined;
|
|
1484
|
+
readonly reverse?: boolean | undefined;
|
|
1485
|
+
readonly content?: string | undefined;
|
|
1486
|
+
readonly gap?: string | undefined;
|
|
1487
|
+
readonly align?: string | undefined;
|
|
1488
|
+
readonly justify?: string | undefined;
|
|
1489
|
+
readonly wrap?: boolean | undefined;
|
|
1490
|
+
};
|
|
1491
|
+
}, {}, {}, {}, {}>;
|
|
1492
|
+
__isFragment?: never;
|
|
1493
|
+
__isTeleport?: never;
|
|
1494
|
+
__isSuspense?: never;
|
|
1495
|
+
} & import("vue").ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
|
|
1496
|
+
config: Record<string, any>;
|
|
1497
|
+
dataTest: string;
|
|
1498
|
+
reverse?: boolean | undefined;
|
|
1499
|
+
content?: string | undefined;
|
|
1500
|
+
gap?: string | undefined;
|
|
1501
|
+
align?: string | undefined;
|
|
1502
|
+
justify?: string | undefined;
|
|
1503
|
+
wrap?: boolean | undefined;
|
|
1504
|
+
$props: {
|
|
1505
|
+
readonly config?: Record<string, any> | undefined;
|
|
1506
|
+
readonly dataTest?: string | undefined;
|
|
1507
|
+
readonly reverse?: boolean | undefined;
|
|
1508
|
+
readonly content?: string | undefined;
|
|
1509
|
+
readonly gap?: string | undefined;
|
|
1510
|
+
readonly align?: string | undefined;
|
|
1511
|
+
readonly justify?: string | undefined;
|
|
1512
|
+
readonly wrap?: boolean | undefined;
|
|
1513
|
+
};
|
|
1514
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
1515
|
+
$slots: {
|
|
1516
|
+
default?(_: {}): any;
|
|
1517
|
+
};
|
|
1518
|
+
});
|
|
1519
|
+
};
|
|
1520
|
+
setup(): {
|
|
1521
|
+
args: any;
|
|
1522
|
+
options: any;
|
|
1523
|
+
};
|
|
1524
|
+
template: string;
|
|
1525
|
+
};
|
|
1526
|
+
export namespace Disabled {
|
|
1527
|
+
export namespace args_5 {
|
|
1528
|
+
let _enum_3: string;
|
|
1529
|
+
export { _enum_3 as enum };
|
|
1530
|
+
export let disabled: boolean;
|
|
1531
|
+
}
|
|
1532
|
+
export { args_5 as args };
|
|
1533
|
+
}
|
|
1534
|
+
export function NoRing(args: any): {
|
|
1535
|
+
components: {
|
|
1536
|
+
UButton: {
|
|
1537
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
|
|
1538
|
+
buttonRef: import("vue").Ref<null, null>;
|
|
1539
|
+
label: string;
|
|
1540
|
+
id: string;
|
|
1541
|
+
rightIcon: string;
|
|
1542
|
+
leftIcon: string;
|
|
1543
|
+
config: Record<string, any>;
|
|
1544
|
+
dataTest: string;
|
|
1545
|
+
icon: string;
|
|
1546
|
+
color?: string | undefined;
|
|
1547
|
+
disabled?: boolean | undefined;
|
|
1548
|
+
size?: string | undefined;
|
|
1549
|
+
square?: boolean | undefined;
|
|
1550
|
+
filled?: boolean | undefined;
|
|
1551
|
+
variant?: string | undefined;
|
|
1552
|
+
loading?: boolean | undefined;
|
|
1553
|
+
tag?: string | undefined;
|
|
1554
|
+
tabindex?: string | number | undefined;
|
|
1555
|
+
block?: boolean | undefined;
|
|
1556
|
+
round?: boolean | undefined;
|
|
1557
|
+
noRing?: boolean | undefined;
|
|
1558
|
+
$props: {
|
|
1559
|
+
readonly label?: string | undefined;
|
|
1560
|
+
readonly id?: string | undefined;
|
|
1561
|
+
readonly rightIcon?: string | undefined;
|
|
1562
|
+
readonly leftIcon?: string | undefined;
|
|
1563
|
+
readonly config?: Record<string, any> | undefined;
|
|
1564
|
+
readonly dataTest?: string | undefined;
|
|
1565
|
+
readonly icon?: string | undefined;
|
|
1566
|
+
readonly color?: string | undefined;
|
|
1567
|
+
readonly disabled?: boolean | undefined;
|
|
1568
|
+
readonly size?: string | undefined;
|
|
1569
|
+
readonly square?: boolean | undefined;
|
|
1570
|
+
readonly filled?: boolean | undefined;
|
|
1571
|
+
readonly variant?: string | undefined;
|
|
1572
|
+
readonly loading?: boolean | undefined;
|
|
1573
|
+
readonly tag?: string | undefined;
|
|
1574
|
+
readonly tabindex?: string | number | undefined;
|
|
1575
|
+
readonly block?: boolean | undefined;
|
|
1576
|
+
readonly round?: boolean | undefined;
|
|
1577
|
+
readonly noRing?: boolean | undefined;
|
|
1578
|
+
};
|
|
1579
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<{}> & Readonly<{}>, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
1580
|
+
P: {};
|
|
1581
|
+
B: {};
|
|
1582
|
+
D: {};
|
|
1583
|
+
C: {};
|
|
1584
|
+
M: {};
|
|
1585
|
+
Defaults: {};
|
|
1586
|
+
}, Readonly<{}> & Readonly<{}>, {
|
|
1587
|
+
buttonRef: import("vue").Ref<null, null>;
|
|
1588
|
+
label: string;
|
|
1589
|
+
id: string;
|
|
1590
|
+
rightIcon: string;
|
|
1591
|
+
leftIcon: string;
|
|
1592
|
+
config: Record<string, any>;
|
|
1593
|
+
dataTest: string;
|
|
1594
|
+
icon: string;
|
|
1595
|
+
color?: string | undefined;
|
|
1596
|
+
disabled?: boolean | undefined;
|
|
1597
|
+
size?: string | undefined;
|
|
1598
|
+
square?: boolean | undefined;
|
|
1599
|
+
filled?: boolean | undefined;
|
|
1600
|
+
variant?: string | undefined;
|
|
1601
|
+
loading?: boolean | undefined;
|
|
1602
|
+
tag?: string | undefined;
|
|
1603
|
+
tabindex?: string | number | undefined;
|
|
1604
|
+
block?: boolean | undefined;
|
|
1605
|
+
round?: boolean | undefined;
|
|
1606
|
+
noRing?: boolean | undefined;
|
|
1607
|
+
$props: {
|
|
1608
|
+
readonly label?: string | undefined;
|
|
1609
|
+
readonly id?: string | undefined;
|
|
1610
|
+
readonly rightIcon?: string | undefined;
|
|
1611
|
+
readonly leftIcon?: string | undefined;
|
|
1612
|
+
readonly config?: Record<string, any> | undefined;
|
|
1613
|
+
readonly dataTest?: string | undefined;
|
|
1614
|
+
readonly icon?: string | undefined;
|
|
1615
|
+
readonly color?: string | undefined;
|
|
1616
|
+
readonly disabled?: boolean | undefined;
|
|
1617
|
+
readonly size?: string | undefined;
|
|
1618
|
+
readonly square?: boolean | undefined;
|
|
1619
|
+
readonly filled?: boolean | undefined;
|
|
1620
|
+
readonly variant?: string | undefined;
|
|
1621
|
+
readonly loading?: boolean | undefined;
|
|
1622
|
+
readonly tag?: string | undefined;
|
|
1623
|
+
readonly tabindex?: string | number | undefined;
|
|
1624
|
+
readonly block?: boolean | undefined;
|
|
1625
|
+
readonly round?: boolean | undefined;
|
|
1626
|
+
readonly noRing?: boolean | undefined;
|
|
1627
|
+
};
|
|
1628
|
+
}, {}, {}, {}, {}>;
|
|
1629
|
+
__isFragment?: never;
|
|
1630
|
+
__isTeleport?: never;
|
|
1631
|
+
__isSuspense?: never;
|
|
1632
|
+
} & import("vue").ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
|
|
1633
|
+
buttonRef: import("vue").Ref<null, null>;
|
|
1634
|
+
label: string;
|
|
1635
|
+
id: string;
|
|
1636
|
+
rightIcon: string;
|
|
1637
|
+
leftIcon: string;
|
|
1638
|
+
config: Record<string, any>;
|
|
1639
|
+
dataTest: string;
|
|
1640
|
+
icon: string;
|
|
1641
|
+
color?: string | undefined;
|
|
1642
|
+
disabled?: boolean | undefined;
|
|
1643
|
+
size?: string | undefined;
|
|
1644
|
+
square?: boolean | undefined;
|
|
1645
|
+
filled?: boolean | undefined;
|
|
1646
|
+
variant?: string | undefined;
|
|
1647
|
+
loading?: boolean | undefined;
|
|
1648
|
+
tag?: string | undefined;
|
|
1649
|
+
tabindex?: string | number | undefined;
|
|
1650
|
+
block?: boolean | undefined;
|
|
1651
|
+
round?: boolean | undefined;
|
|
1652
|
+
noRing?: boolean | undefined;
|
|
1653
|
+
$props: {
|
|
1654
|
+
readonly label?: string | undefined;
|
|
1655
|
+
readonly id?: string | undefined;
|
|
1656
|
+
readonly rightIcon?: string | undefined;
|
|
1657
|
+
readonly leftIcon?: string | undefined;
|
|
1658
|
+
readonly config?: Record<string, any> | undefined;
|
|
1659
|
+
readonly dataTest?: string | undefined;
|
|
1660
|
+
readonly icon?: string | undefined;
|
|
1661
|
+
readonly color?: string | undefined;
|
|
1662
|
+
readonly disabled?: boolean | undefined;
|
|
1663
|
+
readonly size?: string | undefined;
|
|
1664
|
+
readonly square?: boolean | undefined;
|
|
1665
|
+
readonly filled?: boolean | undefined;
|
|
1666
|
+
readonly variant?: string | undefined;
|
|
1667
|
+
readonly loading?: boolean | undefined;
|
|
1668
|
+
readonly tag?: string | undefined;
|
|
1669
|
+
readonly tabindex?: string | number | undefined;
|
|
1670
|
+
readonly block?: boolean | undefined;
|
|
1671
|
+
readonly round?: boolean | undefined;
|
|
1672
|
+
readonly noRing?: boolean | undefined;
|
|
1673
|
+
};
|
|
1674
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
1675
|
+
$slots: {
|
|
1676
|
+
left?(_: {
|
|
1677
|
+
iconName: string;
|
|
1678
|
+
iconSize: any;
|
|
1679
|
+
iconColor: string | undefined;
|
|
1680
|
+
}): any;
|
|
1681
|
+
default?(_: {
|
|
1682
|
+
label: string;
|
|
1683
|
+
iconName: string;
|
|
1684
|
+
iconSize: any;
|
|
1685
|
+
iconColor: string | undefined;
|
|
1686
|
+
}): any;
|
|
1687
|
+
right?(_: {
|
|
1688
|
+
iconName: string;
|
|
1689
|
+
iconSize: any;
|
|
1690
|
+
iconColor: string | undefined;
|
|
1691
|
+
}): any;
|
|
1692
|
+
};
|
|
1693
|
+
});
|
|
1694
|
+
UIcon: import("vue").DefineComponent<{}, {
|
|
1695
|
+
$emit: (event: "click", ...args: any[]) => void;
|
|
1696
|
+
config: Record<string, any>;
|
|
1697
|
+
name: string;
|
|
1698
|
+
src: Record<string, any>;
|
|
1699
|
+
tooltip: string;
|
|
1700
|
+
tooltipSettings: Record<string, any>;
|
|
1701
|
+
dataTest: string;
|
|
1702
|
+
internal: boolean;
|
|
1703
|
+
color?: string | undefined;
|
|
1704
|
+
size?: string | undefined;
|
|
1705
|
+
interactive?: boolean | undefined;
|
|
1706
|
+
variant?: string | undefined;
|
|
1707
|
+
$props: {
|
|
1708
|
+
readonly config?: Record<string, any> | undefined;
|
|
1709
|
+
readonly name?: string | undefined;
|
|
1710
|
+
readonly src?: Record<string, any> | undefined;
|
|
1711
|
+
readonly tooltip?: string | undefined;
|
|
1712
|
+
readonly tooltipSettings?: Record<string, any> | undefined;
|
|
1713
|
+
readonly dataTest?: string | undefined;
|
|
1714
|
+
readonly internal?: boolean | undefined;
|
|
1715
|
+
readonly color?: string | undefined;
|
|
1716
|
+
readonly size?: string | undefined;
|
|
1717
|
+
readonly interactive?: boolean | undefined;
|
|
1718
|
+
readonly variant?: string | undefined;
|
|
1719
|
+
};
|
|
1720
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
1721
|
+
};
|
|
1722
|
+
setup(): {
|
|
1723
|
+
args: any;
|
|
1724
|
+
slots: any;
|
|
1725
|
+
};
|
|
1726
|
+
template: string;
|
|
1727
|
+
};
|
|
1728
|
+
export namespace NoRing {
|
|
1729
|
+
export namespace args_6 {
|
|
1730
|
+
let noRing: boolean;
|
|
1731
|
+
}
|
|
1732
|
+
export { args_6 as args };
|
|
1733
|
+
}
|
|
1734
|
+
export function Colors(args: any, { argTypes }?: {}): {
|
|
1735
|
+
components: {
|
|
1736
|
+
UButton: {
|
|
1737
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
|
|
1738
|
+
buttonRef: import("vue").Ref<null, null>;
|
|
1739
|
+
label: string;
|
|
1740
|
+
id: string;
|
|
1741
|
+
rightIcon: string;
|
|
1742
|
+
leftIcon: string;
|
|
1743
|
+
config: Record<string, any>;
|
|
1744
|
+
dataTest: string;
|
|
1745
|
+
icon: string;
|
|
1746
|
+
color?: string | undefined;
|
|
1747
|
+
disabled?: boolean | undefined;
|
|
1748
|
+
size?: string | undefined;
|
|
1749
|
+
square?: boolean | undefined;
|
|
1750
|
+
filled?: boolean | undefined;
|
|
1751
|
+
variant?: string | undefined;
|
|
1752
|
+
loading?: boolean | undefined;
|
|
1753
|
+
tag?: string | undefined;
|
|
1754
|
+
tabindex?: string | number | undefined;
|
|
1755
|
+
block?: boolean | undefined;
|
|
1756
|
+
round?: boolean | undefined;
|
|
1757
|
+
noRing?: boolean | undefined;
|
|
1758
|
+
$props: {
|
|
1759
|
+
readonly label?: string | undefined;
|
|
1760
|
+
readonly id?: string | undefined;
|
|
1761
|
+
readonly rightIcon?: string | undefined;
|
|
1762
|
+
readonly leftIcon?: string | undefined;
|
|
1763
|
+
readonly config?: Record<string, any> | undefined;
|
|
1764
|
+
readonly dataTest?: string | undefined;
|
|
1765
|
+
readonly icon?: string | undefined;
|
|
1766
|
+
readonly color?: string | undefined;
|
|
1767
|
+
readonly disabled?: boolean | undefined;
|
|
1768
|
+
readonly size?: string | undefined;
|
|
1769
|
+
readonly square?: boolean | undefined;
|
|
1770
|
+
readonly filled?: boolean | undefined;
|
|
1771
|
+
readonly variant?: string | undefined;
|
|
1772
|
+
readonly loading?: boolean | undefined;
|
|
1773
|
+
readonly tag?: string | undefined;
|
|
1774
|
+
readonly tabindex?: string | number | undefined;
|
|
1775
|
+
readonly block?: boolean | undefined;
|
|
1776
|
+
readonly round?: boolean | undefined;
|
|
1777
|
+
readonly noRing?: boolean | undefined;
|
|
1778
|
+
};
|
|
1779
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<{}> & Readonly<{}>, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
1780
|
+
P: {};
|
|
1781
|
+
B: {};
|
|
1782
|
+
D: {};
|
|
1783
|
+
C: {};
|
|
1784
|
+
M: {};
|
|
1785
|
+
Defaults: {};
|
|
1786
|
+
}, Readonly<{}> & Readonly<{}>, {
|
|
1787
|
+
buttonRef: import("vue").Ref<null, null>;
|
|
1788
|
+
label: string;
|
|
1789
|
+
id: string;
|
|
1790
|
+
rightIcon: string;
|
|
1791
|
+
leftIcon: string;
|
|
1792
|
+
config: Record<string, any>;
|
|
1793
|
+
dataTest: string;
|
|
1794
|
+
icon: string;
|
|
1795
|
+
color?: string | undefined;
|
|
1796
|
+
disabled?: boolean | undefined;
|
|
1797
|
+
size?: string | undefined;
|
|
1798
|
+
square?: boolean | undefined;
|
|
1799
|
+
filled?: boolean | undefined;
|
|
1800
|
+
variant?: string | undefined;
|
|
1801
|
+
loading?: boolean | undefined;
|
|
1802
|
+
tag?: string | undefined;
|
|
1803
|
+
tabindex?: string | number | undefined;
|
|
1804
|
+
block?: boolean | undefined;
|
|
1805
|
+
round?: boolean | undefined;
|
|
1806
|
+
noRing?: boolean | undefined;
|
|
1807
|
+
$props: {
|
|
1808
|
+
readonly label?: string | undefined;
|
|
1809
|
+
readonly id?: string | undefined;
|
|
1810
|
+
readonly rightIcon?: string | undefined;
|
|
1811
|
+
readonly leftIcon?: string | undefined;
|
|
1812
|
+
readonly config?: Record<string, any> | undefined;
|
|
1813
|
+
readonly dataTest?: string | undefined;
|
|
1814
|
+
readonly icon?: string | undefined;
|
|
1815
|
+
readonly color?: string | undefined;
|
|
1816
|
+
readonly disabled?: boolean | undefined;
|
|
1817
|
+
readonly size?: string | undefined;
|
|
1818
|
+
readonly square?: boolean | undefined;
|
|
1819
|
+
readonly filled?: boolean | undefined;
|
|
1820
|
+
readonly variant?: string | undefined;
|
|
1821
|
+
readonly loading?: boolean | undefined;
|
|
1822
|
+
readonly tag?: string | undefined;
|
|
1823
|
+
readonly tabindex?: string | number | undefined;
|
|
1824
|
+
readonly block?: boolean | undefined;
|
|
1825
|
+
readonly round?: boolean | undefined;
|
|
1826
|
+
readonly noRing?: boolean | undefined;
|
|
1827
|
+
};
|
|
1828
|
+
}, {}, {}, {}, {}>;
|
|
1829
|
+
__isFragment?: never;
|
|
1830
|
+
__isTeleport?: never;
|
|
1831
|
+
__isSuspense?: never;
|
|
1832
|
+
} & import("vue").ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
|
|
1833
|
+
buttonRef: import("vue").Ref<null, null>;
|
|
1834
|
+
label: string;
|
|
1835
|
+
id: string;
|
|
1836
|
+
rightIcon: string;
|
|
1837
|
+
leftIcon: string;
|
|
1838
|
+
config: Record<string, any>;
|
|
1839
|
+
dataTest: string;
|
|
1840
|
+
icon: string;
|
|
1841
|
+
color?: string | undefined;
|
|
1842
|
+
disabled?: boolean | undefined;
|
|
1843
|
+
size?: string | undefined;
|
|
1844
|
+
square?: boolean | undefined;
|
|
1845
|
+
filled?: boolean | undefined;
|
|
1846
|
+
variant?: string | undefined;
|
|
1847
|
+
loading?: boolean | undefined;
|
|
1848
|
+
tag?: string | undefined;
|
|
1849
|
+
tabindex?: string | number | undefined;
|
|
1850
|
+
block?: boolean | undefined;
|
|
1851
|
+
round?: boolean | undefined;
|
|
1852
|
+
noRing?: boolean | undefined;
|
|
1853
|
+
$props: {
|
|
1854
|
+
readonly label?: string | undefined;
|
|
1855
|
+
readonly id?: string | undefined;
|
|
1856
|
+
readonly rightIcon?: string | undefined;
|
|
1857
|
+
readonly leftIcon?: string | undefined;
|
|
1858
|
+
readonly config?: Record<string, any> | undefined;
|
|
1859
|
+
readonly dataTest?: string | undefined;
|
|
1860
|
+
readonly icon?: string | undefined;
|
|
1861
|
+
readonly color?: string | undefined;
|
|
1862
|
+
readonly disabled?: boolean | undefined;
|
|
1863
|
+
readonly size?: string | undefined;
|
|
1864
|
+
readonly square?: boolean | undefined;
|
|
1865
|
+
readonly filled?: boolean | undefined;
|
|
1866
|
+
readonly variant?: string | undefined;
|
|
1867
|
+
readonly loading?: boolean | undefined;
|
|
1868
|
+
readonly tag?: string | undefined;
|
|
1869
|
+
readonly tabindex?: string | number | undefined;
|
|
1870
|
+
readonly block?: boolean | undefined;
|
|
1871
|
+
readonly round?: boolean | undefined;
|
|
1872
|
+
readonly noRing?: boolean | undefined;
|
|
1873
|
+
};
|
|
1874
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
1875
|
+
$slots: {
|
|
1876
|
+
left?(_: {
|
|
1877
|
+
iconName: string;
|
|
1878
|
+
iconSize: any;
|
|
1879
|
+
iconColor: string | undefined;
|
|
1880
|
+
}): any;
|
|
1881
|
+
default?(_: {
|
|
1882
|
+
label: string;
|
|
1883
|
+
iconName: string;
|
|
1884
|
+
iconSize: any;
|
|
1885
|
+
iconColor: string | undefined;
|
|
1886
|
+
}): any;
|
|
1887
|
+
right?(_: {
|
|
1888
|
+
iconName: string;
|
|
1889
|
+
iconSize: any;
|
|
1890
|
+
iconColor: string | undefined;
|
|
1891
|
+
}): any;
|
|
1892
|
+
};
|
|
1893
|
+
});
|
|
1894
|
+
URow: {
|
|
1895
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
|
|
1896
|
+
config: Record<string, any>;
|
|
1897
|
+
dataTest: string;
|
|
1898
|
+
reverse?: boolean | undefined;
|
|
1899
|
+
content?: string | undefined;
|
|
1900
|
+
gap?: string | undefined;
|
|
1901
|
+
align?: string | undefined;
|
|
1902
|
+
justify?: string | undefined;
|
|
1903
|
+
wrap?: boolean | undefined;
|
|
1904
|
+
noMobile?: boolean | undefined;
|
|
1905
|
+
$props: {
|
|
1906
|
+
readonly config?: Record<string, any> | undefined;
|
|
1907
|
+
readonly dataTest?: string | undefined;
|
|
1908
|
+
readonly reverse?: boolean | undefined;
|
|
1909
|
+
readonly content?: string | undefined;
|
|
1910
|
+
readonly gap?: string | undefined;
|
|
1911
|
+
readonly align?: string | undefined;
|
|
1912
|
+
readonly justify?: string | undefined;
|
|
1913
|
+
readonly wrap?: boolean | undefined;
|
|
1914
|
+
readonly noMobile?: boolean | undefined;
|
|
1915
|
+
};
|
|
1916
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<{}> & Readonly<{}>, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
1917
|
+
P: {};
|
|
1918
|
+
B: {};
|
|
1919
|
+
D: {};
|
|
1920
|
+
C: {};
|
|
1921
|
+
M: {};
|
|
1922
|
+
Defaults: {};
|
|
1923
|
+
}, Readonly<{}> & Readonly<{}>, {
|
|
1924
|
+
config: Record<string, any>;
|
|
1925
|
+
dataTest: string;
|
|
1926
|
+
reverse?: boolean | undefined;
|
|
1927
|
+
content?: string | undefined;
|
|
1928
|
+
gap?: string | undefined;
|
|
1929
|
+
align?: string | undefined;
|
|
1930
|
+
justify?: string | undefined;
|
|
1931
|
+
wrap?: boolean | undefined;
|
|
1932
|
+
noMobile?: boolean | undefined;
|
|
1933
|
+
$props: {
|
|
1934
|
+
readonly config?: Record<string, any> | undefined;
|
|
1935
|
+
readonly dataTest?: string | undefined;
|
|
1936
|
+
readonly reverse?: boolean | undefined;
|
|
1937
|
+
readonly content?: string | undefined;
|
|
1938
|
+
readonly gap?: string | undefined;
|
|
1939
|
+
readonly align?: string | undefined;
|
|
1940
|
+
readonly justify?: string | undefined;
|
|
1941
|
+
readonly wrap?: boolean | undefined;
|
|
1942
|
+
readonly noMobile?: boolean | undefined;
|
|
1943
|
+
};
|
|
1944
|
+
}, {}, {}, {}, {}>;
|
|
1945
|
+
__isFragment?: never;
|
|
1946
|
+
__isTeleport?: never;
|
|
1947
|
+
__isSuspense?: never;
|
|
1948
|
+
} & import("vue").ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
|
|
1949
|
+
config: Record<string, any>;
|
|
1950
|
+
dataTest: string;
|
|
1951
|
+
reverse?: boolean | undefined;
|
|
1952
|
+
content?: string | undefined;
|
|
1953
|
+
gap?: string | undefined;
|
|
1954
|
+
align?: string | undefined;
|
|
1955
|
+
justify?: string | undefined;
|
|
1956
|
+
wrap?: boolean | undefined;
|
|
1957
|
+
noMobile?: boolean | undefined;
|
|
1958
|
+
$props: {
|
|
1959
|
+
readonly config?: Record<string, any> | undefined;
|
|
1960
|
+
readonly dataTest?: string | undefined;
|
|
1961
|
+
readonly reverse?: boolean | undefined;
|
|
1962
|
+
readonly content?: string | undefined;
|
|
1963
|
+
readonly gap?: string | undefined;
|
|
1964
|
+
readonly align?: string | undefined;
|
|
1965
|
+
readonly justify?: string | undefined;
|
|
1966
|
+
readonly wrap?: boolean | undefined;
|
|
1967
|
+
readonly noMobile?: boolean | undefined;
|
|
1968
|
+
};
|
|
1969
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
1970
|
+
$slots: {
|
|
1971
|
+
default?(_: {}): any;
|
|
1972
|
+
};
|
|
1973
|
+
});
|
|
1974
|
+
UCol: {
|
|
1975
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
|
|
1976
|
+
config: Record<string, any>;
|
|
1977
|
+
dataTest: string;
|
|
1978
|
+
reverse?: boolean | undefined;
|
|
1979
|
+
content?: string | undefined;
|
|
1980
|
+
gap?: string | undefined;
|
|
1981
|
+
align?: string | undefined;
|
|
1982
|
+
justify?: string | undefined;
|
|
1983
|
+
wrap?: boolean | undefined;
|
|
1984
|
+
$props: {
|
|
1985
|
+
readonly config?: Record<string, any> | undefined;
|
|
1986
|
+
readonly dataTest?: string | undefined;
|
|
1987
|
+
readonly reverse?: boolean | undefined;
|
|
1988
|
+
readonly content?: string | undefined;
|
|
1989
|
+
readonly gap?: string | undefined;
|
|
1990
|
+
readonly align?: string | undefined;
|
|
1991
|
+
readonly justify?: string | undefined;
|
|
1992
|
+
readonly wrap?: boolean | undefined;
|
|
1993
|
+
};
|
|
1994
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<{}> & Readonly<{}>, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
1995
|
+
P: {};
|
|
1996
|
+
B: {};
|
|
1997
|
+
D: {};
|
|
1998
|
+
C: {};
|
|
1999
|
+
M: {};
|
|
2000
|
+
Defaults: {};
|
|
2001
|
+
}, Readonly<{}> & Readonly<{}>, {
|
|
2002
|
+
config: Record<string, any>;
|
|
2003
|
+
dataTest: string;
|
|
2004
|
+
reverse?: boolean | undefined;
|
|
2005
|
+
content?: string | undefined;
|
|
2006
|
+
gap?: string | undefined;
|
|
2007
|
+
align?: string | undefined;
|
|
2008
|
+
justify?: string | undefined;
|
|
2009
|
+
wrap?: boolean | undefined;
|
|
2010
|
+
$props: {
|
|
2011
|
+
readonly config?: Record<string, any> | undefined;
|
|
2012
|
+
readonly dataTest?: string | undefined;
|
|
2013
|
+
readonly reverse?: boolean | undefined;
|
|
2014
|
+
readonly content?: string | undefined;
|
|
2015
|
+
readonly gap?: string | undefined;
|
|
2016
|
+
readonly align?: string | undefined;
|
|
2017
|
+
readonly justify?: string | undefined;
|
|
2018
|
+
readonly wrap?: boolean | undefined;
|
|
2019
|
+
};
|
|
2020
|
+
}, {}, {}, {}, {}>;
|
|
2021
|
+
__isFragment?: never;
|
|
2022
|
+
__isTeleport?: never;
|
|
2023
|
+
__isSuspense?: never;
|
|
2024
|
+
} & import("vue").ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
|
|
2025
|
+
config: Record<string, any>;
|
|
2026
|
+
dataTest: string;
|
|
2027
|
+
reverse?: boolean | undefined;
|
|
2028
|
+
content?: string | undefined;
|
|
2029
|
+
gap?: string | undefined;
|
|
2030
|
+
align?: string | undefined;
|
|
2031
|
+
justify?: string | undefined;
|
|
2032
|
+
wrap?: boolean | undefined;
|
|
2033
|
+
$props: {
|
|
2034
|
+
readonly config?: Record<string, any> | undefined;
|
|
2035
|
+
readonly dataTest?: string | undefined;
|
|
2036
|
+
readonly reverse?: boolean | undefined;
|
|
2037
|
+
readonly content?: string | undefined;
|
|
2038
|
+
readonly gap?: string | undefined;
|
|
2039
|
+
readonly align?: string | undefined;
|
|
2040
|
+
readonly justify?: string | undefined;
|
|
2041
|
+
readonly wrap?: boolean | undefined;
|
|
2042
|
+
};
|
|
2043
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
2044
|
+
$slots: {
|
|
2045
|
+
default?(_: {}): any;
|
|
2046
|
+
};
|
|
2047
|
+
});
|
|
2048
|
+
};
|
|
2049
|
+
setup(): {
|
|
2050
|
+
args: any;
|
|
2051
|
+
variants: any;
|
|
2052
|
+
colors: any;
|
|
2053
|
+
};
|
|
2054
|
+
template: string;
|
|
2055
|
+
};
|
|
2056
|
+
export namespace Colors {
|
|
2057
|
+
let args_7: {};
|
|
2058
|
+
export { args_7 as args };
|
|
2059
|
+
}
|
|
2060
|
+
export function LeftIcon(args: any): {
|
|
2061
|
+
components: {
|
|
2062
|
+
UButton: {
|
|
2063
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
|
|
2064
|
+
buttonRef: import("vue").Ref<null, null>;
|
|
2065
|
+
label: string;
|
|
2066
|
+
id: string;
|
|
2067
|
+
rightIcon: string;
|
|
2068
|
+
leftIcon: string;
|
|
2069
|
+
config: Record<string, any>;
|
|
2070
|
+
dataTest: string;
|
|
2071
|
+
icon: string;
|
|
2072
|
+
color?: string | undefined;
|
|
2073
|
+
disabled?: boolean | undefined;
|
|
2074
|
+
size?: string | undefined;
|
|
2075
|
+
square?: boolean | undefined;
|
|
2076
|
+
filled?: boolean | undefined;
|
|
2077
|
+
variant?: string | undefined;
|
|
2078
|
+
loading?: boolean | undefined;
|
|
2079
|
+
tag?: string | undefined;
|
|
2080
|
+
tabindex?: string | number | undefined;
|
|
2081
|
+
block?: boolean | undefined;
|
|
2082
|
+
round?: boolean | undefined;
|
|
2083
|
+
noRing?: boolean | undefined;
|
|
2084
|
+
$props: {
|
|
2085
|
+
readonly label?: string | undefined;
|
|
2086
|
+
readonly id?: string | undefined;
|
|
2087
|
+
readonly rightIcon?: string | undefined;
|
|
2088
|
+
readonly leftIcon?: string | undefined;
|
|
2089
|
+
readonly config?: Record<string, any> | undefined;
|
|
2090
|
+
readonly dataTest?: string | undefined;
|
|
2091
|
+
readonly icon?: string | undefined;
|
|
2092
|
+
readonly color?: string | undefined;
|
|
2093
|
+
readonly disabled?: boolean | undefined;
|
|
2094
|
+
readonly size?: string | undefined;
|
|
2095
|
+
readonly square?: boolean | undefined;
|
|
2096
|
+
readonly filled?: boolean | undefined;
|
|
2097
|
+
readonly variant?: string | undefined;
|
|
2098
|
+
readonly loading?: boolean | undefined;
|
|
2099
|
+
readonly tag?: string | undefined;
|
|
2100
|
+
readonly tabindex?: string | number | undefined;
|
|
2101
|
+
readonly block?: boolean | undefined;
|
|
2102
|
+
readonly round?: boolean | undefined;
|
|
2103
|
+
readonly noRing?: boolean | undefined;
|
|
2104
|
+
};
|
|
2105
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<{}> & Readonly<{}>, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
2106
|
+
P: {};
|
|
2107
|
+
B: {};
|
|
2108
|
+
D: {};
|
|
2109
|
+
C: {};
|
|
2110
|
+
M: {};
|
|
2111
|
+
Defaults: {};
|
|
2112
|
+
}, Readonly<{}> & Readonly<{}>, {
|
|
2113
|
+
buttonRef: import("vue").Ref<null, null>;
|
|
2114
|
+
label: string;
|
|
2115
|
+
id: string;
|
|
2116
|
+
rightIcon: string;
|
|
2117
|
+
leftIcon: string;
|
|
2118
|
+
config: Record<string, any>;
|
|
2119
|
+
dataTest: string;
|
|
2120
|
+
icon: string;
|
|
2121
|
+
color?: string | undefined;
|
|
2122
|
+
disabled?: boolean | undefined;
|
|
2123
|
+
size?: string | undefined;
|
|
2124
|
+
square?: boolean | undefined;
|
|
2125
|
+
filled?: boolean | undefined;
|
|
2126
|
+
variant?: string | undefined;
|
|
2127
|
+
loading?: boolean | undefined;
|
|
2128
|
+
tag?: string | undefined;
|
|
2129
|
+
tabindex?: string | number | undefined;
|
|
2130
|
+
block?: boolean | undefined;
|
|
2131
|
+
round?: boolean | undefined;
|
|
2132
|
+
noRing?: boolean | undefined;
|
|
2133
|
+
$props: {
|
|
2134
|
+
readonly label?: string | undefined;
|
|
2135
|
+
readonly id?: string | undefined;
|
|
2136
|
+
readonly rightIcon?: string | undefined;
|
|
2137
|
+
readonly leftIcon?: string | undefined;
|
|
2138
|
+
readonly config?: Record<string, any> | undefined;
|
|
2139
|
+
readonly dataTest?: string | undefined;
|
|
2140
|
+
readonly icon?: string | undefined;
|
|
2141
|
+
readonly color?: string | undefined;
|
|
2142
|
+
readonly disabled?: boolean | undefined;
|
|
2143
|
+
readonly size?: string | undefined;
|
|
2144
|
+
readonly square?: boolean | undefined;
|
|
2145
|
+
readonly filled?: boolean | undefined;
|
|
2146
|
+
readonly variant?: string | undefined;
|
|
2147
|
+
readonly loading?: boolean | undefined;
|
|
2148
|
+
readonly tag?: string | undefined;
|
|
2149
|
+
readonly tabindex?: string | number | undefined;
|
|
2150
|
+
readonly block?: boolean | undefined;
|
|
2151
|
+
readonly round?: boolean | undefined;
|
|
2152
|
+
readonly noRing?: boolean | undefined;
|
|
2153
|
+
};
|
|
2154
|
+
}, {}, {}, {}, {}>;
|
|
2155
|
+
__isFragment?: never;
|
|
2156
|
+
__isTeleport?: never;
|
|
2157
|
+
__isSuspense?: never;
|
|
2158
|
+
} & import("vue").ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
|
|
2159
|
+
buttonRef: import("vue").Ref<null, null>;
|
|
2160
|
+
label: string;
|
|
2161
|
+
id: string;
|
|
2162
|
+
rightIcon: string;
|
|
2163
|
+
leftIcon: string;
|
|
2164
|
+
config: Record<string, any>;
|
|
2165
|
+
dataTest: string;
|
|
2166
|
+
icon: string;
|
|
2167
|
+
color?: string | undefined;
|
|
2168
|
+
disabled?: boolean | undefined;
|
|
2169
|
+
size?: string | undefined;
|
|
2170
|
+
square?: boolean | undefined;
|
|
2171
|
+
filled?: boolean | undefined;
|
|
2172
|
+
variant?: string | undefined;
|
|
2173
|
+
loading?: boolean | undefined;
|
|
2174
|
+
tag?: string | undefined;
|
|
2175
|
+
tabindex?: string | number | undefined;
|
|
2176
|
+
block?: boolean | undefined;
|
|
2177
|
+
round?: boolean | undefined;
|
|
2178
|
+
noRing?: boolean | undefined;
|
|
2179
|
+
$props: {
|
|
2180
|
+
readonly label?: string | undefined;
|
|
2181
|
+
readonly id?: string | undefined;
|
|
2182
|
+
readonly rightIcon?: string | undefined;
|
|
2183
|
+
readonly leftIcon?: string | undefined;
|
|
2184
|
+
readonly config?: Record<string, any> | undefined;
|
|
2185
|
+
readonly dataTest?: string | undefined;
|
|
2186
|
+
readonly icon?: string | undefined;
|
|
2187
|
+
readonly color?: string | undefined;
|
|
2188
|
+
readonly disabled?: boolean | undefined;
|
|
2189
|
+
readonly size?: string | undefined;
|
|
2190
|
+
readonly square?: boolean | undefined;
|
|
2191
|
+
readonly filled?: boolean | undefined;
|
|
2192
|
+
readonly variant?: string | undefined;
|
|
2193
|
+
readonly loading?: boolean | undefined;
|
|
2194
|
+
readonly tag?: string | undefined;
|
|
2195
|
+
readonly tabindex?: string | number | undefined;
|
|
2196
|
+
readonly block?: boolean | undefined;
|
|
2197
|
+
readonly round?: boolean | undefined;
|
|
2198
|
+
readonly noRing?: boolean | undefined;
|
|
2199
|
+
};
|
|
2200
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
2201
|
+
$slots: {
|
|
2202
|
+
left?(_: {
|
|
2203
|
+
iconName: string;
|
|
2204
|
+
iconSize: any;
|
|
2205
|
+
iconColor: string | undefined;
|
|
2206
|
+
}): any;
|
|
2207
|
+
default?(_: {
|
|
2208
|
+
label: string;
|
|
2209
|
+
iconName: string;
|
|
2210
|
+
iconSize: any;
|
|
2211
|
+
iconColor: string | undefined;
|
|
2212
|
+
}): any;
|
|
2213
|
+
right?(_: {
|
|
2214
|
+
iconName: string;
|
|
2215
|
+
iconSize: any;
|
|
2216
|
+
iconColor: string | undefined;
|
|
2217
|
+
}): any;
|
|
2218
|
+
};
|
|
2219
|
+
});
|
|
2220
|
+
UIcon: import("vue").DefineComponent<{}, {
|
|
2221
|
+
$emit: (event: "click", ...args: any[]) => void;
|
|
2222
|
+
config: Record<string, any>;
|
|
2223
|
+
name: string;
|
|
2224
|
+
src: Record<string, any>;
|
|
2225
|
+
tooltip: string;
|
|
2226
|
+
tooltipSettings: Record<string, any>;
|
|
2227
|
+
dataTest: string;
|
|
2228
|
+
internal: boolean;
|
|
2229
|
+
color?: string | undefined;
|
|
2230
|
+
size?: string | undefined;
|
|
2231
|
+
interactive?: boolean | undefined;
|
|
2232
|
+
variant?: string | undefined;
|
|
2233
|
+
$props: {
|
|
2234
|
+
readonly config?: Record<string, any> | undefined;
|
|
2235
|
+
readonly name?: string | undefined;
|
|
2236
|
+
readonly src?: Record<string, any> | undefined;
|
|
2237
|
+
readonly tooltip?: string | undefined;
|
|
2238
|
+
readonly tooltipSettings?: Record<string, any> | undefined;
|
|
2239
|
+
readonly dataTest?: string | undefined;
|
|
2240
|
+
readonly internal?: boolean | undefined;
|
|
2241
|
+
readonly color?: string | undefined;
|
|
2242
|
+
readonly size?: string | undefined;
|
|
2243
|
+
readonly interactive?: boolean | undefined;
|
|
2244
|
+
readonly variant?: string | undefined;
|
|
2245
|
+
};
|
|
2246
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
2247
|
+
};
|
|
2248
|
+
setup(): {
|
|
2249
|
+
args: any;
|
|
2250
|
+
slots: any;
|
|
2251
|
+
};
|
|
2252
|
+
template: string;
|
|
2253
|
+
};
|
|
2254
|
+
export namespace LeftIcon {
|
|
2255
|
+
export namespace args_8 {
|
|
2256
|
+
let leftIcon: string;
|
|
2257
|
+
}
|
|
2258
|
+
export { args_8 as args };
|
|
2259
|
+
}
|
|
2260
|
+
export function RightIcon(args: any): {
|
|
2261
|
+
components: {
|
|
2262
|
+
UButton: {
|
|
2263
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
|
|
2264
|
+
buttonRef: import("vue").Ref<null, null>;
|
|
2265
|
+
label: string;
|
|
2266
|
+
id: string;
|
|
2267
|
+
rightIcon: string;
|
|
2268
|
+
leftIcon: string;
|
|
2269
|
+
config: Record<string, any>;
|
|
2270
|
+
dataTest: string;
|
|
2271
|
+
icon: string;
|
|
2272
|
+
color?: string | undefined;
|
|
2273
|
+
disabled?: boolean | undefined;
|
|
2274
|
+
size?: string | undefined;
|
|
2275
|
+
square?: boolean | undefined;
|
|
2276
|
+
filled?: boolean | undefined;
|
|
2277
|
+
variant?: string | undefined;
|
|
2278
|
+
loading?: boolean | undefined;
|
|
2279
|
+
tag?: string | undefined;
|
|
2280
|
+
tabindex?: string | number | undefined;
|
|
2281
|
+
block?: boolean | undefined;
|
|
2282
|
+
round?: boolean | undefined;
|
|
2283
|
+
noRing?: boolean | undefined;
|
|
2284
|
+
$props: {
|
|
2285
|
+
readonly label?: string | undefined;
|
|
2286
|
+
readonly id?: string | undefined;
|
|
2287
|
+
readonly rightIcon?: string | undefined;
|
|
2288
|
+
readonly leftIcon?: string | undefined;
|
|
2289
|
+
readonly config?: Record<string, any> | undefined;
|
|
2290
|
+
readonly dataTest?: string | undefined;
|
|
2291
|
+
readonly icon?: string | undefined;
|
|
2292
|
+
readonly color?: string | undefined;
|
|
2293
|
+
readonly disabled?: boolean | undefined;
|
|
2294
|
+
readonly size?: string | undefined;
|
|
2295
|
+
readonly square?: boolean | undefined;
|
|
2296
|
+
readonly filled?: boolean | undefined;
|
|
2297
|
+
readonly variant?: string | undefined;
|
|
2298
|
+
readonly loading?: boolean | undefined;
|
|
2299
|
+
readonly tag?: string | undefined;
|
|
2300
|
+
readonly tabindex?: string | number | undefined;
|
|
2301
|
+
readonly block?: boolean | undefined;
|
|
2302
|
+
readonly round?: boolean | undefined;
|
|
2303
|
+
readonly noRing?: boolean | undefined;
|
|
2304
|
+
};
|
|
2305
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<{}> & Readonly<{}>, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
2306
|
+
P: {};
|
|
2307
|
+
B: {};
|
|
2308
|
+
D: {};
|
|
2309
|
+
C: {};
|
|
2310
|
+
M: {};
|
|
2311
|
+
Defaults: {};
|
|
2312
|
+
}, Readonly<{}> & Readonly<{}>, {
|
|
2313
|
+
buttonRef: import("vue").Ref<null, null>;
|
|
2314
|
+
label: string;
|
|
2315
|
+
id: string;
|
|
2316
|
+
rightIcon: string;
|
|
2317
|
+
leftIcon: string;
|
|
2318
|
+
config: Record<string, any>;
|
|
2319
|
+
dataTest: string;
|
|
2320
|
+
icon: string;
|
|
2321
|
+
color?: string | undefined;
|
|
2322
|
+
disabled?: boolean | undefined;
|
|
2323
|
+
size?: string | undefined;
|
|
2324
|
+
square?: boolean | undefined;
|
|
2325
|
+
filled?: boolean | undefined;
|
|
2326
|
+
variant?: string | undefined;
|
|
2327
|
+
loading?: boolean | undefined;
|
|
2328
|
+
tag?: string | undefined;
|
|
2329
|
+
tabindex?: string | number | undefined;
|
|
2330
|
+
block?: boolean | undefined;
|
|
2331
|
+
round?: boolean | undefined;
|
|
2332
|
+
noRing?: boolean | undefined;
|
|
2333
|
+
$props: {
|
|
2334
|
+
readonly label?: string | undefined;
|
|
2335
|
+
readonly id?: string | undefined;
|
|
2336
|
+
readonly rightIcon?: string | undefined;
|
|
2337
|
+
readonly leftIcon?: string | undefined;
|
|
2338
|
+
readonly config?: Record<string, any> | undefined;
|
|
2339
|
+
readonly dataTest?: string | undefined;
|
|
2340
|
+
readonly icon?: string | undefined;
|
|
2341
|
+
readonly color?: string | undefined;
|
|
2342
|
+
readonly disabled?: boolean | undefined;
|
|
2343
|
+
readonly size?: string | undefined;
|
|
2344
|
+
readonly square?: boolean | undefined;
|
|
2345
|
+
readonly filled?: boolean | undefined;
|
|
2346
|
+
readonly variant?: string | undefined;
|
|
2347
|
+
readonly loading?: boolean | undefined;
|
|
2348
|
+
readonly tag?: string | undefined;
|
|
2349
|
+
readonly tabindex?: string | number | undefined;
|
|
2350
|
+
readonly block?: boolean | undefined;
|
|
2351
|
+
readonly round?: boolean | undefined;
|
|
2352
|
+
readonly noRing?: boolean | undefined;
|
|
2353
|
+
};
|
|
2354
|
+
}, {}, {}, {}, {}>;
|
|
2355
|
+
__isFragment?: never;
|
|
2356
|
+
__isTeleport?: never;
|
|
2357
|
+
__isSuspense?: never;
|
|
2358
|
+
} & import("vue").ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
|
|
2359
|
+
buttonRef: import("vue").Ref<null, null>;
|
|
2360
|
+
label: string;
|
|
2361
|
+
id: string;
|
|
2362
|
+
rightIcon: string;
|
|
2363
|
+
leftIcon: string;
|
|
2364
|
+
config: Record<string, any>;
|
|
2365
|
+
dataTest: string;
|
|
2366
|
+
icon: string;
|
|
2367
|
+
color?: string | undefined;
|
|
2368
|
+
disabled?: boolean | undefined;
|
|
2369
|
+
size?: string | undefined;
|
|
2370
|
+
square?: boolean | undefined;
|
|
2371
|
+
filled?: boolean | undefined;
|
|
2372
|
+
variant?: string | undefined;
|
|
2373
|
+
loading?: boolean | undefined;
|
|
2374
|
+
tag?: string | undefined;
|
|
2375
|
+
tabindex?: string | number | undefined;
|
|
2376
|
+
block?: boolean | undefined;
|
|
2377
|
+
round?: boolean | undefined;
|
|
2378
|
+
noRing?: boolean | undefined;
|
|
2379
|
+
$props: {
|
|
2380
|
+
readonly label?: string | undefined;
|
|
2381
|
+
readonly id?: string | undefined;
|
|
2382
|
+
readonly rightIcon?: string | undefined;
|
|
2383
|
+
readonly leftIcon?: string | undefined;
|
|
2384
|
+
readonly config?: Record<string, any> | undefined;
|
|
2385
|
+
readonly dataTest?: string | undefined;
|
|
2386
|
+
readonly icon?: string | undefined;
|
|
2387
|
+
readonly color?: string | undefined;
|
|
2388
|
+
readonly disabled?: boolean | undefined;
|
|
2389
|
+
readonly size?: string | undefined;
|
|
2390
|
+
readonly square?: boolean | undefined;
|
|
2391
|
+
readonly filled?: boolean | undefined;
|
|
2392
|
+
readonly variant?: string | undefined;
|
|
2393
|
+
readonly loading?: boolean | undefined;
|
|
2394
|
+
readonly tag?: string | undefined;
|
|
2395
|
+
readonly tabindex?: string | number | undefined;
|
|
2396
|
+
readonly block?: boolean | undefined;
|
|
2397
|
+
readonly round?: boolean | undefined;
|
|
2398
|
+
readonly noRing?: boolean | undefined;
|
|
2399
|
+
};
|
|
2400
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
2401
|
+
$slots: {
|
|
2402
|
+
left?(_: {
|
|
2403
|
+
iconName: string;
|
|
2404
|
+
iconSize: any;
|
|
2405
|
+
iconColor: string | undefined;
|
|
2406
|
+
}): any;
|
|
2407
|
+
default?(_: {
|
|
2408
|
+
label: string;
|
|
2409
|
+
iconName: string;
|
|
2410
|
+
iconSize: any;
|
|
2411
|
+
iconColor: string | undefined;
|
|
2412
|
+
}): any;
|
|
2413
|
+
right?(_: {
|
|
2414
|
+
iconName: string;
|
|
2415
|
+
iconSize: any;
|
|
2416
|
+
iconColor: string | undefined;
|
|
2417
|
+
}): any;
|
|
2418
|
+
};
|
|
2419
|
+
});
|
|
2420
|
+
UIcon: import("vue").DefineComponent<{}, {
|
|
2421
|
+
$emit: (event: "click", ...args: any[]) => void;
|
|
2422
|
+
config: Record<string, any>;
|
|
2423
|
+
name: string;
|
|
2424
|
+
src: Record<string, any>;
|
|
2425
|
+
tooltip: string;
|
|
2426
|
+
tooltipSettings: Record<string, any>;
|
|
2427
|
+
dataTest: string;
|
|
2428
|
+
internal: boolean;
|
|
2429
|
+
color?: string | undefined;
|
|
2430
|
+
size?: string | undefined;
|
|
2431
|
+
interactive?: boolean | undefined;
|
|
2432
|
+
variant?: string | undefined;
|
|
2433
|
+
$props: {
|
|
2434
|
+
readonly config?: Record<string, any> | undefined;
|
|
2435
|
+
readonly name?: string | undefined;
|
|
2436
|
+
readonly src?: Record<string, any> | undefined;
|
|
2437
|
+
readonly tooltip?: string | undefined;
|
|
2438
|
+
readonly tooltipSettings?: Record<string, any> | undefined;
|
|
2439
|
+
readonly dataTest?: string | undefined;
|
|
2440
|
+
readonly internal?: boolean | undefined;
|
|
2441
|
+
readonly color?: string | undefined;
|
|
2442
|
+
readonly size?: string | undefined;
|
|
2443
|
+
readonly interactive?: boolean | undefined;
|
|
2444
|
+
readonly variant?: string | undefined;
|
|
2445
|
+
};
|
|
2446
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
2447
|
+
};
|
|
2448
|
+
setup(): {
|
|
2449
|
+
args: any;
|
|
2450
|
+
slots: any;
|
|
2451
|
+
};
|
|
2452
|
+
template: string;
|
|
2453
|
+
};
|
|
2454
|
+
export namespace RightIcon {
|
|
2455
|
+
export namespace args_9 {
|
|
2456
|
+
let rightIcon: string;
|
|
2457
|
+
}
|
|
2458
|
+
export { args_9 as args };
|
|
2459
|
+
}
|
|
2460
|
+
export function SlotDefault(args: any): {
|
|
2461
|
+
components: {
|
|
2462
|
+
UButton: {
|
|
2463
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
|
|
2464
|
+
buttonRef: import("vue").Ref<null, null>;
|
|
2465
|
+
label: string;
|
|
2466
|
+
id: string;
|
|
2467
|
+
rightIcon: string;
|
|
2468
|
+
leftIcon: string;
|
|
2469
|
+
config: Record<string, any>;
|
|
2470
|
+
dataTest: string;
|
|
2471
|
+
icon: string;
|
|
2472
|
+
color?: string | undefined;
|
|
2473
|
+
disabled?: boolean | undefined;
|
|
2474
|
+
size?: string | undefined;
|
|
2475
|
+
square?: boolean | undefined;
|
|
2476
|
+
filled?: boolean | undefined;
|
|
2477
|
+
variant?: string | undefined;
|
|
2478
|
+
loading?: boolean | undefined;
|
|
2479
|
+
tag?: string | undefined;
|
|
2480
|
+
tabindex?: string | number | undefined;
|
|
2481
|
+
block?: boolean | undefined;
|
|
2482
|
+
round?: boolean | undefined;
|
|
2483
|
+
noRing?: boolean | undefined;
|
|
2484
|
+
$props: {
|
|
2485
|
+
readonly label?: string | undefined;
|
|
2486
|
+
readonly id?: string | undefined;
|
|
2487
|
+
readonly rightIcon?: string | undefined;
|
|
2488
|
+
readonly leftIcon?: string | undefined;
|
|
2489
|
+
readonly config?: Record<string, any> | undefined;
|
|
2490
|
+
readonly dataTest?: string | undefined;
|
|
2491
|
+
readonly icon?: string | undefined;
|
|
2492
|
+
readonly color?: string | undefined;
|
|
2493
|
+
readonly disabled?: boolean | undefined;
|
|
2494
|
+
readonly size?: string | undefined;
|
|
2495
|
+
readonly square?: boolean | undefined;
|
|
2496
|
+
readonly filled?: boolean | undefined;
|
|
2497
|
+
readonly variant?: string | undefined;
|
|
2498
|
+
readonly loading?: boolean | undefined;
|
|
2499
|
+
readonly tag?: string | undefined;
|
|
2500
|
+
readonly tabindex?: string | number | undefined;
|
|
2501
|
+
readonly block?: boolean | undefined;
|
|
2502
|
+
readonly round?: boolean | undefined;
|
|
2503
|
+
readonly noRing?: boolean | undefined;
|
|
2504
|
+
};
|
|
2505
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<{}> & Readonly<{}>, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
2506
|
+
P: {};
|
|
2507
|
+
B: {};
|
|
2508
|
+
D: {};
|
|
2509
|
+
C: {};
|
|
2510
|
+
M: {};
|
|
2511
|
+
Defaults: {};
|
|
2512
|
+
}, Readonly<{}> & Readonly<{}>, {
|
|
2513
|
+
buttonRef: import("vue").Ref<null, null>;
|
|
2514
|
+
label: string;
|
|
2515
|
+
id: string;
|
|
2516
|
+
rightIcon: string;
|
|
2517
|
+
leftIcon: string;
|
|
2518
|
+
config: Record<string, any>;
|
|
2519
|
+
dataTest: string;
|
|
2520
|
+
icon: string;
|
|
2521
|
+
color?: string | undefined;
|
|
2522
|
+
disabled?: boolean | undefined;
|
|
2523
|
+
size?: string | undefined;
|
|
2524
|
+
square?: boolean | undefined;
|
|
2525
|
+
filled?: boolean | undefined;
|
|
2526
|
+
variant?: string | undefined;
|
|
2527
|
+
loading?: boolean | undefined;
|
|
2528
|
+
tag?: string | undefined;
|
|
2529
|
+
tabindex?: string | number | undefined;
|
|
2530
|
+
block?: boolean | undefined;
|
|
2531
|
+
round?: boolean | undefined;
|
|
2532
|
+
noRing?: boolean | undefined;
|
|
2533
|
+
$props: {
|
|
2534
|
+
readonly label?: string | undefined;
|
|
2535
|
+
readonly id?: string | undefined;
|
|
2536
|
+
readonly rightIcon?: string | undefined;
|
|
2537
|
+
readonly leftIcon?: string | undefined;
|
|
2538
|
+
readonly config?: Record<string, any> | undefined;
|
|
2539
|
+
readonly dataTest?: string | undefined;
|
|
2540
|
+
readonly icon?: string | undefined;
|
|
2541
|
+
readonly color?: string | undefined;
|
|
2542
|
+
readonly disabled?: boolean | undefined;
|
|
2543
|
+
readonly size?: string | undefined;
|
|
2544
|
+
readonly square?: boolean | undefined;
|
|
2545
|
+
readonly filled?: boolean | undefined;
|
|
2546
|
+
readonly variant?: string | undefined;
|
|
2547
|
+
readonly loading?: boolean | undefined;
|
|
2548
|
+
readonly tag?: string | undefined;
|
|
2549
|
+
readonly tabindex?: string | number | undefined;
|
|
2550
|
+
readonly block?: boolean | undefined;
|
|
2551
|
+
readonly round?: boolean | undefined;
|
|
2552
|
+
readonly noRing?: boolean | undefined;
|
|
2553
|
+
};
|
|
2554
|
+
}, {}, {}, {}, {}>;
|
|
2555
|
+
__isFragment?: never;
|
|
2556
|
+
__isTeleport?: never;
|
|
2557
|
+
__isSuspense?: never;
|
|
2558
|
+
} & import("vue").ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
|
|
2559
|
+
buttonRef: import("vue").Ref<null, null>;
|
|
2560
|
+
label: string;
|
|
2561
|
+
id: string;
|
|
2562
|
+
rightIcon: string;
|
|
2563
|
+
leftIcon: string;
|
|
2564
|
+
config: Record<string, any>;
|
|
2565
|
+
dataTest: string;
|
|
2566
|
+
icon: string;
|
|
2567
|
+
color?: string | undefined;
|
|
2568
|
+
disabled?: boolean | undefined;
|
|
2569
|
+
size?: string | undefined;
|
|
2570
|
+
square?: boolean | undefined;
|
|
2571
|
+
filled?: boolean | undefined;
|
|
2572
|
+
variant?: string | undefined;
|
|
2573
|
+
loading?: boolean | undefined;
|
|
2574
|
+
tag?: string | undefined;
|
|
2575
|
+
tabindex?: string | number | undefined;
|
|
2576
|
+
block?: boolean | undefined;
|
|
2577
|
+
round?: boolean | undefined;
|
|
2578
|
+
noRing?: boolean | undefined;
|
|
2579
|
+
$props: {
|
|
2580
|
+
readonly label?: string | undefined;
|
|
2581
|
+
readonly id?: string | undefined;
|
|
2582
|
+
readonly rightIcon?: string | undefined;
|
|
2583
|
+
readonly leftIcon?: string | undefined;
|
|
2584
|
+
readonly config?: Record<string, any> | undefined;
|
|
2585
|
+
readonly dataTest?: string | undefined;
|
|
2586
|
+
readonly icon?: string | undefined;
|
|
2587
|
+
readonly color?: string | undefined;
|
|
2588
|
+
readonly disabled?: boolean | undefined;
|
|
2589
|
+
readonly size?: string | undefined;
|
|
2590
|
+
readonly square?: boolean | undefined;
|
|
2591
|
+
readonly filled?: boolean | undefined;
|
|
2592
|
+
readonly variant?: string | undefined;
|
|
2593
|
+
readonly loading?: boolean | undefined;
|
|
2594
|
+
readonly tag?: string | undefined;
|
|
2595
|
+
readonly tabindex?: string | number | undefined;
|
|
2596
|
+
readonly block?: boolean | undefined;
|
|
2597
|
+
readonly round?: boolean | undefined;
|
|
2598
|
+
readonly noRing?: boolean | undefined;
|
|
2599
|
+
};
|
|
2600
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
2601
|
+
$slots: {
|
|
2602
|
+
left?(_: {
|
|
2603
|
+
iconName: string;
|
|
2604
|
+
iconSize: any;
|
|
2605
|
+
iconColor: string | undefined;
|
|
2606
|
+
}): any;
|
|
2607
|
+
default?(_: {
|
|
2608
|
+
label: string;
|
|
2609
|
+
iconName: string;
|
|
2610
|
+
iconSize: any;
|
|
2611
|
+
iconColor: string | undefined;
|
|
2612
|
+
}): any;
|
|
2613
|
+
right?(_: {
|
|
2614
|
+
iconName: string;
|
|
2615
|
+
iconSize: any;
|
|
2616
|
+
iconColor: string | undefined;
|
|
2617
|
+
}): any;
|
|
2618
|
+
};
|
|
2619
|
+
});
|
|
2620
|
+
UIcon: import("vue").DefineComponent<{}, {
|
|
2621
|
+
$emit: (event: "click", ...args: any[]) => void;
|
|
2622
|
+
config: Record<string, any>;
|
|
2623
|
+
name: string;
|
|
2624
|
+
src: Record<string, any>;
|
|
2625
|
+
tooltip: string;
|
|
2626
|
+
tooltipSettings: Record<string, any>;
|
|
2627
|
+
dataTest: string;
|
|
2628
|
+
internal: boolean;
|
|
2629
|
+
color?: string | undefined;
|
|
2630
|
+
size?: string | undefined;
|
|
2631
|
+
interactive?: boolean | undefined;
|
|
2632
|
+
variant?: string | undefined;
|
|
2633
|
+
$props: {
|
|
2634
|
+
readonly config?: Record<string, any> | undefined;
|
|
2635
|
+
readonly name?: string | undefined;
|
|
2636
|
+
readonly src?: Record<string, any> | undefined;
|
|
2637
|
+
readonly tooltip?: string | undefined;
|
|
2638
|
+
readonly tooltipSettings?: Record<string, any> | undefined;
|
|
2639
|
+
readonly dataTest?: string | undefined;
|
|
2640
|
+
readonly internal?: boolean | undefined;
|
|
2641
|
+
readonly color?: string | undefined;
|
|
2642
|
+
readonly size?: string | undefined;
|
|
2643
|
+
readonly interactive?: boolean | undefined;
|
|
2644
|
+
readonly variant?: string | undefined;
|
|
2645
|
+
};
|
|
2646
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
2647
|
+
};
|
|
2648
|
+
setup(): {
|
|
2649
|
+
args: any;
|
|
2650
|
+
slots: any;
|
|
2651
|
+
};
|
|
2652
|
+
template: string;
|
|
2653
|
+
};
|
|
2654
|
+
export namespace SlotDefault {
|
|
2655
|
+
export namespace args_10 {
|
|
2656
|
+
let slotTemplate: string;
|
|
2657
|
+
}
|
|
2658
|
+
export { args_10 as args };
|
|
2659
|
+
}
|
|
2660
|
+
export function LeftSlot(args: any): {
|
|
2661
|
+
components: {
|
|
2662
|
+
UButton: {
|
|
2663
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
|
|
2664
|
+
buttonRef: import("vue").Ref<null, null>;
|
|
2665
|
+
label: string;
|
|
2666
|
+
id: string;
|
|
2667
|
+
rightIcon: string;
|
|
2668
|
+
leftIcon: string;
|
|
2669
|
+
config: Record<string, any>;
|
|
2670
|
+
dataTest: string;
|
|
2671
|
+
icon: string;
|
|
2672
|
+
color?: string | undefined;
|
|
2673
|
+
disabled?: boolean | undefined;
|
|
2674
|
+
size?: string | undefined;
|
|
2675
|
+
square?: boolean | undefined;
|
|
2676
|
+
filled?: boolean | undefined;
|
|
2677
|
+
variant?: string | undefined;
|
|
2678
|
+
loading?: boolean | undefined;
|
|
2679
|
+
tag?: string | undefined;
|
|
2680
|
+
tabindex?: string | number | undefined;
|
|
2681
|
+
block?: boolean | undefined;
|
|
2682
|
+
round?: boolean | undefined;
|
|
2683
|
+
noRing?: boolean | undefined;
|
|
2684
|
+
$props: {
|
|
2685
|
+
readonly label?: string | undefined;
|
|
2686
|
+
readonly id?: string | undefined;
|
|
2687
|
+
readonly rightIcon?: string | undefined;
|
|
2688
|
+
readonly leftIcon?: string | undefined;
|
|
2689
|
+
readonly config?: Record<string, any> | undefined;
|
|
2690
|
+
readonly dataTest?: string | undefined;
|
|
2691
|
+
readonly icon?: string | undefined;
|
|
2692
|
+
readonly color?: string | undefined;
|
|
2693
|
+
readonly disabled?: boolean | undefined;
|
|
2694
|
+
readonly size?: string | undefined;
|
|
2695
|
+
readonly square?: boolean | undefined;
|
|
2696
|
+
readonly filled?: boolean | undefined;
|
|
2697
|
+
readonly variant?: string | undefined;
|
|
2698
|
+
readonly loading?: boolean | undefined;
|
|
2699
|
+
readonly tag?: string | undefined;
|
|
2700
|
+
readonly tabindex?: string | number | undefined;
|
|
2701
|
+
readonly block?: boolean | undefined;
|
|
2702
|
+
readonly round?: boolean | undefined;
|
|
2703
|
+
readonly noRing?: boolean | undefined;
|
|
2704
|
+
};
|
|
2705
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<{}> & Readonly<{}>, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
2706
|
+
P: {};
|
|
2707
|
+
B: {};
|
|
2708
|
+
D: {};
|
|
2709
|
+
C: {};
|
|
2710
|
+
M: {};
|
|
2711
|
+
Defaults: {};
|
|
2712
|
+
}, Readonly<{}> & Readonly<{}>, {
|
|
2713
|
+
buttonRef: import("vue").Ref<null, null>;
|
|
2714
|
+
label: string;
|
|
2715
|
+
id: string;
|
|
2716
|
+
rightIcon: string;
|
|
2717
|
+
leftIcon: string;
|
|
2718
|
+
config: Record<string, any>;
|
|
2719
|
+
dataTest: string;
|
|
2720
|
+
icon: string;
|
|
2721
|
+
color?: string | undefined;
|
|
2722
|
+
disabled?: boolean | undefined;
|
|
2723
|
+
size?: string | undefined;
|
|
2724
|
+
square?: boolean | undefined;
|
|
2725
|
+
filled?: boolean | undefined;
|
|
2726
|
+
variant?: string | undefined;
|
|
2727
|
+
loading?: boolean | undefined;
|
|
2728
|
+
tag?: string | undefined;
|
|
2729
|
+
tabindex?: string | number | undefined;
|
|
2730
|
+
block?: boolean | undefined;
|
|
2731
|
+
round?: boolean | undefined;
|
|
2732
|
+
noRing?: boolean | undefined;
|
|
2733
|
+
$props: {
|
|
2734
|
+
readonly label?: string | undefined;
|
|
2735
|
+
readonly id?: string | undefined;
|
|
2736
|
+
readonly rightIcon?: string | undefined;
|
|
2737
|
+
readonly leftIcon?: string | undefined;
|
|
2738
|
+
readonly config?: Record<string, any> | undefined;
|
|
2739
|
+
readonly dataTest?: string | undefined;
|
|
2740
|
+
readonly icon?: string | undefined;
|
|
2741
|
+
readonly color?: string | undefined;
|
|
2742
|
+
readonly disabled?: boolean | undefined;
|
|
2743
|
+
readonly size?: string | undefined;
|
|
2744
|
+
readonly square?: boolean | undefined;
|
|
2745
|
+
readonly filled?: boolean | undefined;
|
|
2746
|
+
readonly variant?: string | undefined;
|
|
2747
|
+
readonly loading?: boolean | undefined;
|
|
2748
|
+
readonly tag?: string | undefined;
|
|
2749
|
+
readonly tabindex?: string | number | undefined;
|
|
2750
|
+
readonly block?: boolean | undefined;
|
|
2751
|
+
readonly round?: boolean | undefined;
|
|
2752
|
+
readonly noRing?: boolean | undefined;
|
|
2753
|
+
};
|
|
2754
|
+
}, {}, {}, {}, {}>;
|
|
2755
|
+
__isFragment?: never;
|
|
2756
|
+
__isTeleport?: never;
|
|
2757
|
+
__isSuspense?: never;
|
|
2758
|
+
} & import("vue").ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
|
|
2759
|
+
buttonRef: import("vue").Ref<null, null>;
|
|
2760
|
+
label: string;
|
|
2761
|
+
id: string;
|
|
2762
|
+
rightIcon: string;
|
|
2763
|
+
leftIcon: string;
|
|
2764
|
+
config: Record<string, any>;
|
|
2765
|
+
dataTest: string;
|
|
2766
|
+
icon: string;
|
|
2767
|
+
color?: string | undefined;
|
|
2768
|
+
disabled?: boolean | undefined;
|
|
2769
|
+
size?: string | undefined;
|
|
2770
|
+
square?: boolean | undefined;
|
|
2771
|
+
filled?: boolean | undefined;
|
|
2772
|
+
variant?: string | undefined;
|
|
2773
|
+
loading?: boolean | undefined;
|
|
2774
|
+
tag?: string | undefined;
|
|
2775
|
+
tabindex?: string | number | undefined;
|
|
2776
|
+
block?: boolean | undefined;
|
|
2777
|
+
round?: boolean | undefined;
|
|
2778
|
+
noRing?: boolean | undefined;
|
|
2779
|
+
$props: {
|
|
2780
|
+
readonly label?: string | undefined;
|
|
2781
|
+
readonly id?: string | undefined;
|
|
2782
|
+
readonly rightIcon?: string | undefined;
|
|
2783
|
+
readonly leftIcon?: string | undefined;
|
|
2784
|
+
readonly config?: Record<string, any> | undefined;
|
|
2785
|
+
readonly dataTest?: string | undefined;
|
|
2786
|
+
readonly icon?: string | undefined;
|
|
2787
|
+
readonly color?: string | undefined;
|
|
2788
|
+
readonly disabled?: boolean | undefined;
|
|
2789
|
+
readonly size?: string | undefined;
|
|
2790
|
+
readonly square?: boolean | undefined;
|
|
2791
|
+
readonly filled?: boolean | undefined;
|
|
2792
|
+
readonly variant?: string | undefined;
|
|
2793
|
+
readonly loading?: boolean | undefined;
|
|
2794
|
+
readonly tag?: string | undefined;
|
|
2795
|
+
readonly tabindex?: string | number | undefined;
|
|
2796
|
+
readonly block?: boolean | undefined;
|
|
2797
|
+
readonly round?: boolean | undefined;
|
|
2798
|
+
readonly noRing?: boolean | undefined;
|
|
2799
|
+
};
|
|
2800
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
2801
|
+
$slots: {
|
|
2802
|
+
left?(_: {
|
|
2803
|
+
iconName: string;
|
|
2804
|
+
iconSize: any;
|
|
2805
|
+
iconColor: string | undefined;
|
|
2806
|
+
}): any;
|
|
2807
|
+
default?(_: {
|
|
2808
|
+
label: string;
|
|
2809
|
+
iconName: string;
|
|
2810
|
+
iconSize: any;
|
|
2811
|
+
iconColor: string | undefined;
|
|
2812
|
+
}): any;
|
|
2813
|
+
right?(_: {
|
|
2814
|
+
iconName: string;
|
|
2815
|
+
iconSize: any;
|
|
2816
|
+
iconColor: string | undefined;
|
|
2817
|
+
}): any;
|
|
2818
|
+
};
|
|
2819
|
+
});
|
|
2820
|
+
UIcon: import("vue").DefineComponent<{}, {
|
|
2821
|
+
$emit: (event: "click", ...args: any[]) => void;
|
|
2822
|
+
config: Record<string, any>;
|
|
2823
|
+
name: string;
|
|
2824
|
+
src: Record<string, any>;
|
|
2825
|
+
tooltip: string;
|
|
2826
|
+
tooltipSettings: Record<string, any>;
|
|
2827
|
+
dataTest: string;
|
|
2828
|
+
internal: boolean;
|
|
2829
|
+
color?: string | undefined;
|
|
2830
|
+
size?: string | undefined;
|
|
2831
|
+
interactive?: boolean | undefined;
|
|
2832
|
+
variant?: string | undefined;
|
|
2833
|
+
$props: {
|
|
2834
|
+
readonly config?: Record<string, any> | undefined;
|
|
2835
|
+
readonly name?: string | undefined;
|
|
2836
|
+
readonly src?: Record<string, any> | undefined;
|
|
2837
|
+
readonly tooltip?: string | undefined;
|
|
2838
|
+
readonly tooltipSettings?: Record<string, any> | undefined;
|
|
2839
|
+
readonly dataTest?: string | undefined;
|
|
2840
|
+
readonly internal?: boolean | undefined;
|
|
2841
|
+
readonly color?: string | undefined;
|
|
2842
|
+
readonly size?: string | undefined;
|
|
2843
|
+
readonly interactive?: boolean | undefined;
|
|
2844
|
+
readonly variant?: string | undefined;
|
|
2845
|
+
};
|
|
2846
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
2847
|
+
};
|
|
2848
|
+
setup(): {
|
|
2849
|
+
args: any;
|
|
2850
|
+
slots: any;
|
|
2851
|
+
};
|
|
2852
|
+
template: string;
|
|
2853
|
+
};
|
|
2854
|
+
export namespace LeftSlot {
|
|
2855
|
+
export namespace args_11 {
|
|
2856
|
+
let slotTemplate_1: string;
|
|
2857
|
+
export { slotTemplate_1 as slotTemplate };
|
|
2858
|
+
}
|
|
2859
|
+
export { args_11 as args };
|
|
2860
|
+
}
|
|
2861
|
+
export function RightSlot(args: any): {
|
|
2862
|
+
components: {
|
|
2863
|
+
UButton: {
|
|
2864
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
|
|
2865
|
+
buttonRef: import("vue").Ref<null, null>;
|
|
2866
|
+
label: string;
|
|
2867
|
+
id: string;
|
|
2868
|
+
rightIcon: string;
|
|
2869
|
+
leftIcon: string;
|
|
2870
|
+
config: Record<string, any>;
|
|
2871
|
+
dataTest: string;
|
|
2872
|
+
icon: string;
|
|
2873
|
+
color?: string | undefined;
|
|
2874
|
+
disabled?: boolean | undefined;
|
|
2875
|
+
size?: string | undefined;
|
|
2876
|
+
square?: boolean | undefined;
|
|
2877
|
+
filled?: boolean | undefined;
|
|
2878
|
+
variant?: string | undefined;
|
|
2879
|
+
loading?: boolean | undefined;
|
|
2880
|
+
tag?: string | undefined;
|
|
2881
|
+
tabindex?: string | number | undefined;
|
|
2882
|
+
block?: boolean | undefined;
|
|
2883
|
+
round?: boolean | undefined;
|
|
2884
|
+
noRing?: boolean | undefined;
|
|
2885
|
+
$props: {
|
|
2886
|
+
readonly label?: string | undefined;
|
|
2887
|
+
readonly id?: string | undefined;
|
|
2888
|
+
readonly rightIcon?: string | undefined;
|
|
2889
|
+
readonly leftIcon?: string | undefined;
|
|
2890
|
+
readonly config?: Record<string, any> | undefined;
|
|
2891
|
+
readonly dataTest?: string | undefined;
|
|
2892
|
+
readonly icon?: string | undefined;
|
|
2893
|
+
readonly color?: string | undefined;
|
|
2894
|
+
readonly disabled?: boolean | undefined;
|
|
2895
|
+
readonly size?: string | undefined;
|
|
2896
|
+
readonly square?: boolean | undefined;
|
|
2897
|
+
readonly filled?: boolean | undefined;
|
|
2898
|
+
readonly variant?: string | undefined;
|
|
2899
|
+
readonly loading?: boolean | undefined;
|
|
2900
|
+
readonly tag?: string | undefined;
|
|
2901
|
+
readonly tabindex?: string | number | undefined;
|
|
2902
|
+
readonly block?: boolean | undefined;
|
|
2903
|
+
readonly round?: boolean | undefined;
|
|
2904
|
+
readonly noRing?: boolean | undefined;
|
|
2905
|
+
};
|
|
2906
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<{}> & Readonly<{}>, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
2907
|
+
P: {};
|
|
2908
|
+
B: {};
|
|
2909
|
+
D: {};
|
|
2910
|
+
C: {};
|
|
2911
|
+
M: {};
|
|
2912
|
+
Defaults: {};
|
|
2913
|
+
}, Readonly<{}> & Readonly<{}>, {
|
|
2914
|
+
buttonRef: import("vue").Ref<null, null>;
|
|
2915
|
+
label: string;
|
|
2916
|
+
id: string;
|
|
2917
|
+
rightIcon: string;
|
|
2918
|
+
leftIcon: string;
|
|
2919
|
+
config: Record<string, any>;
|
|
2920
|
+
dataTest: string;
|
|
2921
|
+
icon: string;
|
|
2922
|
+
color?: string | undefined;
|
|
2923
|
+
disabled?: boolean | undefined;
|
|
2924
|
+
size?: string | undefined;
|
|
2925
|
+
square?: boolean | undefined;
|
|
2926
|
+
filled?: boolean | undefined;
|
|
2927
|
+
variant?: string | undefined;
|
|
2928
|
+
loading?: boolean | undefined;
|
|
2929
|
+
tag?: string | undefined;
|
|
2930
|
+
tabindex?: string | number | undefined;
|
|
2931
|
+
block?: boolean | undefined;
|
|
2932
|
+
round?: boolean | undefined;
|
|
2933
|
+
noRing?: boolean | undefined;
|
|
2934
|
+
$props: {
|
|
2935
|
+
readonly label?: string | undefined;
|
|
2936
|
+
readonly id?: string | undefined;
|
|
2937
|
+
readonly rightIcon?: string | undefined;
|
|
2938
|
+
readonly leftIcon?: string | undefined;
|
|
2939
|
+
readonly config?: Record<string, any> | undefined;
|
|
2940
|
+
readonly dataTest?: string | undefined;
|
|
2941
|
+
readonly icon?: string | undefined;
|
|
2942
|
+
readonly color?: string | undefined;
|
|
2943
|
+
readonly disabled?: boolean | undefined;
|
|
2944
|
+
readonly size?: string | undefined;
|
|
2945
|
+
readonly square?: boolean | undefined;
|
|
2946
|
+
readonly filled?: boolean | undefined;
|
|
2947
|
+
readonly variant?: string | undefined;
|
|
2948
|
+
readonly loading?: boolean | undefined;
|
|
2949
|
+
readonly tag?: string | undefined;
|
|
2950
|
+
readonly tabindex?: string | number | undefined;
|
|
2951
|
+
readonly block?: boolean | undefined;
|
|
2952
|
+
readonly round?: boolean | undefined;
|
|
2953
|
+
readonly noRing?: boolean | undefined;
|
|
2954
|
+
};
|
|
2955
|
+
}, {}, {}, {}, {}>;
|
|
2956
|
+
__isFragment?: never;
|
|
2957
|
+
__isTeleport?: never;
|
|
2958
|
+
__isSuspense?: never;
|
|
2959
|
+
} & import("vue").ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
|
|
2960
|
+
buttonRef: import("vue").Ref<null, null>;
|
|
2961
|
+
label: string;
|
|
2962
|
+
id: string;
|
|
2963
|
+
rightIcon: string;
|
|
2964
|
+
leftIcon: string;
|
|
2965
|
+
config: Record<string, any>;
|
|
2966
|
+
dataTest: string;
|
|
2967
|
+
icon: string;
|
|
2968
|
+
color?: string | undefined;
|
|
2969
|
+
disabled?: boolean | undefined;
|
|
2970
|
+
size?: string | undefined;
|
|
2971
|
+
square?: boolean | undefined;
|
|
2972
|
+
filled?: boolean | undefined;
|
|
2973
|
+
variant?: string | undefined;
|
|
2974
|
+
loading?: boolean | undefined;
|
|
2975
|
+
tag?: string | undefined;
|
|
2976
|
+
tabindex?: string | number | undefined;
|
|
2977
|
+
block?: boolean | undefined;
|
|
2978
|
+
round?: boolean | undefined;
|
|
2979
|
+
noRing?: boolean | undefined;
|
|
2980
|
+
$props: {
|
|
2981
|
+
readonly label?: string | undefined;
|
|
2982
|
+
readonly id?: string | undefined;
|
|
2983
|
+
readonly rightIcon?: string | undefined;
|
|
2984
|
+
readonly leftIcon?: string | undefined;
|
|
2985
|
+
readonly config?: Record<string, any> | undefined;
|
|
2986
|
+
readonly dataTest?: string | undefined;
|
|
2987
|
+
readonly icon?: string | undefined;
|
|
2988
|
+
readonly color?: string | undefined;
|
|
2989
|
+
readonly disabled?: boolean | undefined;
|
|
2990
|
+
readonly size?: string | undefined;
|
|
2991
|
+
readonly square?: boolean | undefined;
|
|
2992
|
+
readonly filled?: boolean | undefined;
|
|
2993
|
+
readonly variant?: string | undefined;
|
|
2994
|
+
readonly loading?: boolean | undefined;
|
|
2995
|
+
readonly tag?: string | undefined;
|
|
2996
|
+
readonly tabindex?: string | number | undefined;
|
|
2997
|
+
readonly block?: boolean | undefined;
|
|
2998
|
+
readonly round?: boolean | undefined;
|
|
2999
|
+
readonly noRing?: boolean | undefined;
|
|
3000
|
+
};
|
|
3001
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
3002
|
+
$slots: {
|
|
3003
|
+
left?(_: {
|
|
3004
|
+
iconName: string;
|
|
3005
|
+
iconSize: any;
|
|
3006
|
+
iconColor: string | undefined;
|
|
3007
|
+
}): any;
|
|
3008
|
+
default?(_: {
|
|
3009
|
+
label: string;
|
|
3010
|
+
iconName: string;
|
|
3011
|
+
iconSize: any;
|
|
3012
|
+
iconColor: string | undefined;
|
|
3013
|
+
}): any;
|
|
3014
|
+
right?(_: {
|
|
3015
|
+
iconName: string;
|
|
3016
|
+
iconSize: any;
|
|
3017
|
+
iconColor: string | undefined;
|
|
3018
|
+
}): any;
|
|
3019
|
+
};
|
|
3020
|
+
});
|
|
3021
|
+
UIcon: import("vue").DefineComponent<{}, {
|
|
3022
|
+
$emit: (event: "click", ...args: any[]) => void;
|
|
3023
|
+
config: Record<string, any>;
|
|
3024
|
+
name: string;
|
|
3025
|
+
src: Record<string, any>;
|
|
3026
|
+
tooltip: string;
|
|
3027
|
+
tooltipSettings: Record<string, any>;
|
|
3028
|
+
dataTest: string;
|
|
3029
|
+
internal: boolean;
|
|
3030
|
+
color?: string | undefined;
|
|
3031
|
+
size?: string | undefined;
|
|
3032
|
+
interactive?: boolean | undefined;
|
|
3033
|
+
variant?: string | undefined;
|
|
3034
|
+
$props: {
|
|
3035
|
+
readonly config?: Record<string, any> | undefined;
|
|
3036
|
+
readonly name?: string | undefined;
|
|
3037
|
+
readonly src?: Record<string, any> | undefined;
|
|
3038
|
+
readonly tooltip?: string | undefined;
|
|
3039
|
+
readonly tooltipSettings?: Record<string, any> | undefined;
|
|
3040
|
+
readonly dataTest?: string | undefined;
|
|
3041
|
+
readonly internal?: boolean | undefined;
|
|
3042
|
+
readonly color?: string | undefined;
|
|
3043
|
+
readonly size?: string | undefined;
|
|
3044
|
+
readonly interactive?: boolean | undefined;
|
|
3045
|
+
readonly variant?: string | undefined;
|
|
3046
|
+
};
|
|
3047
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
3048
|
+
};
|
|
3049
|
+
setup(): {
|
|
3050
|
+
args: any;
|
|
3051
|
+
slots: any;
|
|
3052
|
+
};
|
|
3053
|
+
template: string;
|
|
3054
|
+
};
|
|
3055
|
+
export namespace RightSlot {
|
|
3056
|
+
export namespace args_12 {
|
|
3057
|
+
let slotTemplate_2: string;
|
|
3058
|
+
export { slotTemplate_2 as slotTemplate };
|
|
3059
|
+
}
|
|
3060
|
+
export { args_12 as args };
|
|
3061
|
+
}
|
|
3062
|
+
import UButton from "../../ui.button/UButton.vue";
|