@factoringplus/pl-components-pack-v3 1.10.8-pre-01 → 1.10.8-pre-01-sign-error
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/README.md +48 -48
- package/dist/CNAME +1 -1
- package/dist/{crypto-pro-actual-cades-plugin-46bb545a.js → crypto-pro-actual-cades-plugin-9e9fd051.js} +1 -1
- package/dist/{crypto-pro-actual-cades-plugin-63c7c0c5.cjs → crypto-pro-actual-cades-plugin-e21848a0.cjs} +1 -1
- package/dist/entry-91072487.cjs +115 -0
- package/dist/{entry-afcf439a.js → entry-c3790ac7.js} +10005 -9778
- package/dist/favicon.svg +4 -4
- package/dist/icon/cube20.svg +6 -6
- package/dist/icon/cube24.svg +6 -6
- package/dist/pl-components-pack-v3.cjs.js +1 -1
- package/dist/pl-components-pack-v3.es.js +48 -47
- package/dist/src/assets/calendar.json.d.ts +134 -134
- package/dist/src/components/components.d.ts +3 -1
- package/dist/src/components/data/pl-banner/index.d.ts +146 -38
- package/dist/src/components/data/pl-banner/pl-banner.vue.d.ts +9 -2
- package/dist/src/components/data/pl-sign-error/index.d.ts +88 -0
- package/dist/src/components/data/pl-sign-error/pl-sign-error.vue.d.ts +47 -0
- package/dist/src/components/data/pl-signing/index.d.ts +4 -2
- package/dist/src/components/data/pl-signing/pl-signing.vue.d.ts +4 -2
- package/dist/src/components/form/pl-radio/pl-radio.vue.d.ts +5 -3
- package/dist/style.css +1 -1
- package/package.json +117 -117
- package/dist/entry-c0b971ca.cjs +0 -115
|
@@ -1,41 +1,142 @@
|
|
|
1
1
|
import { TBannerProps, ICustomColors } from './types';
|
|
2
2
|
|
|
3
|
-
export declare const PlBanner: import('../../../install-function').SFCInstallWithContext<
|
|
4
|
-
|
|
5
|
-
type:
|
|
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
|
-
|
|
3
|
+
export declare const PlBanner: import('../../../install-function').SFCInstallWithContext<{
|
|
4
|
+
new (...args: any[]): import('vue').CreateComponentPublicInstance<Readonly<import('vue').ExtractPropTypes<{
|
|
5
|
+
type: {
|
|
6
|
+
type: import('vue').PropType<"info" | "interactive" | "success" | "warning" | "critical" | "custom">;
|
|
7
|
+
default: string;
|
|
8
|
+
};
|
|
9
|
+
icon: {
|
|
10
|
+
type: import('vue').PropType<import('../../components').TIcon>;
|
|
11
|
+
default: string;
|
|
12
|
+
};
|
|
13
|
+
description: {
|
|
14
|
+
type: import('vue').PropType<string>;
|
|
15
|
+
default: string;
|
|
16
|
+
};
|
|
17
|
+
title: {
|
|
18
|
+
type: import('vue').PropType<string>;
|
|
19
|
+
default: string;
|
|
20
|
+
};
|
|
21
|
+
buttonText: {
|
|
22
|
+
type: import('vue').PropType<string>;
|
|
23
|
+
default: string;
|
|
24
|
+
};
|
|
25
|
+
width: {
|
|
26
|
+
type: import('vue').PropType<string>;
|
|
27
|
+
default: string;
|
|
28
|
+
};
|
|
29
|
+
closeButton: {
|
|
30
|
+
type: import('vue').PropType<boolean>;
|
|
31
|
+
default: boolean;
|
|
32
|
+
};
|
|
33
|
+
customColors: {
|
|
34
|
+
type: import('vue').PropType<ICustomColors>;
|
|
35
|
+
};
|
|
36
|
+
}>> & {
|
|
37
|
+
onClose?: () => any;
|
|
38
|
+
onButtonClicked?: () => any;
|
|
39
|
+
}, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
40
|
+
close: () => void;
|
|
41
|
+
buttonClicked: () => void;
|
|
42
|
+
}, import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
|
|
43
|
+
type: {
|
|
44
|
+
type: import('vue').PropType<"info" | "interactive" | "success" | "warning" | "critical" | "custom">;
|
|
45
|
+
default: string;
|
|
46
|
+
};
|
|
47
|
+
icon: {
|
|
48
|
+
type: import('vue').PropType<import('../../components').TIcon>;
|
|
49
|
+
default: string;
|
|
50
|
+
};
|
|
51
|
+
description: {
|
|
52
|
+
type: import('vue').PropType<string>;
|
|
53
|
+
default: string;
|
|
54
|
+
};
|
|
55
|
+
title: {
|
|
56
|
+
type: import('vue').PropType<string>;
|
|
57
|
+
default: string;
|
|
58
|
+
};
|
|
59
|
+
buttonText: {
|
|
60
|
+
type: import('vue').PropType<string>;
|
|
61
|
+
default: string;
|
|
62
|
+
};
|
|
63
|
+
width: {
|
|
64
|
+
type: import('vue').PropType<string>;
|
|
65
|
+
default: string;
|
|
66
|
+
};
|
|
67
|
+
closeButton: {
|
|
68
|
+
type: import('vue').PropType<boolean>;
|
|
69
|
+
default: boolean;
|
|
70
|
+
};
|
|
71
|
+
customColors: {
|
|
72
|
+
type: import('vue').PropType<ICustomColors>;
|
|
73
|
+
};
|
|
74
|
+
}>> & {
|
|
75
|
+
onClose?: () => any;
|
|
76
|
+
onButtonClicked?: () => any;
|
|
77
|
+
}, {
|
|
78
|
+
type: "info" | "interactive" | "success" | "warning" | "critical" | "custom";
|
|
79
|
+
icon: import('../../components').TIcon;
|
|
80
|
+
description: string;
|
|
81
|
+
title: string;
|
|
82
|
+
buttonText: string;
|
|
83
|
+
width: string;
|
|
84
|
+
closeButton: boolean;
|
|
85
|
+
}, true, {}, {}, {
|
|
86
|
+
P: {};
|
|
87
|
+
B: {};
|
|
88
|
+
D: {};
|
|
89
|
+
C: {};
|
|
90
|
+
M: {};
|
|
91
|
+
Defaults: {};
|
|
92
|
+
}, Readonly<import('vue').ExtractPropTypes<{
|
|
93
|
+
type: {
|
|
94
|
+
type: import('vue').PropType<"info" | "interactive" | "success" | "warning" | "critical" | "custom">;
|
|
95
|
+
default: string;
|
|
96
|
+
};
|
|
97
|
+
icon: {
|
|
98
|
+
type: import('vue').PropType<import('../../components').TIcon>;
|
|
99
|
+
default: string;
|
|
100
|
+
};
|
|
101
|
+
description: {
|
|
102
|
+
type: import('vue').PropType<string>;
|
|
103
|
+
default: string;
|
|
104
|
+
};
|
|
105
|
+
title: {
|
|
106
|
+
type: import('vue').PropType<string>;
|
|
107
|
+
default: string;
|
|
108
|
+
};
|
|
109
|
+
buttonText: {
|
|
110
|
+
type: import('vue').PropType<string>;
|
|
111
|
+
default: string;
|
|
112
|
+
};
|
|
113
|
+
width: {
|
|
114
|
+
type: import('vue').PropType<string>;
|
|
115
|
+
default: string;
|
|
116
|
+
};
|
|
117
|
+
closeButton: {
|
|
118
|
+
type: import('vue').PropType<boolean>;
|
|
119
|
+
default: boolean;
|
|
120
|
+
};
|
|
121
|
+
customColors: {
|
|
122
|
+
type: import('vue').PropType<ICustomColors>;
|
|
123
|
+
};
|
|
124
|
+
}>> & {
|
|
125
|
+
onClose?: () => any;
|
|
126
|
+
onButtonClicked?: () => any;
|
|
127
|
+
}, {}, {}, {}, {}, {
|
|
128
|
+
type: "info" | "interactive" | "success" | "warning" | "critical" | "custom";
|
|
129
|
+
icon: import('../../components').TIcon;
|
|
130
|
+
description: string;
|
|
131
|
+
title: string;
|
|
132
|
+
buttonText: string;
|
|
133
|
+
width: string;
|
|
134
|
+
closeButton: boolean;
|
|
135
|
+
}>;
|
|
136
|
+
__isFragment?: never;
|
|
137
|
+
__isTeleport?: never;
|
|
138
|
+
__isSuspense?: never;
|
|
139
|
+
} & import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
|
|
39
140
|
type: {
|
|
40
141
|
type: import('vue').PropType<"info" | "interactive" | "success" | "warning" | "critical" | "custom">;
|
|
41
142
|
default: string;
|
|
@@ -70,7 +171,10 @@ export declare const PlBanner: import('../../../install-function').SFCInstallWit
|
|
|
70
171
|
}>> & {
|
|
71
172
|
onClose?: () => any;
|
|
72
173
|
onButtonClicked?: () => any;
|
|
73
|
-
}, {
|
|
174
|
+
}, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
175
|
+
close: () => void;
|
|
176
|
+
buttonClicked: () => void;
|
|
177
|
+
}, string, {
|
|
74
178
|
type: "info" | "interactive" | "success" | "warning" | "critical" | "custom";
|
|
75
179
|
icon: import('../../components').TIcon;
|
|
76
180
|
description: string;
|
|
@@ -78,7 +182,11 @@ export declare const PlBanner: import('../../../install-function').SFCInstallWit
|
|
|
78
182
|
buttonText: string;
|
|
79
183
|
width: string;
|
|
80
184
|
closeButton: boolean;
|
|
81
|
-
}, {}
|
|
185
|
+
}, {}, string, {}> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
186
|
+
$slots: {
|
|
187
|
+
description?(_: {}): any;
|
|
188
|
+
};
|
|
189
|
+
})>;
|
|
82
190
|
export default PlBanner;
|
|
83
191
|
export type { TBannerProps, ICustomColors };
|
|
84
192
|
declare module 'vue' {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { TBannerProps } from './types';
|
|
2
2
|
|
|
3
|
-
declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<TBannerProps>, {
|
|
3
|
+
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<TBannerProps>, {
|
|
4
4
|
width: string;
|
|
5
5
|
icon: string;
|
|
6
6
|
buttonText: string;
|
|
@@ -30,7 +30,9 @@ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
30
30
|
buttonText: string;
|
|
31
31
|
width: string;
|
|
32
32
|
closeButton: boolean;
|
|
33
|
-
}, {}
|
|
33
|
+
}, {}>, {
|
|
34
|
+
description?(_: {}): any;
|
|
35
|
+
}>;
|
|
34
36
|
export default _default;
|
|
35
37
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
36
38
|
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
@@ -49,3 +51,8 @@ type __VLS_WithDefaults<P, D> = {
|
|
|
49
51
|
type __VLS_Prettify<T> = {
|
|
50
52
|
[K in keyof T]: T[K];
|
|
51
53
|
} & {};
|
|
54
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
55
|
+
new (): {
|
|
56
|
+
$slots: S;
|
|
57
|
+
};
|
|
58
|
+
};
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
export declare const PlSignError: import('../../../install-function').SFCInstallWithContext<{
|
|
2
|
+
new (...args: any[]): import('vue').CreateComponentPublicInstance<Readonly<import('vue').ExtractPropTypes<{
|
|
3
|
+
showBanner: {
|
|
4
|
+
type: import('vue').PropType<boolean>;
|
|
5
|
+
default: boolean;
|
|
6
|
+
};
|
|
7
|
+
noCertificates: {
|
|
8
|
+
type: import('vue').PropType<boolean>;
|
|
9
|
+
default: boolean;
|
|
10
|
+
};
|
|
11
|
+
bannerText: {
|
|
12
|
+
type: import('vue').PropType<string>;
|
|
13
|
+
default: string;
|
|
14
|
+
};
|
|
15
|
+
}>>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
|
|
16
|
+
showBanner: {
|
|
17
|
+
type: import('vue').PropType<boolean>;
|
|
18
|
+
default: boolean;
|
|
19
|
+
};
|
|
20
|
+
noCertificates: {
|
|
21
|
+
type: import('vue').PropType<boolean>;
|
|
22
|
+
default: boolean;
|
|
23
|
+
};
|
|
24
|
+
bannerText: {
|
|
25
|
+
type: import('vue').PropType<string>;
|
|
26
|
+
default: string;
|
|
27
|
+
};
|
|
28
|
+
}>>, {
|
|
29
|
+
showBanner: boolean;
|
|
30
|
+
noCertificates: boolean;
|
|
31
|
+
bannerText: string;
|
|
32
|
+
}, true, {}, {}, {
|
|
33
|
+
P: {};
|
|
34
|
+
B: {};
|
|
35
|
+
D: {};
|
|
36
|
+
C: {};
|
|
37
|
+
M: {};
|
|
38
|
+
Defaults: {};
|
|
39
|
+
}, Readonly<import('vue').ExtractPropTypes<{
|
|
40
|
+
showBanner: {
|
|
41
|
+
type: import('vue').PropType<boolean>;
|
|
42
|
+
default: boolean;
|
|
43
|
+
};
|
|
44
|
+
noCertificates: {
|
|
45
|
+
type: import('vue').PropType<boolean>;
|
|
46
|
+
default: boolean;
|
|
47
|
+
};
|
|
48
|
+
bannerText: {
|
|
49
|
+
type: import('vue').PropType<string>;
|
|
50
|
+
default: string;
|
|
51
|
+
};
|
|
52
|
+
}>>, {}, {}, {}, {}, {
|
|
53
|
+
showBanner: boolean;
|
|
54
|
+
noCertificates: boolean;
|
|
55
|
+
bannerText: string;
|
|
56
|
+
}>;
|
|
57
|
+
__isFragment?: never;
|
|
58
|
+
__isTeleport?: never;
|
|
59
|
+
__isSuspense?: never;
|
|
60
|
+
} & import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
|
|
61
|
+
showBanner: {
|
|
62
|
+
type: import('vue').PropType<boolean>;
|
|
63
|
+
default: boolean;
|
|
64
|
+
};
|
|
65
|
+
noCertificates: {
|
|
66
|
+
type: import('vue').PropType<boolean>;
|
|
67
|
+
default: boolean;
|
|
68
|
+
};
|
|
69
|
+
bannerText: {
|
|
70
|
+
type: import('vue').PropType<string>;
|
|
71
|
+
default: string;
|
|
72
|
+
};
|
|
73
|
+
}>>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
|
|
74
|
+
showBanner: boolean;
|
|
75
|
+
noCertificates: boolean;
|
|
76
|
+
bannerText: string;
|
|
77
|
+
}, {}, string, {}> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
|
|
78
|
+
$slots: {
|
|
79
|
+
"custom-block"?(_: {}): any;
|
|
80
|
+
"instruction-doc"?(_: {}): any;
|
|
81
|
+
};
|
|
82
|
+
})>;
|
|
83
|
+
export default PlSignError;
|
|
84
|
+
declare module 'vue' {
|
|
85
|
+
interface GlobalComponents {
|
|
86
|
+
PlSignError: import('vue').DefineComponent;
|
|
87
|
+
}
|
|
88
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
2
|
+
showBanner?: boolean;
|
|
3
|
+
noCertificates?: boolean;
|
|
4
|
+
bannerText?: string;
|
|
5
|
+
}>, {
|
|
6
|
+
showBanner: boolean;
|
|
7
|
+
noCertificates: boolean;
|
|
8
|
+
bannerText: string;
|
|
9
|
+
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
10
|
+
showBanner?: boolean;
|
|
11
|
+
noCertificates?: boolean;
|
|
12
|
+
bannerText?: string;
|
|
13
|
+
}>, {
|
|
14
|
+
showBanner: boolean;
|
|
15
|
+
noCertificates: boolean;
|
|
16
|
+
bannerText: string;
|
|
17
|
+
}>>>, {
|
|
18
|
+
showBanner: boolean;
|
|
19
|
+
noCertificates: boolean;
|
|
20
|
+
bannerText: string;
|
|
21
|
+
}, {}>, {
|
|
22
|
+
"custom-block"?(_: {}): any;
|
|
23
|
+
"instruction-doc"?(_: {}): any;
|
|
24
|
+
}>;
|
|
25
|
+
export default _default;
|
|
26
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
27
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
28
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
29
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
30
|
+
} : {
|
|
31
|
+
type: import('vue').PropType<T[K]>;
|
|
32
|
+
required: true;
|
|
33
|
+
};
|
|
34
|
+
};
|
|
35
|
+
type __VLS_WithDefaults<P, D> = {
|
|
36
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
37
|
+
default: D[K];
|
|
38
|
+
}> : P[K];
|
|
39
|
+
};
|
|
40
|
+
type __VLS_Prettify<T> = {
|
|
41
|
+
[K in keyof T]: T[K];
|
|
42
|
+
} & {};
|
|
43
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
44
|
+
new (): {
|
|
45
|
+
$slots: S;
|
|
46
|
+
};
|
|
47
|
+
};
|
|
@@ -36,8 +36,9 @@ export declare const PlSigning: import('../../../install-function').SFCInstallWi
|
|
|
36
36
|
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
37
37
|
"update:selected-certificate": (...args: any[]) => void;
|
|
38
38
|
"update:loading": (...args: any[]) => void;
|
|
39
|
-
"system-setup-error": (...args: any[]) => void;
|
|
40
39
|
"update:signing-file": (...args: any[]) => void;
|
|
40
|
+
"system-setup-error": (...args: any[]) => void;
|
|
41
|
+
"no-certificates": (...args: any[]) => void;
|
|
41
42
|
"no-files": (...args: any[]) => void;
|
|
42
43
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
43
44
|
loading: {
|
|
@@ -73,8 +74,9 @@ export declare const PlSigning: import('../../../install-function').SFCInstallWi
|
|
|
73
74
|
}>> & {
|
|
74
75
|
"onUpdate:selected-certificate"?: (...args: any[]) => any;
|
|
75
76
|
"onUpdate:loading"?: (...args: any[]) => any;
|
|
76
|
-
"onSystem-setup-error"?: (...args: any[]) => any;
|
|
77
77
|
"onUpdate:signing-file"?: (...args: any[]) => any;
|
|
78
|
+
"onSystem-setup-error"?: (...args: any[]) => any;
|
|
79
|
+
"onNo-certificates"?: (...args: any[]) => any;
|
|
78
80
|
"onNo-files"?: (...args: any[]) => any;
|
|
79
81
|
}, {
|
|
80
82
|
label: string;
|
|
@@ -18,8 +18,9 @@ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
18
18
|
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
19
19
|
"update:selected-certificate": (...args: any[]) => void;
|
|
20
20
|
"update:loading": (...args: any[]) => void;
|
|
21
|
-
"system-setup-error": (...args: any[]) => void;
|
|
22
21
|
"update:signing-file": (...args: any[]) => void;
|
|
22
|
+
"system-setup-error": (...args: any[]) => void;
|
|
23
|
+
"no-certificates": (...args: any[]) => void;
|
|
23
24
|
"no-files": (...args: any[]) => void;
|
|
24
25
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
25
26
|
selectedCertificate: ParsedCertificate | null;
|
|
@@ -37,8 +38,9 @@ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
37
38
|
}>>> & {
|
|
38
39
|
"onUpdate:selected-certificate"?: (...args: any[]) => any;
|
|
39
40
|
"onUpdate:loading"?: (...args: any[]) => any;
|
|
40
|
-
"onSystem-setup-error"?: (...args: any[]) => any;
|
|
41
41
|
"onUpdate:signing-file"?: (...args: any[]) => any;
|
|
42
|
+
"onSystem-setup-error"?: (...args: any[]) => any;
|
|
43
|
+
"onNo-certificates"?: (...args: any[]) => any;
|
|
42
44
|
"onNo-files"?: (...args: any[]) => any;
|
|
43
45
|
}, {
|
|
44
46
|
label: string;
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { IRadioOption } from './types';
|
|
2
|
+
|
|
1
3
|
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
2
4
|
modelValue: import('vue').PropType<any>;
|
|
3
5
|
size: {
|
|
@@ -8,7 +10,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
8
10
|
type: import('vue').PropType<boolean>;
|
|
9
11
|
};
|
|
10
12
|
options: {
|
|
11
|
-
type: import('vue').PropType<
|
|
13
|
+
type: import('vue').PropType<IRadioOption[]>;
|
|
12
14
|
required: true;
|
|
13
15
|
};
|
|
14
16
|
label: {
|
|
@@ -30,7 +32,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
30
32
|
type: import('vue').PropType<boolean>;
|
|
31
33
|
};
|
|
32
34
|
options: {
|
|
33
|
-
type: import('vue').PropType<
|
|
35
|
+
type: import('vue').PropType<IRadioOption[]>;
|
|
34
36
|
required: true;
|
|
35
37
|
};
|
|
36
38
|
label: {
|
|
@@ -46,7 +48,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
|
46
48
|
size: "small" | "medium";
|
|
47
49
|
}, {}>, {
|
|
48
50
|
title?(_: {
|
|
49
|
-
option:
|
|
51
|
+
option: IRadioOption;
|
|
50
52
|
}): any;
|
|
51
53
|
}>;
|
|
52
54
|
export default _default;
|