@roku-ui/vue 0.13.1 → 0.14.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 (57) hide show
  1. package/dist/components/AspectRatio.vue.d.ts +11 -28
  2. package/dist/components/Avatar.vue.d.ts +4 -27
  3. package/dist/components/Btn.vue.d.ts +21 -46
  4. package/dist/components/BtnGroup.vue.d.ts +5 -28
  5. package/dist/components/ChatContainer.vue.d.ts +8 -3
  6. package/dist/components/ChatMessage.vue.d.ts +16 -38
  7. package/dist/components/ChatSystem.vue.d.ts +18 -34
  8. package/dist/components/Chip.vue.d.ts +28 -46
  9. package/dist/components/ColorInput.vue.d.ts +7 -13
  10. package/dist/components/ColorSwatch.vue.d.ts +5 -27
  11. package/dist/components/Drawer.vue.d.ts +12 -32
  12. package/dist/components/Dropzone.vue.d.ts +16 -32
  13. package/dist/components/FullscreenOverlay.vue.d.ts +14 -30
  14. package/dist/components/Image.vue.d.ts +4 -27
  15. package/dist/components/Indicator.vue.d.ts +13 -33
  16. package/dist/components/Modal.vue.d.ts +12 -30
  17. package/dist/components/Notification.vue.d.ts +14 -40
  18. package/dist/components/NotificationSystem.vue.d.ts +4 -35
  19. package/dist/components/Overlay.vue.d.ts +14 -34
  20. package/dist/components/Paper.vue.d.ts +18 -43
  21. package/dist/components/PinInput.vue.d.ts +4 -25
  22. package/dist/components/Popover.vue.d.ts +25 -43
  23. package/dist/components/Progress.vue.d.ts +9 -41
  24. package/dist/components/Rating.vue.d.ts +11 -29
  25. package/dist/components/RokuProvider.vue.d.ts +12 -53
  26. package/dist/components/SchemeSwitch.vue.d.ts +1 -1
  27. package/dist/components/ScrollArea.vue.d.ts +16 -31
  28. package/dist/components/Select.vue.d.ts +13 -15
  29. package/dist/components/SelectArea.vue.d.ts +9 -30
  30. package/dist/components/Slider.vue.d.ts +5 -38
  31. package/dist/components/Switch.vue.d.ts +11 -34
  32. package/dist/components/TabItem.vue.d.ts +13 -27
  33. package/dist/components/Tabs.vue.d.ts +14 -28
  34. package/dist/components/Tag.vue.d.ts +17 -35
  35. package/dist/components/TextField.vue.d.ts +16 -34
  36. package/dist/components/ThemeProvider.vue.d.ts +10 -14
  37. package/dist/components/Tooltip.vue.d.ts +15 -28
  38. package/dist/composables/dom.d.ts +2 -2
  39. package/dist/composables/index.d.ts +11 -9
  40. package/dist/index.d.ts +1 -1
  41. package/dist/index.js +3034 -2732
  42. package/dist/index.umd.cjs +1 -1
  43. package/dist/shared/index.d.ts +88 -495
  44. package/dist/style.css +1 -1
  45. package/dist/test/App.vue.d.ts +1 -1
  46. package/dist/test/demo/PopoverDemo.vue.d.ts +1 -1
  47. package/dist/test/demo/RatingDemo.vue.d.ts +1 -1
  48. package/dist/test/demo/SelectAreaDemo.vue.d.ts +1 -1
  49. package/dist/test/demo/SelectDemo.vue.d.ts +2 -0
  50. package/dist/test/demo/TagsDemo.vue.d.ts +1 -1
  51. package/dist/test/demo/WaterfallDemo.vue.d.ts +1 -1
  52. package/dist/types/index.d.ts +4 -2
  53. package/dist/utils/classGenerator.d.ts +1 -1
  54. package/dist/utils/index.d.ts +3 -3
  55. package/dist/utils/notifications.d.ts +10 -1
  56. package/dist/utils/theme.d.ts +5 -5
  57. package/package.json +19 -21
@@ -1,47 +1,30 @@
1
1
  declare function __VLS_template(): {
2
- default?(_: {}): any;
2
+ slots: {
3
+ default?(_: {}): any;
4
+ };
5
+ refs: {};
6
+ attrs: Partial<{}>;
3
7
  };
