sprintify-ui 0.0.92 → 0.0.94

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 (62) hide show
  1. package/dist/sprintify-ui.es.js +15391 -6131
  2. package/dist/style.css +1 -1
  3. package/dist/types/src/components/BaseActionItem.vue.d.ts +25 -102
  4. package/dist/types/src/components/BaseApp.vue.d.ts +8 -47
  5. package/dist/types/src/components/BaseAutocomplete.vue.d.ts +90 -326
  6. package/dist/types/src/components/BaseAutocompleteFetch.vue.d.ts +85 -290
  7. package/dist/types/src/components/BaseBadge.vue.d.ts +27 -110
  8. package/dist/types/src/components/BaseBelongsTo.vue.d.ts +89 -294
  9. package/dist/types/src/components/BaseButtonGroup.vue.d.ts +71 -254
  10. package/dist/types/src/components/BaseCard.vue.d.ts +15 -68
  11. package/dist/types/src/components/BaseClipboard.vue.d.ts +15 -68
  12. package/dist/types/src/components/BaseColor.vue.d.ts +79 -0
  13. package/dist/types/src/components/BaseDataIterator.vue.d.ts +82 -258
  14. package/dist/types/src/components/BaseDataTable.vue.d.ts +158 -509
  15. package/dist/types/src/components/BaseDescriptionList.vue.d.ts +8 -47
  16. package/dist/types/src/components/BaseDescriptionListItem.vue.d.ts +9 -48
  17. package/dist/types/src/components/BaseDialog.vue.d.ts +31 -131
  18. package/dist/types/src/components/BaseDropdown.vue.d.ts +28 -110
  19. package/dist/types/src/components/BaseField.vue.d.ts +31 -124
  20. package/dist/types/src/components/BaseFileUploader.vue.d.ts +54 -192
  21. package/dist/types/src/components/BaseForm.vue.d.ts +62 -226
  22. package/dist/types/src/components/BaseHasMany.vue.d.ts +66 -219
  23. package/dist/types/src/components/BaseInput.vue.d.ts +9 -0
  24. package/dist/types/src/components/BaseInputError.vue.d.ts +8 -47
  25. package/dist/types/src/components/BaseLayoutSidebar.vue.d.ts +25 -98
  26. package/dist/types/src/components/BaseLayoutSidebarConfigurable.vue.d.ts +39 -155
  27. package/dist/types/src/components/BaseLayoutStacked.vue.d.ts +17 -70
  28. package/dist/types/src/components/BaseLayoutStackedConfigurable.vue.d.ts +39 -155
  29. package/dist/types/src/components/BaseMediaLibrary.vue.d.ts +63 -234
  30. package/dist/types/src/components/BaseMenu.vue.d.ts +32 -105
  31. package/dist/types/src/components/BaseModalCenter.vue.d.ts +47 -118
  32. package/dist/types/src/components/BaseModalSide.vue.d.ts +29 -118
  33. package/dist/types/src/components/BaseNavbar.vue.d.ts +24 -87
  34. package/dist/types/src/components/BaseRadioGroup.vue.d.ts +53 -194
  35. package/dist/types/src/components/BaseReadMore.vue.d.ts +15 -68
  36. package/dist/types/src/components/BaseRichText.vue.d.ts +92 -0
  37. package/dist/types/src/components/BaseSelect.vue.d.ts +35 -144
  38. package/dist/types/src/components/BaseSideNavigation.vue.d.ts +8 -47
  39. package/dist/types/src/components/BaseSideNavigationItem.vue.d.ts +23 -94
  40. package/dist/types/src/components/BaseSkeleton.vue.d.ts +19 -82
  41. package/dist/types/src/components/BaseSwitch.vue.d.ts +35 -144
  42. package/dist/types/src/components/BaseSystemAlert.vue.d.ts +27 -116
  43. package/dist/types/src/components/BaseTabItem.vue.d.ts +23 -94
  44. package/dist/types/src/components/BaseTable.vue.d.ts +101 -361
  45. package/dist/types/src/components/BaseTableColumn.vue.d.ts +1 -1
  46. package/dist/types/src/components/BaseTabs.vue.d.ts +8 -47
  47. package/dist/types/src/components/BaseTagAutocomplete.vue.d.ts +66 -236
  48. package/dist/types/src/components/BaseTagAutocompleteFetch.vue.d.ts +62 -212
  49. package/dist/types/src/components/index.d.ts +3 -1
  50. package/package.json +5 -1
  51. package/src/components/BaseButtonGroup.vue +2 -2
  52. package/src/components/BaseColor.stories.js +52 -0
  53. package/src/components/BaseColor.vue +98 -0
  54. package/src/components/BaseForm.vue +3 -3
  55. package/src/components/BaseInput.stories.js +52 -0
  56. package/src/components/BaseInput.vue +38 -1
  57. package/src/components/BaseModalCenter.stories.js +5 -0
  58. package/src/components/BaseModalCenter.vue +21 -6
  59. package/src/components/BaseRichText.stories.js +102 -0
  60. package/src/components/BaseRichText.vue +121 -0
  61. package/src/components/BaseTextarea.vue +1 -1
  62. package/src/components/index.ts +4 -0
