@factoringplus/pl-components-pack-v3 1.8.34-pre-05 → 1.8.34-pre-multiselect
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-f34ef5cf.cjs → crypto-pro-7b4b673e.cjs} +1 -1
- package/dist/{crypto-pro-8c839dab.js → crypto-pro-abcd1cba.js} +1 -1
- package/dist/{entry-b818dc1e.js → entry-576c1804.js} +9585 -9685
- package/dist/entry-5896737d.cjs +115 -0
- package/dist/pl-components-pack-v3.cjs.js +1 -1
- package/dist/pl-components-pack-v3.es.js +54 -60
- package/dist/src/components/basic/pl-skeleton/components/pl-skeleton-control/index.d.ts +2 -2
- package/dist/src/components/basic/pl-skeleton/components/pl-skeleton-control/pl-skeleton-control.vue.d.ts +2 -2
- package/dist/src/components/basic/pl-skeleton/components/pl-skeleton-text-cell/index.d.ts +9 -9
- package/dist/src/components/basic/pl-skeleton/components/pl-skeleton-text-cell/pl-skeleton-text-cell.vue.d.ts +4 -4
- package/dist/src/components/components.d.ts +1 -7
- package/dist/src/components/data/pl-tags-chips/index.d.ts +19 -19
- package/dist/src/components/data/pl-tags-chips/pl-tags-chips.vue.d.ts +1 -1
- package/dist/src/components/form/pl-autocomplete/pl-autocompete.vue.d.ts +9 -2
- package/dist/src/components/form/pl-autocomplete/types/index.d.ts +1 -0
- package/dist/src/components/form/pl-date-picker-plus/common/types/index.d.ts +1 -0
- package/dist/src/components/form/pl-date-picker-plus/pl-date-picker-plus/pl-date-picker-plus.vue.d.ts +9 -2
- package/dist/src/components/form/pl-date-picker-plus/pl-date-picker-range-plus/pl-date-picker-range-plus.vue.d.ts +9 -2
- package/dist/src/components/form/pl-input-plus/index.d.ts +549 -145
- package/dist/src/components/form/pl-input-plus/pl-input-plus.vue.d.ts +9 -2
- package/dist/src/components/form/pl-input-plus/types/index.d.ts +1 -0
- package/dist/src/components/form/pl-multi-select/components/pl-multi-select-dropdown.vue.d.ts +3 -0
- package/dist/src/components/form/pl-multi-select/pl-multi-select.vue.d.ts +12 -2
- package/dist/src/components/form/pl-multi-select/types/index.d.ts +3 -0
- package/dist/src/components/form/pl-select-plus/pl-select-plus.vue.d.ts +9 -2
- package/dist/src/components/form/pl-select-plus/types/index.d.ts +1 -0
- package/dist/src/components/form/pl-upload-plus/pl-upload-plus.vue.d.ts +10 -2
- package/dist/style.css +1 -1
- package/package.json +2 -2
- package/dist/entry-097fea1d.cjs +0 -115
- package/dist/src/components/basic/pl-skeleton/components/pl-skeleton-button/index.d.ts +0 -29
- package/dist/src/components/basic/pl-skeleton/components/pl-skeleton-button/pl-skeleton-button.vue.d.ts +0 -33
- package/dist/src/components/basic/pl-skeleton/components/pl-skeleton-input/index.d.ts +0 -20
- package/dist/src/components/basic/pl-skeleton/components/pl-skeleton-input/pl-skeleton-input.vue.d.ts +0 -29
- package/dist/src/components/basic/pl-skeleton/components/pl-skeleton-tabs/index.d.ts +0 -10
- package/dist/src/components/basic/pl-skeleton/components/pl-skeleton-tabs/pl-skeleton-tabs.vue.d.ts +0 -22
- package/dist/src/components/basic/pl-skeleton/components/pl-skeleton-tags-chips/index.d.ts +0 -29
- package/dist/src/components/basic/pl-skeleton/components/pl-skeleton-tags-chips/pl-skeleton-tags-chips.vue.d.ts +0 -33
- package/dist/src/components/basic/pl-skeleton/components/pl-skeleton-text/index.d.ts +0 -20
- package/dist/src/components/basic/pl-skeleton/components/pl-skeleton-text/pl-skeleton-text.vue.d.ts +0 -29
- package/dist/src/components/basic/pl-skeleton/components/pl-skeleton-upload/index.d.ts +0 -10
- package/dist/src/components/basic/pl-skeleton/components/pl-skeleton-upload/pl-skeleton-upload.vue.d.ts +0 -22
@@ -1,6 +1,6 @@
|
|
1
1
|
import { IPlInputPlusProps } from './types';
|
2
2
|
|
3
|
-
declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IPlInputPlusProps>, {
|
3
|
+
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IPlInputPlusProps>, {
|
4
4
|
prop: string;
|
5
5
|
modelValue: string;
|
6
6
|
showWordLimit: boolean;
|
@@ -122,7 +122,9 @@ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
122
122
|
valueRange: {
|
123
123
|
min: number;
|
124
124
|
};
|
125
|
-
}, {}
|
125
|
+
}, {}>, {
|
126
|
+
"tooltip-text"?(_: {}): any;
|
127
|
+
}>;
|
126
128
|
export default _default;
|
127
129
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
128
130
|
type __VLS_TypePropsToRuntimeProps<T> = {
|
@@ -141,3 +143,8 @@ type __VLS_WithDefaults<P, D> = {
|
|
141
143
|
type __VLS_Prettify<T> = {
|
142
144
|
[K in keyof T]: T[K];
|
143
145
|
} & {};
|
146
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
147
|
+
new (): {
|
148
|
+
$slots: S;
|
149
|
+
};
|
150
|
+
};
|
package/dist/src/components/form/pl-multi-select/components/pl-multi-select-dropdown.vue.d.ts
CHANGED
@@ -7,6 +7,7 @@ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
7
7
|
helpertext: string;
|
8
8
|
errors: () => any[];
|
9
9
|
options: () => any[];
|
10
|
+
selectAll: boolean;
|
10
11
|
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
11
12
|
reset: (...args: any[]) => void;
|
12
13
|
"update:modelValue": (...args: any[]) => void;
|
@@ -18,6 +19,7 @@ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
18
19
|
helpertext: string;
|
19
20
|
errors: () => any[];
|
20
21
|
options: () => any[];
|
22
|
+
selectAll: boolean;
|
21
23
|
}>>> & {
|
22
24
|
onReset?: (...args: any[]) => any;
|
23
25
|
"onUpdate:modelValue"?: (...args: any[]) => any;
|
@@ -28,6 +30,7 @@ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
28
30
|
focus: boolean;
|
29
31
|
helpertext: string;
|
30
32
|
errors: import('async-validator').ValidateError[];
|
33
|
+
selectAll: boolean;
|
31
34
|
}, {}>;
|
32
35
|
export default _default;
|
33
36
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
@@ -1,6 +1,6 @@
|
|
1
1
|
import { IOption, ISelectProps } from './types';
|
2
2
|
|
3
|
-
declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ISelectProps>, {
|
3
|
+
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ISelectProps>, {
|
4
4
|
modelValue: () => any[];
|
5
5
|
prop: string;
|
6
6
|
placeholder: string;
|
@@ -16,6 +16,7 @@ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
16
16
|
clearable: boolean;
|
17
17
|
buttons: boolean;
|
18
18
|
teleport: boolean;
|
19
|
+
selectAll: boolean;
|
19
20
|
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
20
21
|
reset: (...args: any[]) => void;
|
21
22
|
"update:modelValue": (...args: any[]) => void;
|
@@ -36,6 +37,7 @@ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
36
37
|
clearable: boolean;
|
37
38
|
buttons: boolean;
|
38
39
|
teleport: boolean;
|
40
|
+
selectAll: boolean;
|
39
41
|
}>>> & {
|
40
42
|
onChange?: (...args: any[]) => any;
|
41
43
|
onReset?: (...args: any[]) => any;
|
@@ -55,7 +57,10 @@ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
55
57
|
optional: string;
|
56
58
|
tooltip: string;
|
57
59
|
clearable: boolean;
|
58
|
-
|
60
|
+
selectAll: boolean;
|
61
|
+
}, {}>, {
|
62
|
+
"tooltip-text"?(_: {}): any;
|
63
|
+
}>;
|
59
64
|
export default _default;
|
60
65
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
61
66
|
type __VLS_TypePropsToRuntimeProps<T> = {
|
@@ -74,3 +79,8 @@ type __VLS_WithDefaults<P, D> = {
|
|
74
79
|
type __VLS_Prettify<T> = {
|
75
80
|
[K in keyof T]: T[K];
|
76
81
|
} & {};
|
82
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
83
|
+
new (): {
|
84
|
+
$slots: S;
|
85
|
+
};
|
86
|
+
};
|
@@ -22,6 +22,8 @@ declare interface ISelectProps {
|
|
22
22
|
clearable?: boolean;
|
23
23
|
buttons?: boolean;
|
24
24
|
teleport?: boolean;
|
25
|
+
tooltipWidth?: string;
|
26
|
+
selectAll?: boolean;
|
25
27
|
}
|
26
28
|
declare interface IDropdownProps {
|
27
29
|
modelValue: IOption[];
|
@@ -33,5 +35,6 @@ declare interface IDropdownProps {
|
|
33
35
|
buttons: boolean;
|
34
36
|
idProp: string;
|
35
37
|
inputElement: HTMLElement;
|
38
|
+
selectAll?: boolean;
|
36
39
|
}
|
37
40
|
export { IDropdownProps, IOption, ISelectProps };
|
@@ -1,6 +1,6 @@
|
|
1
1
|
import { IOption, ISelectProps } from './types';
|
2
2
|
|
3
|
-
declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ISelectProps>, {
|
3
|
+
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ISelectProps>, {
|
4
4
|
modelValue: string;
|
5
5
|
prop: string;
|
6
6
|
placeholder: string;
|
@@ -57,7 +57,9 @@ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
57
57
|
clearable: boolean;
|
58
58
|
showDescription: boolean;
|
59
59
|
account: boolean;
|
60
|
-
}, {}
|
60
|
+
}, {}>, {
|
61
|
+
"tooltip-text"?(_: {}): any;
|
62
|
+
}>;
|
61
63
|
export default _default;
|
62
64
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
63
65
|
type __VLS_TypePropsToRuntimeProps<T> = {
|
@@ -76,3 +78,8 @@ type __VLS_WithDefaults<P, D> = {
|
|
76
78
|
type __VLS_Prettify<T> = {
|
77
79
|
[K in keyof T]: T[K];
|
78
80
|
} & {};
|
81
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
82
|
+
new (): {
|
83
|
+
$slots: S;
|
84
|
+
};
|
85
|
+
};
|
@@ -15,6 +15,7 @@ interface IProps {
|
|
15
15
|
width?: string;
|
16
16
|
viewMode?: boolean;
|
17
17
|
maxSumFilesSize?: number;
|
18
|
+
tooltipWidth?: string;
|
18
19
|
}
|
19
20
|
type TError = {
|
20
21
|
dist: boolean;
|
@@ -26,7 +27,7 @@ type TUnloadedFile = {
|
|
26
27
|
error?: TError;
|
27
28
|
removable?: boolean;
|
28
29
|
};
|
29
|
-
declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IProps>, {
|
30
|
+
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IProps>, {
|
30
31
|
multiple: boolean;
|
31
32
|
accept: string;
|
32
33
|
fileSize: number;
|
@@ -88,7 +89,9 @@ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
88
89
|
helperText: string;
|
89
90
|
viewMode: boolean;
|
90
91
|
maxSumFilesSize: number;
|
91
|
-
}, {}
|
92
|
+
}, {}>, {
|
93
|
+
"tooltip-text"?(_: {}): any;
|
94
|
+
}>;
|
92
95
|
export default _default;
|
93
96
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
94
97
|
type __VLS_TypePropsToRuntimeProps<T> = {
|
@@ -107,3 +110,8 @@ type __VLS_WithDefaults<P, D> = {
|
|
107
110
|
type __VLS_Prettify<T> = {
|
108
111
|
[K in keyof T]: T[K];
|
109
112
|
} & {};
|
113
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
114
|
+
new (): {
|
115
|
+
$slots: S;
|
116
|
+
};
|
117
|
+
};
|