4
- declare const __VLS_component: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<{
8
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
9
+ declare const __VLS_component: import('vue').DefineComponent<{
5
10
  ratio?: number;
6
11
  width?: number | string;
7
12
  maxWidth?: number | string;
8
13
  height?: number | string;
9
14
  maxHeight?: number | string;
10
- }>, {
11
- ratio: number;
12
- }>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<globalThis.ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<{
15
+ }, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
13
16
  ratio?: number;
14
17
  width?: number | string;
15
18
  maxWidth?: number | string;
16
19
  height?: number | string;
17
20
  maxHeight?: number | string;
18
- }>, {
19
- ratio: number;
20
- }>>>, {
21
+ }> & Readonly<{}>, {
21
22
  ratio: number;
22
- }, {}>;
23
- declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
23
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
24
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
24
25
  export default _default;
25
-
26
- type __VLS_WithDefaults<P, D> = {
27
- [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
28
- default: D[K];
29
- }> : P[K];
30
- };
31
- type __VLS_Prettify<T> = {
32
- [K in keyof T]: T[K];
33
- } & {};
34
26
  type __VLS_WithTemplateSlots<T, S> = T & {
35
27
  new (): {
36
28
  $slots: S;
37
29
  };
38
30
  };
39
- type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
40
- type __VLS_TypePropsToOption<T> = {
41
- [K in keyof T]-?: {} extends Pick<T, K> ? {
42
- type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
43
- } : {
44
- type: import('vue').PropType<T[K]>;
45
- required: true;
46
- };
47
- };
@@ -1,41 +1,18 @@
1
1
  import { Component } from 'vue';
2
- declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<{
2
+ declare const _default: import('vue').DefineComponent<{
3
3
  is?: string | Component;
4
4
  src?: string;
5
5
  size?: "sm" | "md" | "lg" | string | number;
6
6
  style?: any;
7
7
  class?: any;
8
- }>, {
9
- size: string;
10
- is: string;
11
- }>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<globalThis.ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<{
8
+ }, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
12
9
  is?: string | Component;
13
10
  src?: string;
14
11
  size?: "sm" | "md" | "lg" | string | number;
15
12
  style?: any;
16
13
  class?: any;
17
- }>, {
18
- size: string;
19
- is: string;
20
- }>>>, {
14
+ }> & Readonly<{}>, {
21
15
  is: string | Component;
22
16
  size: "sm" | "md" | "lg" | string | number;
23
- }, {}>;
17
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
24
18
  export default _default;
25
- type __VLS_WithDefaults<P, D> = {
26
- [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
27
- default: D[K];
28
- }> : P[K];
29
- };
30
- type __VLS_Prettify<T> = {
31
- [K in keyof T]: T[K];
32
- } & {};
33
- type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
34
- type __VLS_TypePropsToOption<T> = {
35
- [K in keyof T]-?: {} extends Pick<T, K> ? {
36
- type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
37
- } : {
38
- type: import('vue').PropType<T[K]>;
39
- required: true;
40
- };
41
- };
@@ -1,48 +1,40 @@
1
- import { Variant } from '../types';
1
+ import { BtnVariant } from '../types';
2
+ import { Component } from 'vue';
2
3
  declare function __VLS_template(): {
3
- leftSection?(_: {}): any;
4
- default?(_: {}): any;
5
- rightSection?(_: {}): any;
4
+ slots: {
5
+ leftSection?(_: {}): any;
6
+ default?(_: {}): any;
7
+ rightSection?(_: {}): any;
8
+ };
9
+ refs: {
10
+ btn: unknown;
11
+ };
12
+ attrs: Partial<{}>;
6
13
  };
