sprintify-ui 0.0.93 → 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.
- package/dist/sprintify-ui.es.js +15388 -6135
- package/dist/style.css +1 -1
- package/dist/types/src/components/BaseActionItem.vue.d.ts +25 -102
- package/dist/types/src/components/BaseApp.vue.d.ts +8 -47
- package/dist/types/src/components/BaseAutocomplete.vue.d.ts +90 -326
- package/dist/types/src/components/BaseAutocompleteFetch.vue.d.ts +85 -290
- package/dist/types/src/components/BaseBadge.vue.d.ts +27 -110
- package/dist/types/src/components/BaseBelongsTo.vue.d.ts +89 -294
- package/dist/types/src/components/BaseButtonGroup.vue.d.ts +71 -254
- package/dist/types/src/components/BaseCard.vue.d.ts +15 -68
- package/dist/types/src/components/BaseClipboard.vue.d.ts +15 -68
- package/dist/types/src/components/BaseColor.vue.d.ts +79 -0
- package/dist/types/src/components/BaseDataIterator.vue.d.ts +82 -258
- package/dist/types/src/components/BaseDataTable.vue.d.ts +158 -509
- package/dist/types/src/components/BaseDescriptionList.vue.d.ts +8 -47
- package/dist/types/src/components/BaseDescriptionListItem.vue.d.ts +9 -48
- package/dist/types/src/components/BaseDialog.vue.d.ts +31 -131
- package/dist/types/src/components/BaseDropdown.vue.d.ts +28 -110
- package/dist/types/src/components/BaseField.vue.d.ts +31 -124
- package/dist/types/src/components/BaseFileUploader.vue.d.ts +54 -192
- package/dist/types/src/components/BaseForm.vue.d.ts +62 -226
- package/dist/types/src/components/BaseHasMany.vue.d.ts +66 -219
- package/dist/types/src/components/BaseInput.vue.d.ts +9 -0
- package/dist/types/src/components/BaseInputError.vue.d.ts +8 -47
- package/dist/types/src/components/BaseLayoutSidebar.vue.d.ts +25 -98
- package/dist/types/src/components/BaseLayoutSidebarConfigurable.vue.d.ts +39 -155
- package/dist/types/src/components/BaseLayoutStacked.vue.d.ts +17 -70
- package/dist/types/src/components/BaseLayoutStackedConfigurable.vue.d.ts +39 -155
- package/dist/types/src/components/BaseMediaLibrary.vue.d.ts +63 -234
- package/dist/types/src/components/BaseMenu.vue.d.ts +32 -105
- package/dist/types/src/components/BaseModalCenter.vue.d.ts +42 -132
- package/dist/types/src/components/BaseModalSide.vue.d.ts +29 -118
- package/dist/types/src/components/BaseNavbar.vue.d.ts +24 -87
- package/dist/types/src/components/BaseRadioGroup.vue.d.ts +53 -194
- package/dist/types/src/components/BaseReadMore.vue.d.ts +15 -68
- package/dist/types/src/components/BaseRichText.vue.d.ts +92 -0
- package/dist/types/src/components/BaseSelect.vue.d.ts +35 -144
- package/dist/types/src/components/BaseSideNavigation.vue.d.ts +8 -47
- package/dist/types/src/components/BaseSideNavigationItem.vue.d.ts +23 -94
- package/dist/types/src/components/BaseSkeleton.vue.d.ts +19 -82
- package/dist/types/src/components/BaseSwitch.vue.d.ts +35 -144
- package/dist/types/src/components/BaseSystemAlert.vue.d.ts +27 -116
- package/dist/types/src/components/BaseTabItem.vue.d.ts +23 -94
- package/dist/types/src/components/BaseTable.vue.d.ts +101 -361
- package/dist/types/src/components/BaseTableColumn.vue.d.ts +1 -1
- package/dist/types/src/components/BaseTabs.vue.d.ts +8 -47
- package/dist/types/src/components/BaseTagAutocomplete.vue.d.ts +66 -236
- package/dist/types/src/components/BaseTagAutocompleteFetch.vue.d.ts +62 -212
- package/dist/types/src/components/index.d.ts +3 -1
- package/package.json +5 -1
- package/src/components/BaseButtonGroup.vue +2 -2
- package/src/components/BaseColor.stories.js +52 -0
- package/src/components/BaseColor.vue +98 -0
- package/src/components/BaseForm.vue +3 -3
- package/src/components/BaseInput.stories.js +52 -0
- package/src/components/BaseInput.vue +38 -1
- package/src/components/BaseModalCenter.stories.js +5 -0
- package/src/components/BaseModalCenter.vue +13 -5
- package/src/components/BaseRichText.stories.js +102 -0
- package/src/components/BaseRichText.vue +121 -0
- package/src/components/BaseTextarea.vue +1 -1
- package/src/components/index.ts +4 -0
|
@@ -1,113 +1,21 @@
|
|
|
1
|
-
declare const _default: {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
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
|
-
}, {
|
|
37
|
+
}, {
|
|
130
38
|
modelValue: boolean;
|
|
131
39
|
maxWidth: string;
|
|
132
40
|
backdropClass: string;
|
|
133
41
|
closeOnOutsideClick: boolean;
|
|
134
|
-
}
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
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
|
-
}
|
|
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
|
-
}
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
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
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
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
|
-
}, {
|
|
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
|
-
}
|
|
239
|
-
|
|
240
|
-
option: (
|
|
241
|
-
|
|
242
|
-
|
|
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
|
-
}
|
|
68
|
-
maxLines:
|
|
69
|
-
|
|
70
|
-
|
|
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
|
+
};
|