@vue-pdf-viewer/viewer 3.0.0-alpha.5 → 3.0.0-alpha.6

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.
Files changed (180) hide show
  1. package/dist/index.js +120 -120
  2. package/dist/index.umd.cjs +2 -2
  3. package/dist/types/assets/pdf-annotations/index.d.ts +2 -0
  4. package/dist/types/components/AppButton.vue.d.ts +18 -0
  5. package/dist/types/components/AppFormControl.vue.d.ts +30 -0
  6. package/dist/types/components/AppIcon.vue.d.ts +15 -0
  7. package/dist/types/components/AppInput.vue.d.ts +12 -0
  8. package/dist/types/components/AppLoader.vue.d.ts +19 -0
  9. package/dist/types/components/AppPopover.vue.d.ts +93 -0
  10. package/dist/types/components/AppTooltip.vue.d.ts +34 -0
  11. package/dist/types/components/ColorButton.vue.d.ts +15 -0
  12. package/dist/types/components/DragFileMask.vue.d.ts +55 -0
  13. package/dist/types/components/FreeTextPanel.vue.d.ts +16 -0
  14. package/dist/types/components/FreeTextPanelFontColors.vue.d.ts +2 -0
  15. package/dist/types/components/FreeTextPanelFontFamilySelector.vue.d.ts +2 -0
  16. package/dist/types/components/FreeTextPanelFontSizeSelector.vue.d.ts +2 -0
  17. package/dist/types/components/FreeTextPanelTextStyle.vue.d.ts +2 -0
  18. package/dist/types/components/HighlightColorPicker.vue.d.ts +2 -0
  19. package/dist/types/components/LayerAnnotation.vue.d.ts +47 -0
  20. package/dist/types/components/LayerAnnotationEditor.vue.d.ts +26 -0
  21. package/dist/types/components/LayerAnnotationEditorFreeText.vue.d.ts +34 -0
  22. package/dist/types/components/LayerAnnotationEditorFreeTextItem.vue.d.ts +20 -0
  23. package/dist/types/components/LayerAnnotationEditorHighlight.vue.d.ts +37 -0
  24. package/dist/types/components/LayerAnnotationEditorHighlightItem.vue.d.ts +26 -0
  25. package/dist/types/components/LayerAnnotationEditorImage.vue.d.ts +28 -0
  26. package/dist/types/components/LayerAnnotationStampResizer.vue.d.ts +28 -0
  27. package/dist/types/components/LayerCanvas.vue.d.ts +25 -0
  28. package/dist/types/components/LayerText.vue.d.ts +30 -0
  29. package/dist/types/components/LayerTextHighlight.vue.d.ts +20 -0
  30. package/dist/types/components/LayerTextSearchHighlight.vue.d.ts +19 -0
  31. package/dist/types/components/LayerXFA.vue.d.ts +23 -0
  32. package/dist/types/components/ModalPassword.vue.d.ts +19 -0
  33. package/dist/types/components/ModalPdfProperties.vue.d.ts +18 -0
  34. package/dist/types/components/ModalPrintLoadingProgress.vue.d.ts +20 -0
  35. package/dist/types/components/Signatures.vue.d.ts +2 -0
  36. package/dist/types/components/SwitchAppearance.vue.d.ts +23 -0
  37. package/dist/types/components/ToolCommentPanel.vue.d.ts +31 -0
  38. package/dist/types/components/ToolDownload.vue.d.ts +21 -0
  39. package/dist/types/components/ToolFullscreen.vue.d.ts +22 -0
  40. package/dist/types/components/ToolMenuOthers.vue.d.ts +88 -0
  41. package/dist/types/components/ToolMenuOthersMobile.vue.d.ts +21 -0
  42. package/dist/types/components/ToolOpenFile.vue.d.ts +21 -0
  43. package/dist/types/components/ToolOpenFileInput.vue.d.ts +11 -0
  44. package/dist/types/components/ToolPagination.vue.d.ts +68 -0
  45. package/dist/types/components/ToolPrint.vue.d.ts +35 -0
  46. package/dist/types/components/ToolSearch.vue.d.ts +73 -0
  47. package/dist/types/components/ToolThumbnail.vue.d.ts +43 -0
  48. package/dist/types/components/ToolZoom.vue.d.ts +55 -0
  49. package/dist/types/components/ToolZoomPercentageMenu.vue.d.ts +25 -0
  50. package/dist/types/components/VPdfComments.vue.d.ts +28 -0
  51. package/dist/types/components/VPdfCommentsDate.vue.d.ts +15 -0
  52. package/dist/types/components/VPdfCommentsHeader.vue.d.ts +16 -0
  53. package/dist/types/components/VPdfCommentsIcon.vue.d.ts +16 -0
  54. package/dist/types/components/VPdfCommentsReplies.vue.d.ts +16 -0
  55. package/dist/types/components/VPdfCommentsSidebar.vue.d.ts +15 -0
  56. package/dist/types/components/VPdfCommentsText.vue.d.ts +2 -0
  57. package/dist/types/components/VPdfPage.vue.d.ts +44 -0
  58. package/dist/types/components/VPdfSplitter.vue.d.ts +2 -0
  59. package/dist/types/components/VPdfThumbnail.vue.d.ts +26 -0
  60. package/dist/types/components/VPdfThumbnails.vue.d.ts +22 -0
  61. package/dist/types/components/VPdfViewer.vue.d.ts +606 -0
  62. package/dist/types/components/index.d.ts +4 -0
  63. package/dist/types/components/ui/button/Button.vue.d.ts +52 -0
  64. package/dist/types/components/ui/button/index.d.ts +7 -0
  65. package/dist/types/components/ui/checkbox/Checkbox.vue.d.ts +35 -0
  66. package/dist/types/components/ui/checkbox/index.d.ts +1 -0
  67. package/dist/types/components/ui/collapsible/Collapsible.vue.d.ts +30 -0
  68. package/dist/types/components/ui/collapsible/CollapsibleContent.vue.d.ts +28 -0
  69. package/dist/types/components/ui/collapsible/CollapsibleTrigger.vue.d.ts +28 -0
  70. package/dist/types/components/ui/collapsible/index.d.ts +3 -0
  71. package/dist/types/components/ui/dialog/Dialog.vue.d.ts +28 -0
  72. package/dist/types/components/ui/dialog/DialogClose.vue.d.ts +28 -0
  73. package/dist/types/components/ui/dialog/DialogContent.vue.d.ts +35 -0
  74. package/dist/types/components/ui/dialog/DialogDescription.vue.d.ts +35 -0
  75. package/dist/types/components/ui/dialog/DialogFooter.vue.d.ts +34 -0
  76. package/dist/types/components/ui/dialog/DialogHeader.vue.d.ts +34 -0
  77. package/dist/types/components/ui/dialog/DialogTitle.vue.d.ts +35 -0
  78. package/dist/types/components/ui/dialog/DialogTrigger.vue.d.ts +28 -0
  79. package/dist/types/components/ui/dialog/index.d.ts +8 -0
  80. package/dist/types/components/ui/dropdown-menu/DropdownMenu.vue.d.ts +28 -0
  81. package/dist/types/components/ui/dropdown-menu/DropdownMenuCheckboxItem.vue.d.ts +35 -0
  82. package/dist/types/components/ui/dropdown-menu/DropdownMenuContent.vue.d.ts +52 -0
  83. package/dist/types/components/ui/dropdown-menu/DropdownMenuGroup.vue.d.ts +28 -0
  84. package/dist/types/components/ui/dropdown-menu/DropdownMenuItem.vue.d.ts +41 -0
  85. package/dist/types/components/ui/dropdown-menu/DropdownMenuLabel.vue.d.ts +38 -0
  86. package/dist/types/components/ui/dropdown-menu/DropdownMenuRadioGroup.vue.d.ts +28 -0
  87. package/dist/types/components/ui/dropdown-menu/DropdownMenuRadioItem.vue.d.ts +38 -0
  88. package/dist/types/components/ui/dropdown-menu/DropdownMenuSeparator.vue.d.ts +17 -0
  89. package/dist/types/components/ui/dropdown-menu/DropdownMenuShortcut.vue.d.ts +34 -0
  90. package/dist/types/components/ui/dropdown-menu/DropdownMenuSub.vue.d.ts +28 -0
  91. package/dist/types/components/ui/dropdown-menu/DropdownMenuSubContent.vue.d.ts +35 -0
  92. package/dist/types/components/ui/dropdown-menu/DropdownMenuSubTrigger.vue.d.ts +35 -0
  93. package/dist/types/components/ui/dropdown-menu/DropdownMenuTrigger.vue.d.ts +28 -0
  94. package/dist/types/components/ui/dropdown-menu/index.d.ts +15 -0
  95. package/dist/types/components/ui/input/Input.vue.d.ts +16 -0
  96. package/dist/types/components/ui/input/index.d.ts +7 -0
  97. package/dist/types/components/ui/popover/Popover.vue.d.ts +28 -0
  98. package/dist/types/components/ui/popover/PopoverContent.vue.d.ts +64 -0
  99. package/dist/types/components/ui/popover/PopoverTrigger.vue.d.ts +28 -0
  100. package/dist/types/components/ui/popover/index.d.ts +3 -0
  101. package/dist/types/components/ui/progress/Progress.vue.d.ts +28 -0
  102. package/dist/types/components/ui/progress/index.d.ts +1 -0
  103. package/dist/types/components/ui/select/Select.vue.d.ts +28 -0
  104. package/dist/types/components/ui/select/SelectContent.vue.d.ts +52 -0
  105. package/dist/types/components/ui/select/SelectGroup.vue.d.ts +35 -0
  106. package/dist/types/components/ui/select/SelectItem.vue.d.ts +35 -0
  107. package/dist/types/components/ui/select/SelectItemText.vue.d.ts +28 -0
  108. package/dist/types/components/ui/select/SelectLabel.vue.d.ts +35 -0
  109. package/dist/types/components/ui/select/SelectScrollDownButton.vue.d.ts +35 -0
  110. package/dist/types/components/ui/select/SelectScrollUpButton.vue.d.ts +35 -0
  111. package/dist/types/components/ui/select/SelectSeparator.vue.d.ts +17 -0
  112. package/dist/types/components/ui/select/SelectTrigger.vue.d.ts +35 -0
  113. package/dist/types/components/ui/select/SelectValue.vue.d.ts +28 -0
  114. package/dist/types/components/ui/select/index.d.ts +11 -0
  115. package/dist/types/components/ui/toast/Toast.vue.d.ts +28 -0
  116. package/dist/types/components/ui/toast/ToastAction.vue.d.ts +35 -0
  117. package/dist/types/components/ui/toast/ToastClose.vue.d.ts +17 -0
  118. package/dist/types/components/ui/toast/ToastDescription.vue.d.ts +35 -0
  119. package/dist/types/components/ui/toast/ToastProvider.vue.d.ts +28 -0
  120. package/dist/types/components/ui/toast/ToastTitle.vue.d.ts +35 -0
  121. package/dist/types/components/ui/toast/ToastViewport.vue.d.ts +17 -0
  122. package/dist/types/components/ui/toast/Toaster.vue.d.ts +2 -0
  123. package/dist/types/components/ui/toast/index.d.ts +21 -0
  124. package/dist/types/components/ui/toast/use-toast.d.ts +272 -0
  125. package/dist/types/components/ui/tooltip/Tooltip.vue.d.ts +28 -0
  126. package/dist/types/components/ui/tooltip/TooltipContent.vue.d.ts +52 -0
  127. package/dist/types/components/ui/tooltip/TooltipProvider.vue.d.ts +28 -0
  128. package/dist/types/components/ui/tooltip/TooltipTrigger.vue.d.ts +28 -0
  129. package/dist/types/components/ui/tooltip/index.d.ts +4 -0
  130. package/dist/types/components/utils/annotations.d.ts +5 -0
  131. package/dist/types/components/utils/destination.d.ts +7 -0
  132. package/dist/types/components/utils/helpers.d.ts +2 -0
  133. package/dist/types/components/utils/link_service.d.ts +71 -0
  134. package/dist/types/components/utils/sanitizeExternalURL.d.ts +1 -0
  135. package/dist/types/composables/useAnnotationDrag.d.ts +72 -0
  136. package/dist/types/composables/useAnnotationFreeText.d.ts +462 -0
  137. package/dist/types/composables/useAnnotationHighlight.d.ts +389 -0
  138. package/dist/types/composables/useAnnotationStamp.d.ts +493 -0
  139. package/dist/types/composables/useAnnotationStorage.d.ts +72 -0
  140. package/dist/types/composables/useDownload.d.ts +13 -0
  141. package/dist/types/composables/useHighlight.d.ts +11 -0
  142. package/dist/types/composables/useLicense.d.ts +22 -0
  143. package/dist/types/composables/usePdf.d.ts +28 -0
  144. package/dist/types/composables/usePdfComments.d.ts +5 -0
  145. package/dist/types/composables/usePdfPagesSizes.d.ts +8 -0
  146. package/dist/types/composables/usePdfProperties.d.ts +10 -0
  147. package/dist/types/composables/usePinch.d.ts +3 -0
  148. package/dist/types/composables/usePlugins.d.ts +252 -0
  149. package/dist/types/composables/usePrintControl.d.ts +22 -0
  150. package/dist/types/composables/usePrintProcess.d.ts +8 -0
  151. package/dist/types/composables/useRenderQueue.d.ts +13 -0
  152. package/dist/types/composables/useRequestAnimationFrame.d.ts +1 -0
  153. package/dist/types/composables/useRotation.d.ts +7 -0
  154. package/dist/types/composables/useScale.d.ts +21 -0
  155. package/dist/types/composables/useSearch.d.ts +5 -0
  156. package/dist/types/composables/useTextLayers.d.ts +5 -0
  157. package/dist/types/composables/useVirtualPages.d.ts +32 -0
  158. package/dist/types/composables/useVisibilities.d.ts +9 -0
  159. package/dist/types/const.d.ts +149 -0
  160. package/dist/types/index.d.ts +8 -0
  161. package/dist/types/utils/annotation-command.d.ts +18 -0
  162. package/dist/types/utils/annotation-display.d.ts +24 -0
  163. package/dist/types/utils/annotation-free-text.d.ts +4 -0
  164. package/dist/types/utils/annotation-highlight.d.ts +69 -0
  165. package/dist/types/utils/annotation-image.d.ts +111 -0
  166. package/dist/types/utils/annotation-pdf.d.ts +35 -0
  167. package/dist/types/utils/appConsole.d.ts +24 -0
  168. package/dist/types/utils/characters.d.ts +16 -0
  169. package/dist/types/utils/color.d.ts +4 -0
  170. package/dist/types/utils/convertPDFDate.d.ts +1 -0
  171. package/dist/types/utils/enumerators.d.ts +80 -0
  172. package/dist/types/utils/highlight.d.ts +8 -0
  173. package/dist/types/utils/promiseWithResolvers.d.ts +7 -0
  174. package/dist/types/utils/searchHighlight.d.ts +10 -0
  175. package/dist/types/utils/smoothScroll.d.ts +2 -0
  176. package/dist/types/utils/types.d.ts +724 -0
  177. package/dist/types/utils/uiViewer.d.ts +4 -0
  178. package/dist/types/utils/validators.d.ts +26 -0
  179. package/dist/types/utils.d.ts +20 -0
  180. package/package.json +3 -3
