@roku-ui/vue 0.8.4 → 0.8.5

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 (41) hide show
  1. package/dist/components/AspectRatio.vue.d.ts +17 -15
  2. package/dist/components/Avatar.vue.d.ts +11 -10
  3. package/dist/components/Btn.vue.d.ts +33 -31
  4. package/dist/components/BtnGroup.vue.d.ts +37 -0
  5. package/dist/components/ChatContainer.vue.d.ts +4 -2
  6. package/dist/components/ChatMessage.vue.d.ts +19 -17
  7. package/dist/components/ChatSystem.vue.d.ts +16 -14
  8. package/dist/components/Chip.vue.d.ts +14 -12
  9. package/dist/components/ColorInput.vue.d.ts +4 -4
  10. package/dist/components/ColorSwatch.vue.d.ts +6 -6
  11. package/dist/components/Drawer.vue.d.ts +10 -8
  12. package/dist/components/Dropzone.vue.d.ts +12 -10
  13. package/dist/components/FullscreenOverlay.vue.d.ts +10 -8
  14. package/dist/components/Image.vue.d.ts +19 -18
  15. package/dist/components/Indicator.vue.d.ts +18 -16
  16. package/dist/components/Modal.vue.d.ts +10 -8
  17. package/dist/components/Notification.vue.d.ts +27 -25
  18. package/dist/components/NotificationSystem.vue.d.ts +1 -1
  19. package/dist/components/Overlay.vue.d.ts +17 -15
  20. package/dist/components/Paper.vue.d.ts +24 -22
  21. package/dist/components/PinInput.vue.d.ts +10 -10
  22. package/dist/components/Progress.vue.d.ts +18 -18
  23. package/dist/components/RokuProvider.vue.d.ts +26 -23
  24. package/dist/components/SchemeSwitch.vue.d.ts +1 -1
  25. package/dist/components/Select.vue.d.ts +23 -68
  26. package/dist/components/Slider.vue.d.ts +6 -6
  27. package/dist/components/Switch.vue.d.ts +7 -7
  28. package/dist/components/TabItem.vue.d.ts +9 -7
  29. package/dist/components/Tabs.vue.d.ts +9 -7
  30. package/dist/components/TextField.vue.d.ts +10 -8
  31. package/dist/components/ThemeProvider.vue.d.ts +12 -9
  32. package/dist/components/Tooltip.vue.d.ts +31 -2
  33. package/dist/components/index.d.ts +1 -0
  34. package/dist/composables/index.d.ts +9 -8
  35. package/dist/index.d.ts +1 -0
  36. package/dist/index.js +1190 -1082
  37. package/dist/index.umd.cjs +1 -1
  38. package/dist/style.css +1 -1
  39. package/dist/utils/index.d.ts +2 -1
  40. package/dist/utils/theme.d.ts +2 -1
  41. package/package.json +24 -24
@@ -1,24 +1,26 @@
1
- declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
2
- ratio?: number | undefined;
3
- width?: string | number | undefined;
4
- maxWidth?: string | number | undefined;
5
- height?: string | number | undefined;
6
- maxHeight?: string | number | undefined;
1
+ declare function __VLS_template(): {
2
+ default?(_: {}): any;
3
+ };
4
+ declare const __VLS_component: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
5
+ ratio?: number;
6
+ width?: number | string;
7
+ maxWidth?: number | string;
8
+ height?: number | string;
9
+ maxHeight?: number | string;
7
10
  }>, {
8
11
  ratio: number;
9
- }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<globalThis.ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
10
- ratio?: number | undefined;
11
- width?: string | number | undefined;
12
- maxWidth?: string | number | undefined;
13
- height?: string | number | undefined;
14
- maxHeight?: string | number | undefined;
12
+ }>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<globalThis.ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
13
+ ratio?: number;
14
+ width?: number | string;
15
+ maxWidth?: number | string;
16
+ height?: number | string;
17
+ maxHeight?: number | string;
15
18
  }>, {
16
19
  ratio: number;
17
20
  }>>>, {
18
21
  ratio: number;
19
- }, {}>, {
20
- default?(_: {}): any;
21
- }>;
22
+ }, {}>;
23
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
22
24
  export default _default;
23
25
  type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
