@sakoa/ui 0.1.0
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/README.md +171 -0
- package/dist/App.d.ts +2 -0
- package/dist/cli/index.js +9243 -0
- package/dist/components/DemoSection.d.ts +30 -0
- package/dist/components/SApiKeyboard.d.ts +22 -0
- package/dist/components/SApiSection.d.ts +21 -0
- package/dist/components/SApiTable.d.ts +46 -0
- package/dist/components/STableOfContents.d.ts +2 -0
- package/dist/components/ui/SAlert.d.ts +76 -0
- package/dist/components/ui/SBadge.d.ts +56 -0
- package/dist/components/ui/SButton.d.ts +67 -0
- package/dist/components/ui/SCheckbox.d.ts +64 -0
- package/dist/components/ui/SChip.d.ts +43 -0
- package/dist/components/ui/SDatePicker.d.ts +77 -0
- package/dist/components/ui/SGlassButton.d.ts +70 -0
- package/dist/components/ui/SIcon.d.ts +29 -0
- package/dist/components/ui/SInput.d.ts +129 -0
- package/dist/components/ui/SKbd.d.ts +24 -0
- package/dist/components/ui/SKbdShortcut.d.ts +14 -0
- package/dist/components/ui/SSelect.d.ts +148 -0
- package/dist/components/ui/SSkeleton.d.ts +37 -0
- package/dist/components/ui/SSwitch.d.ts +61 -0
- package/dist/components/ui/STooltip.d.ts +82 -0
- package/dist/components/ui/accordion/SAccordionContent.d.ts +23 -0
- package/dist/components/ui/accordion/SAccordionItem.d.ts +70 -0
- package/dist/components/ui/accordion/SAccordionTrigger.d.ts +37 -0
- package/dist/components/ui/accordion/index.d.ts +4 -0
- package/dist/components/ui/avatar/SAvatar.d.ts +36 -0
- package/dist/components/ui/avatar/SAvatarFallback.d.ts +26 -0
- package/dist/components/ui/avatar/SAvatarGroup.d.ts +30 -0
- package/dist/components/ui/avatar/SAvatarImage.d.ts +23 -0
- package/dist/components/ui/avatar/index.d.ts +4 -0
- package/dist/components/ui/breadcrumb/SBreadcrumb.d.ts +22 -0
- package/dist/components/ui/breadcrumb/SBreadcrumbEllipsis.d.ts +17 -0
- package/dist/components/ui/breadcrumb/SBreadcrumbItem.d.ts +17 -0
- package/dist/components/ui/breadcrumb/SBreadcrumbLink.d.ts +26 -0
- package/dist/components/ui/breadcrumb/SBreadcrumbList.d.ts +17 -0
- package/dist/components/ui/breadcrumb/SBreadcrumbPage.d.ts +17 -0
- package/dist/components/ui/breadcrumb/SBreadcrumbSeparator.d.ts +17 -0
- package/dist/components/ui/breadcrumb/index.d.ts +7 -0
- package/dist/components/ui/card/SCard.d.ts +103 -0
- package/dist/components/ui/card/SCardActions.d.ts +44 -0
- package/dist/components/ui/card/SCardContent.d.ts +35 -0
- package/dist/components/ui/card/SCardFooter.d.ts +38 -0
- package/dist/components/ui/card/SCardHeader.d.ts +53 -0
- package/dist/components/ui/card/SCardMedia.d.ts +83 -0
- package/dist/components/ui/card/SGlassCard.d.ts +103 -0
- package/dist/components/ui/card/SMorphingCardContent.d.ts +18 -0
- package/dist/components/ui/card/index.d.ts +24 -0
- package/dist/components/ui/carousel/SCarousel.d.ts +166 -0
- package/dist/components/ui/carousel/index.d.ts +2 -0
- package/dist/components/ui/color-picker/SColorPickerAlphaSlider.d.ts +4 -0
- package/dist/components/ui/color-picker/SColorPickerCopy.d.ts +19 -0
- package/dist/components/ui/color-picker/SColorPickerEyeDropper.d.ts +17 -0
- package/dist/components/ui/color-picker/SColorPickerHueSlider.d.ts +4 -0
- package/dist/components/ui/color-picker/SColorPickerInputs.d.ts +2 -0
- package/dist/components/ui/color-picker/SColorPickerPresets.d.ts +9 -0
- package/dist/components/ui/color-picker/SColorPickerPreview.d.ts +2 -0
- package/dist/components/ui/color-picker/SColorPickerRecent.d.ts +7 -0
- package/dist/components/ui/color-picker/SColorPickerSpectrum.d.ts +4 -0
- package/dist/components/ui/color-picker/index.d.ts +11 -0
- package/dist/components/ui/drawer/index.d.ts +11 -0
- package/dist/components/ui/dropdown/SDropdownDivider.d.ts +8 -0
- package/dist/components/ui/dropdown/SDropdownGroup.d.ts +25 -0
- package/dist/components/ui/dropdown/SDropdownItem.d.ts +56 -0
- package/dist/components/ui/dropdown/index.d.ts +4 -0
- package/dist/components/ui/form/SForm.d.ts +38 -0
- package/dist/components/ui/form/SFormField.d.ts +31 -0
- package/dist/components/ui/form/index.d.ts +5 -0
- package/dist/components/ui/modal/index.d.ts +19 -0
- package/dist/components/ui/option/SOption.d.ts +32 -0
- package/dist/components/ui/option/SOptionGroup.d.ts +28 -0
- package/dist/components/ui/option/index.d.ts +2 -0
- package/dist/components/ui/otp/SOTP.d.ts +122 -0
- package/dist/components/ui/otp/SOTPGroup.d.ts +23 -0
- package/dist/components/ui/otp/SOTPSeparator.d.ts +17 -0
- package/dist/components/ui/otp/SOTPSlot.d.ts +49 -0
- package/dist/components/ui/otp/index.d.ts +7 -0
- package/dist/components/ui/otp/types.d.ts +26 -0
- package/dist/components/ui/otp/useOTPContext.d.ts +42 -0
- package/dist/components/ui/pagination/SPagination.d.ts +151 -0
- package/dist/components/ui/pagination/index.d.ts +2 -0
- package/dist/components/ui/progress/SProgress.d.ts +62 -0
- package/dist/components/ui/progress/SProgressRange.d.ts +91 -0
- package/dist/components/ui/progress/index.d.ts +4 -0
- package/dist/components/ui/radio/SRadio.d.ts +58 -0
- package/dist/components/ui/radio/SRadioGroup.d.ts +52 -0
- package/dist/components/ui/radio/index.d.ts +2 -0
- package/dist/components/ui/stepper/SStepper.d.ts +83 -0
- package/dist/components/ui/stepper/SStepperContent.d.ts +24 -0
- package/dist/components/ui/stepper/SStepperDescription.d.ts +20 -0
- package/dist/components/ui/stepper/SStepperIndicator.d.ts +37 -0
- package/dist/components/ui/stepper/SStepperItem.d.ts +37 -0
- package/dist/components/ui/stepper/SStepperSeparator.d.ts +5 -0
- package/dist/components/ui/stepper/SStepperTitle.d.ts +20 -0
- package/dist/components/ui/stepper/SStepperTrigger.d.ts +22 -0
- package/dist/components/ui/stepper/index.d.ts +11 -0
- package/dist/components/ui/table/STableBody.d.ts +27 -0
- package/dist/components/ui/table/STableCell.d.ts +55 -0
- package/dist/components/ui/table/STableColumn.d.ts +87 -0
- package/dist/components/ui/table/STableEmpty.d.ts +54 -0
- package/dist/components/ui/table/STableHeader.d.ts +25 -0
- package/dist/components/ui/table/STableRow.d.ts +38 -0
- package/dist/components/ui/table/STableSkeleton.d.ts +29 -0
- package/dist/components/ui/table/index.d.ts +98 -0
- package/dist/components/ui/table/useDataTable.d.ts +80 -0
- package/dist/components/ui/tabs/STabPane.d.ts +31 -0
- package/dist/components/ui/tabs/STabsContent.d.ts +21 -0
- package/dist/components/ui/tabs/STabsIndicator.d.ts +9 -0
- package/dist/components/ui/tabs/STabsTrigger.d.ts +28 -0
- package/dist/components/ui/tabs/index.d.ts +6 -0
- package/dist/components/ui/toast/SToast.d.ts +49 -0
- package/dist/components/ui/toast/SToastContainer.d.ts +21 -0
- package/dist/components/ui/toast/index.d.ts +2 -0
- package/dist/composables/useAsync.d.ts +134 -0
- package/dist/composables/useClickOutside.d.ts +69 -0
- package/dist/composables/useClipboard.d.ts +46 -0
- package/dist/composables/useDebounce.d.ts +150 -0
- package/dist/composables/useDialog.d.ts +118 -0
- package/dist/composables/useForm.d.ts +204 -0
- package/dist/composables/useHotkey.d.ts +128 -0
- package/dist/composables/useIntersectionObserver.d.ts +156 -0
- package/dist/composables/useLocalStorage.d.ts +120 -0
- package/dist/composables/useMediaQuery.d.ts +115 -0
- package/dist/composables/useTheme.d.ts +8 -0
- package/dist/composables/useToast.d.ts +1619 -0
- package/dist/index.d.ts +71 -0
- package/dist/layouts/UILayout.d.ts +2 -0
- package/dist/lib/utils.d.ts +2 -0
- package/dist/main.d.ts +0 -0
- package/dist/router.d.ts +2 -0
- package/dist/saka-ui.css +1 -0
- package/dist/saka-ui.js +18513 -0
- package/dist/saka-ui.umd.cjs +38 -0
- package/dist/views/docs/CustomizationView.d.ts +2 -0
- package/dist/views/docs/FormValidationView.d.ts +2 -0
- package/dist/views/docs/StylingGuideView.d.ts +2 -0
- package/dist/views/docs/UseAsyncView.d.ts +2 -0
- package/dist/views/docs/UseClickOutsideView.d.ts +124 -0
- package/dist/views/docs/UseClipboardView.d.ts +4 -0
- package/dist/views/docs/UseDebounceView.d.ts +2 -0
- package/dist/views/docs/UseHotkeyView.d.ts +205 -0
- package/dist/views/docs/UseIntersectionObserverView.d.ts +5 -0
- package/dist/views/docs/UseLocalStorageView.d.ts +2 -0
- package/dist/views/docs/UseMediaQueryView.d.ts +2 -0
- package/dist/views/docs/UseThemeView.d.ts +2 -0
- package/dist/views/examples/AuthFormView.d.ts +2 -0
- package/dist/views/examples/CreditCardFormView.d.ts +6 -0
- package/dist/views/examples/FormFieldExampleView.d.ts +2 -0
- package/dist/views/examples/ProjectFormView.d.ts +2 -0
- package/dist/views/ui/AccordionView.d.ts +2 -0
- package/dist/views/ui/AlertView.d.ts +2 -0
- package/dist/views/ui/AvatarView.d.ts +2 -0
- package/dist/views/ui/BadgeView.d.ts +2 -0
- package/dist/views/ui/BreadcrumbView.d.ts +2 -0
- package/dist/views/ui/ButtonView.d.ts +2 -0
- package/dist/views/ui/CardView.d.ts +2 -0
- package/dist/views/ui/CarouselView.d.ts +274 -0
- package/dist/views/ui/CheckboxView.d.ts +2 -0
- package/dist/views/ui/ChipView.d.ts +2 -0
- package/dist/views/ui/ColorPickerView.d.ts +2 -0
- package/dist/views/ui/DatePickerView.d.ts +2 -0
- package/dist/views/ui/DialogView.d.ts +2 -0
- package/dist/views/ui/DrawerView.d.ts +2 -0
- package/dist/views/ui/DropdownView.d.ts +2 -0
- package/dist/views/ui/GlassButtonView.d.ts +2 -0
- package/dist/views/ui/GlassCardView.d.ts +2 -0
- package/dist/views/ui/HomeView.d.ts +2 -0
- package/dist/views/ui/IconsView.d.ts +2 -0
- package/dist/views/ui/InputView.d.ts +2 -0
- package/dist/views/ui/KbdView.d.ts +2 -0
- package/dist/views/ui/ModalView.d.ts +2 -0
- package/dist/views/ui/MorphingCardView.d.ts +2 -0
- package/dist/views/ui/MorphingModalView.d.ts +2 -0
- package/dist/views/ui/OTPView.d.ts +206 -0
- package/dist/views/ui/PaginationView.d.ts +2 -0
- package/dist/views/ui/ProgressView.d.ts +2 -0
- package/dist/views/ui/RadioView.d.ts +2 -0
- package/dist/views/ui/SelectView.d.ts +2 -0
- package/dist/views/ui/SkeletonView.d.ts +2 -0
- package/dist/views/ui/StepperView.d.ts +2 -0
- package/dist/views/ui/SwitchView.d.ts +2 -0
- package/dist/views/ui/TableView.d.ts +2 -0
- package/dist/views/ui/TabsView.d.ts +2 -0
- package/dist/views/ui/ToastView.d.ts +2 -0
- package/dist/views/ui/TooltipView.d.ts +2 -0
- package/dist/vite.svg +1 -0
- package/package.json +64 -0
- package/registry/components/accordion.json +19 -0
- package/registry/components/alert.json +17 -0
- package/registry/components/avatar.json +18 -0
- package/registry/components/badge.json +14 -0
- package/registry/components/breadcrumb.json +24 -0
- package/registry/components/button.json +17 -0
- package/registry/components/card.json +23 -0
- package/registry/components/carousel.json +19 -0
- package/registry/components/checkbox.json +17 -0
- package/registry/components/chip.json +17 -0
- package/registry/components/color-picker.json +24 -0
- package/registry/components/date-picker.json +17 -0
- package/registry/components/drawer.json +26 -0
- package/registry/components/dropdown.json +21 -0
- package/registry/components/form.json +16 -0
- package/registry/components/glass-button.json +17 -0
- package/registry/components/icon.json +17 -0
- package/registry/components/input.json +17 -0
- package/registry/components/kbd.json +16 -0
- package/registry/components/modal.json +32 -0
- package/registry/components/option.json +16 -0
- package/registry/components/otp.json +23 -0
- package/registry/components/pagination.json +18 -0
- package/registry/components/progress.json +16 -0
- package/registry/components/radio.json +19 -0
- package/registry/components/select.json +17 -0
- package/registry/components/skeleton.json +14 -0
- package/registry/components/switch.json +17 -0
- package/registry/components/table.json +26 -0
- package/registry/components/tabs.json +19 -0
- package/registry/components/toast.json +19 -0
- package/registry/components/tooltip.json +14 -0
- package/registry/index.json +4 -0
- package/registry/source/components/ui/SAlert.vue +388 -0
- package/registry/source/components/ui/SBadge.vue +243 -0
- package/registry/source/components/ui/SButton.vue +387 -0
- package/registry/source/components/ui/SCheckbox.vue +310 -0
- package/registry/source/components/ui/SChip.vue +130 -0
- package/registry/source/components/ui/SDatePicker.vue +1290 -0
- package/registry/source/components/ui/SGlassButton.vue +547 -0
- package/registry/source/components/ui/SIcon.vue +78 -0
- package/registry/source/components/ui/SInput.vue +1054 -0
- package/registry/source/components/ui/SKbd.vue +96 -0
- package/registry/source/components/ui/SKbdShortcut.vue +36 -0
- package/registry/source/components/ui/SSelect.vue +1290 -0
- package/registry/source/components/ui/SSkeleton.vue +185 -0
- package/registry/source/components/ui/SSwitch.vue +275 -0
- package/registry/source/components/ui/STooltip.vue +491 -0
- package/registry/source/components/ui/accordion/SAccordion.vue +248 -0
- package/registry/source/components/ui/accordion/SAccordionItem.vue +353 -0
- package/registry/source/components/ui/accordion/index.ts +5 -0
- package/registry/source/components/ui/avatar/SAvatar.vue +169 -0
- package/registry/source/components/ui/avatar/SAvatarFallback.vue +66 -0
- package/registry/source/components/ui/avatar/SAvatarGroup.vue +69 -0
- package/registry/source/components/ui/avatar/SAvatarImage.vue +92 -0
- package/registry/source/components/ui/avatar/index.ts +5 -0
- package/registry/source/components/ui/breadcrumb/SBreadcrumb.vue +23 -0
- package/registry/source/components/ui/breadcrumb/SBreadcrumbEllipsis.vue +17 -0
- package/registry/source/components/ui/breadcrumb/SBreadcrumbItem.vue +14 -0
- package/registry/source/components/ui/breadcrumb/SBreadcrumbLink.vue +46 -0
- package/registry/source/components/ui/breadcrumb/SBreadcrumbList.vue +17 -0
- package/registry/source/components/ui/breadcrumb/SBreadcrumbPage.vue +15 -0
- package/registry/source/components/ui/breadcrumb/SBreadcrumbSeparator.vue +18 -0
- package/registry/source/components/ui/breadcrumb/index.ts +7 -0
- package/registry/source/components/ui/card/SCard.vue +517 -0
- package/registry/source/components/ui/card/SCardActions.vue +129 -0
- package/registry/source/components/ui/card/SCardContent.vue +117 -0
- package/registry/source/components/ui/card/SCardFooter.vue +103 -0
- package/registry/source/components/ui/card/SCardHeader.vue +163 -0
- package/registry/source/components/ui/card/SCardMedia.vue +312 -0
- package/registry/source/components/ui/card/index.ts +34 -0
- package/registry/source/components/ui/carousel/SCarousel.vue +1069 -0
- package/registry/source/components/ui/carousel/SCarouselSlide.vue +107 -0
- package/registry/source/components/ui/carousel/index.ts +3 -0
- package/registry/source/components/ui/color-picker/SColorPicker.vue +772 -0
- package/registry/source/components/ui/color-picker/SColorPickerAlphaSlider.vue +158 -0
- package/registry/source/components/ui/color-picker/SColorPickerCopy.vue +76 -0
- package/registry/source/components/ui/color-picker/SColorPickerEyeDropper.vue +68 -0
- package/registry/source/components/ui/color-picker/SColorPickerHueSlider.vue +138 -0
- package/registry/source/components/ui/color-picker/SColorPickerInputs.vue +227 -0
- package/registry/source/components/ui/color-picker/SColorPickerPresets.vue +87 -0
- package/registry/source/components/ui/color-picker/SColorPickerPreview.vue +46 -0
- package/registry/source/components/ui/color-picker/SColorPickerRecent.vue +74 -0
- package/registry/source/components/ui/color-picker/SColorPickerSpectrum.vue +149 -0
- package/registry/source/components/ui/color-picker/index.ts +11 -0
- package/registry/source/components/ui/drawer/SDrawer.vue +797 -0
- package/registry/source/components/ui/drawer/SDrawerClose.vue +64 -0
- package/registry/source/components/ui/drawer/SDrawerContent.vue +81 -0
- package/registry/source/components/ui/drawer/SDrawerDescription.vue +40 -0
- package/registry/source/components/ui/drawer/SDrawerFooter.vue +97 -0
- package/registry/source/components/ui/drawer/SDrawerHandle.vue +79 -0
- package/registry/source/components/ui/drawer/SDrawerHeader.vue +117 -0
- package/registry/source/components/ui/drawer/SDrawerTitle.vue +40 -0
- package/registry/source/components/ui/drawer/SDrawerTrigger.vue +51 -0
- package/registry/source/components/ui/drawer/index.ts +20 -0
- package/registry/source/components/ui/dropdown/SDropdown.vue +843 -0
- package/registry/source/components/ui/dropdown/SDropdownDivider.vue +23 -0
- package/registry/source/components/ui/dropdown/SDropdownGroup.vue +53 -0
- package/registry/source/components/ui/dropdown/SDropdownItem.vue +179 -0
- package/registry/source/components/ui/dropdown/index.ts +5 -0
- package/registry/source/components/ui/form/SForm.vue +84 -0
- package/registry/source/components/ui/form/SFormField.vue +78 -0
- package/registry/source/components/ui/form/index.ts +8 -0
- package/registry/source/components/ui/modal/SModal.vue +648 -0
- package/registry/source/components/ui/modal/SModalClose.vue +49 -0
- package/registry/source/components/ui/modal/SModalContent.vue +74 -0
- package/registry/source/components/ui/modal/SModalDescription.vue +39 -0
- package/registry/source/components/ui/modal/SModalFooter.vue +84 -0
- package/registry/source/components/ui/modal/SModalHeader.vue +107 -0
- package/registry/source/components/ui/modal/SModalTitle.vue +39 -0
- package/registry/source/components/ui/modal/SModalTrigger.vue +61 -0
- package/registry/source/components/ui/modal/SMorphingModal.vue +429 -0
- package/registry/source/components/ui/modal/SMorphingModalClose.vue +42 -0
- package/registry/source/components/ui/modal/SMorphingModalDescription.vue +49 -0
- package/registry/source/components/ui/modal/SMorphingModalImage.vue +44 -0
- package/registry/source/components/ui/modal/SMorphingModalSubtitle.vue +29 -0
- package/registry/source/components/ui/modal/SMorphingModalTitle.vue +34 -0
- package/registry/source/components/ui/modal/SMorphingModalTrigger.vue +95 -0
- package/registry/source/components/ui/modal/index.ts +32 -0
- package/registry/source/components/ui/option/SOption.vue +180 -0
- package/registry/source/components/ui/option/SOptionGroup.vue +77 -0
- package/registry/source/components/ui/option/index.ts +3 -0
- package/registry/source/components/ui/otp/SOTP.vue +843 -0
- package/registry/source/components/ui/otp/SOTPGroup.vue +29 -0
- package/registry/source/components/ui/otp/SOTPSeparator.vue +15 -0
- package/registry/source/components/ui/otp/SOTPSlot.vue +462 -0
- package/registry/source/components/ui/otp/index.ts +7 -0
- package/registry/source/components/ui/otp/types.ts +27 -0
- package/registry/source/components/ui/otp/useOTPContext.ts +62 -0
- package/registry/source/components/ui/pagination/SPagination.vue +923 -0
- package/registry/source/components/ui/pagination/index.ts +8 -0
- package/registry/source/components/ui/progress/SProgress.vue +635 -0
- package/registry/source/components/ui/progress/SProgressRange.vue +715 -0
- package/registry/source/components/ui/progress/index.ts +4 -0
- package/registry/source/components/ui/radio/SRadio.vue +407 -0
- package/registry/source/components/ui/radio/SRadioGroup.vue +200 -0
- package/registry/source/components/ui/radio/index.ts +3 -0
- package/registry/source/components/ui/table/SDataTable.vue +828 -0
- package/registry/source/components/ui/table/STableBody.vue +70 -0
- package/registry/source/components/ui/table/STableCell.vue +147 -0
- package/registry/source/components/ui/table/STableColumn.vue +120 -0
- package/registry/source/components/ui/table/STableEmpty.vue +159 -0
- package/registry/source/components/ui/table/STableHeader.vue +132 -0
- package/registry/source/components/ui/table/STableRow.vue +106 -0
- package/registry/source/components/ui/table/STableSkeleton.vue +208 -0
- package/registry/source/components/ui/table/index.ts +126 -0
- package/registry/source/components/ui/table/useDataTable.ts +519 -0
- package/registry/source/components/ui/tabs/STabPane.vue +130 -0
- package/registry/source/components/ui/tabs/STabs.vue +467 -0
- package/registry/source/components/ui/tabs/index.ts +7 -0
- package/registry/source/components/ui/toast/SToast.vue +261 -0
- package/registry/source/components/ui/toast/SToastContainer.vue +209 -0
- package/registry/source/components/ui/toast/index.ts +2 -0
- package/registry/source/composables/useForm.ts +960 -0
- package/registry/source/composables/useTheme.ts +86 -0
- package/registry/source/composables/useToast.ts +440 -0
- package/registry/source/lib/utils.ts +6 -0
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1,124 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
|
|
2
|
+
basicBoxRef: HTMLDivElement;
|
|
3
|
+
dropdownButtonRef: ({
|
|
4
|
+
$: import('vue').ComponentInternalInstance;
|
|
5
|
+
$data: {};
|
|
6
|
+
$props: {
|
|
7
|
+
readonly variant?: "filled" | "outlined" | "light" | "ghost" | "link" | undefined;
|
|
8
|
+
readonly size?: "xs" | "small" | "medium" | "large" | "xl" | undefined;
|
|
9
|
+
readonly color?: string | undefined;
|
|
10
|
+
readonly disabled?: boolean | undefined;
|
|
11
|
+
readonly loading?: boolean | undefined;
|
|
12
|
+
readonly preserveSize?: boolean | undefined;
|
|
13
|
+
readonly block?: boolean | undefined;
|
|
14
|
+
readonly rounded?: "none" | "sm" | "md" | "lg" | "full" | undefined;
|
|
15
|
+
readonly iconLeft?: string | undefined;
|
|
16
|
+
readonly iconRight?: string | undefined;
|
|
17
|
+
readonly iconOnly?: boolean | undefined;
|
|
18
|
+
readonly tag?: string | undefined;
|
|
19
|
+
readonly href?: string | undefined;
|
|
20
|
+
readonly to?: string | object | undefined;
|
|
21
|
+
readonly type?: "button" | "submit" | "reset" | undefined;
|
|
22
|
+
readonly ripple?: boolean | undefined;
|
|
23
|
+
readonly animationType?: "slide" | "vertical" | "scale" | "rotate" | undefined;
|
|
24
|
+
readonly animateInactive?: boolean | undefined;
|
|
25
|
+
readonly contentClass?: string | undefined;
|
|
26
|
+
readonly iconClass?: string | undefined;
|
|
27
|
+
readonly onClick?: ((event: MouseEvent) => any) | undefined;
|
|
28
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
29
|
+
$attrs: {
|
|
30
|
+
[x: string]: unknown;
|
|
31
|
+
};
|
|
32
|
+
$refs: {
|
|
33
|
+
[x: string]: unknown;
|
|
34
|
+
};
|
|
35
|
+
$slots: Readonly<{
|
|
36
|
+
[name: string]: import('vue').Slot<any> | undefined;
|
|
37
|
+
}>;
|
|
38
|
+
$root: import('vue').ComponentPublicInstance | null;
|
|
39
|
+
$parent: import('vue').ComponentPublicInstance | null;
|
|
40
|
+
$host: Element | null;
|
|
41
|
+
$emit: (event: "click", event: MouseEvent) => void;
|
|
42
|
+
$el: any;
|
|
43
|
+
$options: import('vue').ComponentOptionsBase<Readonly<import('../../components/ui/SButton').Props> & Readonly<{
|
|
44
|
+
onClick?: ((event: MouseEvent) => any) | undefined;
|
|
45
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
46
|
+
click: (event: MouseEvent) => any;
|
|
47
|
+
}, string, {
|
|
48
|
+
type: "button" | "submit" | "reset";
|
|
49
|
+
size: "xs" | "small" | "medium" | "large" | "xl";
|
|
50
|
+
disabled: boolean;
|
|
51
|
+
color: string;
|
|
52
|
+
variant: "filled" | "outlined" | "light" | "ghost" | "link";
|
|
53
|
+
contentClass: string;
|
|
54
|
+
loading: boolean;
|
|
55
|
+
rounded: "none" | "sm" | "md" | "lg" | "full";
|
|
56
|
+
preserveSize: boolean;
|
|
57
|
+
block: boolean;
|
|
58
|
+
iconLeft: string;
|
|
59
|
+
iconRight: string;
|
|
60
|
+
iconOnly: boolean;
|
|
61
|
+
tag: string;
|
|
62
|
+
href: string;
|
|
63
|
+
to: string | object;
|
|
64
|
+
ripple: boolean;
|
|
65
|
+
animationType: "slide" | "vertical" | "scale" | "rotate";
|
|
66
|
+
animateInactive: boolean;
|
|
67
|
+
iconClass: string;
|
|
68
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
69
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
70
|
+
created?: (() => void) | (() => void)[];
|
|
71
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
72
|
+
mounted?: (() => void) | (() => void)[];
|
|
73
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
74
|
+
updated?: (() => void) | (() => void)[];
|
|
75
|
+
activated?: (() => void) | (() => void)[];
|
|
76
|
+
deactivated?: (() => void) | (() => void)[];
|
|
77
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
78
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
79
|
+
destroyed?: (() => void) | (() => void)[];
|
|
80
|
+
unmounted?: (() => void) | (() => void)[];
|
|
81
|
+
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
82
|
+
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
83
|
+
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
84
|
+
};
|
|
85
|
+
$forceUpdate: () => void;
|
|
86
|
+
$nextTick: typeof import('vue').nextTick;
|
|
87
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
|
|
88
|
+
} & Readonly<{
|
|
89
|
+
type: "button" | "submit" | "reset";
|
|
90
|
+
size: "xs" | "small" | "medium" | "large" | "xl";
|
|
91
|
+
disabled: boolean;
|
|
92
|
+
color: string;
|
|
93
|
+
variant: "filled" | "outlined" | "light" | "ghost" | "link";
|
|
94
|
+
contentClass: string;
|
|
95
|
+
loading: boolean;
|
|
96
|
+
rounded: "none" | "sm" | "md" | "lg" | "full";
|
|
97
|
+
preserveSize: boolean;
|
|
98
|
+
block: boolean;
|
|
99
|
+
iconLeft: string;
|
|
100
|
+
iconRight: string;
|
|
101
|
+
iconOnly: boolean;
|
|
102
|
+
tag: string;
|
|
103
|
+
href: string;
|
|
104
|
+
to: string | object;
|
|
105
|
+
ripple: boolean;
|
|
106
|
+
animationType: "slide" | "vertical" | "scale" | "rotate";
|
|
107
|
+
animateInactive: boolean;
|
|
108
|
+
iconClass: string;
|
|
109
|
+
}> & Omit<Readonly<import('../../components/ui/SButton').Props> & Readonly<{
|
|
110
|
+
onClick?: ((event: MouseEvent) => any) | undefined;
|
|
111
|
+
}>, "type" | "size" | "disabled" | "color" | "variant" | "contentClass" | "loading" | "rounded" | "preserveSize" | "block" | "iconLeft" | "iconRight" | "iconOnly" | "tag" | "href" | "to" | "ripple" | "animationType" | "animateInactive" | "iconClass"> & import('vue').ShallowUnwrapRef<{}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
112
|
+
$slots: {
|
|
113
|
+
'icon-left'?(_: {}): any;
|
|
114
|
+
default?(_: {}): any;
|
|
115
|
+
default?(_: {}): any;
|
|
116
|
+
'icon-right'?(_: {}): any;
|
|
117
|
+
animate?(_: {}): any;
|
|
118
|
+
};
|
|
119
|
+
}) | null;
|
|
120
|
+
dropdownRef: HTMLDivElement;
|
|
121
|
+
modalRef: HTMLDivElement;
|
|
122
|
+
controlledRef: HTMLDivElement;
|
|
123
|
+
}, any>;
|
|
124
|
+
export default _default;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
|
|
2
|
+
codeElementRef: HTMLPreElement;
|
|
3
|
+
}, any>;
|
|
4
|
+
export default _default;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1,205 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
|
|
2
|
+
searchInputRef: ({
|
|
3
|
+
$: import('vue').ComponentInternalInstance;
|
|
4
|
+
$data: {};
|
|
5
|
+
$props: {
|
|
6
|
+
readonly modelValue?: string | number | undefined;
|
|
7
|
+
readonly type?: "text" | "email" | "password" | "number" | "tel" | "url" | "search" | "textarea" | undefined;
|
|
8
|
+
readonly variant?: "outlined" | "filled" | "underlined" | "ghost" | undefined;
|
|
9
|
+
readonly size?: "small" | "medium" | "large" | undefined;
|
|
10
|
+
readonly color?: string | undefined;
|
|
11
|
+
readonly rounded?: "none" | "sm" | "md" | "lg" | "full" | undefined;
|
|
12
|
+
readonly label?: string | undefined;
|
|
13
|
+
readonly placeholder?: string | undefined;
|
|
14
|
+
readonly labelPlacement?: "top" | "top-left" | "top-center" | "top-right" | "bottom" | "left" | "right" | "floating" | "inside" | undefined;
|
|
15
|
+
readonly labelAnimation?: "morph" | "slide" | "fade" | "none" | undefined;
|
|
16
|
+
readonly iconLeft?: string | undefined;
|
|
17
|
+
readonly iconRight?: string | undefined;
|
|
18
|
+
readonly iconColor?: string | undefined;
|
|
19
|
+
readonly disabled?: boolean | undefined;
|
|
20
|
+
readonly readonly?: boolean | undefined;
|
|
21
|
+
readonly loading?: boolean | undefined;
|
|
22
|
+
readonly error?: string | boolean | undefined;
|
|
23
|
+
readonly success?: string | boolean | undefined;
|
|
24
|
+
readonly warning?: string | boolean | undefined;
|
|
25
|
+
readonly hint?: string | undefined;
|
|
26
|
+
readonly required?: boolean | undefined;
|
|
27
|
+
readonly minLength?: number | undefined;
|
|
28
|
+
readonly maxLength?: number | undefined;
|
|
29
|
+
readonly pattern?: (string | RegExp) | undefined;
|
|
30
|
+
readonly validator?: ((value: string | number) => string | boolean | Promise<string | boolean>) | undefined;
|
|
31
|
+
readonly validateOn?: "blur" | "input" | "submit" | "never" | undefined;
|
|
32
|
+
readonly autocomplete?: string | undefined;
|
|
33
|
+
readonly autofocus?: boolean | undefined;
|
|
34
|
+
readonly spellcheck?: boolean | undefined;
|
|
35
|
+
readonly inputmode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined;
|
|
36
|
+
readonly max?: number | string | undefined;
|
|
37
|
+
readonly min?: number | string | undefined;
|
|
38
|
+
readonly step?: number | string | undefined;
|
|
39
|
+
readonly clearable?: boolean | undefined;
|
|
40
|
+
readonly showPasswordToggle?: boolean | undefined;
|
|
41
|
+
readonly counter?: boolean | undefined;
|
|
42
|
+
readonly prefix?: string | undefined;
|
|
43
|
+
readonly suffix?: string | undefined;
|
|
44
|
+
readonly rows?: number | undefined;
|
|
45
|
+
readonly resize?: "none" | "vertical" | "horizontal" | "both" | undefined;
|
|
46
|
+
readonly suggestions?: string[] | undefined;
|
|
47
|
+
readonly showSuggestionsOnFocus?: boolean | undefined;
|
|
48
|
+
readonly allowOnly?: ("digits" | "letters" | "alphanumeric" | RegExp | ((char: string) => boolean)) | undefined;
|
|
49
|
+
readonly decimalPlaces?: number | undefined;
|
|
50
|
+
readonly name?: string | undefined;
|
|
51
|
+
readonly id?: string | undefined;
|
|
52
|
+
readonly ariaLabel?: string | undefined;
|
|
53
|
+
readonly ariaDescribedBy?: string | undefined;
|
|
54
|
+
readonly inputClass?: string | undefined;
|
|
55
|
+
readonly labelClass?: string | undefined;
|
|
56
|
+
readonly wrapperClass?: string | undefined;
|
|
57
|
+
readonly "onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
|
|
58
|
+
readonly onClear?: (() => any) | undefined;
|
|
59
|
+
readonly onInput?: ((event: Event) => any) | undefined;
|
|
60
|
+
readonly onChange?: ((value: string | number, event: Event) => any) | undefined;
|
|
61
|
+
readonly onBlur?: ((event: FocusEvent) => any) | undefined;
|
|
62
|
+
readonly onFocus?: ((event: FocusEvent) => any) | undefined;
|
|
63
|
+
readonly "onUpdate:error"?: ((error: string | null) => any) | undefined;
|
|
64
|
+
readonly onEnter?: ((event: KeyboardEvent) => any) | undefined;
|
|
65
|
+
readonly onValidate?: ((isValid: boolean, error: string | null) => any) | undefined;
|
|
66
|
+
readonly "onSelect-suggestion"?: ((suggestion: string) => any) | undefined;
|
|
67
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
68
|
+
$attrs: {
|
|
69
|
+
[x: string]: unknown;
|
|
70
|
+
};
|
|
71
|
+
$refs: {
|
|
72
|
+
[x: string]: unknown;
|
|
73
|
+
} & {
|
|
74
|
+
inputRef: HTMLTextAreaElement;
|
|
75
|
+
suggestionsRef: HTMLUListElement;
|
|
76
|
+
};
|
|
77
|
+
$slots: Readonly<{
|
|
78
|
+
[name: string]: import('vue').Slot<any> | undefined;
|
|
79
|
+
}>;
|
|
80
|
+
$root: import('vue').ComponentPublicInstance | null;
|
|
81
|
+
$parent: import('vue').ComponentPublicInstance | null;
|
|
82
|
+
$host: Element | null;
|
|
83
|
+
$emit: ((event: "update:modelValue", value: string | number) => void) & ((event: "clear") => void) & ((event: "input", event: Event) => void) & ((event: "change", value: string | number, event: Event) => void) & ((event: "blur", event: FocusEvent) => void) & ((event: "focus", event: FocusEvent) => void) & ((event: "update:error", error: string | null) => void) & ((event: "enter", event: KeyboardEvent) => void) & ((event: "validate", isValid: boolean, error: string | null) => void) & ((event: "select-suggestion", suggestion: string) => void);
|
|
84
|
+
$el: any;
|
|
85
|
+
$options: import('vue').ComponentOptionsBase<Readonly<import('../../components/ui/SInput').Props> & Readonly<{
|
|
86
|
+
"onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
|
|
87
|
+
onClear?: (() => any) | undefined;
|
|
88
|
+
onInput?: ((event: Event) => any) | undefined;
|
|
89
|
+
onChange?: ((value: string | number, event: Event) => any) | undefined;
|
|
90
|
+
onBlur?: ((event: FocusEvent) => any) | undefined;
|
|
91
|
+
onFocus?: ((event: FocusEvent) => any) | undefined;
|
|
92
|
+
"onUpdate:error"?: ((error: string | null) => any) | undefined;
|
|
93
|
+
onEnter?: ((event: KeyboardEvent) => any) | undefined;
|
|
94
|
+
onValidate?: ((isValid: boolean, error: string | null) => any) | undefined;
|
|
95
|
+
"onSelect-suggestion"?: ((suggestion: string) => any) | undefined;
|
|
96
|
+
}>, {
|
|
97
|
+
focus: () => void;
|
|
98
|
+
blur: () => void;
|
|
99
|
+
validate: () => Promise<void>;
|
|
100
|
+
inputElement: import('vue').Ref<HTMLInputElement | HTMLTextAreaElement | null, HTMLInputElement | HTMLTextAreaElement | null>;
|
|
101
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
102
|
+
"update:modelValue": (value: string | number) => any;
|
|
103
|
+
clear: () => any;
|
|
104
|
+
input: (event: Event) => any;
|
|
105
|
+
change: (value: string | number, event: Event) => any;
|
|
106
|
+
blur: (event: FocusEvent) => any;
|
|
107
|
+
focus: (event: FocusEvent) => any;
|
|
108
|
+
"update:error": (error: string | null) => any;
|
|
109
|
+
enter: (event: KeyboardEvent) => any;
|
|
110
|
+
validate: (isValid: boolean, error: string | null) => any;
|
|
111
|
+
"select-suggestion": (suggestion: string) => any;
|
|
112
|
+
}, string, {
|
|
113
|
+
modelValue: string | number;
|
|
114
|
+
type: "text" | "email" | "password" | "number" | "tel" | "url" | "search" | "textarea";
|
|
115
|
+
size: "small" | "medium" | "large";
|
|
116
|
+
disabled: boolean;
|
|
117
|
+
required: boolean;
|
|
118
|
+
color: string;
|
|
119
|
+
variant: "outlined" | "filled" | "underlined" | "ghost";
|
|
120
|
+
loading: boolean;
|
|
121
|
+
rounded: "none" | "sm" | "md" | "lg" | "full";
|
|
122
|
+
resize: "none" | "vertical" | "horizontal" | "both";
|
|
123
|
+
clearable: boolean;
|
|
124
|
+
labelPlacement: "top" | "top-left" | "top-center" | "top-right" | "bottom" | "left" | "right" | "floating" | "inside";
|
|
125
|
+
readonly: boolean;
|
|
126
|
+
labelAnimation: "morph" | "slide" | "fade" | "none";
|
|
127
|
+
validateOn: "blur" | "input" | "submit" | "never";
|
|
128
|
+
autofocus: boolean;
|
|
129
|
+
spellcheck: boolean;
|
|
130
|
+
showPasswordToggle: boolean;
|
|
131
|
+
counter: boolean;
|
|
132
|
+
rows: number;
|
|
133
|
+
suggestions: string[];
|
|
134
|
+
showSuggestionsOnFocus: boolean;
|
|
135
|
+
allowOnly: "digits" | "letters" | "alphanumeric" | RegExp | ((char: string) => boolean);
|
|
136
|
+
decimalPlaces: number;
|
|
137
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
138
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
139
|
+
created?: (() => void) | (() => void)[];
|
|
140
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
141
|
+
mounted?: (() => void) | (() => void)[];
|
|
142
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
143
|
+
updated?: (() => void) | (() => void)[];
|
|
144
|
+
activated?: (() => void) | (() => void)[];
|
|
145
|
+
deactivated?: (() => void) | (() => void)[];
|
|
146
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
147
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
148
|
+
destroyed?: (() => void) | (() => void)[];
|
|
149
|
+
unmounted?: (() => void) | (() => void)[];
|
|
150
|
+
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
151
|
+
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
152
|
+
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
153
|
+
};
|
|
154
|
+
$forceUpdate: () => void;
|
|
155
|
+
$nextTick: typeof import('vue').nextTick;
|
|
156
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
|
|
157
|
+
} & Readonly<{
|
|
158
|
+
modelValue: string | number;
|
|
159
|
+
type: "text" | "email" | "password" | "number" | "tel" | "url" | "search" | "textarea";
|
|
160
|
+
size: "small" | "medium" | "large";
|
|
161
|
+
disabled: boolean;
|
|
162
|
+
required: boolean;
|
|
163
|
+
color: string;
|
|
164
|
+
variant: "outlined" | "filled" | "underlined" | "ghost";
|
|
165
|
+
loading: boolean;
|
|
166
|
+
rounded: "none" | "sm" | "md" | "lg" | "full";
|
|
167
|
+
resize: "none" | "vertical" | "horizontal" | "both";
|
|
168
|
+
clearable: boolean;
|
|
169
|
+
labelPlacement: "top" | "top-left" | "top-center" | "top-right" | "bottom" | "left" | "right" | "floating" | "inside";
|
|
170
|
+
readonly: boolean;
|
|
171
|
+
labelAnimation: "morph" | "slide" | "fade" | "none";
|
|
172
|
+
validateOn: "blur" | "input" | "submit" | "never";
|
|
173
|
+
autofocus: boolean;
|
|
174
|
+
spellcheck: boolean;
|
|
175
|
+
showPasswordToggle: boolean;
|
|
176
|
+
counter: boolean;
|
|
177
|
+
rows: number;
|
|
178
|
+
suggestions: string[];
|
|
179
|
+
showSuggestionsOnFocus: boolean;
|
|
180
|
+
allowOnly: "digits" | "letters" | "alphanumeric" | RegExp | ((char: string) => boolean);
|
|
181
|
+
decimalPlaces: number;
|
|
182
|
+
}> & Omit<Readonly<import('../../components/ui/SInput').Props> & Readonly<{
|
|
183
|
+
"onUpdate:modelValue"?: ((value: string | number) => any) | undefined;
|
|
184
|
+
onClear?: (() => any) | undefined;
|
|
185
|
+
onInput?: ((event: Event) => any) | undefined;
|
|
186
|
+
onChange?: ((value: string | number, event: Event) => any) | undefined;
|
|
187
|
+
onBlur?: ((event: FocusEvent) => any) | undefined;
|
|
188
|
+
onFocus?: ((event: FocusEvent) => any) | undefined;
|
|
189
|
+
"onUpdate:error"?: ((error: string | null) => any) | undefined;
|
|
190
|
+
onEnter?: ((event: KeyboardEvent) => any) | undefined;
|
|
191
|
+
onValidate?: ((isValid: boolean, error: string | null) => any) | undefined;
|
|
192
|
+
"onSelect-suggestion"?: ((suggestion: string) => any) | undefined;
|
|
193
|
+
}>, "blur" | "focus" | "validate" | "inputElement" | ("modelValue" | "type" | "size" | "disabled" | "required" | "color" | "variant" | "loading" | "rounded" | "resize" | "clearable" | "labelPlacement" | "readonly" | "labelAnimation" | "validateOn" | "autofocus" | "spellcheck" | "showPasswordToggle" | "counter" | "rows" | "suggestions" | "showSuggestionsOnFocus" | "allowOnly" | "decimalPlaces")> & import('vue').ShallowUnwrapRef<{
|
|
194
|
+
focus: () => void;
|
|
195
|
+
blur: () => void;
|
|
196
|
+
validate: () => Promise<void>;
|
|
197
|
+
inputElement: import('vue').Ref<HTMLInputElement | HTMLTextAreaElement | null, HTMLInputElement | HTMLTextAreaElement | null>;
|
|
198
|
+
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
199
|
+
$slots: {
|
|
200
|
+
prefix?(_: {}): any;
|
|
201
|
+
suffix?(_: {}): any;
|
|
202
|
+
};
|
|
203
|
+
}) | null;
|
|
204
|
+
}, HTMLDivElement>;
|
|
205
|
+
export default _default;
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
|
|
2
|
+
basicRef: HTMLDivElement;
|
|
3
|
+
animatedRef: HTMLDivElement;
|
|
4
|
+
}, HTMLDivElement>;
|
|
5
|
+
export default _default;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
|
|
2
|
+
cardNumberRef: HTMLDivElement;
|
|
3
|
+
cardNameRef: HTMLDivElement;
|
|
4
|
+
cardDateRef: HTMLDivElement;
|
|
5
|
+
}, HTMLDivElement>;
|
|
6
|
+
export default _default;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
2
|
+
export default _default;
|