7
- declare const __VLS_component: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<{
14
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
15
+ declare const __VLS_component: import('vue').DefineComponent<{
8
16
  type?: "button" | "submit" | "reset";
9
17
  size?: "sm" | "md" | "lg";
10
18
  is?: string | Component;
11
19
  icon?: boolean;
12
20
  pressEffect?: "translate" | "scale";
13
- variant?: Variant;
14
- hoverVariant?: Variant;
21
+ variant?: BtnVariant;
22
+ hoverVariant?: BtnVariant;
15
23
  color?: string;
16
24
  rounded?: "none" | "sm" | "md" | "lg" | "full" | string | number;
17
25
  disabled?: boolean;
18
- }>, {
19
- rounded: string;
20
- type: string;
21
- size: string;
22
- is: string;
23
- icon: boolean;
24
- pressEffect: string;
25
- disabled: boolean;
26
- }>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<globalThis.ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<{
26
+ }, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
27
27
  type?: "button" | "submit" | "reset";
28
28
  size?: "sm" | "md" | "lg";
29
29
  is?: string | Component;
30
30
  icon?: boolean;
31
31
  pressEffect?: "translate" | "scale";
32
- variant?: Variant;
33
- hoverVariant?: Variant;
32
+ variant?: BtnVariant;
33
+ hoverVariant?: BtnVariant;
34
34
  color?: string;
35
35
  rounded?: "none" | "sm" | "md" | "lg" | "full" | string | number;
36
36
  disabled?: boolean;
37
- }>, {
38
- rounded: string;
39
- type: string;
40
- size: string;
41
- is: string;
42
- icon: boolean;
43
- pressEffect: string;
44
- disabled: boolean;
45
- }>>>, {
37
+ }> & Readonly<{}>, {
46
38
  type: "button" | "submit" | "reset";
47
39
  is: string | Component;
48
40
  size: "sm" | "md" | "lg";
@@ -50,28 +42,11 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_WithDefaults<
50
42
  pressEffect: "translate" | "scale";
51
43
  rounded: "none" | "sm" | "md" | "lg" | "full" | string | number;
52
44
  disabled: boolean;
53
- }, {}>;
54
- declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
45
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
46
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
55
47
  export default _default;
56
- type __VLS_WithDefaults<P, D> = {
57
- [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
58
- default: D[K];
59
- }> : P[K];
60
- };
61
- type __VLS_Prettify<T> = {
62
- [K in keyof T]: T[K];
63
- } & {};
64
48
  type __VLS_WithTemplateSlots<T, S> = T & {
65
49
  new (): {
66
50
  $slots: S;
67
51
  };
68
52
  };
69
- type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
70
- type __VLS_TypePropsToOption<T> = {
71
- [K in keyof T]-?: {} extends Pick<T, K> ? {
72
- type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
73
- } : {
74
- type: import('vue').PropType<T[K]>;
75
- required: true;
76
- };
77
- };
@@ -12,35 +12,12 @@ declare let __VLS_typeProps: {
12
12
  type __VLS_PublicProps = {
13
13
  modelValue?: string | undefined;
14
14
  } & typeof __VLS_typeProps;
15
- declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<__VLS_PublicProps>, {
16
- color: string;
17
- unselectable: undefined;
18
- }>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
19
- "update:modelValue": (modelValue: string | undefined) => void;
20
- }, string, import('vue').PublicProps, Readonly<globalThis.ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<__VLS_PublicProps>, {
21
- color: string;
22
- unselectable: undefined;
23
- }>>> & {
15
+ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
16
+ "update:modelValue": (modelValue: string | undefined) => any;
17
+ }, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
24
18
  "onUpdate:modelValue"?: ((modelValue: string | undefined) => any) | undefined;
25
- }, {
19
+ }>, {
26
20
  color: "primary" | "secondary" | "tertiary" | "error";
27
21
  unselectable: boolean;
28
- }, {}>;
22
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
29
23
  export default _default;
30
- type __VLS_WithDefaults<P, D> = {
31
- [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
32
- default: D[K];
33
- }> : P[K];
34
- };
35
- type __VLS_Prettify<T> = {
36
- [K in keyof T]: T[K];
37
- } & {};
38
- type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
39
- type __VLS_TypePropsToOption<T> = {
40
- [K in keyof T]-?: {} extends Pick<T, K> ? {
41
- type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
42
- } : {
43
- type: import('vue').PropType<T[K]>;
44
- required: true;
45
- };
46
- };
@@ -1,8 +1,13 @@
1
1
  declare function __VLS_template(): {
2
- default?(_: {}): any;
2
+ slots: {
3
+ default?(_: {}): any;
4
+ };
5
+ refs: {};
6
+ attrs: Partial<{}>;
3
7
  };
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>>;
8
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
9
+ declare const __VLS_component: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
10
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
6
11
  export default _default;
