@roku-ui/vue 0.8.4 → 0.9.1

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,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;
@@ -8,8 +11,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
8
11
  type: globalThis.PropType<boolean | "sm" | "md" | "lg">;
9
12
  default: boolean;
10
13
  };
11
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<globalThis.ExtractPropTypes<{
12
- modelValue: globalThis.PropType<boolean>;
14
+ }, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<globalThis.ExtractPropTypes<{
15
+ modelValue: import('vue').PropType<boolean>;
13
16
  persistent: {
14
17
  type: globalThis.PropType<boolean>;
15
18
  default: boolean;
@@ -20,10 +23,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
20
23
  };
21
24
  }>>, {
22
25
  persistent: boolean;
23
- blur: boolean | "sm" | "md" | "lg";
24
- }, {}>, {
25
- default?(_: {}): any;
26
- }>;
26
+ blur: "sm" | "md" | "lg" | boolean;
27
+ }, {}>;
28
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
27
29
  export default _default;
28
30
  type __VLS_WithTemplateSlots<T, S> = T & {
29
31
  new (): {
@@ -1,31 +1,34 @@
1
- declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
2
- title?: string | undefined;
3
- message?: string | undefined;
4
- icon?: string | undefined;
5
- loading?: boolean | undefined;
6
- withBorder?: boolean | undefined;
7
- closeable?: boolean | undefined;
8
- rounded?: string | number | undefined;
9
- block?: boolean | undefined;
10
- color?: "primary" | "secondary" | "tertiary" | "error" | undefined;
1
+ declare function __VLS_template(): {
2
+ message?(_: {}): any;
3
+ };
4
+ declare const __VLS_component: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
5
+ title?: string;
6
+ message?: string;
7
+ icon?: string;
8
+ loading?: boolean;
9
+ withBorder?: boolean;
10
+ closeable?: boolean;
11
+ rounded?: "sm" | "md" | "lg" | "none" | string | number;
12
+ block?: boolean;
13
+ color?: "primary" | "secondary" | "tertiary" | "error";
11
14
  }>, {
12
15
  type: string;
13
16
  border: boolean;
14
17
  color: string;
15
18
  rounded: string;
16
19
  block: boolean;
17
- }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
20
+ }>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
18
21
  close: (...args: any[]) => void;
19
- }, string, import("vue").PublicProps, Readonly<globalThis.ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
20
- title?: string | undefined;
21
- message?: string | undefined;
22
- icon?: string | undefined;
23
- loading?: boolean | undefined;
24
- withBorder?: boolean | undefined;
25
- closeable?: boolean | undefined;
26
- rounded?: string | number | undefined;
27
- block?: boolean | undefined;
28
- color?: "primary" | "secondary" | "tertiary" | "error" | undefined;
22
+ }, string, import('vue').PublicProps, Readonly<globalThis.ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
23
+ title?: string;
24
+ message?: string;
25
+ icon?: string;
26
+ loading?: boolean;
27
+ withBorder?: boolean;
28
+ closeable?: boolean;
29
+ rounded?: "sm" | "md" | "lg" | "none" | string | number;
30
+ block?: boolean;
31
+ color?: "primary" | "secondary" | "tertiary" | "error";
29
32
  }>, {
30
33
  type: string;
31
34
  border: boolean;
@@ -36,11 +39,10 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
36
39
  onClose?: ((...args: any[]) => any) | undefined;
37
40
  }, {
38
41
  color: "primary" | "secondary" | "tertiary" | "error";
39
- rounded: string | number;
42
+ rounded: "sm" | "md" | "lg" | "none" | string | number;
40
43
  block: boolean;
41
- }, {}>, {
42
- message?(_: {}): any;
43
- }>;
44
+ }, {}>;
45
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
44
46
  export default _default;
45
47
  type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