24
26
  type __VLS_TypePropsToRuntimeProps<T> = {
@@ -1,17 +1,18 @@
1
- import type { Component } from 'vue';
2
- declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
3
- is?: string | Component | undefined;
4
- src?: string | undefined;
5
- size?: string | number | undefined;
1
+ import { Component } from 'vue';
2
+
3
+ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
4
+ is?: string | Component;
5
+ src?: string;
6
+ size?: "sm" | "md" | "lg" | string | number;
6
7
  style?: any;
7
8
  class?: any;
8
9
  }>, {
9
10
  size: string;
10
11
  is: string;
11
- }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<globalThis.ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
12
- is?: string | Component | undefined;
13
- src?: string | undefined;
14
- size?: string | number | undefined;
12
+ }>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<globalThis.ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
13
+ is?: string | Component;
14
+ src?: string;
15
+ size?: "sm" | "md" | "lg" | string | number;
15
16
  style?: any;
16
17
  class?: any;
17
18
  }>, {
@@ -19,7 +20,7 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
19
20
  is: string;
20
21
  }>>>, {
21
22
  is: string | Component;
22
- size: 'sm' | 'md' | 'lg' | string | number;
23
+ size: "sm" | "md" | "lg" | string | number;
23
24
  }, {}>;
24
25
  export default _default;
25
26
  type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
@@ -1,16 +1,21 @@
1
1
  type Variant = 'filled' | 'default' | 'light' | 'outline' | 'subtle' | 'transparent' | 'ghost' | 'constrast';
2
- declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
3
- type?: "button" | "submit" | "reset" | undefined;
4
- size?: "sm" | "md" | "lg" | undefined;
5
- is?: string | globalThis.Component | undefined;
6
- icon?: boolean | undefined;
7
- pressEffect?: "translate" | "scale" | undefined;
8
- variant?: Variant | undefined;
9
- hoverVariant?: Variant | undefined;
10
- color?: "primary" | "secondary" | "tertiary" | "error" | undefined;
11
- animate?: boolean | undefined;
12
- rounded?: string | number | undefined;
13
- disabled?: boolean | undefined;
2
+ declare function __VLS_template(): {
3
+ leftSection?(_: {}): any;
4
+ default?(_: {}): any;
5
+ rightSection?(_: {}): any;
6
+ };
7
+ declare const __VLS_component: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
8
+ type?: "button" | "submit" | "reset";
9
+ size?: "sm" | "md" | "lg";
10
+ is?: string | Component;
11
+ icon?: boolean;
12
+ pressEffect?: "translate" | "scale";
13
+ variant?: Variant;
14
+ hoverVariant?: Variant;
15
+ color?: "primary" | "secondary" | "tertiary" | "error";
16
+ animate?: boolean;
17
+ rounded?: "none" | "sm" | "md" | "lg" | "full" | string | number;
18
+ disabled?: boolean;
14
19
  }>, {
15
20
  rounded: string;
16
21
  type: string;
@@ -19,18 +24,18 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
19
24
  icon: boolean;
20
25
  pressEffect: string;
21
26
  disabled: boolean;
22
- }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<globalThis.ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
23
- type?: "button" | "submit" | "reset" | undefined;
24
- size?: "sm" | "md" | "lg" | undefined;
25
- is?: string | globalThis.Component | undefined;
26
- icon?: boolean | undefined;
27
- pressEffect?: "translate" | "scale" | undefined;
28
- variant?: Variant | undefined;
29
- hoverVariant?: Variant | undefined;
30
- color?: "primary" | "secondary" | "tertiary" | "error" | undefined;
31
- animate?: boolean | undefined;
32
- rounded?: string | number | undefined;
33
- disabled?: boolean | undefined;
27
+ }>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<globalThis.ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
28
+ type?: "button" | "submit" | "reset";
29
+ size?: "sm" | "md" | "lg";
30
+ is?: string | Component;
31
+ icon?: boolean;
32
+ pressEffect?: "translate" | "scale";
33
+ variant?: Variant;
34
+ hoverVariant?: Variant;
35
+ color?: "primary" | "secondary" | "tertiary" | "error";
36
+ animate?: boolean;
37
+ rounded?: "none" | "sm" | "md" | "lg" | "full" | string | number;
38
+ disabled?: boolean;
34
39
  }>, {
35
40
  rounded: string;
36
41
  type: string;
@@ -41,17 +46,14 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
41
46
  disabled: boolean;
42
47
  }>>>, {
43
48
  type: "button" | "submit" | "reset";
44
- is: string | globalThis.Component;
49
+ is: string | Component;
45
50
  size: "sm" | "md" | "lg";
46
51
  icon: boolean;
47
52
  pressEffect: "translate" | "scale";
48
- rounded: string | number;
53
+ rounded: "none" | "sm" | "md" | "lg" | "full" | string | number;
49
54
  disabled: boolean;
50
- }, {}>, {
51
- leftSection?(_: {}): any;
52
- default?(_: {}): any;
53
- rightSection?(_: {}): any;
54
- }>;
55
+ }, {}>;
56
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
55
57
  export default _default;