@@ -1,113 +1,21 @@
1
- declare const _default: {
2
- new (...args: any[]): {
3
- $: import("vue").ComponentInternalInstance;
4
- $data: {};
5
- $props: Partial<{
6
- modelValue: boolean;
7
- maxWidth: string;
8
- backdropClass: string;
9
- closeOnOutsideClick: boolean;
10
- }> & Omit<Readonly<import("vue").ExtractPropTypes<{
11
- modelValue: {
12
- default: boolean;
13
- type: BooleanConstructor;
14
- };
15
- maxWidth: {
16
- default: string;
17
- type: StringConstructor;
18
- };
19
- backdropClass: {
20
- default: string;
21
- type: StringConstructor;
22
- };
23
- closeOnOutsideClick: {
24
- default: boolean;
25
- type: BooleanConstructor;
26
- };
27
- }>> & {
28
- "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
29
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "modelValue" | "maxWidth" | "backdropClass" | "closeOnOutsideClick">;
30
- $attrs: {
31
- [x: string]: unknown;
32
- };
33
- $refs: {
34
- [x: string]: unknown;
35
- };
36
- $slots: Readonly<{
37
- [name: string]: import("vue").Slot | undefined;
38
- }>;
39
- $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
40
- $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
41
- $emit: (event: "update:modelValue", ...args: any[]) => void;
42
- $el: any;
43
- $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
44
- modelValue: {
45
- default: boolean;
46
- type: BooleanConstructor;
47
- };
48
- maxWidth: {
49
- default: string;
50
- type: StringConstructor;
51
- };
52
- backdropClass: {
53
- default: string;
54
- type: StringConstructor;
55
- };
56
- closeOnOutsideClick: {
57
- default: boolean;
58
- type: BooleanConstructor;
59
- };
60
- }>> & {
61
- "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
62
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], string, {
63
- modelValue: boolean;
64
- maxWidth: string;
65
- backdropClass: string;
66
- closeOnOutsideClick: boolean;
67
- }, {}, string> & {
68
- beforeCreate?: ((() => void) | (() => void)[]) | undefined;
69
- created?: ((() => void) | (() => void)[]) | undefined;
70
- beforeMount?: ((() => void) | (() => void)[]) | undefined;
71
- mounted?: ((() => void) | (() => void)[]) | undefined;
72
- beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
73
- updated?: ((() => void) | (() => void)[]) | undefined;
74
- activated?: ((() => void) | (() => void)[]) | undefined;
75
- deactivated?: ((() => void) | (() => void)[]) | undefined;
76
- beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
77
- beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
78
- destroyed?: ((() => void) | (() => void)[]) | undefined;
79
- unmounted?: ((() => void) | (() => void)[]) | undefined;
80
- renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
81
- renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
82
- errorCaptured?: (((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null, info: string) => boolean | void)[]) | undefined;
83
- };
84
- $forceUpdate: () => void;
85
- $nextTick: typeof import("vue").nextTick;
86
- $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
87
- } & Readonly<import("vue").ExtractPropTypes<{
88
- modelValue: {
89
- default: boolean;
90
- type: BooleanConstructor;
91
- };
92
- maxWidth: {
93
- default: string;
94
- type: StringConstructor;
95
- };
96
- backdropClass: {
97
- default: string;
98
- type: StringConstructor;
99
- };
100
- closeOnOutsideClick: {
101
- default: boolean;
102
- type: BooleanConstructor;
103
- };
104
- }>> & {
105
- "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
106
- } & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
107
- __isFragment?: undefined;
108
- __isTeleport?: undefined;
109
- __isSuspense?: undefined;
110
- } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
1
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
2
+ modelValue: {
3
+ default: boolean;
4
+ type: BooleanConstructor;
5
+ };
6
+ maxWidth: {
7
+ default: string;
8
+ type: StringConstructor;
9
+ };
10
+ backdropClass: {
11
+ default: string;
12
+ type: StringConstructor;
13
+ };
14
+ closeOnOutsideClick: {
15
+ default: boolean;
16
+ type: BooleanConstructor;
17
+ };
18
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
111
19
  modelValue: {
112
20
  default: boolean;
113
21
  type: BooleanConstructor;
@@ -126,16 +34,19 @@ declare const _default: {
126
34
  };
127
35
  }>> & {
128
36
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
129
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", {
37
+ }, {
130
38
  modelValue: boolean;
131
39
  maxWidth: string;
132
40
  backdropClass: string;
133
41
  closeOnOutsideClick: boolean;
134
- }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
135
- $slots: {
136
- default: (_: {
137
- close: () => void;
138
- }) => any;
139
- };
140
- });
42
+ }>, {
43
+ default: (_: {
44
+ close: () => void;
45
+ }) => any;
46
+ }>;
141
47
  export default _default;
