@factoringplus/pl-components-pack-v3 1.9.5-pre-01-radio → 1.9.5-pre-12-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-2ea5cd24.js → crypto-pro-add073d8.js} +1 -1
- package/dist/{crypto-pro-624032ca.cjs → crypto-pro-b15fe047.cjs} +1 -1
- package/dist/{entry-8b28b726.cjs → entry-42ee3834.cjs} +30 -30
- package/dist/{entry-0cbbe01b.js → entry-f89f5a70.js} +7835 -7615
- package/dist/pl-components-pack-v3.cjs.js +1 -1
- package/dist/pl-components-pack-v3.es.js +73 -72
- package/dist/src/components/basic/pl-button/index.d.ts +18 -0
- package/dist/src/components/basic/pl-button/types/index.d.ts +9 -9
- package/dist/src/components/basic/pl-scrollbar/pl-scrollbar.vue.d.ts +2 -2
- package/dist/src/components/components.d.ts +3 -1
- package/dist/src/components/data/pl-banner/index.d.ts +101 -0
- package/dist/src/components/data/pl-banner/pl-banner.vue.d.ts +51 -0
- package/dist/src/components/data/pl-banner/types/index.d.ts +70 -0
- package/dist/src/components/data/pl-tags-chips/index.d.ts +7 -7
- package/dist/src/components/data/pl-tags-chips/pl-tags-chips.vue.d.ts +1 -1
- package/dist/src/components/form/pl-autocomplete/components/pl-autocomplete-dropdown.vue.d.ts +1 -1
- package/dist/src/components/form/pl-autocomplete/components/pl-default.vue.d.ts +1 -1
- package/dist/src/components/form/pl-autocomplete/pl-autocompete.vue.d.ts +4 -4
- package/dist/src/components/form/pl-date-picker-plus/pl-date-picker-plus/pl-date-picker-plus.vue.d.ts +3 -3
- package/dist/src/components/form/pl-date-picker-plus/pl-date-picker-range-plus/pl-date-picker-range-plus.vue.d.ts +3 -3
- package/dist/src/components/form/pl-input-plus/components/pl-default.vue.d.ts +5 -5
- package/dist/src/components/form/pl-input-plus/components/pl-password.vue.d.ts +1 -1
- package/dist/src/components/form/pl-input-plus/components/pl-textarea.vue.d.ts +9 -9
- package/dist/src/components/form/pl-input-plus/index.d.ts +193 -193
- package/dist/src/components/form/pl-input-plus/pl-input-plus.vue.d.ts +15 -15
- package/dist/src/components/form/pl-multi-select/components/pl-default.vue.d.ts +1 -1
- package/dist/src/components/form/pl-multi-select/pl-multi-select.vue.d.ts +2 -2
- package/dist/src/components/form/pl-radio/pl-radio.vue.d.ts +2 -11
- package/dist/src/components/form/pl-select-plus/components/pl-default.vue.d.ts +1 -1
- package/dist/src/components/form/pl-select-plus/pl-select-plus.vue.d.ts +2 -2
- package/dist/src/components/form/pl-upload-plus/pl-upload-plus.vue.d.ts +1 -1
- package/dist/src/components/shared/pl-text/components/pl-system-regular.vue.d.ts +20 -0
- package/dist/style.css +1 -1
- package/package.json +1 -1
@@ -99,29 +99,29 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
|
|
99
99
|
leftIcon: import('../../components').TIcon;
|
100
100
|
rightIcon: import('../../components').TIcon;
|
101
101
|
prop: string;
|
102
|
-
helpertext: string;
|
103
|
-
optional: string;
|
104
|
-
tooltip: string;
|
105
|
-
clearable: boolean;
|
106
102
|
containerClass: string;
|
107
103
|
round: boolean;
|
108
|
-
|
104
|
+
tooltip: string;
|
105
|
+
clearable: boolean;
|
106
|
+
inputClass: string;
|
109
107
|
password: boolean;
|
110
|
-
|
111
|
-
|
112
|
-
currentPassword: boolean;
|
113
|
-
newPassword: boolean;
|
114
|
-
iconPointer: boolean;
|
115
|
-
customBlur: boolean;
|
108
|
+
helpertext: string;
|
109
|
+
optional: string;
|
116
110
|
focusOnReset: boolean;
|
111
|
+
customBlur: boolean;
|
117
112
|
disableTrim: boolean;
|
118
|
-
|
119
|
-
autosize: boolean;
|
120
|
-
minRows: number;
|
121
|
-
maxRows: number;
|
113
|
+
iconPointer: boolean;
|
122
114
|
valueRange: {
|
123
115
|
min: number;
|
124
116
|
};
|
117
|
+
currentPassword: boolean;
|
118
|
+
newPassword: boolean;
|
119
|
+
showWordLimit: boolean;
|
120
|
+
maxlength: number;
|
121
|
+
autosize: boolean;
|
122
|
+
minRows: number;
|
123
|
+
maxRows: number;
|
124
|
+
'show-word-limit': boolean;
|
125
125
|
}, {}>, {
|
126
126
|
"tooltip-text"?(_: {}): any;
|
127
127
|
}>;
|
@@ -46,8 +46,8 @@ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
46
46
|
focus: boolean;
|
47
47
|
prop: string;
|
48
48
|
clearable: boolean;
|
49
|
-
showDescription: string | boolean;
|
50
49
|
showError: number;
|
50
|
+
showDescription: string | boolean;
|
51
51
|
}, {}>;
|
52
52
|
export default _default;
|
53
53
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
@@ -54,10 +54,10 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
|
|
54
54
|
leftIcon: import('../../components').TIcon;
|
55
55
|
teleport: boolean;
|
56
56
|
prop: string;
|
57
|
-
helpertext: string;
|
58
|
-
optional: string;
|
59
57
|
tooltip: string;
|
60
58
|
clearable: boolean;
|
59
|
+
helpertext: string;
|
60
|
+
optional: string;
|
61
61
|
buttons: boolean;
|
62
62
|
selectAll: boolean;
|
63
63
|
}, {}>, {
|
@@ -4,7 +4,7 @@ interface RadioOption {
|
|
4
4
|
description?: string;
|
5
5
|
disabled?: boolean;
|
6
6
|
}
|
7
|
-
declare const _default:
|
7
|
+
declare const _default: import('vue').DefineComponent<{
|
8
8
|
modelValue: import('vue').PropType<any>;
|
9
9
|
size: {
|
10
10
|
type: import('vue').PropType<"small" | "medium">;
|
@@ -50,14 +50,5 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<{
|
|
50
50
|
"onUpdate:modelValue"?: (...args: any[]) => any;
|
51
51
|
}, {
|
52
52
|
size: "small" | "medium";
|
53
|
-
}, {}
|
54
|
-
title?(_: {
|
55
|
-
option: RadioOption;
|
56
|
-
}): any;
|
57
|
-
}>;
|
53
|
+
}, {}>;
|
58
54
|
export default _default;
|
59
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
60
|
-
new (): {
|
61
|
-
$slots: S;
|
62
|
-
};
|
63
|
-
};
|
@@ -47,8 +47,8 @@ declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
47
47
|
focus: boolean;
|
48
48
|
prop: string;
|
49
49
|
clearable: boolean;
|
50
|
-
showDescription: string | boolean;
|
51
50
|
showError: number;
|
51
|
+
showDescription: string | boolean;
|
52
52
|
}, {}>;
|
53
53
|
export default _default;
|
54
54
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
@@ -51,10 +51,10 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
|
|
51
51
|
rightIcon: import('../../components').TIcon;
|
52
52
|
teleport: boolean;
|
53
53
|
prop: string;
|
54
|
-
helpertext: string;
|
55
|
-
optional: string;
|
56
54
|
tooltip: string;
|
57
55
|
clearable: boolean;
|
56
|
+
helpertext: string;
|
57
|
+
optional: string;
|
58
58
|
showDescription: boolean;
|
59
59
|
account: boolean;
|
60
60
|
}, {}>, {
|
@@ -88,10 +88,10 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__
|
|
88
88
|
multiple: boolean;
|
89
89
|
description: string;
|
90
90
|
prop: string;
|
91
|
-
optional: string;
|
92
91
|
tooltip: string;
|
93
92
|
fileSize: number;
|
94
93
|
limit: number;
|
94
|
+
optional: string;
|
95
95
|
maxHeightScroll: number;
|
96
96
|
helperText: string;
|
97
97
|
viewMode: boolean;
|
@@ -0,0 +1,20 @@
|
|
1
|
+
import { ITextProps } from '../types';
|
2
|
+
|
3
|
+
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<ITextProps>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<ITextProps>>>, {}, {}>, {
|
4
|
+
default?(_: {}): any;
|
5
|
+
}>;
|
6
|
+
export default _default;
|
7
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
8
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
9
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
10
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
11
|
+
} : {
|
12
|
+
type: import('vue').PropType<T[K]>;
|
13
|
+
required: true;
|
14
|
+
};
|
15
|
+
};
|
16
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
17
|
+
new (): {
|
18
|
+
$slots: S;
|
19
|
+
};
|
20
|
+
};
|