7
12
  type __VLS_WithTemplateSlots<T, S> = T & {
8
13
  new (): {
@@ -1,57 +1,35 @@
1
- import { Variant } from '../types';
1
+ import { ContainerVariant } from '../types';
2
2
  declare function __VLS_template(): {
3
- avatar?(_: {}): any;
4
- default?(_: {}): any;
3
+ slots: {
4
+ avatar?(_: {}): any;
5
+ default?(_: {}): any;
6
+ };
7
+ refs: {};
8
+ attrs: Partial<{}>;
5
9
  };
6
- declare const __VLS_component: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<{
10
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
11
+ declare const __VLS_component: import('vue').DefineComponent<{
7
12
  avatar?: string;
8
13
  position?: "left" | "right";
9
14
  color?: string;
10
- variant?: Variant;
15
+ variant?: ContainerVariant;
11
16
  withBorder?: boolean;
12
- }>, {
13
- position: string;
14
- variant: string;
15
- withBorder: boolean;
16
- color: string;
17
- }>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<globalThis.ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<{
17
+ }, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
18
18
  avatar?: string;
19
19
  position?: "left" | "right";
20
20
  color?: string;
21
- variant?: Variant;
21
+ variant?: ContainerVariant;
22
22
  withBorder?: boolean;
23
- }>, {
24
- position: string;
25
- variant: string;
26
- withBorder: boolean;
27
- color: string;
28
- }>>>, {
23
+ }> & Readonly<{}>, {
29
24
  color: string;
30
25
  position: "left" | "right";
31
- variant: Variant;
26
+ variant: ContainerVariant;
32
27
  withBorder: boolean;
33
- }, {}>;
34
- declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
28
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
29
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
35
30
  export default _default;
36
- type __VLS_WithDefaults<P, D> = {
37
- [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
38
- default: D[K];
39
- }> : P[K];
40
- };
41
- type __VLS_Prettify<T> = {
42
- [K in keyof T]: T[K];
43
- } & {};
44
31
  type __VLS_WithTemplateSlots<T, S> = T & {
45
32
  new (): {
46
33
  $slots: S;
47
34
  };
48
35
  };
49
- type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
50
- type __VLS_TypePropsToOption<T> = {
51
- [K in keyof T]-?: {} extends Pick<T, K> ? {
52
- type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
53
- } : {
54
- type: import('vue').PropType<T[K]>;
55
- required: true;
56
- };
57
- };
@@ -1,47 +1,31 @@
1
+ import { Color, ContainerVariant } from '../types';
1
2
  declare function __VLS_template(): {
2
- default?(_: {}): any;
3
+ slots: {
4
+ default?(_: {}): any;
5
+ };
6
+ refs: {};
7
+ attrs: Partial<{}>;
3
8
  };
4
- declare const __VLS_component: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<{
9
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
10
+ declare const __VLS_component: import('vue').DefineComponent<{
5
11
  position?: "left" | "right";
6
- color?: string;
7
- variant?: "default" | "transparent" | "fill";
12
+ color?: Color;
13
+ variant?: ContainerVariant;
8
14
  withBorder?: boolean;
9
- }>, {
10
- variant: string;
11
- withBorder: boolean;
12
- }>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<globalThis.ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<{
15
+ }, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
13
16
  position?: "left" | "right";
14
- color?: string;
15
- variant?: "default" | "transparent" | "fill";
17
+ color?: Color;
18
+ variant?: ContainerVariant;
16
19
  withBorder?: boolean;
17
- }>, {
18
- variant: string;
19
- withBorder: boolean;
20
- }>>>, {
21
- variant: "default" | "transparent" | "fill";
20
+ }> & Readonly<{}>, {
21
+ color: Color;
22
+ variant: ContainerVariant;
22
23
  withBorder: boolean;
23
- }, {}>;
24
- declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
24
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
25
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
25
26
  export default _default;
26
- type __VLS_WithDefaults<P, D> = {
27
- [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
28
- default: D[K];
29
- }> : P[K];
30
- };
31
- type __VLS_Prettify<T> = {
32
- [K in keyof T]: T[K];
33
- } & {};
34
27
  type __VLS_WithTemplateSlots<T, S> = T & {
35
28
  new (): {
36
29
  $slots: S;
37
30
  };
38
31
  };
39
- type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
40
- type __VLS_TypePropsToOption<T> = {
41
- [K in keyof T]-?: {} extends Pick<T, K> ? {
42
- type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
43
- } : {
44
- type: import('vue').PropType<T[K]>;
45
- required: true;
46
- };
47
- };
@@ -1,57 +1,39 @@
1
- declare let __VLS_typeProps: {
2
- is?: string | any;
3
- src?: string;
4
- size?: 'sm' | 'md' | 'lg' | string | number;
5
- style?: any;
6
- class?: any;
7
- rounded?: 'none' | 'sm' | 'md' | 'lg' | 'full' | string | number;
8
- };
9
- type __VLS_PublicProps = {
10
- modelValue?: boolean;
11
- } & typeof __VLS_typeProps;
1
+ import { Color, ContainerVariant } from '../types';
12
2
  declare function __VLS_template(): {
13
- leftSection?(_: {}): any;
14
- default?(_: {}): any;
15
- rightSection?(_: {}): any;
3
+ slots: {
4
+ leftSection?(_: {}): any;
5
+ default?(_: {}): any;
6
+ rightSection?(_: {}): any;
7
+ };
8
+ refs: {};
9
+ attrs: Partial<{}>;
16
10
  };
17
- declare const __VLS_component: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<__VLS_PublicProps>, {
18
- size: string;
19
- is: string;
20
- rounded: string;
21
- }>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
22
- "update:modelValue": (modelValue: boolean) => void;
23
- }, string, import('vue').PublicProps, Readonly<globalThis.ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<__VLS_PublicProps>, {
24
- size: string;
25
- is: string;
26
- rounded: string;
27
- }>>> & {
28
- "onUpdate:modelValue"?: ((modelValue: boolean) => any) | undefined;
29
- }, {
11
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
12
+ declare const __VLS_component: import('vue').DefineComponent<{
13
+ is?: string | any;
14
+ src?: string;
15
+ size?: "sm" | "md" | "lg" | string | number;
16
+ color?: Color;
17
+ variant?: ContainerVariant;
18
+ rounded?: "none" | "sm" | "md" | "lg" | "full" | string | number;
19
+ }, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
20
+ is?: string | any;
21
+ src?: string;
22
+ size?: "sm" | "md" | "lg" | string | number;
23
+ color?: Color;
24
+ variant?: ContainerVariant;
25
+ rounded?: "none" | "sm" | "md" | "lg" | "full" | string | number;
26
+ }> & Readonly<{}>, {
30
27
  is: string | any;
31
28
  size: "sm" | "md" | "lg" | string | number;
29
+ color: Color;
30
+ variant: ContainerVariant;
32
31
  rounded: "none" | "sm" | "md" | "lg" | "full" | string | number;
33
- }, {}>;
34
- declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
32
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
33
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
35
34
  export default _default;
36
- type __VLS_WithDefaults<P, D> = {
37
- [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
38
- default: D[K];
39
- }> : P[K];
40
- };
41
- type __VLS_Prettify<T> = {
42
- [K in keyof T]: T[K];
43
- } & {};
44
35
  type __VLS_WithTemplateSlots<T, S> = T & {
45
36
  new (): {
46
37
  $slots: S;
47
38
  };
48
39
  };
49
- type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
50
- type __VLS_TypePropsToOption<T> = {
51
- [K in keyof T]-?: {} extends Pick<T, K> ? {
52
- type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
53
- } : {
54
- type: import('vue').PropType<T[K]>;
55
- required: true;
56
- };
57
- };
@@ -1,21 +1,15 @@
1
1
  declare let __VLS_typeProps: {
2
2
  label?: string;
3
+ withBorder?: boolean;
3
4
  };
4
5
  type __VLS_PublicProps = {
5
6
  modelValue?: string;
6
7
  } & typeof __VLS_typeProps;
7
- declare const _default: import('vue').DefineComponent<__VLS_TypePropsToOption<__VLS_PublicProps>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
8
- "update:modelValue": (modelValue: string) => void;
9
- }, string, import('vue').PublicProps, Readonly<globalThis.ExtractPropTypes<__VLS_TypePropsToOption<__VLS_PublicProps>>> & {
8
+ declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
9
+ "update:modelValue": (modelValue: string) => any;
10
+ }, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
10
11
  "onUpdate:modelValue"?: ((modelValue: string) => any) | undefined;