48
+ type __VLS_WithTemplateSlots<T, S> = T & {
49
+ new (): {
50
+ $slots: S;
51
+ };
52
+ };
@@ -1,79 +1,4 @@
1
- declare const _default: {
2
- new (...args: any[]): {
3
- $: import("vue").ComponentInternalInstance;
4
- $data: {};
5
- $props: Partial<{
6
- dark: boolean;
7
- size: string;
8
- }> & Omit<Readonly<import("vue").ExtractPropTypes<{
9
- size: {
10
- default: string;
11
- type: StringConstructor;
12
- };
13
- dark: {
14
- default: boolean;
15
- type: BooleanConstructor;
16
- };
17
- }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "dark" | "size">;
18
- $attrs: {
19
- [x: string]: unknown;
20
- };
21
- $refs: {
22
- [x: string]: unknown;
23
- };
24
- $slots: Readonly<{
25
- [name: string]: import("vue").Slot | undefined;
26
- }>;
27
- $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
28
- $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
29
- $emit: (event: string, ...args: any[]) => void;
30
- $el: any;
31
- $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
32
- size: {
33
- default: string;
34
- type: StringConstructor;
35
- };
36
- dark: {
37
- default: boolean;
38
- type: BooleanConstructor;
39
- };
40
- }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
41
- dark: boolean;
42
- size: string;
43
- }, {}, string> & {
44
- beforeCreate?: ((() => void) | (() => void)[]) | undefined;
45
- created?: ((() => void) | (() => void)[]) | undefined;
46
- beforeMount?: ((() => void) | (() => void)[]) | undefined;
47
- mounted?: ((() => void) | (() => void)[]) | undefined;
48
- beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
49
- updated?: ((() => void) | (() => void)[]) | undefined;
50
- activated?: ((() => void) | (() => void)[]) | undefined;
51
- deactivated?: ((() => void) | (() => void)[]) | undefined;
52
- beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
53
- beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
54
- destroyed?: ((() => void) | (() => void)[]) | undefined;
55
- unmounted?: ((() => void) | (() => void)[]) | undefined;
56
- renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
57
- renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
58
- errorCaptured?: (((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null, info: string) => boolean | void)[]) | undefined;
59
- };
60
- $forceUpdate: () => void;
61
- $nextTick: typeof import("vue").nextTick;
62
- $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
63
- } & Readonly<import("vue").ExtractPropTypes<{
64
- size: {
65
- default: string;
66
- type: StringConstructor;
67
- };
68
- dark: {
69
- default: boolean;
70
- type: BooleanConstructor;
71
- };
72
- }>> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
73
- __isFragment?: undefined;
74
- __isTeleport?: undefined;
75
- __isSuspense?: undefined;
76
- } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
1
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
77
2
  size: {
78
3
  default: string;
79
4
  type: StringConstructor;
@@ -82,17 +7,29 @@ declare const _default: {
82
7
  default: boolean;
83
8
  type: BooleanConstructor;
84
9
  };
85
- }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
10
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
11
+ size: {
12
+ default: string;
13
+ type: StringConstructor;
14
+ };
15
+ dark: {
16
+ default: boolean;
17
+ type: BooleanConstructor;
18
+ };
19
+ }>>, {
86
20
  dark: boolean;
87
21
  size: string;
88
- }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
89
- $slots: {
90
- navbar: (_: {}) => any;
91
- mobile: (_: {
92
- toggleMenu: () => void;
93
- closeMenu: () => void;
94
- openMenu: () => void;
95
- }) => any;
96
- };
97
- });
22
+ }>, {
23
+ navbar: (_: {}) => any;
24
+ mobile: (_: {
25
+ toggleMenu: () => void;
26
+ closeMenu: () => void;
27
+ openMenu: () => void;
28
+ }) => any;
29
+ }>;
98
30
  export default _default;
