vueless 0.0.474 → 0.0.475
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/adatper.locale/locales/en.d.ts +289 -0
- package/adatper.locale/vue-i18n.d.ts +9 -0
- package/adatper.locale/vueless.d.ts +11 -0
- package/composables/useAutoPosition.d.ts +15 -0
- package/composables/useBreakpoint.d.ts +7 -0
- package/composables/useBreakpoint.js +1 -1
- package/composables/useLocale.d.ts +3 -0
- package/composables/useMutationObserver.d.ts +7 -0
- package/composables/useUI.d.ts +17 -0
- package/composablesTs/useAutoPosition.d.ts +28 -0
- package/composablesTs/useAutoPosition.ts +115 -0
- package/composablesTs/useBreakpoint.d.ts +7 -0
- package/composablesTs/useBreakpoint.ts +106 -0
- package/composablesTs/useLocale.d.ts +3 -0
- package/composablesTs/useLocale.ts +25 -0
- package/composablesTs/useMutationObserver.d.ts +8 -0
- package/composablesTs/useMutationObserver.ts +50 -0
- package/composablesTs/useUI.d.ts +68 -0
- package/composablesTs/useUI.ts +566 -0
- package/constants.d.ts +42 -0
- package/constants.js +1 -1
- package/constants.ts +73 -0
- package/directives/clickOutside/storybook/stories.d.ts +653 -0
- package/directives/clickOutside/vClickOutside.d.ts +6 -0
- package/directives/clickOutside/vClickOutside.js +2 -2
- package/directives/index.d.ts +2 -0
- package/directives/tooltip/storybook/stories.d.ts +252 -0
- package/directives/tooltip/storybook/stories.js +5 -5
- package/directives/tooltip/vTooltip.d.ts +6 -0
- package/index.d.ts +15 -0
- package/{index.js → index.ts} +9 -6
- package/package.json +28 -17
- package/preset.tailwind.d.ts +116 -0
- package/{preset.tailwind.js → preset.tailwind.ts} +30 -22
- package/types.d.ts +131 -0
- package/types.ts +218 -0
- package/ui.button/UButton.vue.d.ts +73 -0
- package/ui.button/config.d.ts +130 -0
- package/ui.button/constants.d.ts +1 -0
- package/ui.button/storybook/stories.d.ts +3062 -0
- package/ui.button/useAttrs.d.ts +11 -0
- package/ui.button-link/ULink.vue +1 -1
- package/ui.button-link/ULink.vue.d.ts +66 -0
- package/ui.button-link/config.d.ts +101 -0
- package/ui.button-link/constants.d.ts +1 -0
- package/ui.button-link/storybook/stories.d.ts +4567 -0
- package/ui.button-link/useAttrs.d.ts +14 -0
- package/ui.button-toggle/UToggle.vue.d.ts +50 -0
- package/ui.button-toggle/config.d.ts +65 -0
- package/ui.button-toggle/constants.d.ts +3 -0
- package/ui.button-toggle/storybook/stories.d.ts +2683 -0
- package/ui.button-toggle/useAttrs.d.ts +11 -0
- package/ui.button-toggle-item/UToggleItem.vue.d.ts +36 -0
- package/ui.button-toggle-item/config.d.ts +41 -0
- package/ui.button-toggle-item/constants.d.ts +1 -0
- package/ui.button-toggle-item/storybook/stories.d.ts +495 -0
- package/ui.button-toggle-item/useAttrs.d.ts +15 -0
- package/ui.container-accordion/UAccordion.vue.d.ts +32 -0
- package/ui.container-accordion/config.d.ts +40 -0
- package/ui.container-accordion/constants.d.ts +1 -0
- package/ui.container-accordion/storybook/stories.d.ts +732 -0
- package/ui.container-accordion/useAttrs.d.ts +13 -0
- package/ui.container-card/UCard.vue.d.ts +31 -0
- package/ui.container-card/config.d.ts +13 -0
- package/ui.container-card/constants.d.ts +1 -0
- package/ui.container-card/storybook/stories.d.ts +3906 -0
- package/ui.container-card/useAttrs.d.ts +11 -0
- package/ui.container-col/UCol.vue.d.ts +33 -0
- package/ui.container-col/config.d.ts +81 -0
- package/ui.container-col/constants.d.ts +1 -0
- package/ui.container-col/storybook/stories.d.ts +840 -0
- package/ui.container-col/useAttrs.d.ts +11 -0
- package/ui.container-divider/UDivider.vue.d.ts +25 -0
- package/ui.container-divider/config.d.ts +102 -0
- package/ui.container-divider/constants.d.ts +1 -0
- package/ui.container-divider/storybook/stories.d.ts +577 -0
- package/ui.container-divider/useAttrs.d.ts +11 -0
- package/ui.container-group/UGroup.vue.d.ts +33 -0
- package/ui.container-group/config.d.ts +38 -0
- package/ui.container-group/constants.d.ts +1 -0
- package/ui.container-group/storybook/stories.d.ts +2869 -0
- package/ui.container-group/useAttrs.d.ts +11 -0
- package/ui.container-modal/UModal.vue.d.ts +59 -0
- package/ui.container-modal/config.d.ts +77 -0
- package/ui.container-modal/constants.d.ts +1 -0
- package/ui.container-modal/storybook/stories.d.ts +8377 -0
- package/ui.container-modal/useAttrs.d.ts +11 -0
- package/ui.container-modal-confirm/UModalConfirm.vue.d.ts +59 -0
- package/ui.container-modal-confirm/config.d.ts +23 -0
- package/ui.container-modal-confirm/constants.d.ts +1 -0
- package/ui.container-modal-confirm/storybook/stories.d.ts +4494 -0
- package/ui.container-modal-confirm/useAttrs.d.ts +11 -0
- package/ui.container-page/UPage.vue.d.ts +47 -0
- package/ui.container-page/config.d.ts +85 -0
- package/ui.container-page/constants.d.ts +1 -0
- package/ui.container-page/storybook/stories.d.ts +8723 -0
- package/ui.container-page/useAttrs.d.ts +13 -0
- package/ui.container-row/URow.vue.d.ts +35 -0
- package/ui.container-row/config.d.ts +85 -0
- package/ui.container-row/constants.d.ts +1 -0
- package/ui.container-row/storybook/stories.d.ts +2619 -0
- package/ui.container-row/useAttrs.d.ts +11 -0
- package/ui.data-list/UDataList.vue +4 -4
- package/ui.data-list/UDataList.vue.d.ts +74 -0
- package/ui.data-list/config.d.ts +48 -0
- package/ui.data-list/constants.d.ts +1 -0
- package/ui.data-list/storybook/stories.d.ts +3342 -0
- package/ui.data-list/useAttrs.d.ts +11 -0
- package/ui.data-table/UTable.vue.d.ts +90 -0
- package/ui.data-table/UTableRow.vue.d.ts +61 -0
- package/ui.data-table/config.d.ts +128 -0
- package/ui.data-table/constants.d.ts +1 -0
- package/ui.data-table/storybook/stories.d.ts +13069 -0
- package/ui.data-table/useAttrs.d.ts +17 -0
- package/ui.data-table/utilTable.d.ts +9 -0
- package/ui.dropdown-badge/UDropdownBadge.vue.d.ts +145 -0
- package/ui.dropdown-badge/config.d.ts +39 -0
- package/ui.dropdown-badge/constants.d.ts +1 -0
- package/ui.dropdown-badge/storybook/stories.d.ts +1246 -0
- package/ui.dropdown-badge/useAttrs.d.ts +13 -0
- package/ui.dropdown-button/UDropdownButton.vue.d.ts +151 -0
- package/ui.dropdown-button/config.d.ts +52 -0
- package/ui.dropdown-button/constants.d.ts +4 -0
- package/ui.dropdown-button/storybook/stories.d.ts +1912 -0
- package/ui.dropdown-button/useAttrs.d.ts +13 -0
- package/ui.dropdown-link/UDropdownLink.vue.d.ts +149 -0
- package/ui.dropdown-link/config.d.ts +37 -0
- package/ui.dropdown-link/constants.d.ts +1 -0
- package/ui.dropdown-link/storybook/stories.d.ts +1333 -0
- package/ui.dropdown-link/useAttrs.d.ts +13 -0
- package/ui.dropdown-list/UDropdownList.vue.d.ts +59 -0
- package/ui.dropdown-list/config.d.ts +77 -0
- package/ui.dropdown-list/constants.d.ts +1 -0
- package/ui.dropdown-list/storybook/stories.d.ts +783 -0
- package/ui.dropdown-list/useAttrs.d.ts +11 -0
- package/ui.dropdown-list/usePointer.d.ts +8 -0
- package/ui.form-calendar/UCalendar.vue.d.ts +31 -0
- package/ui.form-calendar/UCalendarDayView.vue.d.ts +26 -0
- package/ui.form-calendar/UCalendarMonthView.vue.d.ts +26 -0
- package/ui.form-calendar/UCalendarYearView.vue.d.ts +26 -0
- package/ui.form-calendar/config.d.ts +207 -0
- package/ui.form-calendar/constants.d.ts +66 -0
- package/ui.form-calendar/storybook/stories.d.ts +262 -0
- package/ui.form-calendar/useAttrs.d.ts +11 -0
- package/ui.form-calendar/utilCalendar.d.ts +8 -0
- package/ui.form-calendar/utilDate.d.ts +30 -0
- package/ui.form-calendar/utilFormatting.d.ts +68 -0
- package/ui.form-checkbox/UCheckbox.vue.d.ts +50 -0
- package/ui.form-checkbox/config.d.ts +67 -0
- package/ui.form-checkbox/constants.d.ts +1 -0
- package/ui.form-checkbox/storybook/stories.d.ts +1589 -0
- package/ui.form-checkbox/useAttrs.d.ts +14 -0
- package/ui.form-checkbox-group/UCheckboxGroup.vue.d.ts +40 -0
- package/ui.form-checkbox-group/config.d.ts +21 -0
- package/ui.form-checkbox-group/constants.d.ts +1 -0
- package/ui.form-checkbox-group/storybook/stories.d.ts +2441 -0
- package/ui.form-checkbox-group/useAttrs.d.ts +11 -0
- package/ui.form-checkbox-multi-state/UCheckboxMultiState.vue.d.ts +24 -0
- package/ui.form-checkbox-multi-state/config.d.ts +10 -0
- package/ui.form-checkbox-multi-state/constants.d.ts +1 -0
- package/ui.form-checkbox-multi-state/storybook/stories.d.ts +187 -0
- package/ui.form-checkbox-multi-state/useAttrs.d.ts +13 -0
- package/ui.form-color-picker/UColorPicker.vue.d.ts +28 -0
- package/ui.form-color-picker/config.d.ts +42 -0
- package/ui.form-color-picker/constants.d.ts +1 -0
- package/ui.form-color-picker/storybook/stories.d.ts +316 -0
- package/ui.form-color-picker/useAttrs.d.ts +11 -0
- package/ui.form-date-picker/UDatePicker.vue.d.ts +135 -0
- package/ui.form-date-picker/config.d.ts +184 -0
- package/ui.form-date-picker/constants.d.ts +1 -0
- package/ui.form-date-picker/index.d.ts +1 -0
- package/ui.form-date-picker/storybook/stories.d.ts +3242 -0
- package/ui.form-date-picker/useAttrs.d.ts +14 -0
- package/ui.form-date-picker-range/UDatePickerRange.vue.d.ts +545 -0
- package/ui.form-date-picker-range/UDatePickerRangeInputs.vue.d.ts +6 -0
- package/ui.form-date-picker-range/UDatePickerRangePeriodMenu.vue.d.ts +7 -0
- package/ui.form-date-picker-range/config.d.ts +265 -0
- package/ui.form-date-picker-range/constants.d.ts +20 -0
- package/ui.form-date-picker-range/storybook/stories.d.ts +5545 -0
- package/ui.form-date-picker-range/useAttrs.d.ts +17 -0
- package/ui.form-date-picker-range/useUserFormat.d.ts +3 -0
- package/ui.form-date-picker-range/utilDateRange.d.ts +20 -0
- package/ui.form-date-picker-range/utilValidation.d.ts +3 -0
- package/ui.form-input/UInput.vue +1 -1
- package/ui.form-input/UInput.vue.d.ts +59 -0
- package/ui.form-input/config.d.ts +59 -0
- package/ui.form-input/constants.d.ts +1 -0
- package/ui.form-input/storybook/stories.d.ts +5734 -0
- package/ui.form-input/useAttrs.d.ts +11 -0
- package/ui.form-input-file/UInputFile.vue.d.ts +57 -0
- package/ui.form-input-file/config.d.ts +94 -0
- package/ui.form-input-file/constants.d.ts +1 -0
- package/ui.form-input-file/storybook/stories.d.ts +1116 -0
- package/ui.form-input-file/useAttrs.d.ts +11 -0
- package/ui.form-input-file/utilFileForm.d.ts +1 -0
- package/ui.form-input-money/UInputMoney.vue.d.ts +183 -0
- package/ui.form-input-money/config.d.ts +17 -0
- package/ui.form-input-money/constants.d.ts +1 -0
- package/ui.form-input-money/storybook/stories.d.ts +7519 -0
- package/ui.form-input-money/useAttrs.d.ts +11 -0
- package/ui.form-input-money/useFormatCurrency.d.ts +5 -0
- package/ui.form-input-money/useFormatCurrency.js +1 -1
- package/ui.form-input-money/utilFormat.d.ts +7 -0
- package/ui.form-input-number/UInputNumber.vue +4 -3
- package/ui.form-input-number/UInputNumber.vue.d.ts +30 -0
- package/ui.form-input-number/config.d.ts +40 -0
- package/ui.form-input-number/constants.d.ts +1 -0
- package/ui.form-input-number/storybook/stories.d.ts +363 -0
- package/ui.form-input-number/useAttrs.d.ts +11 -0
- package/ui.form-input-rating/UInputRating.vue.d.ts +49 -0
- package/ui.form-input-rating/config.d.ts +56 -0
- package/ui.form-input-rating/constants.d.ts +1 -0
- package/ui.form-input-rating/storybook/stories.d.ts +1336 -0
- package/ui.form-input-rating/useAttrs.d.ts +11 -0
- package/ui.form-input-search/UInputSearch.vue.d.ts +177 -0
- package/ui.form-input-search/config.d.ts +21 -0
- package/ui.form-input-search/constants.d.ts +1 -0
- package/ui.form-input-search/storybook/stories.d.ts +3325 -0
- package/ui.form-input-search/useAttrs.d.ts +11 -0
- package/ui.form-label/ULabel.vue.d.ts +46 -0
- package/ui.form-label/config.d.ts +139 -0
- package/ui.form-label/config.js +2 -2
- package/ui.form-label/constants.d.ts +8 -0
- package/ui.form-label/storybook/stories.d.ts +1133 -0
- package/ui.form-label/useAttrs.d.ts +11 -0
- package/ui.form-radio/URadio.vue.d.ts +46 -0
- package/ui.form-radio/config.d.ts +30 -0
- package/ui.form-radio/constants.d.ts +1 -0
- package/ui.form-radio/storybook/stories.d.ts +1270 -0
- package/ui.form-radio/useAttrs.d.ts +14 -0
- package/ui.form-radio-group/URadioGroup.vue.d.ts +40 -0
- package/ui.form-radio-group/config.d.ts +21 -0
- package/ui.form-radio-group/constants.d.ts +1 -0
- package/ui.form-radio-group/storybook/stories.d.ts +1239 -0
- package/ui.form-radio-group/useAttrs.d.ts +11 -0
- package/ui.form-select/USelect.vue.d.ts +405 -0
- package/ui.form-select/config.d.ts +146 -0
- package/ui.form-select/constants.d.ts +13 -0
- package/ui.form-select/storybook/stories.d.ts +19025 -0
- package/ui.form-select/useAttrs.d.ts +15 -0
- package/ui.form-select/utilSelect.d.ts +11 -0
- package/ui.form-switch/USwitch.vue.d.ts +30 -0
- package/ui.form-switch/config.d.ts +106 -0
- package/ui.form-switch/constants.d.ts +1 -0
- package/ui.form-switch/storybook/stories.d.ts +703 -0
- package/ui.form-switch/useAttrs.d.ts +13 -0
- package/ui.form-switch/utilVariant.d.ts +169 -0
- package/ui.form-textarea/UTextarea.vue.d.ts +132 -0
- package/ui.form-textarea/config.d.ts +55 -0
- package/ui.form-textarea/constants.d.ts +1 -0
- package/ui.form-textarea/storybook/stories.d.ts +2175 -0
- package/ui.form-textarea/useAttrs.d.ts +11 -0
- package/ui.image-avatar/UAvatar.vue.d.ts +40 -0
- package/ui.image-avatar/config.d.ts +51 -0
- package/ui.image-avatar/constants.d.ts +1 -0
- package/ui.image-avatar/storybook/stories.d.ts +1640 -0
- package/ui.image-avatar/useAttrs.d.ts +11 -0
- package/ui.image-icon/UIcon.vue.d.ts +28 -0
- package/ui.image-icon/config.d.ts +52 -0
- package/ui.image-icon/constants.d.ts +1 -0
- package/ui.image-icon/storybook/stories.d.ts +516 -0
- package/ui.image-icon/useAttrs.d.ts +11 -0
- package/ui.loader/ULoader.vue.d.ts +23 -0
- package/ui.loader/config.d.ts +49 -0
- package/ui.loader/constants.d.ts +2 -0
- package/ui.loader/storybook/stories.d.ts +655 -0
- package/ui.loader/useAttrs.d.ts +11 -0
- package/ui.loader-overlay/ULoaderOverlay.vue.d.ts +21 -0
- package/ui.loader-overlay/config.d.ts +25 -0
- package/ui.loader-overlay/constants.d.ts +1 -0
- package/ui.loader-overlay/storybook/stories.d.ts +362 -0
- package/ui.loader-overlay/useAttrs.d.ts +11 -0
- package/ui.loader-overlay/useLoaderOverlay.d.ts +10 -0
- package/ui.loader-overlay/utilLoaderOverlay.d.ts +2 -0
- package/ui.loader-progress/ULoaderProgress.vue.d.ts +11 -0
- package/ui.loader-progress/config.d.ts +24 -0
- package/ui.loader-progress/constants.d.ts +3 -0
- package/ui.loader-progress/storybook/stories.d.ts +742 -0
- package/ui.loader-progress/useAttrs.d.ts +11 -0
- package/ui.loader-progress/useLoaderProgress.d.ts +15 -0
- package/ui.loader-progress/utilLoaderProgress.d.ts +5 -0
- package/ui.navigation-pagination/UPagination.vue.d.ts +54 -0
- package/ui.navigation-pagination/config.d.ts +41 -0
- package/ui.navigation-pagination/constants.d.ts +1 -0
- package/ui.navigation-pagination/storybook/stories.d.ts +1033 -0
- package/ui.navigation-pagination/useAttrs.d.ts +11 -0
- package/ui.navigation-progress/StepperProgress.vue.d.ts +15 -0
- package/ui.navigation-progress/UProgress.vue.d.ts +41 -0
- package/ui.navigation-progress/config.d.ts +139 -0
- package/ui.navigation-progress/constants.d.ts +5 -0
- package/ui.navigation-progress/storybook/stories.d.ts +2827 -0
- package/ui.navigation-progress/useAttrs.d.ts +11 -0
- package/ui.navigation-tab/UTab.vue.d.ts +27 -0
- package/ui.navigation-tab/config.d.ts +24 -0
- package/ui.navigation-tab/constants.d.ts +1 -0
- package/ui.navigation-tab/storybook/stories.d.ts +316 -0
- package/ui.navigation-tab/useAttrs.d.ts +14 -0
- package/ui.navigation-tabs/UTabs.vue.d.ts +30 -0
- package/ui.navigation-tabs/config.d.ts +24 -0
- package/ui.navigation-tabs/constants.d.ts +1 -0
- package/ui.navigation-tabs/storybook/stories.d.ts +354 -0
- package/ui.navigation-tabs/useAttrs.d.ts +11 -0
- package/ui.other-dot/UDot.vue.d.ts +13 -0
- package/ui.other-dot/config.d.ts +28 -0
- package/ui.other-dot/constants.d.ts +1 -0
- package/ui.other-dot/storybook/stories.d.ts +645 -0
- package/ui.other-dot/useAttrs.d.ts +11 -0
- package/ui.text-alert/UAlert.vue.d.ts +53 -0
- package/ui.text-alert/config.d.ts +75 -0
- package/ui.text-alert/constants.d.ts +1 -0
- package/ui.text-alert/storybook/stories.d.ts +4845 -0
- package/ui.text-alert/useAttrs.d.ts +11 -0
- package/ui.text-badge/UBadge.vue.d.ts +60 -0
- package/ui.text-badge/config.d.ts +102 -0
- package/ui.text-badge/constants.d.ts +1 -0
- package/ui.text-badge/storybook/stories.d.ts +1869 -0
- package/ui.text-badge/useAttrs.d.ts +11 -0
- package/ui.text-block/UText.vue +18 -62
- package/ui.text-block/UText.vue.d.ts +21 -0
- package/ui.text-block/config.d.ts +27 -0
- package/ui.text-block/constants.d.ts +1 -0
- package/ui.text-block/storybook/Docs.mdx +2 -2
- package/ui.text-block/storybook/stories.d.ts +12 -0
- package/ui.text-block/storybook/{stories.js → stories.ts} +12 -7
- package/ui.text-block/types.d.ts +9 -0
- package/ui.text-block/types.ts +33 -0
- package/ui.text-block/useAttrs.d.ts +3 -0
- package/ui.text-block/useAttrs.ts +18 -0
- package/ui.text-empty/UEmpty.vue.d.ts +29 -0
- package/ui.text-empty/config.d.ts +55 -0
- package/ui.text-empty/constants.d.ts +1 -0
- package/ui.text-empty/storybook/stories.d.ts +1212 -0
- package/ui.text-empty/useAttrs.d.ts +11 -0
- package/ui.text-file/UFile.vue +12 -14
- package/ui.text-file/UFile.vue.d.ts +57 -0
- package/ui.text-file/config.d.ts +42 -0
- package/ui.text-file/config.js +12 -2
- package/ui.text-file/constants.d.ts +1 -0
- package/ui.text-file/storybook/stories.d.ts +136 -0
- package/ui.text-file/useAttrs.d.ts +11 -0
- package/ui.text-files/UFiles.vue.d.ts +52 -0
- package/ui.text-files/config.d.ts +10 -0
- package/ui.text-files/config.js +1 -1
- package/ui.text-files/constants.d.ts +1 -0
- package/ui.text-files/storybook/stories.d.ts +131 -0
- package/ui.text-files/useAttrs.d.ts +11 -0
- package/ui.text-header/UHeader.vue.d.ts +33 -0
- package/ui.text-header/config.d.ts +54 -0
- package/ui.text-header/constants.d.ts +1 -0
- package/ui.text-header/storybook/stories.d.ts +694 -0
- package/ui.text-header/useAttrs.d.ts +11 -0
- package/ui.text-money/UMoney.vue.d.ts +48 -0
- package/ui.text-money/config.d.ts +77 -0
- package/ui.text-money/constants.d.ts +1 -0
- package/ui.text-money/storybook/stories.d.ts +2090 -0
- package/ui.text-money/useAttrs.d.ts +11 -0
- package/ui.text-money/utilMoney.d.ts +14 -0
- package/ui.text-money/utilMoney.js +2 -2
- package/ui.text-notify/UNotify.vue.d.ts +13 -0
- package/ui.text-notify/config.d.ts +58 -0
- package/ui.text-notify/constants.d.ts +20 -0
- package/ui.text-notify/storybook/stories.d.ts +653 -0
- package/ui.text-notify/useAttrs.d.ts +11 -0
- package/ui.text-notify/utilNotify.d.ts +7 -0
- package/utils/utilHelper.d.ts +9 -0
- package/utils/utilPlatform.d.ts +6 -0
- package/utils/utilStorybook.d.ts +15 -0
- package/utils/utilUI.d.ts +68 -0
- package/utilsTs/utilHelper.d.ts +9 -0
- package/utilsTs/utilHelper.ts +70 -0
- package/utilsTs/utilPlatform.d.ts +7 -0
- package/utilsTs/utilPlatform.ts +53 -0
- package/utilsTs/utilStorybook.d.ts +24 -0
- package/utilsTs/utilStorybook.ts +292 -0
- package/utilsTs/utilTailwind.d.ts +1 -0
- package/utilsTs/utilTailwind.ts +38 -0
- package/utilsTs/utilTheme.d.ts +8 -0
- package/{utils/utilTheme.js → utilsTs/utilTheme.ts} +31 -27
- package/utilsTs/utilUI.d.ts +67 -0
- package/utilsTs/utilUI.ts +142 -0
- package/web-types.json +30 -120
- package/ui.text-block/useAttrs.js +0 -15
- /package/ui.text-block/{config.js → config.ts} +0 -0
- /package/ui.text-block/{constants.js → constants.ts} +0 -0
|
@@ -0,0 +1,2175 @@
|
|
|
1
|
+
declare namespace _default {
|
|
2
|
+
export let id: string;
|
|
3
|
+
export let title: string;
|
|
4
|
+
export { UTextarea as component };
|
|
5
|
+
export namespace args {
|
|
6
|
+
let label: string;
|
|
7
|
+
}
|
|
8
|
+
export let argTypes: {
|
|
9
|
+
modelValue: {
|
|
10
|
+
control: {
|
|
11
|
+
type: string;
|
|
12
|
+
};
|
|
13
|
+
};
|
|
14
|
+
defaultTemplate?: {
|
|
15
|
+
table: {
|
|
16
|
+
disable: boolean;
|
|
17
|
+
};
|
|
18
|
+
} | undefined;
|
|
19
|
+
slotTemplate?: {
|
|
20
|
+
table: {
|
|
21
|
+
disable: boolean;
|
|
22
|
+
};
|
|
23
|
+
} | undefined;
|
|
24
|
+
};
|
|
25
|
+
}
|
|
26
|
+
export default _default;
|
|
27
|
+
export function Default(args: any): {
|
|
28
|
+
components: {
|
|
29
|
+
UTextarea: {
|
|
30
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
|
|
31
|
+
textareaRef: import("vue").Ref<null, null>;
|
|
32
|
+
$emit: (event: "focus" | "blur" | "change" | "click" | "mousedown" | "update:modelValue", ...args: any[]) => void;
|
|
33
|
+
label: string;
|
|
34
|
+
id: string;
|
|
35
|
+
description: string;
|
|
36
|
+
error: string;
|
|
37
|
+
config: Record<string, any>;
|
|
38
|
+
dataTest: string;
|
|
39
|
+
modelValue: string;
|
|
40
|
+
placeholder: string;
|
|
41
|
+
disabled?: boolean | undefined;
|
|
42
|
+
size?: string | undefined;
|
|
43
|
+
labelAlign?: string | undefined;
|
|
44
|
+
inputmode?: string | undefined;
|
|
45
|
+
readonly?: boolean | undefined;
|
|
46
|
+
noAutocomplete?: boolean | undefined;
|
|
47
|
+
resizable?: boolean | undefined;
|
|
48
|
+
rows?: string | number | undefined;
|
|
49
|
+
$props: {
|
|
50
|
+
readonly label?: string | undefined;
|
|
51
|
+
readonly id?: string | undefined;
|
|
52
|
+
readonly description?: string | undefined;
|
|
53
|
+
readonly error?: string | undefined;
|
|
54
|
+
readonly config?: Record<string, any> | undefined;
|
|
55
|
+
readonly dataTest?: string | undefined;
|
|
56
|
+
readonly modelValue?: string | undefined;
|
|
57
|
+
readonly placeholder?: string | undefined;
|
|
58
|
+
readonly disabled?: boolean | undefined;
|
|
59
|
+
readonly size?: string | undefined;
|
|
60
|
+
readonly labelAlign?: string | undefined;
|
|
61
|
+
readonly inputmode?: string | undefined;
|
|
62
|
+
readonly readonly?: boolean | undefined;
|
|
63
|
+
readonly noAutocomplete?: boolean | undefined;
|
|
64
|
+
readonly resizable?: boolean | undefined;
|
|
65
|
+
readonly rows?: string | number | undefined;
|
|
66
|
+
};
|
|
67
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<{}> & Readonly<{}>, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
68
|
+
P: {};
|
|
69
|
+
B: {};
|
|
70
|
+
D: {};
|
|
71
|
+
C: {};
|
|
72
|
+
M: {};
|
|
73
|
+
Defaults: {};
|
|
74
|
+
}, Readonly<{}> & Readonly<{}>, {
|
|
75
|
+
textareaRef: import("vue").Ref<null, null>;
|
|
76
|
+
$emit: (event: "focus" | "blur" | "change" | "click" | "mousedown" | "update:modelValue", ...args: any[]) => void;
|
|
77
|
+
label: string;
|
|
78
|
+
id: string;
|
|
79
|
+
description: string;
|
|
80
|
+
error: string;
|
|
81
|
+
config: Record<string, any>;
|
|
82
|
+
dataTest: string;
|
|
83
|
+
modelValue: string;
|
|
84
|
+
placeholder: string;
|
|
85
|
+
disabled?: boolean | undefined;
|
|
86
|
+
size?: string | undefined;
|
|
87
|
+
labelAlign?: string | undefined;
|
|
88
|
+
inputmode?: string | undefined;
|
|
89
|
+
readonly?: boolean | undefined;
|
|
90
|
+
noAutocomplete?: boolean | undefined;
|
|
91
|
+
resizable?: boolean | undefined;
|
|
92
|
+
rows?: string | number | undefined;
|
|
93
|
+
$props: {
|
|
94
|
+
readonly label?: string | undefined;
|
|
95
|
+
readonly id?: string | undefined;
|
|
96
|
+
readonly description?: string | undefined;
|
|
97
|
+
readonly error?: string | undefined;
|
|
98
|
+
readonly config?: Record<string, any> | undefined;
|
|
99
|
+
readonly dataTest?: string | undefined;
|
|
100
|
+
readonly modelValue?: string | undefined;
|
|
101
|
+
readonly placeholder?: string | undefined;
|
|
102
|
+
readonly disabled?: boolean | undefined;
|
|
103
|
+
readonly size?: string | undefined;
|
|
104
|
+
readonly labelAlign?: string | undefined;
|
|
105
|
+
readonly inputmode?: string | undefined;
|
|
106
|
+
readonly readonly?: boolean | undefined;
|
|
107
|
+
readonly noAutocomplete?: boolean | undefined;
|
|
108
|
+
readonly resizable?: boolean | undefined;
|
|
109
|
+
readonly rows?: string | number | undefined;
|
|
110
|
+
};
|
|
111
|
+
}, {}, {}, {}, {}>;
|
|
112
|
+
__isFragment?: never;
|
|
113
|
+
__isTeleport?: never;
|
|
114
|
+
__isSuspense?: never;
|
|
115
|
+
} & import("vue").ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
|
|
116
|
+
textareaRef: import("vue").Ref<null, null>;
|
|
117
|
+
$emit: (event: "focus" | "blur" | "change" | "click" | "mousedown" | "update:modelValue", ...args: any[]) => void;
|
|
118
|
+
label: string;
|
|
119
|
+
id: string;
|
|
120
|
+
description: string;
|
|
121
|
+
error: string;
|
|
122
|
+
config: Record<string, any>;
|
|
123
|
+
dataTest: string;
|
|
124
|
+
modelValue: string;
|
|
125
|
+
placeholder: string;
|
|
126
|
+
disabled?: boolean | undefined;
|
|
127
|
+
size?: string | undefined;
|
|
128
|
+
labelAlign?: string | undefined;
|
|
129
|
+
inputmode?: string | undefined;
|
|
130
|
+
readonly?: boolean | undefined;
|
|
131
|
+
noAutocomplete?: boolean | undefined;
|
|
132
|
+
resizable?: boolean | undefined;
|
|
133
|
+
rows?: string | number | undefined;
|
|
134
|
+
$props: {
|
|
135
|
+
readonly label?: string | undefined;
|
|
136
|
+
readonly id?: string | undefined;
|
|
137
|
+
readonly description?: string | undefined;
|
|
138
|
+
readonly error?: string | undefined;
|
|
139
|
+
readonly config?: Record<string, any> | undefined;
|
|
140
|
+
readonly dataTest?: string | undefined;
|
|
141
|
+
readonly modelValue?: string | undefined;
|
|
142
|
+
readonly placeholder?: string | undefined;
|
|
143
|
+
readonly disabled?: boolean | undefined;
|
|
144
|
+
readonly size?: string | undefined;
|
|
145
|
+
readonly labelAlign?: string | undefined;
|
|
146
|
+
readonly inputmode?: string | undefined;
|
|
147
|
+
readonly readonly?: boolean | undefined;
|
|
148
|
+
readonly noAutocomplete?: boolean | undefined;
|
|
149
|
+
readonly resizable?: boolean | undefined;
|
|
150
|
+
readonly rows?: string | number | undefined;
|
|
151
|
+
};
|
|
152
|
+
}, {}, {}, {}, 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 () => {
|
|
153
|
+
$slots: {
|
|
154
|
+
left?(_: {}): any;
|
|
155
|
+
right?(_: {}): any;
|
|
156
|
+
};
|
|
157
|
+
});
|
|
158
|
+
UIcon: import("vue").DefineComponent<{}, {
|
|
159
|
+
$emit: (event: "click", ...args: any[]) => void;
|
|
160
|
+
config: Record<string, any>;
|
|
161
|
+
name: string;
|
|
162
|
+
src: Record<string, any>;
|
|
163
|
+
tooltip: string;
|
|
164
|
+
tooltipSettings: Record<string, any>;
|
|
165
|
+
dataTest: string;
|
|
166
|
+
internal: boolean;
|
|
167
|
+
color?: string | undefined;
|
|
168
|
+
size?: string | undefined;
|
|
169
|
+
interactive?: boolean | undefined;
|
|
170
|
+
variant?: string | undefined;
|
|
171
|
+
$props: {
|
|
172
|
+
readonly config?: Record<string, any> | undefined;
|
|
173
|
+
readonly name?: string | undefined;
|
|
174
|
+
readonly src?: Record<string, any> | undefined;
|
|
175
|
+
readonly tooltip?: string | undefined;
|
|
176
|
+
readonly tooltipSettings?: Record<string, any> | undefined;
|
|
177
|
+
readonly dataTest?: string | undefined;
|
|
178
|
+
readonly internal?: boolean | undefined;
|
|
179
|
+
readonly color?: string | undefined;
|
|
180
|
+
readonly size?: string | undefined;
|
|
181
|
+
readonly interactive?: boolean | undefined;
|
|
182
|
+
readonly variant?: string | undefined;
|
|
183
|
+
};
|
|
184
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
185
|
+
};
|
|
186
|
+
setup(): {
|
|
187
|
+
args: any;
|
|
188
|
+
slots: any;
|
|
189
|
+
};
|
|
190
|
+
template: string;
|
|
191
|
+
};
|
|
192
|
+
export namespace Default {
|
|
193
|
+
let args_1: {};
|
|
194
|
+
export { args_1 as args };
|
|
195
|
+
}
|
|
196
|
+
export function LabelPlacement(args: any, { argTypes }?: {}): {
|
|
197
|
+
components: {
|
|
198
|
+
UTextarea: {
|
|
199
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
|
|
200
|
+
textareaRef: import("vue").Ref<null, null>;
|
|
201
|
+
$emit: (event: "focus" | "blur" | "change" | "click" | "mousedown" | "update:modelValue", ...args: any[]) => void;
|
|
202
|
+
label: string;
|
|
203
|
+
id: string;
|
|
204
|
+
description: string;
|
|
205
|
+
error: string;
|
|
206
|
+
config: Record<string, any>;
|
|
207
|
+
dataTest: string;
|
|
208
|
+
modelValue: string;
|
|
209
|
+
placeholder: string;
|
|
210
|
+
disabled?: boolean | undefined;
|
|
211
|
+
size?: string | undefined;
|
|
212
|
+
labelAlign?: string | undefined;
|
|
213
|
+
inputmode?: string | undefined;
|
|
214
|
+
readonly?: boolean | undefined;
|
|
215
|
+
noAutocomplete?: boolean | undefined;
|
|
216
|
+
resizable?: boolean | undefined;
|
|
217
|
+
rows?: string | number | undefined;
|
|
218
|
+
$props: {
|
|
219
|
+
readonly label?: string | undefined;
|
|
220
|
+
readonly id?: string | undefined;
|
|
221
|
+
readonly description?: string | undefined;
|
|
222
|
+
readonly error?: string | undefined;
|
|
223
|
+
readonly config?: Record<string, any> | undefined;
|
|
224
|
+
readonly dataTest?: string | undefined;
|
|
225
|
+
readonly modelValue?: string | undefined;
|
|
226
|
+
readonly placeholder?: string | undefined;
|
|
227
|
+
readonly disabled?: boolean | undefined;
|
|
228
|
+
readonly size?: string | undefined;
|
|
229
|
+
readonly labelAlign?: string | undefined;
|
|
230
|
+
readonly inputmode?: string | undefined;
|
|
231
|
+
readonly readonly?: boolean | undefined;
|
|
232
|
+
readonly noAutocomplete?: boolean | undefined;
|
|
233
|
+
readonly resizable?: boolean | undefined;
|
|
234
|
+
readonly rows?: string | number | undefined;
|
|
235
|
+
};
|
|
236
|
+
}, {}, {}, {}, 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, {
|
|
237
|
+
P: {};
|
|
238
|
+
B: {};
|
|
239
|
+
D: {};
|
|
240
|
+
C: {};
|
|
241
|
+
M: {};
|
|
242
|
+
Defaults: {};
|
|
243
|
+
}, Readonly<{}> & Readonly<{}>, {
|
|
244
|
+
textareaRef: import("vue").Ref<null, null>;
|
|
245
|
+
$emit: (event: "focus" | "blur" | "change" | "click" | "mousedown" | "update:modelValue", ...args: any[]) => void;
|
|
246
|
+
label: string;
|
|
247
|
+
id: string;
|
|
248
|
+
description: string;
|
|
249
|
+
error: string;
|
|
250
|
+
config: Record<string, any>;
|
|
251
|
+
dataTest: string;
|
|
252
|
+
modelValue: string;
|
|
253
|
+
placeholder: string;
|
|
254
|
+
disabled?: boolean | undefined;
|
|
255
|
+
size?: string | undefined;
|
|
256
|
+
labelAlign?: string | undefined;
|
|
257
|
+
inputmode?: string | undefined;
|
|
258
|
+
readonly?: boolean | undefined;
|
|
259
|
+
noAutocomplete?: boolean | undefined;
|
|
260
|
+
resizable?: boolean | undefined;
|
|
261
|
+
rows?: string | number | undefined;
|
|
262
|
+
$props: {
|
|
263
|
+
readonly label?: string | undefined;
|
|
264
|
+
readonly id?: string | undefined;
|
|
265
|
+
readonly description?: string | undefined;
|
|
266
|
+
readonly error?: string | undefined;
|
|
267
|
+
readonly config?: Record<string, any> | undefined;
|
|
268
|
+
readonly dataTest?: string | undefined;
|
|
269
|
+
readonly modelValue?: string | undefined;
|
|
270
|
+
readonly placeholder?: string | undefined;
|
|
271
|
+
readonly disabled?: boolean | undefined;
|
|
272
|
+
readonly size?: string | undefined;
|
|
273
|
+
readonly labelAlign?: string | undefined;
|
|
274
|
+
readonly inputmode?: string | undefined;
|
|
275
|
+
readonly readonly?: boolean | undefined;
|
|
276
|
+
readonly noAutocomplete?: boolean | undefined;
|
|
277
|
+
readonly resizable?: boolean | undefined;
|
|
278
|
+
readonly rows?: string | number | undefined;
|
|
279
|
+
};
|
|
280
|
+
}, {}, {}, {}, {}>;
|
|
281
|
+
__isFragment?: never;
|
|
282
|
+
__isTeleport?: never;
|
|
283
|
+
__isSuspense?: never;
|
|
284
|
+
} & import("vue").ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
|
|
285
|
+
textareaRef: import("vue").Ref<null, null>;
|
|
286
|
+
$emit: (event: "focus" | "blur" | "change" | "click" | "mousedown" | "update:modelValue", ...args: any[]) => void;
|
|
287
|
+
label: string;
|
|
288
|
+
id: string;
|
|
289
|
+
description: string;
|
|
290
|
+
error: string;
|
|
291
|
+
config: Record<string, any>;
|
|
292
|
+
dataTest: string;
|
|
293
|
+
modelValue: string;
|
|
294
|
+
placeholder: string;
|
|
295
|
+
disabled?: boolean | undefined;
|
|
296
|
+
size?: string | undefined;
|
|
297
|
+
labelAlign?: string | undefined;
|
|
298
|
+
inputmode?: string | undefined;
|
|
299
|
+
readonly?: boolean | undefined;
|
|
300
|
+
noAutocomplete?: boolean | undefined;
|
|
301
|
+
resizable?: boolean | undefined;
|
|
302
|
+
rows?: string | number | undefined;
|
|
303
|
+
$props: {
|
|
304
|
+
readonly label?: string | undefined;
|
|
305
|
+
readonly id?: string | undefined;
|
|
306
|
+
readonly description?: string | undefined;
|
|
307
|
+
readonly error?: string | undefined;
|
|
308
|
+
readonly config?: Record<string, any> | undefined;
|
|
309
|
+
readonly dataTest?: string | undefined;
|
|
310
|
+
readonly modelValue?: string | undefined;
|
|
311
|
+
readonly placeholder?: string | undefined;
|
|
312
|
+
readonly disabled?: boolean | undefined;
|
|
313
|
+
readonly size?: string | undefined;
|
|
314
|
+
readonly labelAlign?: string | undefined;
|
|
315
|
+
readonly inputmode?: string | undefined;
|
|
316
|
+
readonly readonly?: boolean | undefined;
|
|
317
|
+
readonly noAutocomplete?: boolean | undefined;
|
|
318
|
+
readonly resizable?: boolean | undefined;
|
|
319
|
+
readonly rows?: string | number | undefined;
|
|
320
|
+
};
|
|
321
|
+
}, {}, {}, {}, 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 () => {
|
|
322
|
+
$slots: {
|
|
323
|
+
left?(_: {}): any;
|
|
324
|
+
right?(_: {}): any;
|
|
325
|
+
};
|
|
326
|
+
});
|
|
327
|
+
UCol: {
|
|
328
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
|
|
329
|
+
config: Record<string, any>;
|
|
330
|
+
dataTest: string;
|
|
331
|
+
reverse?: boolean | undefined;
|
|
332
|
+
content?: string | undefined;
|
|
333
|
+
gap?: string | undefined;
|
|
334
|
+
align?: string | undefined;
|
|
335
|
+
justify?: string | undefined;
|
|
336
|
+
wrap?: boolean | undefined;
|
|
337
|
+
$props: {
|
|
338
|
+
readonly config?: Record<string, any> | undefined;
|
|
339
|
+
readonly dataTest?: string | undefined;
|
|
340
|
+
readonly reverse?: boolean | undefined;
|
|
341
|
+
readonly content?: string | undefined;
|
|
342
|
+
readonly gap?: string | undefined;
|
|
343
|
+
readonly align?: string | undefined;
|
|
344
|
+
readonly justify?: string | undefined;
|
|
345
|
+
readonly wrap?: boolean | undefined;
|
|
346
|
+
};
|
|
347
|
+
}, {}, {}, {}, 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, {
|
|
348
|
+
P: {};
|
|
349
|
+
B: {};
|
|
350
|
+
D: {};
|
|
351
|
+
C: {};
|
|
352
|
+
M: {};
|
|
353
|
+
Defaults: {};
|
|
354
|
+
}, Readonly<{}> & Readonly<{}>, {
|
|
355
|
+
config: Record<string, any>;
|
|
356
|
+
dataTest: string;
|
|
357
|
+
reverse?: boolean | undefined;
|
|
358
|
+
content?: string | undefined;
|
|
359
|
+
gap?: string | undefined;
|
|
360
|
+
align?: string | undefined;
|
|
361
|
+
justify?: string | undefined;
|
|
362
|
+
wrap?: boolean | undefined;
|
|
363
|
+
$props: {
|
|
364
|
+
readonly config?: Record<string, any> | undefined;
|
|
365
|
+
readonly dataTest?: string | undefined;
|
|
366
|
+
readonly reverse?: boolean | undefined;
|
|
367
|
+
readonly content?: string | undefined;
|
|
368
|
+
readonly gap?: string | undefined;
|
|
369
|
+
readonly align?: string | undefined;
|
|
370
|
+
readonly justify?: string | undefined;
|
|
371
|
+
readonly wrap?: boolean | undefined;
|
|
372
|
+
};
|
|
373
|
+
}, {}, {}, {}, {}>;
|
|
374
|
+
__isFragment?: never;
|
|
375
|
+
__isTeleport?: never;
|
|
376
|
+
__isSuspense?: never;
|
|
377
|
+
} & import("vue").ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
|
|
378
|
+
config: Record<string, any>;
|
|
379
|
+
dataTest: string;
|
|
380
|
+
reverse?: boolean | undefined;
|
|
381
|
+
content?: string | undefined;
|
|
382
|
+
gap?: string | undefined;
|
|
383
|
+
align?: string | undefined;
|
|
384
|
+
justify?: string | undefined;
|
|
385
|
+
wrap?: boolean | undefined;
|
|
386
|
+
$props: {
|
|
387
|
+
readonly config?: Record<string, any> | undefined;
|
|
388
|
+
readonly dataTest?: string | undefined;
|
|
389
|
+
readonly reverse?: boolean | undefined;
|
|
390
|
+
readonly content?: string | undefined;
|
|
391
|
+
readonly gap?: string | undefined;
|
|
392
|
+
readonly align?: string | undefined;
|
|
393
|
+
readonly justify?: string | undefined;
|
|
394
|
+
readonly wrap?: boolean | undefined;
|
|
395
|
+
};
|
|
396
|
+
}, {}, {}, {}, 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 () => {
|
|
397
|
+
$slots: {
|
|
398
|
+
default?(_: {}): any;
|
|
399
|
+
};
|
|
400
|
+
});
|
|
401
|
+
};
|
|
402
|
+
setup(): {
|
|
403
|
+
args: any;
|
|
404
|
+
options: any;
|
|
405
|
+
};
|
|
406
|
+
template: string;
|
|
407
|
+
};
|
|
408
|
+
export namespace LabelPlacement {
|
|
409
|
+
export namespace args_2 {
|
|
410
|
+
let _enum: string;
|
|
411
|
+
export { _enum as enum };
|
|
412
|
+
}
|
|
413
|
+
export { args_2 as args };
|
|
414
|
+
}
|
|
415
|
+
export function Placeholder(args: any): {
|
|
416
|
+
components: {
|
|
417
|
+
UTextarea: {
|
|
418
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
|
|
419
|
+
textareaRef: import("vue").Ref<null, null>;
|
|
420
|
+
$emit: (event: "focus" | "blur" | "change" | "click" | "mousedown" | "update:modelValue", ...args: any[]) => void;
|
|
421
|
+
label: string;
|
|
422
|
+
id: string;
|
|
423
|
+
description: string;
|
|
424
|
+
error: string;
|
|
425
|
+
config: Record<string, any>;
|
|
426
|
+
dataTest: string;
|
|
427
|
+
modelValue: string;
|
|
428
|
+
placeholder: string;
|
|
429
|
+
disabled?: boolean | undefined;
|
|
430
|
+
size?: string | undefined;
|
|
431
|
+
labelAlign?: string | undefined;
|
|
432
|
+
inputmode?: string | undefined;
|
|
433
|
+
readonly?: boolean | undefined;
|
|
434
|
+
noAutocomplete?: boolean | undefined;
|
|
435
|
+
resizable?: boolean | undefined;
|
|
436
|
+
rows?: string | number | undefined;
|
|
437
|
+
$props: {
|
|
438
|
+
readonly label?: string | undefined;
|
|
439
|
+
readonly id?: string | undefined;
|
|
440
|
+
readonly description?: string | undefined;
|
|
441
|
+
readonly error?: string | undefined;
|
|
442
|
+
readonly config?: Record<string, any> | undefined;
|
|
443
|
+
readonly dataTest?: string | undefined;
|
|
444
|
+
readonly modelValue?: string | undefined;
|
|
445
|
+
readonly placeholder?: string | undefined;
|
|
446
|
+
readonly disabled?: boolean | undefined;
|
|
447
|
+
readonly size?: string | undefined;
|
|
448
|
+
readonly labelAlign?: string | undefined;
|
|
449
|
+
readonly inputmode?: string | undefined;
|
|
450
|
+
readonly readonly?: boolean | undefined;
|
|
451
|
+
readonly noAutocomplete?: boolean | undefined;
|
|
452
|
+
readonly resizable?: boolean | undefined;
|
|
453
|
+
readonly rows?: string | number | undefined;
|
|
454
|
+
};
|
|
455
|
+
}, {}, {}, {}, 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, {
|
|
456
|
+
P: {};
|
|
457
|
+
B: {};
|
|
458
|
+
D: {};
|
|
459
|
+
C: {};
|
|
460
|
+
M: {};
|
|
461
|
+
Defaults: {};
|
|
462
|
+
}, Readonly<{}> & Readonly<{}>, {
|
|
463
|
+
textareaRef: import("vue").Ref<null, null>;
|
|
464
|
+
$emit: (event: "focus" | "blur" | "change" | "click" | "mousedown" | "update:modelValue", ...args: any[]) => void;
|
|
465
|
+
label: string;
|
|
466
|
+
id: string;
|
|
467
|
+
description: string;
|
|
468
|
+
error: string;
|
|
469
|
+
config: Record<string, any>;
|
|
470
|
+
dataTest: string;
|
|
471
|
+
modelValue: string;
|
|
472
|
+
placeholder: string;
|
|
473
|
+
disabled?: boolean | undefined;
|
|
474
|
+
size?: string | undefined;
|
|
475
|
+
labelAlign?: string | undefined;
|
|
476
|
+
inputmode?: string | undefined;
|
|
477
|
+
readonly?: boolean | undefined;
|
|
478
|
+
noAutocomplete?: boolean | undefined;
|
|
479
|
+
resizable?: boolean | undefined;
|
|
480
|
+
rows?: string | number | undefined;
|
|
481
|
+
$props: {
|
|
482
|
+
readonly label?: string | undefined;
|
|
483
|
+
readonly id?: string | undefined;
|
|
484
|
+
readonly description?: string | undefined;
|
|
485
|
+
readonly error?: string | undefined;
|
|
486
|
+
readonly config?: Record<string, any> | undefined;
|
|
487
|
+
readonly dataTest?: string | undefined;
|
|
488
|
+
readonly modelValue?: string | undefined;
|
|
489
|
+
readonly placeholder?: string | undefined;
|
|
490
|
+
readonly disabled?: boolean | undefined;
|
|
491
|
+
readonly size?: string | undefined;
|
|
492
|
+
readonly labelAlign?: string | undefined;
|
|
493
|
+
readonly inputmode?: string | undefined;
|
|
494
|
+
readonly readonly?: boolean | undefined;
|
|
495
|
+
readonly noAutocomplete?: boolean | undefined;
|
|
496
|
+
readonly resizable?: boolean | undefined;
|
|
497
|
+
readonly rows?: string | number | undefined;
|
|
498
|
+
};
|
|
499
|
+
}, {}, {}, {}, {}>;
|
|
500
|
+
__isFragment?: never;
|
|
501
|
+
__isTeleport?: never;
|
|
502
|
+
__isSuspense?: never;
|
|
503
|
+
} & import("vue").ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
|
|
504
|
+
textareaRef: import("vue").Ref<null, null>;
|
|
505
|
+
$emit: (event: "focus" | "blur" | "change" | "click" | "mousedown" | "update:modelValue", ...args: any[]) => void;
|
|
506
|
+
label: string;
|
|
507
|
+
id: string;
|
|
508
|
+
description: string;
|
|
509
|
+
error: string;
|
|
510
|
+
config: Record<string, any>;
|
|
511
|
+
dataTest: string;
|
|
512
|
+
modelValue: string;
|
|
513
|
+
placeholder: string;
|
|
514
|
+
disabled?: boolean | undefined;
|
|
515
|
+
size?: string | undefined;
|
|
516
|
+
labelAlign?: string | undefined;
|
|
517
|
+
inputmode?: string | undefined;
|
|
518
|
+
readonly?: boolean | undefined;
|
|
519
|
+
noAutocomplete?: boolean | undefined;
|
|
520
|
+
resizable?: boolean | undefined;
|
|
521
|
+
rows?: string | number | undefined;
|
|
522
|
+
$props: {
|
|
523
|
+
readonly label?: string | undefined;
|
|
524
|
+
readonly id?: string | undefined;
|
|
525
|
+
readonly description?: string | undefined;
|
|
526
|
+
readonly error?: string | undefined;
|
|
527
|
+
readonly config?: Record<string, any> | undefined;
|
|
528
|
+
readonly dataTest?: string | undefined;
|
|
529
|
+
readonly modelValue?: string | undefined;
|
|
530
|
+
readonly placeholder?: string | undefined;
|
|
531
|
+
readonly disabled?: boolean | undefined;
|
|
532
|
+
readonly size?: string | undefined;
|
|
533
|
+
readonly labelAlign?: string | undefined;
|
|
534
|
+
readonly inputmode?: string | undefined;
|
|
535
|
+
readonly readonly?: boolean | undefined;
|
|
536
|
+
readonly noAutocomplete?: boolean | undefined;
|
|
537
|
+
readonly resizable?: boolean | undefined;
|
|
538
|
+
readonly rows?: string | number | undefined;
|
|
539
|
+
};
|
|
540
|
+
}, {}, {}, {}, 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 () => {
|
|
541
|
+
$slots: {
|
|
542
|
+
left?(_: {}): any;
|
|
543
|
+
right?(_: {}): any;
|
|
544
|
+
};
|
|
545
|
+
});
|
|
546
|
+
UIcon: import("vue").DefineComponent<{}, {
|
|
547
|
+
$emit: (event: "click", ...args: any[]) => void;
|
|
548
|
+
config: Record<string, any>;
|
|
549
|
+
name: string;
|
|
550
|
+
src: Record<string, any>;
|
|
551
|
+
tooltip: string;
|
|
552
|
+
tooltipSettings: Record<string, any>;
|
|
553
|
+
dataTest: string;
|
|
554
|
+
internal: boolean;
|
|
555
|
+
color?: string | undefined;
|
|
556
|
+
size?: string | undefined;
|
|
557
|
+
interactive?: boolean | undefined;
|
|
558
|
+
variant?: string | undefined;
|
|
559
|
+
$props: {
|
|
560
|
+
readonly config?: Record<string, any> | undefined;
|
|
561
|
+
readonly name?: string | undefined;
|
|
562
|
+
readonly src?: Record<string, any> | undefined;
|
|
563
|
+
readonly tooltip?: string | undefined;
|
|
564
|
+
readonly tooltipSettings?: Record<string, any> | undefined;
|
|
565
|
+
readonly dataTest?: string | undefined;
|
|
566
|
+
readonly internal?: boolean | undefined;
|
|
567
|
+
readonly color?: string | undefined;
|
|
568
|
+
readonly size?: string | undefined;
|
|
569
|
+
readonly interactive?: boolean | undefined;
|
|
570
|
+
readonly variant?: string | undefined;
|
|
571
|
+
};
|
|
572
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
573
|
+
};
|
|
574
|
+
setup(): {
|
|
575
|
+
args: any;
|
|
576
|
+
slots: any;
|
|
577
|
+
};
|
|
578
|
+
template: string;
|
|
579
|
+
};
|
|
580
|
+
export namespace Placeholder {
|
|
581
|
+
export namespace args_3 {
|
|
582
|
+
let placeholder: string;
|
|
583
|
+
}
|
|
584
|
+
export { args_3 as args };
|
|
585
|
+
}
|
|
586
|
+
export function Disabled(args: any): {
|
|
587
|
+
components: {
|
|
588
|
+
UTextarea: {
|
|
589
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
|
|
590
|
+
textareaRef: import("vue").Ref<null, null>;
|
|
591
|
+
$emit: (event: "focus" | "blur" | "change" | "click" | "mousedown" | "update:modelValue", ...args: any[]) => void;
|
|
592
|
+
label: string;
|
|
593
|
+
id: string;
|
|
594
|
+
description: string;
|
|
595
|
+
error: string;
|
|
596
|
+
config: Record<string, any>;
|
|
597
|
+
dataTest: string;
|
|
598
|
+
modelValue: string;
|
|
599
|
+
placeholder: string;
|
|
600
|
+
disabled?: boolean | undefined;
|
|
601
|
+
size?: string | undefined;
|
|
602
|
+
labelAlign?: string | undefined;
|
|
603
|
+
inputmode?: string | undefined;
|
|
604
|
+
readonly?: boolean | undefined;
|
|
605
|
+
noAutocomplete?: boolean | undefined;
|
|
606
|
+
resizable?: boolean | undefined;
|
|
607
|
+
rows?: string | number | undefined;
|
|
608
|
+
$props: {
|
|
609
|
+
readonly label?: string | undefined;
|
|
610
|
+
readonly id?: string | undefined;
|
|
611
|
+
readonly description?: string | undefined;
|
|
612
|
+
readonly error?: string | undefined;
|
|
613
|
+
readonly config?: Record<string, any> | undefined;
|
|
614
|
+
readonly dataTest?: string | undefined;
|
|
615
|
+
readonly modelValue?: string | undefined;
|
|
616
|
+
readonly placeholder?: string | undefined;
|
|
617
|
+
readonly disabled?: boolean | undefined;
|
|
618
|
+
readonly size?: string | undefined;
|
|
619
|
+
readonly labelAlign?: string | undefined;
|
|
620
|
+
readonly inputmode?: string | undefined;
|
|
621
|
+
readonly readonly?: boolean | undefined;
|
|
622
|
+
readonly noAutocomplete?: boolean | undefined;
|
|
623
|
+
readonly resizable?: boolean | undefined;
|
|
624
|
+
readonly rows?: string | number | undefined;
|
|
625
|
+
};
|
|
626
|
+
}, {}, {}, {}, 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, {
|
|
627
|
+
P: {};
|
|
628
|
+
B: {};
|
|
629
|
+
D: {};
|
|
630
|
+
C: {};
|
|
631
|
+
M: {};
|
|
632
|
+
Defaults: {};
|
|
633
|
+
}, Readonly<{}> & Readonly<{}>, {
|
|
634
|
+
textareaRef: import("vue").Ref<null, null>;
|
|
635
|
+
$emit: (event: "focus" | "blur" | "change" | "click" | "mousedown" | "update:modelValue", ...args: any[]) => void;
|
|
636
|
+
label: string;
|
|
637
|
+
id: string;
|
|
638
|
+
description: string;
|
|
639
|
+
error: string;
|
|
640
|
+
config: Record<string, any>;
|
|
641
|
+
dataTest: string;
|
|
642
|
+
modelValue: string;
|
|
643
|
+
placeholder: string;
|
|
644
|
+
disabled?: boolean | undefined;
|
|
645
|
+
size?: string | undefined;
|
|
646
|
+
labelAlign?: string | undefined;
|
|
647
|
+
inputmode?: string | undefined;
|
|
648
|
+
readonly?: boolean | undefined;
|
|
649
|
+
noAutocomplete?: boolean | undefined;
|
|
650
|
+
resizable?: boolean | undefined;
|
|
651
|
+
rows?: string | number | undefined;
|
|
652
|
+
$props: {
|
|
653
|
+
readonly label?: string | undefined;
|
|
654
|
+
readonly id?: string | undefined;
|
|
655
|
+
readonly description?: string | undefined;
|
|
656
|
+
readonly error?: string | undefined;
|
|
657
|
+
readonly config?: Record<string, any> | undefined;
|
|
658
|
+
readonly dataTest?: string | undefined;
|
|
659
|
+
readonly modelValue?: string | undefined;
|
|
660
|
+
readonly placeholder?: string | undefined;
|
|
661
|
+
readonly disabled?: boolean | undefined;
|
|
662
|
+
readonly size?: string | undefined;
|
|
663
|
+
readonly labelAlign?: string | undefined;
|
|
664
|
+
readonly inputmode?: string | undefined;
|
|
665
|
+
readonly readonly?: boolean | undefined;
|
|
666
|
+
readonly noAutocomplete?: boolean | undefined;
|
|
667
|
+
readonly resizable?: boolean | undefined;
|
|
668
|
+
readonly rows?: string | number | undefined;
|
|
669
|
+
};
|
|
670
|
+
}, {}, {}, {}, {}>;
|
|
671
|
+
__isFragment?: never;
|
|
672
|
+
__isTeleport?: never;
|
|
673
|
+
__isSuspense?: never;
|
|
674
|
+
} & import("vue").ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
|
|
675
|
+
textareaRef: import("vue").Ref<null, null>;
|
|
676
|
+
$emit: (event: "focus" | "blur" | "change" | "click" | "mousedown" | "update:modelValue", ...args: any[]) => void;
|
|
677
|
+
label: string;
|
|
678
|
+
id: string;
|
|
679
|
+
description: string;
|
|
680
|
+
error: string;
|
|
681
|
+
config: Record<string, any>;
|
|
682
|
+
dataTest: string;
|
|
683
|
+
modelValue: string;
|
|
684
|
+
placeholder: string;
|
|
685
|
+
disabled?: boolean | undefined;
|
|
686
|
+
size?: string | undefined;
|
|
687
|
+
labelAlign?: string | undefined;
|
|
688
|
+
inputmode?: string | undefined;
|
|
689
|
+
readonly?: boolean | undefined;
|
|
690
|
+
noAutocomplete?: boolean | undefined;
|
|
691
|
+
resizable?: boolean | undefined;
|
|
692
|
+
rows?: string | number | undefined;
|
|
693
|
+
$props: {
|
|
694
|
+
readonly label?: string | undefined;
|
|
695
|
+
readonly id?: string | undefined;
|
|
696
|
+
readonly description?: string | undefined;
|
|
697
|
+
readonly error?: string | undefined;
|
|
698
|
+
readonly config?: Record<string, any> | undefined;
|
|
699
|
+
readonly dataTest?: string | undefined;
|
|
700
|
+
readonly modelValue?: string | undefined;
|
|
701
|
+
readonly placeholder?: string | undefined;
|
|
702
|
+
readonly disabled?: boolean | undefined;
|
|
703
|
+
readonly size?: string | undefined;
|
|
704
|
+
readonly labelAlign?: string | undefined;
|
|
705
|
+
readonly inputmode?: string | undefined;
|
|
706
|
+
readonly readonly?: boolean | undefined;
|
|
707
|
+
readonly noAutocomplete?: boolean | undefined;
|
|
708
|
+
readonly resizable?: boolean | undefined;
|
|
709
|
+
readonly rows?: string | number | undefined;
|
|
710
|
+
};
|
|
711
|
+
}, {}, {}, {}, 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 () => {
|
|
712
|
+
$slots: {
|
|
713
|
+
left?(_: {}): any;
|
|
714
|
+
right?(_: {}): any;
|
|
715
|
+
};
|
|
716
|
+
});
|
|
717
|
+
UIcon: import("vue").DefineComponent<{}, {
|
|
718
|
+
$emit: (event: "click", ...args: any[]) => void;
|
|
719
|
+
config: Record<string, any>;
|
|
720
|
+
name: string;
|
|
721
|
+
src: Record<string, any>;
|
|
722
|
+
tooltip: string;
|
|
723
|
+
tooltipSettings: Record<string, any>;
|
|
724
|
+
dataTest: string;
|
|
725
|
+
internal: boolean;
|
|
726
|
+
color?: string | undefined;
|
|
727
|
+
size?: string | undefined;
|
|
728
|
+
interactive?: boolean | undefined;
|
|
729
|
+
variant?: string | undefined;
|
|
730
|
+
$props: {
|
|
731
|
+
readonly config?: Record<string, any> | undefined;
|
|
732
|
+
readonly name?: string | undefined;
|
|
733
|
+
readonly src?: Record<string, any> | undefined;
|
|
734
|
+
readonly tooltip?: string | undefined;
|
|
735
|
+
readonly tooltipSettings?: Record<string, any> | undefined;
|
|
736
|
+
readonly dataTest?: string | undefined;
|
|
737
|
+
readonly internal?: boolean | undefined;
|
|
738
|
+
readonly color?: string | undefined;
|
|
739
|
+
readonly size?: string | undefined;
|
|
740
|
+
readonly interactive?: boolean | undefined;
|
|
741
|
+
readonly variant?: string | undefined;
|
|
742
|
+
};
|
|
743
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
744
|
+
};
|
|
745
|
+
setup(): {
|
|
746
|
+
args: any;
|
|
747
|
+
slots: any;
|
|
748
|
+
};
|
|
749
|
+
template: string;
|
|
750
|
+
};
|
|
751
|
+
export namespace Disabled {
|
|
752
|
+
export namespace args_4 {
|
|
753
|
+
let disabled: boolean;
|
|
754
|
+
}
|
|
755
|
+
export { args_4 as args };
|
|
756
|
+
}
|
|
757
|
+
export function Error(args: any): {
|
|
758
|
+
components: {
|
|
759
|
+
UTextarea: {
|
|
760
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
|
|
761
|
+
textareaRef: import("vue").Ref<null, null>;
|
|
762
|
+
$emit: (event: "focus" | "blur" | "change" | "click" | "mousedown" | "update:modelValue", ...args: any[]) => void;
|
|
763
|
+
label: string;
|
|
764
|
+
id: string;
|
|
765
|
+
description: string;
|
|
766
|
+
error: string;
|
|
767
|
+
config: Record<string, any>;
|
|
768
|
+
dataTest: string;
|
|
769
|
+
modelValue: string;
|
|
770
|
+
placeholder: string;
|
|
771
|
+
disabled?: boolean | undefined;
|
|
772
|
+
size?: string | undefined;
|
|
773
|
+
labelAlign?: string | undefined;
|
|
774
|
+
inputmode?: string | undefined;
|
|
775
|
+
readonly?: boolean | undefined;
|
|
776
|
+
noAutocomplete?: boolean | undefined;
|
|
777
|
+
resizable?: boolean | undefined;
|
|
778
|
+
rows?: string | number | undefined;
|
|
779
|
+
$props: {
|
|
780
|
+
readonly label?: string | undefined;
|
|
781
|
+
readonly id?: string | undefined;
|
|
782
|
+
readonly description?: string | undefined;
|
|
783
|
+
readonly error?: string | undefined;
|
|
784
|
+
readonly config?: Record<string, any> | undefined;
|
|
785
|
+
readonly dataTest?: string | undefined;
|
|
786
|
+
readonly modelValue?: string | undefined;
|
|
787
|
+
readonly placeholder?: string | undefined;
|
|
788
|
+
readonly disabled?: boolean | undefined;
|
|
789
|
+
readonly size?: string | undefined;
|
|
790
|
+
readonly labelAlign?: string | undefined;
|
|
791
|
+
readonly inputmode?: string | undefined;
|
|
792
|
+
readonly readonly?: boolean | undefined;
|
|
793
|
+
readonly noAutocomplete?: boolean | undefined;
|
|
794
|
+
readonly resizable?: boolean | undefined;
|
|
795
|
+
readonly rows?: string | number | undefined;
|
|
796
|
+
};
|
|
797
|
+
}, {}, {}, {}, 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, {
|
|
798
|
+
P: {};
|
|
799
|
+
B: {};
|
|
800
|
+
D: {};
|
|
801
|
+
C: {};
|
|
802
|
+
M: {};
|
|
803
|
+
Defaults: {};
|
|
804
|
+
}, Readonly<{}> & Readonly<{}>, {
|
|
805
|
+
textareaRef: import("vue").Ref<null, null>;
|
|
806
|
+
$emit: (event: "focus" | "blur" | "change" | "click" | "mousedown" | "update:modelValue", ...args: any[]) => void;
|
|
807
|
+
label: string;
|
|
808
|
+
id: string;
|
|
809
|
+
description: string;
|
|
810
|
+
error: string;
|
|
811
|
+
config: Record<string, any>;
|
|
812
|
+
dataTest: string;
|
|
813
|
+
modelValue: string;
|
|
814
|
+
placeholder: string;
|
|
815
|
+
disabled?: boolean | undefined;
|
|
816
|
+
size?: string | undefined;
|
|
817
|
+
labelAlign?: string | undefined;
|
|
818
|
+
inputmode?: string | undefined;
|
|
819
|
+
readonly?: boolean | undefined;
|
|
820
|
+
noAutocomplete?: boolean | undefined;
|
|
821
|
+
resizable?: boolean | undefined;
|
|
822
|
+
rows?: string | number | undefined;
|
|
823
|
+
$props: {
|
|
824
|
+
readonly label?: string | undefined;
|
|
825
|
+
readonly id?: string | undefined;
|
|
826
|
+
readonly description?: string | undefined;
|
|
827
|
+
readonly error?: string | undefined;
|
|
828
|
+
readonly config?: Record<string, any> | undefined;
|
|
829
|
+
readonly dataTest?: string | undefined;
|
|
830
|
+
readonly modelValue?: string | undefined;
|
|
831
|
+
readonly placeholder?: string | undefined;
|
|
832
|
+
readonly disabled?: boolean | undefined;
|
|
833
|
+
readonly size?: string | undefined;
|
|
834
|
+
readonly labelAlign?: string | undefined;
|
|
835
|
+
readonly inputmode?: string | undefined;
|
|
836
|
+
readonly readonly?: boolean | undefined;
|
|
837
|
+
readonly noAutocomplete?: boolean | undefined;
|
|
838
|
+
readonly resizable?: boolean | undefined;
|
|
839
|
+
readonly rows?: string | number | undefined;
|
|
840
|
+
};
|
|
841
|
+
}, {}, {}, {}, {}>;
|
|
842
|
+
__isFragment?: never;
|
|
843
|
+
__isTeleport?: never;
|
|
844
|
+
__isSuspense?: never;
|
|
845
|
+
} & import("vue").ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
|
|
846
|
+
textareaRef: import("vue").Ref<null, null>;
|
|
847
|
+
$emit: (event: "focus" | "blur" | "change" | "click" | "mousedown" | "update:modelValue", ...args: any[]) => void;
|
|
848
|
+
label: string;
|
|
849
|
+
id: string;
|
|
850
|
+
description: string;
|
|
851
|
+
error: string;
|
|
852
|
+
config: Record<string, any>;
|
|
853
|
+
dataTest: string;
|
|
854
|
+
modelValue: string;
|
|
855
|
+
placeholder: string;
|
|
856
|
+
disabled?: boolean | undefined;
|
|
857
|
+
size?: string | undefined;
|
|
858
|
+
labelAlign?: string | undefined;
|
|
859
|
+
inputmode?: string | undefined;
|
|
860
|
+
readonly?: boolean | undefined;
|
|
861
|
+
noAutocomplete?: boolean | undefined;
|
|
862
|
+
resizable?: boolean | undefined;
|
|
863
|
+
rows?: string | number | undefined;
|
|
864
|
+
$props: {
|
|
865
|
+
readonly label?: string | undefined;
|
|
866
|
+
readonly id?: string | undefined;
|
|
867
|
+
readonly description?: string | undefined;
|
|
868
|
+
readonly error?: string | undefined;
|
|
869
|
+
readonly config?: Record<string, any> | undefined;
|
|
870
|
+
readonly dataTest?: string | undefined;
|
|
871
|
+
readonly modelValue?: string | undefined;
|
|
872
|
+
readonly placeholder?: string | undefined;
|
|
873
|
+
readonly disabled?: boolean | undefined;
|
|
874
|
+
readonly size?: string | undefined;
|
|
875
|
+
readonly labelAlign?: string | undefined;
|
|
876
|
+
readonly inputmode?: string | undefined;
|
|
877
|
+
readonly readonly?: boolean | undefined;
|
|
878
|
+
readonly noAutocomplete?: boolean | undefined;
|
|
879
|
+
readonly resizable?: boolean | undefined;
|
|
880
|
+
readonly rows?: string | number | undefined;
|
|
881
|
+
};
|
|
882
|
+
}, {}, {}, {}, 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 () => {
|
|
883
|
+
$slots: {
|
|
884
|
+
left?(_: {}): any;
|
|
885
|
+
right?(_: {}): any;
|
|
886
|
+
};
|
|
887
|
+
});
|
|
888
|
+
UIcon: import("vue").DefineComponent<{}, {
|
|
889
|
+
$emit: (event: "click", ...args: any[]) => void;
|
|
890
|
+
config: Record<string, any>;
|
|
891
|
+
name: string;
|
|
892
|
+
src: Record<string, any>;
|
|
893
|
+
tooltip: string;
|
|
894
|
+
tooltipSettings: Record<string, any>;
|
|
895
|
+
dataTest: string;
|
|
896
|
+
internal: boolean;
|
|
897
|
+
color?: string | undefined;
|
|
898
|
+
size?: string | undefined;
|
|
899
|
+
interactive?: boolean | undefined;
|
|
900
|
+
variant?: string | undefined;
|
|
901
|
+
$props: {
|
|
902
|
+
readonly config?: Record<string, any> | undefined;
|
|
903
|
+
readonly name?: string | undefined;
|
|
904
|
+
readonly src?: Record<string, any> | undefined;
|
|
905
|
+
readonly tooltip?: string | undefined;
|
|
906
|
+
readonly tooltipSettings?: Record<string, any> | undefined;
|
|
907
|
+
readonly dataTest?: string | undefined;
|
|
908
|
+
readonly internal?: boolean | undefined;
|
|
909
|
+
readonly color?: string | undefined;
|
|
910
|
+
readonly size?: string | undefined;
|
|
911
|
+
readonly interactive?: boolean | undefined;
|
|
912
|
+
readonly variant?: string | undefined;
|
|
913
|
+
};
|
|
914
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
915
|
+
};
|
|
916
|
+
setup(): {
|
|
917
|
+
args: any;
|
|
918
|
+
slots: any;
|
|
919
|
+
};
|
|
920
|
+
template: string;
|
|
921
|
+
};
|
|
922
|
+
export namespace Error {
|
|
923
|
+
export namespace args_5 {
|
|
924
|
+
let error: string;
|
|
925
|
+
}
|
|
926
|
+
export { args_5 as args };
|
|
927
|
+
}
|
|
928
|
+
export function Description(args: any): {
|
|
929
|
+
components: {
|
|
930
|
+
UTextarea: {
|
|
931
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
|
|
932
|
+
textareaRef: import("vue").Ref<null, null>;
|
|
933
|
+
$emit: (event: "focus" | "blur" | "change" | "click" | "mousedown" | "update:modelValue", ...args: any[]) => void;
|
|
934
|
+
label: string;
|
|
935
|
+
id: string;
|
|
936
|
+
description: string;
|
|
937
|
+
error: string;
|
|
938
|
+
config: Record<string, any>;
|
|
939
|
+
dataTest: string;
|
|
940
|
+
modelValue: string;
|
|
941
|
+
placeholder: string;
|
|
942
|
+
disabled?: boolean | undefined;
|
|
943
|
+
size?: string | undefined;
|
|
944
|
+
labelAlign?: string | undefined;
|
|
945
|
+
inputmode?: string | undefined;
|
|
946
|
+
readonly?: boolean | undefined;
|
|
947
|
+
noAutocomplete?: boolean | undefined;
|
|
948
|
+
resizable?: boolean | undefined;
|
|
949
|
+
rows?: string | number | undefined;
|
|
950
|
+
$props: {
|
|
951
|
+
readonly label?: string | undefined;
|
|
952
|
+
readonly id?: string | undefined;
|
|
953
|
+
readonly description?: string | undefined;
|
|
954
|
+
readonly error?: string | undefined;
|
|
955
|
+
readonly config?: Record<string, any> | undefined;
|
|
956
|
+
readonly dataTest?: string | undefined;
|
|
957
|
+
readonly modelValue?: string | undefined;
|
|
958
|
+
readonly placeholder?: string | undefined;
|
|
959
|
+
readonly disabled?: boolean | undefined;
|
|
960
|
+
readonly size?: string | undefined;
|
|
961
|
+
readonly labelAlign?: string | undefined;
|
|
962
|
+
readonly inputmode?: string | undefined;
|
|
963
|
+
readonly readonly?: boolean | undefined;
|
|
964
|
+
readonly noAutocomplete?: boolean | undefined;
|
|
965
|
+
readonly resizable?: boolean | undefined;
|
|
966
|
+
readonly rows?: string | number | undefined;
|
|
967
|
+
};
|
|
968
|
+
}, {}, {}, {}, 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, {
|
|
969
|
+
P: {};
|
|
970
|
+
B: {};
|
|
971
|
+
D: {};
|
|
972
|
+
C: {};
|
|
973
|
+
M: {};
|
|
974
|
+
Defaults: {};
|
|
975
|
+
}, Readonly<{}> & Readonly<{}>, {
|
|
976
|
+
textareaRef: import("vue").Ref<null, null>;
|
|
977
|
+
$emit: (event: "focus" | "blur" | "change" | "click" | "mousedown" | "update:modelValue", ...args: any[]) => void;
|
|
978
|
+
label: string;
|
|
979
|
+
id: string;
|
|
980
|
+
description: string;
|
|
981
|
+
error: string;
|
|
982
|
+
config: Record<string, any>;
|
|
983
|
+
dataTest: string;
|
|
984
|
+
modelValue: string;
|
|
985
|
+
placeholder: string;
|
|
986
|
+
disabled?: boolean | undefined;
|
|
987
|
+
size?: string | undefined;
|
|
988
|
+
labelAlign?: string | undefined;
|
|
989
|
+
inputmode?: string | undefined;
|
|
990
|
+
readonly?: boolean | undefined;
|
|
991
|
+
noAutocomplete?: boolean | undefined;
|
|
992
|
+
resizable?: boolean | undefined;
|
|
993
|
+
rows?: string | number | undefined;
|
|
994
|
+
$props: {
|
|
995
|
+
readonly label?: string | undefined;
|
|
996
|
+
readonly id?: string | undefined;
|
|
997
|
+
readonly description?: string | undefined;
|
|
998
|
+
readonly error?: string | undefined;
|
|
999
|
+
readonly config?: Record<string, any> | undefined;
|
|
1000
|
+
readonly dataTest?: string | undefined;
|
|
1001
|
+
readonly modelValue?: string | undefined;
|
|
1002
|
+
readonly placeholder?: string | undefined;
|
|
1003
|
+
readonly disabled?: boolean | undefined;
|
|
1004
|
+
readonly size?: string | undefined;
|
|
1005
|
+
readonly labelAlign?: string | undefined;
|
|
1006
|
+
readonly inputmode?: string | undefined;
|
|
1007
|
+
readonly readonly?: boolean | undefined;
|
|
1008
|
+
readonly noAutocomplete?: boolean | undefined;
|
|
1009
|
+
readonly resizable?: boolean | undefined;
|
|
1010
|
+
readonly rows?: string | number | undefined;
|
|
1011
|
+
};
|
|
1012
|
+
}, {}, {}, {}, {}>;
|
|
1013
|
+
__isFragment?: never;
|
|
1014
|
+
__isTeleport?: never;
|
|
1015
|
+
__isSuspense?: never;
|
|
1016
|
+
} & import("vue").ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
|
|
1017
|
+
textareaRef: import("vue").Ref<null, null>;
|
|
1018
|
+
$emit: (event: "focus" | "blur" | "change" | "click" | "mousedown" | "update:modelValue", ...args: any[]) => void;
|
|
1019
|
+
label: string;
|
|
1020
|
+
id: string;
|
|
1021
|
+
description: string;
|
|
1022
|
+
error: string;
|
|
1023
|
+
config: Record<string, any>;
|
|
1024
|
+
dataTest: string;
|
|
1025
|
+
modelValue: string;
|
|
1026
|
+
placeholder: string;
|
|
1027
|
+
disabled?: boolean | undefined;
|
|
1028
|
+
size?: string | undefined;
|
|
1029
|
+
labelAlign?: string | undefined;
|
|
1030
|
+
inputmode?: string | undefined;
|
|
1031
|
+
readonly?: boolean | undefined;
|
|
1032
|
+
noAutocomplete?: boolean | undefined;
|
|
1033
|
+
resizable?: boolean | undefined;
|
|
1034
|
+
rows?: string | number | undefined;
|
|
1035
|
+
$props: {
|
|
1036
|
+
readonly label?: string | undefined;
|
|
1037
|
+
readonly id?: string | undefined;
|
|
1038
|
+
readonly description?: string | undefined;
|
|
1039
|
+
readonly error?: string | undefined;
|
|
1040
|
+
readonly config?: Record<string, any> | undefined;
|
|
1041
|
+
readonly dataTest?: string | undefined;
|
|
1042
|
+
readonly modelValue?: string | undefined;
|
|
1043
|
+
readonly placeholder?: string | undefined;
|
|
1044
|
+
readonly disabled?: boolean | undefined;
|
|
1045
|
+
readonly size?: string | undefined;
|
|
1046
|
+
readonly labelAlign?: string | undefined;
|
|
1047
|
+
readonly inputmode?: string | undefined;
|
|
1048
|
+
readonly readonly?: boolean | undefined;
|
|
1049
|
+
readonly noAutocomplete?: boolean | undefined;
|
|
1050
|
+
readonly resizable?: boolean | undefined;
|
|
1051
|
+
readonly rows?: string | number | undefined;
|
|
1052
|
+
};
|
|
1053
|
+
}, {}, {}, {}, 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 () => {
|
|
1054
|
+
$slots: {
|
|
1055
|
+
left?(_: {}): any;
|
|
1056
|
+
right?(_: {}): any;
|
|
1057
|
+
};
|
|
1058
|
+
});
|
|
1059
|
+
UIcon: import("vue").DefineComponent<{}, {
|
|
1060
|
+
$emit: (event: "click", ...args: any[]) => void;
|
|
1061
|
+
config: Record<string, any>;
|
|
1062
|
+
name: string;
|
|
1063
|
+
src: Record<string, any>;
|
|
1064
|
+
tooltip: string;
|
|
1065
|
+
tooltipSettings: Record<string, any>;
|
|
1066
|
+
dataTest: string;
|
|
1067
|
+
internal: boolean;
|
|
1068
|
+
color?: string | undefined;
|
|
1069
|
+
size?: string | undefined;
|
|
1070
|
+
interactive?: boolean | undefined;
|
|
1071
|
+
variant?: string | undefined;
|
|
1072
|
+
$props: {
|
|
1073
|
+
readonly config?: Record<string, any> | undefined;
|
|
1074
|
+
readonly name?: string | undefined;
|
|
1075
|
+
readonly src?: Record<string, any> | undefined;
|
|
1076
|
+
readonly tooltip?: string | undefined;
|
|
1077
|
+
readonly tooltipSettings?: Record<string, any> | undefined;
|
|
1078
|
+
readonly dataTest?: string | undefined;
|
|
1079
|
+
readonly internal?: boolean | undefined;
|
|
1080
|
+
readonly color?: string | undefined;
|
|
1081
|
+
readonly size?: string | undefined;
|
|
1082
|
+
readonly interactive?: boolean | undefined;
|
|
1083
|
+
readonly variant?: string | undefined;
|
|
1084
|
+
};
|
|
1085
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
1086
|
+
};
|
|
1087
|
+
setup(): {
|
|
1088
|
+
args: any;
|
|
1089
|
+
slots: any;
|
|
1090
|
+
};
|
|
1091
|
+
template: string;
|
|
1092
|
+
};
|
|
1093
|
+
export namespace Description {
|
|
1094
|
+
export namespace args_6 {
|
|
1095
|
+
let description: string;
|
|
1096
|
+
}
|
|
1097
|
+
export { args_6 as args };
|
|
1098
|
+
}
|
|
1099
|
+
export function Rows1(args: any): {
|
|
1100
|
+
components: {
|
|
1101
|
+
UTextarea: {
|
|
1102
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
|
|
1103
|
+
textareaRef: import("vue").Ref<null, null>;
|
|
1104
|
+
$emit: (event: "focus" | "blur" | "change" | "click" | "mousedown" | "update:modelValue", ...args: any[]) => void;
|
|
1105
|
+
label: string;
|
|
1106
|
+
id: string;
|
|
1107
|
+
description: string;
|
|
1108
|
+
error: string;
|
|
1109
|
+
config: Record<string, any>;
|
|
1110
|
+
dataTest: string;
|
|
1111
|
+
modelValue: string;
|
|
1112
|
+
placeholder: string;
|
|
1113
|
+
disabled?: boolean | undefined;
|
|
1114
|
+
size?: string | undefined;
|
|
1115
|
+
labelAlign?: string | undefined;
|
|
1116
|
+
inputmode?: string | undefined;
|
|
1117
|
+
readonly?: boolean | undefined;
|
|
1118
|
+
noAutocomplete?: boolean | undefined;
|
|
1119
|
+
resizable?: boolean | undefined;
|
|
1120
|
+
rows?: string | number | undefined;
|
|
1121
|
+
$props: {
|
|
1122
|
+
readonly label?: string | undefined;
|
|
1123
|
+
readonly id?: string | undefined;
|
|
1124
|
+
readonly description?: string | undefined;
|
|
1125
|
+
readonly error?: string | undefined;
|
|
1126
|
+
readonly config?: Record<string, any> | undefined;
|
|
1127
|
+
readonly dataTest?: string | undefined;
|
|
1128
|
+
readonly modelValue?: string | undefined;
|
|
1129
|
+
readonly placeholder?: string | undefined;
|
|
1130
|
+
readonly disabled?: boolean | undefined;
|
|
1131
|
+
readonly size?: string | undefined;
|
|
1132
|
+
readonly labelAlign?: string | undefined;
|
|
1133
|
+
readonly inputmode?: string | undefined;
|
|
1134
|
+
readonly readonly?: boolean | undefined;
|
|
1135
|
+
readonly noAutocomplete?: boolean | undefined;
|
|
1136
|
+
readonly resizable?: boolean | undefined;
|
|
1137
|
+
readonly rows?: string | number | undefined;
|
|
1138
|
+
};
|
|
1139
|
+
}, {}, {}, {}, 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, {
|
|
1140
|
+
P: {};
|
|
1141
|
+
B: {};
|
|
1142
|
+
D: {};
|
|
1143
|
+
C: {};
|
|
1144
|
+
M: {};
|
|
1145
|
+
Defaults: {};
|
|
1146
|
+
}, Readonly<{}> & Readonly<{}>, {
|
|
1147
|
+
textareaRef: import("vue").Ref<null, null>;
|
|
1148
|
+
$emit: (event: "focus" | "blur" | "change" | "click" | "mousedown" | "update:modelValue", ...args: any[]) => void;
|
|
1149
|
+
label: string;
|
|
1150
|
+
id: string;
|
|
1151
|
+
description: string;
|
|
1152
|
+
error: string;
|
|
1153
|
+
config: Record<string, any>;
|
|
1154
|
+
dataTest: string;
|
|
1155
|
+
modelValue: string;
|
|
1156
|
+
placeholder: string;
|
|
1157
|
+
disabled?: boolean | undefined;
|
|
1158
|
+
size?: string | undefined;
|
|
1159
|
+
labelAlign?: string | undefined;
|
|
1160
|
+
inputmode?: string | undefined;
|
|
1161
|
+
readonly?: boolean | undefined;
|
|
1162
|
+
noAutocomplete?: boolean | undefined;
|
|
1163
|
+
resizable?: boolean | undefined;
|
|
1164
|
+
rows?: string | number | undefined;
|
|
1165
|
+
$props: {
|
|
1166
|
+
readonly label?: string | undefined;
|
|
1167
|
+
readonly id?: string | undefined;
|
|
1168
|
+
readonly description?: string | undefined;
|
|
1169
|
+
readonly error?: string | undefined;
|
|
1170
|
+
readonly config?: Record<string, any> | undefined;
|
|
1171
|
+
readonly dataTest?: string | undefined;
|
|
1172
|
+
readonly modelValue?: string | undefined;
|
|
1173
|
+
readonly placeholder?: string | undefined;
|
|
1174
|
+
readonly disabled?: boolean | undefined;
|
|
1175
|
+
readonly size?: string | undefined;
|
|
1176
|
+
readonly labelAlign?: string | undefined;
|
|
1177
|
+
readonly inputmode?: string | undefined;
|
|
1178
|
+
readonly readonly?: boolean | undefined;
|
|
1179
|
+
readonly noAutocomplete?: boolean | undefined;
|
|
1180
|
+
readonly resizable?: boolean | undefined;
|
|
1181
|
+
readonly rows?: string | number | undefined;
|
|
1182
|
+
};
|
|
1183
|
+
}, {}, {}, {}, {}>;
|
|
1184
|
+
__isFragment?: never;
|
|
1185
|
+
__isTeleport?: never;
|
|
1186
|
+
__isSuspense?: never;
|
|
1187
|
+
} & import("vue").ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
|
|
1188
|
+
textareaRef: import("vue").Ref<null, null>;
|
|
1189
|
+
$emit: (event: "focus" | "blur" | "change" | "click" | "mousedown" | "update:modelValue", ...args: any[]) => void;
|
|
1190
|
+
label: string;
|
|
1191
|
+
id: string;
|
|
1192
|
+
description: string;
|
|
1193
|
+
error: string;
|
|
1194
|
+
config: Record<string, any>;
|
|
1195
|
+
dataTest: string;
|
|
1196
|
+
modelValue: string;
|
|
1197
|
+
placeholder: string;
|
|
1198
|
+
disabled?: boolean | undefined;
|
|
1199
|
+
size?: string | undefined;
|
|
1200
|
+
labelAlign?: string | undefined;
|
|
1201
|
+
inputmode?: string | undefined;
|
|
1202
|
+
readonly?: boolean | undefined;
|
|
1203
|
+
noAutocomplete?: boolean | undefined;
|
|
1204
|
+
resizable?: boolean | undefined;
|
|
1205
|
+
rows?: string | number | undefined;
|
|
1206
|
+
$props: {
|
|
1207
|
+
readonly label?: string | undefined;
|
|
1208
|
+
readonly id?: string | undefined;
|
|
1209
|
+
readonly description?: string | undefined;
|
|
1210
|
+
readonly error?: string | undefined;
|
|
1211
|
+
readonly config?: Record<string, any> | undefined;
|
|
1212
|
+
readonly dataTest?: string | undefined;
|
|
1213
|
+
readonly modelValue?: string | undefined;
|
|
1214
|
+
readonly placeholder?: string | undefined;
|
|
1215
|
+
readonly disabled?: boolean | undefined;
|
|
1216
|
+
readonly size?: string | undefined;
|
|
1217
|
+
readonly labelAlign?: string | undefined;
|
|
1218
|
+
readonly inputmode?: string | undefined;
|
|
1219
|
+
readonly readonly?: boolean | undefined;
|
|
1220
|
+
readonly noAutocomplete?: boolean | undefined;
|
|
1221
|
+
readonly resizable?: boolean | undefined;
|
|
1222
|
+
readonly rows?: string | number | undefined;
|
|
1223
|
+
};
|
|
1224
|
+
}, {}, {}, {}, 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 () => {
|
|
1225
|
+
$slots: {
|
|
1226
|
+
left?(_: {}): any;
|
|
1227
|
+
right?(_: {}): any;
|
|
1228
|
+
};
|
|
1229
|
+
});
|
|
1230
|
+
UIcon: import("vue").DefineComponent<{}, {
|
|
1231
|
+
$emit: (event: "click", ...args: any[]) => void;
|
|
1232
|
+
config: Record<string, any>;
|
|
1233
|
+
name: string;
|
|
1234
|
+
src: Record<string, any>;
|
|
1235
|
+
tooltip: string;
|
|
1236
|
+
tooltipSettings: Record<string, any>;
|
|
1237
|
+
dataTest: string;
|
|
1238
|
+
internal: boolean;
|
|
1239
|
+
color?: string | undefined;
|
|
1240
|
+
size?: string | undefined;
|
|
1241
|
+
interactive?: boolean | undefined;
|
|
1242
|
+
variant?: string | undefined;
|
|
1243
|
+
$props: {
|
|
1244
|
+
readonly config?: Record<string, any> | undefined;
|
|
1245
|
+
readonly name?: string | undefined;
|
|
1246
|
+
readonly src?: Record<string, any> | undefined;
|
|
1247
|
+
readonly tooltip?: string | undefined;
|
|
1248
|
+
readonly tooltipSettings?: Record<string, any> | undefined;
|
|
1249
|
+
readonly dataTest?: string | undefined;
|
|
1250
|
+
readonly internal?: boolean | undefined;
|
|
1251
|
+
readonly color?: string | undefined;
|
|
1252
|
+
readonly size?: string | undefined;
|
|
1253
|
+
readonly interactive?: boolean | undefined;
|
|
1254
|
+
readonly variant?: string | undefined;
|
|
1255
|
+
};
|
|
1256
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
1257
|
+
};
|
|
1258
|
+
setup(): {
|
|
1259
|
+
args: any;
|
|
1260
|
+
slots: any;
|
|
1261
|
+
};
|
|
1262
|
+
template: string;
|
|
1263
|
+
};
|
|
1264
|
+
export namespace Rows1 {
|
|
1265
|
+
export namespace args_7 {
|
|
1266
|
+
let rows: string;
|
|
1267
|
+
}
|
|
1268
|
+
export { args_7 as args };
|
|
1269
|
+
}
|
|
1270
|
+
export function Readonly(args: any): {
|
|
1271
|
+
components: {
|
|
1272
|
+
UTextarea: {
|
|
1273
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
|
|
1274
|
+
textareaRef: import("vue").Ref<null, null>;
|
|
1275
|
+
$emit: (event: "focus" | "blur" | "change" | "click" | "mousedown" | "update:modelValue", ...args: any[]) => void;
|
|
1276
|
+
label: string;
|
|
1277
|
+
id: string;
|
|
1278
|
+
description: string;
|
|
1279
|
+
error: string;
|
|
1280
|
+
config: Record<string, any>;
|
|
1281
|
+
dataTest: string;
|
|
1282
|
+
modelValue: string;
|
|
1283
|
+
placeholder: string;
|
|
1284
|
+
disabled?: boolean | undefined;
|
|
1285
|
+
size?: string | undefined;
|
|
1286
|
+
labelAlign?: string | undefined;
|
|
1287
|
+
inputmode?: string | undefined;
|
|
1288
|
+
readonly?: boolean | undefined;
|
|
1289
|
+
noAutocomplete?: boolean | undefined;
|
|
1290
|
+
resizable?: boolean | undefined;
|
|
1291
|
+
rows?: string | number | undefined;
|
|
1292
|
+
$props: {
|
|
1293
|
+
readonly label?: string | undefined;
|
|
1294
|
+
readonly id?: string | undefined;
|
|
1295
|
+
readonly description?: string | undefined;
|
|
1296
|
+
readonly error?: string | undefined;
|
|
1297
|
+
readonly config?: Record<string, any> | undefined;
|
|
1298
|
+
readonly dataTest?: string | undefined;
|
|
1299
|
+
readonly modelValue?: string | undefined;
|
|
1300
|
+
readonly placeholder?: string | undefined;
|
|
1301
|
+
readonly disabled?: boolean | undefined;
|
|
1302
|
+
readonly size?: string | undefined;
|
|
1303
|
+
readonly labelAlign?: string | undefined;
|
|
1304
|
+
readonly inputmode?: string | undefined;
|
|
1305
|
+
readonly readonly?: boolean | undefined;
|
|
1306
|
+
readonly noAutocomplete?: boolean | undefined;
|
|
1307
|
+
readonly resizable?: boolean | undefined;
|
|
1308
|
+
readonly rows?: string | number | undefined;
|
|
1309
|
+
};
|
|
1310
|
+
}, {}, {}, {}, 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, {
|
|
1311
|
+
P: {};
|
|
1312
|
+
B: {};
|
|
1313
|
+
D: {};
|
|
1314
|
+
C: {};
|
|
1315
|
+
M: {};
|
|
1316
|
+
Defaults: {};
|
|
1317
|
+
}, Readonly<{}> & Readonly<{}>, {
|
|
1318
|
+
textareaRef: import("vue").Ref<null, null>;
|
|
1319
|
+
$emit: (event: "focus" | "blur" | "change" | "click" | "mousedown" | "update:modelValue", ...args: any[]) => void;
|
|
1320
|
+
label: string;
|
|
1321
|
+
id: string;
|
|
1322
|
+
description: string;
|
|
1323
|
+
error: string;
|
|
1324
|
+
config: Record<string, any>;
|
|
1325
|
+
dataTest: string;
|
|
1326
|
+
modelValue: string;
|
|
1327
|
+
placeholder: string;
|
|
1328
|
+
disabled?: boolean | undefined;
|
|
1329
|
+
size?: string | undefined;
|
|
1330
|
+
labelAlign?: string | undefined;
|
|
1331
|
+
inputmode?: string | undefined;
|
|
1332
|
+
readonly?: boolean | undefined;
|
|
1333
|
+
noAutocomplete?: boolean | undefined;
|
|
1334
|
+
resizable?: boolean | undefined;
|
|
1335
|
+
rows?: string | number | undefined;
|
|
1336
|
+
$props: {
|
|
1337
|
+
readonly label?: string | undefined;
|
|
1338
|
+
readonly id?: string | undefined;
|
|
1339
|
+
readonly description?: string | undefined;
|
|
1340
|
+
readonly error?: string | undefined;
|
|
1341
|
+
readonly config?: Record<string, any> | undefined;
|
|
1342
|
+
readonly dataTest?: string | undefined;
|
|
1343
|
+
readonly modelValue?: string | undefined;
|
|
1344
|
+
readonly placeholder?: string | undefined;
|
|
1345
|
+
readonly disabled?: boolean | undefined;
|
|
1346
|
+
readonly size?: string | undefined;
|
|
1347
|
+
readonly labelAlign?: string | undefined;
|
|
1348
|
+
readonly inputmode?: string | undefined;
|
|
1349
|
+
readonly readonly?: boolean | undefined;
|
|
1350
|
+
readonly noAutocomplete?: boolean | undefined;
|
|
1351
|
+
readonly resizable?: boolean | undefined;
|
|
1352
|
+
readonly rows?: string | number | undefined;
|
|
1353
|
+
};
|
|
1354
|
+
}, {}, {}, {}, {}>;
|
|
1355
|
+
__isFragment?: never;
|
|
1356
|
+
__isTeleport?: never;
|
|
1357
|
+
__isSuspense?: never;
|
|
1358
|
+
} & import("vue").ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
|
|
1359
|
+
textareaRef: import("vue").Ref<null, null>;
|
|
1360
|
+
$emit: (event: "focus" | "blur" | "change" | "click" | "mousedown" | "update:modelValue", ...args: any[]) => void;
|
|
1361
|
+
label: string;
|
|
1362
|
+
id: string;
|
|
1363
|
+
description: string;
|
|
1364
|
+
error: string;
|
|
1365
|
+
config: Record<string, any>;
|
|
1366
|
+
dataTest: string;
|
|
1367
|
+
modelValue: string;
|
|
1368
|
+
placeholder: string;
|
|
1369
|
+
disabled?: boolean | undefined;
|
|
1370
|
+
size?: string | undefined;
|
|
1371
|
+
labelAlign?: string | undefined;
|
|
1372
|
+
inputmode?: string | undefined;
|
|
1373
|
+
readonly?: boolean | undefined;
|
|
1374
|
+
noAutocomplete?: boolean | undefined;
|
|
1375
|
+
resizable?: boolean | undefined;
|
|
1376
|
+
rows?: string | number | undefined;
|
|
1377
|
+
$props: {
|
|
1378
|
+
readonly label?: string | undefined;
|
|
1379
|
+
readonly id?: string | undefined;
|
|
1380
|
+
readonly description?: string | undefined;
|
|
1381
|
+
readonly error?: string | undefined;
|
|
1382
|
+
readonly config?: Record<string, any> | undefined;
|
|
1383
|
+
readonly dataTest?: string | undefined;
|
|
1384
|
+
readonly modelValue?: string | undefined;
|
|
1385
|
+
readonly placeholder?: string | undefined;
|
|
1386
|
+
readonly disabled?: boolean | undefined;
|
|
1387
|
+
readonly size?: string | undefined;
|
|
1388
|
+
readonly labelAlign?: string | undefined;
|
|
1389
|
+
readonly inputmode?: string | undefined;
|
|
1390
|
+
readonly readonly?: boolean | undefined;
|
|
1391
|
+
readonly noAutocomplete?: boolean | undefined;
|
|
1392
|
+
readonly resizable?: boolean | undefined;
|
|
1393
|
+
readonly rows?: string | number | undefined;
|
|
1394
|
+
};
|
|
1395
|
+
}, {}, {}, {}, 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 () => {
|
|
1396
|
+
$slots: {
|
|
1397
|
+
left?(_: {}): any;
|
|
1398
|
+
right?(_: {}): any;
|
|
1399
|
+
};
|
|
1400
|
+
});
|
|
1401
|
+
UIcon: import("vue").DefineComponent<{}, {
|
|
1402
|
+
$emit: (event: "click", ...args: any[]) => void;
|
|
1403
|
+
config: Record<string, any>;
|
|
1404
|
+
name: string;
|
|
1405
|
+
src: Record<string, any>;
|
|
1406
|
+
tooltip: string;
|
|
1407
|
+
tooltipSettings: Record<string, any>;
|
|
1408
|
+
dataTest: string;
|
|
1409
|
+
internal: boolean;
|
|
1410
|
+
color?: string | undefined;
|
|
1411
|
+
size?: string | undefined;
|
|
1412
|
+
interactive?: boolean | undefined;
|
|
1413
|
+
variant?: string | undefined;
|
|
1414
|
+
$props: {
|
|
1415
|
+
readonly config?: Record<string, any> | undefined;
|
|
1416
|
+
readonly name?: string | undefined;
|
|
1417
|
+
readonly src?: Record<string, any> | undefined;
|
|
1418
|
+
readonly tooltip?: string | undefined;
|
|
1419
|
+
readonly tooltipSettings?: Record<string, any> | undefined;
|
|
1420
|
+
readonly dataTest?: string | undefined;
|
|
1421
|
+
readonly internal?: boolean | undefined;
|
|
1422
|
+
readonly color?: string | undefined;
|
|
1423
|
+
readonly size?: string | undefined;
|
|
1424
|
+
readonly interactive?: boolean | undefined;
|
|
1425
|
+
readonly variant?: string | undefined;
|
|
1426
|
+
};
|
|
1427
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
1428
|
+
};
|
|
1429
|
+
setup(): {
|
|
1430
|
+
args: any;
|
|
1431
|
+
slots: any;
|
|
1432
|
+
};
|
|
1433
|
+
template: string;
|
|
1434
|
+
};
|
|
1435
|
+
export namespace Readonly {
|
|
1436
|
+
export namespace args_8 {
|
|
1437
|
+
let readonly: boolean;
|
|
1438
|
+
let value: string;
|
|
1439
|
+
}
|
|
1440
|
+
export { args_8 as args };
|
|
1441
|
+
}
|
|
1442
|
+
export function NoAutocomplete(args: any): {
|
|
1443
|
+
components: {
|
|
1444
|
+
UTextarea: {
|
|
1445
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
|
|
1446
|
+
textareaRef: import("vue").Ref<null, null>;
|
|
1447
|
+
$emit: (event: "focus" | "blur" | "change" | "click" | "mousedown" | "update:modelValue", ...args: any[]) => void;
|
|
1448
|
+
label: string;
|
|
1449
|
+
id: string;
|
|
1450
|
+
description: string;
|
|
1451
|
+
error: string;
|
|
1452
|
+
config: Record<string, any>;
|
|
1453
|
+
dataTest: string;
|
|
1454
|
+
modelValue: string;
|
|
1455
|
+
placeholder: string;
|
|
1456
|
+
disabled?: boolean | undefined;
|
|
1457
|
+
size?: string | undefined;
|
|
1458
|
+
labelAlign?: string | undefined;
|
|
1459
|
+
inputmode?: string | undefined;
|
|
1460
|
+
readonly?: boolean | undefined;
|
|
1461
|
+
noAutocomplete?: boolean | undefined;
|
|
1462
|
+
resizable?: boolean | undefined;
|
|
1463
|
+
rows?: string | number | undefined;
|
|
1464
|
+
$props: {
|
|
1465
|
+
readonly label?: string | undefined;
|
|
1466
|
+
readonly id?: string | undefined;
|
|
1467
|
+
readonly description?: string | undefined;
|
|
1468
|
+
readonly error?: string | undefined;
|
|
1469
|
+
readonly config?: Record<string, any> | undefined;
|
|
1470
|
+
readonly dataTest?: string | undefined;
|
|
1471
|
+
readonly modelValue?: string | undefined;
|
|
1472
|
+
readonly placeholder?: string | undefined;
|
|
1473
|
+
readonly disabled?: boolean | undefined;
|
|
1474
|
+
readonly size?: string | undefined;
|
|
1475
|
+
readonly labelAlign?: string | undefined;
|
|
1476
|
+
readonly inputmode?: string | undefined;
|
|
1477
|
+
readonly readonly?: boolean | undefined;
|
|
1478
|
+
readonly noAutocomplete?: boolean | undefined;
|
|
1479
|
+
readonly resizable?: boolean | undefined;
|
|
1480
|
+
readonly rows?: string | number | undefined;
|
|
1481
|
+
};
|
|
1482
|
+
}, {}, {}, {}, 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, {
|
|
1483
|
+
P: {};
|
|
1484
|
+
B: {};
|
|
1485
|
+
D: {};
|
|
1486
|
+
C: {};
|
|
1487
|
+
M: {};
|
|
1488
|
+
Defaults: {};
|
|
1489
|
+
}, Readonly<{}> & Readonly<{}>, {
|
|
1490
|
+
textareaRef: import("vue").Ref<null, null>;
|
|
1491
|
+
$emit: (event: "focus" | "blur" | "change" | "click" | "mousedown" | "update:modelValue", ...args: any[]) => void;
|
|
1492
|
+
label: string;
|
|
1493
|
+
id: string;
|
|
1494
|
+
description: string;
|
|
1495
|
+
error: string;
|
|
1496
|
+
config: Record<string, any>;
|
|
1497
|
+
dataTest: string;
|
|
1498
|
+
modelValue: string;
|
|
1499
|
+
placeholder: string;
|
|
1500
|
+
disabled?: boolean | undefined;
|
|
1501
|
+
size?: string | undefined;
|
|
1502
|
+
labelAlign?: string | undefined;
|
|
1503
|
+
inputmode?: string | undefined;
|
|
1504
|
+
readonly?: boolean | undefined;
|
|
1505
|
+
noAutocomplete?: boolean | undefined;
|
|
1506
|
+
resizable?: boolean | undefined;
|
|
1507
|
+
rows?: string | number | undefined;
|
|
1508
|
+
$props: {
|
|
1509
|
+
readonly label?: string | undefined;
|
|
1510
|
+
readonly id?: string | undefined;
|
|
1511
|
+
readonly description?: string | undefined;
|
|
1512
|
+
readonly error?: string | undefined;
|
|
1513
|
+
readonly config?: Record<string, any> | undefined;
|
|
1514
|
+
readonly dataTest?: string | undefined;
|
|
1515
|
+
readonly modelValue?: string | undefined;
|
|
1516
|
+
readonly placeholder?: string | undefined;
|
|
1517
|
+
readonly disabled?: boolean | undefined;
|
|
1518
|
+
readonly size?: string | undefined;
|
|
1519
|
+
readonly labelAlign?: string | undefined;
|
|
1520
|
+
readonly inputmode?: string | undefined;
|
|
1521
|
+
readonly readonly?: boolean | undefined;
|
|
1522
|
+
readonly noAutocomplete?: boolean | undefined;
|
|
1523
|
+
readonly resizable?: boolean | undefined;
|
|
1524
|
+
readonly rows?: string | number | undefined;
|
|
1525
|
+
};
|
|
1526
|
+
}, {}, {}, {}, {}>;
|
|
1527
|
+
__isFragment?: never;
|
|
1528
|
+
__isTeleport?: never;
|
|
1529
|
+
__isSuspense?: never;
|
|
1530
|
+
} & import("vue").ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
|
|
1531
|
+
textareaRef: import("vue").Ref<null, null>;
|
|
1532
|
+
$emit: (event: "focus" | "blur" | "change" | "click" | "mousedown" | "update:modelValue", ...args: any[]) => void;
|
|
1533
|
+
label: string;
|
|
1534
|
+
id: string;
|
|
1535
|
+
description: string;
|
|
1536
|
+
error: string;
|
|
1537
|
+
config: Record<string, any>;
|
|
1538
|
+
dataTest: string;
|
|
1539
|
+
modelValue: string;
|
|
1540
|
+
placeholder: string;
|
|
1541
|
+
disabled?: boolean | undefined;
|
|
1542
|
+
size?: string | undefined;
|
|
1543
|
+
labelAlign?: string | undefined;
|
|
1544
|
+
inputmode?: string | undefined;
|
|
1545
|
+
readonly?: boolean | undefined;
|
|
1546
|
+
noAutocomplete?: boolean | undefined;
|
|
1547
|
+
resizable?: boolean | undefined;
|
|
1548
|
+
rows?: string | number | undefined;
|
|
1549
|
+
$props: {
|
|
1550
|
+
readonly label?: string | undefined;
|
|
1551
|
+
readonly id?: string | undefined;
|
|
1552
|
+
readonly description?: string | undefined;
|
|
1553
|
+
readonly error?: string | undefined;
|
|
1554
|
+
readonly config?: Record<string, any> | undefined;
|
|
1555
|
+
readonly dataTest?: string | undefined;
|
|
1556
|
+
readonly modelValue?: string | undefined;
|
|
1557
|
+
readonly placeholder?: string | undefined;
|
|
1558
|
+
readonly disabled?: boolean | undefined;
|
|
1559
|
+
readonly size?: string | undefined;
|
|
1560
|
+
readonly labelAlign?: string | undefined;
|
|
1561
|
+
readonly inputmode?: string | undefined;
|
|
1562
|
+
readonly readonly?: boolean | undefined;
|
|
1563
|
+
readonly noAutocomplete?: boolean | undefined;
|
|
1564
|
+
readonly resizable?: boolean | undefined;
|
|
1565
|
+
readonly rows?: string | number | undefined;
|
|
1566
|
+
};
|
|
1567
|
+
}, {}, {}, {}, 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 () => {
|
|
1568
|
+
$slots: {
|
|
1569
|
+
left?(_: {}): any;
|
|
1570
|
+
right?(_: {}): any;
|
|
1571
|
+
};
|
|
1572
|
+
});
|
|
1573
|
+
UIcon: import("vue").DefineComponent<{}, {
|
|
1574
|
+
$emit: (event: "click", ...args: any[]) => void;
|
|
1575
|
+
config: Record<string, any>;
|
|
1576
|
+
name: string;
|
|
1577
|
+
src: Record<string, any>;
|
|
1578
|
+
tooltip: string;
|
|
1579
|
+
tooltipSettings: Record<string, any>;
|
|
1580
|
+
dataTest: string;
|
|
1581
|
+
internal: boolean;
|
|
1582
|
+
color?: string | undefined;
|
|
1583
|
+
size?: string | undefined;
|
|
1584
|
+
interactive?: boolean | undefined;
|
|
1585
|
+
variant?: string | undefined;
|
|
1586
|
+
$props: {
|
|
1587
|
+
readonly config?: Record<string, any> | undefined;
|
|
1588
|
+
readonly name?: string | undefined;
|
|
1589
|
+
readonly src?: Record<string, any> | undefined;
|
|
1590
|
+
readonly tooltip?: string | undefined;
|
|
1591
|
+
readonly tooltipSettings?: Record<string, any> | undefined;
|
|
1592
|
+
readonly dataTest?: string | undefined;
|
|
1593
|
+
readonly internal?: boolean | undefined;
|
|
1594
|
+
readonly color?: string | undefined;
|
|
1595
|
+
readonly size?: string | undefined;
|
|
1596
|
+
readonly interactive?: boolean | undefined;
|
|
1597
|
+
readonly variant?: string | undefined;
|
|
1598
|
+
};
|
|
1599
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
1600
|
+
};
|
|
1601
|
+
setup(): {
|
|
1602
|
+
args: any;
|
|
1603
|
+
slots: any;
|
|
1604
|
+
};
|
|
1605
|
+
template: string;
|
|
1606
|
+
};
|
|
1607
|
+
export namespace NoAutocomplete {
|
|
1608
|
+
export namespace args_9 {
|
|
1609
|
+
let noAutocomplete: boolean;
|
|
1610
|
+
}
|
|
1611
|
+
export { args_9 as args };
|
|
1612
|
+
}
|
|
1613
|
+
export function Sizes(args: any, { argTypes }?: {}): {
|
|
1614
|
+
components: {
|
|
1615
|
+
UTextarea: {
|
|
1616
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
|
|
1617
|
+
textareaRef: import("vue").Ref<null, null>;
|
|
1618
|
+
$emit: (event: "focus" | "blur" | "change" | "click" | "mousedown" | "update:modelValue", ...args: any[]) => void;
|
|
1619
|
+
label: string;
|
|
1620
|
+
id: string;
|
|
1621
|
+
description: string;
|
|
1622
|
+
error: string;
|
|
1623
|
+
config: Record<string, any>;
|
|
1624
|
+
dataTest: string;
|
|
1625
|
+
modelValue: string;
|
|
1626
|
+
placeholder: string;
|
|
1627
|
+
disabled?: boolean | undefined;
|
|
1628
|
+
size?: string | undefined;
|
|
1629
|
+
labelAlign?: string | undefined;
|
|
1630
|
+
inputmode?: string | undefined;
|
|
1631
|
+
readonly?: boolean | undefined;
|
|
1632
|
+
noAutocomplete?: boolean | undefined;
|
|
1633
|
+
resizable?: boolean | undefined;
|
|
1634
|
+
rows?: string | number | undefined;
|
|
1635
|
+
$props: {
|
|
1636
|
+
readonly label?: string | undefined;
|
|
1637
|
+
readonly id?: string | undefined;
|
|
1638
|
+
readonly description?: string | undefined;
|
|
1639
|
+
readonly error?: string | undefined;
|
|
1640
|
+
readonly config?: Record<string, any> | undefined;
|
|
1641
|
+
readonly dataTest?: string | undefined;
|
|
1642
|
+
readonly modelValue?: string | undefined;
|
|
1643
|
+
readonly placeholder?: string | undefined;
|
|
1644
|
+
readonly disabled?: boolean | undefined;
|
|
1645
|
+
readonly size?: string | undefined;
|
|
1646
|
+
readonly labelAlign?: string | undefined;
|
|
1647
|
+
readonly inputmode?: string | undefined;
|
|
1648
|
+
readonly readonly?: boolean | undefined;
|
|
1649
|
+
readonly noAutocomplete?: boolean | undefined;
|
|
1650
|
+
readonly resizable?: boolean | undefined;
|
|
1651
|
+
readonly rows?: string | number | undefined;
|
|
1652
|
+
};
|
|
1653
|
+
}, {}, {}, {}, 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, {
|
|
1654
|
+
P: {};
|
|
1655
|
+
B: {};
|
|
1656
|
+
D: {};
|
|
1657
|
+
C: {};
|
|
1658
|
+
M: {};
|
|
1659
|
+
Defaults: {};
|
|
1660
|
+
}, Readonly<{}> & Readonly<{}>, {
|
|
1661
|
+
textareaRef: import("vue").Ref<null, null>;
|
|
1662
|
+
$emit: (event: "focus" | "blur" | "change" | "click" | "mousedown" | "update:modelValue", ...args: any[]) => void;
|
|
1663
|
+
label: string;
|
|
1664
|
+
id: string;
|
|
1665
|
+
description: string;
|
|
1666
|
+
error: string;
|
|
1667
|
+
config: Record<string, any>;
|
|
1668
|
+
dataTest: string;
|
|
1669
|
+
modelValue: string;
|
|
1670
|
+
placeholder: string;
|
|
1671
|
+
disabled?: boolean | undefined;
|
|
1672
|
+
size?: string | undefined;
|
|
1673
|
+
labelAlign?: string | undefined;
|
|
1674
|
+
inputmode?: string | undefined;
|
|
1675
|
+
readonly?: boolean | undefined;
|
|
1676
|
+
noAutocomplete?: boolean | undefined;
|
|
1677
|
+
resizable?: boolean | undefined;
|
|
1678
|
+
rows?: string | number | undefined;
|
|
1679
|
+
$props: {
|
|
1680
|
+
readonly label?: string | undefined;
|
|
1681
|
+
readonly id?: string | undefined;
|
|
1682
|
+
readonly description?: string | undefined;
|
|
1683
|
+
readonly error?: string | undefined;
|
|
1684
|
+
readonly config?: Record<string, any> | undefined;
|
|
1685
|
+
readonly dataTest?: string | undefined;
|
|
1686
|
+
readonly modelValue?: string | undefined;
|
|
1687
|
+
readonly placeholder?: string | undefined;
|
|
1688
|
+
readonly disabled?: boolean | undefined;
|
|
1689
|
+
readonly size?: string | undefined;
|
|
1690
|
+
readonly labelAlign?: string | undefined;
|
|
1691
|
+
readonly inputmode?: string | undefined;
|
|
1692
|
+
readonly readonly?: boolean | undefined;
|
|
1693
|
+
readonly noAutocomplete?: boolean | undefined;
|
|
1694
|
+
readonly resizable?: boolean | undefined;
|
|
1695
|
+
readonly rows?: string | number | undefined;
|
|
1696
|
+
};
|
|
1697
|
+
}, {}, {}, {}, {}>;
|
|
1698
|
+
__isFragment?: never;
|
|
1699
|
+
__isTeleport?: never;
|
|
1700
|
+
__isSuspense?: never;
|
|
1701
|
+
} & import("vue").ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
|
|
1702
|
+
textareaRef: import("vue").Ref<null, null>;
|
|
1703
|
+
$emit: (event: "focus" | "blur" | "change" | "click" | "mousedown" | "update:modelValue", ...args: any[]) => void;
|
|
1704
|
+
label: string;
|
|
1705
|
+
id: string;
|
|
1706
|
+
description: string;
|
|
1707
|
+
error: string;
|
|
1708
|
+
config: Record<string, any>;
|
|
1709
|
+
dataTest: string;
|
|
1710
|
+
modelValue: string;
|
|
1711
|
+
placeholder: string;
|
|
1712
|
+
disabled?: boolean | undefined;
|
|
1713
|
+
size?: string | undefined;
|
|
1714
|
+
labelAlign?: string | undefined;
|
|
1715
|
+
inputmode?: string | undefined;
|
|
1716
|
+
readonly?: boolean | undefined;
|
|
1717
|
+
noAutocomplete?: boolean | undefined;
|
|
1718
|
+
resizable?: boolean | undefined;
|
|
1719
|
+
rows?: string | number | undefined;
|
|
1720
|
+
$props: {
|
|
1721
|
+
readonly label?: string | undefined;
|
|
1722
|
+
readonly id?: string | undefined;
|
|
1723
|
+
readonly description?: string | undefined;
|
|
1724
|
+
readonly error?: string | undefined;
|
|
1725
|
+
readonly config?: Record<string, any> | undefined;
|
|
1726
|
+
readonly dataTest?: string | undefined;
|
|
1727
|
+
readonly modelValue?: string | undefined;
|
|
1728
|
+
readonly placeholder?: string | undefined;
|
|
1729
|
+
readonly disabled?: boolean | undefined;
|
|
1730
|
+
readonly size?: string | undefined;
|
|
1731
|
+
readonly labelAlign?: string | undefined;
|
|
1732
|
+
readonly inputmode?: string | undefined;
|
|
1733
|
+
readonly readonly?: boolean | undefined;
|
|
1734
|
+
readonly noAutocomplete?: boolean | undefined;
|
|
1735
|
+
readonly resizable?: boolean | undefined;
|
|
1736
|
+
readonly rows?: string | number | undefined;
|
|
1737
|
+
};
|
|
1738
|
+
}, {}, {}, {}, 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 () => {
|
|
1739
|
+
$slots: {
|
|
1740
|
+
left?(_: {}): any;
|
|
1741
|
+
right?(_: {}): any;
|
|
1742
|
+
};
|
|
1743
|
+
});
|
|
1744
|
+
UCol: {
|
|
1745
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
|
|
1746
|
+
config: Record<string, any>;
|
|
1747
|
+
dataTest: string;
|
|
1748
|
+
reverse?: boolean | undefined;
|
|
1749
|
+
content?: string | undefined;
|
|
1750
|
+
gap?: string | undefined;
|
|
1751
|
+
align?: string | undefined;
|
|
1752
|
+
justify?: string | undefined;
|
|
1753
|
+
wrap?: boolean | undefined;
|
|
1754
|
+
$props: {
|
|
1755
|
+
readonly config?: Record<string, any> | undefined;
|
|
1756
|
+
readonly dataTest?: string | undefined;
|
|
1757
|
+
readonly reverse?: boolean | undefined;
|
|
1758
|
+
readonly content?: string | undefined;
|
|
1759
|
+
readonly gap?: string | undefined;
|
|
1760
|
+
readonly align?: string | undefined;
|
|
1761
|
+
readonly justify?: string | undefined;
|
|
1762
|
+
readonly wrap?: boolean | undefined;
|
|
1763
|
+
};
|
|
1764
|
+
}, {}, {}, {}, 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, {
|
|
1765
|
+
P: {};
|
|
1766
|
+
B: {};
|
|
1767
|
+
D: {};
|
|
1768
|
+
C: {};
|
|
1769
|
+
M: {};
|
|
1770
|
+
Defaults: {};
|
|
1771
|
+
}, Readonly<{}> & Readonly<{}>, {
|
|
1772
|
+
config: Record<string, any>;
|
|
1773
|
+
dataTest: string;
|
|
1774
|
+
reverse?: boolean | undefined;
|
|
1775
|
+
content?: string | undefined;
|
|
1776
|
+
gap?: string | undefined;
|
|
1777
|
+
align?: string | undefined;
|
|
1778
|
+
justify?: string | undefined;
|
|
1779
|
+
wrap?: boolean | undefined;
|
|
1780
|
+
$props: {
|
|
1781
|
+
readonly config?: Record<string, any> | undefined;
|
|
1782
|
+
readonly dataTest?: string | undefined;
|
|
1783
|
+
readonly reverse?: boolean | undefined;
|
|
1784
|
+
readonly content?: string | undefined;
|
|
1785
|
+
readonly gap?: string | undefined;
|
|
1786
|
+
readonly align?: string | undefined;
|
|
1787
|
+
readonly justify?: string | undefined;
|
|
1788
|
+
readonly wrap?: boolean | undefined;
|
|
1789
|
+
};
|
|
1790
|
+
}, {}, {}, {}, {}>;
|
|
1791
|
+
__isFragment?: never;
|
|
1792
|
+
__isTeleport?: never;
|
|
1793
|
+
__isSuspense?: never;
|
|
1794
|
+
} & import("vue").ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
|
|
1795
|
+
config: Record<string, any>;
|
|
1796
|
+
dataTest: string;
|
|
1797
|
+
reverse?: boolean | undefined;
|
|
1798
|
+
content?: string | undefined;
|
|
1799
|
+
gap?: string | undefined;
|
|
1800
|
+
align?: string | undefined;
|
|
1801
|
+
justify?: string | undefined;
|
|
1802
|
+
wrap?: boolean | undefined;
|
|
1803
|
+
$props: {
|
|
1804
|
+
readonly config?: Record<string, any> | undefined;
|
|
1805
|
+
readonly dataTest?: string | undefined;
|
|
1806
|
+
readonly reverse?: boolean | undefined;
|
|
1807
|
+
readonly content?: string | undefined;
|
|
1808
|
+
readonly gap?: string | undefined;
|
|
1809
|
+
readonly align?: string | undefined;
|
|
1810
|
+
readonly justify?: string | undefined;
|
|
1811
|
+
readonly wrap?: boolean | undefined;
|
|
1812
|
+
};
|
|
1813
|
+
}, {}, {}, {}, 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 () => {
|
|
1814
|
+
$slots: {
|
|
1815
|
+
default?(_: {}): any;
|
|
1816
|
+
};
|
|
1817
|
+
});
|
|
1818
|
+
};
|
|
1819
|
+
setup(): {
|
|
1820
|
+
args: any;
|
|
1821
|
+
options: any;
|
|
1822
|
+
};
|
|
1823
|
+
template: string;
|
|
1824
|
+
};
|
|
1825
|
+
export namespace Sizes {
|
|
1826
|
+
export namespace args_10 {
|
|
1827
|
+
let _enum_1: string;
|
|
1828
|
+
export { _enum_1 as enum };
|
|
1829
|
+
}
|
|
1830
|
+
export { args_10 as args };
|
|
1831
|
+
}
|
|
1832
|
+
export function SlotLeft(args: any): {
|
|
1833
|
+
components: {
|
|
1834
|
+
UTextarea: {
|
|
1835
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
|
|
1836
|
+
textareaRef: import("vue").Ref<null, null>;
|
|
1837
|
+
$emit: (event: "focus" | "blur" | "change" | "click" | "mousedown" | "update:modelValue", ...args: any[]) => void;
|
|
1838
|
+
label: string;
|
|
1839
|
+
id: string;
|
|
1840
|
+
description: string;
|
|
1841
|
+
error: string;
|
|
1842
|
+
config: Record<string, any>;
|
|
1843
|
+
dataTest: string;
|
|
1844
|
+
modelValue: string;
|
|
1845
|
+
placeholder: string;
|
|
1846
|
+
disabled?: boolean | undefined;
|
|
1847
|
+
size?: string | undefined;
|
|
1848
|
+
labelAlign?: string | undefined;
|
|
1849
|
+
inputmode?: string | undefined;
|
|
1850
|
+
readonly?: boolean | undefined;
|
|
1851
|
+
noAutocomplete?: boolean | undefined;
|
|
1852
|
+
resizable?: boolean | undefined;
|
|
1853
|
+
rows?: string | number | undefined;
|
|
1854
|
+
$props: {
|
|
1855
|
+
readonly label?: string | undefined;
|
|
1856
|
+
readonly id?: string | undefined;
|
|
1857
|
+
readonly description?: string | undefined;
|
|
1858
|
+
readonly error?: string | undefined;
|
|
1859
|
+
readonly config?: Record<string, any> | undefined;
|
|
1860
|
+
readonly dataTest?: string | undefined;
|
|
1861
|
+
readonly modelValue?: string | undefined;
|
|
1862
|
+
readonly placeholder?: string | undefined;
|
|
1863
|
+
readonly disabled?: boolean | undefined;
|
|
1864
|
+
readonly size?: string | undefined;
|
|
1865
|
+
readonly labelAlign?: string | undefined;
|
|
1866
|
+
readonly inputmode?: string | undefined;
|
|
1867
|
+
readonly readonly?: boolean | undefined;
|
|
1868
|
+
readonly noAutocomplete?: boolean | undefined;
|
|
1869
|
+
readonly resizable?: boolean | undefined;
|
|
1870
|
+
readonly rows?: string | number | undefined;
|
|
1871
|
+
};
|
|
1872
|
+
}, {}, {}, {}, 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, {
|
|
1873
|
+
P: {};
|
|
1874
|
+
B: {};
|
|
1875
|
+
D: {};
|
|
1876
|
+
C: {};
|
|
1877
|
+
M: {};
|
|
1878
|
+
Defaults: {};
|
|
1879
|
+
}, Readonly<{}> & Readonly<{}>, {
|
|
1880
|
+
textareaRef: import("vue").Ref<null, null>;
|
|
1881
|
+
$emit: (event: "focus" | "blur" | "change" | "click" | "mousedown" | "update:modelValue", ...args: any[]) => void;
|
|
1882
|
+
label: string;
|
|
1883
|
+
id: string;
|
|
1884
|
+
description: string;
|
|
1885
|
+
error: string;
|
|
1886
|
+
config: Record<string, any>;
|
|
1887
|
+
dataTest: string;
|
|
1888
|
+
modelValue: string;
|
|
1889
|
+
placeholder: string;
|
|
1890
|
+
disabled?: boolean | undefined;
|
|
1891
|
+
size?: string | undefined;
|
|
1892
|
+
labelAlign?: string | undefined;
|
|
1893
|
+
inputmode?: string | undefined;
|
|
1894
|
+
readonly?: boolean | undefined;
|
|
1895
|
+
noAutocomplete?: boolean | undefined;
|
|
1896
|
+
resizable?: boolean | undefined;
|
|
1897
|
+
rows?: string | number | undefined;
|
|
1898
|
+
$props: {
|
|
1899
|
+
readonly label?: string | undefined;
|
|
1900
|
+
readonly id?: string | undefined;
|
|
1901
|
+
readonly description?: string | undefined;
|
|
1902
|
+
readonly error?: string | undefined;
|
|
1903
|
+
readonly config?: Record<string, any> | undefined;
|
|
1904
|
+
readonly dataTest?: string | undefined;
|
|
1905
|
+
readonly modelValue?: string | undefined;
|
|
1906
|
+
readonly placeholder?: string | undefined;
|
|
1907
|
+
readonly disabled?: boolean | undefined;
|
|
1908
|
+
readonly size?: string | undefined;
|
|
1909
|
+
readonly labelAlign?: string | undefined;
|
|
1910
|
+
readonly inputmode?: string | undefined;
|
|
1911
|
+
readonly readonly?: boolean | undefined;
|
|
1912
|
+
readonly noAutocomplete?: boolean | undefined;
|
|
1913
|
+
readonly resizable?: boolean | undefined;
|
|
1914
|
+
readonly rows?: string | number | undefined;
|
|
1915
|
+
};
|
|
1916
|
+
}, {}, {}, {}, {}>;
|
|
1917
|
+
__isFragment?: never;
|
|
1918
|
+
__isTeleport?: never;
|
|
1919
|
+
__isSuspense?: never;
|
|
1920
|
+
} & import("vue").ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
|
|
1921
|
+
textareaRef: import("vue").Ref<null, null>;
|
|
1922
|
+
$emit: (event: "focus" | "blur" | "change" | "click" | "mousedown" | "update:modelValue", ...args: any[]) => void;
|
|
1923
|
+
label: string;
|
|
1924
|
+
id: string;
|
|
1925
|
+
description: string;
|
|
1926
|
+
error: string;
|
|
1927
|
+
config: Record<string, any>;
|
|
1928
|
+
dataTest: string;
|
|
1929
|
+
modelValue: string;
|
|
1930
|
+
placeholder: string;
|
|
1931
|
+
disabled?: boolean | undefined;
|
|
1932
|
+
size?: string | undefined;
|
|
1933
|
+
labelAlign?: string | undefined;
|
|
1934
|
+
inputmode?: string | undefined;
|
|
1935
|
+
readonly?: boolean | undefined;
|
|
1936
|
+
noAutocomplete?: boolean | undefined;
|
|
1937
|
+
resizable?: boolean | undefined;
|
|
1938
|
+
rows?: string | number | undefined;
|
|
1939
|
+
$props: {
|
|
1940
|
+
readonly label?: string | undefined;
|
|
1941
|
+
readonly id?: string | undefined;
|
|
1942
|
+
readonly description?: string | undefined;
|
|
1943
|
+
readonly error?: string | undefined;
|
|
1944
|
+
readonly config?: Record<string, any> | undefined;
|
|
1945
|
+
readonly dataTest?: string | undefined;
|
|
1946
|
+
readonly modelValue?: string | undefined;
|
|
1947
|
+
readonly placeholder?: string | undefined;
|
|
1948
|
+
readonly disabled?: boolean | undefined;
|
|
1949
|
+
readonly size?: string | undefined;
|
|
1950
|
+
readonly labelAlign?: string | undefined;
|
|
1951
|
+
readonly inputmode?: string | undefined;
|
|
1952
|
+
readonly readonly?: boolean | undefined;
|
|
1953
|
+
readonly noAutocomplete?: boolean | undefined;
|
|
1954
|
+
readonly resizable?: boolean | undefined;
|
|
1955
|
+
readonly rows?: string | number | undefined;
|
|
1956
|
+
};
|
|
1957
|
+
}, {}, {}, {}, 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 () => {
|
|
1958
|
+
$slots: {
|
|
1959
|
+
left?(_: {}): any;
|
|
1960
|
+
right?(_: {}): any;
|
|
1961
|
+
};
|
|
1962
|
+
});
|
|
1963
|
+
UIcon: import("vue").DefineComponent<{}, {
|
|
1964
|
+
$emit: (event: "click", ...args: any[]) => void;
|
|
1965
|
+
config: Record<string, any>;
|
|
1966
|
+
name: string;
|
|
1967
|
+
src: Record<string, any>;
|
|
1968
|
+
tooltip: string;
|
|
1969
|
+
tooltipSettings: Record<string, any>;
|
|
1970
|
+
dataTest: string;
|
|
1971
|
+
internal: boolean;
|
|
1972
|
+
color?: string | undefined;
|
|
1973
|
+
size?: string | undefined;
|
|
1974
|
+
interactive?: boolean | undefined;
|
|
1975
|
+
variant?: string | undefined;
|
|
1976
|
+
$props: {
|
|
1977
|
+
readonly config?: Record<string, any> | undefined;
|
|
1978
|
+
readonly name?: string | undefined;
|
|
1979
|
+
readonly src?: Record<string, any> | undefined;
|
|
1980
|
+
readonly tooltip?: string | undefined;
|
|
1981
|
+
readonly tooltipSettings?: Record<string, any> | undefined;
|
|
1982
|
+
readonly dataTest?: string | undefined;
|
|
1983
|
+
readonly internal?: boolean | undefined;
|
|
1984
|
+
readonly color?: string | undefined;
|
|
1985
|
+
readonly size?: string | undefined;
|
|
1986
|
+
readonly interactive?: boolean | undefined;
|
|
1987
|
+
readonly variant?: string | undefined;
|
|
1988
|
+
};
|
|
1989
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
1990
|
+
};
|
|
1991
|
+
setup(): {
|
|
1992
|
+
args: any;
|
|
1993
|
+
slots: any;
|
|
1994
|
+
};
|
|
1995
|
+
template: string;
|
|
1996
|
+
};
|
|
1997
|
+
export namespace SlotLeft {
|
|
1998
|
+
export namespace args_11 {
|
|
1999
|
+
let slotTemplate: string;
|
|
2000
|
+
}
|
|
2001
|
+
export { args_11 as args };
|
|
2002
|
+
}
|
|
2003
|
+
export function SlotRight(args: any): {
|
|
2004
|
+
components: {
|
|
2005
|
+
UTextarea: {
|
|
2006
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{}> & Readonly<{}>, {
|
|
2007
|
+
textareaRef: import("vue").Ref<null, null>;
|
|
2008
|
+
$emit: (event: "focus" | "blur" | "change" | "click" | "mousedown" | "update:modelValue", ...args: any[]) => void;
|
|
2009
|
+
label: string;
|
|
2010
|
+
id: string;
|
|
2011
|
+
description: string;
|
|
2012
|
+
error: string;
|
|
2013
|
+
config: Record<string, any>;
|
|
2014
|
+
dataTest: string;
|
|
2015
|
+
modelValue: string;
|
|
2016
|
+
placeholder: string;
|
|
2017
|
+
disabled?: boolean | undefined;
|
|
2018
|
+
size?: string | undefined;
|
|
2019
|
+
labelAlign?: string | undefined;
|
|
2020
|
+
inputmode?: string | undefined;
|
|
2021
|
+
readonly?: boolean | undefined;
|
|
2022
|
+
noAutocomplete?: boolean | undefined;
|
|
2023
|
+
resizable?: boolean | undefined;
|
|
2024
|
+
rows?: string | number | undefined;
|
|
2025
|
+
$props: {
|
|
2026
|
+
readonly label?: string | undefined;
|
|
2027
|
+
readonly id?: string | undefined;
|
|
2028
|
+
readonly description?: string | undefined;
|
|
2029
|
+
readonly error?: string | undefined;
|
|
2030
|
+
readonly config?: Record<string, any> | undefined;
|
|
2031
|
+
readonly dataTest?: string | undefined;
|
|
2032
|
+
readonly modelValue?: string | undefined;
|
|
2033
|
+
readonly placeholder?: string | undefined;
|
|
2034
|
+
readonly disabled?: boolean | undefined;
|
|
2035
|
+
readonly size?: string | undefined;
|
|
2036
|
+
readonly labelAlign?: string | undefined;
|
|
2037
|
+
readonly inputmode?: string | undefined;
|
|
2038
|
+
readonly readonly?: boolean | undefined;
|
|
2039
|
+
readonly noAutocomplete?: boolean | undefined;
|
|
2040
|
+
readonly resizable?: boolean | undefined;
|
|
2041
|
+
readonly rows?: string | number | undefined;
|
|
2042
|
+
};
|
|
2043
|
+
}, {}, {}, {}, 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, {
|
|
2044
|
+
P: {};
|
|
2045
|
+
B: {};
|
|
2046
|
+
D: {};
|
|
2047
|
+
C: {};
|
|
2048
|
+
M: {};
|
|
2049
|
+
Defaults: {};
|
|
2050
|
+
}, Readonly<{}> & Readonly<{}>, {
|
|
2051
|
+
textareaRef: import("vue").Ref<null, null>;
|
|
2052
|
+
$emit: (event: "focus" | "blur" | "change" | "click" | "mousedown" | "update:modelValue", ...args: any[]) => void;
|
|
2053
|
+
label: string;
|
|
2054
|
+
id: string;
|
|
2055
|
+
description: string;
|
|
2056
|
+
error: string;
|
|
2057
|
+
config: Record<string, any>;
|
|
2058
|
+
dataTest: string;
|
|
2059
|
+
modelValue: string;
|
|
2060
|
+
placeholder: string;
|
|
2061
|
+
disabled?: boolean | undefined;
|
|
2062
|
+
size?: string | undefined;
|
|
2063
|
+
labelAlign?: string | undefined;
|
|
2064
|
+
inputmode?: string | undefined;
|
|
2065
|
+
readonly?: boolean | undefined;
|
|
2066
|
+
noAutocomplete?: boolean | undefined;
|
|
2067
|
+
resizable?: boolean | undefined;
|
|
2068
|
+
rows?: string | number | undefined;
|
|
2069
|
+
$props: {
|
|
2070
|
+
readonly label?: string | undefined;
|
|
2071
|
+
readonly id?: string | undefined;
|
|
2072
|
+
readonly description?: string | undefined;
|
|
2073
|
+
readonly error?: string | undefined;
|
|
2074
|
+
readonly config?: Record<string, any> | undefined;
|
|
2075
|
+
readonly dataTest?: string | undefined;
|
|
2076
|
+
readonly modelValue?: string | undefined;
|
|
2077
|
+
readonly placeholder?: string | undefined;
|
|
2078
|
+
readonly disabled?: boolean | undefined;
|
|
2079
|
+
readonly size?: string | undefined;
|
|
2080
|
+
readonly labelAlign?: string | undefined;
|
|
2081
|
+
readonly inputmode?: string | undefined;
|
|
2082
|
+
readonly readonly?: boolean | undefined;
|
|
2083
|
+
readonly noAutocomplete?: boolean | undefined;
|
|
2084
|
+
readonly resizable?: boolean | undefined;
|
|
2085
|
+
readonly rows?: string | number | undefined;
|
|
2086
|
+
};
|
|
2087
|
+
}, {}, {}, {}, {}>;
|
|
2088
|
+
__isFragment?: never;
|
|
2089
|
+
__isTeleport?: never;
|
|
2090
|
+
__isSuspense?: never;
|
|
2091
|
+
} & import("vue").ComponentOptionsBase<Readonly<{}> & Readonly<{}>, {
|
|
2092
|
+
textareaRef: import("vue").Ref<null, null>;
|
|
2093
|
+
$emit: (event: "focus" | "blur" | "change" | "click" | "mousedown" | "update:modelValue", ...args: any[]) => void;
|
|
2094
|
+
label: string;
|
|
2095
|
+
id: string;
|
|
2096
|
+
description: string;
|
|
2097
|
+
error: string;
|
|
2098
|
+
config: Record<string, any>;
|
|
2099
|
+
dataTest: string;
|
|
2100
|
+
modelValue: string;
|
|
2101
|
+
placeholder: string;
|
|
2102
|
+
disabled?: boolean | undefined;
|
|
2103
|
+
size?: string | undefined;
|
|
2104
|
+
labelAlign?: string | undefined;
|
|
2105
|
+
inputmode?: string | undefined;
|
|
2106
|
+
readonly?: boolean | undefined;
|
|
2107
|
+
noAutocomplete?: boolean | undefined;
|
|
2108
|
+
resizable?: boolean | undefined;
|
|
2109
|
+
rows?: string | number | undefined;
|
|
2110
|
+
$props: {
|
|
2111
|
+
readonly label?: string | undefined;
|
|
2112
|
+
readonly id?: string | undefined;
|
|
2113
|
+
readonly description?: string | undefined;
|
|
2114
|
+
readonly error?: string | undefined;
|
|
2115
|
+
readonly config?: Record<string, any> | undefined;
|
|
2116
|
+
readonly dataTest?: string | undefined;
|
|
2117
|
+
readonly modelValue?: string | undefined;
|
|
2118
|
+
readonly placeholder?: string | undefined;
|
|
2119
|
+
readonly disabled?: boolean | undefined;
|
|
2120
|
+
readonly size?: string | undefined;
|
|
2121
|
+
readonly labelAlign?: string | undefined;
|
|
2122
|
+
readonly inputmode?: string | undefined;
|
|
2123
|
+
readonly readonly?: boolean | undefined;
|
|
2124
|
+
readonly noAutocomplete?: boolean | undefined;
|
|
2125
|
+
readonly resizable?: boolean | undefined;
|
|
2126
|
+
readonly rows?: string | number | undefined;
|
|
2127
|
+
};
|
|
2128
|
+
}, {}, {}, {}, 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 () => {
|
|
2129
|
+
$slots: {
|
|
2130
|
+
left?(_: {}): any;
|
|
2131
|
+
right?(_: {}): any;
|
|
2132
|
+
};
|
|
2133
|
+
});
|
|
2134
|
+
UIcon: import("vue").DefineComponent<{}, {
|
|
2135
|
+
$emit: (event: "click", ...args: any[]) => void;
|
|
2136
|
+
config: Record<string, any>;
|
|
2137
|
+
name: string;
|
|
2138
|
+
src: Record<string, any>;
|
|
2139
|
+
tooltip: string;
|
|
2140
|
+
tooltipSettings: Record<string, any>;
|
|
2141
|
+
dataTest: string;
|
|
2142
|
+
internal: boolean;
|
|
2143
|
+
color?: string | undefined;
|
|
2144
|
+
size?: string | undefined;
|
|
2145
|
+
interactive?: boolean | undefined;
|
|
2146
|
+
variant?: string | undefined;
|
|
2147
|
+
$props: {
|
|
2148
|
+
readonly config?: Record<string, any> | undefined;
|
|
2149
|
+
readonly name?: string | undefined;
|
|
2150
|
+
readonly src?: Record<string, any> | undefined;
|
|
2151
|
+
readonly tooltip?: string | undefined;
|
|
2152
|
+
readonly tooltipSettings?: Record<string, any> | undefined;
|
|
2153
|
+
readonly dataTest?: string | undefined;
|
|
2154
|
+
readonly internal?: boolean | undefined;
|
|
2155
|
+
readonly color?: string | undefined;
|
|
2156
|
+
readonly size?: string | undefined;
|
|
2157
|
+
readonly interactive?: boolean | undefined;
|
|
2158
|
+
readonly variant?: string | undefined;
|
|
2159
|
+
};
|
|
2160
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
2161
|
+
};
|
|
2162
|
+
setup(): {
|
|
2163
|
+
args: any;
|
|
2164
|
+
slots: any;
|
|
2165
|
+
};
|
|
2166
|
+
template: string;
|
|
2167
|
+
};
|
|
2168
|
+
export namespace SlotRight {
|
|
2169
|
+
export namespace args_12 {
|
|
2170
|
+
let slotTemplate_1: string;
|
|
2171
|
+
export { slotTemplate_1 as slotTemplate };
|
|
2172
|
+
}
|
|
2173
|
+
export { args_12 as args };
|
|
2174
|
+
}
|
|
2175
|
+
import UTextarea from "../../ui.form-textarea/UTextarea.vue";
|