@factoringplus/pl-components-pack-v3 1.9.8-pre-01-tooltip-picker → 1.9.8-pre-02
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-d6076705.js → crypto-pro-58352e71.js} +1 -1
- package/dist/{crypto-pro-ed8f2d93.cjs → crypto-pro-d1ed16a5.cjs} +1 -1
- package/dist/{entry-efec8b2a.js → entry-32ef3719.js} +12272 -12161
- package/dist/entry-37d61ab4.cjs +115 -0
- 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-dialog/pl-dialog-plus.vue.d.ts +1 -1
- package/dist/src/components/basic/pl-scrollbar/pl-scrollbar.vue.d.ts +8 -0
- package/dist/src/components/data/pl-banner/index.d.ts +8 -8
- package/dist/src/components/data/pl-banner/pl-banner.vue.d.ts +2 -2
- package/dist/src/components/data/pl-table-plus/pl-table-plus.vue.d.ts +9 -0
- package/dist/src/components/data/pl-tags-chips/index.d.ts +22 -22
- package/dist/src/components/data/pl-tags-chips/pl-tags-chips.vue.d.ts +2 -2
- package/dist/src/components/data/pl-text-cell/index.d.ts +2 -2
- package/dist/src/components/deprecated/pl-select/pl-select.vue.d.ts +1 -1
- package/dist/src/components/deprecated/pl-upload-legacy/pl-upload-legacy.vue.d.ts +1 -1
- package/dist/src/components/form/pl-autocomplete/types/index.d.ts +2 -0
- package/dist/src/components/form/pl-date-picker-plus/common/components/PlDatePickerRangeWrapper.vue.d.ts +51 -72
- package/dist/src/components/form/pl-date-picker-plus/common/components/PlDatePickerWrapper.vue.d.ts +36 -56
- package/dist/src/components/form/pl-date-picker-plus/pl-date-picker-plus/pl-date-picker-plus.vue.d.ts +58 -124
- package/dist/src/components/form/pl-date-picker-plus/pl-date-picker-range-plus/pl-date-picker-range-plus.vue.d.ts +60 -146
- 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/utils/screenSizes.d.ts +6 -0
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/dist/entry-358d70eb.cjs +0 -115
@@ -1,137 +1,54 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
label:
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
default: string;
|
22
|
-
};
|
23
|
-
helpertext: {
|
24
|
-
type: import('vue').PropType<string>;
|
25
|
-
default: string;
|
26
|
-
};
|
27
|
-
optional: {
|
28
|
-
type: import('vue').PropType<string>;
|
29
|
-
default: string;
|
30
|
-
};
|
31
|
-
tooltip: {
|
32
|
-
type: import('vue').PropType<string>;
|
33
|
-
default: string;
|
34
|
-
};
|
35
|
-
clearable: {
|
36
|
-
type: import('vue').PropType<boolean>;
|
37
|
-
default: boolean;
|
38
|
-
};
|
39
|
-
tooltipWidth: {
|
40
|
-
type: import('vue').PropType<string>;
|
41
|
-
};
|
42
|
-
showInput: {
|
43
|
-
type: import('vue').PropType<boolean>;
|
44
|
-
default: boolean;
|
45
|
-
};
|
46
|
-
monthSwitch: {
|
47
|
-
type: import('vue').PropType<boolean>;
|
48
|
-
default: boolean;
|
49
|
-
};
|
50
|
-
yearSwitch: {
|
51
|
-
type: import('vue').PropType<boolean>;
|
52
|
-
default: boolean;
|
53
|
-
};
|
54
|
-
disabledDate: {
|
55
|
-
type: import('vue').PropType<(date: string) => boolean>;
|
56
|
-
default: () => false;
|
57
|
-
};
|
58
|
-
disableTeleport: {
|
59
|
-
type: import('vue').PropType<boolean>;
|
60
|
-
default: boolean;
|
61
|
-
};
|
62
|
-
}, {
|
1
|
+
import { IPickerProps } from '../common/types';
|
2
|
+
|
3
|
+
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IPickerProps>, {
|
4
|
+
modelValue: any;
|
5
|
+
width: string;
|
6
|
+
placeholder: string;
|
7
|
+
label: string;
|
8
|
+
optional: string;
|
9
|
+
helpertext: string;
|
10
|
+
tooltip: string;
|
11
|
+
showInput: boolean;
|
12
|
+
periods: boolean;
|
13
|
+
monthSwitch: boolean;
|
14
|
+
yearSwitch: boolean;
|
15
|
+
prop: string;
|
16
|
+
clearable: boolean;
|
17
|
+
disabledDate: () => false;
|
18
|
+
disabled: boolean;
|
19
|
+
disableTeleport: boolean;
|
20
|
+
}>, {
|
63
21
|
openPopup: () => void;
|
64
22
|
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
23
|
+
"update:modelValue": (...args: any[]) => void;
|
65
24
|
change: (...args: any[]) => void;
|
66
25
|
blur: (...args: any[]) => void;
|
67
26
|
changeOpen: (...args: any[]) => void;
|
68
|
-
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
69
|
-
modelValue:
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
type: import('vue').PropType<string>;
|
88
|
-
default: string;
|
89
|
-
};
|
90
|
-
helpertext: {
|
91
|
-
type: import('vue').PropType<string>;
|
92
|
-
default: string;
|
93
|
-
};
|
94
|
-
optional: {
|
95
|
-
type: import('vue').PropType<string>;
|
96
|
-
default: string;
|
97
|
-
};
|
98
|
-
tooltip: {
|
99
|
-
type: import('vue').PropType<string>;
|
100
|
-
default: string;
|
101
|
-
};
|
102
|
-
clearable: {
|
103
|
-
type: import('vue').PropType<boolean>;
|
104
|
-
default: boolean;
|
105
|
-
};
|
106
|
-
tooltipWidth: {
|
107
|
-
type: import('vue').PropType<string>;
|
108
|
-
};
|
109
|
-
showInput: {
|
110
|
-
type: import('vue').PropType<boolean>;
|
111
|
-
default: boolean;
|
112
|
-
};
|
113
|
-
monthSwitch: {
|
114
|
-
type: import('vue').PropType<boolean>;
|
115
|
-
default: boolean;
|
116
|
-
};
|
117
|
-
yearSwitch: {
|
118
|
-
type: import('vue').PropType<boolean>;
|
119
|
-
default: boolean;
|
120
|
-
};
|
121
|
-
disabledDate: {
|
122
|
-
type: import('vue').PropType<(date: string) => boolean>;
|
123
|
-
default: () => false;
|
124
|
-
};
|
125
|
-
disableTeleport: {
|
126
|
-
type: import('vue').PropType<boolean>;
|
127
|
-
default: boolean;
|
128
|
-
};
|
129
|
-
}>> & {
|
27
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IPickerProps>, {
|
28
|
+
modelValue: any;
|
29
|
+
width: string;
|
30
|
+
placeholder: string;
|
31
|
+
label: string;
|
32
|
+
optional: string;
|
33
|
+
helpertext: string;
|
34
|
+
tooltip: string;
|
35
|
+
showInput: boolean;
|
36
|
+
periods: boolean;
|
37
|
+
monthSwitch: boolean;
|
38
|
+
yearSwitch: boolean;
|
39
|
+
prop: string;
|
40
|
+
clearable: boolean;
|
41
|
+
disabledDate: () => false;
|
42
|
+
disabled: boolean;
|
43
|
+
disableTeleport: boolean;
|
44
|
+
}>>> & {
|
45
|
+
"onUpdate:modelValue"?: (...args: any[]) => any;
|
130
46
|
onChange?: (...args: any[]) => any;
|
131
47
|
onBlur?: (...args: any[]) => any;
|
132
48
|
onChangeOpen?: (...args: any[]) => any;
|
133
49
|
}, {
|
134
50
|
disabled: boolean;
|
51
|
+
modelValue: string;
|
135
52
|
label: string;
|
136
53
|
width: string;
|
137
54
|
placeholder: string;
|
@@ -149,6 +66,23 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
149
66
|
"tooltip-text"?(_: {}): any;
|
150
67
|
}>;
|
151
68
|
export default _default;
|
69
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
70
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
71
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
72
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
73
|
+
} : {
|
74
|
+
type: import('vue').PropType<T[K]>;
|
75
|
+
required: true;
|
76
|
+
};
|
77
|
+
};
|
78
|
+
type __VLS_WithDefaults<P, D> = {
|
79
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
80
|
+
default: D[K];
|
81
|
+
}> : P[K];
|
82
|
+
};
|
83
|
+
type __VLS_Prettify<T> = {
|
84
|
+
[K in keyof T]: T[K];
|
85
|
+
} & {};
|
152
86
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
153
87
|
new (): {
|
154
88
|
$slots: S;
|
@@ -1,159 +1,56 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
label:
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
};
|
23
|
-
helpertext: {
|
24
|
-
type: import('vue').PropType<string>;
|
25
|
-
default: string;
|
26
|
-
};
|
27
|
-
optional: {
|
28
|
-
type: import('vue').PropType<string>;
|
29
|
-
default: string;
|
30
|
-
};
|
31
|
-
tooltip: {
|
32
|
-
type: import('vue').PropType<string>;
|
33
|
-
default: string;
|
34
|
-
};
|
35
|
-
clearable: {
|
36
|
-
type: import('vue').PropType<boolean>;
|
37
|
-
default: boolean;
|
38
|
-
};
|
39
|
-
tooltipWidth: {
|
40
|
-
type: import('vue').PropType<string>;
|
41
|
-
};
|
42
|
-
showInput: {
|
43
|
-
type: import('vue').PropType<boolean>;
|
44
|
-
default: boolean;
|
45
|
-
};
|
46
|
-
focusOnReset: {
|
47
|
-
type: import('vue').PropType<boolean>;
|
48
|
-
default: boolean;
|
49
|
-
};
|
50
|
-
periods: {
|
51
|
-
type: import('vue').PropType<boolean>;
|
52
|
-
default: boolean;
|
53
|
-
};
|
54
|
-
periodOptions: {
|
55
|
-
type: import('vue').PropType<string[]>;
|
56
|
-
default: () => any[];
|
57
|
-
};
|
58
|
-
monthSwitch: {
|
59
|
-
type: import('vue').PropType<boolean>;
|
60
|
-
default: boolean;
|
61
|
-
};
|
62
|
-
yearSwitch: {
|
63
|
-
type: import('vue').PropType<boolean>;
|
64
|
-
default: boolean;
|
65
|
-
};
|
66
|
-
disabledDate: {
|
67
|
-
type: import('vue').PropType<(date: string) => boolean>;
|
68
|
-
default: () => false;
|
69
|
-
};
|
70
|
-
disableTeleport: {
|
71
|
-
type: import('vue').PropType<boolean>;
|
72
|
-
};
|
73
|
-
}, {
|
1
|
+
import { IPickerRangeProps } from '../common/types';
|
2
|
+
|
3
|
+
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IPickerRangeProps>, {
|
4
|
+
modelValue: () => any[];
|
5
|
+
width: string;
|
6
|
+
placeholder: string;
|
7
|
+
label: string;
|
8
|
+
optional: string;
|
9
|
+
helpertext: string;
|
10
|
+
tooltip: string;
|
11
|
+
showInput: boolean;
|
12
|
+
periods: boolean;
|
13
|
+
periodOptions: () => any[];
|
14
|
+
monthSwitch: boolean;
|
15
|
+
yearSwitch: boolean;
|
16
|
+
prop: string;
|
17
|
+
clearable: boolean;
|
18
|
+
disabledDate: () => false;
|
19
|
+
disabled: boolean;
|
20
|
+
focusOnReset: boolean;
|
21
|
+
}>, {
|
74
22
|
openPopup: () => void;
|
75
23
|
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
24
|
+
"update:modelValue": (...args: any[]) => void;
|
76
25
|
change: (...args: any[]) => void;
|
77
26
|
blur: (...args: any[]) => void;
|
78
27
|
changeOpen: (...args: any[]) => void;
|
79
|
-
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
80
|
-
modelValue:
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
default: string;
|
100
|
-
};
|
101
|
-
helpertext: {
|
102
|
-
type: import('vue').PropType<string>;
|
103
|
-
default: string;
|
104
|
-
};
|
105
|
-
optional: {
|
106
|
-
type: import('vue').PropType<string>;
|
107
|
-
default: string;
|
108
|
-
};
|
109
|
-
tooltip: {
|
110
|
-
type: import('vue').PropType<string>;
|
111
|
-
default: string;
|
112
|
-
};
|
113
|
-
clearable: {
|
114
|
-
type: import('vue').PropType<boolean>;
|
115
|
-
default: boolean;
|
116
|
-
};
|
117
|
-
tooltipWidth: {
|
118
|
-
type: import('vue').PropType<string>;
|
119
|
-
};
|
120
|
-
showInput: {
|
121
|
-
type: import('vue').PropType<boolean>;
|
122
|
-
default: boolean;
|
123
|
-
};
|
124
|
-
focusOnReset: {
|
125
|
-
type: import('vue').PropType<boolean>;
|
126
|
-
default: boolean;
|
127
|
-
};
|
128
|
-
periods: {
|
129
|
-
type: import('vue').PropType<boolean>;
|
130
|
-
default: boolean;
|
131
|
-
};
|
132
|
-
periodOptions: {
|
133
|
-
type: import('vue').PropType<string[]>;
|
134
|
-
default: () => any[];
|
135
|
-
};
|
136
|
-
monthSwitch: {
|
137
|
-
type: import('vue').PropType<boolean>;
|
138
|
-
default: boolean;
|
139
|
-
};
|
140
|
-
yearSwitch: {
|
141
|
-
type: import('vue').PropType<boolean>;
|
142
|
-
default: boolean;
|
143
|
-
};
|
144
|
-
disabledDate: {
|
145
|
-
type: import('vue').PropType<(date: string) => boolean>;
|
146
|
-
default: () => false;
|
147
|
-
};
|
148
|
-
disableTeleport: {
|
149
|
-
type: import('vue').PropType<boolean>;
|
150
|
-
};
|
151
|
-
}>> & {
|
28
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IPickerRangeProps>, {
|
29
|
+
modelValue: () => any[];
|
30
|
+
width: string;
|
31
|
+
placeholder: string;
|
32
|
+
label: string;
|
33
|
+
optional: string;
|
34
|
+
helpertext: string;
|
35
|
+
tooltip: string;
|
36
|
+
showInput: boolean;
|
37
|
+
periods: boolean;
|
38
|
+
periodOptions: () => any[];
|
39
|
+
monthSwitch: boolean;
|
40
|
+
yearSwitch: boolean;
|
41
|
+
prop: string;
|
42
|
+
clearable: boolean;
|
43
|
+
disabledDate: () => false;
|
44
|
+
disabled: boolean;
|
45
|
+
focusOnReset: boolean;
|
46
|
+
}>>> & {
|
47
|
+
"onUpdate:modelValue"?: (...args: any[]) => any;
|
152
48
|
onChange?: (...args: any[]) => any;
|
153
49
|
onBlur?: (...args: any[]) => any;
|
154
50
|
onChangeOpen?: (...args: any[]) => any;
|
155
51
|
}, {
|
156
52
|
disabled: boolean;
|
53
|
+
modelValue: string[];
|
157
54
|
label: string;
|
158
55
|
width: string;
|
159
56
|
placeholder: string;
|
@@ -173,6 +70,23 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
173
70
|
"tooltip-text"?(_: {}): any;
|
174
71
|
}>;
|
175
72
|
export default _default;
|
73
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
74
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
75
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
76
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
77
|
+
} : {
|
78
|
+
type: import('vue').PropType<T[K]>;
|
79
|
+
required: true;
|
80
|
+
};
|
81
|
+
};
|
82
|
+
type __VLS_WithDefaults<P, D> = {
|
83
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
84
|
+
default: D[K];
|
85
|
+
}> : P[K];
|
86
|
+
};
|
87
|
+
type __VLS_Prettify<T> = {
|
88
|
+
[K in keyof T]: T[K];
|
89
|
+
} & {};
|
176
90
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
177
91
|
new (): {
|
178
92
|
$slots: S;
|
@@ -14,14 +14,14 @@ export declare const PlInputPlus: import('../../../install-function').SFCInstall
|
|
14
14
|
type: import('vue').PropType<string>;
|
15
15
|
default: string;
|
16
16
|
};
|
17
|
-
width: {
|
18
|
-
type: import('vue').PropType<string>;
|
19
|
-
default: string;
|
20
|
-
};
|
21
17
|
textarea: {
|
22
18
|
type: import('vue').PropType<boolean>;
|
23
19
|
default: boolean;
|
24
20
|
};
|
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;
|
@@ -171,14 +171,14 @@ export declare const PlInputPlus: import('../../../install-function').SFCInstall
|
|
171
171
|
type: import('vue').PropType<string>;
|
172
172
|
default: string;
|
173
173
|
};
|
174
|
-
width: {
|
175
|
-
type: import('vue').PropType<string>;
|
176
|
-
default: string;
|
177
|
-
};
|
178
174
|
textarea: {
|
179
175
|
type: import('vue').PropType<boolean>;
|
180
176
|
default: boolean;
|
181
177
|
};
|
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;
|
@@ -306,8 +306,8 @@ export declare const PlInputPlus: import('../../../install-function').SFCInstall
|
|
306
306
|
disabled: boolean;
|
307
307
|
modelValue: import('./types').TInputModelValue;
|
308
308
|
label: string;
|
309
|
-
width: string;
|
310
309
|
textarea: boolean;
|
310
|
+
width: string;
|
311
311
|
placeholder: string;
|
312
312
|
currency: boolean;
|
313
313
|
leftIcon: import('../../components').TIcon;
|
@@ -357,14 +357,14 @@ export declare const PlInputPlus: import('../../../install-function').SFCInstall
|
|
357
357
|
type: import('vue').PropType<string>;
|
358
358
|
default: string;
|
359
359
|
};
|
360
|
-
width: {
|
361
|
-
type: import('vue').PropType<string>;
|
362
|
-
default: string;
|
363
|
-
};
|
364
360
|
textarea: {
|
365
361
|
type: import('vue').PropType<boolean>;
|
366
362
|
default: boolean;
|
367
363
|
};
|
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;
|
@@ -496,8 +496,8 @@ export declare const PlInputPlus: import('../../../install-function').SFCInstall
|
|
496
496
|
disabled: boolean;
|
497
497
|
modelValue: import('./types').TInputModelValue;
|
498
498
|
label: string;
|
499
|
-
width: string;
|
500
499
|
textarea: boolean;
|
500
|
+
width: string;
|
501
501
|
placeholder: string;
|
502
502
|
currency: boolean;
|
503
503
|
leftIcon: import('../../components').TIcon;
|
@@ -544,14 +544,14 @@ export declare const PlInputPlus: import('../../../install-function').SFCInstall
|
|
544
544
|
type: import('vue').PropType<string>;
|
545
545
|
default: string;
|
546
546
|
};
|
547
|
-
width: {
|
548
|
-
type: import('vue').PropType<string>;
|
549
|
-
default: string;
|
550
|
-
};
|
551
547
|
textarea: {
|
552
548
|
type: import('vue').PropType<boolean>;
|
553
549
|
default: boolean;
|
554
550
|
};
|
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;
|
@@ -691,8 +691,8 @@ export declare const PlInputPlus: import('../../../install-function').SFCInstall
|
|
691
691
|
disabled: boolean;
|
692
692
|
modelValue: import('./types').TInputModelValue;
|
693
693
|
label: string;
|
694
|
-
width: string;
|
695
694
|
textarea: boolean;
|
695
|
+
width: string;
|
696
696
|
placeholder: string;
|
697
697
|
currency: boolean;
|
698
698
|
leftIcon: import('../../components').TIcon;
|
@@ -92,8 +92,8 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
|
|
92
92
|
disabled: boolean;
|
93
93
|
modelValue: import('./types').TInputModelValue;
|
94
94
|
label: string;
|
95
|
-
width: string;
|
96
95
|
textarea: boolean;
|
96
|
+
width: string;
|
97
97
|
placeholder: string;
|
98
98
|
currency: boolean;
|
99
99
|
leftIcon: import('../../components').TIcon;
|