31
+ type __VLS_WithTemplateSlots<T, S> = T & {
32
+ new (): {
33
+ $slots: S;
34
+ };
35
+ };
@@ -1,191 +1,47 @@
1
1
  import { PropType } from 'vue';
2
2
  import { Option } from '@/types';
3
- declare const _default: {
4
- new (...args: any[]): {
5
- $: import("vue").ComponentInternalInstance;
6
- $data: {};
7
- $props: Partial<{
8
- required: boolean;
9
- modelValue: Option | undefined;
10
- disabled: boolean;
11
- hasError: boolean;
12
- inputClass: string;
13
- labelClass: string;
14
- }> & Omit<Readonly<import("vue").ExtractPropTypes<{
15
- modelValue: {
16
- default: undefined;
17
- type: PropType<Option | undefined>;
18
- };
19
- name: {
20
- required: true;
21
- type: StringConstructor;
22
- };
23
- required: {
24
- default: boolean;
25
- type: BooleanConstructor;
26
- };
27
- disabled: {
28
- default: boolean;
29
- type: BooleanConstructor;
30
- };
31
- options: {
32
- required: true;
33
- type: PropType<Option[]>;
34
- };
35
- labelKey: {
36
- required: true;
37
- type: StringConstructor;
38
- };
39
- valueKey: {
40
- required: true;
41
- type: StringConstructor;
42
- };
43
- labelClass: {
44
- default: string;
45
- type: StringConstructor;
46
- };
47
- inputClass: {
48
- default: string;
49
- type: StringConstructor;
50
- };
51
- hasError: {
52
- default: boolean;
53
- type: BooleanConstructor;
54
- };
55
- }>> & {
56
- "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
57
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "required" | "modelValue" | "disabled" | "hasError" | "inputClass" | "labelClass">;
58
- $attrs: {
59
- [x: string]: unknown;
60
- };
61
- $refs: {
62
- [x: string]: unknown;
63
- };
64
- $slots: Readonly<{
65
- [name: string]: import("vue").Slot | undefined;
66
- }>;
67
- $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
68
- $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
69
- $emit: (event: "update:modelValue", ...args: any[]) => void;
70
- $el: any;
71
- $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
72
- modelValue: {
73
- default: undefined;
74
- type: PropType<Option | undefined>;
75
- };
76
- name: {
77
- required: true;
78
- type: StringConstructor;
79
- };
80
- required: {
81
- default: boolean;
82
- type: BooleanConstructor;
83
- };
84
- disabled: {
85
- default: boolean;
86
- type: BooleanConstructor;
87
- };
88
- options: {
89
- required: true;
90
- type: PropType<Option[]>;
91
- };
92
- labelKey: {
93
- required: true;
94
- type: StringConstructor;
95
- };
96
- valueKey: {
97
- required: true;
98
- type: StringConstructor;
99
- };
100
- labelClass: {
101
- default: string;
102
- type: StringConstructor;
103
- };
104
- inputClass: {
105
- default: string;
106
- type: StringConstructor;
107
- };
108
- hasError: {
109
- default: boolean;
110
- type: BooleanConstructor;
111
- };
112
- }>> & {
113
- "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
114
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], string, {
115
- required: boolean;
116
- modelValue: Option | undefined;
117
- disabled: boolean;
118
- hasError: boolean;
119
- inputClass: string;
120
- labelClass: string;
121
- }, {}, string> & {
122
- beforeCreate?: ((() => void) | (() => void)[]) | undefined;
123
- created?: ((() => void) | (() => void)[]) | undefined;
124
- beforeMount?: ((() => void) | (() => void)[]) | undefined;
125
- mounted?: ((() => void) | (() => void)[]) | undefined;
126
- beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
127
- updated?: ((() => void) | (() => void)[]) | undefined;
128
- activated?: ((() => void) | (() => void)[]) | undefined;
129
- deactivated?: ((() => void) | (() => void)[]) | undefined;
130
- beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
131
- beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
132
- destroyed?: ((() => void) | (() => void)[]) | undefined;
133
- unmounted?: ((() => void) | (() => void)[]) | undefined;
134
- renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
135
- renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
136
- errorCaptured?: (((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null, info: string) => boolean | void)[]) | undefined;
137
- };
138
- $forceUpdate: () => void;
139
- $nextTick: typeof import("vue").nextTick;
140
- $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
141
- } & Readonly<import("vue").ExtractPropTypes<{
142
- modelValue: {
143
- default: undefined;
144
- type: PropType<Option | undefined>;
145
- };
146
- name: {
147
- required: true;
148
- type: StringConstructor;
149
- };
150
- required: {
151
- default: boolean;
152
- type: BooleanConstructor;
153
- };
154
- disabled: {
155
- default: boolean;
156
- type: BooleanConstructor;
157
- };
158
- options: {
159
- required: true;
160
- type: PropType<Option[]>;
161
- };
162
- labelKey: {
163
- required: true;
164
- type: StringConstructor;
165
- };
166
- valueKey: {
167
- required: true;
168
- type: StringConstructor;
169
- };
170
- labelClass: {
171
- default: string;
172
- type: StringConstructor;
173
- };
174
- inputClass: {
175
- default: string;
176
- type: StringConstructor;
177
- };
178
- hasError: {
179
- default: boolean;
180
- type: BooleanConstructor;
181
- };
182
- }>> & {
183
- "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
184
- } & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
185
- __isFragment?: undefined;
186
- __isTeleport?: undefined;
187
- __isSuspense?: undefined;
188
- } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
3
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
4
+ modelValue: {
5
+ default: undefined;
6
+ type: PropType<Option | undefined>;
7
+ };
8
+ name: {
9
+ required: true;
10
+ type: StringConstructor;
11
+ };
12
+ required: {
13
+ default: boolean;
14
+ type: BooleanConstructor;
15
+ };
16
+ disabled: {
17
+ default: boolean;
18
+ type: BooleanConstructor;
19
+ };
20
+ options: {
21
+ required: true;
22
+ type: PropType<Option[]>;
23
+ };
24
+ labelKey: {
25
+ required: true;
26
+ type: StringConstructor;
27
+ };
28
+ valueKey: {
29
+ required: true;
30
+ type: StringConstructor;
31
+ };
32
+ labelClass: {
33
+ default: string;
34
+ type: StringConstructor;
35
+ };
36
+ inputClass: {
37
+ default: string;
38
+ type: StringConstructor;
39
+ };
40
+ hasError: {
41
+ default: boolean;
42
+ type: BooleanConstructor;
43
+ };
44
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
189
45
  modelValue: {
190
46
  default: undefined;
191
47
  type: PropType<Option | undefined>;
@@ -228,18 +84,21 @@ declare const _default: {
228
84
  };
229
85
  }>> & {
230
86
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
231
- }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", {
87
+ }, {
232
88
  required: boolean;
233
89
  modelValue: Option | undefined;
234
90
  disabled: boolean;
235
91
  hasError: boolean;
236
92
  inputClass: string;
237
93
  labelClass: string;
238
- }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
239
- $slots: {
240
- option: (_: {
241
- option: import("@/types").NormalizedOption;
242
- }) => any;
243
- };
244
- });
94
+ }>, {
95
+ option: (_: {
96
+ option: import("@/types").NormalizedOption;
97
+ }) => any;
98
+ }>;
245
99
  export default _default;
