@aleph-alpha/ui-library 1.11.0 → 1.13.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 +78 -3
- package/config.d.ts +185 -1
- package/config.js +549 -6
- package/dist/system/index.d.ts +1788 -407
- package/dist/system/lib.js +48817 -24028
- package/package.json +3 -3
- package/src/__tests__/test-utils.ts +46 -0
- package/src/{primitives → components}/UiAccordion/UiAccordion.stories.ts +26 -2
- package/src/{primitives → components}/UiAccordion/UiAccordion.vue +1 -1
- package/src/{primitives → components}/UiAccordion/UiAccordionContent.vue +1 -1
- package/src/{primitives → components}/UiAccordion/UiAccordionItem.vue +1 -1
- package/src/{primitives → components}/UiAccordion/UiAccordionTrigger.vue +1 -1
- package/src/{primitives → components}/UiAccordion/types.ts +0 -1
- package/src/{primitives → components}/UiAlert/UiAlert.stories.ts +9 -9
- package/src/{primitives → components}/UiAlert/UiAlert.vue +1 -1
- package/src/{primitives → components}/UiAlert/UiAlertDescription.vue +1 -1
- package/src/{primitives → components}/UiAlert/UiAlertTitle.vue +1 -1
- package/src/{primitives → components}/UiAlert/types.ts +2 -1
- package/src/{primitives → components}/UiAlertDialog/UiAlertDialog.stories.ts +1 -1
- package/src/{primitives → components}/UiAlertDialog/UiAlertDialog.vue +1 -1
- package/src/{primitives → components}/UiAlertDialog/UiAlertDialogAction.vue +1 -1
- package/src/{primitives → components}/UiAlertDialog/UiAlertDialogCancel.vue +1 -1
- package/src/{primitives → components}/UiAlertDialog/UiAlertDialogContent.vue +1 -1
- package/src/{primitives → components}/UiAlertDialog/UiAlertDialogDescription.vue +1 -1
- package/src/{primitives → components}/UiAlertDialog/UiAlertDialogFooter.vue +1 -1
- package/src/{primitives → components}/UiAlertDialog/UiAlertDialogHeader.vue +1 -1
- package/src/{primitives → components}/UiAlertDialog/UiAlertDialogTitle.vue +1 -1
- package/src/{primitives → components}/UiAlertDialog/UiAlertDialogTrigger.vue +1 -1
- package/src/{primitives → components}/UiAlertDialog/index.ts +1 -0
- package/src/{primitives → components}/UiAlertDialog/types.ts +1 -1
- package/src/{primitives → components}/UiAvatar/UiAvatar.stories.ts +1 -1
- package/src/{primitives → components}/UiAvatar/UiAvatar.vue +1 -1
- package/src/{primitives → components}/UiAvatar/UiAvatarFallback.vue +1 -1
- package/src/{primitives → components}/UiAvatar/UiAvatarImage.vue +1 -1
- package/src/{primitives → components}/UiAvatar/index.ts +1 -0
- package/src/{primitives → components}/UiAvatar/types.ts +4 -1
- package/src/{primitives → components}/UiBadge/UiBadge.stories.ts +10 -10
- package/src/{primitives → components}/UiBadge/UiBadge.vue +1 -1
- package/src/{primitives → components}/UiBadge/__tests__/UiBadge.test.ts +3 -13
- package/src/{primitives → components}/UiBadge/types.ts +0 -1
- package/src/{primitives → components}/UiButton/UiButton.stories.ts +13 -13
- package/src/{primitives → components}/UiButton/UiButton.vue +2 -2
- package/src/{primitives → components}/UiButton/__tests__/UiButton.test.ts +1 -10
- package/src/{primitives → components}/UiButton/types.ts +0 -1
- package/src/{primitives → components}/UiCalendar/UiCalendar.stories.ts +5 -5
- package/src/{primitives → components}/UiCalendar/UiCalendar.vue +1 -1
- package/src/{primitives → components}/UiCalendar/types.ts +0 -1
- package/src/{primitives → components}/UiCard/UiCard.stories.ts +1 -1
- package/src/{primitives → components}/UiCard/UiCard.vue +1 -1
- package/src/{primitives → components}/UiCard/UiCardAction.vue +1 -1
- package/src/{primitives → components}/UiCard/UiCardContent.vue +1 -1
- package/src/{primitives → components}/UiCard/UiCardDescription.vue +1 -1
- package/src/{primitives → components}/UiCard/UiCardFooter.vue +1 -1
- package/src/{primitives → components}/UiCard/UiCardHeader.vue +1 -1
- package/src/{primitives → components}/UiCard/UiCardTitle.vue +1 -1
- package/src/components/UiCard/index.ts +10 -0
- package/src/{primitives → components}/UiCard/types.ts +0 -1
- package/src/{primitives → components}/UiCheckbox/UiCheckbox.stories.ts +1 -1
- package/src/{primitives → components}/UiCheckbox/UiCheckbox.vue +1 -1
- package/src/{primitives → components}/UiCheckbox/types.ts +0 -1
- package/src/{primitives → components}/UiDrawer/UiDrawer.stories.ts +1 -1
- package/src/{primitives → components}/UiDrawer/UiDrawer.vue +1 -1
- package/src/{primitives → components}/UiDrawer/UiDrawerClose.vue +1 -1
- package/src/{primitives → components}/UiDrawer/UiDrawerContent.vue +1 -1
- package/src/{primitives → components}/UiDrawer/UiDrawerDescription.vue +1 -1
- package/src/{primitives → components}/UiDrawer/UiDrawerFooter.vue +1 -1
- package/src/{primitives → components}/UiDrawer/UiDrawerHeader.vue +1 -1
- package/src/{primitives → components}/UiDrawer/UiDrawerTitle.vue +1 -1
- package/src/{primitives → components}/UiDrawer/UiDrawerTrigger.vue +1 -1
- package/src/{primitives → components}/UiDrawer/index.ts +1 -0
- package/src/{primitives → components}/UiDrawer/types.ts +31 -1
- package/src/{primitives → components}/UiDropdownMenu/UiDropdownMenu.stories.ts +3 -3
- package/src/{primitives → components}/UiDropdownMenu/UiDropdownMenu.vue +1 -1
- package/src/{primitives → components}/UiDropdownMenu/UiDropdownMenuCheckboxItem.vue +2 -1
- package/src/{primitives → components}/UiDropdownMenu/UiDropdownMenuContent.vue +1 -1
- package/src/{primitives → components}/UiDropdownMenu/UiDropdownMenuGroup.vue +1 -1
- package/src/{primitives → components}/UiDropdownMenu/UiDropdownMenuItem.vue +1 -1
- package/src/{primitives → components}/UiDropdownMenu/UiDropdownMenuLabel.vue +1 -1
- package/src/{primitives → components}/UiDropdownMenu/UiDropdownMenuRadioGroup.vue +1 -1
- package/src/{primitives → components}/UiDropdownMenu/UiDropdownMenuRadioItem.vue +1 -1
- package/src/{primitives → components}/UiDropdownMenu/UiDropdownMenuSeparator.vue +1 -1
- package/src/{primitives → components}/UiDropdownMenu/UiDropdownMenuShortcut.vue +1 -1
- package/src/{primitives → components}/UiDropdownMenu/UiDropdownMenuSub.vue +1 -1
- package/src/{primitives → components}/UiDropdownMenu/UiDropdownMenuSubContent.vue +1 -1
- package/src/{primitives → components}/UiDropdownMenu/UiDropdownMenuSubTrigger.vue +1 -1
- package/src/{primitives → components}/UiDropdownMenu/UiDropdownMenuTrigger.vue +1 -1
- package/src/{primitives → components}/UiDropdownMenu/types.ts +61 -1
- package/src/components/UiEmpty/UiEmpty.stories.ts +240 -0
- package/src/components/UiEmpty/UiEmpty.vue +35 -0
- package/src/components/UiEmpty/__tests__/UiEmpty.test.ts +67 -0
- package/src/components/UiEmpty/index.ts +2 -0
- package/src/components/UiEmpty/types.ts +26 -0
- package/src/{primitives → components}/UiField/UiField.stories.ts +1 -2
- package/src/{primitives → components}/UiField/UiField.vue +1 -1
- package/src/{primitives → components}/UiField/UiFieldContent.vue +1 -1
- package/src/{primitives → components}/UiField/UiFieldDescription.vue +1 -1
- package/src/{primitives → components}/UiField/UiFieldError.vue +1 -1
- package/src/{primitives → components}/UiField/UiFieldGroup.vue +1 -1
- package/src/{primitives → components}/UiField/UiFieldLabel.vue +1 -1
- package/src/{primitives → components}/UiField/UiFieldLegend.vue +1 -1
- package/src/{primitives → components}/UiField/UiFieldSeparator.vue +1 -1
- package/src/{primitives → components}/UiField/UiFieldSet.vue +1 -1
- package/src/{primitives → components}/UiField/UiFieldTitle.vue +1 -1
- package/src/{primitives → components}/UiField/index.ts +1 -0
- package/src/{primitives → components}/UiField/types.ts +7 -2
- package/src/components/UiIcon/UiIcon.stories.ts +140 -0
- package/src/components/UiIcon/UiIcon.vue +67 -0
- package/src/components/UiIcon/__tests__/UiIcon.test.ts +53 -0
- package/src/{primitives → components}/UiIcon/index.ts +1 -0
- package/src/components/UiIcon/types.ts +33 -0
- package/src/{primitives → components}/UiIconButton/UiIconButton.stories.ts +37 -37
- package/src/{primitives → components}/UiIconButton/UiIconButton.vue +2 -2
- package/src/{primitives → components}/UiIconButton/__tests__/UiIconButton.test.ts +2 -9
- package/src/{primitives → components}/UiIconButton/types.ts +0 -1
- package/src/{primitives → components}/UiInput/UiInput.stories.ts +1 -1
- package/src/{primitives → components}/UiInput/UiInput.vue +1 -1
- package/src/{primitives → components}/UiInput/types.ts +0 -1
- package/src/components/UiItem/UiItem.stories.ts +1029 -0
- package/src/components/UiItem/UiItem.vue +20 -0
- package/src/components/UiItem/UiItemMedia.vue +18 -0
- package/src/components/UiItem/__tests__/UiItem.test.ts +446 -0
- package/src/components/UiItem/constants.ts +13 -0
- package/src/components/UiItem/index.ts +15 -0
- package/src/components/UiItem/types.ts +114 -0
- package/src/components/UiKbd/UiKbd.stories.ts +546 -0
- package/src/components/UiKbd/UiKbd.vue +57 -0
- package/src/components/UiKbd/UiKbdGroup.vue +13 -0
- package/src/components/UiKbd/__tests__/UiKbd.test.ts +46 -0
- package/src/components/UiKbd/index.ts +3 -0
- package/src/components/UiKbd/types.ts +25 -0
- package/src/components/UiLabel/UiLabel.stories.ts +192 -0
- package/src/components/UiLabel/UiLabel.vue +16 -0
- package/src/components/UiLabel/__tests__/UiLabel.test.ts +43 -0
- package/src/components/UiLabel/index.ts +2 -0
- package/src/components/UiLabel/types.ts +15 -0
- package/src/components/UiListbox/UiListbox.stories.ts +607 -0
- package/src/components/UiListbox/UiListbox.vue +33 -0
- package/src/components/UiListbox/UiListboxContent.vue +13 -0
- package/src/components/UiListbox/UiListboxFilter.vue +16 -0
- package/src/components/UiListbox/UiListboxGroup.vue +13 -0
- package/src/components/UiListbox/UiListboxGroupLabel.vue +13 -0
- package/src/components/UiListbox/UiListboxItem.vue +21 -0
- package/src/components/UiListbox/UiListboxItemIndicator.vue +13 -0
- package/src/components/UiListbox/__tests__/UiListbox.test.ts +42 -0
- package/src/components/UiListbox/index.ts +8 -0
- package/src/components/UiListbox/types.ts +109 -0
- package/src/{primitives → components}/UiPopover/UiPopover.stories.ts +17 -1
- package/src/{primitives → components}/UiPopover/UiPopover.vue +1 -1
- package/src/{primitives → components}/UiPopover/UiPopoverContent.vue +1 -1
- package/src/{primitives → components}/UiPopover/UiPopoverTrigger.vue +1 -1
- package/src/{primitives → components}/UiPopover/index.ts +1 -0
- package/src/{primitives → components}/UiPopover/types.ts +13 -1
- package/src/{primitives → components}/UiProgress/UiProgress.stories.ts +1 -1
- package/src/{primitives → components}/UiProgress/UiProgress.vue +1 -1
- package/src/{primitives → components}/UiProgress/types.ts +3 -4
- package/src/{primitives → components}/UiRadioGroup/UiRadioGroup.stories.ts +1 -1
- package/src/{primitives → components}/UiRadioGroup/UiRadioGroup.vue +1 -1
- package/src/{primitives → components}/UiRadioGroup/UiRadioGroupItem.vue +1 -1
- package/src/{primitives → components}/UiRadioGroup/types.ts +6 -1
- package/src/{primitives → components}/UiRangeCalendar/UiRangeCalendar.stories.ts +1 -1
- package/src/{primitives → components}/UiRangeCalendar/UiRangeCalendar.vue +1 -1
- package/src/{primitives → components}/UiRangeCalendar/types.ts +0 -1
- package/src/{primitives → components}/UiSelect/UiSelect.stories.ts +20 -1
- package/src/{primitives → components}/UiSelect/UiSelect.vue +1 -1
- package/src/{primitives → components}/UiSelect/UiSelectContent.vue +1 -1
- package/src/{primitives → components}/UiSelect/UiSelectGroup.vue +1 -1
- package/src/{primitives → components}/UiSelect/UiSelectItem.vue +1 -1
- package/src/{primitives → components}/UiSelect/UiSelectLabel.vue +1 -1
- package/src/{primitives → components}/UiSelect/UiSelectSeparator.vue +1 -1
- package/src/{primitives → components}/UiSelect/UiSelectTrigger.vue +1 -1
- package/src/{primitives → components}/UiSelect/UiSelectValue.vue +1 -1
- package/src/{primitives → components}/UiSelect/types.ts +0 -1
- package/src/components/UiSeparator/UiSeparator.stories.ts +177 -0
- package/src/components/UiSeparator/UiSeparator.vue +17 -0
- package/src/components/UiSeparator/__tests__/UiSeparator.test.ts +34 -0
- package/src/components/UiSeparator/index.ts +2 -0
- package/src/components/UiSeparator/types.ts +22 -0
- package/src/components/UiSkeleton/UiSkeleton.stories.ts +247 -0
- package/src/components/UiSkeleton/UiSkeleton.vue +24 -0
- package/src/components/UiSkeleton/__tests__/UiSkeleton.test.ts +47 -0
- package/src/components/UiSkeleton/index.ts +2 -0
- package/src/components/UiSkeleton/types.ts +25 -0
- package/src/{primitives → components}/UiSlider/UiSlider.stories.ts +1 -1
- package/src/{primitives → components}/UiSlider/UiSlider.vue +1 -1
- package/src/{primitives → components}/UiSlider/__tests__/UiSlider.test.ts +1 -1
- package/src/{primitives → components}/UiSlider/index.ts +1 -0
- package/src/{primitives → components}/UiSlider/types.ts +0 -1
- package/src/{primitives → components}/UiSpinner/UiSpinner.stories.ts +1 -1
- package/src/{primitives → components}/UiSpinner/UiSpinner.vue +1 -1
- package/src/{primitives → components}/UiSpinner/types.ts +0 -1
- package/src/{primitives → components}/UiSwitch/UiSwitch.stories.ts +1 -1
- package/src/{primitives → components}/UiSwitch/UiSwitch.vue +1 -1
- package/src/{primitives → components}/UiSwitch/types.ts +0 -1
- package/src/{primitives → components}/UiTable/UiTable.stories.ts +3 -3
- package/src/{primitives → components}/UiTable/UiTable.vue +1 -1
- package/src/{primitives → components}/UiTable/UiTableBody.vue +1 -1
- package/src/{primitives → components}/UiTable/UiTableCaption.vue +1 -1
- package/src/{primitives → components}/UiTable/UiTableCell.vue +1 -1
- package/src/{primitives → components}/UiTable/UiTableEmpty.vue +1 -1
- package/src/{primitives → components}/UiTable/UiTableFooter.vue +1 -1
- package/src/{primitives → components}/UiTable/UiTableHead.vue +1 -1
- package/src/{primitives → components}/UiTable/UiTableHeader.vue +1 -1
- package/src/{primitives → components}/UiTable/UiTableRow.vue +1 -1
- package/src/{primitives → components}/UiTable/types.ts +0 -1
- package/src/{primitives → components}/UiTabs/UiTabs.stories.ts +22 -3
- package/src/{primitives → components}/UiTabs/UiTabs.vue +1 -1
- package/src/{primitives → components}/UiTabs/UiTabsContent.vue +1 -1
- package/src/{primitives → components}/UiTabs/UiTabsList.vue +1 -1
- package/src/{primitives → components}/UiTabs/UiTabsTrigger.vue +1 -1
- package/src/{primitives → components}/UiTabs/types.ts +0 -1
- package/src/components/UiTagsInput/UiTagsInput.stories.ts +538 -0
- package/src/components/UiTagsInput/UiTagsInput.vue +20 -0
- package/src/components/UiTagsInput/UiTagsInputInput.vue +14 -0
- package/src/components/UiTagsInput/UiTagsInputItem.vue +16 -0
- package/src/components/UiTagsInput/UiTagsInputItemDelete.vue +13 -0
- package/src/components/UiTagsInput/UiTagsInputItemText.vue +11 -0
- package/src/components/UiTagsInput/__tests__/UiTagsInput.test.ts +44 -0
- package/src/components/UiTagsInput/index.ts +6 -0
- package/src/components/UiTagsInput/types.ts +51 -0
- package/src/{primitives → components}/UiTextarea/UiTextarea.stories.ts +1 -1
- package/src/{primitives → components}/UiTextarea/UiTextarea.vue +1 -1
- package/src/{primitives → components}/UiTextarea/types.ts +0 -1
- package/src/components/UiToggle/UiToggle.stories.ts +370 -0
- package/src/components/UiToggle/UiToggle.vue +28 -0
- package/src/components/UiToggle/__tests__/UiToggle.test.ts +62 -0
- package/src/components/UiToggle/index.ts +2 -0
- package/src/components/UiToggle/types.ts +34 -0
- package/src/components/UiToggleGroup/UiToggleGroup.stories.ts +441 -0
- package/src/components/UiToggleGroup/UiToggleGroup.vue +52 -0
- package/src/components/UiToggleGroup/UiToggleGroupItem.vue +21 -0
- package/src/components/UiToggleGroup/__tests__/UiToggleGroup.test.ts +394 -0
- package/src/components/UiToggleGroup/index.ts +3 -0
- package/src/components/UiToggleGroup/types.ts +132 -0
- package/src/{primitives → components}/UiTooltip/UiTooltip.stories.ts +42 -42
- package/src/{primitives → components}/UiTooltip/UiTooltip.vue +1 -1
- package/src/components/UiTooltip/index.ts +10 -0
- package/src/{primitives → components}/UiTooltip/types.ts +0 -1
- package/src/{primitives/shadcn → components/core}/accordion/Accordion.vue +1 -1
- package/src/{primitives/shadcn → components/core}/accordion/AccordionItem.vue +1 -1
- package/src/{primitives/shadcn → components/core}/accordion/AccordionTrigger.vue +5 -4
- package/src/{primitives/shadcn → components/core}/alert/index.ts +2 -2
- package/src/{primitives/shadcn → components/core}/alert-dialog/AlertDialogAction.vue +1 -1
- package/src/{primitives/shadcn → components/core}/alert-dialog/AlertDialogCancel.vue +1 -1
- package/src/{primitives/shadcn → components/core}/alert-dialog/AlertDialogContent.vue +2 -2
- package/src/{primitives/shadcn → components/core}/badge/index.ts +1 -1
- package/src/{primitives/shadcn → components/core}/button/index.ts +4 -4
- package/src/{primitives/shadcn → components/core}/calendar/Calendar.vue +1 -1
- package/src/{primitives/shadcn → components/core}/calendar/CalendarCellTrigger.vue +3 -3
- package/src/{primitives/shadcn → components/core}/calendar/CalendarNextButton.vue +3 -3
- package/src/{primitives/shadcn → components/core}/calendar/CalendarPrevButton.vue +3 -3
- package/src/{primitives/shadcn → components/core}/card/Card.vue +1 -1
- package/src/{primitives/shadcn → components/core}/checkbox/Checkbox.vue +3 -3
- package/src/{primitives/shadcn → components/core}/drawer/DrawerContent.vue +2 -2
- package/src/{primitives/shadcn → components/core}/dropdown-menu/DropdownMenuCheckboxItem.vue +3 -3
- package/src/{primitives/shadcn → components/core}/dropdown-menu/DropdownMenuItem.vue +1 -1
- package/src/{primitives/shadcn → components/core}/dropdown-menu/DropdownMenuRadioItem.vue +1 -1
- package/src/{primitives/shadcn → components/core}/dropdown-menu/DropdownMenuSubTrigger.vue +3 -3
- package/src/{primitives/shadcn → components/core}/field/FieldError.vue +1 -1
- package/src/{primitives/shadcn → components/core}/field/FieldLabel.vue +1 -1
- package/src/{primitives/shadcn → components/core}/field/FieldSeparator.vue +1 -1
- package/src/{primitives/shadcn → components/core}/index.ts +1 -0
- package/src/{primitives/shadcn → components/core}/input/Input.vue +1 -1
- package/src/components/core/item/Item.vue +33 -0
- package/src/components/core/item/ItemActions.vue +14 -0
- package/src/components/core/item/ItemContent.vue +17 -0
- package/src/components/core/item/ItemDescription.vue +23 -0
- package/src/components/core/item/ItemFooter.vue +17 -0
- package/src/components/core/item/ItemGroup.vue +18 -0
- package/src/components/core/item/ItemHeader.vue +17 -0
- package/src/components/core/item/ItemMedia.vue +21 -0
- package/src/components/core/item/ItemSeparator.vue +12 -0
- package/src/components/core/item/ItemTitle.vue +17 -0
- package/src/components/core/item/index.ts +53 -0
- package/src/components/core/kbd/Kbd.vue +20 -0
- package/src/components/core/kbd/KbdGroup.vue +12 -0
- package/src/components/core/kbd/index.ts +2 -0
- package/src/components/core/listbox/Listbox.vue +23 -0
- package/src/components/core/listbox/ListboxContent.vue +26 -0
- package/src/components/core/listbox/ListboxFilter.vue +30 -0
- package/src/components/core/listbox/ListboxGroup.vue +26 -0
- package/src/components/core/listbox/ListboxGroupLabel.vue +26 -0
- package/src/components/core/listbox/ListboxItem.vue +32 -0
- package/src/components/core/listbox/ListboxItemIndicator.vue +40 -0
- package/src/components/core/listbox/index.ts +7 -0
- package/src/{primitives/shadcn → components/core}/native-select/NativeSelect.vue +6 -5
- package/src/{primitives/shadcn → components/core}/radio-group/RadioGroupItem.vue +3 -4
- package/src/{primitives/shadcn → components/core}/range-calendar/RangeCalendar.vue +1 -1
- package/src/{primitives/shadcn → components/core}/range-calendar/RangeCalendarCellTrigger.vue +8 -6
- package/src/{primitives/shadcn → components/core}/range-calendar/RangeCalendarHeading.vue +1 -1
- package/src/{primitives/shadcn → components/core}/range-calendar/RangeCalendarNextButton.vue +3 -3
- package/src/{primitives/shadcn → components/core}/range-calendar/RangeCalendarPrevButton.vue +3 -3
- package/src/{primitives/shadcn → components/core}/select/Select.vue +1 -1
- package/src/{primitives/shadcn → components/core}/select/SelectItem.vue +3 -3
- package/src/{primitives/shadcn → components/core}/select/SelectScrollDownButton.vue +2 -2
- package/src/{primitives/shadcn → components/core}/select/SelectScrollUpButton.vue +2 -2
- package/src/{primitives/shadcn → components/core}/select/SelectTrigger.vue +3 -3
- package/src/components/core/skeleton/Skeleton.vue +10 -0
- package/src/components/core/skeleton/index.ts +1 -0
- package/src/{primitives/shadcn → components/core}/spinner/Spinner.vue +5 -4
- package/src/{primitives/shadcn → components/core}/switch/Switch.vue +1 -1
- package/src/{primitives/shadcn → components/core}/table/TableRow.vue +4 -1
- package/src/{primitives/shadcn → components/core}/tabs/Tabs.vue +1 -1
- package/src/components/core/tabs/TabsTrigger.vue +28 -0
- package/src/components/core/tags-input/TagsInput.vue +33 -0
- package/src/components/core/tags-input/TagsInputInput.vue +24 -0
- package/src/components/core/tags-input/TagsInputItem.vue +31 -0
- package/src/components/core/tags-input/TagsInputItemDelete.vue +46 -0
- package/src/components/core/tags-input/TagsInputItemText.vue +24 -0
- package/src/components/core/tags-input/index.ts +5 -0
- package/src/{primitives/shadcn → components/core}/textarea/Textarea.vue +1 -1
- package/src/components/core/toggle/Toggle.vue +34 -0
- package/src/components/core/toggle/index.ts +26 -0
- package/src/components/core/toggle-group/ToggleGroup.vue +38 -0
- package/src/components/core/toggle-group/ToggleGroupItem.vue +37 -0
- package/src/components/core/toggle-group/context.ts +11 -0
- package/src/components/core/toggle-group/index.ts +28 -0
- package/src/{primitives/shadcn → components/core}/tooltip/TooltipContent.vue +1 -1
- package/src/{primitives → components}/index.ts +13 -5
- package/src/index.ts +6 -10
- package/src/{compositions → patterns}/UiDataTable/UiDataTable.stories.ts +13 -11
- package/src/{compositions → patterns}/UiDataTable/UiDataTable.vue +2 -2
- package/src/{compositions → patterns}/UiDataTable/UiDataTableColumnHeader.vue +27 -28
- package/src/{compositions → patterns}/UiDataTable/UiDataTablePagination.vue +10 -38
- package/src/{compositions → patterns}/UiDataTable/UiDataTableToolbar.vue +4 -29
- package/src/{compositions → patterns}/UiDataTable/__tests__/UiDataTable.test.ts +1 -1
- package/src/patterns/UiDataTable/types.ts +116 -0
- package/src/{compositions → patterns}/UiDatePicker/UiDatePicker.stories.ts +1 -1
- package/src/{compositions → patterns}/UiDatePicker/UiDatePicker.vue +7 -7
- package/src/{compositions → patterns}/UiDatePicker/types.ts +0 -1
- package/src/{foundations → patterns}/UiPlaceholder/types.ts +0 -1
- package/src/patterns/index.ts +7 -0
- package/src/templates/UiTemplatePlaceholder/types.ts +0 -1
- package/src/templates/index.ts +4 -5
- package/src/theme/Background.stories.ts +225 -0
- package/src/theme/Border.stories.ts +158 -0
- package/src/theme/Extended.stories.ts +268 -0
- package/src/theme/Flex.stories.ts +313 -0
- package/src/theme/Grid.stories.ts +302 -0
- package/src/theme/Overlay.stories.ts +124 -0
- package/src/theme/Theme.stories.ts +309 -0
- package/src/theme/Typography.stories.ts +230 -0
- package/tokens.json +11252 -0
- package/src/compositions/UiCompositionPlaceholder/UiCompositionPlaceholder.vue +0 -9
- package/src/compositions/UiCompositionPlaceholder/index.ts +0 -1
- package/src/compositions/UiCompositionPlaceholder/types.ts +0 -8
- package/src/compositions/UiDataTable/types.ts +0 -39
- package/src/compositions/index.ts +0 -8
- package/src/foundations/index.ts +0 -6
- package/src/primitives/UiCard/index.ts +0 -7
- package/src/primitives/UiIcon/UiIcon.stories.ts +0 -95
- package/src/primitives/UiIcon/UiIcon.vue +0 -14
- package/src/primitives/UiIcon/__tests__/UiIcon.test.ts +0 -24
- package/src/primitives/UiIcon/types.ts +0 -23
- package/src/primitives/UiTooltip/index.ts +0 -2
- package/src/primitives/shadcn/tabs/TabsTrigger.vue +0 -28
- /package/src/{primitives → components}/UiAccordion/__tests__/UiAccordion.test.ts +0 -0
- /package/src/{primitives → components}/UiAccordion/index.ts +0 -0
- /package/src/{primitives → components}/UiAlert/__tests__/UiAlert.test.ts +0 -0
- /package/src/{primitives → components}/UiAlert/constants.ts +0 -0
- /package/src/{primitives → components}/UiAlert/index.ts +0 -0
- /package/src/{primitives → components}/UiAlertDialog/__tests__/UiAlertDialog.test.ts +0 -0
- /package/src/{primitives → components}/UiAvatar/__tests__/UiAvatar.test.ts +0 -0
- /package/src/{primitives → components}/UiBadge/constants.ts +0 -0
- /package/src/{primitives → components}/UiBadge/index.ts +0 -0
- /package/src/{primitives → components}/UiButton/index.ts +0 -0
- /package/src/{primitives → components}/UiCalendar/__tests__/UiCalendar.test.ts +0 -0
- /package/src/{primitives → components}/UiCalendar/index.ts +0 -0
- /package/src/{primitives → components}/UiCard/__tests__/UiCard.test.ts +0 -0
- /package/src/{primitives → components}/UiCard/__tests__/UiCardAction.test.ts +0 -0
- /package/src/{primitives → components}/UiCard/__tests__/UiCardContent.test.ts +0 -0
- /package/src/{primitives → components}/UiCard/__tests__/UiCardDescription.test.ts +0 -0
- /package/src/{primitives → components}/UiCard/__tests__/UiCardFooter.test.ts +0 -0
- /package/src/{primitives → components}/UiCard/__tests__/UiCardHeader.test.ts +0 -0
- /package/src/{primitives → components}/UiCard/__tests__/UiCardTitle.test.ts +0 -0
- /package/src/{primitives → components}/UiCheckbox/__tests__/UiCheckbox.test.ts +0 -0
- /package/src/{primitives → components}/UiCheckbox/index.ts +0 -0
- /package/src/{primitives → components}/UiDrawer/__tests__/UiDrawer.test.ts +0 -0
- /package/src/{primitives → components}/UiDropdownMenu/__tests__/UiDropdownMenu.test.ts +0 -0
- /package/src/{primitives → components}/UiDropdownMenu/index.ts +0 -0
- /package/src/{primitives → components}/UiField/__tests__/UiFieldError.test.ts +0 -0
- /package/src/{primitives → components}/UiIconButton/index.ts +0 -0
- /package/src/{primitives → components}/UiInput/__tests__/UiInput.test.ts +0 -0
- /package/src/{primitives → components}/UiInput/index.ts +0 -0
- /package/src/{primitives → components}/UiPopover/__tests__/UiPopover.test.ts +0 -0
- /package/src/{primitives → components}/UiProgress/__tests__/UiProgress.test.ts +0 -0
- /package/src/{primitives → components}/UiProgress/index.ts +0 -0
- /package/src/{primitives → components}/UiRadioGroup/__tests__/UiRadioGroup.test.ts +0 -0
- /package/src/{primitives → components}/UiRadioGroup/index.ts +0 -0
- /package/src/{primitives → components}/UiRangeCalendar/__tests__/UiRangeCalendar.test.ts +0 -0
- /package/src/{primitives → components}/UiRangeCalendar/index.ts +0 -0
- /package/src/{primitives → components}/UiSelect/__tests__/UiSelect.test.ts +0 -0
- /package/src/{primitives → components}/UiSelect/__tests__/UiSelectContent.test.ts +0 -0
- /package/src/{primitives → components}/UiSelect/__tests__/UiSelectGroup.test.ts +0 -0
- /package/src/{primitives → components}/UiSelect/__tests__/UiSelectItem.test.ts +0 -0
- /package/src/{primitives → components}/UiSelect/__tests__/UiSelectLabel.test.ts +0 -0
- /package/src/{primitives → components}/UiSelect/__tests__/UiSelectSeparator.test.ts +0 -0
- /package/src/{primitives → components}/UiSelect/__tests__/UiSelectTrigger.test.ts +0 -0
- /package/src/{primitives → components}/UiSelect/__tests__/UiSelectValue.test.ts +0 -0
- /package/src/{primitives → components}/UiSelect/index.ts +0 -0
- /package/src/{primitives → components}/UiSpinner/__tests__/UiSpinner.test.ts +0 -0
- /package/src/{primitives → components}/UiSpinner/index.ts +0 -0
- /package/src/{primitives → components}/UiSwitch/__tests__/UiSwitch.test.ts +0 -0
- /package/src/{primitives → components}/UiSwitch/index.ts +0 -0
- /package/src/{primitives → components}/UiTable/__tests__/UiTable.test.ts +0 -0
- /package/src/{primitives → components}/UiTable/__tests__/UiTableBody.test.ts +0 -0
- /package/src/{primitives → components}/UiTable/__tests__/UiTableCaption.test.ts +0 -0
- /package/src/{primitives → components}/UiTable/__tests__/UiTableCell.test.ts +0 -0
- /package/src/{primitives → components}/UiTable/__tests__/UiTableEmpty.test.ts +0 -0
- /package/src/{primitives → components}/UiTable/__tests__/UiTableFooter.test.ts +0 -0
- /package/src/{primitives → components}/UiTable/__tests__/UiTableHead.test.ts +0 -0
- /package/src/{primitives → components}/UiTable/__tests__/UiTableHeader.test.ts +0 -0
- /package/src/{primitives → components}/UiTable/__tests__/UiTableRow.test.ts +0 -0
- /package/src/{primitives → components}/UiTable/index.ts +0 -0
- /package/src/{primitives → components}/UiTabs/__tests__/UiTabs.test.ts +0 -0
- /package/src/{primitives → components}/UiTabs/index.ts +0 -0
- /package/src/{primitives → components}/UiTextarea/__tests__/UiTextarea.test.ts +0 -0
- /package/src/{primitives → components}/UiTextarea/index.ts +0 -0
- /package/src/{primitives → components}/UiTooltip/__tests__/UiTooltip.test.ts +0 -0
- /package/src/{primitives/shadcn → components/core}/accordion/AccordionContent.vue +0 -0
- /package/src/{primitives/shadcn → components/core}/accordion/index.ts +0 -0
- /package/src/{primitives/shadcn → components/core}/alert/Alert.vue +0 -0
- /package/src/{primitives/shadcn → components/core}/alert/AlertDescription.vue +0 -0
- /package/src/{primitives/shadcn → components/core}/alert/AlertTitle.vue +0 -0
- /package/src/{primitives/shadcn → components/core}/alert-dialog/AlertDialog.vue +0 -0
- /package/src/{primitives/shadcn → components/core}/alert-dialog/AlertDialogDescription.vue +0 -0
- /package/src/{primitives/shadcn → components/core}/alert-dialog/AlertDialogFooter.vue +0 -0
- /package/src/{primitives/shadcn → components/core}/alert-dialog/AlertDialogHeader.vue +0 -0
- /package/src/{primitives/shadcn → components/core}/alert-dialog/AlertDialogTitle.vue +0 -0
- /package/src/{primitives/shadcn → components/core}/alert-dialog/AlertDialogTrigger.vue +0 -0
- /package/src/{primitives/shadcn → components/core}/alert-dialog/index.ts +0 -0
- /package/src/{primitives/shadcn → components/core}/avatar/Avatar.vue +0 -0
- /package/src/{primitives/shadcn → components/core}/avatar/AvatarFallback.vue +0 -0
- /package/src/{primitives/shadcn → components/core}/avatar/AvatarImage.vue +0 -0
- /package/src/{primitives/shadcn → components/core}/avatar/index.ts +0 -0
- /package/src/{primitives/shadcn → components/core}/badge/Badge.vue +0 -0
- /package/src/{primitives/shadcn → components/core}/button/Button.vue +0 -0
- /package/src/{primitives/shadcn → components/core}/calendar/CalendarCell.vue +0 -0
- /package/src/{primitives/shadcn → components/core}/calendar/CalendarGrid.vue +0 -0
- /package/src/{primitives/shadcn → components/core}/calendar/CalendarGridBody.vue +0 -0
- /package/src/{primitives/shadcn → components/core}/calendar/CalendarGridHead.vue +0 -0
- /package/src/{primitives/shadcn → components/core}/calendar/CalendarGridRow.vue +0 -0
- /package/src/{primitives/shadcn → components/core}/calendar/CalendarHeadCell.vue +0 -0
- /package/src/{primitives/shadcn → components/core}/calendar/CalendarHeader.vue +0 -0
- /package/src/{primitives/shadcn → components/core}/calendar/CalendarHeading.vue +0 -0
- /package/src/{primitives/shadcn → components/core}/calendar/index.ts +0 -0
- /package/src/{primitives/shadcn → components/core}/card/CardAction.vue +0 -0
- /package/src/{primitives/shadcn → components/core}/card/CardContent.vue +0 -0
- /package/src/{primitives/shadcn → components/core}/card/CardDescription.vue +0 -0
- /package/src/{primitives/shadcn → components/core}/card/CardFooter.vue +0 -0
- /package/src/{primitives/shadcn → components/core}/card/CardHeader.vue +0 -0
- /package/src/{primitives/shadcn → components/core}/card/CardTitle.vue +0 -0
- /package/src/{primitives/shadcn → components/core}/card/index.ts +0 -0
- /package/src/{primitives/shadcn → components/core}/checkbox/index.ts +0 -0
- /package/src/{primitives/shadcn → components/core}/drawer/Drawer.vue +0 -0
- /package/src/{primitives/shadcn → components/core}/drawer/DrawerClose.vue +0 -0
- /package/src/{primitives/shadcn → components/core}/drawer/DrawerDescription.vue +0 -0
- /package/src/{primitives/shadcn → components/core}/drawer/DrawerFooter.vue +0 -0
- /package/src/{primitives/shadcn → components/core}/drawer/DrawerHeader.vue +0 -0
- /package/src/{primitives/shadcn → components/core}/drawer/DrawerTitle.vue +0 -0
- /package/src/{primitives/shadcn → components/core}/drawer/DrawerTrigger.vue +0 -0
- /package/src/{primitives/shadcn → components/core}/drawer/index.ts +0 -0
- /package/src/{primitives/shadcn → components/core}/dropdown-menu/DropdownMenu.vue +0 -0
- /package/src/{primitives/shadcn → components/core}/dropdown-menu/DropdownMenuContent.vue +0 -0
- /package/src/{primitives/shadcn → components/core}/dropdown-menu/DropdownMenuGroup.vue +0 -0
- /package/src/{primitives/shadcn → components/core}/dropdown-menu/DropdownMenuLabel.vue +0 -0
- /package/src/{primitives/shadcn → components/core}/dropdown-menu/DropdownMenuRadioGroup.vue +0 -0
- /package/src/{primitives/shadcn → components/core}/dropdown-menu/DropdownMenuSeparator.vue +0 -0
- /package/src/{primitives/shadcn → components/core}/dropdown-menu/DropdownMenuShortcut.vue +0 -0
- /package/src/{primitives/shadcn → components/core}/dropdown-menu/DropdownMenuSub.vue +0 -0
- /package/src/{primitives/shadcn → components/core}/dropdown-menu/DropdownMenuSubContent.vue +0 -0
- /package/src/{primitives/shadcn → components/core}/dropdown-menu/DropdownMenuTrigger.vue +0 -0
- /package/src/{primitives/shadcn → components/core}/dropdown-menu/index.ts +0 -0
- /package/src/{primitives/shadcn → components/core}/field/Field.vue +0 -0
- /package/src/{primitives/shadcn → components/core}/field/FieldContent.vue +0 -0
- /package/src/{primitives/shadcn → components/core}/field/FieldDescription.vue +0 -0
- /package/src/{primitives/shadcn → components/core}/field/FieldGroup.vue +0 -0
- /package/src/{primitives/shadcn → components/core}/field/FieldLegend.vue +0 -0
- /package/src/{primitives/shadcn → components/core}/field/FieldSet.vue +0 -0
- /package/src/{primitives/shadcn → components/core}/field/FieldTitle.vue +0 -0
- /package/src/{primitives/shadcn → components/core}/field/index.ts +0 -0
- /package/src/{primitives/shadcn → components/core}/icon/Icon.vue +0 -0
- /package/src/{primitives/shadcn → components/core}/icon/index.ts +0 -0
- /package/src/{primitives/shadcn → components/core}/input/index.ts +0 -0
- /package/src/{primitives/shadcn → components/core}/label/Label.vue +0 -0
- /package/src/{primitives/shadcn → components/core}/label/index.ts +0 -0
- /package/src/{primitives/shadcn → components/core}/native-select/NativeSelectOptGroup.vue +0 -0
- /package/src/{primitives/shadcn → components/core}/native-select/NativeSelectOption.vue +0 -0
- /package/src/{primitives/shadcn → components/core}/native-select/index.ts +0 -0
- /package/src/{primitives/shadcn → components/core}/popover/Popover.vue +0 -0
- /package/src/{primitives/shadcn → components/core}/popover/PopoverContent.vue +0 -0
- /package/src/{primitives/shadcn → components/core}/popover/PopoverTrigger.vue +0 -0
- /package/src/{primitives/shadcn → components/core}/popover/index.ts +0 -0
- /package/src/{primitives/shadcn → components/core}/progress/Progress.vue +0 -0
- /package/src/{primitives/shadcn → components/core}/progress/index.ts +0 -0
- /package/src/{primitives/shadcn → components/core}/radio-group/RadioGroup.vue +0 -0
- /package/src/{primitives/shadcn → components/core}/radio-group/index.ts +0 -0
- /package/src/{primitives/shadcn → components/core}/range-calendar/RangeCalendarCell.vue +0 -0
- /package/src/{primitives/shadcn → components/core}/range-calendar/RangeCalendarGrid.vue +0 -0
- /package/src/{primitives/shadcn → components/core}/range-calendar/RangeCalendarGridBody.vue +0 -0
- /package/src/{primitives/shadcn → components/core}/range-calendar/RangeCalendarGridHead.vue +0 -0
- /package/src/{primitives/shadcn → components/core}/range-calendar/RangeCalendarGridRow.vue +0 -0
- /package/src/{primitives/shadcn → components/core}/range-calendar/RangeCalendarHeadCell.vue +0 -0
- /package/src/{primitives/shadcn → components/core}/range-calendar/RangeCalendarHeader.vue +0 -0
- /package/src/{primitives/shadcn → components/core}/range-calendar/index.ts +0 -0
- /package/src/{primitives/shadcn → components/core}/select/SelectContent.vue +0 -0
- /package/src/{primitives/shadcn → components/core}/select/SelectGroup.vue +0 -0
- /package/src/{primitives/shadcn → components/core}/select/SelectItemText.vue +0 -0
- /package/src/{primitives/shadcn → components/core}/select/SelectLabel.vue +0 -0
- /package/src/{primitives/shadcn → components/core}/select/SelectSeparator.vue +0 -0
- /package/src/{primitives/shadcn → components/core}/select/SelectValue.vue +0 -0
- /package/src/{primitives/shadcn → components/core}/select/index.ts +0 -0
- /package/src/{primitives/shadcn → components/core}/separator/Separator.vue +0 -0
- /package/src/{primitives/shadcn → components/core}/separator/index.ts +0 -0
- /package/src/{primitives/shadcn → components/core}/slider/Slider.vue +0 -0
- /package/src/{primitives/shadcn → components/core}/slider/index.ts +0 -0
- /package/src/{primitives/shadcn → components/core}/spinner/index.ts +0 -0
- /package/src/{primitives/shadcn → components/core}/switch/index.ts +0 -0
- /package/src/{primitives/shadcn → components/core}/table/Table.vue +0 -0
- /package/src/{primitives/shadcn → components/core}/table/TableBody.vue +0 -0
- /package/src/{primitives/shadcn → components/core}/table/TableCaption.vue +0 -0
- /package/src/{primitives/shadcn → components/core}/table/TableCell.vue +0 -0
- /package/src/{primitives/shadcn → components/core}/table/TableEmpty.vue +0 -0
- /package/src/{primitives/shadcn → components/core}/table/TableFooter.vue +0 -0
- /package/src/{primitives/shadcn → components/core}/table/TableHead.vue +0 -0
- /package/src/{primitives/shadcn → components/core}/table/TableHeader.vue +0 -0
- /package/src/{primitives/shadcn → components/core}/table/index.ts +0 -0
- /package/src/{primitives/shadcn → components/core}/table/utils.ts +0 -0
- /package/src/{primitives/shadcn → components/core}/tabs/TabsContent.vue +0 -0
- /package/src/{primitives/shadcn → components/core}/tabs/TabsList.vue +0 -0
- /package/src/{primitives/shadcn → components/core}/tabs/index.ts +0 -0
- /package/src/{primitives/shadcn → components/core}/textarea/index.ts +0 -0
- /package/src/{primitives/shadcn → components/core}/tooltip/Tooltip.vue +0 -0
- /package/src/{primitives/shadcn → components/core}/tooltip/TooltipProvider.vue +0 -0
- /package/src/{primitives/shadcn → components/core}/tooltip/TooltipTrigger.vue +0 -0
- /package/src/{primitives/shadcn → components/core}/tooltip/index.ts +0 -0
- /package/src/{compositions → patterns}/UiDataTable/UiDataTable.mock.ts +0 -0
- /package/src/{compositions → patterns}/UiDataTable/__tests__/UiDataTableColumnHeader.test.ts +0 -0
- /package/src/{compositions → patterns}/UiDataTable/__tests__/UiDataTablePagination.test.ts +0 -0
- /package/src/{compositions → patterns}/UiDataTable/__tests__/UiDataTableToolbar.test.ts +0 -0
- /package/src/{compositions → patterns}/UiDataTable/constants.ts +0 -0
- /package/src/{compositions → patterns}/UiDataTable/index.ts +0 -0
- /package/src/{compositions → patterns}/UiDatePicker/__tests__/UiDatePicker.test.ts +0 -0
- /package/src/{compositions → patterns}/UiDatePicker/index.ts +0 -0
- /package/src/{foundations → patterns}/UiPlaceholder/UiPlaceholder.vue +0 -0
- /package/src/{foundations → patterns}/UiPlaceholder/index.ts +0 -0
package/dist/system/index.d.ts
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
|
+
import { AcceptableInputValue } from 'reka-ui';
|
|
2
|
+
import { AcceptableValue } from 'reka-ui';
|
|
1
3
|
import { AllowedComponentProps } from 'vue';
|
|
2
|
-
import { AsTag } from 'reka-ui';
|
|
3
4
|
import { CalendarDate } from '@internationalized/date';
|
|
4
|
-
import {
|
|
5
|
+
import { Column } from '@tanstack/vue-table';
|
|
5
6
|
import { ColumnDef } from '@tanstack/vue-table';
|
|
6
7
|
import { Component } from 'vue';
|
|
7
8
|
import { ComponentCustomProps } from 'vue';
|
|
@@ -14,25 +15,19 @@ import { getLocalTimeZone } from '@internationalized/date';
|
|
|
14
15
|
import { HTMLAttributes } from 'vue';
|
|
15
16
|
import { ImgHTMLAttributes } from 'vue';
|
|
16
17
|
import { Matcher } from 'reka-ui/date';
|
|
17
|
-
import { PrimitiveProps } from 'reka-ui';
|
|
18
18
|
import { PublicProps } from 'vue';
|
|
19
19
|
import { ReuseTemplateComponent } from '@vueuse/core';
|
|
20
20
|
import { Row } from '@tanstack/vue-table';
|
|
21
|
+
import { SeparatorProps } from 'reka-ui';
|
|
21
22
|
import { ShallowUnwrapRef } from 'vue';
|
|
22
23
|
import { Table } from '@tanstack/vue-table';
|
|
23
|
-
import {
|
|
24
|
-
import { TabsListProps } from 'reka-ui';
|
|
25
|
-
import { TabsRootProps } from 'reka-ui';
|
|
26
|
-
import { TabsTriggerProps } from 'reka-ui';
|
|
24
|
+
import { TagsInputRootProps } from 'reka-ui';
|
|
27
25
|
import { today } from '@internationalized/date';
|
|
28
26
|
import { TooltipContentProps } from 'reka-ui';
|
|
29
27
|
import { TooltipProviderProps } from 'reka-ui';
|
|
30
28
|
import { TooltipRootProps } from 'reka-ui';
|
|
31
29
|
import { TooltipTriggerProps } from 'reka-ui';
|
|
32
|
-
import {
|
|
33
|
-
import { default as UiDataTablePagination } from './UiDataTablePagination.vue';
|
|
34
|
-
import { default as UiDataTableToolbar } from './UiDataTableToolbar.vue';
|
|
35
|
-
import { VariantProps } from 'class-variance-authority';
|
|
30
|
+
import { PopoverAnchor as UiPopoverAnchor } from 'reka-ui';
|
|
36
31
|
import { VNode } from 'vue';
|
|
37
32
|
import { VNodeProps } from 'vue';
|
|
38
33
|
|
|
@@ -44,22 +39,91 @@ declare const __VLS_component: DefineComponent<UiAccordionSingleProps | UiAccord
|
|
|
44
39
|
|
|
45
40
|
declare const __VLS_component_10: DefineComponent<UiAlertSubComponentCommonProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiAlertSubComponentCommonProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
46
41
|
|
|
42
|
+
declare const __VLS_component_100: DefineComponent<UiTabsProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
43
|
+
"update:modelValue": (value: string) => any;
|
|
44
|
+
}, string, PublicProps, Readonly<UiTabsProps> & Readonly<{
|
|
45
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
46
|
+
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
47
|
+
|
|
48
|
+
declare const __VLS_component_101: DefineComponent<UiTabsListProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiTabsListProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
49
|
+
|
|
50
|
+
declare const __VLS_component_102: DefineComponent<UiTabsTriggerProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiTabsTriggerProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
51
|
+
|
|
52
|
+
declare const __VLS_component_103: DefineComponent<UiTabsContentProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiTabsContentProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
53
|
+
|
|
54
|
+
declare const __VLS_component_104: DefineComponent<__VLS_PublicProps_13, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
55
|
+
"update:modelValue": (value: string[]) => any;
|
|
56
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_13> & Readonly<{
|
|
57
|
+
"onUpdate:modelValue"?: ((value: string[]) => any) | undefined;
|
|
58
|
+
}>, {
|
|
59
|
+
disabled: boolean;
|
|
60
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
61
|
+
|
|
62
|
+
declare const __VLS_component_105: DefineComponent<UiTagsInputItemProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiTagsInputItemProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
63
|
+
|
|
64
|
+
declare const __VLS_component_106: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
65
|
+
|
|
66
|
+
declare const __VLS_component_107: DefineComponent<__VLS_PublicProps_15, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
67
|
+
"update:modelValue": (value: boolean) => any;
|
|
68
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_15> & Readonly<{
|
|
69
|
+
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
70
|
+
}>, {
|
|
71
|
+
disabled: boolean;
|
|
72
|
+
size: "default" | "sm" | "lg";
|
|
73
|
+
variant: "default" | "outline";
|
|
74
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
75
|
+
|
|
76
|
+
declare const __VLS_component_108: DefineComponent<UiToggleGroupItemProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiToggleGroupItemProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
77
|
+
|
|
78
|
+
declare const __VLS_component_109: DefineComponent<__VLS_PublicProps_16, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
79
|
+
"update:open": (value: boolean) => any;
|
|
80
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_16> & Readonly<{
|
|
81
|
+
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
82
|
+
}>, {
|
|
83
|
+
disabled: boolean;
|
|
84
|
+
class: string;
|
|
85
|
+
side: UiTooltipSides;
|
|
86
|
+
sideOffset: number;
|
|
87
|
+
align: UiTooltipAlign;
|
|
88
|
+
delayDuration: number;
|
|
89
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
90
|
+
|
|
47
91
|
declare const __VLS_component_11: DefineComponent<UiAlertDialogContentProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
48
|
-
openAutoFocus: (event: Event) => any;
|
|
49
92
|
pointerDownOutside: (event: Event) => any;
|
|
50
93
|
focusOutside: (event: Event) => any;
|
|
51
94
|
interactOutside: (event: Event) => any;
|
|
95
|
+
openAutoFocus: (event: Event) => any;
|
|
52
96
|
closeAutoFocus: (event: Event) => any;
|
|
53
97
|
escapeKeydown: (event: KeyboardEvent) => any;
|
|
54
98
|
}, string, PublicProps, Readonly<UiAlertDialogContentProps> & Readonly<{
|
|
55
|
-
onOpenAutoFocus?: ((event: Event) => any) | undefined;
|
|
56
99
|
onPointerDownOutside?: ((event: Event) => any) | undefined;
|
|
57
100
|
onFocusOutside?: ((event: Event) => any) | undefined;
|
|
58
101
|
onInteractOutside?: ((event: Event) => any) | undefined;
|
|
102
|
+
onOpenAutoFocus?: ((event: Event) => any) | undefined;
|
|
59
103
|
onCloseAutoFocus?: ((event: Event) => any) | undefined;
|
|
60
104
|
onEscapeKeydown?: ((event: KeyboardEvent) => any) | undefined;
|
|
61
105
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
62
106
|
|
|
107
|
+
declare const __VLS_component_110: DefineComponent<TooltipRootProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
108
|
+
"update:open": (value: boolean) => any;
|
|
109
|
+
}, string, PublicProps, Readonly<TooltipRootProps> & Readonly<{
|
|
110
|
+
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
111
|
+
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
112
|
+
|
|
113
|
+
declare const __VLS_component_111: DefineComponent<__VLS_Props_31, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
114
|
+
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
115
|
+
pointerDownOutside: (event: Event) => any;
|
|
116
|
+
}, string, PublicProps, Readonly<__VLS_Props_31> & Readonly<{
|
|
117
|
+
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
118
|
+
onPointerDownOutside?: ((event: Event) => any) | undefined;
|
|
119
|
+
}>, {
|
|
120
|
+
sideOffset: number;
|
|
121
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
122
|
+
|
|
123
|
+
declare const __VLS_component_112: DefineComponent<TooltipProviderProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<TooltipProviderProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
124
|
+
|
|
125
|
+
declare const __VLS_component_113: DefineComponent<TooltipTriggerProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<TooltipTriggerProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
126
|
+
|
|
63
127
|
declare const __VLS_component_12: DefineComponent<UiAlertSubComponentCommonProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiAlertSubComponentCommonProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
64
128
|
|
|
65
129
|
declare const __VLS_component_13: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
@@ -75,32 +139,33 @@ declare const __VLS_component_17: DefineComponent< {}, {}, {}, {}, {}, Compon
|
|
|
75
139
|
declare const __VLS_component_18: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
76
140
|
|
|
77
141
|
declare const __VLS_component_19: DefineComponent<UiBadgeProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiBadgeProps> & Readonly<{}>, {
|
|
78
|
-
variant: UiBadgeVariants;
|
|
79
142
|
asChild: boolean;
|
|
143
|
+
variant: UiBadgeVariants;
|
|
80
144
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
81
145
|
|
|
82
146
|
declare const __VLS_component_2: DefineComponent<UiAccordionItemProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiAccordionItemProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
83
147
|
|
|
84
148
|
declare const __VLS_component_20: DefineComponent<UiButtonProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiButtonProps> & Readonly<{}>, {
|
|
149
|
+
disabled: boolean;
|
|
150
|
+
asChild: boolean;
|
|
85
151
|
type: "button" | "submit" | "reset";
|
|
86
|
-
variant: UiButtonVariant;
|
|
87
152
|
size: UiButtonSize;
|
|
88
|
-
asChild: boolean;
|
|
89
153
|
ariaLabel: string;
|
|
90
|
-
|
|
154
|
+
variant: UiButtonVariant;
|
|
91
155
|
loading: boolean;
|
|
92
156
|
startIcon: Component;
|
|
93
157
|
endIcon: Component;
|
|
94
158
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
95
159
|
|
|
96
|
-
declare const __VLS_component_21: DefineComponent<
|
|
160
|
+
declare const __VLS_component_21: DefineComponent<__VLS_PublicProps_2, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
97
161
|
"update:modelValue": (value: DateValue | DateValue[] | undefined) => any;
|
|
98
162
|
"update:placeholder": (value: DateValue | undefined) => any;
|
|
99
|
-
}, string, PublicProps, Readonly<
|
|
163
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_2> & Readonly<{
|
|
100
164
|
"onUpdate:modelValue"?: ((value: DateValue | DateValue[] | undefined) => any) | undefined;
|
|
101
165
|
"onUpdate:placeholder"?: ((value: DateValue | undefined) => any) | undefined;
|
|
102
166
|
}>, {
|
|
103
167
|
disabled: boolean;
|
|
168
|
+
multiple: boolean;
|
|
104
169
|
pagedNavigation: boolean;
|
|
105
170
|
preventDeselect: boolean;
|
|
106
171
|
weekStartsOn: UiCalendarWeekStartsOn;
|
|
@@ -110,27 +175,26 @@ locale: string;
|
|
|
110
175
|
numberOfMonths: number;
|
|
111
176
|
readonly: boolean;
|
|
112
177
|
initialFocus: boolean;
|
|
113
|
-
multiple: boolean;
|
|
114
178
|
disableDaysOutsideCurrentView: boolean;
|
|
115
179
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
116
180
|
|
|
117
|
-
declare const __VLS_component_22: DefineComponent<
|
|
181
|
+
declare const __VLS_component_22: DefineComponent<__VLS_Props_2, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_2> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
118
182
|
|
|
119
|
-
declare const __VLS_component_23: DefineComponent<
|
|
183
|
+
declare const __VLS_component_23: DefineComponent<__VLS_Props_3, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_3> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
120
184
|
|
|
121
|
-
declare const __VLS_component_24: DefineComponent<
|
|
185
|
+
declare const __VLS_component_24: DefineComponent<__VLS_Props_4, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_4> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
122
186
|
|
|
123
|
-
declare const __VLS_component_25: DefineComponent<
|
|
187
|
+
declare const __VLS_component_25: DefineComponent<__VLS_Props_5, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_5> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLParagraphElement>;
|
|
124
188
|
|
|
125
|
-
declare const __VLS_component_26: DefineComponent<
|
|
189
|
+
declare const __VLS_component_26: DefineComponent<__VLS_Props_6, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_6> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
126
190
|
|
|
127
|
-
declare const __VLS_component_27: DefineComponent<
|
|
191
|
+
declare const __VLS_component_27: DefineComponent<__VLS_Props_7, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_7> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
128
192
|
|
|
129
|
-
declare const __VLS_component_28: DefineComponent<
|
|
193
|
+
declare const __VLS_component_28: DefineComponent<__VLS_Props_8, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_8> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLHeadingElement>;
|
|
130
194
|
|
|
131
|
-
declare const __VLS_component_29: DefineComponent<
|
|
195
|
+
declare const __VLS_component_29: DefineComponent<__VLS_PublicProps_4, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
132
196
|
"update:open": (value: boolean) => any;
|
|
133
|
-
}, string, PublicProps, Readonly<
|
|
197
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_4> & Readonly<{
|
|
134
198
|
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
135
199
|
}>, {
|
|
136
200
|
modal: boolean;
|
|
@@ -141,18 +205,18 @@ declare const __VLS_component_3: DefineComponent<UiAccordionTriggerProps, {}, {}
|
|
|
141
205
|
declare const __VLS_component_30: DefineComponent<UiDrawerCloseProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiDrawerCloseProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
142
206
|
|
|
143
207
|
declare const __VLS_component_31: DefineComponent<UiDrawerContentProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
144
|
-
openAutoFocus: (event: Event) => any;
|
|
145
208
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
146
209
|
pointerDownOutside: (event: Event) => any;
|
|
147
210
|
focusOutside: (event: Event) => any;
|
|
148
211
|
interactOutside: (event: Event) => any;
|
|
212
|
+
openAutoFocus: (event: Event) => any;
|
|
149
213
|
closeAutoFocus: (event: Event) => any;
|
|
150
214
|
}, string, PublicProps, Readonly<UiDrawerContentProps> & Readonly<{
|
|
151
|
-
onOpenAutoFocus?: ((event: Event) => any) | undefined;
|
|
152
215
|
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
153
216
|
onPointerDownOutside?: ((event: Event) => any) | undefined;
|
|
154
217
|
onFocusOutside?: ((event: Event) => any) | undefined;
|
|
155
218
|
onInteractOutside?: ((event: Event) => any) | undefined;
|
|
219
|
+
onOpenAutoFocus?: ((event: Event) => any) | undefined;
|
|
156
220
|
onCloseAutoFocus?: ((event: Event) => any) | undefined;
|
|
157
221
|
}>, {
|
|
158
222
|
disableOutsidePointerEvents: boolean;
|
|
@@ -179,9 +243,9 @@ modal: boolean;
|
|
|
179
243
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
180
244
|
|
|
181
245
|
declare const __VLS_component_38: DefineComponent<UiDropdownMenuTriggerProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiDropdownMenuTriggerProps> & Readonly<{}>, {
|
|
246
|
+
disabled: boolean;
|
|
182
247
|
asChild: boolean;
|
|
183
248
|
ariaLabel: string;
|
|
184
|
-
disabled: boolean;
|
|
185
249
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
186
250
|
|
|
187
251
|
declare const __VLS_component_39: DefineComponent<UiDropdownMenuContentProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
@@ -197,8 +261,8 @@ align: "start" | "center" | "end";
|
|
|
197
261
|
declare const __VLS_component_4: DefineComponent<UiAccordionContentProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiAccordionContentProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
198
262
|
|
|
199
263
|
declare const __VLS_component_40: DefineComponent<UiDropdownMenuItemProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiDropdownMenuItemProps> & Readonly<{}>, {
|
|
200
|
-
variant: "default" | "destructive";
|
|
201
264
|
disabled: boolean;
|
|
265
|
+
variant: "default" | "destructive";
|
|
202
266
|
textValue: string;
|
|
203
267
|
inset: boolean;
|
|
204
268
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
@@ -233,8 +297,8 @@ declare const __VLS_component_47: DefineComponent<UiDropdownMenuSubProps, {}, {}
|
|
|
233
297
|
}, string, PublicProps, Readonly<UiDropdownMenuSubProps> & Readonly<{
|
|
234
298
|
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
235
299
|
}>, {
|
|
236
|
-
defaultOpen: boolean;
|
|
237
300
|
open: boolean;
|
|
301
|
+
defaultOpen: boolean;
|
|
238
302
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
239
303
|
|
|
240
304
|
declare const __VLS_component_48: DefineComponent<UiDropdownMenuSubTriggerProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiDropdownMenuSubTriggerProps> & Readonly<{}>, {
|
|
@@ -255,48 +319,118 @@ declare const __VLS_component_5: DefineComponent<UiAlertProps, {}, {}, {}, {}, C
|
|
|
255
319
|
variant: UiAlertVariants;
|
|
256
320
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
257
321
|
|
|
258
|
-
declare const __VLS_component_50: DefineComponent<
|
|
259
|
-
|
|
322
|
+
declare const __VLS_component_50: DefineComponent<UiEmptyProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiEmptyProps> & Readonly<{}>, {
|
|
323
|
+
title: string;
|
|
324
|
+
icon: Component;
|
|
325
|
+
description: string;
|
|
260
326
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
261
327
|
|
|
262
|
-
declare const __VLS_component_51: DefineComponent<
|
|
328
|
+
declare const __VLS_component_51: DefineComponent<UiFieldProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiFieldProps> & Readonly<{}>, {
|
|
329
|
+
orientation: UiFieldOrientation;
|
|
330
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
263
331
|
|
|
264
|
-
declare const __VLS_component_52: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {},
|
|
332
|
+
declare const __VLS_component_52: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
265
333
|
|
|
266
|
-
declare const __VLS_component_53: DefineComponent<
|
|
334
|
+
declare const __VLS_component_53: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLParagraphElement>;
|
|
267
335
|
|
|
268
|
-
declare const __VLS_component_54: DefineComponent<
|
|
336
|
+
declare const __VLS_component_54: DefineComponent<UiFieldErrorProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiFieldErrorProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
269
337
|
|
|
270
|
-
declare const __VLS_component_55: DefineComponent<
|
|
338
|
+
declare const __VLS_component_55: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
271
339
|
|
|
272
|
-
declare const __VLS_component_56: DefineComponent<
|
|
340
|
+
declare const __VLS_component_56: DefineComponent<UiFieldLabelProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiFieldLabelProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
273
341
|
|
|
274
|
-
declare const __VLS_component_57: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {},
|
|
342
|
+
declare const __VLS_component_57: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLLegendElement>;
|
|
275
343
|
|
|
276
|
-
declare const __VLS_component_58: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {},
|
|
344
|
+
declare const __VLS_component_58: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
277
345
|
|
|
278
|
-
declare const __VLS_component_59: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {},
|
|
346
|
+
declare const __VLS_component_59: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLFieldSetElement>;
|
|
279
347
|
|
|
280
348
|
declare const __VLS_component_6: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
281
349
|
|
|
282
|
-
declare const __VLS_component_60: DefineComponent<
|
|
350
|
+
declare const __VLS_component_60: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
351
|
+
|
|
352
|
+
declare const __VLS_component_61: DefineComponent<UiIconButtonProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiIconButtonProps> & Readonly<{}>, {
|
|
353
|
+
disabled: boolean;
|
|
354
|
+
asChild: boolean;
|
|
283
355
|
type: "button" | "submit" | "reset";
|
|
284
|
-
variant: UiIconButtonVariant;
|
|
285
356
|
size: UiIconButtonSize;
|
|
357
|
+
variant: UiIconButtonVariant;
|
|
358
|
+
loading: boolean;
|
|
359
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
360
|
+
|
|
361
|
+
declare const __VLS_component_62: DefineComponent<UiItemProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiItemProps> & Readonly<{}>, {
|
|
286
362
|
asChild: boolean;
|
|
363
|
+
size: UiItemSizes;
|
|
364
|
+
variant: UiItemVariants;
|
|
365
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
366
|
+
|
|
367
|
+
declare const __VLS_component_63: DefineComponent<UiItemMediaProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiItemMediaProps> & Readonly<{}>, {
|
|
368
|
+
variant: UiItemMediaVariants;
|
|
369
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
370
|
+
|
|
371
|
+
declare const __VLS_component_64: DefineComponent<__VLS_Props_12, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_12> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
372
|
+
|
|
373
|
+
declare const __VLS_component_65: DefineComponent<__VLS_Props_13, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_13> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
374
|
+
|
|
375
|
+
declare const __VLS_component_66: DefineComponent<__VLS_Props_14, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_14> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLParagraphElement>;
|
|
376
|
+
|
|
377
|
+
declare const __VLS_component_67: DefineComponent<__VLS_Props_15, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_15> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
378
|
+
|
|
379
|
+
declare const __VLS_component_68: DefineComponent<__VLS_Props_16, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_16> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
380
|
+
|
|
381
|
+
declare const __VLS_component_69: DefineComponent<__VLS_Props_17, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_17> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
382
|
+
|
|
383
|
+
declare const __VLS_component_7: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
384
|
+
|
|
385
|
+
declare const __VLS_component_70: DefineComponent<__VLS_Props_19, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_19> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
386
|
+
|
|
387
|
+
declare const __VLS_component_71: DefineComponent<UiKbdProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiKbdProps> & Readonly<{}>, {
|
|
388
|
+
size: "sm" | "default" | "lg";
|
|
389
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLElement>;
|
|
390
|
+
|
|
391
|
+
declare const __VLS_component_72: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLSpanElement>;
|
|
392
|
+
|
|
393
|
+
declare const __VLS_component_73: DefineComponent<UiLabelProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiLabelProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
394
|
+
|
|
395
|
+
declare const __VLS_component_74: DefineComponent<__VLS_PublicProps_6, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
396
|
+
"update:modelValue": (value: AcceptableValue | AcceptableValue[]) => any;
|
|
397
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_6> & Readonly<{
|
|
398
|
+
"onUpdate:modelValue"?: ((value: AcceptableValue | AcceptableValue[]) => any) | undefined;
|
|
399
|
+
}>, {
|
|
287
400
|
disabled: boolean;
|
|
288
|
-
|
|
401
|
+
multiple: boolean;
|
|
402
|
+
highlightOnHover: boolean;
|
|
289
403
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
290
404
|
|
|
291
|
-
declare const
|
|
405
|
+
declare const __VLS_component_75: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
406
|
+
|
|
407
|
+
declare const __VLS_component_76: DefineComponent<UiListboxItemProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
408
|
+
select: (event: Event) => any;
|
|
409
|
+
}, string, PublicProps, Readonly<UiListboxItemProps> & Readonly<{
|
|
410
|
+
onSelect?: ((event: Event) => any) | undefined;
|
|
411
|
+
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
412
|
+
|
|
413
|
+
declare const __VLS_component_77: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
414
|
+
|
|
415
|
+
declare const __VLS_component_78: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
416
|
+
|
|
417
|
+
declare const __VLS_component_79: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
418
|
+
|
|
419
|
+
declare const __VLS_component_8: DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
420
|
+
"update:modelValue": (value: boolean) => any;
|
|
421
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
422
|
+
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
423
|
+
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
424
|
+
|
|
425
|
+
declare const __VLS_component_80: DefineComponent<__VLS_PublicProps_8, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
292
426
|
"update:open": (value: boolean) => any;
|
|
293
|
-
}, string, PublicProps, Readonly<
|
|
427
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_8> & Readonly<{
|
|
294
428
|
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
295
429
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
296
430
|
|
|
297
|
-
declare const
|
|
431
|
+
declare const __VLS_component_81: DefineComponent<UiPopoverTriggerProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiPopoverTriggerProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
298
432
|
|
|
299
|
-
declare const
|
|
433
|
+
declare const __VLS_component_82: DefineComponent<UiPopoverContentProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
300
434
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
301
435
|
}, string, PublicProps, Readonly<UiPopoverContentProps> & Readonly<{
|
|
302
436
|
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
@@ -306,43 +440,43 @@ sideOffset: number;
|
|
|
306
440
|
align: UiPopoverAlign;
|
|
307
441
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
308
442
|
|
|
309
|
-
declare const
|
|
443
|
+
declare const __VLS_component_83: DefineComponent<__VLS_PublicProps_10, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
310
444
|
"update:modelValue": (value: string) => any;
|
|
311
|
-
}, string, PublicProps, Readonly<
|
|
445
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_10> & Readonly<{
|
|
312
446
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
313
447
|
}>, {
|
|
314
|
-
required: boolean;
|
|
315
|
-
asChild: boolean;
|
|
316
448
|
disabled: boolean;
|
|
317
449
|
dir: UiRadioGroupDirection;
|
|
318
|
-
loop: boolean;
|
|
319
450
|
orientation: UiRadioGroupOrientation;
|
|
451
|
+
asChild: boolean;
|
|
452
|
+
required: boolean;
|
|
453
|
+
loop: boolean;
|
|
320
454
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
321
455
|
|
|
322
|
-
declare const
|
|
323
|
-
"update:open": (value: boolean) => any;
|
|
456
|
+
declare const __VLS_component_84: DefineComponent<UiSelectProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
324
457
|
"update:modelValue": (value: string) => any;
|
|
458
|
+
"update:open": (value: boolean) => any;
|
|
325
459
|
}, string, PublicProps, Readonly<UiSelectProps> & Readonly<{
|
|
326
|
-
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
327
460
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
461
|
+
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
328
462
|
}>, {
|
|
329
|
-
name: string;
|
|
330
|
-
required: boolean;
|
|
331
463
|
disabled: boolean;
|
|
332
|
-
defaultOpen: boolean;
|
|
333
|
-
open: boolean;
|
|
334
464
|
dir: "ltr" | "rtl";
|
|
335
465
|
modelValue: string;
|
|
336
466
|
defaultValue: string;
|
|
467
|
+
open: boolean;
|
|
468
|
+
defaultOpen: boolean;
|
|
469
|
+
name: string;
|
|
470
|
+
required: boolean;
|
|
337
471
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
338
472
|
|
|
339
|
-
declare const
|
|
473
|
+
declare const __VLS_component_85: DefineComponent<UiSelectTriggerProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiSelectTriggerProps> & Readonly<{}>, {
|
|
474
|
+
disabled: boolean;
|
|
340
475
|
size: "default" | "sm";
|
|
341
476
|
ariaLabel: string;
|
|
342
|
-
disabled: boolean;
|
|
343
477
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
344
478
|
|
|
345
|
-
declare const
|
|
479
|
+
declare const __VLS_component_86: DefineComponent<UiSelectContentProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
346
480
|
escapeKeyDown: (event: KeyboardEvent) => any;
|
|
347
481
|
pointerDownOutside: (event: Event) => any;
|
|
348
482
|
}, string, PublicProps, Readonly<UiSelectContentProps> & Readonly<{
|
|
@@ -355,216 +489,231 @@ align: "start" | "center" | "end";
|
|
|
355
489
|
position: "item-aligned" | "popper";
|
|
356
490
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
357
491
|
|
|
358
|
-
declare const
|
|
492
|
+
declare const __VLS_component_87: DefineComponent<UiSelectItemProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiSelectItemProps> & Readonly<{}>, {
|
|
359
493
|
disabled: boolean;
|
|
360
494
|
textValue: string;
|
|
361
495
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
362
496
|
|
|
363
|
-
declare const
|
|
497
|
+
declare const __VLS_component_88: DefineComponent<UiSelectValueProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiSelectValueProps> & Readonly<{}>, {
|
|
364
498
|
placeholder: string;
|
|
365
499
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
366
500
|
|
|
367
|
-
declare const
|
|
501
|
+
declare const __VLS_component_89: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
368
502
|
|
|
369
|
-
declare const
|
|
503
|
+
declare const __VLS_component_9: DefineComponent<UiAlertSubComponentCommonProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiAlertSubComponentCommonProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
370
504
|
|
|
371
|
-
declare const
|
|
505
|
+
declare const __VLS_component_90: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
372
506
|
|
|
373
|
-
declare const
|
|
507
|
+
declare const __VLS_component_91: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
374
508
|
|
|
375
|
-
declare const
|
|
509
|
+
declare const __VLS_component_92: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLTableSectionElement>;
|
|
376
510
|
|
|
377
|
-
declare const
|
|
511
|
+
declare const __VLS_component_93: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLTableSectionElement>;
|
|
378
512
|
|
|
379
|
-
declare const
|
|
513
|
+
declare const __VLS_component_94: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLTableSectionElement>;
|
|
380
514
|
|
|
381
|
-
declare const
|
|
515
|
+
declare const __VLS_component_95: DefineComponent<UiTableRowProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiTableRowProps> & Readonly<{}>, {
|
|
382
516
|
selected: boolean;
|
|
383
517
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLTableRowElement>;
|
|
384
518
|
|
|
385
|
-
declare const
|
|
519
|
+
declare const __VLS_component_96: DefineComponent<UiTableHeadProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiTableHeadProps> & Readonly<{}>, {
|
|
386
520
|
scope: "col" | "row" | "colgroup" | "rowgroup";
|
|
387
521
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLTableCellElement>;
|
|
388
522
|
|
|
389
|
-
declare const
|
|
523
|
+
declare const __VLS_component_97: DefineComponent<UiTableCellProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiTableCellProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLTableCellElement>;
|
|
390
524
|
|
|
391
|
-
declare const
|
|
525
|
+
declare const __VLS_component_98: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLTableCaptionElement>;
|
|
392
526
|
|
|
393
|
-
declare const
|
|
394
|
-
"update:modelValue": (value: boolean) => any;
|
|
395
|
-
}, string, PublicProps, Readonly<__VLS_PublicProps_2> & Readonly<{
|
|
396
|
-
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
397
|
-
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
398
|
-
|
|
399
|
-
declare const __VLS_component_80: DefineComponent<UiTableEmptyProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiTableEmptyProps> & Readonly<{}>, {
|
|
527
|
+
declare const __VLS_component_99: DefineComponent<UiTableEmptyProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiTableEmptyProps> & Readonly<{}>, {
|
|
400
528
|
colspan: number;
|
|
401
529
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLTableRowElement>;
|
|
402
530
|
|
|
403
|
-
declare
|
|
404
|
-
|
|
405
|
-
}
|
|
406
|
-
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
407
|
-
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
531
|
+
declare type __VLS_PrettifyLocal<T> = {
|
|
532
|
+
[K in keyof T]: T[K];
|
|
533
|
+
} & {};
|
|
408
534
|
|
|
409
|
-
declare
|
|
535
|
+
declare type __VLS_PrettifyLocal_2<T> = {
|
|
536
|
+
[K in keyof T]: T[K];
|
|
537
|
+
} & {};
|
|
410
538
|
|
|
411
|
-
declare
|
|
539
|
+
declare type __VLS_PrettifyLocal_3<T> = {
|
|
540
|
+
[K in keyof T]: T[K];
|
|
541
|
+
} & {};
|
|
412
542
|
|
|
413
|
-
declare
|
|
543
|
+
declare type __VLS_PrettifyLocal_4<T> = {
|
|
544
|
+
[K in keyof T]: T[K];
|
|
545
|
+
} & {};
|
|
414
546
|
|
|
415
|
-
declare
|
|
416
|
-
|
|
417
|
-
}
|
|
418
|
-
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
419
|
-
}>, {
|
|
420
|
-
class: string;
|
|
421
|
-
disabled: boolean;
|
|
422
|
-
side: UiTooltipSides;
|
|
423
|
-
sideOffset: number;
|
|
424
|
-
align: UiTooltipAlign;
|
|
425
|
-
delayDuration: number;
|
|
426
|
-
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
547
|
+
declare type __VLS_PrettifyLocal_5<T> = {
|
|
548
|
+
[K in keyof T]: T[K];
|
|
549
|
+
} & {};
|
|
427
550
|
|
|
428
|
-
declare
|
|
429
|
-
as: AsTag | Component;
|
|
430
|
-
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
551
|
+
declare type __VLS_Props = UiCalendarProps;
|
|
431
552
|
|
|
432
|
-
declare
|
|
433
|
-
"update:modelValue": (payload: string | number) => any;
|
|
434
|
-
}, string, PublicProps, Readonly<__VLS_Props_13> & Readonly<{
|
|
435
|
-
"onUpdate:modelValue"?: ((payload: string | number) => any) | undefined;
|
|
436
|
-
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
553
|
+
declare type __VLS_Props_10 = UiDrawerProps;
|
|
437
554
|
|
|
438
|
-
declare
|
|
555
|
+
declare type __VLS_Props_11 = UiInputProps;
|
|
439
556
|
|
|
440
|
-
declare
|
|
557
|
+
declare type __VLS_Props_12 = {
|
|
558
|
+
class?: HTMLAttributes['class'];
|
|
559
|
+
};
|
|
441
560
|
|
|
442
|
-
declare
|
|
561
|
+
declare type __VLS_Props_13 = {
|
|
562
|
+
class?: HTMLAttributes['class'];
|
|
563
|
+
};
|
|
443
564
|
|
|
444
|
-
declare
|
|
565
|
+
declare type __VLS_Props_14 = {
|
|
566
|
+
class?: HTMLAttributes['class'];
|
|
567
|
+
};
|
|
445
568
|
|
|
446
|
-
declare
|
|
447
|
-
|
|
448
|
-
}
|
|
449
|
-
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
450
|
-
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
569
|
+
declare type __VLS_Props_15 = {
|
|
570
|
+
class?: HTMLAttributes['class'];
|
|
571
|
+
};
|
|
451
572
|
|
|
452
|
-
declare
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
}, string, PublicProps, Readonly<__VLS_Props_17> & Readonly<{
|
|
456
|
-
onEscapeKeyDown?: ((event: KeyboardEvent) => any) | undefined;
|
|
457
|
-
onPointerDownOutside?: ((event: Event) => any) | undefined;
|
|
458
|
-
}>, {
|
|
459
|
-
sideOffset: number;
|
|
460
|
-
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
573
|
+
declare type __VLS_Props_16 = {
|
|
574
|
+
class?: HTMLAttributes['class'];
|
|
575
|
+
};
|
|
461
576
|
|
|
462
|
-
declare
|
|
577
|
+
declare type __VLS_Props_17 = {
|
|
578
|
+
class?: HTMLAttributes['class'];
|
|
579
|
+
};
|
|
463
580
|
|
|
464
|
-
declare
|
|
581
|
+
declare type __VLS_Props_18 = SeparatorProps & {
|
|
582
|
+
class?: HTMLAttributes['class'];
|
|
583
|
+
};
|
|
465
584
|
|
|
466
|
-
declare type
|
|
467
|
-
|
|
468
|
-
}
|
|
585
|
+
declare type __VLS_Props_19 = {
|
|
586
|
+
class?: HTMLAttributes['class'];
|
|
587
|
+
};
|
|
588
|
+
|
|
589
|
+
declare type __VLS_Props_2 = {
|
|
590
|
+
class?: HTMLAttributes['class'];
|
|
591
|
+
};
|
|
592
|
+
|
|
593
|
+
declare type __VLS_Props_20 = UiListboxProps;
|
|
469
594
|
|
|
470
|
-
declare type
|
|
595
|
+
declare type __VLS_Props_21 = UiListboxFilterProps;
|
|
471
596
|
|
|
472
|
-
declare type
|
|
597
|
+
declare type __VLS_Props_22 = UiPopoverProps;
|
|
473
598
|
|
|
474
|
-
declare type
|
|
599
|
+
declare type __VLS_Props_23 = UiProgressProps;
|
|
475
600
|
|
|
476
|
-
declare type
|
|
601
|
+
declare type __VLS_Props_24 = UiRadioGroupProps;
|
|
477
602
|
|
|
478
|
-
declare type
|
|
603
|
+
declare type __VLS_Props_25 = UiRangeCalendarProps;
|
|
604
|
+
|
|
605
|
+
declare type __VLS_Props_26 = UiSwitchProps;
|
|
606
|
+
|
|
607
|
+
declare type __VLS_Props_27 = UiTagsInputProps;
|
|
608
|
+
|
|
609
|
+
declare type __VLS_Props_28 = UiTextareaProps;
|
|
610
|
+
|
|
611
|
+
declare type __VLS_Props_29 = UiToggleProps;
|
|
612
|
+
|
|
613
|
+
declare type __VLS_Props_3 = {
|
|
479
614
|
class?: HTMLAttributes['class'];
|
|
480
615
|
};
|
|
481
616
|
|
|
482
|
-
declare type
|
|
617
|
+
declare type __VLS_Props_30 = UiTooltipProps;
|
|
618
|
+
|
|
619
|
+
declare type __VLS_Props_31 = TooltipContentProps & {
|
|
483
620
|
class?: HTMLAttributes['class'];
|
|
484
621
|
};
|
|
485
622
|
|
|
486
|
-
declare type
|
|
623
|
+
declare type __VLS_Props_32 = UiDatePickerProps;
|
|
624
|
+
|
|
625
|
+
declare type __VLS_Props_4 = {
|
|
487
626
|
class?: HTMLAttributes['class'];
|
|
488
627
|
};
|
|
489
628
|
|
|
490
|
-
declare type
|
|
629
|
+
declare type __VLS_Props_5 = {
|
|
491
630
|
class?: HTMLAttributes['class'];
|
|
492
631
|
};
|
|
493
632
|
|
|
494
|
-
declare type
|
|
633
|
+
declare type __VLS_Props_6 = {
|
|
495
634
|
class?: HTMLAttributes['class'];
|
|
496
635
|
};
|
|
497
636
|
|
|
498
|
-
declare type
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
declare type __VLS_Props_4 = UiDrawerProps;
|
|
503
|
-
|
|
504
|
-
declare type __VLS_Props_5 = UiInputProps;
|
|
505
|
-
|
|
506
|
-
declare type __VLS_Props_6 = UiPopoverProps;
|
|
507
|
-
|
|
508
|
-
declare type __VLS_Props_7 = UiProgressProps;
|
|
637
|
+
declare type __VLS_Props_7 = {
|
|
638
|
+
class?: HTMLAttributes['class'];
|
|
639
|
+
};
|
|
509
640
|
|
|
510
|
-
declare type __VLS_Props_8 =
|
|
641
|
+
declare type __VLS_Props_8 = {
|
|
642
|
+
class?: HTMLAttributes['class'];
|
|
643
|
+
};
|
|
511
644
|
|
|
512
|
-
declare type __VLS_Props_9 =
|
|
645
|
+
declare type __VLS_Props_9 = UiCheckboxProps;
|
|
513
646
|
|
|
514
647
|
declare type __VLS_PublicProps = {
|
|
515
|
-
modelValue?:
|
|
516
|
-
|
|
517
|
-
} & __VLS_Props;
|
|
648
|
+
modelValue?: boolean;
|
|
649
|
+
};
|
|
518
650
|
|
|
519
651
|
declare type __VLS_PublicProps_10 = {
|
|
652
|
+
modelValue?: string;
|
|
653
|
+
} & __VLS_Props_24;
|
|
654
|
+
|
|
655
|
+
declare type __VLS_PublicProps_11 = {
|
|
520
656
|
modelValue?: UiRangeCalendarProps['modelValue'];
|
|
521
657
|
'placeholder'?: UiRangeCalendarProps['placeholder'];
|
|
522
|
-
} &
|
|
658
|
+
} & __VLS_Props_25;
|
|
523
659
|
|
|
524
|
-
declare type
|
|
660
|
+
declare type __VLS_PublicProps_12 = {
|
|
525
661
|
modelValue?: boolean;
|
|
526
|
-
} &
|
|
662
|
+
} & __VLS_Props_26;
|
|
527
663
|
|
|
528
|
-
declare type
|
|
664
|
+
declare type __VLS_PublicProps_13 = {
|
|
665
|
+
modelValue?: string[];
|
|
666
|
+
} & __VLS_Props_27;
|
|
667
|
+
|
|
668
|
+
declare type __VLS_PublicProps_14 = {
|
|
529
669
|
modelValue?: string;
|
|
530
|
-
} &
|
|
670
|
+
} & __VLS_Props_28;
|
|
531
671
|
|
|
532
|
-
declare type
|
|
672
|
+
declare type __VLS_PublicProps_15 = {
|
|
673
|
+
modelValue?: boolean;
|
|
674
|
+
} & __VLS_Props_29;
|
|
675
|
+
|
|
676
|
+
declare type __VLS_PublicProps_16 = {
|
|
533
677
|
'open'?: boolean;
|
|
534
|
-
} &
|
|
678
|
+
} & __VLS_Props_30;
|
|
535
679
|
|
|
536
|
-
declare type
|
|
537
|
-
modelValue?:
|
|
538
|
-
|
|
680
|
+
declare type __VLS_PublicProps_17 = {
|
|
681
|
+
modelValue?: UiDatePickerProps['modelValue'];
|
|
682
|
+
'open'?: boolean;
|
|
683
|
+
} & __VLS_Props_32;
|
|
539
684
|
|
|
540
|
-
declare type
|
|
685
|
+
declare type __VLS_PublicProps_2 = {
|
|
541
686
|
modelValue?: UiCalendarProps['modelValue'];
|
|
542
687
|
'placeholder'?: UiCalendarProps['placeholder'];
|
|
543
|
-
} &
|
|
688
|
+
} & __VLS_Props;
|
|
544
689
|
|
|
545
|
-
declare type
|
|
690
|
+
declare type __VLS_PublicProps_3 = {
|
|
546
691
|
modelValue?: UiCheckboxModelValue;
|
|
547
|
-
} &
|
|
692
|
+
} & __VLS_Props_9;
|
|
548
693
|
|
|
549
|
-
declare type
|
|
694
|
+
declare type __VLS_PublicProps_4 = {
|
|
550
695
|
'open'?: boolean;
|
|
551
|
-
} &
|
|
696
|
+
} & __VLS_Props_10;
|
|
552
697
|
|
|
553
|
-
declare type
|
|
698
|
+
declare type __VLS_PublicProps_5 = {
|
|
554
699
|
modelValue?: string;
|
|
555
|
-
} &
|
|
700
|
+
} & __VLS_Props_11;
|
|
701
|
+
|
|
702
|
+
declare type __VLS_PublicProps_6 = {
|
|
703
|
+
modelValue?: AcceptableValue | AcceptableValue[];
|
|
704
|
+
} & __VLS_Props_20;
|
|
556
705
|
|
|
557
706
|
declare type __VLS_PublicProps_7 = {
|
|
558
|
-
|
|
559
|
-
} &
|
|
707
|
+
modelValue?: string;
|
|
708
|
+
} & __VLS_Props_21;
|
|
560
709
|
|
|
561
710
|
declare type __VLS_PublicProps_8 = {
|
|
562
|
-
|
|
563
|
-
} &
|
|
711
|
+
'open'?: boolean;
|
|
712
|
+
} & __VLS_Props_22;
|
|
564
713
|
|
|
565
714
|
declare type __VLS_PublicProps_9 = {
|
|
566
|
-
modelValue?:
|
|
567
|
-
} &
|
|
715
|
+
modelValue?: number;
|
|
716
|
+
} & __VLS_Props_23;
|
|
568
717
|
|
|
569
718
|
declare function __VLS_template(): {
|
|
570
719
|
attrs: Partial<{}>;
|
|
@@ -584,6 +733,98 @@ declare function __VLS_template_10(): {
|
|
|
584
733
|
rootEl: any;
|
|
585
734
|
};
|
|
586
735
|
|
|
736
|
+
declare function __VLS_template_100(): {
|
|
737
|
+
attrs: Partial<{}>;
|
|
738
|
+
slots: {
|
|
739
|
+
default?(_: {}): any;
|
|
740
|
+
};
|
|
741
|
+
refs: {};
|
|
742
|
+
rootEl: any;
|
|
743
|
+
};
|
|
744
|
+
|
|
745
|
+
declare function __VLS_template_101(): {
|
|
746
|
+
attrs: Partial<{}>;
|
|
747
|
+
slots: {
|
|
748
|
+
default?(_: {}): any;
|
|
749
|
+
};
|
|
750
|
+
refs: {};
|
|
751
|
+
rootEl: any;
|
|
752
|
+
};
|
|
753
|
+
|
|
754
|
+
declare function __VLS_template_102(): {
|
|
755
|
+
attrs: Partial<{}>;
|
|
756
|
+
slots: {
|
|
757
|
+
default?(_: {}): any;
|
|
758
|
+
};
|
|
759
|
+
refs: {};
|
|
760
|
+
rootEl: any;
|
|
761
|
+
};
|
|
762
|
+
|
|
763
|
+
declare function __VLS_template_103(): {
|
|
764
|
+
attrs: Partial<{}>;
|
|
765
|
+
slots: {
|
|
766
|
+
default?(_: {}): any;
|
|
767
|
+
};
|
|
768
|
+
refs: {};
|
|
769
|
+
rootEl: any;
|
|
770
|
+
};
|
|
771
|
+
|
|
772
|
+
declare function __VLS_template_104(): {
|
|
773
|
+
attrs: Partial<{}>;
|
|
774
|
+
slots: {
|
|
775
|
+
default?(_: {
|
|
776
|
+
modelValue: AcceptableInputValue[];
|
|
777
|
+
}): any;
|
|
778
|
+
};
|
|
779
|
+
refs: {};
|
|
780
|
+
rootEl: any;
|
|
781
|
+
};
|
|
782
|
+
|
|
783
|
+
declare function __VLS_template_105(): {
|
|
784
|
+
attrs: Partial<{}>;
|
|
785
|
+
slots: {
|
|
786
|
+
default?(_: {}): any;
|
|
787
|
+
};
|
|
788
|
+
refs: {};
|
|
789
|
+
rootEl: any;
|
|
790
|
+
};
|
|
791
|
+
|
|
792
|
+
declare function __VLS_template_106(): {
|
|
793
|
+
attrs: Partial<{}>;
|
|
794
|
+
slots: {
|
|
795
|
+
default?(_: {}): any;
|
|
796
|
+
};
|
|
797
|
+
refs: {};
|
|
798
|
+
rootEl: any;
|
|
799
|
+
};
|
|
800
|
+
|
|
801
|
+
declare function __VLS_template_107(): {
|
|
802
|
+
attrs: Partial<{}>;
|
|
803
|
+
slots: {
|
|
804
|
+
default?(_: {}): any;
|
|
805
|
+
};
|
|
806
|
+
refs: {};
|
|
807
|
+
rootEl: any;
|
|
808
|
+
};
|
|
809
|
+
|
|
810
|
+
declare function __VLS_template_108(): {
|
|
811
|
+
attrs: Partial<{}>;
|
|
812
|
+
slots: {
|
|
813
|
+
default?(_: {}): any;
|
|
814
|
+
};
|
|
815
|
+
refs: {};
|
|
816
|
+
rootEl: any;
|
|
817
|
+
};
|
|
818
|
+
|
|
819
|
+
declare function __VLS_template_109(): {
|
|
820
|
+
attrs: Partial<{}>;
|
|
821
|
+
slots: {
|
|
822
|
+
default?(_: {}): any;
|
|
823
|
+
};
|
|
824
|
+
refs: {};
|
|
825
|
+
rootEl: any;
|
|
826
|
+
};
|
|
827
|
+
|
|
587
828
|
declare function __VLS_template_11(): {
|
|
588
829
|
attrs: Partial<{}>;
|
|
589
830
|
slots: {
|
|
@@ -593,6 +834,42 @@ declare function __VLS_template_11(): {
|
|
|
593
834
|
rootEl: any;
|
|
594
835
|
};
|
|
595
836
|
|
|
837
|
+
declare function __VLS_template_110(): {
|
|
838
|
+
attrs: Partial<{}>;
|
|
839
|
+
slots: {
|
|
840
|
+
default?(_: {}): any;
|
|
841
|
+
};
|
|
842
|
+
refs: {};
|
|
843
|
+
rootEl: any;
|
|
844
|
+
};
|
|
845
|
+
|
|
846
|
+
declare function __VLS_template_111(): {
|
|
847
|
+
attrs: Partial<{}>;
|
|
848
|
+
slots: {
|
|
849
|
+
default?(_: {}): any;
|
|
850
|
+
};
|
|
851
|
+
refs: {};
|
|
852
|
+
rootEl: any;
|
|
853
|
+
};
|
|
854
|
+
|
|
855
|
+
declare function __VLS_template_112(): {
|
|
856
|
+
attrs: Partial<{}>;
|
|
857
|
+
slots: {
|
|
858
|
+
default?(_: {}): any;
|
|
859
|
+
};
|
|
860
|
+
refs: {};
|
|
861
|
+
rootEl: any;
|
|
862
|
+
};
|
|
863
|
+
|
|
864
|
+
declare function __VLS_template_113(): {
|
|
865
|
+
attrs: Partial<{}>;
|
|
866
|
+
slots: {
|
|
867
|
+
default?(_: {}): any;
|
|
868
|
+
};
|
|
869
|
+
refs: {};
|
|
870
|
+
rootEl: any;
|
|
871
|
+
};
|
|
872
|
+
|
|
596
873
|
declare function __VLS_template_12(): {
|
|
597
874
|
attrs: Partial<{}>;
|
|
598
875
|
slots: {
|
|
@@ -1008,27 +1285,27 @@ declare function __VLS_template_52(): {
|
|
|
1008
1285
|
default?(_: {}): any;
|
|
1009
1286
|
};
|
|
1010
1287
|
refs: {};
|
|
1011
|
-
rootEl:
|
|
1288
|
+
rootEl: HTMLDivElement;
|
|
1012
1289
|
};
|
|
1013
1290
|
|
|
1014
|
-
declare function __VLS_template_53():
|
|
1015
|
-
|
|
1016
|
-
declare function __VLS_template_54(): {
|
|
1291
|
+
declare function __VLS_template_53(): {
|
|
1017
1292
|
attrs: Partial<{}>;
|
|
1018
1293
|
slots: {
|
|
1019
1294
|
default?(_: {}): any;
|
|
1020
1295
|
};
|
|
1021
1296
|
refs: {};
|
|
1022
|
-
rootEl:
|
|
1297
|
+
rootEl: HTMLParagraphElement;
|
|
1023
1298
|
};
|
|
1024
1299
|
|
|
1300
|
+
declare function __VLS_template_54(): any;
|
|
1301
|
+
|
|
1025
1302
|
declare function __VLS_template_55(): {
|
|
1026
1303
|
attrs: Partial<{}>;
|
|
1027
1304
|
slots: {
|
|
1028
1305
|
default?(_: {}): any;
|
|
1029
1306
|
};
|
|
1030
1307
|
refs: {};
|
|
1031
|
-
rootEl:
|
|
1308
|
+
rootEl: HTMLDivElement;
|
|
1032
1309
|
};
|
|
1033
1310
|
|
|
1034
1311
|
declare function __VLS_template_56(): {
|
|
@@ -1037,7 +1314,7 @@ declare function __VLS_template_56(): {
|
|
|
1037
1314
|
default?(_: {}): any;
|
|
1038
1315
|
};
|
|
1039
1316
|
refs: {};
|
|
1040
|
-
rootEl:
|
|
1317
|
+
rootEl: any;
|
|
1041
1318
|
};
|
|
1042
1319
|
|
|
1043
1320
|
declare function __VLS_template_57(): {
|
|
@@ -1046,7 +1323,7 @@ declare function __VLS_template_57(): {
|
|
|
1046
1323
|
default?(_: {}): any;
|
|
1047
1324
|
};
|
|
1048
1325
|
refs: {};
|
|
1049
|
-
rootEl:
|
|
1326
|
+
rootEl: HTMLLegendElement;
|
|
1050
1327
|
};
|
|
1051
1328
|
|
|
1052
1329
|
declare function __VLS_template_58(): {
|
|
@@ -1055,7 +1332,7 @@ declare function __VLS_template_58(): {
|
|
|
1055
1332
|
default?(_: {}): any;
|
|
1056
1333
|
};
|
|
1057
1334
|
refs: {};
|
|
1058
|
-
rootEl:
|
|
1335
|
+
rootEl: HTMLDivElement;
|
|
1059
1336
|
};
|
|
1060
1337
|
|
|
1061
1338
|
declare function __VLS_template_59(): {
|
|
@@ -1064,7 +1341,7 @@ declare function __VLS_template_59(): {
|
|
|
1064
1341
|
default?(_: {}): any;
|
|
1065
1342
|
};
|
|
1066
1343
|
refs: {};
|
|
1067
|
-
rootEl:
|
|
1344
|
+
rootEl: HTMLFieldSetElement;
|
|
1068
1345
|
};
|
|
1069
1346
|
|
|
1070
1347
|
declare function __VLS_template_6(): {
|
|
@@ -1082,7 +1359,7 @@ declare function __VLS_template_60(): {
|
|
|
1082
1359
|
default?(_: {}): any;
|
|
1083
1360
|
};
|
|
1084
1361
|
refs: {};
|
|
1085
|
-
rootEl:
|
|
1362
|
+
rootEl: HTMLDivElement;
|
|
1086
1363
|
};
|
|
1087
1364
|
|
|
1088
1365
|
declare function __VLS_template_61(): {
|
|
@@ -1109,7 +1386,7 @@ declare function __VLS_template_63(): {
|
|
|
1109
1386
|
default?(_: {}): any;
|
|
1110
1387
|
};
|
|
1111
1388
|
refs: {};
|
|
1112
|
-
rootEl:
|
|
1389
|
+
rootEl: HTMLDivElement;
|
|
1113
1390
|
};
|
|
1114
1391
|
|
|
1115
1392
|
declare function __VLS_template_64(): {
|
|
@@ -1118,7 +1395,7 @@ declare function __VLS_template_64(): {
|
|
|
1118
1395
|
default?(_: {}): any;
|
|
1119
1396
|
};
|
|
1120
1397
|
refs: {};
|
|
1121
|
-
rootEl:
|
|
1398
|
+
rootEl: HTMLDivElement;
|
|
1122
1399
|
};
|
|
1123
1400
|
|
|
1124
1401
|
declare function __VLS_template_65(): {
|
|
@@ -1127,7 +1404,7 @@ declare function __VLS_template_65(): {
|
|
|
1127
1404
|
default?(_: {}): any;
|
|
1128
1405
|
};
|
|
1129
1406
|
refs: {};
|
|
1130
|
-
rootEl:
|
|
1407
|
+
rootEl: HTMLDivElement;
|
|
1131
1408
|
};
|
|
1132
1409
|
|
|
1133
1410
|
declare function __VLS_template_66(): {
|
|
@@ -1136,7 +1413,7 @@ declare function __VLS_template_66(): {
|
|
|
1136
1413
|
default?(_: {}): any;
|
|
1137
1414
|
};
|
|
1138
1415
|
refs: {};
|
|
1139
|
-
rootEl:
|
|
1416
|
+
rootEl: HTMLParagraphElement;
|
|
1140
1417
|
};
|
|
1141
1418
|
|
|
1142
1419
|
declare function __VLS_template_67(): {
|
|
@@ -1145,7 +1422,7 @@ declare function __VLS_template_67(): {
|
|
|
1145
1422
|
default?(_: {}): any;
|
|
1146
1423
|
};
|
|
1147
1424
|
refs: {};
|
|
1148
|
-
rootEl:
|
|
1425
|
+
rootEl: HTMLDivElement;
|
|
1149
1426
|
};
|
|
1150
1427
|
|
|
1151
1428
|
declare function __VLS_template_68(): {
|
|
@@ -1154,7 +1431,7 @@ declare function __VLS_template_68(): {
|
|
|
1154
1431
|
default?(_: {}): any;
|
|
1155
1432
|
};
|
|
1156
1433
|
refs: {};
|
|
1157
|
-
rootEl:
|
|
1434
|
+
rootEl: HTMLDivElement;
|
|
1158
1435
|
};
|
|
1159
1436
|
|
|
1160
1437
|
declare function __VLS_template_69(): {
|
|
@@ -1163,7 +1440,7 @@ declare function __VLS_template_69(): {
|
|
|
1163
1440
|
default?(_: {}): any;
|
|
1164
1441
|
};
|
|
1165
1442
|
refs: {};
|
|
1166
|
-
rootEl:
|
|
1443
|
+
rootEl: HTMLDivElement;
|
|
1167
1444
|
};
|
|
1168
1445
|
|
|
1169
1446
|
declare function __VLS_template_7(): {
|
|
@@ -1181,7 +1458,7 @@ declare function __VLS_template_70(): {
|
|
|
1181
1458
|
default?(_: {}): any;
|
|
1182
1459
|
};
|
|
1183
1460
|
refs: {};
|
|
1184
|
-
rootEl:
|
|
1461
|
+
rootEl: HTMLDivElement;
|
|
1185
1462
|
};
|
|
1186
1463
|
|
|
1187
1464
|
declare function __VLS_template_71(): {
|
|
@@ -1190,7 +1467,7 @@ declare function __VLS_template_71(): {
|
|
|
1190
1467
|
default?(_: {}): any;
|
|
1191
1468
|
};
|
|
1192
1469
|
refs: {};
|
|
1193
|
-
rootEl:
|
|
1470
|
+
rootEl: HTMLElement;
|
|
1194
1471
|
};
|
|
1195
1472
|
|
|
1196
1473
|
declare function __VLS_template_72(): {
|
|
@@ -1199,7 +1476,7 @@ declare function __VLS_template_72(): {
|
|
|
1199
1476
|
default?(_: {}): any;
|
|
1200
1477
|
};
|
|
1201
1478
|
refs: {};
|
|
1202
|
-
rootEl:
|
|
1479
|
+
rootEl: HTMLSpanElement;
|
|
1203
1480
|
};
|
|
1204
1481
|
|
|
1205
1482
|
declare function __VLS_template_73(): {
|
|
@@ -1208,7 +1485,7 @@ declare function __VLS_template_73(): {
|
|
|
1208
1485
|
default?(_: {}): any;
|
|
1209
1486
|
};
|
|
1210
1487
|
refs: {};
|
|
1211
|
-
rootEl:
|
|
1488
|
+
rootEl: any;
|
|
1212
1489
|
};
|
|
1213
1490
|
|
|
1214
1491
|
declare function __VLS_template_74(): {
|
|
@@ -1217,7 +1494,7 @@ declare function __VLS_template_74(): {
|
|
|
1217
1494
|
default?(_: {}): any;
|
|
1218
1495
|
};
|
|
1219
1496
|
refs: {};
|
|
1220
|
-
rootEl:
|
|
1497
|
+
rootEl: any;
|
|
1221
1498
|
};
|
|
1222
1499
|
|
|
1223
1500
|
declare function __VLS_template_75(): {
|
|
@@ -1226,7 +1503,7 @@ declare function __VLS_template_75(): {
|
|
|
1226
1503
|
default?(_: {}): any;
|
|
1227
1504
|
};
|
|
1228
1505
|
refs: {};
|
|
1229
|
-
rootEl:
|
|
1506
|
+
rootEl: any;
|
|
1230
1507
|
};
|
|
1231
1508
|
|
|
1232
1509
|
declare function __VLS_template_76(): {
|
|
@@ -1235,7 +1512,7 @@ declare function __VLS_template_76(): {
|
|
|
1235
1512
|
default?(_: {}): any;
|
|
1236
1513
|
};
|
|
1237
1514
|
refs: {};
|
|
1238
|
-
rootEl:
|
|
1515
|
+
rootEl: any;
|
|
1239
1516
|
};
|
|
1240
1517
|
|
|
1241
1518
|
declare function __VLS_template_77(): {
|
|
@@ -1244,7 +1521,7 @@ declare function __VLS_template_77(): {
|
|
|
1244
1521
|
default?(_: {}): any;
|
|
1245
1522
|
};
|
|
1246
1523
|
refs: {};
|
|
1247
|
-
rootEl:
|
|
1524
|
+
rootEl: any;
|
|
1248
1525
|
};
|
|
1249
1526
|
|
|
1250
1527
|
declare function __VLS_template_78(): {
|
|
@@ -1253,7 +1530,7 @@ declare function __VLS_template_78(): {
|
|
|
1253
1530
|
default?(_: {}): any;
|
|
1254
1531
|
};
|
|
1255
1532
|
refs: {};
|
|
1256
|
-
rootEl:
|
|
1533
|
+
rootEl: any;
|
|
1257
1534
|
};
|
|
1258
1535
|
|
|
1259
1536
|
declare function __VLS_template_79(): {
|
|
@@ -1262,7 +1539,7 @@ declare function __VLS_template_79(): {
|
|
|
1262
1539
|
default?(_: {}): any;
|
|
1263
1540
|
};
|
|
1264
1541
|
refs: {};
|
|
1265
|
-
rootEl:
|
|
1542
|
+
rootEl: any;
|
|
1266
1543
|
};
|
|
1267
1544
|
|
|
1268
1545
|
declare function __VLS_template_8(): {
|
|
@@ -1280,7 +1557,7 @@ declare function __VLS_template_80(): {
|
|
|
1280
1557
|
default?(_: {}): any;
|
|
1281
1558
|
};
|
|
1282
1559
|
refs: {};
|
|
1283
|
-
rootEl:
|
|
1560
|
+
rootEl: any;
|
|
1284
1561
|
};
|
|
1285
1562
|
|
|
1286
1563
|
declare function __VLS_template_81(): {
|
|
@@ -1337,95 +1614,166 @@ declare function __VLS_template_86(): {
|
|
|
1337
1614
|
rootEl: any;
|
|
1338
1615
|
};
|
|
1339
1616
|
|
|
1340
|
-
declare function __VLS_template_87(): {
|
|
1617
|
+
declare function __VLS_template_87(): {
|
|
1618
|
+
attrs: Partial<{}>;
|
|
1619
|
+
slots: {
|
|
1620
|
+
default?(_: {}): any;
|
|
1621
|
+
};
|
|
1622
|
+
refs: {};
|
|
1623
|
+
rootEl: any;
|
|
1624
|
+
};
|
|
1625
|
+
|
|
1626
|
+
declare function __VLS_template_88(): {
|
|
1627
|
+
attrs: Partial<{}>;
|
|
1628
|
+
slots: {
|
|
1629
|
+
default?(_: {}): any;
|
|
1630
|
+
};
|
|
1631
|
+
refs: {};
|
|
1632
|
+
rootEl: any;
|
|
1633
|
+
};
|
|
1634
|
+
|
|
1635
|
+
declare function __VLS_template_89(): {
|
|
1636
|
+
attrs: Partial<{}>;
|
|
1637
|
+
slots: {
|
|
1638
|
+
default?(_: {}): any;
|
|
1639
|
+
};
|
|
1640
|
+
refs: {};
|
|
1641
|
+
rootEl: any;
|
|
1642
|
+
};
|
|
1643
|
+
|
|
1644
|
+
declare function __VLS_template_9(): {
|
|
1645
|
+
attrs: Partial<{}>;
|
|
1646
|
+
slots: {
|
|
1647
|
+
default?(_: {}): any;
|
|
1648
|
+
};
|
|
1649
|
+
refs: {};
|
|
1650
|
+
rootEl: any;
|
|
1651
|
+
};
|
|
1652
|
+
|
|
1653
|
+
declare function __VLS_template_90(): {
|
|
1654
|
+
attrs: Partial<{}>;
|
|
1655
|
+
slots: {
|
|
1656
|
+
default?(_: {}): any;
|
|
1657
|
+
};
|
|
1658
|
+
refs: {};
|
|
1659
|
+
rootEl: any;
|
|
1660
|
+
};
|
|
1661
|
+
|
|
1662
|
+
declare function __VLS_template_91(): {
|
|
1341
1663
|
attrs: Partial<{}>;
|
|
1342
1664
|
slots: {
|
|
1343
|
-
default?(_: {
|
|
1344
|
-
modelValue: string | number | undefined;
|
|
1345
|
-
}): any;
|
|
1665
|
+
default?(_: {}): any;
|
|
1346
1666
|
};
|
|
1347
1667
|
refs: {};
|
|
1348
|
-
rootEl:
|
|
1668
|
+
rootEl: HTMLDivElement;
|
|
1349
1669
|
};
|
|
1350
1670
|
|
|
1351
|
-
declare function
|
|
1671
|
+
declare function __VLS_template_92(): {
|
|
1352
1672
|
attrs: Partial<{}>;
|
|
1353
1673
|
slots: {
|
|
1354
1674
|
default?(_: {}): any;
|
|
1355
1675
|
};
|
|
1356
1676
|
refs: {};
|
|
1357
|
-
rootEl:
|
|
1677
|
+
rootEl: HTMLTableSectionElement;
|
|
1358
1678
|
};
|
|
1359
1679
|
|
|
1360
|
-
declare function
|
|
1680
|
+
declare function __VLS_template_93(): {
|
|
1361
1681
|
attrs: Partial<{}>;
|
|
1362
1682
|
slots: {
|
|
1363
1683
|
default?(_: {}): any;
|
|
1364
1684
|
};
|
|
1365
1685
|
refs: {};
|
|
1366
|
-
rootEl:
|
|
1686
|
+
rootEl: HTMLTableSectionElement;
|
|
1367
1687
|
};
|
|
1368
1688
|
|
|
1369
|
-
declare function
|
|
1689
|
+
declare function __VLS_template_94(): {
|
|
1370
1690
|
attrs: Partial<{}>;
|
|
1371
1691
|
slots: {
|
|
1372
1692
|
default?(_: {}): any;
|
|
1373
1693
|
};
|
|
1374
1694
|
refs: {};
|
|
1375
|
-
rootEl:
|
|
1695
|
+
rootEl: HTMLTableSectionElement;
|
|
1376
1696
|
};
|
|
1377
1697
|
|
|
1378
|
-
declare function
|
|
1698
|
+
declare function __VLS_template_95(): {
|
|
1379
1699
|
attrs: Partial<{}>;
|
|
1380
1700
|
slots: {
|
|
1381
1701
|
default?(_: {}): any;
|
|
1382
1702
|
};
|
|
1383
1703
|
refs: {};
|
|
1384
|
-
rootEl:
|
|
1704
|
+
rootEl: HTMLTableRowElement;
|
|
1385
1705
|
};
|
|
1386
1706
|
|
|
1387
|
-
declare function
|
|
1707
|
+
declare function __VLS_template_96(): {
|
|
1388
1708
|
attrs: Partial<{}>;
|
|
1389
1709
|
slots: {
|
|
1390
1710
|
default?(_: {}): any;
|
|
1391
1711
|
};
|
|
1392
1712
|
refs: {};
|
|
1393
|
-
rootEl:
|
|
1713
|
+
rootEl: HTMLTableCellElement;
|
|
1394
1714
|
};
|
|
1395
1715
|
|
|
1396
|
-
declare function
|
|
1716
|
+
declare function __VLS_template_97(): {
|
|
1397
1717
|
attrs: Partial<{}>;
|
|
1398
1718
|
slots: {
|
|
1399
1719
|
default?(_: {}): any;
|
|
1400
1720
|
};
|
|
1401
1721
|
refs: {};
|
|
1402
|
-
rootEl:
|
|
1722
|
+
rootEl: HTMLTableCellElement;
|
|
1403
1723
|
};
|
|
1404
1724
|
|
|
1405
|
-
declare function
|
|
1725
|
+
declare function __VLS_template_98(): {
|
|
1406
1726
|
attrs: Partial<{}>;
|
|
1407
1727
|
slots: {
|
|
1408
1728
|
default?(_: {}): any;
|
|
1409
1729
|
};
|
|
1410
1730
|
refs: {};
|
|
1411
|
-
rootEl:
|
|
1731
|
+
rootEl: HTMLTableCaptionElement;
|
|
1412
1732
|
};
|
|
1413
1733
|
|
|
1414
|
-
declare function
|
|
1734
|
+
declare function __VLS_template_99(): {
|
|
1415
1735
|
attrs: Partial<{}>;
|
|
1416
1736
|
slots: {
|
|
1417
1737
|
default?(_: {}): any;
|
|
1418
1738
|
};
|
|
1419
1739
|
refs: {};
|
|
1420
|
-
rootEl:
|
|
1740
|
+
rootEl: HTMLTableRowElement;
|
|
1421
1741
|
};
|
|
1422
1742
|
|
|
1423
1743
|
declare type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
1424
1744
|
|
|
1425
1745
|
declare type __VLS_TemplateResult_10 = ReturnType<typeof __VLS_template_10>;
|
|
1426
1746
|
|
|
1747
|
+
declare type __VLS_TemplateResult_100 = ReturnType<typeof __VLS_template_100>;
|
|
1748
|
+
|
|
1749
|
+
declare type __VLS_TemplateResult_101 = ReturnType<typeof __VLS_template_101>;
|
|
1750
|
+
|
|
1751
|
+
declare type __VLS_TemplateResult_102 = ReturnType<typeof __VLS_template_102>;
|
|
1752
|
+
|
|
1753
|
+
declare type __VLS_TemplateResult_103 = ReturnType<typeof __VLS_template_103>;
|
|
1754
|
+
|
|
1755
|
+
declare type __VLS_TemplateResult_104 = ReturnType<typeof __VLS_template_104>;
|
|
1756
|
+
|
|
1757
|
+
declare type __VLS_TemplateResult_105 = ReturnType<typeof __VLS_template_105>;
|
|
1758
|
+
|
|
1759
|
+
declare type __VLS_TemplateResult_106 = ReturnType<typeof __VLS_template_106>;
|
|
1760
|
+
|
|
1761
|
+
declare type __VLS_TemplateResult_107 = ReturnType<typeof __VLS_template_107>;
|
|
1762
|
+
|
|
1763
|
+
declare type __VLS_TemplateResult_108 = ReturnType<typeof __VLS_template_108>;
|
|
1764
|
+
|
|
1765
|
+
declare type __VLS_TemplateResult_109 = ReturnType<typeof __VLS_template_109>;
|
|
1766
|
+
|
|
1427
1767
|
declare type __VLS_TemplateResult_11 = ReturnType<typeof __VLS_template_11>;
|
|
1428
1768
|
|
|
1769
|
+
declare type __VLS_TemplateResult_110 = ReturnType<typeof __VLS_template_110>;
|
|
1770
|
+
|
|
1771
|
+
declare type __VLS_TemplateResult_111 = ReturnType<typeof __VLS_template_111>;
|
|
1772
|
+
|
|
1773
|
+
declare type __VLS_TemplateResult_112 = ReturnType<typeof __VLS_template_112>;
|
|
1774
|
+
|
|
1775
|
+
declare type __VLS_TemplateResult_113 = ReturnType<typeof __VLS_template_113>;
|
|
1776
|
+
|
|
1429
1777
|
declare type __VLS_TemplateResult_12 = ReturnType<typeof __VLS_template_12>;
|
|
1430
1778
|
|
|
1431
1779
|
declare type __VLS_TemplateResult_13 = ReturnType<typeof __VLS_template_13>;
|
|
@@ -1608,6 +1956,16 @@ declare type __VLS_TemplateResult_93 = ReturnType<typeof __VLS_template_93>;
|
|
|
1608
1956
|
|
|
1609
1957
|
declare type __VLS_TemplateResult_94 = ReturnType<typeof __VLS_template_94>;
|
|
1610
1958
|
|
|
1959
|
+
declare type __VLS_TemplateResult_95 = ReturnType<typeof __VLS_template_95>;
|
|
1960
|
+
|
|
1961
|
+
declare type __VLS_TemplateResult_96 = ReturnType<typeof __VLS_template_96>;
|
|
1962
|
+
|
|
1963
|
+
declare type __VLS_TemplateResult_97 = ReturnType<typeof __VLS_template_97>;
|
|
1964
|
+
|
|
1965
|
+
declare type __VLS_TemplateResult_98 = ReturnType<typeof __VLS_template_98>;
|
|
1966
|
+
|
|
1967
|
+
declare type __VLS_TemplateResult_99 = ReturnType<typeof __VLS_template_99>;
|
|
1968
|
+
|
|
1611
1969
|
declare type __VLS_WithTemplateSlots<T, S> = T & {
|
|
1612
1970
|
new (): {
|
|
1613
1971
|
$slots: S;
|
|
@@ -1620,12 +1978,96 @@ declare type __VLS_WithTemplateSlots_10<T, S> = T & {
|
|
|
1620
1978
|
};
|
|
1621
1979
|
};
|
|
1622
1980
|
|
|
1981
|
+
declare type __VLS_WithTemplateSlots_100<T, S> = T & {
|
|
1982
|
+
new (): {
|
|
1983
|
+
$slots: S;
|
|
1984
|
+
};
|
|
1985
|
+
};
|
|
1986
|
+
|
|
1987
|
+
declare type __VLS_WithTemplateSlots_101<T, S> = T & {
|
|
1988
|
+
new (): {
|
|
1989
|
+
$slots: S;
|
|
1990
|
+
};
|
|
1991
|
+
};
|
|
1992
|
+
|
|
1993
|
+
declare type __VLS_WithTemplateSlots_102<T, S> = T & {
|
|
1994
|
+
new (): {
|
|
1995
|
+
$slots: S;
|
|
1996
|
+
};
|
|
1997
|
+
};
|
|
1998
|
+
|
|
1999
|
+
declare type __VLS_WithTemplateSlots_103<T, S> = T & {
|
|
2000
|
+
new (): {
|
|
2001
|
+
$slots: S;
|
|
2002
|
+
};
|
|
2003
|
+
};
|
|
2004
|
+
|
|
2005
|
+
declare type __VLS_WithTemplateSlots_104<T, S> = T & {
|
|
2006
|
+
new (): {
|
|
2007
|
+
$slots: S;
|
|
2008
|
+
};
|
|
2009
|
+
};
|
|
2010
|
+
|
|
2011
|
+
declare type __VLS_WithTemplateSlots_105<T, S> = T & {
|
|
2012
|
+
new (): {
|
|
2013
|
+
$slots: S;
|
|
2014
|
+
};
|
|
2015
|
+
};
|
|
2016
|
+
|
|
2017
|
+
declare type __VLS_WithTemplateSlots_106<T, S> = T & {
|
|
2018
|
+
new (): {
|
|
2019
|
+
$slots: S;
|
|
2020
|
+
};
|
|
2021
|
+
};
|
|
2022
|
+
|
|
2023
|
+
declare type __VLS_WithTemplateSlots_107<T, S> = T & {
|
|
2024
|
+
new (): {
|
|
2025
|
+
$slots: S;
|
|
2026
|
+
};
|
|
2027
|
+
};
|
|
2028
|
+
|
|
2029
|
+
declare type __VLS_WithTemplateSlots_108<T, S> = T & {
|
|
2030
|
+
new (): {
|
|
2031
|
+
$slots: S;
|
|
2032
|
+
};
|
|
2033
|
+
};
|
|
2034
|
+
|
|
2035
|
+
declare type __VLS_WithTemplateSlots_109<T, S> = T & {
|
|
2036
|
+
new (): {
|
|
2037
|
+
$slots: S;
|
|
2038
|
+
};
|
|
2039
|
+
};
|
|
2040
|
+
|
|
1623
2041
|
declare type __VLS_WithTemplateSlots_11<T, S> = T & {
|
|
1624
2042
|
new (): {
|
|
1625
2043
|
$slots: S;
|
|
1626
2044
|
};
|
|
1627
2045
|
};
|
|
1628
2046
|
|
|
2047
|
+
declare type __VLS_WithTemplateSlots_110<T, S> = T & {
|
|
2048
|
+
new (): {
|
|
2049
|
+
$slots: S;
|
|
2050
|
+
};
|
|
2051
|
+
};
|
|
2052
|
+
|
|
2053
|
+
declare type __VLS_WithTemplateSlots_111<T, S> = T & {
|
|
2054
|
+
new (): {
|
|
2055
|
+
$slots: S;
|
|
2056
|
+
};
|
|
2057
|
+
};
|
|
2058
|
+
|
|
2059
|
+
declare type __VLS_WithTemplateSlots_112<T, S> = T & {
|
|
2060
|
+
new (): {
|
|
2061
|
+
$slots: S;
|
|
2062
|
+
};
|
|
2063
|
+
};
|
|
2064
|
+
|
|
2065
|
+
declare type __VLS_WithTemplateSlots_113<T, S> = T & {
|
|
2066
|
+
new (): {
|
|
2067
|
+
$slots: S;
|
|
2068
|
+
};
|
|
2069
|
+
};
|
|
2070
|
+
|
|
1629
2071
|
declare type __VLS_WithTemplateSlots_12<T, S> = T & {
|
|
1630
2072
|
new (): {
|
|
1631
2073
|
$slots: S;
|
|
@@ -2172,14 +2614,35 @@ declare type __VLS_WithTemplateSlots_94<T, S> = T & {
|
|
|
2172
2614
|
};
|
|
2173
2615
|
};
|
|
2174
2616
|
|
|
2175
|
-
|
|
2617
|
+
declare type __VLS_WithTemplateSlots_95<T, S> = T & {
|
|
2618
|
+
new (): {
|
|
2619
|
+
$slots: S;
|
|
2620
|
+
};
|
|
2621
|
+
};
|
|
2622
|
+
|
|
2623
|
+
declare type __VLS_WithTemplateSlots_96<T, S> = T & {
|
|
2624
|
+
new (): {
|
|
2625
|
+
$slots: S;
|
|
2626
|
+
};
|
|
2627
|
+
};
|
|
2628
|
+
|
|
2629
|
+
declare type __VLS_WithTemplateSlots_97<T, S> = T & {
|
|
2630
|
+
new (): {
|
|
2631
|
+
$slots: S;
|
|
2632
|
+
};
|
|
2633
|
+
};
|
|
2176
2634
|
|
|
2177
|
-
|
|
2635
|
+
declare type __VLS_WithTemplateSlots_98<T, S> = T & {
|
|
2636
|
+
new (): {
|
|
2637
|
+
$slots: S;
|
|
2638
|
+
};
|
|
2639
|
+
};
|
|
2178
2640
|
|
|
2179
|
-
|
|
2180
|
-
|
|
2181
|
-
|
|
2182
|
-
}
|
|
2641
|
+
declare type __VLS_WithTemplateSlots_99<T, S> = T & {
|
|
2642
|
+
new (): {
|
|
2643
|
+
$slots: S;
|
|
2644
|
+
};
|
|
2645
|
+
};
|
|
2183
2646
|
|
|
2184
2647
|
export { CalendarDate }
|
|
2185
2648
|
|
|
@@ -2256,20 +2719,6 @@ export declare interface PaginationLabels {
|
|
|
2256
2719
|
rowsSelected?: (selected: number, total: number) => string;
|
|
2257
2720
|
}
|
|
2258
2721
|
|
|
2259
|
-
declare interface Props extends PrimitiveProps {
|
|
2260
|
-
variant?: ButtonVariants['variant'];
|
|
2261
|
-
size?: ButtonVariants['size'];
|
|
2262
|
-
class?: HTMLAttributes['class'];
|
|
2263
|
-
}
|
|
2264
|
-
|
|
2265
|
-
export declare const Tabs: __VLS_WithTemplateSlots_87<typeof __VLS_component_87, __VLS_TemplateResult_87["slots"]>;
|
|
2266
|
-
|
|
2267
|
-
export declare const TabsContent: __VLS_WithTemplateSlots_88<typeof __VLS_component_88, __VLS_TemplateResult_88["slots"]>;
|
|
2268
|
-
|
|
2269
|
-
export declare const TabsList: __VLS_WithTemplateSlots_89<typeof __VLS_component_89, __VLS_TemplateResult_89["slots"]>;
|
|
2270
|
-
|
|
2271
|
-
export declare const TabsTrigger: __VLS_WithTemplateSlots_90<typeof __VLS_component_90, __VLS_TemplateResult_90["slots"]>;
|
|
2272
|
-
|
|
2273
2722
|
export { today }
|
|
2274
2723
|
|
|
2275
2724
|
/** Labels for UiDataTableToolbar */
|
|
@@ -2282,14 +2731,6 @@ export declare interface ToolbarLabels {
|
|
|
2282
2731
|
filterByColumn?: (column: string) => string;
|
|
2283
2732
|
}
|
|
2284
2733
|
|
|
2285
|
-
export declare const Tooltip: __VLS_WithTemplateSlots_91<typeof __VLS_component_91, __VLS_TemplateResult_91["slots"]>;
|
|
2286
|
-
|
|
2287
|
-
export declare const TooltipContent: __VLS_WithTemplateSlots_92<typeof __VLS_component_92, __VLS_TemplateResult_92["slots"]>;
|
|
2288
|
-
|
|
2289
|
-
export declare const TooltipProvider: __VLS_WithTemplateSlots_93<typeof __VLS_component_93, __VLS_TemplateResult_93["slots"]>;
|
|
2290
|
-
|
|
2291
|
-
export declare const TooltipTrigger: __VLS_WithTemplateSlots_94<typeof __VLS_component_94, __VLS_TemplateResult_94["slots"]>;
|
|
2292
|
-
|
|
2293
2734
|
export declare const UiAccordion: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
2294
2735
|
|
|
2295
2736
|
export declare const UiAccordionContent: __VLS_WithTemplateSlots_4<typeof __VLS_component_4, __VLS_TemplateResult_4["slots"]>;
|
|
@@ -2353,7 +2794,6 @@ export declare type UiAccordionOrientation = 'horizontal' | 'vertical';
|
|
|
2353
2794
|
/**
|
|
2354
2795
|
* Collapsible sections for organizing content. Use for FAQs,
|
|
2355
2796
|
* settings panels, or any content that benefits from show/hide.
|
|
2356
|
-
*
|
|
2357
2797
|
* @category Navigation
|
|
2358
2798
|
* @useCases FAQ section, settings panel, collapsible content, expandable list
|
|
2359
2799
|
* @keywords accordion, collapse, expand, faq, panel, section, toggle
|
|
@@ -2402,20 +2842,59 @@ export declare const UiAlertDialog: __VLS_WithTemplateSlots_8<typeof __VLS_compo
|
|
|
2402
2842
|
|
|
2403
2843
|
export declare const UiAlertDialogAction: __VLS_WithTemplateSlots_9<typeof __VLS_component_9, __VLS_TemplateResult_9["slots"]>;
|
|
2404
2844
|
|
|
2845
|
+
/**
|
|
2846
|
+
* Props for UiAlertDialogAction component.
|
|
2847
|
+
*/
|
|
2848
|
+
export declare type UiAlertDialogActionProps = UiAlertSubComponentCommonProps & {};
|
|
2849
|
+
|
|
2405
2850
|
export declare const UiAlertDialogCancel: __VLS_WithTemplateSlots_10<typeof __VLS_component_10, __VLS_TemplateResult_10["slots"]>;
|
|
2406
2851
|
|
|
2852
|
+
/**
|
|
2853
|
+
* Props for UiAlertDialogCancel component.
|
|
2854
|
+
*/
|
|
2855
|
+
export declare type UiAlertDialogCancelProps = UiAlertSubComponentCommonProps & {};
|
|
2856
|
+
|
|
2407
2857
|
export declare const UiAlertDialogContent: __VLS_WithTemplateSlots_11<typeof __VLS_component_11, __VLS_TemplateResult_11["slots"]>;
|
|
2408
2858
|
|
|
2859
|
+
/**
|
|
2860
|
+
* Emit options inside the UiAlertDialogContent
|
|
2861
|
+
*/
|
|
2862
|
+
export declare type UiAlertDialogContentEmits = {
|
|
2863
|
+
/**
|
|
2864
|
+
* Event handler called when focus moves to the destructive action after opening.
|
|
2865
|
+
*/
|
|
2866
|
+
(e: 'openAutoFocus', event: Event): void;
|
|
2867
|
+
/**
|
|
2868
|
+
* Event handler called when focus moves to the trigger after closing.
|
|
2869
|
+
*/
|
|
2870
|
+
(e: 'closeAutoFocus', event: Event): void;
|
|
2871
|
+
/**
|
|
2872
|
+
* Event handler called when interacted outside the component.
|
|
2873
|
+
*/
|
|
2874
|
+
(e: 'interactOutside', event: Event): void;
|
|
2875
|
+
/**
|
|
2876
|
+
* Event handler called when focus goes outside the component.
|
|
2877
|
+
*/
|
|
2878
|
+
(e: 'focusOutside', event: Event): void;
|
|
2879
|
+
/**
|
|
2880
|
+
* Event handler called when pointer down the component.
|
|
2881
|
+
*/
|
|
2882
|
+
(e: 'pointerDownOutside', event: Event): void;
|
|
2883
|
+
/**
|
|
2884
|
+
* Event handler called when the escape key is down.
|
|
2885
|
+
*/
|
|
2886
|
+
(e: 'escapeKeydown', event: KeyboardEvent): void;
|
|
2887
|
+
};
|
|
2888
|
+
|
|
2409
2889
|
/**
|
|
2410
2890
|
* A modal dialog for confirmations that interrupt the user. Use for
|
|
2411
2891
|
* destructive actions, important decisions, or critical confirmations.
|
|
2412
|
-
*
|
|
2413
2892
|
* @category Overlays
|
|
2414
2893
|
* @useCases confirm delete, destructive action, important confirmation, warning
|
|
2415
2894
|
* @keywords alert, dialog, modal, confirm, warning, destructive, popup
|
|
2416
2895
|
* @related UiPopover
|
|
2417
2896
|
*/
|
|
2418
|
-
declare type UiAlertDialogContentProps = UiAlertSubComponentCommonProps & {
|
|
2897
|
+
export declare type UiAlertDialogContentProps = UiAlertSubComponentCommonProps & {
|
|
2419
2898
|
/**
|
|
2420
2899
|
* Prop to disable pointer events outside the dialog
|
|
2421
2900
|
* @default false
|
|
@@ -2425,36 +2904,58 @@ declare type UiAlertDialogContentProps = UiAlertSubComponentCommonProps & {
|
|
|
2425
2904
|
|
|
2426
2905
|
export declare const UiAlertDialogDescription: __VLS_WithTemplateSlots_12<typeof __VLS_component_12, __VLS_TemplateResult_12["slots"]>;
|
|
2427
2906
|
|
|
2907
|
+
/**
|
|
2908
|
+
* Props for UiAlertDialogDescription component.
|
|
2909
|
+
*/
|
|
2910
|
+
export declare type UiAlertDialogDescriptionProps = UiAlertSubComponentCommonProps & {};
|
|
2911
|
+
|
|
2428
2912
|
export declare const UiAlertDialogFooter: __VLS_WithTemplateSlots_13<typeof __VLS_component_13, __VLS_TemplateResult_13["slots"]>;
|
|
2429
2913
|
|
|
2430
2914
|
export declare const UiAlertDialogHeader: __VLS_WithTemplateSlots_14<typeof __VLS_component_14, __VLS_TemplateResult_14["slots"]>;
|
|
2431
2915
|
|
|
2916
|
+
/**
|
|
2917
|
+
* Props for UiAlertDialogHeader component.
|
|
2918
|
+
*/
|
|
2919
|
+
export declare type UiAlertDialogHeaderProps = UiAlertSubComponentCommonProps & {};
|
|
2920
|
+
|
|
2432
2921
|
export declare const UiAlertDialogTitle: __VLS_WithTemplateSlots_15<typeof __VLS_component_15, __VLS_TemplateResult_15["slots"]>;
|
|
2433
2922
|
|
|
2923
|
+
/**
|
|
2924
|
+
* Props for UiAlertDialogTitle component.
|
|
2925
|
+
*/
|
|
2926
|
+
export declare type UiAlertDialogTitleProps = UiAlertSubComponentCommonProps & {};
|
|
2927
|
+
|
|
2434
2928
|
export declare const UiAlertDialogTrigger: __VLS_WithTemplateSlots_16<typeof __VLS_component_16, __VLS_TemplateResult_16["slots"]>;
|
|
2435
2929
|
|
|
2930
|
+
/**
|
|
2931
|
+
* Props for UiAlertDialogTrigger component.
|
|
2932
|
+
*/
|
|
2933
|
+
export declare type UiAlertDialogTriggerProps = UiAlertSubComponentCommonProps & {};
|
|
2934
|
+
|
|
2436
2935
|
/**
|
|
2437
2936
|
* A highlighted message box for important information. Use for
|
|
2438
2937
|
* success messages, warnings, errors, or informational notices.
|
|
2439
|
-
*
|
|
2440
2938
|
* @category Feedback
|
|
2441
2939
|
* @useCases success message, error notice, warning, info banner, notification
|
|
2442
2940
|
* @keywords alert, message, notice, warning, error, success, info, banner
|
|
2443
2941
|
* @related UiAlertDialog
|
|
2444
2942
|
*/
|
|
2445
2943
|
export declare type UiAlertProps = {
|
|
2944
|
+
/** The visual variant of the alert. */
|
|
2446
2945
|
variant?: UiAlertVariants;
|
|
2447
2946
|
};
|
|
2448
2947
|
|
|
2449
2948
|
/**
|
|
2450
2949
|
* Common prop inside the sub-components.
|
|
2451
2950
|
*/
|
|
2452
|
-
declare type UiAlertSubComponentCommonProps = {
|
|
2951
|
+
export declare type UiAlertSubComponentCommonProps = {
|
|
2952
|
+
/** Render as a child element instead of wrapping. */
|
|
2453
2953
|
asChild?: boolean;
|
|
2454
2954
|
};
|
|
2455
2955
|
|
|
2456
2956
|
export declare const UiAlertTitle: __VLS_WithTemplateSlots_7<typeof __VLS_component_7, __VLS_TemplateResult_7["slots"]>;
|
|
2457
2957
|
|
|
2958
|
+
/** Visual variants for the alert component. */
|
|
2458
2959
|
export declare type UiAlertVariants = 'default' | 'destructive';
|
|
2459
2960
|
|
|
2460
2961
|
export declare const UiAvatar: __VLS_WithTemplateSlots_17<typeof __VLS_component_17, __VLS_TemplateResult_17["slots"]>;
|
|
@@ -2466,16 +2967,19 @@ export declare const UiAvatarImage: DefineComponent<UiAvatarImageProps, {}, {},
|
|
|
2466
2967
|
/**
|
|
2467
2968
|
* A circular image for representing users or entities. Use for
|
|
2468
2969
|
* profile pictures, user lists, or any person/entity representation.
|
|
2469
|
-
*
|
|
2470
2970
|
* @category Data Display
|
|
2471
2971
|
* @useCases profile picture, user avatar, contact image, team member
|
|
2472
2972
|
* @keywords avatar, image, profile, picture, user, photo, initials
|
|
2473
2973
|
* @related UiBadge
|
|
2474
2974
|
*/
|
|
2475
|
-
declare type UiAvatarImageProps = {
|
|
2975
|
+
export declare type UiAvatarImageProps = {
|
|
2976
|
+
/** The source URL of the avatar image. */
|
|
2476
2977
|
src: string;
|
|
2978
|
+
/** Alternative text for the avatar image. */
|
|
2477
2979
|
alt: string;
|
|
2980
|
+
/** The referrer policy for the image request. */
|
|
2478
2981
|
referrerPolicy?: ImgHTMLAttributes['referrerpolicy'];
|
|
2982
|
+
/** The CORS setting for the image request. */
|
|
2479
2983
|
crossOrigin?: ImgHTMLAttributes['crossorigin'];
|
|
2480
2984
|
};
|
|
2481
2985
|
|
|
@@ -2484,7 +2988,6 @@ export declare const UiBadge: __VLS_WithTemplateSlots_19<typeof __VLS_component_
|
|
|
2484
2988
|
/**
|
|
2485
2989
|
* A small label for status, counts, or categories. Use for tags,
|
|
2486
2990
|
* notifications counts, status indicators, or labels.
|
|
2487
|
-
*
|
|
2488
2991
|
* @category Feedback
|
|
2489
2992
|
* @useCases status label, notification count, tag, category, version
|
|
2490
2993
|
* @keywords badge, label, tag, status, count, chip, pill
|
|
@@ -2529,7 +3032,6 @@ export declare const UiButton: __VLS_WithTemplateSlots_20<typeof __VLS_component
|
|
|
2529
3032
|
|
|
2530
3033
|
/**
|
|
2531
3034
|
* A clickable button component for triggering actions and submitting forms.
|
|
2532
|
-
*
|
|
2533
3035
|
* @category Actions
|
|
2534
3036
|
* @useCases form submission, call to action, trigger modal, navigation link, toolbar action
|
|
2535
3037
|
* @keywords button, click, submit, action, cta, interactive
|
|
@@ -2638,7 +3140,6 @@ export declare type UiCalendarLayout = 'month-and-year' | 'month-only' | 'year-o
|
|
|
2638
3140
|
/**
|
|
2639
3141
|
* A date picker calendar for selecting single or multiple dates. Use for
|
|
2640
3142
|
* booking forms, event scheduling, or any date selection needs.
|
|
2641
|
-
*
|
|
2642
3143
|
* @category Form Inputs
|
|
2643
3144
|
* @useCases date selection, booking form, event picker, birthday input, schedule
|
|
2644
3145
|
* @keywords calendar, date, picker, datepicker, schedule, booking, day, month
|
|
@@ -2819,15 +3320,25 @@ export declare const UiCardFooter: __VLS_WithTemplateSlots_26<typeof __VLS_compo
|
|
|
2819
3320
|
|
|
2820
3321
|
export declare const UiCardHeader: __VLS_WithTemplateSlots_27<typeof __VLS_component_27, __VLS_TemplateResult_27["slots"]>;
|
|
2821
3322
|
|
|
3323
|
+
/**
|
|
3324
|
+
* A container for grouping related content with header, body, and footer.
|
|
3325
|
+
* Use for displaying information in a bordered, elevated container.
|
|
3326
|
+
* @category Layout
|
|
3327
|
+
* @useCases content card, product card, profile card, info panel, dashboard widget
|
|
3328
|
+
* @keywords card, container, panel, box, section, tile, widget
|
|
3329
|
+
* @related UiAlert
|
|
3330
|
+
*/
|
|
3331
|
+
export declare type UiCardProps = Record<string, never>;
|
|
3332
|
+
|
|
2822
3333
|
export declare const UiCardTitle: __VLS_WithTemplateSlots_28<typeof __VLS_component_28, __VLS_TemplateResult_28["slots"]>;
|
|
2823
3334
|
|
|
2824
|
-
export declare const UiCheckbox: DefineComponent<
|
|
3335
|
+
export declare const UiCheckbox: DefineComponent<__VLS_PublicProps_3, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
2825
3336
|
"update:modelValue": (value: UiCheckboxModelValue) => any;
|
|
2826
|
-
}, string, PublicProps, Readonly<
|
|
3337
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_3> & Readonly<{
|
|
2827
3338
|
"onUpdate:modelValue"?: ((value: UiCheckboxModelValue) => any) | undefined;
|
|
2828
3339
|
}>, {
|
|
2829
|
-
required: boolean;
|
|
2830
3340
|
disabled: boolean;
|
|
3341
|
+
required: boolean;
|
|
2831
3342
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
2832
3343
|
|
|
2833
3344
|
/**
|
|
@@ -2838,7 +3349,6 @@ declare type UiCheckboxModelValue = boolean | 'indeterminate';
|
|
|
2838
3349
|
/**
|
|
2839
3350
|
* A checkbox input for boolean or indeterminate selections. Use for
|
|
2840
3351
|
* toggling options, accepting terms, or multi-select lists.
|
|
2841
|
-
*
|
|
2842
3352
|
* @category Form Inputs
|
|
2843
3353
|
* @useCases toggle option, accept terms, multi-select, settings, preferences
|
|
2844
3354
|
* @keywords checkbox, check, toggle, boolean, tick, select, form
|
|
@@ -2861,10 +3371,8 @@ export declare type UiCheckboxProps = {
|
|
|
2861
3371
|
required?: boolean;
|
|
2862
3372
|
};
|
|
2863
3373
|
|
|
2864
|
-
export declare const
|
|
2865
|
-
|
|
2866
|
-
export declare const UiDataTable: <TData, TValue>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
2867
|
-
props: __VLS_PrettifyLocal<Pick<Partial<{}> & Omit<{} & VNodeProps & AllowedComponentProps & ComponentCustomProps, never>, never> & UiDataTableProps<TData, TValue> & Partial<{}>> & PublicProps;
|
|
3374
|
+
export declare const UiDataTable: <TData, TValue>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal_2<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
3375
|
+
props: __VLS_PrettifyLocal_2<Pick<Partial<{}> & Omit<{} & VNodeProps & AllowedComponentProps & ComponentCustomProps, never>, never> & UiDataTableProps<TData, TValue> & Partial<{}>> & PublicProps;
|
|
2868
3376
|
expose(exposed: ShallowUnwrapRef< {
|
|
2869
3377
|
table: Table<TData>;
|
|
2870
3378
|
}>): void;
|
|
@@ -2877,20 +3385,76 @@ export declare const UiDataTable: <TData, TValue>(__VLS_props: NonNullable<Await
|
|
|
2877
3385
|
__ctx?: Awaited<typeof __VLS_setup>;
|
|
2878
3386
|
};
|
|
2879
3387
|
|
|
2880
|
-
export
|
|
3388
|
+
export declare const UiDataTableColumnHeader: <TData, TValue>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal_3<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
3389
|
+
props: __VLS_PrettifyLocal_3<Pick<Partial<{}> & Omit<{} & VNodeProps & AllowedComponentProps & ComponentCustomProps, never>, never> & UiDataTableColumnHeaderProps<TData, TValue> & Partial<{}>> & PublicProps;
|
|
3390
|
+
expose(exposed: ShallowUnwrapRef< {}>): void;
|
|
3391
|
+
attrs: any;
|
|
3392
|
+
slots: {};
|
|
3393
|
+
emit: {};
|
|
3394
|
+
}>) => VNode & {
|
|
3395
|
+
__ctx?: Awaited<typeof __VLS_setup>;
|
|
3396
|
+
};
|
|
3397
|
+
|
|
3398
|
+
/**
|
|
3399
|
+
* Props for the UiDataTableColumnHeader component.
|
|
3400
|
+
*/
|
|
3401
|
+
export declare type UiDataTableColumnHeaderProps<TData, TValue> = {
|
|
3402
|
+
/* Excluded from this release type: column */
|
|
3403
|
+
/** The display text for the column header. */
|
|
3404
|
+
title: string;
|
|
3405
|
+
/**
|
|
3406
|
+
* Custom labels for i18n support.
|
|
3407
|
+
* Partial object that merges with defaults.
|
|
3408
|
+
*/
|
|
3409
|
+
labels?: ColumnHeaderLabels;
|
|
3410
|
+
};
|
|
3411
|
+
|
|
3412
|
+
export declare const UiDataTablePagination: <TData>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal_4<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
3413
|
+
props: __VLS_PrettifyLocal_4<Pick<Partial<{}> & Omit<{} & VNodeProps & AllowedComponentProps & ComponentCustomProps, never>, never> & UiDataTablePaginationProps<TData> & Partial<{}>> & PublicProps;
|
|
3414
|
+
expose(exposed: ShallowUnwrapRef< {}>): void;
|
|
3415
|
+
attrs: any;
|
|
3416
|
+
slots: {};
|
|
3417
|
+
emit: {};
|
|
3418
|
+
}>) => VNode & {
|
|
3419
|
+
__ctx?: Awaited<typeof __VLS_setup>;
|
|
3420
|
+
};
|
|
2881
3421
|
|
|
2882
|
-
|
|
3422
|
+
/**
|
|
3423
|
+
* Props for the UiDataTablePagination component.
|
|
3424
|
+
*/
|
|
3425
|
+
export declare type UiDataTablePaginationProps<TData> = {
|
|
3426
|
+
/* Excluded from this release type: table */
|
|
3427
|
+
/**
|
|
3428
|
+
* Available page size options.
|
|
3429
|
+
* @default [10, 20, 30, 50]
|
|
3430
|
+
*/
|
|
3431
|
+
pageSizeOptions?: number[];
|
|
3432
|
+
/**
|
|
3433
|
+
* Show page size selector dropdown.
|
|
3434
|
+
* @default true
|
|
3435
|
+
*/
|
|
3436
|
+
showPageSize?: boolean;
|
|
3437
|
+
/**
|
|
3438
|
+
* Show selected rows count.
|
|
3439
|
+
* @default true
|
|
3440
|
+
*/
|
|
3441
|
+
showSelection?: boolean;
|
|
3442
|
+
/**
|
|
3443
|
+
* Custom labels for i18n support.
|
|
3444
|
+
* Partial object that merges with defaults.
|
|
3445
|
+
*/
|
|
3446
|
+
labels?: PaginationLabels;
|
|
3447
|
+
};
|
|
2883
3448
|
|
|
2884
3449
|
/**
|
|
2885
3450
|
* A feature-rich data table with sorting, filtering, and pagination.
|
|
2886
3451
|
* Use for displaying and managing large datasets with interactive features.
|
|
2887
|
-
*
|
|
2888
3452
|
* @category Layout
|
|
2889
3453
|
* @useCases data grid, admin table, user list, product catalog, reports
|
|
2890
3454
|
* @keywords datatable, grid, sorting, filtering, pagination, data, list
|
|
2891
3455
|
* @related UiTable
|
|
2892
3456
|
*/
|
|
2893
|
-
export declare
|
|
3457
|
+
export declare type UiDataTableProps<TData, TValue> = {
|
|
2894
3458
|
/**
|
|
2895
3459
|
* The column definitions for the table.
|
|
2896
3460
|
*/
|
|
@@ -2917,19 +3481,50 @@ export declare interface UiDataTableProps<TData, TValue> {
|
|
|
2917
3481
|
* @example "400px"
|
|
2918
3482
|
*/
|
|
2919
3483
|
tableMinHeight?: string;
|
|
2920
|
-
}
|
|
3484
|
+
};
|
|
3485
|
+
|
|
3486
|
+
export declare const UiDataTableToolbar: <TData>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal_5<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
3487
|
+
props: __VLS_PrettifyLocal_5<Pick<Partial<{}> & Omit<{} & VNodeProps & AllowedComponentProps & ComponentCustomProps, never>, never> & UiDataTableToolbarProps<TData> & Partial<{}>> & PublicProps;
|
|
3488
|
+
expose(exposed: ShallowUnwrapRef< {}>): void;
|
|
3489
|
+
attrs: any;
|
|
3490
|
+
slots: {};
|
|
3491
|
+
emit: {};
|
|
3492
|
+
}>) => VNode & {
|
|
3493
|
+
__ctx?: Awaited<typeof __VLS_setup>;
|
|
3494
|
+
};
|
|
2921
3495
|
|
|
2922
|
-
|
|
3496
|
+
/**
|
|
3497
|
+
* Props for the UiDataTableToolbar component.
|
|
3498
|
+
*/
|
|
3499
|
+
export declare type UiDataTableToolbarProps<TData> = {
|
|
3500
|
+
/* Excluded from this release type: table */
|
|
3501
|
+
/** Filter a specific column by its accessor key. */
|
|
3502
|
+
filterColumn?: string;
|
|
3503
|
+
/**
|
|
3504
|
+
* Enable global search across all columns (takes precedence over filterColumn).
|
|
3505
|
+
* @default false
|
|
3506
|
+
*/
|
|
3507
|
+
globalFilter?: boolean;
|
|
3508
|
+
/**
|
|
3509
|
+
* Placeholder text for the filter input.
|
|
3510
|
+
* @default "Search..."
|
|
3511
|
+
*/
|
|
3512
|
+
filterPlaceholder?: string;
|
|
3513
|
+
/**
|
|
3514
|
+
* Custom labels for i18n support.
|
|
3515
|
+
* Partial object that merges with defaults.
|
|
3516
|
+
*/
|
|
3517
|
+
labels?: ToolbarLabels;
|
|
3518
|
+
};
|
|
2923
3519
|
|
|
2924
|
-
export declare const UiDatePicker: DefineComponent<
|
|
2925
|
-
"update:open": (value: boolean) => any;
|
|
3520
|
+
export declare const UiDatePicker: DefineComponent<__VLS_PublicProps_17, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
2926
3521
|
"update:modelValue": (value: DateValue | DateRange | undefined) => any;
|
|
2927
|
-
|
|
2928
|
-
|
|
3522
|
+
"update:open": (value: boolean) => any;
|
|
3523
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_17> & Readonly<{
|
|
2929
3524
|
"onUpdate:modelValue"?: ((value: DateValue | DateRange | undefined) => any) | undefined;
|
|
3525
|
+
"onUpdate:open"?: ((value: boolean) => any) | undefined;
|
|
2930
3526
|
}>, {
|
|
2931
3527
|
disabled: boolean;
|
|
2932
|
-
mode: UiDatePickerMode;
|
|
2933
3528
|
pagedNavigation: boolean;
|
|
2934
3529
|
preventDeselect: boolean;
|
|
2935
3530
|
weekStartsOn: UiDatePickerWeekStartsOn;
|
|
@@ -2938,6 +3533,7 @@ fixedWeeks: boolean;
|
|
|
2938
3533
|
locale: string;
|
|
2939
3534
|
numberOfMonths: number;
|
|
2940
3535
|
readonly: boolean;
|
|
3536
|
+
mode: UiDatePickerMode;
|
|
2941
3537
|
dateFormat: Intl.DateTimeFormatOptions;
|
|
2942
3538
|
closeOnSelect: boolean;
|
|
2943
3539
|
rangeSeparator: string;
|
|
@@ -2964,7 +3560,6 @@ export declare type UiDatePickerMode = 'single' | 'range';
|
|
|
2964
3560
|
/**
|
|
2965
3561
|
* A date picker combining a button trigger with a popover calendar.
|
|
2966
3562
|
* Provides an accessible way to select dates or date ranges.
|
|
2967
|
-
*
|
|
2968
3563
|
* @category Form Inputs
|
|
2969
3564
|
* @useCases date selection, booking form, event picker, schedule, deadline
|
|
2970
3565
|
* @keywords date, picker, calendar, datepicker, range, schedule
|
|
@@ -3138,7 +3733,11 @@ export declare const UiDrawer: __VLS_WithTemplateSlots_29<typeof __VLS_component
|
|
|
3138
3733
|
|
|
3139
3734
|
export declare const UiDrawerClose: __VLS_WithTemplateSlots_30<typeof __VLS_component_30, __VLS_TemplateResult_30["slots"]>;
|
|
3140
3735
|
|
|
3141
|
-
|
|
3736
|
+
/**
|
|
3737
|
+
* Props for the UiDrawerClose component.
|
|
3738
|
+
* A button that closes the drawer when clicked.
|
|
3739
|
+
*/
|
|
3740
|
+
export declare interface UiDrawerCloseProps {
|
|
3142
3741
|
/**
|
|
3143
3742
|
* Render as child element (merges props into slotted element instead of wrapping).
|
|
3144
3743
|
* @default false
|
|
@@ -3148,7 +3747,23 @@ declare interface UiDrawerCloseProps {
|
|
|
3148
3747
|
|
|
3149
3748
|
export declare const UiDrawerContent: __VLS_WithTemplateSlots_31<typeof __VLS_component_31, __VLS_TemplateResult_31["slots"]>;
|
|
3150
3749
|
|
|
3151
|
-
|
|
3750
|
+
/**
|
|
3751
|
+
* Emits for the UiDrawerContent component.
|
|
3752
|
+
*/
|
|
3753
|
+
export declare interface UiDrawerContentEmits {
|
|
3754
|
+
(e: 'openAutoFocus', event: Event): void;
|
|
3755
|
+
(e: 'closeAutoFocus', event: Event): void;
|
|
3756
|
+
(e: 'interactOutside', event: Event): void;
|
|
3757
|
+
(e: 'focusOutside', event: Event): void;
|
|
3758
|
+
(e: 'pointerDownOutside', event: Event): void;
|
|
3759
|
+
(e: 'escapeKeyDown', event: KeyboardEvent): void;
|
|
3760
|
+
}
|
|
3761
|
+
|
|
3762
|
+
/**
|
|
3763
|
+
* Props for the UiDrawerContent component.
|
|
3764
|
+
* The main content container for the drawer.
|
|
3765
|
+
*/
|
|
3766
|
+
export declare interface UiDrawerContentProps {
|
|
3152
3767
|
/**
|
|
3153
3768
|
* Prop to disable pointer events outside the dialog.
|
|
3154
3769
|
* @default false
|
|
@@ -3163,7 +3778,11 @@ declare interface UiDrawerContentProps {
|
|
|
3163
3778
|
|
|
3164
3779
|
export declare const UiDrawerDescription: __VLS_WithTemplateSlots_32<typeof __VLS_component_32, __VLS_TemplateResult_32["slots"]>;
|
|
3165
3780
|
|
|
3166
|
-
|
|
3781
|
+
/**
|
|
3782
|
+
* Props for the UiDrawerDescription component.
|
|
3783
|
+
* The accessible description for the drawer.
|
|
3784
|
+
*/
|
|
3785
|
+
export declare interface UiDrawerDescriptionProps {
|
|
3167
3786
|
/**
|
|
3168
3787
|
* Render as child element (merges props into slotted element instead of wrapping).
|
|
3169
3788
|
* @default false
|
|
@@ -3173,7 +3792,11 @@ declare interface UiDrawerDescriptionProps {
|
|
|
3173
3792
|
|
|
3174
3793
|
export declare const UiDrawerFooter: __VLS_WithTemplateSlots_33<typeof __VLS_component_33, __VLS_TemplateResult_33["slots"]>;
|
|
3175
3794
|
|
|
3176
|
-
|
|
3795
|
+
/**
|
|
3796
|
+
* Props for the UiDrawerFooter component.
|
|
3797
|
+
* Container for the drawer's footer content (action buttons).
|
|
3798
|
+
*/
|
|
3799
|
+
export declare interface UiDrawerFooterProps {
|
|
3177
3800
|
/**
|
|
3178
3801
|
* Render as child element (merges props into slotted element instead of wrapping).
|
|
3179
3802
|
* @default false
|
|
@@ -3183,7 +3806,11 @@ declare interface UiDrawerFooterProps {
|
|
|
3183
3806
|
|
|
3184
3807
|
export declare const UiDrawerHeader: __VLS_WithTemplateSlots_34<typeof __VLS_component_34, __VLS_TemplateResult_34["slots"]>;
|
|
3185
3808
|
|
|
3186
|
-
|
|
3809
|
+
/**
|
|
3810
|
+
* Props for the UiDrawerHeader component.
|
|
3811
|
+
* Container for the drawer's header content (title, description).
|
|
3812
|
+
*/
|
|
3813
|
+
export declare interface UiDrawerHeaderProps {
|
|
3187
3814
|
/**
|
|
3188
3815
|
* Render as child element (merges props into slotted element instead of wrapping).
|
|
3189
3816
|
* @default false
|
|
@@ -3194,13 +3821,12 @@ declare interface UiDrawerHeaderProps {
|
|
|
3194
3821
|
/**
|
|
3195
3822
|
* A slide-out panel that appears from the edge of the screen.
|
|
3196
3823
|
* Use for secondary content, navigation menus, or forms that don't require full-page context.
|
|
3197
|
-
*
|
|
3198
3824
|
* @category Overlays
|
|
3199
3825
|
* @useCases side panel, mobile menu, filters, settings, navigation
|
|
3200
3826
|
* @keywords drawer, panel, slide, sidebar, sheet, mobile
|
|
3201
3827
|
* @related UiSheet, UiDialog
|
|
3202
3828
|
*/
|
|
3203
|
-
declare interface UiDrawerProps {
|
|
3829
|
+
export declare interface UiDrawerProps {
|
|
3204
3830
|
/**
|
|
3205
3831
|
* The controlled open state of the drawer.
|
|
3206
3832
|
* - Omit for uncontrolled mode (component manages state internally)
|
|
@@ -3217,7 +3843,11 @@ declare interface UiDrawerProps {
|
|
|
3217
3843
|
|
|
3218
3844
|
export declare const UiDrawerTitle: __VLS_WithTemplateSlots_35<typeof __VLS_component_35, __VLS_TemplateResult_35["slots"]>;
|
|
3219
3845
|
|
|
3220
|
-
|
|
3846
|
+
/**
|
|
3847
|
+
* Props for the UiDrawerTitle component.
|
|
3848
|
+
* The accessible title for the drawer.
|
|
3849
|
+
*/
|
|
3850
|
+
export declare interface UiDrawerTitleProps {
|
|
3221
3851
|
/**
|
|
3222
3852
|
* Render as child element (merges props into slotted element instead of wrapping).
|
|
3223
3853
|
* @default false
|
|
@@ -3227,7 +3857,11 @@ declare interface UiDrawerTitleProps {
|
|
|
3227
3857
|
|
|
3228
3858
|
export declare const UiDrawerTrigger: __VLS_WithTemplateSlots_36<typeof __VLS_component_36, __VLS_TemplateResult_36["slots"]>;
|
|
3229
3859
|
|
|
3230
|
-
|
|
3860
|
+
/**
|
|
3861
|
+
* Props for the UiDrawerTrigger component.
|
|
3862
|
+
* The element that opens the drawer when clicked.
|
|
3863
|
+
*/
|
|
3864
|
+
export declare interface UiDrawerTriggerProps {
|
|
3231
3865
|
/**
|
|
3232
3866
|
* Render as child element (merges props into slotted element instead of wrapping).
|
|
3233
3867
|
* Set to `true` when using custom button components like `UiButton` or `UiIconButton`.
|
|
@@ -3240,10 +3874,18 @@ export declare const UiDropdownMenu: __VLS_WithTemplateSlots_37<typeof __VLS_com
|
|
|
3240
3874
|
|
|
3241
3875
|
export declare const UiDropdownMenuCheckboxItem: __VLS_WithTemplateSlots_44<typeof __VLS_component_44, __VLS_TemplateResult_44["slots"]>;
|
|
3242
3876
|
|
|
3877
|
+
/**
|
|
3878
|
+
* Emits for the UiDropdownMenuCheckboxItem component.
|
|
3879
|
+
*/
|
|
3243
3880
|
export declare interface UiDropdownMenuCheckboxItemEmits {
|
|
3881
|
+
/** Emitted when the checked state changes. */
|
|
3244
3882
|
'update:checked': [value: boolean];
|
|
3245
3883
|
}
|
|
3246
3884
|
|
|
3885
|
+
/**
|
|
3886
|
+
* Props for the UiDropdownMenuCheckboxItem component.
|
|
3887
|
+
* A menu item with a checkbox for toggling options.
|
|
3888
|
+
*/
|
|
3247
3889
|
export declare interface UiDropdownMenuCheckboxItemProps {
|
|
3248
3890
|
/**
|
|
3249
3891
|
* The controlled checked state of the checkbox item.
|
|
@@ -3263,6 +3905,9 @@ export declare interface UiDropdownMenuCheckboxItemProps {
|
|
|
3263
3905
|
|
|
3264
3906
|
export declare const UiDropdownMenuContent: __VLS_WithTemplateSlots_39<typeof __VLS_component_39, __VLS_TemplateResult_39["slots"]>;
|
|
3265
3907
|
|
|
3908
|
+
/**
|
|
3909
|
+
* Emits for the UiDropdownMenuContent component.
|
|
3910
|
+
*/
|
|
3266
3911
|
export declare interface UiDropdownMenuContentEmits {
|
|
3267
3912
|
/**
|
|
3268
3913
|
* Event emitted when the escape key is pressed.
|
|
@@ -3271,6 +3916,10 @@ export declare interface UiDropdownMenuContentEmits {
|
|
|
3271
3916
|
(e: 'escapeKeyDown', event: KeyboardEvent): void;
|
|
3272
3917
|
}
|
|
3273
3918
|
|
|
3919
|
+
/**
|
|
3920
|
+
* Props for the UiDropdownMenuContent component.
|
|
3921
|
+
* The floating container for menu items.
|
|
3922
|
+
*/
|
|
3274
3923
|
export declare interface UiDropdownMenuContentProps {
|
|
3275
3924
|
/**
|
|
3276
3925
|
* The preferred side of the trigger to render against when open.
|
|
@@ -3289,6 +3938,9 @@ export declare interface UiDropdownMenuContentProps {
|
|
|
3289
3938
|
align?: 'start' | 'center' | 'end';
|
|
3290
3939
|
}
|
|
3291
3940
|
|
|
3941
|
+
/**
|
|
3942
|
+
* Emits for the UiDropdownMenu component.
|
|
3943
|
+
*/
|
|
3292
3944
|
export declare interface UiDropdownMenuEmits {
|
|
3293
3945
|
/**
|
|
3294
3946
|
* Event emitted when the open state changes.
|
|
@@ -3300,6 +3952,10 @@ export declare const UiDropdownMenuGroup: __VLS_WithTemplateSlots_42<typeof __VL
|
|
|
3300
3952
|
|
|
3301
3953
|
export declare const UiDropdownMenuItem: __VLS_WithTemplateSlots_40<typeof __VLS_component_40, __VLS_TemplateResult_40["slots"]>;
|
|
3302
3954
|
|
|
3955
|
+
/**
|
|
3956
|
+
* Props for the UiDropdownMenuItem component.
|
|
3957
|
+
* A clickable menu item that triggers an action.
|
|
3958
|
+
*/
|
|
3303
3959
|
export declare interface UiDropdownMenuItemProps {
|
|
3304
3960
|
/**
|
|
3305
3961
|
* Visual variant of the menu item.
|
|
@@ -3325,6 +3981,10 @@ export declare interface UiDropdownMenuItemProps {
|
|
|
3325
3981
|
|
|
3326
3982
|
export declare const UiDropdownMenuLabel: __VLS_WithTemplateSlots_41<typeof __VLS_component_41, __VLS_TemplateResult_41["slots"]>;
|
|
3327
3983
|
|
|
3984
|
+
/**
|
|
3985
|
+
* Props for the UiDropdownMenuLabel component.
|
|
3986
|
+
* A non-interactive label for grouping menu items.
|
|
3987
|
+
*/
|
|
3328
3988
|
export declare interface UiDropdownMenuLabelProps {
|
|
3329
3989
|
/**
|
|
3330
3990
|
* Whether to add extra left padding (for items under a label).
|
|
@@ -3336,7 +3996,6 @@ export declare interface UiDropdownMenuLabelProps {
|
|
|
3336
3996
|
/**
|
|
3337
3997
|
* A menu that appears on trigger click with actions and options. Use for
|
|
3338
3998
|
* context menus, action lists, or any menu triggered by a button.
|
|
3339
|
-
*
|
|
3340
3999
|
* @category Overlays
|
|
3341
4000
|
* @useCases action menu, context menu, options list, user menu, settings menu
|
|
3342
4001
|
* @keywords dropdown, menu, actions, options, context, popover, list
|
|
@@ -3359,10 +4018,18 @@ export declare interface UiDropdownMenuProps {
|
|
|
3359
4018
|
|
|
3360
4019
|
export declare const UiDropdownMenuRadioGroup: __VLS_WithTemplateSlots_45<typeof __VLS_component_45, __VLS_TemplateResult_45["slots"]>;
|
|
3361
4020
|
|
|
4021
|
+
/**
|
|
4022
|
+
* Emits for the UiDropdownMenuRadioGroup component.
|
|
4023
|
+
*/
|
|
3362
4024
|
export declare interface UiDropdownMenuRadioGroupEmits {
|
|
4025
|
+
/** Emitted when the selected radio item changes. */
|
|
3363
4026
|
'update:modelValue': [value: string];
|
|
3364
4027
|
}
|
|
3365
4028
|
|
|
4029
|
+
/**
|
|
4030
|
+
* Props for the UiDropdownMenuRadioGroup component.
|
|
4031
|
+
* Container for a group of mutually exclusive radio items.
|
|
4032
|
+
*/
|
|
3366
4033
|
export declare interface UiDropdownMenuRadioGroupProps {
|
|
3367
4034
|
/**
|
|
3368
4035
|
* The value of the selected radio item.
|
|
@@ -3373,6 +4040,10 @@ export declare interface UiDropdownMenuRadioGroupProps {
|
|
|
3373
4040
|
|
|
3374
4041
|
export declare const UiDropdownMenuRadioItem: __VLS_WithTemplateSlots_46<typeof __VLS_component_46, __VLS_TemplateResult_46["slots"]>;
|
|
3375
4042
|
|
|
4043
|
+
/**
|
|
4044
|
+
* Props for the UiDropdownMenuRadioItem component.
|
|
4045
|
+
* A radio option within a radio group.
|
|
4046
|
+
*/
|
|
3376
4047
|
export declare interface UiDropdownMenuRadioItemProps {
|
|
3377
4048
|
/**
|
|
3378
4049
|
* The unique value of the radio item.
|
|
@@ -3397,6 +4068,9 @@ export declare const UiDropdownMenuSub: __VLS_WithTemplateSlots_47<typeof __VLS_
|
|
|
3397
4068
|
|
|
3398
4069
|
export declare const UiDropdownMenuSubContent: __VLS_WithTemplateSlots_49<typeof __VLS_component_49, __VLS_TemplateResult_49["slots"]>;
|
|
3399
4070
|
|
|
4071
|
+
/**
|
|
4072
|
+
* Emits for the UiDropdownMenuSubContent component.
|
|
4073
|
+
*/
|
|
3400
4074
|
export declare interface UiDropdownMenuSubContentEmits {
|
|
3401
4075
|
/**
|
|
3402
4076
|
* Event emitted when the escape key is pressed.
|
|
@@ -3405,6 +4079,10 @@ export declare interface UiDropdownMenuSubContentEmits {
|
|
|
3405
4079
|
(e: 'escapeKeyDown', event: KeyboardEvent): void;
|
|
3406
4080
|
}
|
|
3407
4081
|
|
|
4082
|
+
/**
|
|
4083
|
+
* Props for the UiDropdownMenuSubContent component.
|
|
4084
|
+
* The floating container for submenu items.
|
|
4085
|
+
*/
|
|
3408
4086
|
export declare interface UiDropdownMenuSubContentProps {
|
|
3409
4087
|
/**
|
|
3410
4088
|
* The distance in pixels from the trigger.
|
|
@@ -3413,10 +4091,18 @@ export declare interface UiDropdownMenuSubContentProps {
|
|
|
3413
4091
|
sideOffset?: number;
|
|
3414
4092
|
}
|
|
3415
4093
|
|
|
4094
|
+
/**
|
|
4095
|
+
* Emits for the UiDropdownMenuSub component.
|
|
4096
|
+
*/
|
|
3416
4097
|
export declare interface UiDropdownMenuSubEmits {
|
|
4098
|
+
/** Emitted when the submenu open state changes. */
|
|
3417
4099
|
'update:open': [value: boolean];
|
|
3418
4100
|
}
|
|
3419
4101
|
|
|
4102
|
+
/**
|
|
4103
|
+
* Props for the UiDropdownMenuSub component.
|
|
4104
|
+
* A submenu container for nested menu items.
|
|
4105
|
+
*/
|
|
3420
4106
|
export declare interface UiDropdownMenuSubProps {
|
|
3421
4107
|
/**
|
|
3422
4108
|
* The controlled open state of the submenu.
|
|
@@ -3430,6 +4116,10 @@ export declare interface UiDropdownMenuSubProps {
|
|
|
3430
4116
|
|
|
3431
4117
|
export declare const UiDropdownMenuSubTrigger: __VLS_WithTemplateSlots_48<typeof __VLS_component_48, __VLS_TemplateResult_48["slots"]>;
|
|
3432
4118
|
|
|
4119
|
+
/**
|
|
4120
|
+
* Props for the UiDropdownMenuSubTrigger component.
|
|
4121
|
+
* The element that opens a submenu when hovered or focused.
|
|
4122
|
+
*/
|
|
3433
4123
|
export declare interface UiDropdownMenuSubTriggerProps {
|
|
3434
4124
|
/**
|
|
3435
4125
|
* Whether the sub trigger is disabled.
|
|
@@ -3449,6 +4139,10 @@ export declare interface UiDropdownMenuSubTriggerProps {
|
|
|
3449
4139
|
|
|
3450
4140
|
export declare const UiDropdownMenuTrigger: __VLS_WithTemplateSlots_38<typeof __VLS_component_38, __VLS_TemplateResult_38["slots"]>;
|
|
3451
4141
|
|
|
4142
|
+
/**
|
|
4143
|
+
* Props for the UiDropdownMenuTrigger component.
|
|
4144
|
+
* The element that opens the menu when clicked.
|
|
4145
|
+
*/
|
|
3452
4146
|
export declare interface UiDropdownMenuTriggerProps {
|
|
3453
4147
|
/**
|
|
3454
4148
|
* Accessible label for the trigger button.
|
|
@@ -3469,39 +4163,65 @@ export declare interface UiDropdownMenuTriggerProps {
|
|
|
3469
4163
|
asChild?: boolean;
|
|
3470
4164
|
}
|
|
3471
4165
|
|
|
3472
|
-
export declare const
|
|
4166
|
+
export declare const UiEmpty: __VLS_WithTemplateSlots_50<typeof __VLS_component_50, __VLS_TemplateResult_50["slots"]>;
|
|
4167
|
+
|
|
4168
|
+
/**
|
|
4169
|
+
* A component to display empty states when there is no content to show.
|
|
4170
|
+
* @category Feedback
|
|
4171
|
+
* @useCases no data available, empty list, empty search results, no items found
|
|
4172
|
+
* @keywords empty, no data, placeholder, blank state, zero state
|
|
4173
|
+
* @related UiSkeleton, UiSpinner
|
|
4174
|
+
*/
|
|
4175
|
+
export declare interface UiEmptyProps {
|
|
4176
|
+
/**
|
|
4177
|
+
* The title text to display.
|
|
4178
|
+
*/
|
|
4179
|
+
title?: string;
|
|
4180
|
+
/**
|
|
4181
|
+
* The description text to display below the title.
|
|
4182
|
+
*/
|
|
4183
|
+
description?: string;
|
|
4184
|
+
/**
|
|
4185
|
+
* Custom icon component to display.
|
|
4186
|
+
* If not provided, a default empty state icon will be shown.
|
|
4187
|
+
*/
|
|
4188
|
+
icon?: Component;
|
|
4189
|
+
}
|
|
4190
|
+
|
|
4191
|
+
export declare const UiField: __VLS_WithTemplateSlots_51<typeof __VLS_component_51, __VLS_TemplateResult_51["slots"]>;
|
|
3473
4192
|
|
|
3474
|
-
export declare const UiFieldContent:
|
|
4193
|
+
export declare const UiFieldContent: __VLS_WithTemplateSlots_52<typeof __VLS_component_52, __VLS_TemplateResult_52["slots"]>;
|
|
3475
4194
|
|
|
3476
|
-
export declare const UiFieldDescription:
|
|
4195
|
+
export declare const UiFieldDescription: __VLS_WithTemplateSlots_53<typeof __VLS_component_53, __VLS_TemplateResult_53["slots"]>;
|
|
3477
4196
|
|
|
3478
|
-
export declare const UiFieldError:
|
|
4197
|
+
export declare const UiFieldError: __VLS_WithTemplateSlots_54<typeof __VLS_component_54, __VLS_TemplateResult_54["slots"]>;
|
|
3479
4198
|
|
|
3480
4199
|
/**
|
|
3481
4200
|
* Error shape supported by `UiFieldError`.
|
|
3482
4201
|
*/
|
|
3483
|
-
declare type UiFieldErrorLike = string | {
|
|
4202
|
+
export declare type UiFieldErrorLike = string | {
|
|
4203
|
+
/** The error message text. */
|
|
3484
4204
|
message: string | undefined;
|
|
3485
4205
|
} | undefined;
|
|
3486
4206
|
|
|
3487
4207
|
/**
|
|
3488
4208
|
* Props for `UiFieldError` component.
|
|
3489
4209
|
*/
|
|
3490
|
-
declare interface UiFieldErrorProps {
|
|
4210
|
+
export declare interface UiFieldErrorProps {
|
|
3491
4211
|
/**
|
|
3492
4212
|
* List of errors to render. Supports strings or objects with a `message` field.
|
|
3493
4213
|
*/
|
|
3494
4214
|
errors?: UiFieldErrorLike[];
|
|
3495
4215
|
}
|
|
3496
4216
|
|
|
3497
|
-
export declare const UiFieldGroup:
|
|
4217
|
+
export declare const UiFieldGroup: __VLS_WithTemplateSlots_55<typeof __VLS_component_55, __VLS_TemplateResult_55["slots"]>;
|
|
3498
4218
|
|
|
3499
|
-
export declare const UiFieldLabel:
|
|
4219
|
+
export declare const UiFieldLabel: __VLS_WithTemplateSlots_56<typeof __VLS_component_56, __VLS_TemplateResult_56["slots"]>;
|
|
3500
4220
|
|
|
3501
4221
|
/**
|
|
3502
4222
|
* Props for `UiFieldLabel` component.
|
|
3503
4223
|
*/
|
|
3504
|
-
declare interface UiFieldLabelProps {
|
|
4224
|
+
export declare interface UiFieldLabelProps {
|
|
3505
4225
|
/**
|
|
3506
4226
|
* The id of the element the label is associated with.
|
|
3507
4227
|
* Use together with `id` on an input.
|
|
@@ -3509,23 +4229,22 @@ declare interface UiFieldLabelProps {
|
|
|
3509
4229
|
for?: string;
|
|
3510
4230
|
}
|
|
3511
4231
|
|
|
3512
|
-
export declare const UiFieldLegend:
|
|
4232
|
+
export declare const UiFieldLegend: __VLS_WithTemplateSlots_57<typeof __VLS_component_57, __VLS_TemplateResult_57["slots"]>;
|
|
3513
4233
|
|
|
3514
4234
|
/**
|
|
3515
4235
|
* Layout orientation supported by `UiField`.
|
|
3516
4236
|
*/
|
|
3517
|
-
declare type UiFieldOrientation = 'vertical' | 'horizontal' | 'responsive';
|
|
4237
|
+
export declare type UiFieldOrientation = 'vertical' | 'horizontal' | 'responsive';
|
|
3518
4238
|
|
|
3519
4239
|
/**
|
|
3520
4240
|
* A form field wrapper that groups label, input, description, and error messages.
|
|
3521
4241
|
* Provides consistent layout and accessibility for form controls.
|
|
3522
|
-
*
|
|
3523
4242
|
* @category Form Inputs
|
|
3524
4243
|
* @useCases form layout, input wrapper, field grouping, validation display
|
|
3525
4244
|
* @keywords field, form, label, input, error, validation, wrapper
|
|
3526
4245
|
* @related UiInput, UiLabel
|
|
3527
4246
|
*/
|
|
3528
|
-
declare interface UiFieldProps {
|
|
4247
|
+
export declare interface UiFieldProps {
|
|
3529
4248
|
/**
|
|
3530
4249
|
* Layout orientation of the field.
|
|
3531
4250
|
* @default 'vertical'
|
|
@@ -3533,20 +4252,22 @@ declare interface UiFieldProps {
|
|
|
3533
4252
|
orientation?: UiFieldOrientation;
|
|
3534
4253
|
}
|
|
3535
4254
|
|
|
3536
|
-
export declare const UiFieldSeparator:
|
|
4255
|
+
export declare const UiFieldSeparator: __VLS_WithTemplateSlots_58<typeof __VLS_component_58, __VLS_TemplateResult_58["slots"]>;
|
|
3537
4256
|
|
|
3538
|
-
export declare const UiFieldSet:
|
|
4257
|
+
export declare const UiFieldSet: __VLS_WithTemplateSlots_59<typeof __VLS_component_59, __VLS_TemplateResult_59["slots"]>;
|
|
3539
4258
|
|
|
3540
|
-
export declare const UiFieldTitle:
|
|
4259
|
+
export declare const UiFieldTitle: __VLS_WithTemplateSlots_60<typeof __VLS_component_60, __VLS_TemplateResult_60["slots"]>;
|
|
3541
4260
|
|
|
3542
|
-
export declare const UiIcon: DefineComponent<UiIconProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiIconProps> & Readonly<{}>, {
|
|
4261
|
+
export declare const UiIcon: DefineComponent<UiIconProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiIconProps> & Readonly<{}>, {
|
|
4262
|
+
size: number | string;
|
|
4263
|
+
strokeWidth: number | string;
|
|
4264
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
3543
4265
|
|
|
3544
|
-
export declare const UiIconButton:
|
|
4266
|
+
export declare const UiIconButton: __VLS_WithTemplateSlots_61<typeof __VLS_component_61, __VLS_TemplateResult_61["slots"]>;
|
|
3545
4267
|
|
|
3546
4268
|
/**
|
|
3547
4269
|
* A button that displays only an icon without text. Use for compact
|
|
3548
4270
|
* actions like close, edit, delete, or toolbar buttons.
|
|
3549
|
-
*
|
|
3550
4271
|
* @category Actions
|
|
3551
4272
|
* @useCases close button, edit action, toolbar button, compact action
|
|
3552
4273
|
* @keywords iconbutton, icon, button, action, close, edit, delete
|
|
@@ -3600,21 +4321,29 @@ export declare type UiIconButtonSize = 'icon' | 'icon-sm' | 'icon-lg';
|
|
|
3600
4321
|
export declare type UiIconButtonVariant = 'default' | 'destructive' | 'outline' | 'secondary' | 'ghost' | 'link';
|
|
3601
4322
|
|
|
3602
4323
|
/**
|
|
3603
|
-
* An icon component using
|
|
4324
|
+
* An icon component using Lucide icons. Use for visual indicators,
|
|
3604
4325
|
* button decorations, or standalone meaningful graphics.
|
|
3605
|
-
*
|
|
3606
4326
|
* @category Data Display
|
|
3607
4327
|
* @useCases visual indicator, button icon, status icon, decorative graphic
|
|
3608
|
-
* @keywords icon, symbol, graphic,
|
|
4328
|
+
* @keywords icon, symbol, graphic, lucide, svg
|
|
3609
4329
|
* @related UiIconButton, UiButton
|
|
3610
4330
|
*/
|
|
3611
|
-
declare interface UiIconProps {
|
|
4331
|
+
export declare interface UiIconProps {
|
|
3612
4332
|
/**
|
|
3613
|
-
*
|
|
4333
|
+
* Lucide icon name in kebab-case or PascalCase.
|
|
3614
4334
|
*
|
|
3615
|
-
* Example: `
|
|
4335
|
+
* Example: `circle-help`, `CircleHelp`, `chevron-down`, `ChevronDown`
|
|
4336
|
+
* @see https://lucide.dev/icons for available icons
|
|
4337
|
+
*/
|
|
4338
|
+
name: string;
|
|
4339
|
+
/**
|
|
4340
|
+
* Icon size in pixels. Defaults to 24.
|
|
3616
4341
|
*/
|
|
3617
|
-
|
|
4342
|
+
size?: number | string;
|
|
4343
|
+
/**
|
|
4344
|
+
* Stroke width. Defaults to 2.
|
|
4345
|
+
*/
|
|
4346
|
+
strokeWidth?: number | string;
|
|
3618
4347
|
/**
|
|
3619
4348
|
* Accessible label for the icon. When provided, the icon is exposed as `role="img"`.
|
|
3620
4349
|
* If omitted, the icon is treated as decorative (`aria-hidden="true"`).
|
|
@@ -3622,55 +4351,367 @@ declare interface UiIconProps {
|
|
|
3622
4351
|
ariaLabel?: string;
|
|
3623
4352
|
}
|
|
3624
4353
|
|
|
3625
|
-
export declare const UiInput: DefineComponent<
|
|
3626
|
-
"update:modelValue": (value: string) => any;
|
|
3627
|
-
}, string, PublicProps, Readonly<
|
|
3628
|
-
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
3629
|
-
}>, {
|
|
3630
|
-
|
|
3631
|
-
|
|
3632
|
-
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLInputElement>;
|
|
3633
|
-
|
|
4354
|
+
export declare const UiInput: DefineComponent<__VLS_PublicProps_5, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
4355
|
+
"update:modelValue": (value: string) => any;
|
|
4356
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_5> & Readonly<{
|
|
4357
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
4358
|
+
}>, {
|
|
4359
|
+
disabled: boolean;
|
|
4360
|
+
placeholder: string;
|
|
4361
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLInputElement>;
|
|
4362
|
+
|
|
4363
|
+
/**
|
|
4364
|
+
* A text input field for single-line user input. Use for forms, search bars,
|
|
4365
|
+
* and any text entry that fits on one line.
|
|
4366
|
+
* @category Form Inputs
|
|
4367
|
+
* @useCases text entry, search field, email input, password field, form field
|
|
4368
|
+
* @keywords input, text, field, form, search, email, password, textbox
|
|
4369
|
+
* @related UiTextarea, UiSelect, UiCheckbox
|
|
4370
|
+
*/
|
|
4371
|
+
export declare interface UiInputProps {
|
|
4372
|
+
/**
|
|
4373
|
+
* Prop to name the element
|
|
4374
|
+
*/
|
|
4375
|
+
name: string;
|
|
4376
|
+
/**
|
|
4377
|
+
* Prop to define the Input as disabled, therefore blocking all user interaction with it.
|
|
4378
|
+
* @default false
|
|
4379
|
+
*/
|
|
4380
|
+
disabled?: boolean;
|
|
4381
|
+
/**
|
|
4382
|
+
/**
|
|
4383
|
+
* Prop to define the Input placeholder text.
|
|
4384
|
+
* @default undefined
|
|
4385
|
+
*/
|
|
4386
|
+
placeholder?: string;
|
|
4387
|
+
/**
|
|
4388
|
+
* Define the element as required on a Form.
|
|
4389
|
+
* @default false
|
|
4390
|
+
*/
|
|
4391
|
+
required?: boolean;
|
|
4392
|
+
}
|
|
4393
|
+
|
|
4394
|
+
export declare const UiItem: __VLS_WithTemplateSlots_62<typeof __VLS_component_62, __VLS_TemplateResult_62["slots"]>;
|
|
4395
|
+
|
|
4396
|
+
export declare const UiItemActions: __VLS_WithTemplateSlots_64<typeof __VLS_component_64, __VLS_TemplateResult_64["slots"]>;
|
|
4397
|
+
|
|
4398
|
+
/**
|
|
4399
|
+
* Props for the UiItemActions component.
|
|
4400
|
+
* Displays action buttons or other interactive elements.
|
|
4401
|
+
*/
|
|
4402
|
+
export declare type UiItemActionsProps = Record<string, never>;
|
|
4403
|
+
|
|
4404
|
+
export declare const UiItemContent: __VLS_WithTemplateSlots_65<typeof __VLS_component_65, __VLS_TemplateResult_65["slots"]>;
|
|
4405
|
+
|
|
4406
|
+
/**
|
|
4407
|
+
* Props for the UiItemContent component.
|
|
4408
|
+
* Wraps the title and description of the item.
|
|
4409
|
+
*/
|
|
4410
|
+
export declare type UiItemContentProps = Record<string, never>;
|
|
4411
|
+
|
|
4412
|
+
export declare const UiItemDescription: __VLS_WithTemplateSlots_66<typeof __VLS_component_66, __VLS_TemplateResult_66["slots"]>;
|
|
4413
|
+
|
|
4414
|
+
/**
|
|
4415
|
+
* Props for the UiItemDescription component.
|
|
4416
|
+
* Displays the description of the item.
|
|
4417
|
+
*/
|
|
4418
|
+
export declare type UiItemDescriptionProps = Record<string, never>;
|
|
4419
|
+
|
|
4420
|
+
export declare const UiItemFooter: __VLS_WithTemplateSlots_67<typeof __VLS_component_67, __VLS_TemplateResult_67["slots"]>;
|
|
4421
|
+
|
|
4422
|
+
/**
|
|
4423
|
+
* Props for the UiItemFooter component.
|
|
4424
|
+
* Displays a footer below the item content.
|
|
4425
|
+
*/
|
|
4426
|
+
export declare type UiItemFooterProps = Record<string, never>;
|
|
4427
|
+
|
|
4428
|
+
export declare const UiItemGroup: __VLS_WithTemplateSlots_68<typeof __VLS_component_68, __VLS_TemplateResult_68["slots"]>;
|
|
4429
|
+
|
|
4430
|
+
/**
|
|
4431
|
+
* Props for the UiItemGroup component.
|
|
4432
|
+
* Container that groups related items together with consistent styling.
|
|
4433
|
+
*/
|
|
4434
|
+
export declare type UiItemGroupProps = Record<string, never>;
|
|
4435
|
+
|
|
4436
|
+
export declare const UiItemHeader: __VLS_WithTemplateSlots_69<typeof __VLS_component_69, __VLS_TemplateResult_69["slots"]>;
|
|
4437
|
+
|
|
4438
|
+
/**
|
|
4439
|
+
* Props for the UiItemHeader component.
|
|
4440
|
+
* Displays a header above the item content.
|
|
4441
|
+
*/
|
|
4442
|
+
export declare type UiItemHeaderProps = Record<string, never>;
|
|
4443
|
+
|
|
4444
|
+
export declare const UiItemMedia: __VLS_WithTemplateSlots_63<typeof __VLS_component_63, __VLS_TemplateResult_63["slots"]>;
|
|
4445
|
+
|
|
4446
|
+
/**
|
|
4447
|
+
* Props for the UiItemMedia component.
|
|
4448
|
+
* Use to display media content such as icons, images, or avatars.
|
|
4449
|
+
*/
|
|
4450
|
+
export declare interface UiItemMediaProps {
|
|
4451
|
+
/**
|
|
4452
|
+
* Visual variant of the media container.
|
|
4453
|
+
* - `default`: Standard styling, suitable for avatars
|
|
4454
|
+
* - `icon`: Styled for icon display with appropriate sizing
|
|
4455
|
+
* - `image`: Styled for image display
|
|
4456
|
+
* @default 'default'
|
|
4457
|
+
*/
|
|
4458
|
+
variant?: UiItemMediaVariants;
|
|
4459
|
+
}
|
|
4460
|
+
|
|
4461
|
+
/**
|
|
4462
|
+
* Media variant types for the UiItemMedia component
|
|
4463
|
+
*/
|
|
4464
|
+
export declare type UiItemMediaVariants = 'default' | 'icon' | 'image';
|
|
4465
|
+
|
|
4466
|
+
/**
|
|
4467
|
+
* A versatile component that you can use to display any content.
|
|
4468
|
+
* The Item component is a straightforward flex container that can house
|
|
4469
|
+
* nearly any type of content. Use it to display a title, description, and actions.
|
|
4470
|
+
* Group it with the ItemGroup component to create a list of items.
|
|
4471
|
+
* @category Layout
|
|
4472
|
+
* @useCases list item, menu entry, settings row, navigation item, notification, user card
|
|
4473
|
+
* @keywords item, list, row, entry, menu, settings, navigation, selectable, card
|
|
4474
|
+
* @related UiCard, UiButton, UiListbox
|
|
4475
|
+
*/
|
|
4476
|
+
export declare interface UiItemProps {
|
|
4477
|
+
/**
|
|
4478
|
+
* Visual variant of the item.
|
|
4479
|
+
* - `default`: Standard styling with subtle background
|
|
4480
|
+
* - `outline`: Outlined style with clear borders and transparent background
|
|
4481
|
+
* - `muted`: Subdued appearance with muted colors for secondary content
|
|
4482
|
+
* @default 'default'
|
|
4483
|
+
*/
|
|
4484
|
+
variant?: UiItemVariants;
|
|
4485
|
+
/**
|
|
4486
|
+
* Size of the item.
|
|
4487
|
+
* - `default`: Standard size with comfortable padding
|
|
4488
|
+
* - `sm`: Compact size for dense layouts
|
|
4489
|
+
* @default 'default'
|
|
4490
|
+
*/
|
|
4491
|
+
size?: UiItemSizes;
|
|
4492
|
+
/**
|
|
4493
|
+
* Whether to render as a child element (using Radix's asChild pattern).
|
|
4494
|
+
* Useful for rendering the item as a link or custom component.
|
|
4495
|
+
* The hover and focus states will be applied to the custom component.
|
|
4496
|
+
* @default false
|
|
4497
|
+
*/
|
|
4498
|
+
asChild?: boolean;
|
|
4499
|
+
}
|
|
4500
|
+
|
|
4501
|
+
export declare const UiItemSeparator: DefineComponent<__VLS_Props_18, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props_18> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
4502
|
+
|
|
4503
|
+
/**
|
|
4504
|
+
* Props for the UiItemSeparator component.
|
|
4505
|
+
* A separator that separates items in the item group.
|
|
4506
|
+
*/
|
|
4507
|
+
export declare type UiItemSeparatorProps = Record<string, never>;
|
|
4508
|
+
|
|
4509
|
+
/**
|
|
4510
|
+
* Size types for the UiItem primitive component
|
|
4511
|
+
*/
|
|
4512
|
+
export declare type UiItemSizes = 'default' | 'sm';
|
|
4513
|
+
|
|
4514
|
+
export declare const UiItemTitle: __VLS_WithTemplateSlots_70<typeof __VLS_component_70, __VLS_TemplateResult_70["slots"]>;
|
|
4515
|
+
|
|
4516
|
+
/**
|
|
4517
|
+
* Props for the UiItemTitle component.
|
|
4518
|
+
* Displays the title of the item.
|
|
4519
|
+
*/
|
|
4520
|
+
export declare type UiItemTitleProps = Record<string, never>;
|
|
4521
|
+
|
|
4522
|
+
/**
|
|
4523
|
+
* Variant types for the UiItem primitive component
|
|
4524
|
+
*/
|
|
4525
|
+
export declare type UiItemVariants = 'default' | 'outline' | 'muted';
|
|
4526
|
+
|
|
4527
|
+
export declare const UiKbd: __VLS_WithTemplateSlots_71<typeof __VLS_component_71, __VLS_TemplateResult_71["slots"]>;
|
|
4528
|
+
|
|
4529
|
+
export declare const UiKbdGroup: __VLS_WithTemplateSlots_72<typeof __VLS_component_72, __VLS_TemplateResult_72["slots"]>;
|
|
4530
|
+
|
|
4531
|
+
/**
|
|
4532
|
+
* A container for grouping multiple keyboard keys together. Use to display
|
|
4533
|
+
* key combinations like "Ctrl + C" or "Cmd + Shift + P".
|
|
4534
|
+
* @category Feedback
|
|
4535
|
+
* @useCases key combination, shortcut group, multi-key display
|
|
4536
|
+
* @keywords kbd, keyboard, group, combination, shortcut, keys
|
|
4537
|
+
* @related UiKbd
|
|
4538
|
+
*/
|
|
4539
|
+
export declare type UiKbdGroupProps = Record<string, never>;
|
|
4540
|
+
|
|
4541
|
+
/**
|
|
4542
|
+
* A keyboard key indicator component. Use to display keyboard shortcuts,
|
|
4543
|
+
* hotkeys, or key combinations in documentation and UI hints.
|
|
4544
|
+
* @category Feedback
|
|
4545
|
+
* @useCases keyboard shortcut, hotkey display, key combination, command hint
|
|
4546
|
+
* @keywords kbd, keyboard, key, shortcut, hotkey, command, keybinding
|
|
4547
|
+
* @related UiKbdGroup, UiTooltip
|
|
4548
|
+
*/
|
|
4549
|
+
export declare interface UiKbdProps {
|
|
4550
|
+
/**
|
|
4551
|
+
* The size of the keyboard key indicator.
|
|
4552
|
+
* @default 'default'
|
|
4553
|
+
*/
|
|
4554
|
+
size?: 'sm' | 'default' | 'lg';
|
|
4555
|
+
}
|
|
4556
|
+
|
|
4557
|
+
export declare const UiLabel: __VLS_WithTemplateSlots_73<typeof __VLS_component_73, __VLS_TemplateResult_73["slots"]>;
|
|
4558
|
+
|
|
4559
|
+
/**
|
|
4560
|
+
* A text label for form elements. Use to identify form inputs, provide
|
|
4561
|
+
* context, and improve accessibility by associating labels with controls.
|
|
4562
|
+
* @category Form Inputs
|
|
4563
|
+
* @useCases form label, input label, field label, accessibility label
|
|
4564
|
+
* @keywords label, form, input, text, field, accessibility, a11y
|
|
4565
|
+
* @related UiInput, UiCheckbox, UiField, UiRadioGroup
|
|
4566
|
+
*/
|
|
4567
|
+
export declare interface UiLabelProps {
|
|
4568
|
+
/**
|
|
4569
|
+
* The id of the form element that this label is associated with.
|
|
4570
|
+
* When provided, clicking the label will focus the associated element.
|
|
4571
|
+
*/
|
|
4572
|
+
for: string;
|
|
4573
|
+
}
|
|
4574
|
+
|
|
4575
|
+
export declare const UiListbox: __VLS_WithTemplateSlots_74<typeof __VLS_component_74, __VLS_TemplateResult_74["slots"]>;
|
|
4576
|
+
|
|
4577
|
+
export declare const UiListboxContent: __VLS_WithTemplateSlots_75<typeof __VLS_component_75, __VLS_TemplateResult_75["slots"]>;
|
|
4578
|
+
|
|
4579
|
+
/**
|
|
4580
|
+
* Props for the UiListboxContent component.
|
|
4581
|
+
* Container that wraps the listbox items.
|
|
4582
|
+
*/
|
|
4583
|
+
export declare type UiListboxContentProps = Record<string, never>;
|
|
4584
|
+
|
|
4585
|
+
export declare const UiListboxFilter: DefineComponent<__VLS_PublicProps_7, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
4586
|
+
"update:modelValue": (value: string) => any;
|
|
4587
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_7> & Readonly<{
|
|
4588
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
4589
|
+
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
4590
|
+
|
|
4591
|
+
/**
|
|
4592
|
+
* Props for the UiListboxFilter component.
|
|
4593
|
+
* Provides a filter input for searching listbox items.
|
|
4594
|
+
*/
|
|
4595
|
+
export declare interface UiListboxFilterProps {
|
|
4596
|
+
/**
|
|
4597
|
+
* Placeholder text for the filter input.
|
|
4598
|
+
*/
|
|
4599
|
+
placeholder?: string;
|
|
4600
|
+
/**
|
|
4601
|
+
* Whether to render as a child element (for composition with other components).
|
|
4602
|
+
*/
|
|
4603
|
+
asChild?: boolean;
|
|
4604
|
+
}
|
|
4605
|
+
|
|
4606
|
+
export declare const UiListboxGroup: __VLS_WithTemplateSlots_78<typeof __VLS_component_78, __VLS_TemplateResult_78["slots"]>;
|
|
4607
|
+
|
|
4608
|
+
export declare const UiListboxGroupLabel: __VLS_WithTemplateSlots_79<typeof __VLS_component_79, __VLS_TemplateResult_79["slots"]>;
|
|
4609
|
+
|
|
4610
|
+
/**
|
|
4611
|
+
* Props for the UiListboxGroupLabel component.
|
|
4612
|
+
* Displays a label for a group of listbox items.
|
|
4613
|
+
*/
|
|
4614
|
+
export declare type UiListboxGroupLabelProps = Record<string, never>;
|
|
4615
|
+
|
|
4616
|
+
/**
|
|
4617
|
+
* Props for the UiListboxGroup component.
|
|
4618
|
+
* Groups related listbox items together.
|
|
4619
|
+
*/
|
|
4620
|
+
export declare type UiListboxGroupProps = Record<string, never>;
|
|
4621
|
+
|
|
4622
|
+
export declare const UiListboxItem: __VLS_WithTemplateSlots_76<typeof __VLS_component_76, __VLS_TemplateResult_76["slots"]>;
|
|
4623
|
+
|
|
4624
|
+
export declare const UiListboxItemIndicator: __VLS_WithTemplateSlots_77<typeof __VLS_component_77, __VLS_TemplateResult_77["slots"]>;
|
|
4625
|
+
|
|
4626
|
+
/**
|
|
4627
|
+
* Props for the UiListboxItemIndicator component.
|
|
4628
|
+
* Displays a visual indicator when the item is selected.
|
|
4629
|
+
*/
|
|
4630
|
+
export declare type UiListboxItemIndicatorProps = Record<string, never>;
|
|
4631
|
+
|
|
4632
|
+
/**
|
|
4633
|
+
* Props for the UiListboxItem component.
|
|
4634
|
+
* Represents a selectable option in the listbox.
|
|
4635
|
+
*/
|
|
4636
|
+
export declare interface UiListboxItemProps {
|
|
4637
|
+
/**
|
|
4638
|
+
* The value of the listbox item.
|
|
4639
|
+
*/
|
|
4640
|
+
value: AcceptableValue;
|
|
4641
|
+
/**
|
|
4642
|
+
* Whether the item is disabled.
|
|
4643
|
+
* @default false
|
|
4644
|
+
*/
|
|
4645
|
+
disabled?: boolean;
|
|
4646
|
+
}
|
|
4647
|
+
|
|
3634
4648
|
/**
|
|
3635
|
-
* A
|
|
3636
|
-
*
|
|
3637
|
-
*
|
|
4649
|
+
* A listbox component for displaying a list of selectable options.
|
|
4650
|
+
* Use for dropdown menus, selection lists, or any list-based selection UI.
|
|
3638
4651
|
* @category Form Inputs
|
|
3639
|
-
* @useCases
|
|
3640
|
-
* @keywords
|
|
3641
|
-
* @related
|
|
4652
|
+
* @useCases option selection, dropdown list, selectable items, multi-select
|
|
4653
|
+
* @keywords listbox, select, options, list, dropdown, choices
|
|
4654
|
+
* @related UiSelect, UiTagsInput
|
|
3642
4655
|
*/
|
|
3643
|
-
export declare interface
|
|
4656
|
+
export declare interface UiListboxProps {
|
|
3644
4657
|
/**
|
|
3645
|
-
*
|
|
4658
|
+
* The controlled value of the listbox. Optional; can be bound with v-model.
|
|
4659
|
+
* - Omit for uncontrolled mode
|
|
4660
|
+
* - Use `v-model` for controlled mode
|
|
3646
4661
|
*/
|
|
3647
|
-
|
|
4662
|
+
modelValue?: AcceptableValue | AcceptableValue[];
|
|
3648
4663
|
/**
|
|
3649
|
-
*
|
|
4664
|
+
* The value of the listbox when initially rendered.
|
|
4665
|
+
*/
|
|
4666
|
+
defaultValue?: AcceptableValue | AcceptableValue[];
|
|
4667
|
+
/**
|
|
4668
|
+
* Whether multiple options can be selected.
|
|
4669
|
+
* @default false
|
|
4670
|
+
*/
|
|
4671
|
+
multiple?: boolean;
|
|
4672
|
+
/**
|
|
4673
|
+
* The orientation of the listbox.
|
|
4674
|
+
*/
|
|
4675
|
+
orientation?: 'horizontal' | 'vertical';
|
|
4676
|
+
/**
|
|
4677
|
+
* The reading direction of the listbox.
|
|
4678
|
+
*/
|
|
4679
|
+
dir?: 'ltr' | 'rtl';
|
|
4680
|
+
/**
|
|
4681
|
+
* When true, prevents the user from interacting with listbox.
|
|
3650
4682
|
* @default false
|
|
3651
4683
|
*/
|
|
3652
4684
|
disabled?: boolean;
|
|
3653
4685
|
/**
|
|
3654
|
-
|
|
3655
|
-
*
|
|
3656
|
-
* @default undefined
|
|
4686
|
+
* How multiple selection should behave.
|
|
4687
|
+
* @default 'toggle'
|
|
3657
4688
|
*/
|
|
3658
|
-
|
|
4689
|
+
selectionBehavior?: 'toggle' | 'replace';
|
|
3659
4690
|
/**
|
|
3660
|
-
*
|
|
4691
|
+
* When true, hover over item will trigger highlight.
|
|
3661
4692
|
* @default false
|
|
3662
4693
|
*/
|
|
3663
|
-
|
|
4694
|
+
highlightOnHover?: boolean;
|
|
4695
|
+
/**
|
|
4696
|
+
* Use this to compare objects by a particular field.
|
|
4697
|
+
*/
|
|
4698
|
+
by?: string | ((a: AcceptableValue, b: AcceptableValue) => boolean);
|
|
3664
4699
|
}
|
|
3665
4700
|
|
|
3666
4701
|
export declare const UiPlaceholder: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
3667
4702
|
|
|
3668
|
-
export declare const UiPopover:
|
|
4703
|
+
export declare const UiPopover: __VLS_WithTemplateSlots_80<typeof __VLS_component_80, __VLS_TemplateResult_80["slots"]>;
|
|
3669
4704
|
|
|
4705
|
+
/** The preferred alignment against the trigger. */
|
|
3670
4706
|
export declare type UiPopoverAlign = 'start' | 'center' | 'end';
|
|
3671
4707
|
|
|
3672
|
-
export
|
|
4708
|
+
export { UiPopoverAnchor }
|
|
3673
4709
|
|
|
4710
|
+
export declare const UiPopoverContent: __VLS_WithTemplateSlots_82<typeof __VLS_component_82, __VLS_TemplateResult_82["slots"]>;
|
|
4711
|
+
|
|
4712
|
+
/**
|
|
4713
|
+
* Emits for the UiPopoverContent component.
|
|
4714
|
+
*/
|
|
3674
4715
|
export declare interface UiPopoverContentEmits {
|
|
3675
4716
|
/**
|
|
3676
4717
|
* Event emitted when the escape key is pressed.
|
|
@@ -3679,6 +4720,10 @@ export declare interface UiPopoverContentEmits {
|
|
|
3679
4720
|
(e: 'escapeKeyDown', event: KeyboardEvent): void;
|
|
3680
4721
|
}
|
|
3681
4722
|
|
|
4723
|
+
/**
|
|
4724
|
+
* Props for the UiPopoverContent component.
|
|
4725
|
+
* The floating container for popover content.
|
|
4726
|
+
*/
|
|
3682
4727
|
export declare interface UiPopoverContentProps {
|
|
3683
4728
|
/**
|
|
3684
4729
|
* The preferred side of the trigger to render against when open.
|
|
@@ -3700,7 +4745,6 @@ export declare interface UiPopoverContentProps {
|
|
|
3700
4745
|
/**
|
|
3701
4746
|
* A floating panel that appears relative to a trigger element. Use for
|
|
3702
4747
|
* rich content like forms, pickers, or detailed information.
|
|
3703
|
-
*
|
|
3704
4748
|
* @category Overlays
|
|
3705
4749
|
* @useCases floating panel, picker container, form popup, info panel
|
|
3706
4750
|
* @keywords popover, popup, floating, panel, overlay, dropdown
|
|
@@ -3736,10 +4780,15 @@ export declare interface UiPopoverProps {
|
|
|
3736
4780
|
modal?: boolean;
|
|
3737
4781
|
}
|
|
3738
4782
|
|
|
4783
|
+
/** The preferred side of the trigger to render the popover. */
|
|
3739
4784
|
export declare type UiPopoverSide = 'top' | 'right' | 'bottom' | 'left';
|
|
3740
4785
|
|
|
3741
|
-
export declare const UiPopoverTrigger:
|
|
4786
|
+
export declare const UiPopoverTrigger: __VLS_WithTemplateSlots_81<typeof __VLS_component_81, __VLS_TemplateResult_81["slots"]>;
|
|
3742
4787
|
|
|
4788
|
+
/**
|
|
4789
|
+
* Props for the UiPopoverTrigger component.
|
|
4790
|
+
* The element that opens the popover when clicked.
|
|
4791
|
+
*/
|
|
3743
4792
|
export declare interface UiPopoverTriggerProps {
|
|
3744
4793
|
/**
|
|
3745
4794
|
* Accessible label for the trigger button.
|
|
@@ -3755,9 +4804,9 @@ export declare interface UiPopoverTriggerProps {
|
|
|
3755
4804
|
asChild?: boolean;
|
|
3756
4805
|
}
|
|
3757
4806
|
|
|
3758
|
-
export declare const UiProgress: DefineComponent<
|
|
4807
|
+
export declare const UiProgress: DefineComponent<__VLS_PublicProps_9, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
3759
4808
|
"update:modelValue": (value: number) => any;
|
|
3760
|
-
}, string, PublicProps, Readonly<
|
|
4809
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_9> & Readonly<{
|
|
3761
4810
|
"onUpdate:modelValue"?: ((value: number) => any) | undefined;
|
|
3762
4811
|
}>, {
|
|
3763
4812
|
max: number;
|
|
@@ -3766,26 +4815,34 @@ max: number;
|
|
|
3766
4815
|
/**
|
|
3767
4816
|
* A progress bar showing completion status. Use for uploads,
|
|
3768
4817
|
* downloads, loading states, or any task with measurable progress.
|
|
3769
|
-
*
|
|
3770
4818
|
* @category Feedback
|
|
3771
4819
|
* @useCases upload progress, download status, loading bar, completion indicator
|
|
3772
4820
|
* @keywords progress, bar, loading, percentage, status, completion
|
|
3773
4821
|
* @related UiSpinner
|
|
3774
4822
|
*/
|
|
3775
4823
|
export declare type UiProgressProps = {
|
|
4824
|
+
/**
|
|
4825
|
+
* Max value of the Progress.
|
|
4826
|
+
* @default 100
|
|
4827
|
+
*/
|
|
3776
4828
|
max?: number;
|
|
3777
4829
|
};
|
|
3778
4830
|
|
|
3779
|
-
export declare const UiRadioGroup:
|
|
4831
|
+
export declare const UiRadioGroup: __VLS_WithTemplateSlots_83<typeof __VLS_component_83, __VLS_TemplateResult_83["slots"]>;
|
|
3780
4832
|
|
|
4833
|
+
/** The reading direction of the radio group. */
|
|
3781
4834
|
export declare type UiRadioGroupDirection = 'ltr' | 'rtl';
|
|
3782
4835
|
|
|
3783
4836
|
export declare const UiRadioGroupItem: DefineComponent<UiRadioGroupItemProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiRadioGroupItemProps> & Readonly<{}>, {
|
|
3784
|
-
required: boolean;
|
|
3785
|
-
asChild: boolean;
|
|
3786
4837
|
disabled: boolean;
|
|
4838
|
+
asChild: boolean;
|
|
4839
|
+
required: boolean;
|
|
3787
4840
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
3788
4841
|
|
|
4842
|
+
/**
|
|
4843
|
+
* Props for the UiRadioGroupItem component.
|
|
4844
|
+
* An individual radio button within a radio group.
|
|
4845
|
+
*/
|
|
3789
4846
|
export declare type UiRadioGroupItemProps = UiRadioGroupSharedProps & {
|
|
3790
4847
|
/**
|
|
3791
4848
|
* The unique identifier for the radio item.
|
|
@@ -3797,12 +4854,12 @@ export declare type UiRadioGroupItemProps = UiRadioGroupSharedProps & {
|
|
|
3797
4854
|
value: string;
|
|
3798
4855
|
};
|
|
3799
4856
|
|
|
4857
|
+
/** The orientation of the radio group (vertical or horizontal). */
|
|
3800
4858
|
export declare type UiRadioGroupOrientation = 'vertical' | 'horizontal';
|
|
3801
4859
|
|
|
3802
4860
|
/**
|
|
3803
4861
|
* A group of radio buttons for single-choice selection. Use when users
|
|
3804
4862
|
* must pick exactly one option from a visible list.
|
|
3805
|
-
*
|
|
3806
4863
|
* @category Form Inputs
|
|
3807
4864
|
* @useCases single choice, option selection, survey question, settings
|
|
3808
4865
|
* @keywords radio, radiogroup, option, choice, single, select, form
|
|
@@ -3852,10 +4909,10 @@ export declare type UiRadioGroupSharedProps = {
|
|
|
3852
4909
|
required?: boolean;
|
|
3853
4910
|
};
|
|
3854
4911
|
|
|
3855
|
-
export declare const UiRangeCalendar: DefineComponent<
|
|
4912
|
+
export declare const UiRangeCalendar: DefineComponent<__VLS_PublicProps_11, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
3856
4913
|
"update:modelValue": (value: DateRange | undefined) => any;
|
|
3857
4914
|
"update:placeholder": (value: DateValue | undefined) => any;
|
|
3858
|
-
}, string, PublicProps, Readonly<
|
|
4915
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_11> & Readonly<{
|
|
3859
4916
|
"onUpdate:modelValue"?: ((value: DateRange | undefined) => any) | undefined;
|
|
3860
4917
|
"onUpdate:placeholder"?: ((value: DateValue | undefined) => any) | undefined;
|
|
3861
4918
|
}>, {
|
|
@@ -3888,7 +4945,6 @@ export declare interface UiRangeCalendarEmits {
|
|
|
3888
4945
|
/**
|
|
3889
4946
|
* A calendar for selecting date ranges (start and end dates). Use for
|
|
3890
4947
|
* booking periods, vacation dates, or any range-based date selection.
|
|
3891
|
-
*
|
|
3892
4948
|
* @category Form Inputs
|
|
3893
4949
|
* @useCases date range, booking period, vacation dates, filter by dates
|
|
3894
4950
|
* @keywords calendar, range, daterange, period, booking, from, to, start, end
|
|
@@ -4030,9 +5086,9 @@ export declare type UiRangeCalendarWeekdayFormat = 'narrow' | 'short' | 'long';
|
|
|
4030
5086
|
*/
|
|
4031
5087
|
export declare type UiRangeCalendarWeekStartsOn = 0 | 1 | 2 | 3 | 4 | 5 | 6;
|
|
4032
5088
|
|
|
4033
|
-
export declare const UiSelect:
|
|
5089
|
+
export declare const UiSelect: __VLS_WithTemplateSlots_84<typeof __VLS_component_84, __VLS_TemplateResult_84["slots"]>;
|
|
4034
5090
|
|
|
4035
|
-
export declare const UiSelectContent:
|
|
5091
|
+
export declare const UiSelectContent: __VLS_WithTemplateSlots_86<typeof __VLS_component_86, __VLS_TemplateResult_86["slots"]>;
|
|
4036
5092
|
|
|
4037
5093
|
/**
|
|
4038
5094
|
* Emits for the UiSelectContent component.
|
|
@@ -4068,9 +5124,9 @@ export declare type UiSelectEmits = {
|
|
|
4068
5124
|
'update:open': [value: boolean];
|
|
4069
5125
|
};
|
|
4070
5126
|
|
|
4071
|
-
export declare const UiSelectGroup:
|
|
5127
|
+
export declare const UiSelectGroup: __VLS_WithTemplateSlots_90<typeof __VLS_component_90, __VLS_TemplateResult_90["slots"]>;
|
|
4072
5128
|
|
|
4073
|
-
export declare const UiSelectItem:
|
|
5129
|
+
export declare const UiSelectItem: __VLS_WithTemplateSlots_87<typeof __VLS_component_87, __VLS_TemplateResult_87["slots"]>;
|
|
4074
5130
|
|
|
4075
5131
|
/**
|
|
4076
5132
|
* Props for the UiSelectItem component.
|
|
@@ -4084,12 +5140,11 @@ export declare type UiSelectItemProps = {
|
|
|
4084
5140
|
textValue?: string;
|
|
4085
5141
|
};
|
|
4086
5142
|
|
|
4087
|
-
export declare const UiSelectLabel:
|
|
5143
|
+
export declare const UiSelectLabel: __VLS_WithTemplateSlots_89<typeof __VLS_component_89, __VLS_TemplateResult_89["slots"]>;
|
|
4088
5144
|
|
|
4089
5145
|
/**
|
|
4090
5146
|
* A dropdown select for choosing from a list of options. Use for
|
|
4091
5147
|
* form fields where users must pick one value from many.
|
|
4092
|
-
*
|
|
4093
5148
|
* @category Form Inputs
|
|
4094
5149
|
* @useCases dropdown selection, form picker, option list, country selector
|
|
4095
5150
|
* @keywords select, dropdown, picker, option, choice, combobox, form
|
|
@@ -4116,7 +5171,7 @@ export declare type UiSelectProps = {
|
|
|
4116
5171
|
|
|
4117
5172
|
export declare const UiSelectSeparator: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
4118
5173
|
|
|
4119
|
-
export declare const UiSelectTrigger:
|
|
5174
|
+
export declare const UiSelectTrigger: __VLS_WithTemplateSlots_85<typeof __VLS_component_85, __VLS_TemplateResult_85["slots"]>;
|
|
4120
5175
|
|
|
4121
5176
|
/**
|
|
4122
5177
|
* Props for the UiSelectTrigger component.
|
|
@@ -4130,7 +5185,7 @@ export declare type UiSelectTriggerProps = {
|
|
|
4130
5185
|
size?: 'default' | 'sm';
|
|
4131
5186
|
};
|
|
4132
5187
|
|
|
4133
|
-
export declare const UiSelectValue:
|
|
5188
|
+
export declare const UiSelectValue: __VLS_WithTemplateSlots_88<typeof __VLS_component_88, __VLS_TemplateResult_88["slots"]>;
|
|
4134
5189
|
|
|
4135
5190
|
/**
|
|
4136
5191
|
* Props for the UiSelectValue component.
|
|
@@ -4140,6 +5195,64 @@ export declare type UiSelectValueProps = {
|
|
|
4140
5195
|
placeholder?: string;
|
|
4141
5196
|
};
|
|
4142
5197
|
|
|
5198
|
+
export declare const UiSeparator: DefineComponent<UiSeparatorProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiSeparatorProps> & Readonly<{}>, {
|
|
5199
|
+
orientation: "horizontal" | "vertical";
|
|
5200
|
+
decorative: boolean;
|
|
5201
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
5202
|
+
|
|
5203
|
+
/**
|
|
5204
|
+
* A visual divider between content sections. Use for grouping
|
|
5205
|
+
* related items or creating visual breaks in layouts.
|
|
5206
|
+
* @category Layout
|
|
5207
|
+
* @useCases divider, section break, content grouping, visual separation
|
|
5208
|
+
* @keywords separator, divider, line, hr, break, layout
|
|
5209
|
+
* @related UiCard, UiDropdownMenu
|
|
5210
|
+
*/
|
|
5211
|
+
export declare interface UiSeparatorProps {
|
|
5212
|
+
/**
|
|
5213
|
+
* The orientation of the separator.
|
|
5214
|
+
* @type {'horizontal' | 'vertical'}
|
|
5215
|
+
* @default 'horizontal'
|
|
5216
|
+
*/
|
|
5217
|
+
orientation?: 'horizontal' | 'vertical';
|
|
5218
|
+
/**
|
|
5219
|
+
* When true, the separator is purely decorative and not announced by screen readers.
|
|
5220
|
+
* @type {boolean}
|
|
5221
|
+
* @default true
|
|
5222
|
+
*/
|
|
5223
|
+
decorative?: boolean;
|
|
5224
|
+
}
|
|
5225
|
+
|
|
5226
|
+
export declare const UiSkeleton: DefineComponent<UiSkeletonProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiSkeletonProps> & Readonly<{}>, {
|
|
5227
|
+
rounded: boolean;
|
|
5228
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
5229
|
+
|
|
5230
|
+
/**
|
|
5231
|
+
* A placeholder loading state for content. Use to indicate
|
|
5232
|
+
* loading state while preserving layout structure.
|
|
5233
|
+
* @category Feedback
|
|
5234
|
+
* @useCases loading state, content placeholder, lazy loading, data fetching
|
|
5235
|
+
* @keywords skeleton, loading, placeholder, shimmer, pulse, loader
|
|
5236
|
+
* @related UiSpinner, UiProgress
|
|
5237
|
+
*/
|
|
5238
|
+
export declare interface UiSkeletonProps {
|
|
5239
|
+
/**
|
|
5240
|
+
* Custom width for the skeleton.
|
|
5241
|
+
* Can be any valid CSS width value.
|
|
5242
|
+
*/
|
|
5243
|
+
width?: string;
|
|
5244
|
+
/**
|
|
5245
|
+
* Custom height for the skeleton.
|
|
5246
|
+
* Can be any valid CSS height value.
|
|
5247
|
+
*/
|
|
5248
|
+
height?: string;
|
|
5249
|
+
/**
|
|
5250
|
+
* Whether to render as a rounded.
|
|
5251
|
+
* @default false
|
|
5252
|
+
*/
|
|
5253
|
+
rounded?: boolean;
|
|
5254
|
+
}
|
|
5255
|
+
|
|
4143
5256
|
export declare const UiSlider: DefineComponent<UiSliderProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
|
|
4144
5257
|
"update:modelValue": (value: number[]) => any;
|
|
4145
5258
|
valueCommit: (value: number[]) => any;
|
|
@@ -4148,16 +5261,26 @@ valueCommit: (value: number[]) => any;
|
|
|
4148
5261
|
onValueCommit?: ((value: number[]) => any) | undefined;
|
|
4149
5262
|
}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
4150
5263
|
|
|
5264
|
+
export declare interface UiSliderEmits {
|
|
5265
|
+
/**
|
|
5266
|
+
* Emitted when the slider value changes.
|
|
5267
|
+
*/
|
|
5268
|
+
(e: 'update:modelValue', value: number[]): void;
|
|
5269
|
+
/**
|
|
5270
|
+
* Emitted when the value changes at the end of an interaction (commit).
|
|
5271
|
+
*/
|
|
5272
|
+
(e: 'valueCommit', value: number[]): void;
|
|
5273
|
+
}
|
|
5274
|
+
|
|
4151
5275
|
/**
|
|
4152
5276
|
* A range input for selecting numeric values by dragging a thumb along a track.
|
|
4153
5277
|
* Supports single-thumb sliders via `[value]` and multi-thumb sliders via `[min, max]`.
|
|
4154
|
-
*
|
|
4155
5278
|
* @category Form Inputs
|
|
4156
5279
|
* @useCases volume control, price range, numeric input, filter range
|
|
4157
5280
|
* @keywords slider, range, input, thumb, track, numeric
|
|
4158
5281
|
* @related UiInput
|
|
4159
5282
|
*/
|
|
4160
|
-
declare interface UiSliderProps {
|
|
5283
|
+
export declare interface UiSliderProps {
|
|
4161
5284
|
/**
|
|
4162
5285
|
* The controlled value of the slider.
|
|
4163
5286
|
* Use `v-model` / `v-model:modelValue` for controlled mode.
|
|
@@ -4228,12 +5351,11 @@ declare interface UiSliderProps {
|
|
|
4228
5351
|
|
|
4229
5352
|
export declare const UiSpinner: DefineComponent<UiSpinnerProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiSpinnerProps> & Readonly<{}>, {
|
|
4230
5353
|
ariaLabel: string;
|
|
4231
|
-
}, {}, {}, {}, string, ComponentProvideOptions, false, {},
|
|
5354
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
4232
5355
|
|
|
4233
5356
|
/**
|
|
4234
5357
|
* An animated loading indicator. Use while content is loading
|
|
4235
5358
|
* or an action is processing.
|
|
4236
|
-
*
|
|
4237
5359
|
* @category Feedback
|
|
4238
5360
|
* @useCases loading state, processing, waiting, fetching data
|
|
4239
5361
|
* @keywords spinner, loading, loader, wait, progress, animation
|
|
@@ -4247,19 +5369,18 @@ export declare interface UiSpinnerProps {
|
|
|
4247
5369
|
ariaLabel?: string;
|
|
4248
5370
|
}
|
|
4249
5371
|
|
|
4250
|
-
export declare const UiSwitch: DefineComponent<
|
|
5372
|
+
export declare const UiSwitch: DefineComponent<__VLS_PublicProps_12, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
4251
5373
|
"update:modelValue": (value: boolean) => any;
|
|
4252
|
-
}, string, PublicProps, Readonly<
|
|
5374
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_12> & Readonly<{
|
|
4253
5375
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
4254
5376
|
}>, {
|
|
4255
|
-
required: boolean;
|
|
4256
5377
|
disabled: boolean;
|
|
5378
|
+
required: boolean;
|
|
4257
5379
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
4258
5380
|
|
|
4259
5381
|
/**
|
|
4260
5382
|
* A toggle switch for on/off states. Use for settings, preferences,
|
|
4261
5383
|
* or any binary choice that takes effect immediately.
|
|
4262
|
-
*
|
|
4263
5384
|
* @category Form Inputs
|
|
4264
5385
|
* @useCases toggle setting, enable feature, on off switch, preferences
|
|
4265
5386
|
* @keywords switch, toggle, on, off, boolean, setting, preference
|
|
@@ -4282,13 +5403,13 @@ export declare type UiSwitchProps = {
|
|
|
4282
5403
|
required?: boolean;
|
|
4283
5404
|
};
|
|
4284
5405
|
|
|
4285
|
-
export declare const UiTable:
|
|
5406
|
+
export declare const UiTable: __VLS_WithTemplateSlots_91<typeof __VLS_component_91, __VLS_TemplateResult_91["slots"]>;
|
|
4286
5407
|
|
|
4287
|
-
export declare const UiTableBody:
|
|
5408
|
+
export declare const UiTableBody: __VLS_WithTemplateSlots_93<typeof __VLS_component_93, __VLS_TemplateResult_93["slots"]>;
|
|
4288
5409
|
|
|
4289
|
-
export declare const UiTableCaption:
|
|
5410
|
+
export declare const UiTableCaption: __VLS_WithTemplateSlots_98<typeof __VLS_component_98, __VLS_TemplateResult_98["slots"]>;
|
|
4290
5411
|
|
|
4291
|
-
export declare const UiTableCell:
|
|
5412
|
+
export declare const UiTableCell: __VLS_WithTemplateSlots_97<typeof __VLS_component_97, __VLS_TemplateResult_97["slots"]>;
|
|
4292
5413
|
|
|
4293
5414
|
/**
|
|
4294
5415
|
* Props for UiTableCell component.
|
|
@@ -4305,7 +5426,7 @@ export declare interface UiTableCellProps {
|
|
|
4305
5426
|
rowspan?: number;
|
|
4306
5427
|
}
|
|
4307
5428
|
|
|
4308
|
-
export declare const UiTableEmpty:
|
|
5429
|
+
export declare const UiTableEmpty: __VLS_WithTemplateSlots_99<typeof __VLS_component_99, __VLS_TemplateResult_99["slots"]>;
|
|
4309
5430
|
|
|
4310
5431
|
/**
|
|
4311
5432
|
* Props for UiTableEmpty component.
|
|
@@ -4320,11 +5441,11 @@ export declare interface UiTableEmptyProps {
|
|
|
4320
5441
|
colspan?: number;
|
|
4321
5442
|
}
|
|
4322
5443
|
|
|
4323
|
-
export declare const UiTableFooter:
|
|
5444
|
+
export declare const UiTableFooter: __VLS_WithTemplateSlots_94<typeof __VLS_component_94, __VLS_TemplateResult_94["slots"]>;
|
|
4324
5445
|
|
|
4325
|
-
export declare const UiTableHead:
|
|
5446
|
+
export declare const UiTableHead: __VLS_WithTemplateSlots_96<typeof __VLS_component_96, __VLS_TemplateResult_96["slots"]>;
|
|
4326
5447
|
|
|
4327
|
-
export declare const UiTableHeader:
|
|
5448
|
+
export declare const UiTableHeader: __VLS_WithTemplateSlots_92<typeof __VLS_component_92, __VLS_TemplateResult_92["slots"]>;
|
|
4328
5449
|
|
|
4329
5450
|
/**
|
|
4330
5451
|
* Props for UiTableHead component.
|
|
@@ -4346,12 +5467,11 @@ export declare interface UiTableHeadProps {
|
|
|
4346
5467
|
scope?: 'col' | 'row' | 'colgroup' | 'rowgroup';
|
|
4347
5468
|
}
|
|
4348
5469
|
|
|
4349
|
-
export declare const UiTableRow:
|
|
5470
|
+
export declare const UiTableRow: __VLS_WithTemplateSlots_95<typeof __VLS_component_95, __VLS_TemplateResult_95["slots"]>;
|
|
4350
5471
|
|
|
4351
5472
|
/**
|
|
4352
5473
|
* A basic HTML table with styled rows, headers, and cells. Use for
|
|
4353
5474
|
* simple tabular data without sorting, filtering, or pagination needs.
|
|
4354
|
-
*
|
|
4355
5475
|
* @category Layout
|
|
4356
5476
|
* @useCases simple data display, static table, price list, comparison table
|
|
4357
5477
|
* @keywords table, row, cell, header, grid, data, tabular
|
|
@@ -4366,14 +5486,14 @@ export declare interface UiTableRowProps {
|
|
|
4366
5486
|
selected?: boolean;
|
|
4367
5487
|
}
|
|
4368
5488
|
|
|
4369
|
-
export declare const UiTabs:
|
|
5489
|
+
export declare const UiTabs: __VLS_WithTemplateSlots_100<typeof __VLS_component_100, __VLS_TemplateResult_100["slots"]>;
|
|
4370
5490
|
|
|
4371
5491
|
/**
|
|
4372
5492
|
* Activation mode for tabs.
|
|
4373
5493
|
*/
|
|
4374
5494
|
export declare type UiTabsActivationMode = 'automatic' | 'manual';
|
|
4375
5495
|
|
|
4376
|
-
export declare const UiTabsContent:
|
|
5496
|
+
export declare const UiTabsContent: __VLS_WithTemplateSlots_103<typeof __VLS_component_103, __VLS_TemplateResult_103["slots"]>;
|
|
4377
5497
|
|
|
4378
5498
|
/**
|
|
4379
5499
|
* Props for the UiTabsContent component.
|
|
@@ -4396,7 +5516,7 @@ export declare type UiTabsEmits = {
|
|
|
4396
5516
|
'update:modelValue': [value: string];
|
|
4397
5517
|
};
|
|
4398
5518
|
|
|
4399
|
-
export declare const UiTabsList:
|
|
5519
|
+
export declare const UiTabsList: __VLS_WithTemplateSlots_101<typeof __VLS_component_101, __VLS_TemplateResult_101["slots"]>;
|
|
4400
5520
|
|
|
4401
5521
|
/**
|
|
4402
5522
|
* Props for the UiTabsList component.
|
|
@@ -4412,7 +5532,6 @@ export declare type UiTabsOrientation = 'horizontal' | 'vertical';
|
|
|
4412
5532
|
/**
|
|
4413
5533
|
* Tabbed navigation for switching between content panels. Use for
|
|
4414
5534
|
* organizing related content into separate views.
|
|
4415
|
-
*
|
|
4416
5535
|
* @category Navigation
|
|
4417
5536
|
* @useCases content sections, view switcher, settings tabs, navigation
|
|
4418
5537
|
* @keywords tabs, tablist, panel, navigation, switch, section
|
|
@@ -4431,7 +5550,7 @@ export declare type UiTabsProps = {
|
|
|
4431
5550
|
activationMode?: UiTabsActivationMode;
|
|
4432
5551
|
};
|
|
4433
5552
|
|
|
4434
|
-
export declare const UiTabsTrigger:
|
|
5553
|
+
export declare const UiTabsTrigger: __VLS_WithTemplateSlots_102<typeof __VLS_component_102, __VLS_TemplateResult_102["slots"]>;
|
|
4435
5554
|
|
|
4436
5555
|
/**
|
|
4437
5556
|
* Props for the UiTabsTrigger component.
|
|
@@ -4443,21 +5562,81 @@ export declare type UiTabsTriggerProps = {
|
|
|
4443
5562
|
disabled?: boolean;
|
|
4444
5563
|
};
|
|
4445
5564
|
|
|
5565
|
+
export declare const UiTagsInput: __VLS_WithTemplateSlots_104<typeof __VLS_component_104, __VLS_TemplateResult_104["slots"]>;
|
|
5566
|
+
|
|
5567
|
+
export declare const UiTagsInputInput: DefineComponent<UiTagsInputInputProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<UiTagsInputInputProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
5568
|
+
|
|
5569
|
+
/**
|
|
5570
|
+
* Props for the UiTagsInputInput component.
|
|
5571
|
+
* The text input field for entering new tags.
|
|
5572
|
+
*/
|
|
5573
|
+
export declare interface UiTagsInputInputProps {
|
|
5574
|
+
/**
|
|
5575
|
+
* Placeholder text for the input field.
|
|
5576
|
+
*/
|
|
5577
|
+
placeholder?: string;
|
|
5578
|
+
}
|
|
5579
|
+
|
|
5580
|
+
export declare const UiTagsInputItem: __VLS_WithTemplateSlots_105<typeof __VLS_component_105, __VLS_TemplateResult_105["slots"]>;
|
|
5581
|
+
|
|
5582
|
+
export declare const UiTagsInputItemDelete: __VLS_WithTemplateSlots_106<typeof __VLS_component_106, __VLS_TemplateResult_106["slots"]>;
|
|
5583
|
+
|
|
5584
|
+
/**
|
|
5585
|
+
* Props for the UiTagsInputItemDelete component.
|
|
5586
|
+
* The delete button for removing a tag.
|
|
5587
|
+
*/
|
|
5588
|
+
export declare type UiTagsInputItemDeleteProps = Record<string, never>;
|
|
5589
|
+
|
|
5590
|
+
/**
|
|
5591
|
+
* Props for the UiTagsInputItem component.
|
|
5592
|
+
* Represents a single tag in the input.
|
|
5593
|
+
*/
|
|
5594
|
+
export declare interface UiTagsInputItemProps {
|
|
5595
|
+
/**
|
|
5596
|
+
* The value of the tag item.
|
|
5597
|
+
*/
|
|
5598
|
+
value: string;
|
|
5599
|
+
/**
|
|
5600
|
+
* Whether the tag is disabled.
|
|
5601
|
+
* @default false
|
|
5602
|
+
*/
|
|
5603
|
+
disabled?: boolean;
|
|
5604
|
+
}
|
|
5605
|
+
|
|
5606
|
+
export declare const UiTagsInputItemText: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
5607
|
+
|
|
5608
|
+
/**
|
|
5609
|
+
* Props for the UiTagsInputItemText component.
|
|
5610
|
+
* Displays the text content of a tag.
|
|
5611
|
+
*/
|
|
5612
|
+
export declare type UiTagsInputItemTextProps = Record<string, never>;
|
|
5613
|
+
|
|
5614
|
+
/**
|
|
5615
|
+
* A tags input component that renders tags inside an input, followed by an actual text input.
|
|
5616
|
+
* Use for entering multiple values like tags, keywords, or email addresses.
|
|
5617
|
+
* @category Form Inputs
|
|
5618
|
+
* @useCases tag entry, keyword input, email list, multi-value input, chip input
|
|
5619
|
+
* @keywords tags, input, chips, tokens, multi, keywords, labels
|
|
5620
|
+
* @related UiInput, UiBadge
|
|
5621
|
+
* @augments TagsInputRootProps
|
|
5622
|
+
*/
|
|
5623
|
+
export declare interface UiTagsInputProps extends Omit<TagsInputRootProps, 'class' | 'modelValue'> {
|
|
5624
|
+
}
|
|
5625
|
+
|
|
4446
5626
|
export declare const UiTemplatePlaceholder: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
4447
5627
|
|
|
4448
|
-
export declare const UiTextarea: DefineComponent<
|
|
5628
|
+
export declare const UiTextarea: DefineComponent<__VLS_PublicProps_14, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
4449
5629
|
"update:modelValue": (value: string) => any;
|
|
4450
|
-
}, string, PublicProps, Readonly<
|
|
5630
|
+
}, string, PublicProps, Readonly<__VLS_PublicProps_14> & Readonly<{
|
|
4451
5631
|
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
4452
5632
|
}>, {
|
|
4453
|
-
placeholder: string;
|
|
4454
5633
|
disabled: boolean;
|
|
5634
|
+
placeholder: string;
|
|
4455
5635
|
}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLTextAreaElement>;
|
|
4456
5636
|
|
|
4457
5637
|
/**
|
|
4458
5638
|
* A multi-line text input for longer content. Use for comments,
|
|
4459
5639
|
* descriptions, messages, or any text that may span multiple lines.
|
|
4460
|
-
*
|
|
4461
5640
|
* @category Form Inputs
|
|
4462
5641
|
* @useCases comment box, message input, description field, notes, bio
|
|
4463
5642
|
* @keywords textarea, multiline, text, comment, message, description, form
|
|
@@ -4485,14 +5664,210 @@ export declare interface UiTextareaProps {
|
|
|
4485
5664
|
required?: boolean;
|
|
4486
5665
|
}
|
|
4487
5666
|
|
|
4488
|
-
export declare const
|
|
5667
|
+
export declare const UiToggle: __VLS_WithTemplateSlots_107<typeof __VLS_component_107, __VLS_TemplateResult_107["slots"]>;
|
|
5668
|
+
|
|
5669
|
+
export declare const UiToggleGroup: <T extends "single" | "multiple">(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
|
|
5670
|
+
props: __VLS_PrettifyLocal<Pick<Partial<{}> & Omit<{
|
|
5671
|
+
readonly "onUpdate:modelValue"?: ((value: UiToggleGroupModelValue<T>) => any) | undefined;
|
|
5672
|
+
} & VNodeProps & AllowedComponentProps & ComponentCustomProps, never>, "onUpdate:modelValue"> & ({
|
|
5673
|
+
modelValue?: UiToggleGroupModelValue<T>;
|
|
5674
|
+
} & UiToggleGroupBaseProps & {
|
|
5675
|
+
/**
|
|
5676
|
+
* The selection mode.
|
|
5677
|
+
* - `'single'` → only one item selected; `v-model` is `string`
|
|
5678
|
+
* - `'multiple'` → many items selected; `v-model` is `string[]`
|
|
5679
|
+
*/
|
|
5680
|
+
type: T;
|
|
5681
|
+
/**
|
|
5682
|
+
* The default value when initially rendered (uncontrolled mode).
|
|
5683
|
+
*/
|
|
5684
|
+
defaultValue?: UiToggleGroupModelValue<T>;
|
|
5685
|
+
}) & Partial<{}>> & PublicProps;
|
|
5686
|
+
expose(exposed: ShallowUnwrapRef< {}>): void;
|
|
5687
|
+
attrs: any;
|
|
5688
|
+
slots: {
|
|
5689
|
+
default?(_: {}): any;
|
|
5690
|
+
};
|
|
5691
|
+
emit: (evt: "update:modelValue", value: UiToggleGroupModelValue<T>) => void;
|
|
5692
|
+
}>) => VNode & {
|
|
5693
|
+
__ctx?: Awaited<typeof __VLS_setup>;
|
|
5694
|
+
};
|
|
5695
|
+
|
|
5696
|
+
/**
|
|
5697
|
+
* Base props shared by both single and multiple toggle groups.
|
|
5698
|
+
*/
|
|
5699
|
+
declare interface UiToggleGroupBaseProps {
|
|
5700
|
+
/**
|
|
5701
|
+
* Whether the entire group is disabled.
|
|
5702
|
+
* @default false
|
|
5703
|
+
*/
|
|
5704
|
+
disabled?: boolean;
|
|
5705
|
+
/**
|
|
5706
|
+
* The visual style variant applied to all items.
|
|
5707
|
+
* @default 'default'
|
|
5708
|
+
*/
|
|
5709
|
+
variant?: 'default' | 'outline';
|
|
5710
|
+
/**
|
|
5711
|
+
* The size applied to all items.
|
|
5712
|
+
* @default 'default'
|
|
5713
|
+
*/
|
|
5714
|
+
size?: 'default' | 'sm' | 'lg';
|
|
5715
|
+
/**
|
|
5716
|
+
* Whether navigation loops from last item to first and vice versa.
|
|
5717
|
+
* @default true
|
|
5718
|
+
*/
|
|
5719
|
+
loop?: boolean;
|
|
5720
|
+
/**
|
|
5721
|
+
* Whether roving focus is enabled for keyboard navigation.
|
|
5722
|
+
* @default true
|
|
5723
|
+
*/
|
|
5724
|
+
rovingFocus?: boolean;
|
|
5725
|
+
/**
|
|
5726
|
+
* The orientation of the toggle group for keyboard navigation.
|
|
5727
|
+
* @default 'horizontal'
|
|
5728
|
+
*/
|
|
5729
|
+
orientation?: 'horizontal' | 'vertical';
|
|
5730
|
+
}
|
|
5731
|
+
|
|
5732
|
+
export declare const UiToggleGroupItem: __VLS_WithTemplateSlots_108<typeof __VLS_component_108, __VLS_TemplateResult_108["slots"]>;
|
|
5733
|
+
|
|
5734
|
+
/**
|
|
5735
|
+
* An item within a toggle group.
|
|
5736
|
+
*/
|
|
5737
|
+
export declare interface UiToggleGroupItemProps {
|
|
5738
|
+
/**
|
|
5739
|
+
* The unique value for the toggle item.
|
|
5740
|
+
*/
|
|
5741
|
+
value: string;
|
|
5742
|
+
/**
|
|
5743
|
+
* Whether this item is disabled.
|
|
5744
|
+
* @default false
|
|
5745
|
+
*/
|
|
5746
|
+
disabled?: boolean;
|
|
5747
|
+
/**
|
|
5748
|
+
* Override the variant for this specific item.
|
|
5749
|
+
*/
|
|
5750
|
+
variant?: 'default' | 'outline';
|
|
5751
|
+
/**
|
|
5752
|
+
* Override the size for this specific item.
|
|
5753
|
+
*/
|
|
5754
|
+
size?: 'default' | 'sm' | 'lg';
|
|
5755
|
+
}
|
|
5756
|
+
|
|
5757
|
+
/**
|
|
5758
|
+
* Conditional helper that maps the `type` discriminant to the correct value type.
|
|
5759
|
+
* - `'single'` → `string`
|
|
5760
|
+
* - `'multiple'` → `string[]`
|
|
5761
|
+
*
|
|
5762
|
+
* Used by the generic `UiToggleGroup` component to enforce that
|
|
5763
|
+
* `v-model` / `defaultValue` match the `type` prop at the template level.
|
|
5764
|
+
*/
|
|
5765
|
+
declare type UiToggleGroupModelValue<T extends 'single' | 'multiple'> = T extends 'single' ? string : string[];
|
|
5766
|
+
|
|
5767
|
+
/**
|
|
5768
|
+
* Props for multiple selection toggle group.
|
|
5769
|
+
* Multiple items can be selected simultaneously.
|
|
5770
|
+
* @category Form Inputs
|
|
5771
|
+
* @useCases text formatting, filters, feature toggles
|
|
5772
|
+
* @keywords toggle, group, multiple, multi-select, checkbox
|
|
5773
|
+
* @related UiToggle, UiCheckbox
|
|
5774
|
+
*/
|
|
5775
|
+
declare interface UiToggleGroupMultipleProps extends UiToggleGroupBaseProps {
|
|
5776
|
+
/**
|
|
5777
|
+
* Multiple selection mode - multiple items can be selected.
|
|
5778
|
+
*/
|
|
5779
|
+
type: 'multiple';
|
|
5780
|
+
/**
|
|
5781
|
+
* The controlled array of selected item values. Use with v-model.
|
|
5782
|
+
*/
|
|
5783
|
+
modelValue?: string[];
|
|
5784
|
+
/**
|
|
5785
|
+
* The default values when initially rendered (uncontrolled mode).
|
|
5786
|
+
*/
|
|
5787
|
+
defaultValue?: string[];
|
|
5788
|
+
}
|
|
5789
|
+
|
|
5790
|
+
/**
|
|
5791
|
+
* A set of two-state buttons that can be toggled on or off.
|
|
5792
|
+
* Use for toolbar actions, formatting options, or any grouped toggle selections.
|
|
5793
|
+
*
|
|
5794
|
+
* This is a discriminated union type keyed by `type`:
|
|
5795
|
+
* - `type: 'single'` → `modelValue` is `string`
|
|
5796
|
+
* - `type: 'multiple'` → `modelValue` is `string[]`
|
|
5797
|
+
* @category Form Inputs
|
|
5798
|
+
* @useCases toolbar buttons, text formatting, view options, filter toggles
|
|
5799
|
+
* @keywords toggle, group, button, pressed, on, off, state, multiple, single
|
|
5800
|
+
* @related UiToggle, UiButton, UiRadioGroup
|
|
5801
|
+
*/
|
|
5802
|
+
export declare type UiToggleGroupProps = UiToggleGroupSingleProps | UiToggleGroupMultipleProps;
|
|
5803
|
+
|
|
5804
|
+
/**
|
|
5805
|
+
* Props for single selection toggle group.
|
|
5806
|
+
* Only one item can be selected at a time.
|
|
5807
|
+
* @category Form Inputs
|
|
5808
|
+
* @useCases view toggles, alignment, exclusive options
|
|
5809
|
+
* @keywords toggle, group, single, select, exclusive, radio
|
|
5810
|
+
* @related UiToggle, UiRadioGroup
|
|
5811
|
+
*/
|
|
5812
|
+
declare interface UiToggleGroupSingleProps extends UiToggleGroupBaseProps {
|
|
5813
|
+
/**
|
|
5814
|
+
* Single selection mode - only one item can be selected.
|
|
5815
|
+
*/
|
|
5816
|
+
type: 'single';
|
|
5817
|
+
/**
|
|
5818
|
+
* The controlled value of the selected item. Use with v-model.
|
|
5819
|
+
*/
|
|
5820
|
+
modelValue?: string;
|
|
5821
|
+
/**
|
|
5822
|
+
* The default value when initially rendered (uncontrolled mode).
|
|
5823
|
+
*/
|
|
5824
|
+
defaultValue?: string;
|
|
5825
|
+
}
|
|
5826
|
+
|
|
5827
|
+
/**
|
|
5828
|
+
* A two-state button that can be toggled on or off.
|
|
5829
|
+
* Use for enabling/disabling features or switching between states.
|
|
5830
|
+
* @category Form Inputs
|
|
5831
|
+
* @useCases toolbar button, formatting toggle, view toggle, filter toggle
|
|
5832
|
+
* @keywords toggle, button, pressed, on, off, state
|
|
5833
|
+
* @related UiSwitch, UiButton, UiCheckbox
|
|
5834
|
+
*/
|
|
5835
|
+
export declare interface UiToggleProps {
|
|
5836
|
+
/**
|
|
5837
|
+
* The controlled pressed state of the toggle. Use with v-model.
|
|
5838
|
+
*/
|
|
5839
|
+
modelValue?: boolean;
|
|
5840
|
+
/**
|
|
5841
|
+
* The pressed state when initially rendered (uncontrolled mode).
|
|
5842
|
+
* Use when you do not need to control its state.
|
|
5843
|
+
*/
|
|
5844
|
+
defaultValue?: boolean;
|
|
5845
|
+
/**
|
|
5846
|
+
* Whether the toggle is disabled.
|
|
5847
|
+
* @default false
|
|
5848
|
+
*/
|
|
5849
|
+
disabled?: boolean;
|
|
5850
|
+
/**
|
|
5851
|
+
* The visual style variant.
|
|
5852
|
+
* @default 'default'
|
|
5853
|
+
*/
|
|
5854
|
+
variant?: 'default' | 'outline';
|
|
5855
|
+
/**
|
|
5856
|
+
* The size of the toggle.
|
|
5857
|
+
* @default 'default'
|
|
5858
|
+
*/
|
|
5859
|
+
size?: 'default' | 'sm' | 'lg';
|
|
5860
|
+
}
|
|
5861
|
+
|
|
5862
|
+
export declare const UiTooltip: __VLS_WithTemplateSlots_109<typeof __VLS_component_109, __VLS_TemplateResult_109["slots"]>;
|
|
4489
5863
|
|
|
4490
5864
|
export declare type UiTooltipAlign = 'start' | 'center' | 'end';
|
|
4491
5865
|
|
|
5866
|
+
export declare const UiTooltipContent: __VLS_WithTemplateSlots_111<typeof __VLS_component_111, __VLS_TemplateResult_111["slots"]>;
|
|
5867
|
+
|
|
4492
5868
|
/**
|
|
4493
5869
|
* A popup that displays information on hover or focus. Use for
|
|
4494
5870
|
* explaining icons, providing hints, or showing additional context.
|
|
4495
|
-
*
|
|
4496
5871
|
* @category Overlays
|
|
4497
5872
|
* @useCases icon explanation, help text, additional info, hints
|
|
4498
5873
|
* @keywords tooltip, hint, hover, popup, info, help, explanation
|
|
@@ -4534,6 +5909,12 @@ export declare interface UiTooltipProps {
|
|
|
4534
5909
|
disabled?: boolean;
|
|
4535
5910
|
}
|
|
4536
5911
|
|
|
5912
|
+
export declare const UiTooltipProvider: __VLS_WithTemplateSlots_112<typeof __VLS_component_112, __VLS_TemplateResult_112["slots"]>;
|
|
5913
|
+
|
|
5914
|
+
export declare const UiTooltipRoot: __VLS_WithTemplateSlots_110<typeof __VLS_component_110, __VLS_TemplateResult_110["slots"]>;
|
|
5915
|
+
|
|
4537
5916
|
export declare type UiTooltipSides = 'top' | 'right' | 'bottom' | 'left';
|
|
4538
5917
|
|
|
5918
|
+
export declare const UiTooltipTrigger: __VLS_WithTemplateSlots_113<typeof __VLS_component_113, __VLS_TemplateResult_113["slots"]>;
|
|
5919
|
+
|
|
4539
5920
|
export { }
|