56
58
  type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
57
59
  type __VLS_TypePropsToRuntimeProps<T> = {
@@ -0,0 +1,37 @@
1
+ type T = string | {
2
+ value: string;
3
+ label?: string;
4
+ icon?: string;
5
+ };
6
+ declare const _default: import('vue').DefineComponent<{
7
+ modelValue: import('vue').PropType<string | undefined>;
8
+ selections: {
9
+ type: globalThis.PropType<T[]>;
10
+ required: true;
11
+ };
12
+ default: {
13
+ type: globalThis.PropType<T>;
14
+ };
15
+ color: {
16
+ type: globalThis.PropType<"primary" | "secondary" | "tertiary" | "error">;
17
+ };
18
+ unselectable: {
19
+ type: globalThis.PropType<boolean>;
20
+ };
21
+ }, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<globalThis.ExtractPropTypes<{
22
+ modelValue: import('vue').PropType<string | undefined>;
23
+ selections: {
24
+ type: globalThis.PropType<T[]>;
25
+ required: true;
26
+ };
27
+ default: {
28
+ type: globalThis.PropType<T>;
29
+ };
30
+ color: {
31
+ type: globalThis.PropType<"primary" | "secondary" | "tertiary" | "error">;
32
+ };
33
+ unselectable: {
34
+ type: globalThis.PropType<boolean>;
35
+ };
36
+ }>>, {}, {}>;
37
+ export default _default;
@@ -1,6 +1,8 @@
1
- declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<globalThis.ExtractPropTypes<{}>>, {}, {}>, {
1
+ declare function __VLS_template(): {
2
2
  default?(_: {}): any;
3
- }>;
3
+ };
4
+ declare const __VLS_component: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<globalThis.ExtractPropTypes<{}>>, {}, {}>;
5
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
4
6
  export default _default;
5
7
  type __VLS_WithTemplateSlots<T, S> = T & {
6
8
  new (): {
@@ -1,31 +1,33 @@
1
- declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
2
- avatar?: string | undefined;
3
- position?: "left" | "right" | undefined;
4
- color?: string | undefined;
5
- variant?: "default" | "filled" | "transparent" | undefined;
6
- withBorder?: boolean | undefined;
1
+ declare function __VLS_template(): {
2
+ avatar?(_: {}): any;
3
+ default?(_: {}): any;
4
+ };
5
+ declare const __VLS_component: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
6
+ avatar?: string;
7
+ position?: "left" | "right";
8
+ color?: string;
9
+ variant?: "default" | "transparent" | "filled";
10
+ withBorder?: boolean;
7
11
  }>, {
8
12
  position: string;
9
13
  variant: string;
10
14
  withBorder: boolean;
11
- }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<globalThis.ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
12
- avatar?: string | undefined;
13
- position?: "left" | "right" | undefined;
14
- color?: string | undefined;
15
- variant?: "default" | "filled" | "transparent" | undefined;
16
- withBorder?: boolean | undefined;
15
+ }>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<globalThis.ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
16
+ avatar?: string;
17
+ position?: "left" | "right";
18
+ color?: string;
19
+ variant?: "default" | "transparent" | "filled";
20
+ withBorder?: boolean;
17
21
  }>, {
18
22
  position: string;
19
23
  variant: string;
20
24
  withBorder: boolean;
21
25
  }>>>, {
22
- variant: "default" | "filled" | "transparent";
26
+ variant: "default" | "transparent" | "filled";
23
27
  position: "left" | "right";
24
28
  withBorder: boolean;
25
- }, {}>, {
26
- avatar?(_: {}): any;
27
- default?(_: {}): any;
28
- }>;
29
+ }, {}>;
30
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
29
31
  export default _default;
30
32
  type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
