vuiii 1.0.0-beta.5 → 1.0.0-beta.7
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/components/Breadcrumbs.vue.d.ts +79 -15
- package/dist/components/Button.vue.d.ts +94 -69
- package/dist/components/Checkbox.vue.d.ts +2 -2
- package/dist/components/CheckboxGroup.vue.d.ts +1 -1
- package/dist/components/FormGroup.vue.d.ts +85 -45
- package/dist/components/Icon.vue.d.ts +59 -14
- package/dist/components/Input.vue.d.ts +109 -55
- package/dist/components/Radio.vue.d.ts +91 -61
- package/dist/components/Select.vue.d.ts +135 -82
- package/dist/components/Table.vue.d.ts +69 -48
- package/dist/components/Textarea.vue.d.ts +77 -18
- package/dist/components/modal/ModalLayout.vue.d.ts +1 -1
- package/dist/components/modal/ModalStack.vue.d.ts +2 -2
- package/dist/hooks/useLoadData.d.ts +2 -2
- package/dist/hooks/useOnClickOutside.d.ts +2 -0
- package/dist/hooks/useOnKeyPress.d.ts +1 -0
- package/dist/hooks/useRouteQuery.d.ts +17 -0
- package/dist/hooks/useSubmitAction.d.ts +1 -7
- package/dist/index.d.ts +7 -4
- package/dist/stories/Button.stories.d.ts +449 -0
- package/dist/stories/Icon.stories.d.ts +128 -0
- package/dist/style.css +1 -1
- package/dist/types.d.ts +31 -4
- package/dist/utils/generateId.d.ts +1 -0
- package/dist/utils/iconsResolver.d.ts +5 -0
- package/dist/utils/normalizeOptions.d.ts +11 -8
- package/dist/validations/validator.d.ts +2 -0
- package/dist/vuiii.mjs +1550 -0
- package/dist/vuiii.umd.js +1 -1
- package/package.json +21 -8
- package/dist/vuiii.es.js +0 -1882
|
@@ -1,17 +1,81 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
1
|
+
import { BreadcrumbItems } from '@/types';
|
|
2
|
+
declare const _default: {
|
|
3
|
+
new (...args: any[]): {
|
|
4
|
+
$: import("vue").ComponentInternalInstance;
|
|
5
|
+
$data: {};
|
|
6
|
+
$props: Partial<{
|
|
7
|
+
breadcrumbs: BreadcrumbItems;
|
|
8
|
+
}> & Omit<Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
9
|
+
breadcrumbs: BreadcrumbItems;
|
|
10
|
+
}>, {
|
|
11
|
+
breadcrumbs: () => {};
|
|
12
|
+
}>>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "breadcrumbs">;
|
|
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<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
27
|
+
breadcrumbs: BreadcrumbItems;
|
|
28
|
+
}>, {
|
|
29
|
+
breadcrumbs: () => {};
|
|
30
|
+
}>>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
31
|
+
breadcrumbs: BreadcrumbItems;
|
|
32
|
+
}, {}, string> & {
|
|
33
|
+
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
34
|
+
created?: ((() => void) | (() => void)[]) | undefined;
|
|
35
|
+
beforeMount?: ((() => void) | (() => void)[]) | undefined;
|
|
36
|
+
mounted?: ((() => void) | (() => void)[]) | undefined;
|
|
37
|
+
beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
|
|
38
|
+
updated?: ((() => void) | (() => void)[]) | undefined;
|
|
39
|
+
activated?: ((() => void) | (() => void)[]) | undefined;
|
|
40
|
+
deactivated?: ((() => void) | (() => void)[]) | undefined;
|
|
41
|
+
beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
|
|
42
|
+
beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
|
|
43
|
+
destroyed?: ((() => void) | (() => void)[]) | undefined;
|
|
44
|
+
unmounted?: ((() => void) | (() => void)[]) | undefined;
|
|
45
|
+
renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
46
|
+
renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
47
|
+
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;
|
|
48
|
+
};
|
|
49
|
+
$forceUpdate: () => void;
|
|
50
|
+
$nextTick: typeof import("vue").nextTick;
|
|
51
|
+
$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;
|
|
52
|
+
} & Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
53
|
+
breadcrumbs: BreadcrumbItems;
|
|
54
|
+
}>, {
|
|
55
|
+
breadcrumbs: () => {};
|
|
56
|
+
}>>> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
|
|
57
|
+
__isFragment?: undefined;
|
|
58
|
+
__isTeleport?: undefined;
|
|
59
|
+
__isSuspense?: undefined;
|
|
60
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
15
61
|
breadcrumbs: BreadcrumbItems;
|
|
16
|
-
}
|
|
62
|
+
}>, {
|
|
63
|
+
breadcrumbs: () => {};
|
|
64
|
+
}>>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
65
|
+
breadcrumbs: BreadcrumbItems;
|
|
66
|
+
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
|
|
17
67
|
export default _default;
|
|
68
|
+
declare type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
69
|
+
declare type __VLS_TypePropsToRuntimeProps<T> = {
|
|
70
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
71
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
72
|
+
} : {
|
|
73
|
+
type: import('vue').PropType<T[K]>;
|
|
74
|
+
required: true;
|
|
75
|
+
};
|
|
76
|
+
};
|
|
77
|
+
declare type __VLS_WithDefaults<P, D> = {
|
|
78
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? P[K] & {
|
|
79
|
+
default: D[K];
|
|
80
|
+
} : P[K];
|
|
81
|
+
};
|
|
@@ -1,72 +1,97 @@
|
|
|
1
1
|
import '../assets/css/button.css';
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
2
|
+
import { ButtonVariant } from '../types';
|
|
3
|
+
declare const _default: {
|
|
4
|
+
new (...args: any[]): {
|
|
5
|
+
$: import("vue").ComponentInternalInstance;
|
|
6
|
+
$data: {};
|
|
7
|
+
$props: Partial<{}> & Omit<Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
8
|
+
size?: import("../types").InputSize | undefined;
|
|
9
|
+
variant?: ButtonVariant | undefined;
|
|
10
|
+
prefixIcon?: string | undefined;
|
|
11
|
+
suffixIcon?: string | undefined;
|
|
12
|
+
label?: string | undefined;
|
|
13
|
+
block?: boolean | undefined;
|
|
14
|
+
loading?: boolean | undefined;
|
|
15
|
+
active?: boolean | undefined;
|
|
16
|
+
}>>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>;
|
|
17
|
+
$attrs: {
|
|
18
|
+
[x: string]: unknown;
|
|
19
|
+
};
|
|
20
|
+
$refs: {
|
|
21
|
+
[x: string]: unknown;
|
|
22
|
+
};
|
|
23
|
+
$slots: Readonly<{
|
|
24
|
+
[name: string]: import("vue").Slot | undefined;
|
|
25
|
+
}>;
|
|
26
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
|
|
27
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
|
|
28
|
+
$emit: (event: string, ...args: any[]) => void;
|
|
29
|
+
$el: any;
|
|
30
|
+
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
31
|
+
size?: import("../types").InputSize | undefined;
|
|
32
|
+
variant?: ButtonVariant | undefined;
|
|
33
|
+
prefixIcon?: string | undefined;
|
|
34
|
+
suffixIcon?: string | undefined;
|
|
35
|
+
label?: string | undefined;
|
|
36
|
+
block?: boolean | undefined;
|
|
37
|
+
loading?: boolean | undefined;
|
|
38
|
+
active?: boolean | undefined;
|
|
39
|
+
}>>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & {
|
|
40
|
+
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
41
|
+
created?: ((() => void) | (() => void)[]) | undefined;
|
|
42
|
+
beforeMount?: ((() => void) | (() => void)[]) | undefined;
|
|
43
|
+
mounted?: ((() => void) | (() => void)[]) | undefined;
|
|
44
|
+
beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
|
|
45
|
+
updated?: ((() => void) | (() => void)[]) | undefined;
|
|
46
|
+
activated?: ((() => void) | (() => void)[]) | undefined;
|
|
47
|
+
deactivated?: ((() => void) | (() => void)[]) | undefined;
|
|
48
|
+
beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
|
|
49
|
+
beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
|
|
50
|
+
destroyed?: ((() => void) | (() => void)[]) | undefined;
|
|
51
|
+
unmounted?: ((() => void) | (() => void)[]) | undefined;
|
|
52
|
+
renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
53
|
+
renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
54
|
+
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;
|
|
55
|
+
};
|
|
56
|
+
$forceUpdate: () => void;
|
|
57
|
+
$nextTick: typeof import("vue").nextTick;
|
|
58
|
+
$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;
|
|
59
|
+
} & Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
60
|
+
size?: import("../types").InputSize | undefined;
|
|
61
|
+
variant?: ButtonVariant | undefined;
|
|
62
|
+
prefixIcon?: string | undefined;
|
|
63
|
+
suffixIcon?: string | undefined;
|
|
64
|
+
label?: string | undefined;
|
|
65
|
+
block?: boolean | undefined;
|
|
66
|
+
loading?: boolean | undefined;
|
|
67
|
+
active?: boolean | undefined;
|
|
68
|
+
}>>> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
|
|
69
|
+
__isFragment?: undefined;
|
|
70
|
+
__isTeleport?: undefined;
|
|
71
|
+
__isSuspense?: undefined;
|
|
72
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
73
|
+
size?: import("../types").InputSize | undefined;
|
|
74
|
+
variant?: ButtonVariant | undefined;
|
|
75
|
+
prefixIcon?: string | undefined;
|
|
76
|
+
suffixIcon?: string | undefined;
|
|
77
|
+
label?: string | undefined;
|
|
78
|
+
block?: boolean | undefined;
|
|
79
|
+
loading?: boolean | undefined;
|
|
80
|
+
active?: boolean | undefined;
|
|
81
|
+
}>>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
82
|
+
$slots: {
|
|
83
|
+
prefix: (_: {}) => any;
|
|
84
|
+
default: (_: {}) => any;
|
|
85
|
+
suffix: (_: {}) => any;
|
|
9
86
|
};
|
|
10
|
-
|
|
11
|
-
type: PropType<"default" | "primary" | "secondary" | "danger">;
|
|
12
|
-
default: string;
|
|
13
|
-
validator: (value: ButtonVariant) => boolean;
|
|
14
|
-
};
|
|
15
|
-
prefixIcon: {
|
|
16
|
-
type: StringConstructor;
|
|
17
|
-
default: string;
|
|
18
|
-
};
|
|
19
|
-
suffixIcon: {
|
|
20
|
-
type: StringConstructor;
|
|
21
|
-
default: string;
|
|
22
|
-
};
|
|
23
|
-
label: {
|
|
24
|
-
type: StringConstructor;
|
|
25
|
-
default: string;
|
|
26
|
-
};
|
|
27
|
-
active: BooleanConstructor;
|
|
28
|
-
loading: BooleanConstructor;
|
|
29
|
-
block: BooleanConstructor;
|
|
30
|
-
disabled: BooleanConstructor;
|
|
31
|
-
}, unknown, unknown, {
|
|
32
|
-
component(): string;
|
|
33
|
-
classModifiers(): string[];
|
|
34
|
-
}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
35
|
-
size: {
|
|
36
|
-
type: PropType<"small" | "normal">;
|
|
37
|
-
default: string;
|
|
38
|
-
validator: (value: ButtonSize) => boolean;
|
|
39
|
-
};
|
|
40
|
-
variant: {
|
|
41
|
-
type: PropType<"default" | "primary" | "secondary" | "danger">;
|
|
42
|
-
default: string;
|
|
43
|
-
validator: (value: ButtonVariant) => boolean;
|
|
44
|
-
};
|
|
45
|
-
prefixIcon: {
|
|
46
|
-
type: StringConstructor;
|
|
47
|
-
default: string;
|
|
48
|
-
};
|
|
49
|
-
suffixIcon: {
|
|
50
|
-
type: StringConstructor;
|
|
51
|
-
default: string;
|
|
52
|
-
};
|
|
53
|
-
label: {
|
|
54
|
-
type: StringConstructor;
|
|
55
|
-
default: string;
|
|
56
|
-
};
|
|
57
|
-
active: BooleanConstructor;
|
|
58
|
-
loading: BooleanConstructor;
|
|
59
|
-
block: BooleanConstructor;
|
|
60
|
-
disabled: BooleanConstructor;
|
|
61
|
-
}>>, {
|
|
62
|
-
label: string;
|
|
63
|
-
size: "small" | "normal";
|
|
64
|
-
variant: "default" | "primary" | "secondary" | "danger";
|
|
65
|
-
prefixIcon: string;
|
|
66
|
-
suffixIcon: string;
|
|
67
|
-
active: boolean;
|
|
68
|
-
loading: boolean;
|
|
69
|
-
block: boolean;
|
|
70
|
-
disabled: boolean;
|
|
71
|
-
}>;
|
|
87
|
+
});
|
|
72
88
|
export default _default;
|
|
89
|
+
declare type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
90
|
+
declare type __VLS_TypePropsToRuntimeProps<T> = {
|
|
91
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
92
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
93
|
+
} : {
|
|
94
|
+
type: import('vue').PropType<T[K]>;
|
|
95
|
+
required: true;
|
|
96
|
+
};
|
|
97
|
+
};
|
|
@@ -11,7 +11,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
11
11
|
normalizedAttrs(): any;
|
|
12
12
|
}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>> & {
|
|
13
13
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
14
|
-
}, {}>, import("vue").ComponentOptionsMixin,
|
|
14
|
+
}, {}>, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
15
15
|
modelValue: BooleanConstructor;
|
|
16
16
|
required: BooleanConstructor;
|
|
17
17
|
switch: BooleanConstructor;
|
|
@@ -20,9 +20,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
20
20
|
default: string;
|
|
21
21
|
};
|
|
22
22
|
}>>, {
|
|
23
|
-
required: boolean;
|
|
24
23
|
caption: string;
|
|
25
24
|
switch: boolean;
|
|
25
|
+
required: boolean;
|
|
26
26
|
modelValue: boolean;
|
|
27
27
|
}>;
|
|
28
28
|
export default _default;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { PropType } from 'vue';
|
|
2
|
-
import { Extractor, Option } from '../
|
|
2
|
+
import { Extractor, Option } from '../types';
|
|
3
3
|
declare type CheckedValues = Record<Option['value'], boolean>;
|
|
4
4
|
declare const _default: import("vue").DefineComponent<{
|
|
5
5
|
modelValue: {
|
|
@@ -1,47 +1,87 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
1
|
+
declare const _default: {
|
|
2
|
+
new (...args: any[]): {
|
|
3
|
+
$: import("vue").ComponentInternalInstance;
|
|
4
|
+
$data: {};
|
|
5
|
+
$props: Partial<{}> & Omit<Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
6
|
+
label?: string | undefined;
|
|
7
|
+
for?: string | undefined;
|
|
8
|
+
required?: boolean | undefined;
|
|
9
|
+
error?: string | boolean | undefined;
|
|
10
|
+
description?: string | undefined;
|
|
11
|
+
hint?: string | undefined;
|
|
12
|
+
}>>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>;
|
|
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<__VLS_TypePropsToRuntimeProps<{
|
|
27
|
+
label?: string | undefined;
|
|
28
|
+
for?: string | undefined;
|
|
29
|
+
required?: boolean | undefined;
|
|
30
|
+
error?: string | boolean | undefined;
|
|
31
|
+
description?: string | undefined;
|
|
32
|
+
hint?: string | undefined;
|
|
33
|
+
}>>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, 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<__VLS_TypePropsToRuntimeProps<{
|
|
54
|
+
label?: string | undefined;
|
|
55
|
+
for?: string | undefined;
|
|
56
|
+
required?: boolean | undefined;
|
|
57
|
+
error?: string | boolean | undefined;
|
|
58
|
+
description?: string | undefined;
|
|
59
|
+
hint?: string | undefined;
|
|
60
|
+
}>>> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
|
|
61
|
+
__isFragment?: undefined;
|
|
62
|
+
__isTeleport?: undefined;
|
|
63
|
+
__isSuspense?: undefined;
|
|
64
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
65
|
+
label?: string | undefined;
|
|
66
|
+
for?: string | undefined;
|
|
67
|
+
required?: boolean | undefined;
|
|
68
|
+
error?: string | boolean | undefined;
|
|
69
|
+
description?: string | undefined;
|
|
70
|
+
hint?: string | undefined;
|
|
71
|
+
}>>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
72
|
+
$slots: {
|
|
73
|
+
description: (_: {}) => any;
|
|
74
|
+
default: (_: {}) => any;
|
|
75
|
+
hint: (_: {}) => any;
|
|
6
76
|
};
|
|
7
|
-
|
|
8
|
-
type: PropType<string | boolean | string[]>;
|
|
9
|
-
default: string;
|
|
10
|
-
};
|
|
11
|
-
description: {
|
|
12
|
-
type: StringConstructor;
|
|
13
|
-
default: string;
|
|
14
|
-
};
|
|
15
|
-
hint: {
|
|
16
|
-
type: StringConstructor;
|
|
17
|
-
default: string;
|
|
18
|
-
};
|
|
19
|
-
required: BooleanConstructor;
|
|
20
|
-
}, unknown, unknown, {
|
|
21
|
-
errorMessage(): string;
|
|
22
|
-
}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
23
|
-
label: {
|
|
24
|
-
type: StringConstructor;
|
|
25
|
-
default: string;
|
|
26
|
-
};
|
|
27
|
-
error: {
|
|
28
|
-
type: PropType<string | boolean | string[]>;
|
|
29
|
-
default: string;
|
|
30
|
-
};
|
|
31
|
-
description: {
|
|
32
|
-
type: StringConstructor;
|
|
33
|
-
default: string;
|
|
34
|
-
};
|
|
35
|
-
hint: {
|
|
36
|
-
type: StringConstructor;
|
|
37
|
-
default: string;
|
|
38
|
-
};
|
|
39
|
-
required: BooleanConstructor;
|
|
40
|
-
}>>, {
|
|
41
|
-
description: string;
|
|
42
|
-
required: boolean;
|
|
43
|
-
label: string;
|
|
44
|
-
error: string | boolean | string[];
|
|
45
|
-
hint: string;
|
|
46
|
-
}>;
|
|
77
|
+
});
|
|
47
78
|
export default _default;
|
|
79
|
+
declare type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
80
|
+
declare type __VLS_TypePropsToRuntimeProps<T> = {
|
|
81
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
82
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
83
|
+
} : {
|
|
84
|
+
type: import('vue').PropType<T[K]>;
|
|
85
|
+
required: true;
|
|
86
|
+
};
|
|
87
|
+
};
|
|
@@ -1,16 +1,61 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
}
|
|
11
|
-
|
|
12
|
-
|
|
1
|
+
declare const _default: {
|
|
2
|
+
new (...args: any[]): {
|
|
3
|
+
$: import("vue").ComponentInternalInstance;
|
|
4
|
+
$data: {};
|
|
5
|
+
$props: Partial<{}> & Omit<Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
6
|
+
name: string;
|
|
7
|
+
}>>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>;
|
|
8
|
+
$attrs: {
|
|
9
|
+
[x: string]: unknown;
|
|
10
|
+
};
|
|
11
|
+
$refs: {
|
|
12
|
+
[x: string]: unknown;
|
|
13
|
+
};
|
|
14
|
+
$slots: Readonly<{
|
|
15
|
+
[name: string]: import("vue").Slot | undefined;
|
|
16
|
+
}>;
|
|
17
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
|
|
18
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}> | null;
|
|
19
|
+
$emit: (event: string, ...args: any[]) => void;
|
|
20
|
+
$el: any;
|
|
21
|
+
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
22
|
+
name: string;
|
|
23
|
+
}>>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & {
|
|
24
|
+
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
25
|
+
created?: ((() => void) | (() => void)[]) | undefined;
|
|
26
|
+
beforeMount?: ((() => void) | (() => void)[]) | undefined;
|
|
27
|
+
mounted?: ((() => void) | (() => void)[]) | undefined;
|
|
28
|
+
beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
|
|
29
|
+
updated?: ((() => void) | (() => void)[]) | undefined;
|
|
30
|
+
activated?: ((() => void) | (() => void)[]) | undefined;
|
|
31
|
+
deactivated?: ((() => void) | (() => void)[]) | undefined;
|
|
32
|
+
beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
|
|
33
|
+
beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
|
|
34
|
+
destroyed?: ((() => void) | (() => void)[]) | undefined;
|
|
35
|
+
unmounted?: ((() => void) | (() => void)[]) | undefined;
|
|
36
|
+
renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
37
|
+
renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
|
|
38
|
+
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;
|
|
39
|
+
};
|
|
40
|
+
$forceUpdate: () => void;
|
|
41
|
+
$nextTick: typeof import("vue").nextTick;
|
|
42
|
+
$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;
|
|
43
|
+
} & Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
44
|
+
name: string;
|
|
45
|
+
}>>> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
|
|
46
|
+
__isFragment?: undefined;
|
|
47
|
+
__isTeleport?: undefined;
|
|
48
|
+
__isSuspense?: undefined;
|
|
49
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
50
|
+
name: string;
|
|
51
|
+
}>>>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
|
|
52
|
+
export default _default;
|
|
53
|
+
declare type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
54
|
+
declare type __VLS_TypePropsToRuntimeProps<T> = {
|
|
55
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
56
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
57
|
+
} : {
|
|
58
|
+
type: import('vue').PropType<T[K]>;
|
|
13
59
|
required: true;
|
|
14
60
|
};
|
|
15
|
-
}
|
|
16
|
-
export default _default;
|
|
61
|
+
};
|