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