sprintify-ui 0.0.14 → 0.0.16
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 +1072 -1098
- package/dist/types/src/components/BaseAppDialogs.vue.d.ts +2 -68
- package/dist/types/src/components/BaseAppNotifications.vue.d.ts +1 -43
- package/dist/types/src/components/BaseAvatar.vue.d.ts +20 -104
- package/dist/types/src/components/BaseBoolean.vue.d.ts +7 -59
- package/dist/types/src/components/BaseBreadcrumbs.vue.d.ts +7 -59
- package/dist/types/src/components/BaseCharacterCounter.vue.d.ts +24 -118
- package/dist/types/src/components/BaseCounter.vue.d.ts +20 -104
- package/dist/types/src/components/BaseDataTableToggleColumns.vue.d.ts +236 -898
- package/dist/types/src/components/BaseDatePicker.vue.d.ts +32 -154
- package/dist/types/src/components/BaseDateSelect.vue.d.ts +28 -138
- package/dist/types/src/components/BaseInput.vue.d.ts +39 -225
- package/dist/types/src/components/BaseLoadingCover.vue.d.ts +46 -188
- package/dist/types/src/components/BaseMediaItem.vue.d.ts +12 -82
- package/dist/types/src/components/BaseMediaPreview.vue.d.ts +12 -82
- package/dist/types/src/components/BaseMenuItem.vue.d.ts +24 -120
- package/dist/types/src/components/BaseNavbarItemContent.vue.d.ts +20 -106
- package/dist/types/src/components/BasePagination.vue.d.ts +17 -99
- package/dist/types/src/components/BaseTextarea.vue.d.ts +40 -182
- package/dist/types/src/components/BaseTextareaAutoresize.vue.d.ts +32 -159
- package/dist/types/src/svg/BaseSpinnerSmall.vue.d.ts +1 -43
- package/package.json +3 -3
- package/src/components/BaseInput.stories.js +1 -20
- package/src/components/BaseInput.vue +14 -42
|
@@ -1,107 +1,4 @@
|
|
|
1
|
-
declare const _default: {
|
|
2
|
-
new (...args: any[]): {
|
|
3
|
-
$: import("vue").ComponentInternalInstance;
|
|
4
|
-
$data: {};
|
|
5
|
-
$props: Partial<{
|
|
6
|
-
icon: string;
|
|
7
|
-
label: string;
|
|
8
|
-
count: number;
|
|
9
|
-
active: boolean;
|
|
10
|
-
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
11
|
-
label: {
|
|
12
|
-
default: undefined;
|
|
13
|
-
type: StringConstructor;
|
|
14
|
-
};
|
|
15
|
-
icon: {
|
|
16
|
-
default: undefined;
|
|
17
|
-
type: StringConstructor;
|
|
18
|
-
};
|
|
19
|
-
active: {
|
|
20
|
-
default: boolean;
|
|
21
|
-
type: BooleanConstructor;
|
|
22
|
-
};
|
|
23
|
-
count: {
|
|
24
|
-
default: undefined;
|
|
25
|
-
type: NumberConstructor;
|
|
26
|
-
};
|
|
27
|
-
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "icon" | "label" | "count" | "active">;
|
|
28
|
-
$attrs: {
|
|
29
|
-
[x: string]: unknown;
|
|
30
|
-
};
|
|
31
|
-
$refs: {
|
|
32
|
-
[x: string]: unknown;
|
|
33
|
-
};
|
|
34
|
-
$slots: Readonly<{
|
|
35
|
-
[name: string]: import("vue").Slot | undefined;
|
|
36
|
-
}>;
|
|
37
|
-
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
|
|
38
|
-
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
|
|
39
|
-
$emit: (event: string, ...args: any[]) => void;
|
|
40
|
-
$el: any;
|
|
41
|
-
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
42
|
-
label: {
|
|
43
|
-
default: undefined;
|
|
44
|
-
type: StringConstructor;
|
|
45
|
-
};
|
|
46
|
-
icon: {
|
|
47
|
-
default: undefined;
|
|
48
|
-
type: StringConstructor;
|
|
49
|
-
};
|
|
50
|
-
active: {
|
|
51
|
-
default: boolean;
|
|
52
|
-
type: BooleanConstructor;
|
|
53
|
-
};
|
|
54
|
-
count: {
|
|
55
|
-
default: undefined;
|
|
56
|
-
type: NumberConstructor;
|
|
57
|
-
};
|
|
58
|
-
}>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
59
|
-
icon: string;
|
|
60
|
-
label: string;
|
|
61
|
-
count: number;
|
|
62
|
-
active: boolean;
|
|
63
|
-
}, {}, string> & {
|
|
64
|
-
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
65
|
-
created?: ((() => void) | (() => void)[]) | undefined;
|
|
66
|
-
beforeMount?: ((() => void) | (() => void)[]) | undefined;
|
|
67
|
-
mounted?: ((() => void) | (() => void)[]) | undefined;
|
|
68
|
-
beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
|
|
69
|
-
updated?: ((() => void) | (() => void)[]) | undefined;
|
|
70
|
-
activated?: ((() => void) | (() => void)[]) | undefined;
|
|
71
|
-
deactivated?: ((() => void) | (() => void)[]) | undefined;
|
|
72
|
-
beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
|
|
73
|
-
beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
|
|
74
|
-
destroyed?: ((() => void) | (() => void)[]) | undefined;
|
|
75
|
-
unmounted?: ((() => void) | (() => void)[]) | undefined;
|
|
76
|
-
renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
77
|
-
renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
78
|
-
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;
|
|
79
|
-
};
|
|
80
|
-
$forceUpdate: () => void;
|
|
81
|
-
$nextTick: typeof import("vue").nextTick;
|
|
82
|
-
$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;
|
|
83
|
-
} & Readonly<import("vue").ExtractPropTypes<{
|
|
84
|
-
label: {
|
|
85
|
-
default: undefined;
|
|
86
|
-
type: StringConstructor;
|
|
87
|
-
};
|
|
88
|
-
icon: {
|
|
89
|
-
default: undefined;
|
|
90
|
-
type: StringConstructor;
|
|
91
|
-
};
|
|
92
|
-
active: {
|
|
93
|
-
default: boolean;
|
|
94
|
-
type: BooleanConstructor;
|
|
95
|
-
};
|
|
96
|
-
count: {
|
|
97
|
-
default: undefined;
|
|
98
|
-
type: NumberConstructor;
|
|
99
|
-
};
|
|
100
|
-
}>> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
|
|
101
|
-
__isFragment?: undefined;
|
|
102
|
-
__isTeleport?: undefined;
|
|
103
|
-
__isSuspense?: undefined;
|
|
104
|
-
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{
|
|
105
2
|
label: {
|
|
106
3
|
default: undefined;
|
|
107
4
|
type: StringConstructor;
|
|
@@ -118,10 +15,27 @@ declare const _default: {
|
|
|
118
15
|
default: undefined;
|
|
119
16
|
type: NumberConstructor;
|
|
120
17
|
};
|
|
121
|
-
}
|
|
18
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
19
|
+
label: {
|
|
20
|
+
default: undefined;
|
|
21
|
+
type: StringConstructor;
|
|
22
|
+
};
|
|
23
|
+
icon: {
|
|
24
|
+
default: undefined;
|
|
25
|
+
type: StringConstructor;
|
|
26
|
+
};
|
|
27
|
+
active: {
|
|
28
|
+
default: boolean;
|
|
29
|
+
type: BooleanConstructor;
|
|
30
|
+
};
|
|
31
|
+
count: {
|
|
32
|
+
default: undefined;
|
|
33
|
+
type: NumberConstructor;
|
|
34
|
+
};
|
|
35
|
+
}>>, {
|
|
122
36
|
icon: string;
|
|
123
37
|
label: string;
|
|
124
38
|
count: number;
|
|
125
39
|
active: boolean;
|
|
126
|
-
}
|
|
40
|
+
}>;
|
|
127
41
|
export default _default;
|
|
@@ -1,100 +1,18 @@
|
|
|
1
|
-
declare const _default: {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
type: NumberConstructor;
|
|
17
|
-
};
|
|
18
|
-
totalVisible: {
|
|
19
|
-
default: number;
|
|
20
|
-
type: NumberConstructor;
|
|
21
|
-
};
|
|
22
|
-
}>> & {
|
|
23
|
-
"onUpdate:model-value"?: ((...args: any[]) => any) | undefined;
|
|
24
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "modelValue" | "totalVisible">;
|
|
25
|
-
$attrs: {
|
|
26
|
-
[x: string]: unknown;
|
|
27
|
-
};
|
|
28
|
-
$refs: {
|
|
29
|
-
[x: string]: unknown;
|
|
30
|
-
};
|
|
31
|
-
$slots: Readonly<{
|
|
32
|
-
[name: string]: import("vue").Slot | undefined;
|
|
33
|
-
}>;
|
|
34
|
-
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
|
|
35
|
-
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
|
|
36
|
-
$emit: (event: "update:model-value", ...args: any[]) => void;
|
|
37
|
-
$el: any;
|
|
38
|
-
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
39
|
-
modelValue: {
|
|
40
|
-
default: number;
|
|
41
|
-
required: true;
|
|
42
|
-
type: NumberConstructor;
|
|
43
|
-
};
|
|
44
|
-
lastPage: {
|
|
45
|
-
required: true;
|
|
46
|
-
type: NumberConstructor;
|
|
47
|
-
};
|
|
48
|
-
totalVisible: {
|
|
49
|
-
default: number;
|
|
50
|
-
type: NumberConstructor;
|
|
51
|
-
};
|
|
52
|
-
}>> & {
|
|
53
|
-
"onUpdate:model-value"?: ((...args: any[]) => any) | undefined;
|
|
54
|
-
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:model-value"[], string, {
|
|
55
|
-
modelValue: number;
|
|
56
|
-
totalVisible: number;
|
|
57
|
-
}, {}, string> & {
|
|
58
|
-
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
59
|
-
created?: ((() => void) | (() => void)[]) | undefined;
|
|
60
|
-
beforeMount?: ((() => void) | (() => void)[]) | undefined;
|
|
61
|
-
mounted?: ((() => void) | (() => void)[]) | undefined;
|
|
62
|
-
beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
|
|
63
|
-
updated?: ((() => void) | (() => void)[]) | undefined;
|
|
64
|
-
activated?: ((() => void) | (() => void)[]) | undefined;
|
|
65
|
-
deactivated?: ((() => void) | (() => void)[]) | undefined;
|
|
66
|
-
beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
|
|
67
|
-
beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
|
|
68
|
-
destroyed?: ((() => void) | (() => void)[]) | undefined;
|
|
69
|
-
unmounted?: ((() => void) | (() => void)[]) | undefined;
|
|
70
|
-
renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
71
|
-
renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
72
|
-
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;
|
|
73
|
-
};
|
|
74
|
-
$forceUpdate: () => void;
|
|
75
|
-
$nextTick: typeof import("vue").nextTick;
|
|
76
|
-
$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;
|
|
77
|
-
} & Readonly<import("vue").ExtractPropTypes<{
|
|
78
|
-
modelValue: {
|
|
79
|
-
default: number;
|
|
80
|
-
required: true;
|
|
81
|
-
type: NumberConstructor;
|
|
82
|
-
};
|
|
83
|
-
lastPage: {
|
|
84
|
-
required: true;
|
|
85
|
-
type: NumberConstructor;
|
|
86
|
-
};
|
|
87
|
-
totalVisible: {
|
|
88
|
-
default: number;
|
|
89
|
-
type: NumberConstructor;
|
|
90
|
-
};
|
|
91
|
-
}>> & {
|
|
92
|
-
"onUpdate:model-value"?: ((...args: any[]) => any) | undefined;
|
|
93
|
-
} & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
|
|
94
|
-
__isFragment?: undefined;
|
|
95
|
-
__isTeleport?: undefined;
|
|
96
|
-
__isSuspense?: undefined;
|
|
97
|
-
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{
|
|
2
|
+
modelValue: {
|
|
3
|
+
default: number;
|
|
4
|
+
required: true;
|
|
5
|
+
type: NumberConstructor;
|
|
6
|
+
};
|
|
7
|
+
lastPage: {
|
|
8
|
+
required: true;
|
|
9
|
+
type: NumberConstructor;
|
|
10
|
+
};
|
|
11
|
+
totalVisible: {
|
|
12
|
+
default: number;
|
|
13
|
+
type: NumberConstructor;
|
|
14
|
+
};
|
|
15
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:model-value"[], "update:model-value", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
98
16
|
modelValue: {
|
|
99
17
|
default: number;
|
|
100
18
|
required: true;
|
|
@@ -110,8 +28,8 @@ declare const _default: {
|
|
|
110
28
|
};
|
|
111
29
|
}>> & {
|
|
112
30
|
"onUpdate:model-value"?: ((...args: any[]) => any) | undefined;
|
|
113
|
-
}, {
|
|
31
|
+
}, {
|
|
114
32
|
modelValue: number;
|
|
115
33
|
totalVisible: number;
|
|
116
|
-
}
|
|
34
|
+
}>;
|
|
117
35
|
export default _default;
|
|
@@ -1,184 +1,42 @@
|
|
|
1
1
|
import { PropType } from 'vue';
|
|
2
|
-
declare const _default: {
|
|
3
|
-
|
|
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
|
-
disabled: {
|
|
42
|
-
default: boolean;
|
|
43
|
-
type: BooleanConstructor;
|
|
44
|
-
};
|
|
45
|
-
required: {
|
|
46
|
-
default: boolean;
|
|
47
|
-
type: BooleanConstructor;
|
|
48
|
-
};
|
|
49
|
-
rows: {
|
|
50
|
-
default: undefined;
|
|
51
|
-
type: NumberConstructor;
|
|
52
|
-
};
|
|
53
|
-
}>> & {
|
|
54
|
-
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
55
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "required" | "type" | "name" | "modelValue" | "placeholder" | "disabled" | "autocomplete" | "preventSubmit" | "rows">;
|
|
56
|
-
$attrs: {
|
|
57
|
-
[x: string]: unknown;
|
|
58
|
-
};
|
|
59
|
-
$refs: {
|
|
60
|
-
[x: string]: unknown;
|
|
61
|
-
};
|
|
62
|
-
$slots: Readonly<{
|
|
63
|
-
[name: string]: import("vue").Slot | undefined;
|
|
64
|
-
}>;
|
|
65
|
-
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
|
|
66
|
-
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
|
|
67
|
-
$emit: (event: "update:modelValue", ...args: any[]) => void;
|
|
68
|
-
$el: any;
|
|
69
|
-
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
70
|
-
modelValue: {
|
|
71
|
-
default: undefined;
|
|
72
|
-
type: PropType<string | undefined>;
|
|
73
|
-
};
|
|
74
|
-
type: {
|
|
75
|
-
type: StringConstructor;
|
|
76
|
-
default: string;
|
|
77
|
-
};
|
|
78
|
-
autocomplete: {
|
|
79
|
-
default: boolean;
|
|
80
|
-
type: BooleanConstructor;
|
|
81
|
-
};
|
|
82
|
-
preventSubmit: {
|
|
83
|
-
default: boolean;
|
|
84
|
-
type: BooleanConstructor;
|
|
85
|
-
};
|
|
86
|
-
name: {
|
|
87
|
-
default: undefined;
|
|
88
|
-
type: StringConstructor;
|
|
89
|
-
};
|
|
90
|
-
placeholder: {
|
|
91
|
-
default: string;
|
|
92
|
-
type: StringConstructor;
|
|
93
|
-
};
|
|
94
|
-
disabled: {
|
|
95
|
-
default: boolean;
|
|
96
|
-
type: BooleanConstructor;
|
|
97
|
-
};
|
|
98
|
-
required: {
|
|
99
|
-
default: boolean;
|
|
100
|
-
type: BooleanConstructor;
|
|
101
|
-
};
|
|
102
|
-
rows: {
|
|
103
|
-
default: undefined;
|
|
104
|
-
type: NumberConstructor;
|
|
105
|
-
};
|
|
106
|
-
}>> & {
|
|
107
|
-
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
108
|
-
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], string, {
|
|
109
|
-
required: boolean;
|
|
110
|
-
type: string;
|
|
111
|
-
name: string;
|
|
112
|
-
modelValue: string | undefined;
|
|
113
|
-
placeholder: string;
|
|
114
|
-
disabled: boolean;
|
|
115
|
-
autocomplete: boolean;
|
|
116
|
-
preventSubmit: boolean;
|
|
117
|
-
rows: number;
|
|
118
|
-
}, {}, string> & {
|
|
119
|
-
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
120
|
-
created?: ((() => void) | (() => void)[]) | undefined;
|
|
121
|
-
beforeMount?: ((() => void) | (() => void)[]) | undefined;
|
|
122
|
-
mounted?: ((() => void) | (() => void)[]) | undefined;
|
|
123
|
-
beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
|
|
124
|
-
updated?: ((() => void) | (() => void)[]) | undefined;
|
|
125
|
-
activated?: ((() => void) | (() => void)[]) | undefined;
|
|
126
|
-
deactivated?: ((() => void) | (() => void)[]) | undefined;
|
|
127
|
-
beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
|
|
128
|
-
beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
|
|
129
|
-
destroyed?: ((() => void) | (() => void)[]) | undefined;
|
|
130
|
-
unmounted?: ((() => void) | (() => void)[]) | undefined;
|
|
131
|
-
renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
132
|
-
renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
133
|
-
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;
|
|
134
|
-
};
|
|
135
|
-
$forceUpdate: () => void;
|
|
136
|
-
$nextTick: typeof import("vue").nextTick;
|
|
137
|
-
$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;
|
|
138
|
-
} & Readonly<import("vue").ExtractPropTypes<{
|
|
139
|
-
modelValue: {
|
|
140
|
-
default: undefined;
|
|
141
|
-
type: PropType<string | undefined>;
|
|
142
|
-
};
|
|
143
|
-
type: {
|
|
144
|
-
type: StringConstructor;
|
|
145
|
-
default: string;
|
|
146
|
-
};
|
|
147
|
-
autocomplete: {
|
|
148
|
-
default: boolean;
|
|
149
|
-
type: BooleanConstructor;
|
|
150
|
-
};
|
|
151
|
-
preventSubmit: {
|
|
152
|
-
default: boolean;
|
|
153
|
-
type: BooleanConstructor;
|
|
154
|
-
};
|
|
155
|
-
name: {
|
|
156
|
-
default: undefined;
|
|
157
|
-
type: StringConstructor;
|
|
158
|
-
};
|
|
159
|
-
placeholder: {
|
|
160
|
-
default: string;
|
|
161
|
-
type: StringConstructor;
|
|
162
|
-
};
|
|
163
|
-
disabled: {
|
|
164
|
-
default: boolean;
|
|
165
|
-
type: BooleanConstructor;
|
|
166
|
-
};
|
|
167
|
-
required: {
|
|
168
|
-
default: boolean;
|
|
169
|
-
type: BooleanConstructor;
|
|
170
|
-
};
|
|
171
|
-
rows: {
|
|
172
|
-
default: undefined;
|
|
173
|
-
type: NumberConstructor;
|
|
174
|
-
};
|
|
175
|
-
}>> & {
|
|
176
|
-
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
177
|
-
} & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
|
|
178
|
-
__isFragment?: undefined;
|
|
179
|
-
__isTeleport?: undefined;
|
|
180
|
-
__isSuspense?: undefined;
|
|
181
|
-
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
2
|
+
declare const _default: import("vue").DefineComponent<{
|
|
3
|
+
modelValue: {
|
|
4
|
+
default: undefined;
|
|
5
|
+
type: PropType<string | undefined>;
|
|
6
|
+
};
|
|
7
|
+
type: {
|
|
8
|
+
type: StringConstructor;
|
|
9
|
+
default: string;
|
|
10
|
+
};
|
|
11
|
+
autocomplete: {
|
|
12
|
+
default: boolean;
|
|
13
|
+
type: BooleanConstructor;
|
|
14
|
+
};
|
|
15
|
+
preventSubmit: {
|
|
16
|
+
default: boolean;
|
|
17
|
+
type: BooleanConstructor;
|
|
18
|
+
};
|
|
19
|
+
name: {
|
|
20
|
+
default: undefined;
|
|
21
|
+
type: StringConstructor;
|
|
22
|
+
};
|
|
23
|
+
placeholder: {
|
|
24
|
+
default: string;
|
|
25
|
+
type: StringConstructor;
|
|
26
|
+
};
|
|
27
|
+
disabled: {
|
|
28
|
+
default: boolean;
|
|
29
|
+
type: BooleanConstructor;
|
|
30
|
+
};
|
|
31
|
+
required: {
|
|
32
|
+
default: boolean;
|
|
33
|
+
type: BooleanConstructor;
|
|
34
|
+
};
|
|
35
|
+
rows: {
|
|
36
|
+
default: undefined;
|
|
37
|
+
type: NumberConstructor;
|
|
38
|
+
};
|
|
39
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
182
40
|
modelValue: {
|
|
183
41
|
default: undefined;
|
|
184
42
|
type: PropType<string | undefined>;
|
|
@@ -217,7 +75,7 @@ declare const _default: {
|
|
|
217
75
|
};
|
|
218
76
|
}>> & {
|
|
219
77
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
220
|
-
}, {
|
|
78
|
+
}, {
|
|
221
79
|
required: boolean;
|
|
222
80
|
type: string;
|
|
223
81
|
name: string;
|
|
@@ -227,5 +85,5 @@ declare const _default: {
|
|
|
227
85
|
autocomplete: boolean;
|
|
228
86
|
preventSubmit: boolean;
|
|
229
87
|
rows: number;
|
|
230
|
-
}
|
|
88
|
+
}>;
|
|
231
89
|
export default _default;
|