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