46
48
  type __VLS_TypePropsToRuntimeProps<T> = {
@@ -1,2 +1,2 @@
1
- declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<globalThis.ExtractPropTypes<{}>>, {}, {}>;
1
+ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<globalThis.ExtractPropTypes<{}>>, {}, {}>;
2
2
  export default _default;
@@ -1,18 +1,22 @@
1
- declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
2
- blur?: boolean | "sm" | "md" | "lg" | undefined;
3
- rounded?: string | number | undefined;
4
- opacity?: number | undefined;
5
- color?: string | undefined;
1
+ declare function __VLS_template(): {
2
+ default?(_: {}): any;
3
+ content?(_: {}): any;
4
+ };
5
+ declare const __VLS_component: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
6
+ blur?: boolean | "sm" | "md" | "lg";
7
+ rounded?: "none" | "sm" | "md" | "lg" | "full" | string | number;
8
+ opacity?: number;
9
+ color?: string;
6
10
  }>, {
7
11
  blur: boolean;
8
12
  rounded: string;
9
13
  opacity: number;
10
14
  color: string;
11
- }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<globalThis.ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
12
- blur?: boolean | "sm" | "md" | "lg" | undefined;
13
- rounded?: string | number | undefined;
14
- opacity?: number | undefined;
15
- color?: string | undefined;
15
+ }>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<globalThis.ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
16
+ blur?: boolean | "sm" | "md" | "lg";
17
+ rounded?: "none" | "sm" | "md" | "lg" | "full" | string | number;
18
+ opacity?: number;
19
+ color?: string;
16
20
  }>, {
17
21
  blur: boolean;
18
22
  rounded: string;
@@ -20,13 +24,11 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
20
24
  color: string;
21
25
  }>>>, {
22
26
  color: string;
23
- rounded: string | number;
27
+ rounded: "none" | "sm" | "md" | "lg" | "full" | string | number;
24
28
  blur: boolean | "sm" | "md" | "lg";
25
29
  opacity: number;
26
- }, {}>, {
27
- default?(_: {}): any;
28
- content?(_: {}): any;
29
- }>;
30
+ }, {}>;
31
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
30
32
  export default _default;
31
33
  type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
32
34
  type __VLS_TypePropsToRuntimeProps<T> = {
@@ -1,11 +1,14 @@
1
- declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
2
- size?: string | number | undefined;
3
- rounded?: string | number | undefined;
4
- withBorder?: boolean | undefined;
5
- loading?: boolean | undefined;
6
- is?: string | globalThis.Component | undefined;
7
- color?: string | undefined;
8
- traceAnimate?: boolean | undefined;
1
+ declare function __VLS_template(): {
2
+ default?(_: {}): any;
3
+ };
4
+ declare const __VLS_component: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
5
+ size?: "sm" | "md" | "lg" | string | number;
6
+ rounded?: "none" | "sm" | "md" | "lg" | "full" | string | number;
7
+ withBorder?: boolean;
8
+ loading?: boolean;
9
+ is?: string | Component;
10
+ color?: string;
11
+ traceAnimate?: boolean;
9
12
  }>, {
10
13
  size: string;
11
14
  rounded: string;
@@ -14,14 +17,14 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
14
17
  loading: boolean;
15
18
  color: string;
16
19
  traceAnimate: boolean;
17
- }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<globalThis.ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
18
- size?: string | number | undefined;
19
- rounded?: string | number | undefined;
20
- withBorder?: boolean | undefined;
21
- loading?: boolean | undefined;
22
- is?: string | globalThis.Component | undefined;
23
- color?: string | undefined;
24
- traceAnimate?: boolean | undefined;
20
+ }>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<globalThis.ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
21
+ size?: "sm" | "md" | "lg" | string | number;
22
+ rounded?: "none" | "sm" | "md" | "lg" | "full" | string | number;
23
+ withBorder?: boolean;
24
+ loading?: boolean;
25
+ is?: string | Component;
26
+ color?: string;
27
+ traceAnimate?: boolean;
25
28
  }>, {
26
29
  size: string;
27
30
  rounded: string;
@@ -31,16 +34,15 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
31
34
  color: string;
32
35
  traceAnimate: boolean;
33
36
  }>>>, {
34
- is: string | globalThis.Component;
35
- size: string | number;
37
+ is: string | Component;
38
+ size: "sm" | "md" | "lg" | string | number;
36
39
  color: string;
37
- rounded: string | number;
40
+ rounded: "none" | "sm" | "md" | "lg" | "full" | string | number;
38
41
  withBorder: boolean;
39
42
  loading: boolean;
40
43
  traceAnimate: boolean;
41
- }, {}>, {
42
- default?(_: {}): any;
43
- }>;
44
+ }, {}>;
45
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
44
46
  export default _default;
