@factoringplus/pl-components-pack-v3 1.9.5-pre-04-banner → 1.9.5-pre-06-banner
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/{crypto-pro-92591877.js → crypto-pro-c7da00ef.js} +1 -1
- package/dist/{crypto-pro-f3dbe587.cjs → crypto-pro-f90f952a.cjs} +1 -1
- package/dist/{entry-3c4b2a75.cjs → entry-1c17b3ba.cjs} +27 -27
- package/dist/{entry-84adcfdc.js → entry-7625bbbd.js} +4362 -4360
- package/dist/pl-components-pack-v3.cjs.js +1 -1
- package/dist/pl-components-pack-v3.es.js +1 -1
- package/dist/src/components/basic/pl-button/index.d.ts +19 -19
- package/dist/src/components/basic/pl-button/pl-button.vue.d.ts +1 -1
- package/dist/src/components/basic/pl-button-dropdown/index.d.ts +19 -19
- package/dist/src/components/basic/pl-button-dropdown/pl-button-dropdown.vue.d.ts +1 -1
- package/dist/src/components/basic/pl-dialog/pl-dialog-plus.vue.d.ts +3 -3
- package/dist/src/components/basic/pl-link/pl-link.vue.d.ts +1 -1
- package/dist/src/components/basic/pl-skeleton/components/pl-skeleton-button/index.d.ts +6 -6
- package/dist/src/components/basic/pl-skeleton/components/pl-skeleton-input/index.d.ts +4 -4
- package/dist/src/components/basic/pl-skeleton/components/pl-skeleton-tags-chips/index.d.ts +6 -6
- package/dist/src/components/basic/pl-skeleton/components/pl-skeleton-text/index.d.ts +4 -4
- package/dist/src/components/basic/pl-skeleton/components/pl-skeleton-text-cell/index.d.ts +6 -6
- package/dist/src/components/data/pl-banner/index.d.ts +31 -0
- package/dist/src/components/data/pl-banner/pl-banner.vue.d.ts +4 -4
- package/dist/src/components/data/pl-multitab/components/pl-tab-card.vue.d.ts +2 -2
- package/dist/src/components/data/pl-progress/index.d.ts +9 -9
- package/dist/src/components/data/pl-progress/pl-progress.vue.d.ts +1 -1
- package/dist/src/components/data/pl-snackbar/pl-snackbar.vue.d.ts +2 -2
- package/dist/src/components/data/pl-tabs/components/pl-tab.vue.d.ts +1 -1
- package/dist/src/components/data/pl-tags-chips/index.d.ts +45 -45
- package/dist/src/components/data/pl-tags-chips/pl-tags-chips.vue.d.ts +3 -3
- package/dist/src/components/data/pl-text-cell/index.d.ts +8 -8
- package/dist/src/components/deprecated/pl-date-picker/pl-date-picker-range.vue.d.ts +1 -1
- package/dist/src/components/deprecated/pl-select/pl-select.vue.d.ts +2 -2
- package/dist/src/components/deprecated/pl-upload-legacy/pl-upload-legacy.vue.d.ts +1 -1
- package/dist/src/components/form/pl-autocomplete/pl-autocompete.vue.d.ts +1 -1
- package/dist/src/components/form/pl-checkbox-plus/pl-checkbox-plus.vue.d.ts +1 -1
- package/dist/src/components/form/pl-date-picker-plus/pl-date-picker-plus/pl-date-picker-plus.vue.d.ts +1 -1
- package/dist/src/components/form/pl-date-picker-plus/pl-date-picker-range-plus/pl-date-picker-range-plus.vue.d.ts +1 -1
- package/dist/src/components/form/pl-input-plus/index.d.ts +19 -19
- package/dist/src/components/form/pl-input-plus/pl-input-plus.vue.d.ts +1 -1
- package/dist/src/components/form/pl-multi-select/pl-multi-select.vue.d.ts +1 -1
- package/dist/src/components/form/pl-radio/pl-radio.vue.d.ts +6 -6
- package/dist/src/components/form/pl-select-plus/pl-select-plus.vue.d.ts +1 -1
- package/dist/src/components/form/pl-switch/pl-switch.vue.d.ts +1 -1
- package/dist/src/components/form/pl-upload-plus/pl-upload-plus.vue.d.ts +2 -2
- package/dist/src/components/shared/pl-label/pl-label.vue.d.ts +1 -1
- package/dist/src/components/shared/pl-option/pl-option.vue.d.ts +2 -2
- package/dist/src/components/shared/pl-tab-pane/pl-tab-pane.vue.d.ts +1 -1
- package/dist/src/services/pl-navigation/components/NavButton/NavButton.vue.d.ts +1 -1
- package/dist/src/services/pl-navigation/components/NavButton/index.d.ts +19 -19
- package/package.json +1 -1
@@ -4,17 +4,21 @@ export declare const PlTagsChips: import('../../../install-function').SFCInstall
|
|
4
4
|
type: import('vue').PropType<"small" | "large">;
|
5
5
|
default: string;
|
6
6
|
};
|
7
|
+
icon: {
|
8
|
+
type: import('vue').PropType<import('../../components').TIcon>;
|
9
|
+
default: string;
|
10
|
+
};
|
7
11
|
type: {
|
8
|
-
type: import('vue').PropType<"
|
12
|
+
type: import('vue').PropType<"info" | "interactive" | "success" | "warning" | "error" | ("primary" | "outline")>;
|
9
13
|
default: string;
|
10
14
|
};
|
11
|
-
|
15
|
+
interactive: {
|
12
16
|
type: import('vue').PropType<boolean>;
|
13
17
|
default: boolean;
|
14
18
|
};
|
15
|
-
|
16
|
-
type: import('vue').PropType<
|
17
|
-
default:
|
19
|
+
disabled: {
|
20
|
+
type: import('vue').PropType<boolean>;
|
21
|
+
default: boolean;
|
18
22
|
};
|
19
23
|
iconColor: {
|
20
24
|
type: import('vue').PropType<string>;
|
@@ -28,10 +32,6 @@ export declare const PlTagsChips: import('../../../install-function').SFCInstall
|
|
28
32
|
type: import('vue').PropType<boolean>;
|
29
33
|
default: boolean;
|
30
34
|
};
|
31
|
-
interactive: {
|
32
|
-
type: import('vue').PropType<boolean>;
|
33
|
-
default: boolean;
|
34
|
-
};
|
35
35
|
textColor: {
|
36
36
|
type: import('vue').PropType<string>;
|
37
37
|
default: string;
|
@@ -55,17 +55,21 @@ export declare const PlTagsChips: import('../../../install-function').SFCInstall
|
|
55
55
|
type: import('vue').PropType<"small" | "large">;
|
56
56
|
default: string;
|
57
57
|
};
|
58
|
+
icon: {
|
59
|
+
type: import('vue').PropType<import('../../components').TIcon>;
|
60
|
+
default: string;
|
61
|
+
};
|
58
62
|
type: {
|
59
|
-
type: import('vue').PropType<"
|
63
|
+
type: import('vue').PropType<"info" | "interactive" | "success" | "warning" | "error" | ("primary" | "outline")>;
|
60
64
|
default: string;
|
61
65
|
};
|
62
|
-
|
66
|
+
interactive: {
|
63
67
|
type: import('vue').PropType<boolean>;
|
64
68
|
default: boolean;
|
65
69
|
};
|
66
|
-
|
67
|
-
type: import('vue').PropType<
|
68
|
-
default:
|
70
|
+
disabled: {
|
71
|
+
type: import('vue').PropType<boolean>;
|
72
|
+
default: boolean;
|
69
73
|
};
|
70
74
|
iconColor: {
|
71
75
|
type: import('vue').PropType<string>;
|
@@ -79,10 +83,6 @@ export declare const PlTagsChips: import('../../../install-function').SFCInstall
|
|
79
83
|
type: import('vue').PropType<boolean>;
|
80
84
|
default: boolean;
|
81
85
|
};
|
82
|
-
interactive: {
|
83
|
-
type: import('vue').PropType<boolean>;
|
84
|
-
default: boolean;
|
85
|
-
};
|
86
86
|
textColor: {
|
87
87
|
type: import('vue').PropType<string>;
|
88
88
|
default: string;
|
@@ -100,13 +100,13 @@ export declare const PlTagsChips: import('../../../install-function').SFCInstall
|
|
100
100
|
onCrossClicked?: (...args: any[]) => any;
|
101
101
|
}, {
|
102
102
|
size: "small" | "large";
|
103
|
-
type: "error" | "info" | "success" | "warning" | "interactive" | ("primary" | "outline");
|
104
|
-
disabled: boolean;
|
105
103
|
icon: import('../../components').TIcon;
|
104
|
+
type: "info" | "interactive" | "success" | "warning" | "error" | ("primary" | "outline");
|
105
|
+
interactive: boolean;
|
106
|
+
disabled: boolean;
|
106
107
|
iconColor: string;
|
107
108
|
active: boolean;
|
108
109
|
chip: boolean;
|
109
|
-
interactive: boolean;
|
110
110
|
textColor: string;
|
111
111
|
backgroundColor: string;
|
112
112
|
deleteBtn: boolean;
|
@@ -122,17 +122,21 @@ export declare const PlTagsChips: import('../../../install-function').SFCInstall
|
|
122
122
|
type: import('vue').PropType<"small" | "large">;
|
123
123
|
default: string;
|
124
124
|
};
|
125
|
+
icon: {
|
126
|
+
type: import('vue').PropType<import('../../components').TIcon>;
|
127
|
+
default: string;
|
128
|
+
};
|
125
129
|
type: {
|
126
|
-
type: import('vue').PropType<"
|
130
|
+
type: import('vue').PropType<"info" | "interactive" | "success" | "warning" | "error" | ("primary" | "outline")>;
|
127
131
|
default: string;
|
128
132
|
};
|
129
|
-
|
133
|
+
interactive: {
|
130
134
|
type: import('vue').PropType<boolean>;
|
131
135
|
default: boolean;
|
132
136
|
};
|
133
|
-
|
134
|
-
type: import('vue').PropType<
|
135
|
-
default:
|
137
|
+
disabled: {
|
138
|
+
type: import('vue').PropType<boolean>;
|
139
|
+
default: boolean;
|
136
140
|
};
|
137
141
|
iconColor: {
|
138
142
|
type: import('vue').PropType<string>;
|
@@ -146,10 +150,6 @@ export declare const PlTagsChips: import('../../../install-function').SFCInstall
|
|
146
150
|
type: import('vue').PropType<boolean>;
|
147
151
|
default: boolean;
|
148
152
|
};
|
149
|
-
interactive: {
|
150
|
-
type: import('vue').PropType<boolean>;
|
151
|
-
default: boolean;
|
152
|
-
};
|
153
153
|
textColor: {
|
154
154
|
type: import('vue').PropType<string>;
|
155
155
|
default: string;
|
@@ -167,13 +167,13 @@ export declare const PlTagsChips: import('../../../install-function').SFCInstall
|
|
167
167
|
onCrossClicked?: (...args: any[]) => any;
|
168
168
|
}, {}, {}, {}, {}, {
|
169
169
|
size: "small" | "large";
|
170
|
-
type: "error" | "info" | "success" | "warning" | "interactive" | ("primary" | "outline");
|
171
|
-
disabled: boolean;
|
172
170
|
icon: import('../../components').TIcon;
|
171
|
+
type: "info" | "interactive" | "success" | "warning" | "error" | ("primary" | "outline");
|
172
|
+
interactive: boolean;
|
173
|
+
disabled: boolean;
|
173
174
|
iconColor: string;
|
174
175
|
active: boolean;
|
175
176
|
chip: boolean;
|
176
|
-
interactive: boolean;
|
177
177
|
textColor: string;
|
178
178
|
backgroundColor: string;
|
179
179
|
deleteBtn: boolean;
|
@@ -186,17 +186,21 @@ export declare const PlTagsChips: import('../../../install-function').SFCInstall
|
|
186
186
|
type: import('vue').PropType<"small" | "large">;
|
187
187
|
default: string;
|
188
188
|
};
|
189
|
+
icon: {
|
190
|
+
type: import('vue').PropType<import('../../components').TIcon>;
|
191
|
+
default: string;
|
192
|
+
};
|
189
193
|
type: {
|
190
|
-
type: import('vue').PropType<"
|
194
|
+
type: import('vue').PropType<"info" | "interactive" | "success" | "warning" | "error" | ("primary" | "outline")>;
|
191
195
|
default: string;
|
192
196
|
};
|
193
|
-
|
197
|
+
interactive: {
|
194
198
|
type: import('vue').PropType<boolean>;
|
195
199
|
default: boolean;
|
196
200
|
};
|
197
|
-
|
198
|
-
type: import('vue').PropType<
|
199
|
-
default:
|
201
|
+
disabled: {
|
202
|
+
type: import('vue').PropType<boolean>;
|
203
|
+
default: boolean;
|
200
204
|
};
|
201
205
|
iconColor: {
|
202
206
|
type: import('vue').PropType<string>;
|
@@ -210,10 +214,6 @@ export declare const PlTagsChips: import('../../../install-function').SFCInstall
|
|
210
214
|
type: import('vue').PropType<boolean>;
|
211
215
|
default: boolean;
|
212
216
|
};
|
213
|
-
interactive: {
|
214
|
-
type: import('vue').PropType<boolean>;
|
215
|
-
default: boolean;
|
216
|
-
};
|
217
217
|
textColor: {
|
218
218
|
type: import('vue').PropType<string>;
|
219
219
|
default: string;
|
@@ -234,13 +234,13 @@ export declare const PlTagsChips: import('../../../install-function').SFCInstall
|
|
234
234
|
crossClicked: (...args: any[]) => void;
|
235
235
|
}, string, {
|
236
236
|
size: "small" | "large";
|
237
|
-
type: "error" | "info" | "success" | "warning" | "interactive" | ("primary" | "outline");
|
238
|
-
disabled: boolean;
|
239
237
|
icon: import('../../components').TIcon;
|
238
|
+
type: "info" | "interactive" | "success" | "warning" | "error" | ("primary" | "outline");
|
239
|
+
interactive: boolean;
|
240
|
+
disabled: boolean;
|
240
241
|
iconColor: string;
|
241
242
|
active: boolean;
|
242
243
|
chip: boolean;
|
243
|
-
interactive: boolean;
|
244
244
|
textColor: string;
|
245
245
|
backgroundColor: string;
|
246
246
|
deleteBtn: boolean;
|
@@ -46,13 +46,13 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
|
|
46
46
|
onCrossClicked?: (...args: any[]) => any;
|
47
47
|
}, {
|
48
48
|
size: "small" | "large";
|
49
|
-
type: "error" | "info" | "success" | "warning" | "interactive" | InteractiveTypes;
|
50
|
-
disabled: boolean;
|
51
49
|
icon: TIcon;
|
50
|
+
type: "info" | "interactive" | "success" | "warning" | "error" | InteractiveTypes;
|
51
|
+
interactive: boolean;
|
52
|
+
disabled: boolean;
|
52
53
|
iconColor: string;
|
53
54
|
active: boolean;
|
54
55
|
chip: boolean;
|
55
|
-
interactive: boolean;
|
56
56
|
textColor: string;
|
57
57
|
backgroundColor: string;
|
58
58
|
deleteBtn: boolean;
|
@@ -1,13 +1,13 @@
|
|
1
1
|
export declare const PlTextCell: import('../../../install-function').SFCInstallWithContext<import('vue').DefineComponent<{
|
2
|
+
description: {
|
3
|
+
type: import('vue').PropType<string>;
|
4
|
+
};
|
2
5
|
type: {
|
3
|
-
type: import('vue').PropType<"
|
6
|
+
type: import('vue').PropType<"info" | "interactive" | "success" | "warning" | "error">;
|
4
7
|
};
|
5
8
|
label: {
|
6
9
|
type: import('vue').PropType<string>;
|
7
10
|
};
|
8
|
-
description: {
|
9
|
-
type: import('vue').PropType<string>;
|
10
|
-
};
|
11
11
|
descriptionColor: {
|
12
12
|
type: import('vue').PropType<"secondary" | "tertiary">;
|
13
13
|
default: string;
|
@@ -23,15 +23,15 @@ export declare const PlTextCell: import('../../../install-function').SFCInstallW
|
|
23
23
|
type: import('vue').PropType<string>;
|
24
24
|
};
|
25
25
|
}, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
26
|
+
description: {
|
27
|
+
type: import('vue').PropType<string>;
|
28
|
+
};
|
26
29
|
type: {
|
27
|
-
type: import('vue').PropType<"
|
30
|
+
type: import('vue').PropType<"info" | "interactive" | "success" | "warning" | "error">;
|
28
31
|
};
|
29
32
|
label: {
|
30
33
|
type: import('vue').PropType<string>;
|
31
34
|
};
|
32
|
-
description: {
|
33
|
-
type: import('vue').PropType<string>;
|
34
|
-
};
|
35
35
|
descriptionColor: {
|
36
36
|
type: import('vue').PropType<"secondary" | "tertiary">;
|
37
37
|
default: string;
|
@@ -66,9 +66,9 @@ declare const _default: import('vue').DefineComponent<{
|
|
66
66
|
"onUpdate:modelValue"?: (...args: any[]) => any;
|
67
67
|
onChangeOpen?: (...args: any[]) => any;
|
68
68
|
}, {
|
69
|
+
width: string;
|
69
70
|
label: string;
|
70
71
|
modelValue: unknown[];
|
71
|
-
width: string;
|
72
72
|
placeholder: string;
|
73
73
|
teleport: boolean;
|
74
74
|
isClose: boolean;
|
@@ -121,12 +121,12 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
121
121
|
onValidate?: (...args: any[]) => any;
|
122
122
|
"onVisible-change"?: (...args: any[]) => any;
|
123
123
|
}, {
|
124
|
+
icon: boolean;
|
125
|
+
info: boolean;
|
124
126
|
label: string;
|
125
127
|
disabled: boolean;
|
126
|
-
icon: boolean;
|
127
128
|
checked: boolean;
|
128
129
|
placeholder: string;
|
129
|
-
info: boolean;
|
130
130
|
tooltipText: string;
|
131
131
|
prop: string;
|
132
132
|
rules: Record<string, any>;
|
@@ -67,6 +67,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
|
|
67
67
|
"onOn-success"?: (...args: any[]) => any;
|
68
68
|
"onOn-error"?: (...args: any[]) => any;
|
69
69
|
}, {
|
70
|
+
buttonText: string;
|
70
71
|
header: boolean;
|
71
72
|
main: boolean;
|
72
73
|
large: boolean;
|
@@ -74,7 +75,6 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
|
|
74
75
|
accept: string;
|
75
76
|
multiple: boolean;
|
76
77
|
drag: boolean;
|
77
|
-
buttonText: string;
|
78
78
|
fileSize: number;
|
79
79
|
requestConfig: object;
|
80
80
|
responseKeys: string;
|
@@ -57,10 +57,10 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
|
|
57
57
|
onFetchDadata?: (...args: any[]) => any;
|
58
58
|
onChangeValue?: (...args: any[]) => any;
|
59
59
|
}, {
|
60
|
+
width: string;
|
60
61
|
label: string;
|
61
62
|
disabled: boolean;
|
62
63
|
modelValue: IOption;
|
63
|
-
width: string;
|
64
64
|
placeholder: string;
|
65
65
|
leftIcon: import('../../components').TIcon;
|
66
66
|
rightIcon: import('../../components').TIcon;
|
@@ -56,10 +56,10 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
56
56
|
"onUpdate:modelValue"?: (...args: any[]) => any;
|
57
57
|
}, {
|
58
58
|
size: string;
|
59
|
+
description: string;
|
59
60
|
label: string;
|
60
61
|
disabled: boolean;
|
61
62
|
modelValue: boolean;
|
62
|
-
description: string;
|
63
63
|
isIndeterminate: boolean;
|
64
64
|
}, {}>, {
|
65
65
|
default?(_: {}): any;
|
@@ -47,10 +47,10 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
|
|
47
47
|
"onUpdate:modelValue"?: (...args: any[]) => any;
|
48
48
|
onChangeOpen?: (...args: any[]) => any;
|
49
49
|
}, {
|
50
|
+
width: string;
|
50
51
|
label: string;
|
51
52
|
disabled: boolean;
|
52
53
|
modelValue: string;
|
53
|
-
width: string;
|
54
54
|
placeholder: string;
|
55
55
|
prop: string;
|
56
56
|
helpertext: string;
|
@@ -49,10 +49,10 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
|
|
49
49
|
"onUpdate:modelValue"?: (...args: any[]) => any;
|
50
50
|
onChangeOpen?: (...args: any[]) => any;
|
51
51
|
}, {
|
52
|
+
width: string;
|
52
53
|
label: string;
|
53
54
|
disabled: boolean;
|
54
55
|
modelValue: string[];
|
55
|
-
width: string;
|
56
56
|
placeholder: string;
|
57
57
|
prop: string;
|
58
58
|
helpertext: string;
|
@@ -1,6 +1,10 @@
|
|
1
1
|
export type { IPlInputPlusProps } from './types';
|
2
2
|
export declare const PlInputPlus: import('../../../install-function').SFCInstallWithContext<{
|
3
3
|
new (...args: any[]): import('vue').CreateComponentPublicInstance<Readonly<import('vue').ExtractPropTypes<{
|
4
|
+
width: {
|
5
|
+
type: import('vue').PropType<string>;
|
6
|
+
default: string;
|
7
|
+
};
|
4
8
|
label: {
|
5
9
|
type: import('vue').PropType<string>;
|
6
10
|
default: string;
|
@@ -18,10 +22,6 @@ export declare const PlInputPlus: import('../../../install-function').SFCInstall
|
|
18
22
|
required: true;
|
19
23
|
default: string;
|
20
24
|
};
|
21
|
-
width: {
|
22
|
-
type: import('vue').PropType<string>;
|
23
|
-
default: string;
|
24
|
-
};
|
25
25
|
placeholder: {
|
26
26
|
type: import('vue').PropType<string>;
|
27
27
|
default: string;
|
@@ -158,6 +158,10 @@ export declare const PlInputPlus: import('../../../install-function').SFCInstall
|
|
158
158
|
"tooltip-mouseenter": (...args: any[]) => void;
|
159
159
|
"tooltip-mouseleave": (...args: any[]) => void;
|
160
160
|
}, import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
|
161
|
+
width: {
|
162
|
+
type: import('vue').PropType<string>;
|
163
|
+
default: string;
|
164
|
+
};
|
161
165
|
label: {
|
162
166
|
type: import('vue').PropType<string>;
|
163
167
|
default: string;
|
@@ -175,10 +179,6 @@ export declare const PlInputPlus: import('../../../install-function').SFCInstall
|
|
175
179
|
required: true;
|
176
180
|
default: string;
|
177
181
|
};
|
178
|
-
width: {
|
179
|
-
type: import('vue').PropType<string>;
|
180
|
-
default: string;
|
181
|
-
};
|
182
182
|
placeholder: {
|
183
183
|
type: import('vue').PropType<string>;
|
184
184
|
default: string;
|
@@ -303,11 +303,11 @@ export declare const PlInputPlus: import('../../../install-function').SFCInstall
|
|
303
303
|
"onTooltip-mouseenter"?: (...args: any[]) => any;
|
304
304
|
"onTooltip-mouseleave"?: (...args: any[]) => any;
|
305
305
|
}, {
|
306
|
+
width: string;
|
306
307
|
label: string;
|
307
308
|
textarea: boolean;
|
308
309
|
disabled: boolean;
|
309
310
|
modelValue: import('./types').TInputModelValue;
|
310
|
-
width: string;
|
311
311
|
placeholder: string;
|
312
312
|
currency: boolean;
|
313
313
|
leftIcon: import('../../components').TIcon;
|
@@ -344,6 +344,10 @@ export declare const PlInputPlus: import('../../../install-function').SFCInstall
|
|
344
344
|
M: {};
|
345
345
|
Defaults: {};
|
346
346
|
}, Readonly<import('vue').ExtractPropTypes<{
|
347
|
+
width: {
|
348
|
+
type: import('vue').PropType<string>;
|
349
|
+
default: string;
|
350
|
+
};
|
347
351
|
label: {
|
348
352
|
type: import('vue').PropType<string>;
|
349
353
|
default: string;
|
@@ -361,10 +365,6 @@ export declare const PlInputPlus: import('../../../install-function').SFCInstall
|
|
361
365
|
required: true;
|
362
366
|
default: string;
|
363
367
|
};
|
364
|
-
width: {
|
365
|
-
type: import('vue').PropType<string>;
|
366
|
-
default: string;
|
367
|
-
};
|
368
368
|
placeholder: {
|
369
369
|
type: import('vue').PropType<string>;
|
370
370
|
default: string;
|
@@ -493,11 +493,11 @@ export declare const PlInputPlus: import('../../../install-function').SFCInstall
|
|
493
493
|
focusInput: () => void;
|
494
494
|
getId: () => string;
|
495
495
|
}, {}, {}, {}, {
|
496
|
+
width: string;
|
496
497
|
label: string;
|
497
498
|
textarea: boolean;
|
498
499
|
disabled: boolean;
|
499
500
|
modelValue: import('./types').TInputModelValue;
|
500
|
-
width: string;
|
501
501
|
placeholder: string;
|
502
502
|
currency: boolean;
|
503
503
|
leftIcon: import('../../components').TIcon;
|
@@ -531,6 +531,10 @@ export declare const PlInputPlus: import('../../../install-function').SFCInstall
|
|
531
531
|
__isTeleport?: never;
|
532
532
|
__isSuspense?: never;
|
533
533
|
} & import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
|
534
|
+
width: {
|
535
|
+
type: import('vue').PropType<string>;
|
536
|
+
default: string;
|
537
|
+
};
|
534
538
|
label: {
|
535
539
|
type: import('vue').PropType<string>;
|
536
540
|
default: string;
|
@@ -548,10 +552,6 @@ export declare const PlInputPlus: import('../../../install-function').SFCInstall
|
|
548
552
|
required: true;
|
549
553
|
default: string;
|
550
554
|
};
|
551
|
-
width: {
|
552
|
-
type: import('vue').PropType<string>;
|
553
|
-
default: string;
|
554
|
-
};
|
555
555
|
placeholder: {
|
556
556
|
type: import('vue').PropType<string>;
|
557
557
|
default: string;
|
@@ -688,11 +688,11 @@ export declare const PlInputPlus: import('../../../install-function').SFCInstall
|
|
688
688
|
"tooltip-mouseenter": (...args: any[]) => void;
|
689
689
|
"tooltip-mouseleave": (...args: any[]) => void;
|
690
690
|
}, string, {
|
691
|
+
width: string;
|
691
692
|
label: string;
|
692
693
|
textarea: boolean;
|
693
694
|
disabled: boolean;
|
694
695
|
modelValue: import('./types').TInputModelValue;
|
695
|
-
width: string;
|
696
696
|
placeholder: string;
|
697
697
|
currency: boolean;
|
698
698
|
leftIcon: import('../../components').TIcon;
|
@@ -89,11 +89,11 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
|
|
89
89
|
"onTooltip-mouseenter"?: (...args: any[]) => any;
|
90
90
|
"onTooltip-mouseleave"?: (...args: any[]) => any;
|
91
91
|
}, {
|
92
|
+
width: string;
|
92
93
|
label: string;
|
93
94
|
textarea: boolean;
|
94
95
|
disabled: boolean;
|
95
96
|
modelValue: import('./types').TInputModelValue;
|
96
|
-
width: string;
|
97
97
|
placeholder: string;
|
98
98
|
currency: boolean;
|
99
99
|
leftIcon: import('../../components').TIcon;
|
@@ -43,11 +43,11 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
|
|
43
43
|
onReset?: (...args: any[]) => any;
|
44
44
|
"onUpdate:modelValue"?: (...args: any[]) => any;
|
45
45
|
}, {
|
46
|
+
width: string;
|
46
47
|
label: string;
|
47
48
|
disabled: boolean;
|
48
49
|
options: IOption[];
|
49
50
|
modelValue: IOption[];
|
50
|
-
width: string;
|
51
51
|
placeholder: string;
|
52
52
|
leftIcon: import('../../components').TIcon;
|
53
53
|
teleport: boolean;
|
@@ -10,6 +10,9 @@ declare const _default: import('vue').DefineComponent<{
|
|
10
10
|
type: import('vue').PropType<"small" | "medium">;
|
11
11
|
default: string;
|
12
12
|
};
|
13
|
+
description: {
|
14
|
+
type: import('vue').PropType<string>;
|
15
|
+
};
|
13
16
|
label: {
|
14
17
|
type: import('vue').PropType<string>;
|
15
18
|
};
|
@@ -20,9 +23,6 @@ declare const _default: import('vue').DefineComponent<{
|
|
20
23
|
type: import('vue').PropType<RadioOption[]>;
|
21
24
|
required: true;
|
22
25
|
};
|
23
|
-
description: {
|
24
|
-
type: import('vue').PropType<string>;
|
25
|
-
};
|
26
26
|
}, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
27
27
|
"update:modelValue": (...args: any[]) => void;
|
28
28
|
change: (...args: any[]) => void;
|
@@ -32,6 +32,9 @@ declare const _default: import('vue').DefineComponent<{
|
|
32
32
|
type: import('vue').PropType<"small" | "medium">;
|
33
33
|
default: string;
|
34
34
|
};
|
35
|
+
description: {
|
36
|
+
type: import('vue').PropType<string>;
|
37
|
+
};
|
35
38
|
label: {
|
36
39
|
type: import('vue').PropType<string>;
|
37
40
|
};
|
@@ -42,9 +45,6 @@ declare const _default: import('vue').DefineComponent<{
|
|
42
45
|
type: import('vue').PropType<RadioOption[]>;
|
43
46
|
required: true;
|
44
47
|
};
|
45
|
-
description: {
|
46
|
-
type: import('vue').PropType<string>;
|
47
|
-
};
|
48
48
|
}>> & {
|
49
49
|
onChange?: (...args: any[]) => any;
|
50
50
|
"onUpdate:modelValue"?: (...args: any[]) => any;
|
@@ -41,11 +41,11 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
|
|
41
41
|
onChange?: (...args: any[]) => any;
|
42
42
|
"onUpdate:modelValue"?: (...args: any[]) => any;
|
43
43
|
}, {
|
44
|
+
width: string;
|
44
45
|
label: string;
|
45
46
|
disabled: boolean;
|
46
47
|
options: any[] | IOption[];
|
47
48
|
modelValue: any;
|
48
|
-
width: string;
|
49
49
|
placeholder: string;
|
50
50
|
leftIcon: import('../../components').TIcon;
|
51
51
|
rightIcon: import('../../components').TIcon;
|
@@ -39,9 +39,9 @@ declare const _default: import('vue').DefineComponent<{
|
|
39
39
|
onChange?: (...args: any[]) => any;
|
40
40
|
"onUpdate:modelValue"?: (...args: any[]) => any;
|
41
41
|
}, {
|
42
|
+
description: string;
|
42
43
|
label: string;
|
43
44
|
disabled: boolean;
|
44
45
|
modelValue: boolean;
|
45
|
-
description: string;
|
46
46
|
}, {}>;
|
47
47
|
export default _default;
|
@@ -80,13 +80,13 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
|
|
80
80
|
onRemoveFile?: (...args: any[]) => any;
|
81
81
|
onClickOnFile?: (...args: any[]) => any;
|
82
82
|
}, {
|
83
|
+
width: string;
|
83
84
|
title: string;
|
85
|
+
description: string;
|
84
86
|
disabled: boolean;
|
85
87
|
modelValue: (File | TUnloadedFile)[];
|
86
|
-
width: string;
|
87
88
|
accept: string;
|
88
89
|
multiple: boolean;
|
89
|
-
description: string;
|
90
90
|
prop: string;
|
91
91
|
optional: string;
|
92
92
|
tooltip: string;
|
@@ -105,15 +105,15 @@ declare const _default: import('vue').DefineComponent<{
|
|
105
105
|
default: boolean;
|
106
106
|
};
|
107
107
|
}>>, {
|
108
|
+
width: string;
|
109
|
+
description: string;
|
108
110
|
label: string;
|
109
111
|
disabled: boolean;
|
110
|
-
width: string;
|
111
112
|
searchValue: string;
|
112
113
|
leftIcon: string;
|
113
114
|
leftIconColor: string;
|
114
115
|
rightIcon: string;
|
115
116
|
rightIconColor: string;
|
116
|
-
description: string;
|
117
117
|
descriptionColor: string;
|
118
118
|
summ: number;
|
119
119
|
active: boolean;
|
@@ -15,10 +15,10 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
|
|
15
15
|
name: string;
|
16
16
|
badge: boolean;
|
17
17
|
}>>>, {
|
18
|
+
icon: import('../pl-icon').TIcon;
|
18
19
|
name: string;
|
19
20
|
label: string;
|
20
21
|
disabled: boolean;
|
21
|
-
icon: import('../pl-icon').TIcon;
|
22
22
|
badge: boolean;
|
23
23
|
counter: number;
|
24
24
|
}, {}>, {
|
@@ -21,8 +21,8 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
|
|
21
21
|
onClick?: (...args: any[]) => any;
|
22
22
|
"onUpdate:isClicked"?: (...args: any[]) => any;
|
23
23
|
}, {
|
24
|
-
disabled: boolean;
|
25
24
|
icon: TIcon;
|
25
|
+
disabled: boolean;
|
26
26
|
isClicked: boolean;
|
27
27
|
}, {}>, {
|
28
28
|
default?(_: {}): any;
|