31
33
  type __VLS_TypePropsToRuntimeProps<T> = {
@@ -1,25 +1,27 @@
1
- declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
2
- position?: "left" | "right" | undefined;
3
- color?: string | undefined;
4
- variant?: "default" | "fill" | "transparent" | undefined;
5
- withBorder?: boolean | undefined;
1
+ declare function __VLS_template(): {
2
+ default?(_: {}): any;
3
+ };
4
+ declare const __VLS_component: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
5
+ position?: "left" | "right";
6
+ color?: string;
7
+ variant?: "default" | "transparent" | "fill";
8
+ withBorder?: boolean;
6
9
  }>, {
7
10
  variant: string;
8
11
  withBorder: boolean;
9
- }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<globalThis.ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
10
- position?: "left" | "right" | undefined;
11
- color?: string | undefined;
12
- variant?: "default" | "fill" | "transparent" | undefined;
13
- withBorder?: boolean | undefined;
12
+ }>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<globalThis.ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
13
+ position?: "left" | "right";
14
+ color?: string;
15
+ variant?: "default" | "transparent" | "fill";
16
+ withBorder?: boolean;
14
17
  }>, {
15
18
  variant: string;
16
19
  withBorder: boolean;
17
20
  }>>>, {
18
- variant: "default" | "fill" | "transparent";
21
+ variant: "default" | "transparent" | "fill";
19
22
  withBorder: boolean;
20
- }, {}>, {
21
- default?(_: {}): any;
22
- }>;
23
+ }, {}>;
24
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
23
25
  export default _default;
24
26
  type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
25
27
  type __VLS_TypePropsToRuntimeProps<T> = {
@@ -1,5 +1,10 @@
1
- declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
2
- modelValue: globalThis.PropType<boolean>;
1
+ declare function __VLS_template(): {
2
+ leftSection?(_: {}): any;
3
+ default?(_: {}): any;
4
+ rightSection?(_: {}): any;
5
+ };
6
+ declare const __VLS_component: import('vue').DefineComponent<{
7
+ modelValue: import('vue').PropType<boolean>;
3
8
  style: {
4
9
  type: globalThis.PropType<any>;
5
10
  };
@@ -21,8 +26,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
21
26
  type: globalThis.PropType<string | number>;
22
27
  default: string;
23
28
  };
24
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<globalThis.ExtractPropTypes<{
25
- modelValue: globalThis.PropType<boolean>;
29
+ }, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<globalThis.ExtractPropTypes<{
30
+ modelValue: import('vue').PropType<boolean>;
26
31
  style: {
27
32
  type: globalThis.PropType<any>;
28
33
  };
@@ -45,14 +50,11 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
45
50
  default: string;
46
51
  };
47
52
  }>>, {
48
- is: string | globalThis.Component;
49
- size: string | number;
50
- rounded: string | number;
51
- }, {}>, {
52
- leftSection?(_: {}): any;
53
- default?(_: {}): any;
54
- rightSection?(_: {}): any;
55
- }>;
53
+ is: string | Component;
54
+ size: "sm" | "md" | "lg" | string | number;
55
+ rounded: "none" | "sm" | "md" | "lg" | "full" | string | number;
56
+ }, {}>;
57
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
56
58
  export default _default;