45
47
  type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
46
48
  type __VLS_TypePropsToRuntimeProps<T> = {
@@ -1,15 +1,15 @@
1
- declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
2
- modelValue?: string | undefined;
3
- length?: number | undefined;
4
- size?: "sm" | "md" | "lg" | undefined;
5
- password?: boolean | undefined;
1
+ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
2
+ modelValue?: string;
3
+ length?: number;
4
+ size?: "sm" | "md" | "lg";
5
+ password?: boolean;
6
6
  }>, {
7
7
  length: number;
8
- }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<globalThis.ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
9
- modelValue?: string | undefined;
10
- length?: number | undefined;
11
- size?: "sm" | "md" | "lg" | undefined;
12
- password?: boolean | undefined;
8
+ }>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<globalThis.ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
9
+ modelValue?: string;
10
+ length?: number;
11
+ size?: "sm" | "md" | "lg";
12
+ password?: boolean;
13
13
  }>, {
14
14
  length: number;
15
15
  }>>>, {
@@ -1,11 +1,11 @@
1
- declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
2
- value?: string | number | undefined;
3
- max?: string | number | undefined;
4
- min?: string | number | undefined;
5
- size?: "sm" | "md" | "lg" | undefined;
6
- color?: string | undefined;
7
- rounded?: string | number | undefined;
8
- loading?: boolean | undefined;
1
+ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
2
+ value?: number | string;
3
+ max?: number | string;
4
+ min?: number | string;
5
+ size?: "sm" | "md" | "lg";
6
+ color?: string;
7
+ rounded?: "none" | "sm" | "md" | "lg" | "full" | string | number;
8
+ loading?: boolean;
9
9
  }>, {
10
10
  value: number;
11
11
  max: number;
@@ -14,14 +14,14 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
14
14
  color: string;
15
15
  rounded: string;
16
16
  loading: boolean;
17
- }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<globalThis.ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
18
- value?: string | number | undefined;
19
- max?: string | number | undefined;
20
- min?: string | number | undefined;
21
- size?: "sm" | "md" | "lg" | undefined;
22
- color?: string | undefined;
23
- rounded?: string | number | undefined;
24
- loading?: boolean | undefined;
17
+ }>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<globalThis.ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
18
+ value?: number | string;
19
+ max?: number | string;
20
+ min?: number | string;
21
+ size?: "sm" | "md" | "lg";
22
+ color?: string;
23
+ rounded?: "none" | "sm" | "md" | "lg" | "full" | string | number;
24
+ loading?: boolean;
25
25
  }>, {
26
26
  value: number;
27
27
  max: number;
@@ -31,9 +31,9 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
31
31
  rounded: string;
32
32
  loading: boolean;
33
33
  }>>>, {
34
- size: 'sm' | 'md' | 'lg';
34
+ size: "sm" | "md" | "lg";
35
35
  color: string;
36
- rounded: 'none' | 'sm' | 'md' | 'lg' | 'full' | string | number;
36
+ rounded: "none" | "sm" | "md" | "lg" | "full" | string | number;
37
37
  loading: boolean;
38
38
  value: number | string;
39
39
  max: number | string;
@@ -1,8 +1,12 @@
1
- import type { ThemeData } from '../utils';
2
- declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
3
- is?: string | globalThis.Component | undefined;
4
- theme?: string | undefined;
5
- themes?: Record<string, ThemeData> | undefined;
1
+ import { ThemeData } from '../utils';
2
+
3
+ declare function __VLS_template(): {
4
+ default?(_: {}): any;
5
+ };
6
+ declare const __VLS_component: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
7
+ is?: string | Component;
8
+ theme?: string;
9
+ themes?: Record<string, ThemeData>;
6
10
  }>, {
7
11
  is: string;
8
12
  theme: string;
@@ -10,18 +14,18 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
10
14
  default: {
11
15
  name: string;
12
16
  colors: {
13
- primary: import("../utils").ColorsTuple;
14
- secondary: import("../utils").ColorsTuple;
15
- tertiary: import("../utils").ColorsTuple;
16
- error: import("../utils").ColorsTuple;
17
- surface: import("../utils").ColorsTuple;
17
+ primary: import('../utils').ColorsTuple;
18
+ secondary: import('../utils').ColorsTuple;
19
+ tertiary: import('../utils').ColorsTuple;
20
+ error: import('../utils').ColorsTuple;
21
+ surface: import('../utils').ColorsTuple;
18
22
  };
19
23
  };
20
24
  };