100
+ type __VLS_WithTemplateSlots<T, S> = T & {
101
+ new (): {
102
+ $slots: S;
103
+ };
104
+ };
@@ -1,74 +1,21 @@
1
- declare const _default: {
2
- new (...args: any[]): {
3
- $: import("vue").ComponentInternalInstance;
4
- $data: {};
5
- $props: Partial<{
6
- maxLines: number;
7
- }> & Omit<Readonly<import("vue").ExtractPropTypes<{
8
- maxLines: {
9
- default: number;
10
- type: NumberConstructor;
11
- };
12
- }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "maxLines">;
13
- $attrs: {
14
- [x: string]: unknown;
15
- };
16
- $refs: {
17
- [x: string]: unknown;
18
- };
19
- $slots: Readonly<{
20
- [name: string]: import("vue").Slot | undefined;
21
- }>;
22
- $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
23
- $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
24
- $emit: (event: string, ...args: any[]) => void;
25
- $el: any;
26
- $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
27
- maxLines: {
28
- default: number;
29
- type: NumberConstructor;
30
- };
31
- }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
32
- maxLines: number;
33
- }, {}, string> & {
34
- beforeCreate?: ((() => void) | (() => void)[]) | undefined;
35
- created?: ((() => void) | (() => void)[]) | undefined;
36
- beforeMount?: ((() => void) | (() => void)[]) | undefined;
37
- mounted?: ((() => void) | (() => void)[]) | undefined;
38
- beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
39
- updated?: ((() => void) | (() => void)[]) | undefined;
40
- activated?: ((() => void) | (() => void)[]) | undefined;
41
- deactivated?: ((() => void) | (() => void)[]) | undefined;
42
- beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
43
- beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
44
- destroyed?: ((() => void) | (() => void)[]) | undefined;
45
- unmounted?: ((() => void) | (() => void)[]) | undefined;
46
- renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
47
- renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
48
- errorCaptured?: (((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null, info: string) => boolean | void)[]) | undefined;
49
- };
50
- $forceUpdate: () => void;
51
- $nextTick: typeof import("vue").nextTick;
52
- $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
53
- } & Readonly<import("vue").ExtractPropTypes<{
54
- maxLines: {
55
- default: number;
56
- type: NumberConstructor;
57
- };
58
- }>> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
59
- __isFragment?: undefined;
60
- __isTeleport?: undefined;
61
- __isSuspense?: undefined;
62
- } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
1
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
63
2
  maxLines: {
64
3
  default: number;
65
4
  type: NumberConstructor;
66
5
  };
67
- }>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
68
- maxLines: number;
69
- }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
70
- $slots: {
71
- default: (_: {}) => any;
6
+ }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
7
+ maxLines: {
8
+ default: number;
9
+ type: NumberConstructor;
72
10
  };
73
- });
11
+ }>>, {
12
+ maxLines: number;
13
+ }>, {
14
+ default: (_: {}) => any;
15
+ }>;
74
16
  export default _default;
17
+ type __VLS_WithTemplateSlots<T, S> = T & {
18
+ new (): {
19
+ $slots: S;
20
+ };
21
+ };