vueless 0.0.473 → 0.0.475
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/adatper.locale/locales/en.d.ts +289 -0
- package/adatper.locale/vue-i18n.d.ts +9 -0
- package/adatper.locale/vueless.d.ts +11 -0
- package/composables/useAutoPosition.d.ts +15 -0
- package/composables/useBreakpoint.d.ts +7 -0
- package/composables/useBreakpoint.js +1 -1
- package/composables/useLocale.d.ts +3 -0
- package/composables/useMutationObserver.d.ts +7 -0
- package/composables/useUI.d.ts +17 -0
- package/composablesTs/useAutoPosition.d.ts +28 -0
- package/composablesTs/useAutoPosition.ts +115 -0
- package/composablesTs/useBreakpoint.d.ts +7 -0
- package/composablesTs/useBreakpoint.ts +106 -0
- package/composablesTs/useLocale.d.ts +3 -0
- package/composablesTs/useLocale.ts +25 -0
- package/composablesTs/useMutationObserver.d.ts +8 -0
- package/composablesTs/useMutationObserver.ts +50 -0
- package/composablesTs/useUI.d.ts +68 -0
- package/composablesTs/useUI.ts +566 -0
- package/constants.d.ts +42 -0
- package/constants.js +2 -0
- package/constants.ts +73 -0
- package/directives/clickOutside/storybook/stories.d.ts +653 -0
- package/directives/clickOutside/vClickOutside.d.ts +6 -0
- package/directives/clickOutside/vClickOutside.js +2 -2
- package/directives/index.d.ts +2 -0
- package/directives/tooltip/storybook/stories.d.ts +252 -0
- package/directives/tooltip/storybook/stories.js +5 -5
- package/directives/tooltip/vTooltip.d.ts +6 -0
- package/index.d.ts +15 -0
- package/{index.js → index.ts} +9 -6
- package/package.json +28 -17
- package/preset.tailwind.d.ts +116 -0
- package/{preset.tailwind.js → preset.tailwind.ts} +33 -24
- package/types.d.ts +131 -0
- package/types.ts +218 -0
- package/ui.button/UButton.vue.d.ts +73 -0
- package/ui.button/config.d.ts +130 -0
- package/ui.button/constants.d.ts +1 -0
- package/ui.button/storybook/stories.d.ts +3062 -0
- package/ui.button/useAttrs.d.ts +11 -0
- package/ui.button-link/ULink.vue +1 -1
- package/ui.button-link/ULink.vue.d.ts +66 -0
- package/ui.button-link/config.d.ts +101 -0
- package/ui.button-link/constants.d.ts +1 -0
- package/ui.button-link/storybook/stories.d.ts +4567 -0
- package/ui.button-link/useAttrs.d.ts +14 -0
- package/ui.button-toggle/UToggle.vue.d.ts +50 -0
- package/ui.button-toggle/config.d.ts +65 -0
- package/ui.button-toggle/constants.d.ts +3 -0
- package/ui.button-toggle/storybook/stories.d.ts +2683 -0
- package/ui.button-toggle/useAttrs.d.ts +11 -0
- package/ui.button-toggle-item/UToggleItem.vue.d.ts +36 -0
- package/ui.button-toggle-item/config.d.ts +41 -0
- package/ui.button-toggle-item/constants.d.ts +1 -0
- package/ui.button-toggle-item/storybook/stories.d.ts +495 -0
- package/ui.button-toggle-item/useAttrs.d.ts +15 -0
- package/ui.container-accordion/UAccordion.vue.d.ts +32 -0
- package/ui.container-accordion/config.d.ts +40 -0
- package/ui.container-accordion/constants.d.ts +1 -0
- package/ui.container-accordion/storybook/stories.d.ts +732 -0
- package/ui.container-accordion/useAttrs.d.ts +13 -0
- package/ui.container-card/UCard.vue.d.ts +31 -0
- package/ui.container-card/config.d.ts +13 -0
- package/ui.container-card/constants.d.ts +1 -0
- package/ui.container-card/storybook/stories.d.ts +3906 -0
- package/ui.container-card/useAttrs.d.ts +11 -0
- package/ui.container-col/UCol.vue.d.ts +33 -0
- package/ui.container-col/config.d.ts +81 -0
- package/ui.container-col/constants.d.ts +1 -0
- package/ui.container-col/storybook/stories.d.ts +840 -0
- package/ui.container-col/useAttrs.d.ts +11 -0
- package/ui.container-divider/UDivider.vue.d.ts +25 -0
- package/ui.container-divider/config.d.ts +102 -0
- package/ui.container-divider/constants.d.ts +1 -0
- package/ui.container-divider/storybook/stories.d.ts +577 -0
- package/ui.container-divider/useAttrs.d.ts +11 -0
- package/ui.container-group/UGroup.vue.d.ts +33 -0
- package/ui.container-group/config.d.ts +38 -0
- package/ui.container-group/constants.d.ts +1 -0
- package/ui.container-group/storybook/stories.d.ts +2869 -0
- package/ui.container-group/useAttrs.d.ts +11 -0
- package/ui.container-modal/UModal.vue.d.ts +59 -0
- package/ui.container-modal/config.d.ts +77 -0
- package/ui.container-modal/constants.d.ts +1 -0
- package/ui.container-modal/storybook/stories.d.ts +8377 -0
- package/ui.container-modal/useAttrs.d.ts +11 -0
- package/ui.container-modal-confirm/UModalConfirm.vue.d.ts +59 -0
- package/ui.container-modal-confirm/config.d.ts +23 -0
- package/ui.container-modal-confirm/constants.d.ts +1 -0
- package/ui.container-modal-confirm/storybook/stories.d.ts +4494 -0
- package/ui.container-modal-confirm/useAttrs.d.ts +11 -0
- package/ui.container-page/UPage.vue.d.ts +47 -0
- package/ui.container-page/config.d.ts +85 -0
- package/ui.container-page/constants.d.ts +1 -0
- package/ui.container-page/storybook/stories.d.ts +8723 -0
- package/ui.container-page/useAttrs.d.ts +13 -0
- package/ui.container-row/URow.vue.d.ts +35 -0
- package/ui.container-row/config.d.ts +85 -0
- package/ui.container-row/constants.d.ts +1 -0
- package/ui.container-row/storybook/stories.d.ts +2619 -0
- package/ui.container-row/useAttrs.d.ts +11 -0
- package/ui.data-list/UDataList.vue +4 -4
- package/ui.data-list/UDataList.vue.d.ts +74 -0
- package/ui.data-list/config.d.ts +48 -0
- package/ui.data-list/constants.d.ts +1 -0
- package/ui.data-list/storybook/stories.d.ts +3342 -0
- package/ui.data-list/useAttrs.d.ts +11 -0
- package/ui.data-table/UTable.vue.d.ts +90 -0
- package/ui.data-table/UTableRow.vue.d.ts +61 -0
- package/ui.data-table/config.d.ts +128 -0
- package/ui.data-table/constants.d.ts +1 -0
- package/ui.data-table/storybook/stories.d.ts +13069 -0
- package/ui.data-table/useAttrs.d.ts +17 -0
- package/ui.data-table/utilTable.d.ts +9 -0
- package/ui.dropdown-badge/UDropdownBadge.vue.d.ts +145 -0
- package/ui.dropdown-badge/config.d.ts +39 -0
- package/ui.dropdown-badge/constants.d.ts +1 -0
- package/ui.dropdown-badge/storybook/stories.d.ts +1246 -0
- package/ui.dropdown-badge/useAttrs.d.ts +13 -0
- package/ui.dropdown-button/UDropdownButton.vue.d.ts +151 -0
- package/ui.dropdown-button/config.d.ts +52 -0
- package/ui.dropdown-button/constants.d.ts +4 -0
- package/ui.dropdown-button/storybook/stories.d.ts +1912 -0
- package/ui.dropdown-button/useAttrs.d.ts +13 -0
- package/ui.dropdown-link/UDropdownLink.vue.d.ts +149 -0
- package/ui.dropdown-link/config.d.ts +37 -0
- package/ui.dropdown-link/constants.d.ts +1 -0
- package/ui.dropdown-link/storybook/stories.d.ts +1333 -0
- package/ui.dropdown-link/useAttrs.d.ts +13 -0
- package/ui.dropdown-list/UDropdownList.vue.d.ts +59 -0
- package/ui.dropdown-list/config.d.ts +77 -0
- package/ui.dropdown-list/constants.d.ts +1 -0
- package/ui.dropdown-list/storybook/stories.d.ts +783 -0
- package/ui.dropdown-list/useAttrs.d.ts +11 -0
- package/ui.dropdown-list/usePointer.d.ts +8 -0
- package/ui.form-calendar/UCalendar.vue.d.ts +31 -0
- package/ui.form-calendar/UCalendarDayView.vue.d.ts +26 -0
- package/ui.form-calendar/UCalendarMonthView.vue.d.ts +26 -0
- package/ui.form-calendar/UCalendarYearView.vue.d.ts +26 -0
- package/ui.form-calendar/config.d.ts +207 -0
- package/ui.form-calendar/constants.d.ts +66 -0
- package/ui.form-calendar/storybook/stories.d.ts +262 -0
- package/ui.form-calendar/useAttrs.d.ts +11 -0
- package/ui.form-calendar/utilCalendar.d.ts +8 -0
- package/ui.form-calendar/utilDate.d.ts +30 -0
- package/ui.form-calendar/utilFormatting.d.ts +68 -0
- package/ui.form-checkbox/UCheckbox.vue.d.ts +50 -0
- package/ui.form-checkbox/config.d.ts +67 -0
- package/ui.form-checkbox/constants.d.ts +1 -0
- package/ui.form-checkbox/storybook/stories.d.ts +1589 -0
- package/ui.form-checkbox/useAttrs.d.ts +14 -0
- package/ui.form-checkbox-group/UCheckboxGroup.vue.d.ts +40 -0
- package/ui.form-checkbox-group/config.d.ts +21 -0
- package/ui.form-checkbox-group/constants.d.ts +1 -0
- package/ui.form-checkbox-group/storybook/stories.d.ts +2441 -0
- package/ui.form-checkbox-group/useAttrs.d.ts +11 -0
- package/ui.form-checkbox-multi-state/UCheckboxMultiState.vue.d.ts +24 -0
- package/ui.form-checkbox-multi-state/config.d.ts +10 -0
- package/ui.form-checkbox-multi-state/constants.d.ts +1 -0
- package/ui.form-checkbox-multi-state/storybook/stories.d.ts +187 -0
- package/ui.form-checkbox-multi-state/useAttrs.d.ts +13 -0
- package/ui.form-color-picker/UColorPicker.vue.d.ts +28 -0
- package/ui.form-color-picker/config.d.ts +42 -0
- package/ui.form-color-picker/constants.d.ts +1 -0
- package/ui.form-color-picker/storybook/stories.d.ts +316 -0
- package/ui.form-color-picker/useAttrs.d.ts +11 -0
- package/ui.form-date-picker/UDatePicker.vue.d.ts +135 -0
- package/ui.form-date-picker/config.d.ts +184 -0
- package/ui.form-date-picker/constants.d.ts +1 -0
- package/ui.form-date-picker/index.d.ts +1 -0
- package/ui.form-date-picker/storybook/stories.d.ts +3242 -0
- package/ui.form-date-picker/useAttrs.d.ts +14 -0
- package/ui.form-date-picker-range/UDatePickerRange.vue.d.ts +545 -0
- package/ui.form-date-picker-range/UDatePickerRangeInputs.vue.d.ts +6 -0
- package/ui.form-date-picker-range/UDatePickerRangePeriodMenu.vue.d.ts +7 -0
- package/ui.form-date-picker-range/config.d.ts +265 -0
- package/ui.form-date-picker-range/constants.d.ts +20 -0
- package/ui.form-date-picker-range/storybook/stories.d.ts +5545 -0
- package/ui.form-date-picker-range/useAttrs.d.ts +17 -0
- package/ui.form-date-picker-range/useUserFormat.d.ts +3 -0
- package/ui.form-date-picker-range/utilDateRange.d.ts +20 -0
- package/ui.form-date-picker-range/utilValidation.d.ts +3 -0
- package/ui.form-input/UInput.vue +1 -1
- package/ui.form-input/UInput.vue.d.ts +59 -0
- package/ui.form-input/config.d.ts +59 -0
- package/ui.form-input/constants.d.ts +1 -0
- package/ui.form-input/storybook/stories.d.ts +5734 -0
- package/ui.form-input/useAttrs.d.ts +11 -0
- package/ui.form-input-file/UInputFile.vue.d.ts +57 -0
- package/ui.form-input-file/config.d.ts +94 -0
- package/ui.form-input-file/constants.d.ts +1 -0
- package/ui.form-input-file/storybook/stories.d.ts +1116 -0
- package/ui.form-input-file/useAttrs.d.ts +11 -0
- package/ui.form-input-file/utilFileForm.d.ts +1 -0
- package/ui.form-input-money/UInputMoney.vue.d.ts +183 -0
- package/ui.form-input-money/config.d.ts +17 -0
- package/ui.form-input-money/constants.d.ts +1 -0
- package/ui.form-input-money/storybook/stories.d.ts +7519 -0
- package/ui.form-input-money/useAttrs.d.ts +11 -0
- package/ui.form-input-money/useFormatCurrency.d.ts +5 -0
- package/ui.form-input-money/useFormatCurrency.js +1 -1
- package/ui.form-input-money/utilFormat.d.ts +7 -0
- package/ui.form-input-number/UInputNumber.vue +4 -3
- package/ui.form-input-number/UInputNumber.vue.d.ts +30 -0
- package/ui.form-input-number/config.d.ts +40 -0
- package/ui.form-input-number/constants.d.ts +1 -0
- package/ui.form-input-number/storybook/stories.d.ts +363 -0
- package/ui.form-input-number/useAttrs.d.ts +11 -0
- package/ui.form-input-rating/UInputRating.vue.d.ts +49 -0
- package/ui.form-input-rating/config.d.ts +56 -0
- package/ui.form-input-rating/constants.d.ts +1 -0
- package/ui.form-input-rating/storybook/stories.d.ts +1336 -0
- package/ui.form-input-rating/useAttrs.d.ts +11 -0
- package/ui.form-input-search/UInputSearch.vue.d.ts +177 -0
- package/ui.form-input-search/config.d.ts +21 -0
- package/ui.form-input-search/constants.d.ts +1 -0
- package/ui.form-input-search/storybook/stories.d.ts +3325 -0
- package/ui.form-input-search/useAttrs.d.ts +11 -0
- package/ui.form-label/ULabel.vue.d.ts +46 -0
- package/ui.form-label/config.d.ts +139 -0
- package/ui.form-label/config.js +2 -2
- package/ui.form-label/constants.d.ts +8 -0
- package/ui.form-label/storybook/stories.d.ts +1133 -0
- package/ui.form-label/useAttrs.d.ts +11 -0
- package/ui.form-radio/URadio.vue.d.ts +46 -0
- package/ui.form-radio/config.d.ts +30 -0
- package/ui.form-radio/constants.d.ts +1 -0
- package/ui.form-radio/storybook/stories.d.ts +1270 -0
- package/ui.form-radio/useAttrs.d.ts +14 -0
- package/ui.form-radio-group/URadioGroup.vue.d.ts +40 -0
- package/ui.form-radio-group/config.d.ts +21 -0
- package/ui.form-radio-group/constants.d.ts +1 -0
- package/ui.form-radio-group/storybook/stories.d.ts +1239 -0
- package/ui.form-radio-group/useAttrs.d.ts +11 -0
- package/ui.form-select/USelect.vue.d.ts +405 -0
- package/ui.form-select/config.d.ts +146 -0
- package/ui.form-select/constants.d.ts +13 -0
- package/ui.form-select/storybook/stories.d.ts +19025 -0
- package/ui.form-select/useAttrs.d.ts +15 -0
- package/ui.form-select/utilSelect.d.ts +11 -0
- package/ui.form-switch/USwitch.vue.d.ts +30 -0
- package/ui.form-switch/config.d.ts +106 -0
- package/ui.form-switch/constants.d.ts +1 -0
- package/ui.form-switch/storybook/stories.d.ts +703 -0
- package/ui.form-switch/useAttrs.d.ts +13 -0
- package/ui.form-switch/utilVariant.d.ts +169 -0
- package/ui.form-textarea/UTextarea.vue.d.ts +132 -0
- package/ui.form-textarea/config.d.ts +55 -0
- package/ui.form-textarea/constants.d.ts +1 -0
- package/ui.form-textarea/storybook/stories.d.ts +2175 -0
- package/ui.form-textarea/useAttrs.d.ts +11 -0
- package/ui.image-avatar/UAvatar.vue.d.ts +40 -0
- package/ui.image-avatar/config.d.ts +51 -0
- package/ui.image-avatar/constants.d.ts +1 -0
- package/ui.image-avatar/storybook/stories.d.ts +1640 -0
- package/ui.image-avatar/useAttrs.d.ts +11 -0
- package/ui.image-icon/UIcon.vue.d.ts +28 -0
- package/ui.image-icon/config.d.ts +52 -0
- package/ui.image-icon/constants.d.ts +1 -0
- package/ui.image-icon/storybook/stories.d.ts +516 -0
- package/ui.image-icon/useAttrs.d.ts +11 -0
- package/ui.loader/ULoader.vue.d.ts +23 -0
- package/ui.loader/config.d.ts +49 -0
- package/ui.loader/constants.d.ts +2 -0
- package/ui.loader/storybook/stories.d.ts +655 -0
- package/ui.loader/useAttrs.d.ts +11 -0
- package/ui.loader-overlay/ULoaderOverlay.vue.d.ts +21 -0
- package/ui.loader-overlay/config.d.ts +25 -0
- package/ui.loader-overlay/constants.d.ts +1 -0
- package/ui.loader-overlay/storybook/stories.d.ts +362 -0
- package/ui.loader-overlay/useAttrs.d.ts +11 -0
- package/ui.loader-overlay/useLoaderOverlay.d.ts +10 -0
- package/ui.loader-overlay/utilLoaderOverlay.d.ts +2 -0
- package/ui.loader-progress/ULoaderProgress.vue.d.ts +11 -0
- package/ui.loader-progress/config.d.ts +24 -0
- package/ui.loader-progress/constants.d.ts +3 -0
- package/ui.loader-progress/storybook/stories.d.ts +742 -0
- package/ui.loader-progress/useAttrs.d.ts +11 -0
- package/ui.loader-progress/useLoaderProgress.d.ts +15 -0
- package/ui.loader-progress/utilLoaderProgress.d.ts +5 -0
- package/ui.navigation-pagination/UPagination.vue.d.ts +54 -0
- package/ui.navigation-pagination/config.d.ts +41 -0
- package/ui.navigation-pagination/constants.d.ts +1 -0
- package/ui.navigation-pagination/storybook/stories.d.ts +1033 -0
- package/ui.navigation-pagination/useAttrs.d.ts +11 -0
- package/ui.navigation-progress/StepperProgress.vue.d.ts +15 -0
- package/ui.navigation-progress/UProgress.vue.d.ts +41 -0
- package/ui.navigation-progress/config.d.ts +139 -0
- package/ui.navigation-progress/constants.d.ts +5 -0
- package/ui.navigation-progress/storybook/stories.d.ts +2827 -0
- package/ui.navigation-progress/useAttrs.d.ts +11 -0
- package/ui.navigation-tab/UTab.vue.d.ts +27 -0
- package/ui.navigation-tab/config.d.ts +24 -0
- package/ui.navigation-tab/constants.d.ts +1 -0
- package/ui.navigation-tab/storybook/stories.d.ts +316 -0
- package/ui.navigation-tab/useAttrs.d.ts +14 -0
- package/ui.navigation-tabs/UTabs.vue.d.ts +30 -0
- package/ui.navigation-tabs/config.d.ts +24 -0
- package/ui.navigation-tabs/constants.d.ts +1 -0
- package/ui.navigation-tabs/storybook/stories.d.ts +354 -0
- package/ui.navigation-tabs/useAttrs.d.ts +11 -0
- package/ui.other-dot/UDot.vue.d.ts +13 -0
- package/ui.other-dot/config.d.ts +28 -0
- package/ui.other-dot/constants.d.ts +1 -0
- package/ui.other-dot/storybook/stories.d.ts +645 -0
- package/ui.other-dot/useAttrs.d.ts +11 -0
- package/ui.text-alert/UAlert.vue.d.ts +53 -0
- package/ui.text-alert/config.d.ts +75 -0
- package/ui.text-alert/constants.d.ts +1 -0
- package/ui.text-alert/storybook/stories.d.ts +4845 -0
- package/ui.text-alert/useAttrs.d.ts +11 -0
- package/ui.text-badge/UBadge.vue.d.ts +60 -0
- package/ui.text-badge/config.d.ts +102 -0
- package/ui.text-badge/constants.d.ts +1 -0
- package/ui.text-badge/storybook/stories.d.ts +1869 -0
- package/ui.text-badge/useAttrs.d.ts +11 -0
- package/ui.text-block/UText.vue +18 -62
- package/ui.text-block/UText.vue.d.ts +21 -0
- package/ui.text-block/config.d.ts +27 -0
- package/ui.text-block/constants.d.ts +1 -0
- package/ui.text-block/storybook/Docs.mdx +2 -2
- package/ui.text-block/storybook/stories.d.ts +12 -0
- package/ui.text-block/storybook/{stories.js → stories.ts} +12 -7
- package/ui.text-block/types.d.ts +9 -0
- package/ui.text-block/types.ts +33 -0
- package/ui.text-block/useAttrs.d.ts +3 -0
- package/ui.text-block/useAttrs.ts +18 -0
- package/ui.text-empty/UEmpty.vue.d.ts +29 -0
- package/ui.text-empty/config.d.ts +55 -0
- package/ui.text-empty/constants.d.ts +1 -0
- package/ui.text-empty/storybook/stories.d.ts +1212 -0
- package/ui.text-empty/useAttrs.d.ts +11 -0
- package/ui.text-file/UFile.vue +12 -14
- package/ui.text-file/UFile.vue.d.ts +57 -0
- package/ui.text-file/config.d.ts +42 -0
- package/ui.text-file/config.js +12 -2
- package/ui.text-file/constants.d.ts +1 -0
- package/ui.text-file/storybook/stories.d.ts +136 -0
- package/ui.text-file/useAttrs.d.ts +11 -0
- package/ui.text-files/UFiles.vue.d.ts +52 -0
- package/ui.text-files/config.d.ts +10 -0
- package/ui.text-files/config.js +1 -1
- package/ui.text-files/constants.d.ts +1 -0
- package/ui.text-files/storybook/stories.d.ts +131 -0
- package/ui.text-files/useAttrs.d.ts +11 -0
- package/ui.text-header/UHeader.vue.d.ts +33 -0
- package/ui.text-header/config.d.ts +54 -0
- package/ui.text-header/constants.d.ts +1 -0
- package/ui.text-header/storybook/stories.d.ts +694 -0
- package/ui.text-header/useAttrs.d.ts +11 -0
- package/ui.text-money/UMoney.vue.d.ts +48 -0
- package/ui.text-money/config.d.ts +77 -0
- package/ui.text-money/constants.d.ts +1 -0
- package/ui.text-money/storybook/stories.d.ts +2090 -0
- package/ui.text-money/useAttrs.d.ts +11 -0
- package/ui.text-money/utilMoney.d.ts +14 -0
- package/ui.text-money/utilMoney.js +2 -2
- package/ui.text-notify/UNotify.vue.d.ts +13 -0
- package/ui.text-notify/config.d.ts +58 -0
- package/ui.text-notify/constants.d.ts +20 -0
- package/ui.text-notify/storybook/stories.d.ts +653 -0
- package/ui.text-notify/useAttrs.d.ts +11 -0
- package/ui.text-notify/utilNotify.d.ts +7 -0
- package/utils/utilHelper.d.ts +9 -0
- package/utils/utilPlatform.d.ts +6 -0
- package/utils/utilStorybook.d.ts +15 -0
- package/utils/utilUI.d.ts +68 -0
- package/utils/utilUI.js +1 -0
- package/utilsTs/utilHelper.d.ts +9 -0
- package/utilsTs/utilHelper.ts +70 -0
- package/utilsTs/utilPlatform.d.ts +7 -0
- package/utilsTs/utilPlatform.ts +53 -0
- package/utilsTs/utilStorybook.d.ts +24 -0
- package/utilsTs/utilStorybook.ts +292 -0
- package/utilsTs/utilTailwind.d.ts +1 -0
- package/utilsTs/utilTailwind.ts +38 -0
- package/utilsTs/utilTheme.d.ts +8 -0
- package/{utils/utilTheme.js → utilsTs/utilTheme.ts} +44 -23
- package/utilsTs/utilUI.d.ts +67 -0
- package/utilsTs/utilUI.ts +142 -0
- package/web-types.json +30 -120
- package/ui.text-block/useAttrs.js +0 -15
- /package/ui.text-block/{config.js → config.ts} +0 -0
- /package/ui.text-block/{constants.js → constants.ts} +0 -0
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export default function useAttrs(props: any): {
|
|
2
|
+
hasSlotContent: (slot: any, props?: {}) => boolean;
|
|
3
|
+
constructor: Function;
|
|
4
|
+
toString(): string;
|
|
5
|
+
toLocaleString(): string;
|
|
6
|
+
valueOf(): Object;
|
|
7
|
+
hasOwnProperty(v: PropertyKey): boolean;
|
|
8
|
+
isPrototypeOf(v: Object): boolean;
|
|
9
|
+
propertyIsEnumerable(v: PropertyKey): boolean;
|
|
10
|
+
config: import("vue").Ref<{}, {}>;
|
|
11
|
+
};
|
|
@@ -0,0 +1,405 @@
|
|
|
1
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
2
|
+
export default _default;
|
|
3
|
+
type __VLS_WithTemplateSlots<T, S> = T & (new () => {
|
|
4
|
+
$slots: S;
|
|
5
|
+
});
|
|
6
|
+
declare const __VLS_component: import("vue").DefineComponent<{}, {
|
|
7
|
+
dropdownListRef: import("vue").Ref<null, null>;
|
|
8
|
+
wrapperRef: import("vue").Ref<null, null>;
|
|
9
|
+
searchInputRef: import("vue").Ref<null, null>;
|
|
10
|
+
labelComponentRef: import("vue").Ref<null, null>;
|
|
11
|
+
leftSlotWrapperRef: import("vue").Ref<null, null>;
|
|
12
|
+
innerWrapperRef: import("vue").Ref<null, null>;
|
|
13
|
+
$emit: (event: "close" | "add" | "remove" | "change" | "update:modelValue" | "open" | "searchChange", ...args: any[]) => void;
|
|
14
|
+
label: string;
|
|
15
|
+
id: string;
|
|
16
|
+
description: string;
|
|
17
|
+
error: string;
|
|
18
|
+
rightIcon: string;
|
|
19
|
+
leftIcon: string;
|
|
20
|
+
config: Record<string, any>;
|
|
21
|
+
options: unknown[];
|
|
22
|
+
dataTest: string;
|
|
23
|
+
modelValue: string | number | unknown[];
|
|
24
|
+
placeholder: string;
|
|
25
|
+
groupLabelKey: string;
|
|
26
|
+
groupValueKey: string;
|
|
27
|
+
disabled?: boolean | undefined;
|
|
28
|
+
size?: string | undefined;
|
|
29
|
+
multiple?: boolean | undefined;
|
|
30
|
+
labelAlign?: string | undefined;
|
|
31
|
+
labelKey?: string | undefined;
|
|
32
|
+
valueKey?: string | undefined;
|
|
33
|
+
addOption?: boolean | undefined;
|
|
34
|
+
visibleOptions?: number | undefined;
|
|
35
|
+
openDirection?: string | undefined;
|
|
36
|
+
optionsLimit?: number | undefined;
|
|
37
|
+
clearable?: boolean | undefined;
|
|
38
|
+
searchable?: boolean | undefined;
|
|
39
|
+
$props: {
|
|
40
|
+
readonly label?: string | undefined;
|
|
41
|
+
readonly id?: string | undefined;
|
|
42
|
+
readonly description?: string | undefined;
|
|
43
|
+
readonly error?: string | undefined;
|
|
44
|
+
readonly rightIcon?: string | undefined;
|
|
45
|
+
readonly leftIcon?: string | undefined;
|
|
46
|
+
readonly config?: Record<string, any> | undefined;
|
|
47
|
+
readonly options?: unknown[] | undefined;
|
|
48
|
+
readonly dataTest?: string | undefined;
|
|
49
|
+
readonly modelValue?: string | number | unknown[] | undefined;
|
|
50
|
+
readonly placeholder?: string | undefined;
|
|
51
|
+
readonly groupLabelKey?: string | undefined;
|
|
52
|
+
readonly groupValueKey?: string | undefined;
|
|
53
|
+
readonly disabled?: boolean | undefined;
|
|
54
|
+
readonly size?: string | undefined;
|
|
55
|
+
readonly multiple?: boolean | undefined;
|
|
56
|
+
readonly labelAlign?: string | undefined;
|
|
57
|
+
readonly labelKey?: string | undefined;
|
|
58
|
+
readonly valueKey?: string | undefined;
|
|
59
|
+
readonly addOption?: boolean | undefined;
|
|
60
|
+
readonly visibleOptions?: number | undefined;
|
|
61
|
+
readonly openDirection?: string | undefined;
|
|
62
|
+
readonly optionsLimit?: number | undefined;
|
|
63
|
+
readonly clearable?: boolean | undefined;
|
|
64
|
+
readonly searchable?: boolean | undefined;
|
|
65
|
+
};
|
|
66
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
67
|
+
type __VLS_TemplateResult = {
|
|
68
|
+
slots: {
|
|
69
|
+
right?(_: {}): any;
|
|
70
|
+
"right-icon"?(_: {
|
|
71
|
+
iconName: string;
|
|
72
|
+
iconSize: any;
|
|
73
|
+
}): any;
|
|
74
|
+
"after-caret"?(_: {
|
|
75
|
+
scopeProps: {
|
|
76
|
+
readonly label: string;
|
|
77
|
+
readonly id: string;
|
|
78
|
+
readonly description: string;
|
|
79
|
+
readonly error: string;
|
|
80
|
+
readonly rightIcon: string;
|
|
81
|
+
readonly leftIcon: string;
|
|
82
|
+
readonly config: Record<string, any>;
|
|
83
|
+
readonly options: unknown[];
|
|
84
|
+
readonly dataTest: string;
|
|
85
|
+
readonly modelValue: string | number | unknown[];
|
|
86
|
+
readonly placeholder: string;
|
|
87
|
+
readonly groupLabelKey: string;
|
|
88
|
+
readonly groupValueKey: string;
|
|
89
|
+
readonly disabled?: boolean | undefined;
|
|
90
|
+
readonly size?: string | undefined;
|
|
91
|
+
readonly multiple?: boolean | undefined;
|
|
92
|
+
readonly labelAlign?: string | undefined;
|
|
93
|
+
readonly labelKey?: string | undefined;
|
|
94
|
+
readonly valueKey?: string | undefined;
|
|
95
|
+
readonly addOption?: boolean | undefined;
|
|
96
|
+
readonly visibleOptions?: number | undefined;
|
|
97
|
+
readonly openDirection?: string | undefined;
|
|
98
|
+
readonly optionsLimit?: number | undefined;
|
|
99
|
+
readonly clearable?: boolean | undefined;
|
|
100
|
+
readonly searchable?: boolean | undefined;
|
|
101
|
+
};
|
|
102
|
+
}): any;
|
|
103
|
+
toggle?(_: {
|
|
104
|
+
iconName: any;
|
|
105
|
+
iconSize: any;
|
|
106
|
+
opened: boolean;
|
|
107
|
+
}): any;
|
|
108
|
+
clear?(_: {
|
|
109
|
+
iconName: any;
|
|
110
|
+
iconSize: any;
|
|
111
|
+
}): any;
|
|
112
|
+
"before-caret"?(_: {
|
|
113
|
+
scopeProps: {
|
|
114
|
+
readonly label: string;
|
|
115
|
+
readonly id: string;
|
|
116
|
+
readonly description: string;
|
|
117
|
+
readonly error: string;
|
|
118
|
+
readonly rightIcon: string;
|
|
119
|
+
readonly leftIcon: string;
|
|
120
|
+
readonly config: Record<string, any>;
|
|
121
|
+
readonly options: unknown[];
|
|
122
|
+
readonly dataTest: string;
|
|
123
|
+
readonly modelValue: string | number | unknown[];
|
|
124
|
+
readonly placeholder: string;
|
|
125
|
+
readonly groupLabelKey: string;
|
|
126
|
+
readonly groupValueKey: string;
|
|
127
|
+
readonly disabled?: boolean | undefined;
|
|
128
|
+
readonly size?: string | undefined;
|
|
129
|
+
readonly multiple?: boolean | undefined;
|
|
130
|
+
readonly labelAlign?: string | undefined;
|
|
131
|
+
readonly labelKey?: string | undefined;
|
|
132
|
+
readonly valueKey?: string | undefined;
|
|
133
|
+
readonly addOption?: boolean | undefined;
|
|
134
|
+
readonly visibleOptions?: number | undefined;
|
|
135
|
+
readonly openDirection?: string | undefined;
|
|
136
|
+
readonly optionsLimit?: number | undefined;
|
|
137
|
+
readonly clearable?: boolean | undefined;
|
|
138
|
+
readonly searchable?: boolean | undefined;
|
|
139
|
+
};
|
|
140
|
+
}): any;
|
|
141
|
+
"left-icon"?(_: {
|
|
142
|
+
iconName: string;
|
|
143
|
+
iconSize: any;
|
|
144
|
+
}): any;
|
|
145
|
+
left?(_: {}): any;
|
|
146
|
+
"selected-label"?(_: {
|
|
147
|
+
selectedLabel: any;
|
|
148
|
+
value: any;
|
|
149
|
+
rawOption: any;
|
|
150
|
+
}): any;
|
|
151
|
+
"selected-label"?(_: {
|
|
152
|
+
selectedLabel: any;
|
|
153
|
+
value: any;
|
|
154
|
+
}): any;
|
|
155
|
+
"selected-label-after"?(_: {
|
|
156
|
+
scopeProps: {
|
|
157
|
+
readonly label: string;
|
|
158
|
+
readonly id: string;
|
|
159
|
+
readonly description: string;
|
|
160
|
+
readonly error: string;
|
|
161
|
+
readonly rightIcon: string;
|
|
162
|
+
readonly leftIcon: string;
|
|
163
|
+
readonly config: Record<string, any>;
|
|
164
|
+
readonly options: unknown[];
|
|
165
|
+
readonly dataTest: string;
|
|
166
|
+
readonly modelValue: string | number | unknown[];
|
|
167
|
+
readonly placeholder: string;
|
|
168
|
+
readonly groupLabelKey: string;
|
|
169
|
+
readonly groupValueKey: string;
|
|
170
|
+
readonly disabled?: boolean | undefined;
|
|
171
|
+
readonly size?: string | undefined;
|
|
172
|
+
readonly multiple?: boolean | undefined;
|
|
173
|
+
readonly labelAlign?: string | undefined;
|
|
174
|
+
readonly labelKey?: string | undefined;
|
|
175
|
+
readonly valueKey?: string | undefined;
|
|
176
|
+
readonly addOption?: boolean | undefined;
|
|
177
|
+
readonly visibleOptions?: number | undefined;
|
|
178
|
+
readonly openDirection?: string | undefined;
|
|
179
|
+
readonly optionsLimit?: number | undefined;
|
|
180
|
+
readonly clearable?: boolean | undefined;
|
|
181
|
+
readonly searchable?: boolean | undefined;
|
|
182
|
+
};
|
|
183
|
+
}): any;
|
|
184
|
+
"selected-label-after"?(_: {
|
|
185
|
+
scopeProps: {
|
|
186
|
+
readonly label: string;
|
|
187
|
+
readonly id: string;
|
|
188
|
+
readonly description: string;
|
|
189
|
+
readonly error: string;
|
|
190
|
+
readonly rightIcon: string;
|
|
191
|
+
readonly leftIcon: string;
|
|
192
|
+
readonly config: Record<string, any>;
|
|
193
|
+
readonly options: unknown[];
|
|
194
|
+
readonly dataTest: string;
|
|
195
|
+
readonly modelValue: string | number | unknown[];
|
|
196
|
+
readonly placeholder: string;
|
|
197
|
+
readonly groupLabelKey: string;
|
|
198
|
+
readonly groupValueKey: string;
|
|
199
|
+
readonly disabled?: boolean | undefined;
|
|
200
|
+
readonly size?: string | undefined;
|
|
201
|
+
readonly multiple?: boolean | undefined;
|
|
202
|
+
readonly labelAlign?: string | undefined;
|
|
203
|
+
readonly labelKey?: string | undefined;
|
|
204
|
+
readonly valueKey?: string | undefined;
|
|
205
|
+
readonly addOption?: boolean | undefined;
|
|
206
|
+
readonly visibleOptions?: number | undefined;
|
|
207
|
+
readonly openDirection?: string | undefined;
|
|
208
|
+
readonly optionsLimit?: number | undefined;
|
|
209
|
+
readonly clearable?: boolean | undefined;
|
|
210
|
+
readonly searchable?: boolean | undefined;
|
|
211
|
+
};
|
|
212
|
+
}): any;
|
|
213
|
+
"clear-multiple"?(_: {
|
|
214
|
+
iconName: any;
|
|
215
|
+
iconSize: any;
|
|
216
|
+
}): any;
|
|
217
|
+
"before-option"?(_: {
|
|
218
|
+
option: unknown;
|
|
219
|
+
index: number;
|
|
220
|
+
}): any;
|
|
221
|
+
option?(_: {
|
|
222
|
+
option: unknown;
|
|
223
|
+
index: number;
|
|
224
|
+
}): any;
|
|
225
|
+
"after-option"?(_: {
|
|
226
|
+
option: unknown;
|
|
227
|
+
index: number;
|
|
228
|
+
}): any;
|
|
229
|
+
};
|
|
230
|
+
refs: {
|
|
231
|
+
labelComponentRef: ({
|
|
232
|
+
$: ComponentInternalInstance;
|
|
233
|
+
$data: {};
|
|
234
|
+
$props: Partial<{}> & Omit<{} & VNodeProps & AllowedComponentProps & ComponentCustomProps & Readonly<{}> & Readonly<{}>, never>;
|
|
235
|
+
$attrs: Data;
|
|
236
|
+
$refs: Data;
|
|
237
|
+
$slots: Readonly<InternalSlots>;
|
|
238
|
+
$root: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, ComponentProvideOptions>, {}, {}, "", {}, any> | null;
|
|
239
|
+
$parent: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, ComponentProvideOptions>, {}, {}, "", {}, any> | null;
|
|
240
|
+
$host: Element | null;
|
|
241
|
+
$emit: (event: string, ...args: any[]) => void;
|
|
242
|
+
$el: any;
|
|
243
|
+
$options: ComponentOptionsBase<ToResolvedProps<{}, {}>, {
|
|
244
|
+
labelElement: ComputedRef<null>;
|
|
245
|
+
wrapperElement: ComputedRef<null>;
|
|
246
|
+
$emit: (event: "click", ...args: any[]) => void;
|
|
247
|
+
label: string;
|
|
248
|
+
description: string;
|
|
249
|
+
error: string;
|
|
250
|
+
config: Record<string, any>;
|
|
251
|
+
dataTest: string;
|
|
252
|
+
for: string;
|
|
253
|
+
disabled?: boolean | undefined;
|
|
254
|
+
size?: string | undefined;
|
|
255
|
+
align?: string | undefined;
|
|
256
|
+
centred?: boolean | undefined;
|
|
257
|
+
$props: {
|
|
258
|
+
readonly label?: string | undefined;
|
|
259
|
+
readonly description?: string | undefined;
|
|
260
|
+
readonly error?: string | undefined;
|
|
261
|
+
readonly config?: Record<string, any> | undefined;
|
|
262
|
+
readonly dataTest?: string | undefined;
|
|
263
|
+
readonly for?: string | undefined;
|
|
264
|
+
readonly disabled?: boolean | undefined;
|
|
265
|
+
readonly size?: string | undefined;
|
|
266
|
+
readonly align?: string | undefined;
|
|
267
|
+
readonly centred?: boolean | undefined;
|
|
268
|
+
};
|
|
269
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & MergedComponentOptionsOverride;
|
|
270
|
+
$forceUpdate: () => void;
|
|
271
|
+
$nextTick: typeof nextTick;
|
|
272
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R, args_2: OnCleanup) => any : (args_0: any, args_1: any, args_2: OnCleanup) => any, options?: WatchOptions<boolean> | undefined): WatchStopHandle;
|
|
273
|
+
} & Readonly<{}> & Omit<Readonly<{}> & Readonly<{}>, "label" | "disabled" | "description" | "error" | "size" | "config" | "$props" | "$emit" | "dataTest" | "align" | "centred" | "for" | "labelElement" | "wrapperElement"> & ShallowUnwrapRef<{
|
|
274
|
+
labelElement: ComputedRef<null>;
|
|
275
|
+
wrapperElement: ComputedRef<null>;
|
|
276
|
+
$emit: (event: "click", ...args: any[]) => void;
|
|
277
|
+
label: string;
|
|
278
|
+
description: string;
|
|
279
|
+
error: string;
|
|
280
|
+
config: Record<string, any>;
|
|
281
|
+
dataTest: string;
|
|
282
|
+
for: string;
|
|
283
|
+
disabled?: boolean | undefined;
|
|
284
|
+
size?: string | undefined;
|
|
285
|
+
align?: string | undefined;
|
|
286
|
+
centred?: boolean | undefined;
|
|
287
|
+
$props: {
|
|
288
|
+
readonly label?: string | undefined;
|
|
289
|
+
readonly description?: string | undefined;
|
|
290
|
+
readonly error?: string | undefined;
|
|
291
|
+
readonly config?: Record<string, any> | undefined;
|
|
292
|
+
readonly dataTest?: string | undefined;
|
|
293
|
+
readonly for?: string | undefined;
|
|
294
|
+
readonly disabled?: boolean | undefined;
|
|
295
|
+
readonly size?: string | undefined;
|
|
296
|
+
readonly align?: string | undefined;
|
|
297
|
+
readonly centred?: boolean | undefined;
|
|
298
|
+
};
|
|
299
|
+
}> & ExtractComputedReturns<{}> & ComponentCustomProperties & {} & {
|
|
300
|
+
$slots: {
|
|
301
|
+
default?(_: {}): any;
|
|
302
|
+
default?(_: {}): any;
|
|
303
|
+
bottom?(_: {}): any;
|
|
304
|
+
bottom?(_: {}): any;
|
|
305
|
+
};
|
|
306
|
+
}) | null;
|
|
307
|
+
wrapperRef: HTMLDivElement;
|
|
308
|
+
innerWrapperRef: HTMLDivElement;
|
|
309
|
+
leftSlotWrapperRef: HTMLSpanElement;
|
|
310
|
+
searchInputRef: HTMLInputElement;
|
|
311
|
+
dropdownListRef: ({
|
|
312
|
+
$: ComponentInternalInstance;
|
|
313
|
+
$data: {};
|
|
314
|
+
$props: Partial<{}> & Omit<{} & VNodeProps & AllowedComponentProps & ComponentCustomProps & Readonly<{}> & Readonly<{}>, never>;
|
|
315
|
+
$attrs: Data;
|
|
316
|
+
$refs: Data;
|
|
317
|
+
$slots: Readonly<InternalSlots>;
|
|
318
|
+
$root: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, ComponentProvideOptions>, {}, {}, "", {}, any> | null;
|
|
319
|
+
$parent: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, ComponentProvideOptions>, {}, {}, "", {}, any> | null;
|
|
320
|
+
$host: Element | null;
|
|
321
|
+
$emit: (event: string, ...args: any[]) => void;
|
|
322
|
+
$el: any;
|
|
323
|
+
$options: ComponentOptionsBase<ToResolvedProps<{}, {}>, {
|
|
324
|
+
pointerSet: (index: any) => void;
|
|
325
|
+
pointerBackward: () => void;
|
|
326
|
+
pointerForward: () => void;
|
|
327
|
+
pointerReset: () => void;
|
|
328
|
+
addPointerElement: typeof addPointerElement;
|
|
329
|
+
optionsRef: Ref<never[], never[]>;
|
|
330
|
+
wrapperRef: Ref<null, null>;
|
|
331
|
+
$emit: (event: "add" | "clickOption", ...args: any[]) => void;
|
|
332
|
+
id: string;
|
|
333
|
+
config: Record<string, any>;
|
|
334
|
+
options: unknown[];
|
|
335
|
+
addOption: boolean;
|
|
336
|
+
disabled?: boolean | undefined;
|
|
337
|
+
size?: string | undefined;
|
|
338
|
+
labelKey?: string | undefined;
|
|
339
|
+
valueKey?: string | undefined;
|
|
340
|
+
visibleOptions?: number | undefined;
|
|
341
|
+
$props: {
|
|
342
|
+
readonly id?: string | undefined;
|
|
343
|
+
readonly config?: Record<string, any> | undefined;
|
|
344
|
+
readonly options?: unknown[] | undefined;
|
|
345
|
+
readonly addOption?: boolean | undefined;
|
|
346
|
+
readonly disabled?: boolean | undefined;
|
|
347
|
+
readonly size?: string | undefined;
|
|
348
|
+
readonly labelKey?: string | undefined;
|
|
349
|
+
readonly valueKey?: string | undefined;
|
|
350
|
+
readonly visibleOptions?: number | undefined;
|
|
351
|
+
};
|
|
352
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & MergedComponentOptionsOverride;
|
|
353
|
+
$forceUpdate: () => void;
|
|
354
|
+
$nextTick: typeof nextTick;
|
|
355
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R, args_2: OnCleanup) => any : (args_0: any, args_1: any, args_2: OnCleanup) => any, options?: WatchOptions<boolean> | undefined): WatchStopHandle;
|
|
356
|
+
} & Readonly<{}> & Omit<Readonly<{}> & Readonly<{}>, "id" | "disabled" | "size" | "config" | "options" | "$props" | "$emit" | "wrapperRef" | "labelKey" | "valueKey" | "addOption" | "visibleOptions" | "pointerSet" | "pointerBackward" | "pointerForward" | "pointerReset" | "addPointerElement" | "optionsRef"> & ShallowUnwrapRef<{
|
|
357
|
+
pointerSet: (index: any) => void;
|
|
358
|
+
pointerBackward: () => void;
|
|
359
|
+
pointerForward: () => void;
|
|
360
|
+
pointerReset: () => void;
|
|
361
|
+
addPointerElement: typeof addPointerElement;
|
|
362
|
+
optionsRef: Ref<never[], never[]>;
|
|
363
|
+
wrapperRef: Ref<null, null>;
|
|
364
|
+
$emit: (event: "add" | "clickOption", ...args: any[]) => void;
|
|
365
|
+
id: string;
|
|
366
|
+
config: Record<string, any>;
|
|
367
|
+
options: unknown[];
|
|
368
|
+
addOption: boolean;
|
|
369
|
+
disabled?: boolean | undefined;
|
|
370
|
+
size?: string | undefined;
|
|
371
|
+
labelKey?: string | undefined;
|
|
372
|
+
valueKey?: string | undefined;
|
|
373
|
+
visibleOptions?: number | undefined;
|
|
374
|
+
$props: {
|
|
375
|
+
readonly id?: string | undefined;
|
|
376
|
+
readonly config?: Record<string, any> | undefined;
|
|
377
|
+
readonly options?: unknown[] | undefined;
|
|
378
|
+
readonly addOption?: boolean | undefined;
|
|
379
|
+
readonly disabled?: boolean | undefined;
|
|
380
|
+
readonly size?: string | undefined;
|
|
381
|
+
readonly labelKey?: string | undefined;
|
|
382
|
+
readonly valueKey?: string | undefined;
|
|
383
|
+
readonly visibleOptions?: number | undefined;
|
|
384
|
+
};
|
|
385
|
+
}> & ExtractComputedReturns<{}> & ComponentCustomProperties & {} & {
|
|
386
|
+
$slots: {
|
|
387
|
+
"before-option"?(_: {
|
|
388
|
+
option: unknown;
|
|
389
|
+
index: number;
|
|
390
|
+
}): any;
|
|
391
|
+
option?(_: {
|
|
392
|
+
option: unknown;
|
|
393
|
+
index: number;
|
|
394
|
+
}): any;
|
|
395
|
+
"after-option"?(_: {
|
|
396
|
+
option: unknown;
|
|
397
|
+
index: number;
|
|
398
|
+
}): any;
|
|
399
|
+
empty?(_: {}): any;
|
|
400
|
+
};
|
|
401
|
+
}) | null;
|
|
402
|
+
};
|
|
403
|
+
attrs: Partial<typeof __VLS_inheritedAttrs>;
|
|
404
|
+
};
|
|
405
|
+
declare var __VLS_inheritedAttrs: {};
|
|
@@ -0,0 +1,146 @@
|
|
|
1
|
+
declare namespace _default {
|
|
2
|
+
let selectLabel: string;
|
|
3
|
+
let selectLabelActive: string;
|
|
4
|
+
let selectLabelOpenDirectionTop: string;
|
|
5
|
+
namespace wrapper {
|
|
6
|
+
let base: string;
|
|
7
|
+
namespace variants {
|
|
8
|
+
namespace error {
|
|
9
|
+
let _true: string;
|
|
10
|
+
export { _true as true };
|
|
11
|
+
}
|
|
12
|
+
namespace disabled {
|
|
13
|
+
let _true_1: string;
|
|
14
|
+
export { _true_1 as true };
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
let compoundVariants: {
|
|
18
|
+
labelAlign: string;
|
|
19
|
+
label: boolean;
|
|
20
|
+
size: string;
|
|
21
|
+
class: string;
|
|
22
|
+
}[];
|
|
23
|
+
}
|
|
24
|
+
let wrapperActive: string;
|
|
25
|
+
namespace innerWrapper {
|
|
26
|
+
let base_1: string;
|
|
27
|
+
export { base_1 as base };
|
|
28
|
+
export namespace variants_1 {
|
|
29
|
+
namespace multiple {
|
|
30
|
+
let _true_2: string;
|
|
31
|
+
export { _true_2 as true };
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
export { variants_1 as variants };
|
|
35
|
+
}
|
|
36
|
+
let selectedLabels: string;
|
|
37
|
+
namespace selectedLabel {
|
|
38
|
+
let base_2: string;
|
|
39
|
+
export { base_2 as base };
|
|
40
|
+
export namespace variants_2 {
|
|
41
|
+
export namespace size {
|
|
42
|
+
let sm: string;
|
|
43
|
+
let md: string;
|
|
44
|
+
let lg: string;
|
|
45
|
+
}
|
|
46
|
+
export namespace disabled_1 {
|
|
47
|
+
let _true_3: string;
|
|
48
|
+
export { _true_3 as true };
|
|
49
|
+
}
|
|
50
|
+
export { disabled_1 as disabled };
|
|
51
|
+
export namespace multiple_1 {
|
|
52
|
+
let _true_4: string;
|
|
53
|
+
export { _true_4 as true };
|
|
54
|
+
}
|
|
55
|
+
export { multiple_1 as multiple };
|
|
56
|
+
}
|
|
57
|
+
export { variants_2 as variants };
|
|
58
|
+
let compoundVariants_1: {
|
|
59
|
+
size: string;
|
|
60
|
+
multiple: boolean;
|
|
61
|
+
class: string;
|
|
62
|
+
}[];
|
|
63
|
+
export { compoundVariants_1 as compoundVariants };
|
|
64
|
+
}
|
|
65
|
+
let leftIconWrapper: string;
|
|
66
|
+
let rightIconWrapper: string;
|
|
67
|
+
let leftIcon: string;
|
|
68
|
+
let rightIcon: string;
|
|
69
|
+
let beforeCaret: string;
|
|
70
|
+
let afterCaret: string;
|
|
71
|
+
namespace caret {
|
|
72
|
+
let base_3: string;
|
|
73
|
+
export { base_3 as base };
|
|
74
|
+
let compoundVariants_2: {
|
|
75
|
+
labelAlign: string;
|
|
76
|
+
size: string;
|
|
77
|
+
label: boolean;
|
|
78
|
+
class: string;
|
|
79
|
+
}[];
|
|
80
|
+
export { compoundVariants_2 as compoundVariants };
|
|
81
|
+
}
|
|
82
|
+
let toggle: string;
|
|
83
|
+
let toggleIcon: string;
|
|
84
|
+
let clear: string;
|
|
85
|
+
let clearIcon: string;
|
|
86
|
+
let clearMultiple: string;
|
|
87
|
+
let clearMultipleIcon: string;
|
|
88
|
+
namespace clearMultipleText {
|
|
89
|
+
let base_4: string;
|
|
90
|
+
export { base_4 as base };
|
|
91
|
+
let compoundVariants_3: {
|
|
92
|
+
size: string;
|
|
93
|
+
class: string;
|
|
94
|
+
}[];
|
|
95
|
+
export { compoundVariants_3 as compoundVariants };
|
|
96
|
+
}
|
|
97
|
+
let search: string;
|
|
98
|
+
let searchActive: string;
|
|
99
|
+
namespace searchInput {
|
|
100
|
+
let base_5: string;
|
|
101
|
+
export { base_5 as base };
|
|
102
|
+
export namespace variants_3 {
|
|
103
|
+
export namespace size_1 {
|
|
104
|
+
let sm_1: string;
|
|
105
|
+
export { sm_1 as sm };
|
|
106
|
+
let md_1: string;
|
|
107
|
+
export { md_1 as md };
|
|
108
|
+
let lg_1: string;
|
|
109
|
+
export { lg_1 as lg };
|
|
110
|
+
}
|
|
111
|
+
export { size_1 as size };
|
|
112
|
+
}
|
|
113
|
+
export { variants_3 as variants };
|
|
114
|
+
}
|
|
115
|
+
let dropdownList: string;
|
|
116
|
+
namespace i18n {
|
|
117
|
+
export let listIsEmpty: string;
|
|
118
|
+
export let noDataToShow: string;
|
|
119
|
+
let clear_1: string;
|
|
120
|
+
export { clear_1 as clear };
|
|
121
|
+
export let addMore: string;
|
|
122
|
+
}
|
|
123
|
+
namespace defaults {
|
|
124
|
+
let size_2: string;
|
|
125
|
+
export { size_2 as size };
|
|
126
|
+
export let labelAlign: string;
|
|
127
|
+
export let openDirection: string;
|
|
128
|
+
export let labelKey: string;
|
|
129
|
+
export let valueKey: string;
|
|
130
|
+
export let optionsLimit: number;
|
|
131
|
+
export let visibleOptions: number;
|
|
132
|
+
let multiple_2: boolean;
|
|
133
|
+
export { multiple_2 as multiple };
|
|
134
|
+
let disabled_2: boolean;
|
|
135
|
+
export { disabled_2 as disabled };
|
|
136
|
+
export let searchable: boolean;
|
|
137
|
+
export let clearable: boolean;
|
|
138
|
+
export let addOption: boolean;
|
|
139
|
+
export let dropdownIcon: string;
|
|
140
|
+
let clearIcon_1: string;
|
|
141
|
+
export { clearIcon_1 as clearIcon };
|
|
142
|
+
let clearMultipleIcon_1: string;
|
|
143
|
+
export { clearMultipleIcon_1 as clearMultipleIcon };
|
|
144
|
+
}
|
|
145
|
+
}
|
|
146
|
+
export default _default;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
export const USelect: "USelect";
|
|
2
|
+
export namespace DIRECTION {
|
|
3
|
+
let top: string;
|
|
4
|
+
let bottom: string;
|
|
5
|
+
}
|
|
6
|
+
export namespace KEYS {
|
|
7
|
+
let enter: string;
|
|
8
|
+
let tab: string;
|
|
9
|
+
}
|
|
10
|
+
export namespace KEY_CODES {
|
|
11
|
+
let enter_1: number;
|
|
12
|
+
export { enter_1 as enter };
|
|
13
|
+
}
|