11
- }, {}, {}>;
12
+ }>, {
13
+ withBorder: boolean;
14
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
12
15
  export default _default;
13
- type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
14
- type __VLS_TypePropsToOption<T> = {
15
- [K in keyof T]-?: {} extends Pick<T, K> ? {
16
- type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
17
- } : {
18
- type: import('vue').PropType<T[K]>;
19
- required: true;
20
- };
21
- };
@@ -1,36 +1,14 @@
1
- declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<{
1
+ import { Component } from 'vue';
2
+ declare const _default: import('vue').DefineComponent<{
2
3
  color: string;
3
4
  is?: string | Component;
4
5
  withBorder?: boolean;
5
- }>, {
6
- is: string;
7
- withBorder: boolean;
8
- }>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<globalThis.ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<{
6
+ }, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{
9
7
  color: string;
10
8
  is?: string | Component;
11
9
  withBorder?: boolean;
12
- }>, {
13
- is: string;
14
- withBorder: boolean;
15
- }>>>, {
10
+ }> & Readonly<{}>, {
16
11
  is: string | Component;
17
12
  withBorder: boolean;
18
- }, {}>;
13
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
19
14
  export default _default;
20
- type __VLS_WithDefaults<P, D> = {
21
- [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
22
- default: D[K];
23
- }> : P[K];
24
- };
25
- type __VLS_Prettify<T> = {
26
- [K in keyof T]: T[K];
27
- } & {};
28
- type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
29
- type __VLS_TypePropsToOption<T> = {
30
- [K in keyof T]-?: {} extends Pick<T, K> ? {
31
- type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
32
- } : {
33
- type: import('vue').PropType<T[K]>;
34
- required: true;
35
- };
36
- };
@@ -7,46 +7,26 @@ type __VLS_PublicProps = {
7
7
  modelValue?: boolean;
8
8
  } & typeof __VLS_typeProps;
9
9
  declare function __VLS_template(): {
10
- default?(_: {}): any;
10
+ slots: {
11
+ default?(_: {}): any;
12
+ };
13
+ refs: {};
14
+ attrs: Partial<{}>;
11
15
  };
12
- declare const __VLS_component: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<__VLS_PublicProps>, {
13
- persistent: boolean;
14
- blur: boolean;
15
- position: string;
16
- }>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
17
- "update:modelValue": (modelValue: boolean) => void;
18
- }, string, import('vue').PublicProps, Readonly<globalThis.ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<__VLS_PublicProps>, {
19
- persistent: boolean;
20
- blur: boolean;
21
- position: string;
22
- }>>> & {
16
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
17
+ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
18
+ "update:modelValue": (modelValue: boolean) => any;
19
+ }, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
23
20
  "onUpdate:modelValue"?: ((modelValue: boolean) => any) | undefined;
24
- }, {
21
+ }>, {
25
22
  position: "left" | "right";
26
23
  persistent: boolean;
27
24
  blur: "sm" | "md" | "lg" | boolean;
28
- }, {}>;
29
- declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
25
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
26
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
30
27
  export default _default;
31
- type __VLS_WithDefaults<P, D> = {
32
- [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
33
- default: D[K];
34
- }> : P[K];
35
- };
36
- type __VLS_Prettify<T> = {
37
- [K in keyof T]: T[K];
38
- } & {};
39
28
  type __VLS_WithTemplateSlots<T, S> = T & {
40
29
  new (): {
41
30
  $slots: S;
42
31
  };
43
32
  };
44
- type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
45
- type __VLS_TypePropsToOption<T> = {
46
- [K in keyof T]-?: {} extends Pick<T, K> ? {
47
- type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
48
- } : {
49
- type: import('vue').PropType<T[K]>;
50
- required: true;
51
- };
52
- };