57
59
  type __VLS_WithTemplateSlots<T, S> = T & {
58
60
  new (): {
@@ -1,10 +1,10 @@
1
- declare const _default: import("vue").DefineComponent<{
2
- modelValue: globalThis.PropType<string>;
1
+ declare const _default: import('vue').DefineComponent<{
2
+ modelValue: import('vue').PropType<string>;
3
3
  label: {
4
4
  type: globalThis.PropType<string>;
5
5
  };
6
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<globalThis.ExtractPropTypes<{
7
- modelValue: globalThis.PropType<string>;
6
+ }, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<globalThis.ExtractPropTypes<{
7
+ modelValue: import('vue').PropType<string>;
8
8
  label: {
9
9
  type: globalThis.PropType<string>;
10
10
  };
@@ -1,14 +1,14 @@
1
- declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
1
+ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
2
2
  color: string;
3
- is?: string | globalThis.Component | undefined;
4
- withBorder?: boolean | undefined;
3
+ is?: string | Component;
4
+ withBorder?: boolean;
5
5
  }>, {
6
6
  is: string;
7
7
  withBorder: boolean;
8
- }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<globalThis.ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
8
+ }>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<globalThis.ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
9
9
  color: string;
10
- is?: string | globalThis.Component | undefined;
11
- withBorder?: boolean | undefined;
10
+ is?: string | Component;
11
+ withBorder?: boolean;
12
12
  }>, {
13
13
  is: string;
14
14
  withBorder: boolean;
@@ -1,5 +1,8 @@
1
- declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
2
- modelValue: globalThis.PropType<boolean>;
1
+ declare function __VLS_template(): {
2
+ default?(_: {}): any;
3
+ };
4
+ declare const __VLS_component: import('vue').DefineComponent<{
5
+ modelValue: import('vue').PropType<boolean>;
3
6
  position: {
4
7
  type: globalThis.PropType<"left" | "right">;
5
8
  default: string;
@@ -12,8 +15,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
12
15
  type: globalThis.PropType<boolean | "sm" | "md" | "lg">;
13
16
  default: boolean;
14
17
  };
15
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<globalThis.ExtractPropTypes<{
16
- modelValue: globalThis.PropType<boolean>;
18
+ }, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<globalThis.ExtractPropTypes<{
19
+ modelValue: import('vue').PropType<boolean>;
17
20
  position: {
18
21
  type: globalThis.PropType<"left" | "right">;
19
22
  default: string;
@@ -29,10 +32,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
29
32
  }>>, {
30
33
  position: "left" | "right";
31
34
  persistent: boolean;
32
- blur: boolean | "sm" | "md" | "lg";
33
- }, {}>, {
34
- default?(_: {}): any;
35
- }>;
35
+ blur: "sm" | "md" | "lg" | boolean;
36
+ }, {}>;
37
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
36
38
  export default _default;
37
39
  type __VLS_WithTemplateSlots<T, S> = T & {
38
40
  new (): {
@@ -1,14 +1,17 @@
1
- declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
2
- dashed?: boolean | undefined;
3
- accept?: string | undefined;
1
+ declare function __VLS_template(): {
2
+ default?(_: {}): any;
3
+ };
4
+ declare const __VLS_component: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
5
+ dashed?: boolean;
6
+ accept?: string;
4
7
  }>, {
5
8
  dashed: boolean;
6
9
  accept: string;
7
- }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
10
+ }>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
8
11
  drop: (files: File[] | null) => void;
9
- }, string, import("vue").PublicProps, Readonly<globalThis.ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
10
- dashed?: boolean | undefined;
11
- accept?: string | undefined;
12
+ }, string, import('vue').PublicProps, Readonly<globalThis.ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
13
+ dashed?: boolean;
14
+ accept?: string;
12
15
  }>, {
13
16
  dashed: boolean;
14
17
  accept: string;
@@ -17,9 +20,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
17
20
  }, {
18
21
  dashed: boolean;
19
22
  accept: string;
20
- }, {}>, {
21
- default?(_: {}): any;
22
- }>;
23
+ }, {}>;
24
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
23
25
  export default _default;
24
26
  type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