@@ -0,0 +1,35 @@
1
+ import type { SelectItemProps } from 'reka-ui';
2
+ import type { HTMLAttributes } from 'vue';
3
+ declare const _default: {
4
+ new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<SelectItemProps<import("reka-ui").AcceptableValue> & {
5
+ class?: HTMLAttributes['class'];
6
+ }>>> & Readonly<{}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").PublicProps, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
7
+ P: {};
8
+ B: {};
9
+ D: {};
10
+ C: {};
11
+ M: {};
12
+ Defaults: {};
13
+ }, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<SelectItemProps<import("reka-ui").AcceptableValue> & {
14
+ class?: HTMLAttributes['class'];
15
+ }>>> & Readonly<{}>, {}, {}, {}, {}, {}>;
16
+ __isFragment?: undefined;
17
+ __isTeleport?: undefined;
18
+ __isSuspense?: undefined;
19
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<SelectItemProps<import("reka-ui").AcceptableValue> & {
20
+ class?: HTMLAttributes['class'];
21
+ }>>> & Readonly<{}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
22
+ $slots: {
23
+ default: (_: {}) => any;
24
+ };
25
+ });
26
+ export default _default;
27
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
28
+ type __VLS_TypePropsToRuntimeProps<T> = {
29
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
30
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
31
+ } : {
32
+ type: import('vue').PropType<T[K]>;
33
+ required: true;
34
+ };
35
+ };
@@ -0,0 +1,28 @@
1
+ import type { SelectItemTextProps } from 'reka-ui';
2
+ declare const _default: {
3
+ new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<SelectItemTextProps>>> & Readonly<{}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").PublicProps, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
4
+ P: {};
5
+ B: {};
6
+ D: {};
7
+ C: {};
8
+ M: {};
9
+ Defaults: {};
10
+ }, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<SelectItemTextProps>>> & Readonly<{}>, {}, {}, {}, {}, {}>;
11
+ __isFragment?: undefined;
12
+ __isTeleport?: undefined;
13
+ __isSuspense?: undefined;
14
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<SelectItemTextProps>>> & Readonly<{}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
15
+ $slots: {
16
+ default: (_: {}) => any;
17
+ };
18
+ });
19
+ export default _default;
20
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
21
+ type __VLS_TypePropsToRuntimeProps<T> = {
22
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
23
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
24
+ } : {
25
+ type: import('vue').PropType<T[K]>;
26
+ required: true;
27
+ };
28
+ };
@@ -0,0 +1,35 @@
1
+ import type { SelectLabelProps } from 'reka-ui';
2
+ import type { HTMLAttributes } from 'vue';
3
+ declare const _default: {
4
+ new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<SelectLabelProps & {
5
+ class?: HTMLAttributes['class'];
6
+ }>>> & Readonly<{}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").PublicProps, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
7
+ P: {};
8
+ B: {};
9
+ D: {};
10
+ C: {};
11
+ M: {};
12
+ Defaults: {};
13
+ }, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<SelectLabelProps & {
14
+ class?: HTMLAttributes['class'];
15
+ }>>> & Readonly<{}>, {}, {}, {}, {}, {}>;
16
+ __isFragment?: undefined;
17
+ __isTeleport?: undefined;
18
+ __isSuspense?: undefined;
19
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<SelectLabelProps & {
20
+ class?: HTMLAttributes['class'];
21
+ }>>> & Readonly<{}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
22
+ $slots: {
23
+ default: (_: {}) => any;
24
+ };
25
+ });
26
+ export default _default;
27
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
28
+ type __VLS_TypePropsToRuntimeProps<T> = {
29
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
30
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
31
+ } : {
32
+ type: import('vue').PropType<T[K]>;
33
+ required: true;
34
+ };
35
+ };
@@ -0,0 +1,35 @@
1
+ import type { SelectScrollDownButtonProps } from 'reka-ui';
2
+ import type { HTMLAttributes } from 'vue';
3
+ declare const _default: {
4
+ new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<SelectScrollDownButtonProps & {
5
+ class?: HTMLAttributes['class'];
6
+ }>>> & Readonly<{}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").PublicProps, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
7
+ P: {};
8
+ B: {};
9
+ D: {};
10
+ C: {};
11
+ M: {};
12
+ Defaults: {};
13
+ }, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<SelectScrollDownButtonProps & {
14
+ class?: HTMLAttributes['class'];
15
+ }>>> & Readonly<{}>, {}, {}, {}, {}, {}>;
16
+ __isFragment?: undefined;
17
+ __isTeleport?: undefined;
18
+ __isSuspense?: undefined;
19
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<SelectScrollDownButtonProps & {
20
+ class?: HTMLAttributes['class'];
21
+ }>>> & Readonly<{}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
22
+ $slots: {
23
+ default: (_: {}) => any;
24
+ };
25
+ });
26
+ export default _default;
27
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
28
+ type __VLS_TypePropsToRuntimeProps<T> = {
29
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
30
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
31
+ } : {
32
+ type: import('vue').PropType<T[K]>;
33
+ required: true;
34
+ };
35
+ };
@@ -0,0 +1,35 @@
1
+ import type { SelectScrollUpButtonProps } from 'reka-ui';
2
+ import type { HTMLAttributes } from 'vue';
3
+ declare const _default: {
4
+ new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<SelectScrollUpButtonProps & {
5
+ class?: HTMLAttributes['class'];
6
+ }>>> & Readonly<{}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").PublicProps, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
7
+ P: {};
8
+ B: {};
9
+ D: {};
10
+ C: {};
11
+ M: {};
12
+ Defaults: {};
13
+ }, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<SelectScrollUpButtonProps & {
14
+ class?: HTMLAttributes['class'];
15
+ }>>> & Readonly<{}>, {}, {}, {}, {}, {}>;
16
+ __isFragment?: undefined;
17
+ __isTeleport?: undefined;
18
+ __isSuspense?: undefined;
19
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<SelectScrollUpButtonProps & {
20
+ class?: HTMLAttributes['class'];
21
+ }>>> & Readonly<{}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
22
+ $slots: {
23
+ default: (_: {}) => any;
24
+ };
25
+ });
26
+ export default _default;
27
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
28
+ type __VLS_TypePropsToRuntimeProps<T> = {
29
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
30
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
31
+ } : {
32
+ type: import('vue').PropType<T[K]>;
33
+ required: true;
34
+ };
35
+ };
@@ -0,0 +1,17 @@
1
+ import type { SelectSeparatorProps } from 'reka-ui';
2
+ import type { HTMLAttributes } from 'vue';
3
+ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<SelectSeparatorProps & {
4
+ class?: HTMLAttributes['class'];
5
+ }>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<SelectSeparatorProps & {
6
+ class?: HTMLAttributes['class'];
7
+ }>>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
8
+ export default _default;
9
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
10
+ type __VLS_TypePropsToRuntimeProps<T> = {
11
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
12
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
13
+ } : {
14
+ type: import('vue').PropType<T[K]>;
15
+ required: true;
16
+ };
17
+ };
@@ -0,0 +1,35 @@
1
+ import type { SelectTriggerProps } from 'reka-ui';
2
+ import type { HTMLAttributes } from 'vue';
3
+ declare const _default: {
4
+ new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<SelectTriggerProps & {
5
+ class?: HTMLAttributes['class'];
6
+ }>>> & Readonly<{}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").PublicProps, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
7
+ P: {};
8
+ B: {};
9
+ D: {};
10
+ C: {};
11
+ M: {};
12
+ Defaults: {};
13
+ }, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<SelectTriggerProps & {
14
+ class?: HTMLAttributes['class'];
15
+ }>>> & Readonly<{}>, {}, {}, {}, {}, {}>;
16
+ __isFragment?: undefined;
17
+ __isTeleport?: undefined;
18
+ __isSuspense?: undefined;
19
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<SelectTriggerProps & {
20
+ class?: HTMLAttributes['class'];
21
+ }>>> & Readonly<{}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
22
+ $slots: {
23
+ default: (_: {}) => any;
24
+ };
25
+ });
26
+ export default _default;
27
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
28
+ type __VLS_TypePropsToRuntimeProps<T> = {
29
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
30
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
31
+ } : {
32
+ type: import('vue').PropType<T[K]>;
33
+ required: true;
34
+ };
35
+ };
@@ -0,0 +1,28 @@
1
+ import type { SelectValueProps } from 'reka-ui';
2
+ declare const _default: {
3
+ new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<SelectValueProps>>> & Readonly<{}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").PublicProps, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
4
+ P: {};
5
+ B: {};
6
+ D: {};
7
+ C: {};
8
+ M: {};
9
+ Defaults: {};
10
+ }, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<SelectValueProps>>> & Readonly<{}>, {}, {}, {}, {}, {}>;
11
+ __isFragment?: undefined;
12
+ __isTeleport?: undefined;
13
+ __isSuspense?: undefined;
14
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<SelectValueProps>>> & Readonly<{}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
15
+ $slots: {
16
+ default: (_: {}) => any;
17
+ };
18
+ });
19
+ export default _default;
20
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
21
+ type __VLS_TypePropsToRuntimeProps<T> = {
22
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
23
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
24
+ } : {
25
+ type: import('vue').PropType<T[K]>;
26
+ required: true;
27
+ };
28
+ };
@@ -0,0 +1,11 @@
1
+ export { default as Select } from './Select.vue';
2
+ export { default as SelectContent } from './SelectContent.vue';
3
+ export { default as SelectGroup } from './SelectGroup.vue';
4
+ export { default as SelectItem } from './SelectItem.vue';
5
+ export { default as SelectItemText } from './SelectItemText.vue';
6
+ export { default as SelectLabel } from './SelectLabel.vue';
7
+ export { default as SelectScrollDownButton } from './SelectScrollDownButton.vue';
8
+ export { default as SelectScrollUpButton } from './SelectScrollUpButton.vue';
9
+ export { default as SelectSeparator } from './SelectSeparator.vue';
10
+ export { default as SelectTrigger } from './SelectTrigger.vue';
11
+ export { default as SelectValue } from './SelectValue.vue';
@@ -0,0 +1,28 @@
1
+ import { type ToastProps } from '.';
2
+ declare const _default: {
3
+ new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<ToastProps>>> & Readonly<{}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").PublicProps, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
4
+ P: {};
5
+ B: {};
6
+ D: {};
7
+ C: {};
8
+ M: {};
9
+ Defaults: {};
10
+ }, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<ToastProps>>> & Readonly<{}>, {}, {}, {}, {}, {}>;
11
+ __isFragment?: undefined;
12
+ __isTeleport?: undefined;
13
+ __isSuspense?: undefined;
14
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<ToastProps>>> & Readonly<{}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
15
+ $slots: {
16
+ default: (_: {}) => any;
17
+ };
18
+ });
19
+ export default _default;
20
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
21
+ type __VLS_TypePropsToRuntimeProps<T> = {
22
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
23
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
24
+ } : {
25
+ type: import('vue').PropType<T[K]>;
26
+ required: true;
27
+ };
28
+ };
@@ -0,0 +1,35 @@
1
+ import type { HTMLAttributes } from 'vue';
2
+ import { type ToastActionProps } from 'reka-ui';
3
+ declare const _default: {
4
+ new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<ToastActionProps & {
5
+ class?: HTMLAttributes['class'];
6
+ }>>> & Readonly<{}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").PublicProps, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
7
+ P: {};
8
+ B: {};
9
+ D: {};
10
+ C: {};
11
+ M: {};
12
+ Defaults: {};
13
+ }, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<ToastActionProps & {
14
+ class?: HTMLAttributes['class'];
15
+ }>>> & Readonly<{}>, {}, {}, {}, {}, {}>;
16
+ __isFragment?: undefined;
17
+ __isTeleport?: undefined;
18
+ __isSuspense?: undefined;
19
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<ToastActionProps & {
20
+ class?: HTMLAttributes['class'];
21
+ }>>> & Readonly<{}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
22
+ $slots: {
23
+ default: (_: {}) => any;
24
+ };
25
+ });
26
+ export default _default;
27
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
28
+ type __VLS_TypePropsToRuntimeProps<T> = {
29
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
30
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
31
+ } : {
32
+ type: import('vue').PropType<T[K]>;
33
+ required: true;
34
+ };
35
+ };
@@ -0,0 +1,17 @@
1
+ import type { HTMLAttributes } from 'vue';
2
+ import { type ToastCloseProps } from 'reka-ui';
3
+ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<ToastCloseProps & {
4
+ class?: HTMLAttributes['class'];
5
+ }>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<ToastCloseProps & {
6
+ class?: HTMLAttributes['class'];
7
+ }>>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
8
+ export default _default;
9
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
10
+ type __VLS_TypePropsToRuntimeProps<T> = {
11
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
12
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
13
+ } : {
14
+ type: import('vue').PropType<T[K]>;
15
+ required: true;
16
+ };
17
+ };
@@ -0,0 +1,35 @@
1
+ import type { HTMLAttributes } from 'vue';
2
+ import { type ToastDescriptionProps } from 'reka-ui';
3
+ declare const _default: {
4
+ new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<ToastDescriptionProps & {
5
+ class?: HTMLAttributes['class'];
6
+ }>>> & Readonly<{}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").PublicProps, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
7
+ P: {};
8
+ B: {};
9
+ D: {};
10
+ C: {};
11
+ M: {};
12
+ Defaults: {};
13
+ }, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<ToastDescriptionProps & {
14
+ class?: HTMLAttributes['class'];
15
+ }>>> & Readonly<{}>, {}, {}, {}, {}, {}>;
16
+ __isFragment?: undefined;
17
+ __isTeleport?: undefined;
18
+ __isSuspense?: undefined;
19
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<ToastDescriptionProps & {
20
+ class?: HTMLAttributes['class'];
21
+ }>>> & Readonly<{}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
22
+ $slots: {
23
+ default: (_: {}) => any;
24
+ };
25
+ });
26
+ export default _default;
27
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
28
+ type __VLS_TypePropsToRuntimeProps<T> = {
29
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
30
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
31
+ } : {
32
+ type: import('vue').PropType<T[K]>;
33
+ required: true;
34
+ };
35
+ };
@@ -0,0 +1,28 @@
1
+ import { type ToastProviderProps } from 'reka-ui';
2
+ declare const _default: {
3
+ new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<ToastProviderProps>>> & Readonly<{}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").PublicProps, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
4
+ P: {};
5
+ B: {};
6
+ D: {};
7
+ C: {};
8
+ M: {};
9
+ Defaults: {};
10
+ }, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<ToastProviderProps>>> & Readonly<{}>, {}, {}, {}, {}, {}>;
11
+ __isFragment?: undefined;
12
+ __isTeleport?: undefined;
13
+ __isSuspense?: undefined;
14
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<ToastProviderProps>>> & Readonly<{}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
15
+ $slots: {
16
+ default: (_: {}) => any;
17
+ };
18
+ });
19
+ export default _default;
20
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
21
+ type __VLS_TypePropsToRuntimeProps<T> = {
22
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
23
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
24
+ } : {
25
+ type: import('vue').PropType<T[K]>;
26
+ required: true;
27
+ };
28
+ };
@@ -0,0 +1,35 @@
1
+ import type { HTMLAttributes } from 'vue';
2
+ import { type ToastTitleProps } from 'reka-ui';
3
+ declare const _default: {
4
+ new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<ToastTitleProps & {
5
+ class?: HTMLAttributes['class'];
6
+ }>>> & Readonly<{}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").PublicProps, {}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
7
+ P: {};
8
+ B: {};
9
+ D: {};
10
+ C: {};
11
+ M: {};
12
+ Defaults: {};
13
+ }, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<ToastTitleProps & {
14
+ class?: HTMLAttributes['class'];
15
+ }>>> & Readonly<{}>, {}, {}, {}, {}, {}>;
16
+ __isFragment?: undefined;
17
+ __isTeleport?: undefined;
18
+ __isSuspense?: undefined;
19
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<ToastTitleProps & {
20
+ class?: HTMLAttributes['class'];
21
+ }>>> & Readonly<{}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
22
+ $slots: {
23
+ default: (_: {}) => any;
24
+ };
25
+ });
26
+ export default _default;
27
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
28
+ type __VLS_TypePropsToRuntimeProps<T> = {
29
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
30
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
31
+ } : {
32
+ type: import('vue').PropType<T[K]>;
33
+ required: true;
34
+ };
35
+ };
@@ -0,0 +1,17 @@
1
+ import type { HTMLAttributes } from 'vue';
2
+ import { type ToastViewportProps } from 'reka-ui';
3
+ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<ToastViewportProps & {
4
+ class?: HTMLAttributes['class'];
5
+ }>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<ToastViewportProps & {
6
+ class?: HTMLAttributes['class'];
7
+ }>>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
8
+ export default _default;
9
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
10
+ type __VLS_TypePropsToRuntimeProps<T> = {
11
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
12
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
13
+ } : {
14
+ type: import('vue').PropType<T[K]>;
15
+ required: true;
16
+ };
17
+ };
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ export default _default;
@@ -0,0 +1,21 @@
1
+ import type { ToastRootProps } from 'reka-ui';
2
+ import type { HTMLAttributes } from 'vue';
3
+ export { default as Toast } from './Toast.vue';
4
+ export { default as ToastAction } from './ToastAction.vue';
5
+ export { default as ToastClose } from './ToastClose.vue';
6
+ export { default as ToastDescription } from './ToastDescription.vue';
7
+ export { default as Toaster } from './Toaster.vue';
8
+ export { default as ToastProvider } from './ToastProvider.vue';
9
+ export { default as ToastTitle } from './ToastTitle.vue';
10
+ export { default as ToastViewport } from './ToastViewport.vue';
11
+ export { toast, useToast } from './use-toast';
12
+ import { type VariantProps } from 'class-variance-authority';
13
+ export declare const toastVariants: (props?: ({
14
+ variant?: "default" | "destructive" | null | undefined;
15
+ } & import("class-variance-authority/dist/types").ClassProp) | undefined) => string;
16
+ type ToastVariants = VariantProps<typeof toastVariants>;
17
+ export interface ToastProps extends ToastRootProps {
18
+ class?: HTMLAttributes['class'];
19
+ variant?: ToastVariants['variant'];
20
+ onOpenChange?: ((value: boolean) => void) | undefined;
21
+ }