21
- }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<globalThis.ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
22
- is?: string | globalThis.Component | undefined;
23
- theme?: string | undefined;
24
- themes?: Record<string, ThemeData> | undefined;
25
+ }>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<globalThis.ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
26
+ is?: string | Component;
27
+ theme?: string;
28
+ themes?: Record<string, ThemeData>;
25
29
  }>, {
26
30
  is: string;
27
31
  theme: string;
@@ -29,21 +33,20 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
29
33
  default: {
30
34
  name: string;
31
35
  colors: {
32
- primary: import("../utils").ColorsTuple;
33
- secondary: import("../utils").ColorsTuple;
34
- tertiary: import("../utils").ColorsTuple;
35
- error: import("../utils").ColorsTuple;
36
- surface: import("../utils").ColorsTuple;
36
+ primary: import('../utils').ColorsTuple;
37
+ secondary: import('../utils').ColorsTuple;
38
+ tertiary: import('../utils').ColorsTuple;
39
+ error: import('../utils').ColorsTuple;
40
+ surface: import('../utils').ColorsTuple;
37
41
  };
38
42
  };
39
43
  };
40
44
  }>>>, {
41
- is: string | globalThis.Component;
45
+ is: string | Component;
42
46
  theme: string;
43
47
  themes: Record<string, ThemeData>;
44
- }, {}>, {
45
- default?(_: {}): any;
46
- }>;
48
+ }, {}>;
49
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
47
50
  export default _default;
48
51
  type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
