@factoringplus/pl-components-pack-v3 1.9.8-pre-01 → 1.9.8-pre-01-tooltip-picker
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-5e031a0a.js → crypto-pro-d6076705.js} +1 -1
- package/dist/{crypto-pro-b9600237.cjs → crypto-pro-ed8f2d93.cjs} +1 -1
- package/dist/entry-358d70eb.cjs +115 -0
- package/dist/{entry-edead1be.js → entry-efec8b2a.js} +11469 -11596
- 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/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-progress/index.d.ts +3 -3
- package/dist/src/components/data/pl-progress/pl-progress.vue.d.ts +2 -2
- package/dist/src/components/data/pl-snackbar/pl-snackbar.vue.d.ts +3 -6
- package/dist/src/components/data/pl-snackbar/types.d.ts +2 -3
- 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-date-picker-plus/common/components/PlDatePickerRangeWrapper.vue.d.ts +72 -51
- package/dist/src/components/form/pl-date-picker-plus/common/components/PlDatePickerWrapper.vue.d.ts +56 -36
- package/dist/src/components/form/pl-date-picker-plus/pl-date-picker-plus/pl-date-picker-plus.vue.d.ts +124 -58
- package/dist/src/components/form/pl-date-picker-plus/pl-date-picker-range-plus/pl-date-picker-range-plus.vue.d.ts +146 -60
- 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/style.css +1 -1
- package/package.json +1 -1
- package/dist/entry-22b21b96.cjs +0 -115
package/dist/src/components/form/pl-date-picker-plus/common/components/PlDatePickerWrapper.vue.d.ts
CHANGED
@@ -1,13 +1,32 @@
|
|
1
|
-
import { IWrapperProps } from '../types';
|
2
1
|
|
3
|
-
declare const _default: import('vue').DefineComponent<
|
4
|
-
|
5
|
-
dateValue: string
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
}
|
2
|
+
declare const _default: import('vue').DefineComponent<{
|
3
|
+
isOpen: import('vue').PropType<boolean>;
|
4
|
+
dateValue: import('vue').PropType<string>;
|
5
|
+
modelValue: import('vue').PropType<string>;
|
6
|
+
idProp: {
|
7
|
+
type: import('vue').PropType<string>;
|
8
|
+
default: string;
|
9
|
+
};
|
10
|
+
inputElement: {
|
11
|
+
type: import('vue').PropType<HTMLElement>;
|
12
|
+
required: true;
|
13
|
+
};
|
14
|
+
mobile: {
|
15
|
+
type: import('vue').PropType<boolean>;
|
16
|
+
default: boolean;
|
17
|
+
};
|
18
|
+
monthSwitch: {
|
19
|
+
type: import('vue').PropType<boolean>;
|
20
|
+
default: boolean;
|
21
|
+
};
|
22
|
+
yearSwitch: {
|
23
|
+
type: import('vue').PropType<boolean>;
|
24
|
+
default: boolean;
|
25
|
+
};
|
26
|
+
disabledDate: {
|
27
|
+
type: import('vue').PropType<(date: string) => boolean>;
|
28
|
+
};
|
29
|
+
}, {
|
11
30
|
openPopup: () => void;
|
12
31
|
checkInput: () => void;
|
13
32
|
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
@@ -15,41 +34,42 @@ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
15
34
|
"update:isOpen": (...args: any[]) => void;
|
16
35
|
"update:dateValue": (...args: any[]) => void;
|
17
36
|
closePickerOnMobile: (...args: any[]) => void;
|
18
|
-
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<
|
19
|
-
|
20
|
-
dateValue: string
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
}
|
37
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
38
|
+
isOpen: import('vue').PropType<boolean>;
|
39
|
+
dateValue: import('vue').PropType<string>;
|
40
|
+
modelValue: import('vue').PropType<string>;
|
41
|
+
idProp: {
|
42
|
+
type: import('vue').PropType<string>;
|
43
|
+
default: string;
|
44
|
+
};
|
45
|
+
inputElement: {
|
46
|
+
type: import('vue').PropType<HTMLElement>;
|
47
|
+
required: true;
|
48
|
+
};
|
49
|
+
mobile: {
|
50
|
+
type: import('vue').PropType<boolean>;
|
51
|
+
default: boolean;
|
52
|
+
};
|
53
|
+
monthSwitch: {
|
54
|
+
type: import('vue').PropType<boolean>;
|
55
|
+
default: boolean;
|
56
|
+
};
|
57
|
+
yearSwitch: {
|
58
|
+
type: import('vue').PropType<boolean>;
|
59
|
+
default: boolean;
|
60
|
+
};
|
61
|
+
disabledDate: {
|
62
|
+
type: import('vue').PropType<(date: string) => boolean>;
|
63
|
+
};
|
64
|
+
}>> & {
|
26
65
|
"onUpdate:modelValue"?: (...args: any[]) => any;
|
27
66
|
"onUpdate:isOpen"?: (...args: any[]) => any;
|
28
67
|
"onUpdate:dateValue"?: (...args: any[]) => any;
|
29
68
|
onClosePickerOnMobile?: (...args: any[]) => any;
|
30
69
|
}, {
|
31
|
-
modelValue: string;
|
32
70
|
idProp: string;
|
33
71
|
mobile: boolean;
|
34
|
-
dateValue: string;
|
35
72
|
monthSwitch: boolean;
|
36
73
|
yearSwitch: boolean;
|
37
74
|
}, {}>;
|
38
75
|
export default _default;
|
39
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
40
|
-
type __VLS_TypePropsToRuntimeProps<T> = {
|
41
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
42
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
43
|
-
} : {
|
44
|
-
type: import('vue').PropType<T[K]>;
|
45
|
-
required: true;
|
46
|
-
};
|
47
|
-
};
|
48
|
-
type __VLS_WithDefaults<P, D> = {
|
49
|
-
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
50
|
-
default: D[K];
|
51
|
-
}> : P[K];
|
52
|
-
};
|
53
|
-
type __VLS_Prettify<T> = {
|
54
|
-
[K in keyof T]: T[K];
|
55
|
-
} & {};
|
@@ -1,54 +1,137 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
label:
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
1
|
+
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
2
|
+
modelValue: import('vue').PropType<string>;
|
3
|
+
disabled: {
|
4
|
+
type: import('vue').PropType<boolean>;
|
5
|
+
default: boolean;
|
6
|
+
};
|
7
|
+
label: {
|
8
|
+
type: import('vue').PropType<string>;
|
9
|
+
default: string;
|
10
|
+
};
|
11
|
+
width: {
|
12
|
+
type: import('vue').PropType<string>;
|
13
|
+
default: string;
|
14
|
+
};
|
15
|
+
placeholder: {
|
16
|
+
type: import('vue').PropType<string>;
|
17
|
+
default: string;
|
18
|
+
};
|
19
|
+
prop: {
|
20
|
+
type: import('vue').PropType<string>;
|
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
|
+
}, {
|
21
63
|
openPopup: () => void;
|
22
64
|
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
23
|
-
"update:modelValue": (...args: any[]) => void;
|
24
65
|
change: (...args: any[]) => void;
|
25
66
|
blur: (...args: any[]) => void;
|
26
67
|
changeOpen: (...args: any[]) => void;
|
27
|
-
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<
|
28
|
-
modelValue:
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
}
|
45
|
-
|
68
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
69
|
+
modelValue: import('vue').PropType<string>;
|
70
|
+
disabled: {
|
71
|
+
type: import('vue').PropType<boolean>;
|
72
|
+
default: boolean;
|
73
|
+
};
|
74
|
+
label: {
|
75
|
+
type: import('vue').PropType<string>;
|
76
|
+
default: string;
|
77
|
+
};
|
78
|
+
width: {
|
79
|
+
type: import('vue').PropType<string>;
|
80
|
+
default: string;
|
81
|
+
};
|
82
|
+
placeholder: {
|
83
|
+
type: import('vue').PropType<string>;
|
84
|
+
default: string;
|
85
|
+
};
|
86
|
+
prop: {
|
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
|
+
}>> & {
|
46
130
|
onChange?: (...args: any[]) => any;
|
47
131
|
onBlur?: (...args: any[]) => any;
|
48
132
|
onChangeOpen?: (...args: any[]) => any;
|
49
133
|
}, {
|
50
134
|
disabled: boolean;
|
51
|
-
modelValue: string;
|
52
135
|
label: string;
|
53
136
|
width: string;
|
54
137
|
placeholder: string;
|
@@ -66,23 +149,6 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
|
|
66
149
|
"tooltip-text"?(_: {}): any;
|
67
150
|
}>;
|
68
151
|
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
|
-
} & {};
|
86
152
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
87
153
|
new (): {
|
88
154
|
$slots: S;
|
@@ -1,56 +1,159 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
label:
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
1
|
+
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
2
|
+
modelValue: import('vue').PropType<string[]>;
|
3
|
+
disabled: {
|
4
|
+
type: import('vue').PropType<boolean>;
|
5
|
+
default: boolean;
|
6
|
+
};
|
7
|
+
label: {
|
8
|
+
type: import('vue').PropType<string>;
|
9
|
+
default: string;
|
10
|
+
};
|
11
|
+
width: {
|
12
|
+
type: import('vue').PropType<string>;
|
13
|
+
default: string;
|
14
|
+
};
|
15
|
+
placeholder: {
|
16
|
+
type: import('vue').PropType<string>;
|
17
|
+
default: string;
|
18
|
+
};
|
19
|
+
prop: {
|
20
|
+
type: import('vue').PropType<string>;
|
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
|
+
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
|
+
}, {
|
22
74
|
openPopup: () => void;
|
23
75
|
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
24
|
-
"update:modelValue": (...args: any[]) => void;
|
25
76
|
change: (...args: any[]) => void;
|
26
77
|
blur: (...args: any[]) => void;
|
27
78
|
changeOpen: (...args: any[]) => void;
|
28
|
-
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<
|
29
|
-
modelValue: ()
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
79
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
80
|
+
modelValue: import('vue').PropType<string[]>;
|
81
|
+
disabled: {
|
82
|
+
type: import('vue').PropType<boolean>;
|
83
|
+
default: boolean;
|
84
|
+
};
|
85
|
+
label: {
|
86
|
+
type: import('vue').PropType<string>;
|
87
|
+
default: string;
|
88
|
+
};
|
89
|
+
width: {
|
90
|
+
type: import('vue').PropType<string>;
|
91
|
+
default: string;
|
92
|
+
};
|
93
|
+
placeholder: {
|
94
|
+
type: import('vue').PropType<string>;
|
95
|
+
default: string;
|
96
|
+
};
|
97
|
+
prop: {
|
98
|
+
type: import('vue').PropType<string>;
|
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
|
+
}>> & {
|
48
152
|
onChange?: (...args: any[]) => any;
|
49
153
|
onBlur?: (...args: any[]) => any;
|
50
154
|
onChangeOpen?: (...args: any[]) => any;
|
51
155
|
}, {
|
52
156
|
disabled: boolean;
|
53
|
-
modelValue: string[];
|
54
157
|
label: string;
|
55
158
|
width: string;
|
56
159
|
placeholder: string;
|
@@ -70,23 +173,6 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
|
|
70
173
|
"tooltip-text"?(_: {}): any;
|
71
174
|
}>;
|
72
175
|
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
|
-
} & {};
|
90
176
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
91
177
|
new (): {
|
92
178
|
$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
|
-
textarea: {
|
18
|
-
type: import('vue').PropType<boolean>;
|
19
|
-
default: boolean;
|
20
|
-
};
|
21
17
|
width: {
|
22
18
|
type: import('vue').PropType<string>;
|
23
19
|
default: string;
|
24
20
|
};
|
21
|
+
textarea: {
|
22
|
+
type: import('vue').PropType<boolean>;
|
23
|
+
default: boolean;
|
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
|
-
textarea: {
|
175
|
-
type: import('vue').PropType<boolean>;
|
176
|
-
default: boolean;
|
177
|
-
};
|
178
174
|
width: {
|
179
175
|
type: import('vue').PropType<string>;
|
180
176
|
default: string;
|
181
177
|
};
|
178
|
+
textarea: {
|
179
|
+
type: import('vue').PropType<boolean>;
|
180
|
+
default: boolean;
|
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
|
-
textarea: boolean;
|
310
309
|
width: string;
|
310
|
+
textarea: boolean;
|
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
|
-
textarea: {
|
361
|
-
type: import('vue').PropType<boolean>;
|
362
|
-
default: boolean;
|
363
|
-
};
|
364
360
|
width: {
|
365
361
|
type: import('vue').PropType<string>;
|
366
362
|
default: string;
|
367
363
|
};
|
364
|
+
textarea: {
|
365
|
+
type: import('vue').PropType<boolean>;
|
366
|
+
default: boolean;
|
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
|
-
textarea: boolean;
|
500
499
|
width: string;
|
500
|
+
textarea: boolean;
|
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
|
-
textarea: {
|
548
|
-
type: import('vue').PropType<boolean>;
|
549
|
-
default: boolean;
|
550
|
-
};
|
551
547
|
width: {
|
552
548
|
type: import('vue').PropType<string>;
|
553
549
|
default: string;
|
554
550
|
};
|
551
|
+
textarea: {
|
552
|
+
type: import('vue').PropType<boolean>;
|
553
|
+
default: boolean;
|
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
|
-
textarea: boolean;
|
695
694
|
width: string;
|
695
|
+
textarea: boolean;
|
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
|
-
textarea: boolean;
|
96
95
|
width: string;
|
96
|
+
textarea: boolean;
|
97
97
|
placeholder: string;
|
98
98
|
currency: boolean;
|
99
99
|
leftIcon: import('../../components').TIcon;
|