25
27
  type __VLS_TypePropsToRuntimeProps<T> = {
@@ -1,5 +1,8 @@
1
- declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
2
- modelValue: globalThis.PropType<boolean>;
1
+ declare function __VLS_template(): {
2
+ default?(_: {}): any;
3
+ };
4
+ declare const __VLS_component: import('vue').DefineComponent<{
5
+ modelValue: import('vue').PropType<boolean>;
3
6
  persistent: {
4
7
  type: globalThis.PropType<boolean>;
5
8
  default: boolean;
@@ -11,8 +14,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
11
14
  wrapperClass: {
12
15
  type: globalThis.PropType<string>;
13
16
  };
14
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<globalThis.ExtractPropTypes<{
15
- modelValue: globalThis.PropType<boolean>;
17
+ }, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<globalThis.ExtractPropTypes<{
18
+ modelValue: import('vue').PropType<boolean>;
16
19
  persistent: {
17
20
  type: globalThis.PropType<boolean>;
18
21
  default: boolean;
@@ -26,10 +29,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
26
29
  };
27
30
  }>>, {
28
31
  persistent: boolean;
29
- blur: boolean | "sm" | "md" | "lg";
30
- }, {}>, {
31
- default?(_: {}): any;
32
- }>;
32
+ blur: "sm" | "md" | "lg" | boolean;
33
+ }, {}>;
34
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
33
35
  export default _default;
34
36
  type __VLS_WithTemplateSlots<T, S> = T & {
35
37
  new (): {
@@ -1,33 +1,34 @@
1
- import type { Component } from 'vue';
2
- declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
3
- is?: string | Component | undefined;
4
- src?: string | undefined;
1
+ import { Component } from 'vue';
2
+
3
+ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
4
+ is?: string | Component;
5
+ src?: string;
5
6
  style?: any;
6
7
  class?: any;
7
- width?: string | number | undefined;
8
- maxWidth?: string | number | undefined;
9
- height?: string | number | undefined;
10
- maxHeight?: string | number | undefined;
11
- rounded?: string | number | undefined;
8
+ width?: string | number;
9
+ maxWidth?: string | number;
10
+ height?: string | number;
11
+ maxHeight?: string | number;
12
+ rounded?: "none" | "sm" | "md" | "lg" | "full" | string | number;
12
13
  }>, {
13
14
  is: string;
14
15
  rounded: string;
15
- }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<globalThis.ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
16
- is?: string | Component | undefined;
17
- src?: string | undefined;
16
+ }>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<globalThis.ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
17
+ is?: string | Component;
18
+ src?: string;
18
19
  style?: any;
19
20
  class?: any;
20
- width?: string | number | undefined;
21
- maxWidth?: string | number | undefined;
22
- height?: string | number | undefined;
23
- maxHeight?: string | number | undefined;
24
- rounded?: string | number | undefined;
21
+ width?: string | number;
22
+ maxWidth?: string | number;
23
+ height?: string | number;
24
+ maxHeight?: string | number;
25
+ rounded?: "none" | "sm" | "md" | "lg" | "full" | string | number;
25
26
  }>, {
26
27
  is: string;
27
28
  rounded: string;
28
29
  }>>>, {
29
30
  is: string | Component;
30
- rounded: 'none' | 'sm' | 'md' | 'lg' | 'full' | string | number;
31
+ rounded: "none" | "sm" | "md" | "lg" | "full" | string | number;
31
32
  }, {}>;
32
33
  export default _default;
33
34
  type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
@@ -1,29 +1,31 @@
1
- declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
2
- color?: "primary" | "secondary" | "tertiary" | "error" | undefined;
3
- size?: string | number | undefined;
4
- position?: "left" | "right" | "top-left" | "top-right" | "bottom-left" | "bottom-right" | "top" | "bottom" | undefined;
5
- ping?: boolean | undefined;
1
+ declare function __VLS_template(): {
2
+ label?(_: {}): any;
3
+ default?(_: {}): any;
4
+ };
5
+ declare const __VLS_component: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
6
+ color?: "primary" | "secondary" | "tertiary" | "error";
7
+ size?: "sm" | "md" | "lg" | string | number;
8
+ position?: "top-left" | "top-right" | "bottom-left" | "bottom-right" | "top" | "bottom" | "left" | "right";
9
+ ping?: boolean;
6
10
  }>, {
7
11
  size: string;
8
12
  position: string;
9
13
  color: string;
10
- }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<globalThis.ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
11
- color?: "primary" | "secondary" | "tertiary" | "error" | undefined;
12
- size?: string | number | undefined;
13
- position?: "left" | "right" | "top-left" | "top-right" | "bottom-left" | "bottom-right" | "top" | "bottom" | undefined;
14
- ping?: boolean | undefined;
14
+ }>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<globalThis.ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
15
+ color?: "primary" | "secondary" | "tertiary" | "error";
16
+ size?: "sm" | "md" | "lg" | string | number;
17
+ position?: "top-left" | "top-right" | "bottom-left" | "bottom-right" | "top" | "bottom" | "left" | "right";
18
+ ping?: boolean;
15
19
  }>, {
16
20
  size: string;
17
21
  position: string;
18
22
  color: string;
19
23
  }>>>, {
20
- size: string | number;
24
+ size: "sm" | "md" | "lg" | string | number;
21
25
  color: "primary" | "secondary" | "tertiary" | "error";
22
- position: "left" | "right" | "top-left" | "top-right" | "bottom-left" | "bottom-right" | "top" | "bottom";
23
- }, {}>, {
24
- label?(_: {}): any;
25
- default?(_: {}): any;
26
- }>;
26
+ position: "top-left" | "top-right" | "bottom-left" | "bottom-right" | "top" | "bottom" | "left" | "right";
27
+ }, {}>;
28
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
27
29
  export default _default;
28
30
  type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
29
31
  type __VLS_TypePropsToRuntimeProps<T> = {