49
52
  type __VLS_TypePropsToRuntimeProps<T> = {
@@ -1,2 +1,2 @@
1
- declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<globalThis.ExtractPropTypes<{}>>, {}, {}>;
1
+ declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<globalThis.ExtractPropTypes<{}>>, {}, {}>;
2
2
  export default _default;
@@ -1,86 +1,41 @@
1
- declare const _default: <T extends string | number | symbol | {
2
- [key: string]: any;
1
+ declare const _default: <T extends {
3
2
  id: number | string | symbol;
4
- }>(__VLS_props: {
5
- filter?: ((label: string, text: string) => boolean) | undefined;
6
- onChange?: ((option: T | undefined) => any) | undefined;
7
- onInput?: ((searchWord: string) => any) | undefined;
8
- size?: "sm" | "md" | "lg" | undefined;
9
- rounded?: string | number | undefined;
10
- modelValue?: T | undefined;
11
- placeholder?: string | undefined;
12
- options?: T[] | undefined;
13
- ariaLabel?: string | undefined;
14
- noneText?: string | undefined;
15
- notFoundText?: string | undefined;
16
- searchable?: boolean | undefined;
17
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, __VLS_ctx?: {
18
- attrs: any;
19
- slots: {
20
- none?(_: {}): any;
21
- item?(_: {
22
- data: T;
23
- selected: boolean;
24
- }): any;
25
- "not-found"?(_: {}): any;
26
- };
27
- emit: ((evt: "input", searchWord: string) => void) & ((evt: "change", option: T | undefined) => void);
28
- } | undefined, __VLS_expose?: ((exposed: import('vue').ShallowUnwrapRef<{}>) => void) | undefined, __VLS_setup?: Promise<{
29
- props: {
30
- filter?: ((label: string, text: string) => boolean) | undefined;
3
+ [key: string]: any;
4
+ } | string | symbol | number>(__VLS_props: Awaited<typeof __VLS_setup>["props"], __VLS_ctx?: __VLS_Prettify<Pick<Awaited<typeof __VLS_setup>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
5
+ props: __VLS_Prettify<__VLS_OmitKeepDiscriminatedUnion<(Partial<{}> & Omit<{
6
+ onChange?: ((option: T | undefined) => any) | undefined;
7
+ onInput?: ((searchWord: string) => any) | undefined;
8
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<globalThis.ExtractPropTypes<{}>> & {
31
9
  onChange?: ((option: T | undefined) => any) | undefined;
32
10
  onInput?: ((searchWord: string) => any) | undefined;
33
- size?: "sm" | "md" | "lg" | undefined;
34
- rounded?: string | number | undefined;
11
+ }, never>) & ({
12
+ ariaLabel?: string;
13
+ options?: T[];
14
+ size?: "sm" | "md" | "lg";
15
+ noneText?: string;
16
+ notFoundText?: string;
17
+ rounded?: "none" | "sm" | "md" | "lg" | "full" | string | number;
18
+ placeholder?: string;
19
+ searchable?: boolean;
20
+ filter?: (label: string, text: string) => boolean;
21
+ } & {
35
22
  modelValue?: T | undefined;
36
- placeholder?: string | undefined;
37
- options?: T[] | undefined;
38
- ariaLabel?: string | undefined;
39
- noneText?: string | undefined;
40
- notFoundText?: string | undefined;
41
- searchable?: boolean | undefined;
42
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
23
+ }), keyof import('vue').VNodeProps | keyof import('vue').AllowedComponentProps>> & {} & (import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps);
43
24
  expose(exposed: import('vue').ShallowUnwrapRef<{}>): void;
44
25
  attrs: any;
45
- slots: {
26
+ slots: ReturnType<() => {
46
27
  none?(_: {}): any;
47
28
  item?(_: {
48
29
  data: T;
49
30
  selected: boolean;
50
31
  }): any;
51
32
  "not-found"?(_: {}): any;
52
- };
33
+ }>;
53
34
  emit: ((evt: "input", searchWord: string) => void) & ((evt: "change", option: T | undefined) => void);
54
- }>) => globalThis.VNode<import("vue").RendererNode, import("vue").RendererElement, {
35
+ }>) => globalThis.VNode<import('vue').RendererNode, import('vue').RendererElement, {
55
36
  [key: string]: any;
56
37
  }> & {
57
- __ctx?: {
58
- props: {
59
- filter?: ((label: string, text: string) => boolean) | undefined;
60
- onChange?: ((option: T | undefined) => any) | undefined;
61
- onInput?: ((searchWord: string) => any) | undefined;
62
- size?: "sm" | "md" | "lg" | undefined;
63
- rounded?: string | number | undefined;
64
- modelValue?: T | undefined;
65
- placeholder?: string | undefined;
66
- options?: T[] | undefined;
67
- ariaLabel?: string | undefined;
68
- noneText?: string | undefined;
69
- notFoundText?: string | undefined;
70
- searchable?: boolean | undefined;
71
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
72
- expose(exposed: import('vue').ShallowUnwrapRef<{}>): void;
73
- attrs: any;
74
- slots: {
75
- none?(_: {}): any;
76
- item?(_: {
77
- data: T;
78
- selected: boolean;
79
- }): any;
80
- "not-found"?(_: {}): any;
81
- };
82
- emit: ((evt: "input", searchWord: string) => void) & ((evt: "change", option: T | undefined) => void);
83
- } | undefined;
38
+ __ctx?: Awaited<typeof __VLS_setup>;
84
39
  };
85
40
  export default _default;
86
41
  type __VLS_Prettify<T> = {
@@ -1,5 +1,5 @@
1
- declare const _default: import("vue").DefineComponent<{
2
- modelValue: globalThis.PropType<any>;
1
+ declare const _default: import('vue').DefineComponent<{
2
+ modelValue: import('vue').PropType<any>;
3
3
  width: {
4
4
  type: globalThis.PropType<number>;
5
5
  };
@@ -37,8 +37,8 @@ declare const _default: import("vue").DefineComponent<{
37
37
  type: globalThis.PropType<number>;
38
38
  default: number;
39
39
  };
40
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<globalThis.ExtractPropTypes<{
41
- modelValue: globalThis.PropType<any>;
40
+ }, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<globalThis.ExtractPropTypes<{
41
+ modelValue: import('vue').PropType<any>;
42
42
  width: {
43
43
  type: globalThis.PropType<number>;
44
44
  };
@@ -78,8 +78,8 @@ declare const _default: import("vue").DefineComponent<{
78
78
  };
79
79
  }>>, {
80
80
  animate: boolean;
81
- size: 'sm' | 'md' | 'lg';
82
- color: 'primary' | 'secondary' | 'tertiary' | 'error';
81
+ size: "sm" | "md" | "lg";
82
+ color: "primary" | "secondary" | "tertiary" | "error";
83
83
  max: number;
84
84
  min: number;
85
85
  step: number;
@@ -1,5 +1,5 @@
1
- declare const _default: import("vue").DefineComponent<{
2
- modelValue: globalThis.PropType<boolean>;
1
+ declare const _default: import('vue').DefineComponent<{
2
+ modelValue: import('vue').PropType<boolean>;
3
3
  label: {
4
4
  type: globalThis.PropType<string>;
5
5
  };
@@ -37,8 +37,8 @@ declare const _default: import("vue").DefineComponent<{
37
37
  onIcon: {
38
38
  type: globalThis.PropType<string>;
39
39
  };
40
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<globalThis.ExtractPropTypes<{
41
- modelValue: globalThis.PropType<boolean>;
40
+ }, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<globalThis.ExtractPropTypes<{
41
+ modelValue: import('vue').PropType<boolean>;
42
42
  label: {
43
43
  type: globalThis.PropType<string>;
44
44
  };
@@ -78,8 +78,8 @@ declare const _default: import("vue").DefineComponent<{
78
78
  };
79
79
  }>>, {
80
80
  animate: boolean;
81
- size: 'sm' | 'md' | 'lg';
82
- color: 'primary' | 'secondary' | 'tertiary' | 'error';
83
- rounded: 'none' | 'sm' | 'md' | 'lg' | 'full' | string | number;
81
+ size: "sm" | "md" | "lg";
82
+ color: "primary" | "secondary" | "tertiary" | "error";
83
+ rounded: "none" | "sm" | "md" | "lg" | "full" | string | number;
84
84
  }, {}>;
85
85
  export default _default;
@@ -1,18 +1,20 @@
1
- declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
1
+ declare function __VLS_template(): {
2
+ default?(_: {}): any;
3
+ };
4
+ declare const __VLS_component: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
2
5
  value: string | number | symbol;
3
- color?: string | undefined;
6
+ color?: string;
4
7
  }>, {
5
8
  color: string;
6
- }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<globalThis.ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
9
+ }>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<globalThis.ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
7
10
  value: string | number | symbol;
8
- color?: string | undefined;
11
+ color?: string;
9
12
  }>, {
10
13
  color: string;
11
14
  }>>>, {
12
15
  color: string;
13
- }, {}>, {
14
- default?(_: {}): any;
15
- }>;
16
+ }, {}>;
17
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
16
18
  export default _default;
17
19
  type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
18
20
  type __VLS_TypePropsToRuntimeProps<T> = {
@@ -1,5 +1,8 @@
1
- declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
2
- modelValue: globalThis.PropType<string | number | symbol>;
1
+ declare function __VLS_template(): {
2
+ default?(_: {}): any;
3
+ };
4
+ declare const __VLS_component: import('vue').DefineComponent<{
5
+ modelValue: import('vue').PropType<string | number | symbol>;
3
6
  direction: {
4
7
  type: globalThis.PropType<"horizontal" | "vertical">;
5
8
  default: string;
@@ -7,8 +10,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
7
10
  defaultValue: {
8
11
  type: globalThis.PropType<string | number | symbol>;
9
12
  };
10
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<globalThis.ExtractPropTypes<{
11
- modelValue: globalThis.PropType<string | number | symbol>;
13
+ }, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<globalThis.ExtractPropTypes<{
14
+ modelValue: import('vue').PropType<string | number | symbol>;
12
15
  direction: {
13
16
  type: globalThis.PropType<"horizontal" | "vertical">;
14
17
  default: string;
@@ -18,9 +21,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
18
21
  };
19
22
  }>>, {
20
23
  direction: "horizontal" | "vertical";
21
- }, {}>, {
22
- default?(_: {}): any;
23
- }>;
24
+ }, {}>;
25
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
24
26
  export default _default;
25
27
  type __VLS_WithTemplateSlots<T, S> = T & {
26
28
  new (): {