@factoringplus/pl-components-pack-v3 1.2.2-pre-01 → 1.2.2-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/README.md +17 -17
- package/dist/components/pl-date-picker-plus/common/components/PlDatePickerRangeWrapper.vue.d.ts +16 -5
- package/dist/components/pl-date-picker-plus/common/components/PlDatePickerWrapper.vue.d.ts +12 -3
- package/dist/components/pl-date-picker-plus/pl-date-picker-plus/pl-date-picker-plus.vue.d.ts +18 -8
- package/dist/components/pl-date-picker-plus/pl-date-picker-range-plus/pl-date-picker-range-plus.vue.d.ts +23 -5
- package/dist/components/pl-input-plus/pl-input-plus.vue.d.ts +1 -1
- package/dist/components/pl-tab-pane/pl-tab-pane.vue.d.ts +3 -0
- package/dist/components/pl-tab-pane/types/index.d.ts +1 -0
- package/dist/components/pl-tabs/components/pl-tab.vue.d.ts +4 -0
- package/dist/pl-components-pack-v3.es.js +11214 -11299
- package/dist/pl-components-pack-v3.umd.js +35 -35
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/dist/components/pl-date-picker-plus/common/types/index.d.ts +0 -50
- package/dist/components/pl-date-picker-plus/common/utils/changeDropDownDirection.d.ts +0 -5
- package/dist/components/pl-date-picker-plus/common/utils/wrapperFunctions.d.ts +0 -14
package/README.md
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
# Библиотека компонентов Vue 3
|
|
2
|
-
|
|
3
|
-
## Установка
|
|
4
|
-
|
|
5
|
-
```bash
|
|
6
|
-
npm i @factoringplus/pl-components-pack-v3
|
|
7
|
-
```
|
|
8
|
-
|
|
9
|
-
### Добавление компонентов в проект
|
|
10
|
-
|
|
11
|
-
```bash
|
|
12
|
-
// src/main.js
|
|
13
|
-
import components from '@factoringplus/pl-components-pack-v3';
|
|
14
|
-
import '@factoringplus/pl-components-pack-v3/dist/style.css';
|
|
15
|
-
|
|
16
|
-
app.use(components)
|
|
17
|
-
```
|
|
1
|
+
# Библиотека компонентов Vue 3
|
|
2
|
+
|
|
3
|
+
## Установка
|
|
4
|
+
|
|
5
|
+
```bash
|
|
6
|
+
npm i @factoringplus/pl-components-pack-v3
|
|
7
|
+
```
|
|
8
|
+
|
|
9
|
+
### Добавление компонентов в проект
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
// src/main.js
|
|
13
|
+
import components from '@factoringplus/pl-components-pack-v3';
|
|
14
|
+
import '@factoringplus/pl-components-pack-v3/dist/style.css';
|
|
15
|
+
|
|
16
|
+
app.use(components)
|
|
17
|
+
```
|
package/dist/components/pl-date-picker-plus/common/components/PlDatePickerRangeWrapper.vue.d.ts
CHANGED
|
@@ -1,6 +1,17 @@
|
|
|
1
1
|
|
|
2
|
-
|
|
3
|
-
|
|
2
|
+
interface Props {
|
|
3
|
+
modelValue: string[] | null;
|
|
4
|
+
isOpen: boolean;
|
|
5
|
+
dateValue: string;
|
|
6
|
+
idProp: string;
|
|
7
|
+
mobile?: boolean;
|
|
8
|
+
periods?: boolean;
|
|
9
|
+
monthSwitch?: boolean;
|
|
10
|
+
yearSwitch?: boolean;
|
|
11
|
+
disabledDate?: Function;
|
|
12
|
+
periodOptions?: string[];
|
|
13
|
+
}
|
|
14
|
+
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
|
|
4
15
|
modelValue: () => any[];
|
|
5
16
|
isOpen: boolean;
|
|
6
17
|
dateValue: string;
|
|
@@ -23,7 +34,7 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
23
34
|
"update:dateValue": (...args: any[]) => void;
|
|
24
35
|
closePickerOnMobile: (...args: any[]) => void;
|
|
25
36
|
changeOpen: (...args: any[]) => void;
|
|
26
|
-
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<
|
|
37
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
|
|
27
38
|
modelValue: () => any[];
|
|
28
39
|
isOpen: boolean;
|
|
29
40
|
dateValue: string;
|
|
@@ -42,15 +53,15 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
42
53
|
onChangeOpen?: (...args: any[]) => any;
|
|
43
54
|
}, {
|
|
44
55
|
modelValue: string[];
|
|
45
|
-
periods: boolean;
|
|
46
|
-
periodOptions: string[];
|
|
47
56
|
isOpen: boolean;
|
|
48
57
|
dateValue: string;
|
|
49
58
|
idProp: string;
|
|
50
59
|
mobile: boolean;
|
|
60
|
+
periods: boolean;
|
|
51
61
|
monthSwitch: boolean;
|
|
52
62
|
yearSwitch: boolean;
|
|
53
63
|
disabledDate: Function;
|
|
64
|
+
periodOptions: string[];
|
|
54
65
|
}, {}>;
|
|
55
66
|
export default _default;
|
|
56
67
|
declare type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
@@ -1,6 +1,15 @@
|
|
|
1
1
|
|
|
2
|
-
|
|
3
|
-
|
|
2
|
+
interface Props {
|
|
3
|
+
modelValue: string | null;
|
|
4
|
+
isOpen: boolean;
|
|
5
|
+
dateValue: string;
|
|
6
|
+
idProp: string;
|
|
7
|
+
mobile?: boolean;
|
|
8
|
+
monthSwitch?: boolean;
|
|
9
|
+
yearSwitch?: boolean;
|
|
10
|
+
disabledDate?: Function;
|
|
11
|
+
}
|
|
12
|
+
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
|
|
4
13
|
modelValue: any;
|
|
5
14
|
dateValue: string;
|
|
6
15
|
mobile: boolean;
|
|
@@ -17,7 +26,7 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
17
26
|
"update:dateValue": (...args: any[]) => void;
|
|
18
27
|
closePickerOnMobile: (...args: any[]) => void;
|
|
19
28
|
changeOpen: (...args: any[]) => void;
|
|
20
|
-
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<
|
|
29
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
|
|
21
30
|
modelValue: any;
|
|
22
31
|
dateValue: string;
|
|
23
32
|
mobile: boolean;
|
package/dist/components/pl-date-picker-plus/pl-date-picker-plus/pl-date-picker-plus.vue.d.ts
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
interface Props {
|
|
2
|
+
modelValue: string | null;
|
|
3
|
+
width?: string;
|
|
4
|
+
placeholder?: string;
|
|
5
|
+
label?: string;
|
|
6
|
+
optional?: string;
|
|
7
|
+
helpertext?: string;
|
|
8
|
+
tooltip?: string;
|
|
9
|
+
showInput?: boolean;
|
|
10
|
+
monthSwitch?: boolean;
|
|
11
|
+
yearSwitch?: boolean;
|
|
12
|
+
prop?: string;
|
|
13
|
+
clearable?: boolean;
|
|
14
|
+
disabledDate?: Function;
|
|
15
|
+
disabled?: boolean;
|
|
16
|
+
}
|
|
17
|
+
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
|
|
3
18
|
modelValue: any;
|
|
4
19
|
width: string;
|
|
5
20
|
placeholder: string;
|
|
@@ -15,15 +30,13 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
15
30
|
clearable: boolean;
|
|
16
31
|
disabledDate: () => void;
|
|
17
32
|
disabled: boolean;
|
|
18
|
-
disableTeleport: boolean;
|
|
19
33
|
}>, {
|
|
20
34
|
openPopup: () => void;
|
|
21
35
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
22
36
|
"update:modelValue": (...args: any[]) => void;
|
|
23
37
|
blur: (...args: any[]) => void;
|
|
24
|
-
change: (...args: any[]) => void;
|
|
25
38
|
changeOpen: (...args: any[]) => void;
|
|
26
|
-
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<
|
|
39
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
|
|
27
40
|
modelValue: any;
|
|
28
41
|
width: string;
|
|
29
42
|
placeholder: string;
|
|
@@ -39,10 +52,8 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
39
52
|
clearable: boolean;
|
|
40
53
|
disabledDate: () => void;
|
|
41
54
|
disabled: boolean;
|
|
42
|
-
disableTeleport: boolean;
|
|
43
55
|
}>>> & {
|
|
44
56
|
onBlur?: (...args: any[]) => any;
|
|
45
|
-
onChange?: (...args: any[]) => any;
|
|
46
57
|
"onUpdate:modelValue"?: (...args: any[]) => any;
|
|
47
58
|
onChangeOpen?: (...args: any[]) => any;
|
|
48
59
|
}, {
|
|
@@ -60,7 +71,6 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
60
71
|
yearSwitch: boolean;
|
|
61
72
|
disabledDate: Function;
|
|
62
73
|
showInput: boolean;
|
|
63
|
-
disableTeleport: boolean;
|
|
64
74
|
}, {}>;
|
|
65
75
|
export default _default;
|
|
66
76
|
declare type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
@@ -1,5 +1,23 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
interface Props {
|
|
2
|
+
modelValue: string[] | null;
|
|
3
|
+
width?: string;
|
|
4
|
+
placeholder?: string;
|
|
5
|
+
label?: string;
|
|
6
|
+
optional?: string;
|
|
7
|
+
helpertext?: string;
|
|
8
|
+
tooltip?: string;
|
|
9
|
+
showInput?: boolean;
|
|
10
|
+
periods?: boolean;
|
|
11
|
+
periodOptions?: string[];
|
|
12
|
+
monthSwitch?: boolean;
|
|
13
|
+
yearSwitch?: boolean;
|
|
14
|
+
prop?: string;
|
|
15
|
+
clearable?: boolean;
|
|
16
|
+
disabledDate?: Function;
|
|
17
|
+
disabled?: boolean;
|
|
18
|
+
focusOnReset?: boolean;
|
|
19
|
+
}
|
|
20
|
+
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
|
|
3
21
|
modelValue: () => any[];
|
|
4
22
|
width: string;
|
|
5
23
|
placeholder: string;
|
|
@@ -23,7 +41,7 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
23
41
|
"update:modelValue": (...args: any[]) => void;
|
|
24
42
|
blur: (...args: any[]) => void;
|
|
25
43
|
changeOpen: (...args: any[]) => void;
|
|
26
|
-
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<
|
|
44
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
|
|
27
45
|
modelValue: () => any[];
|
|
28
46
|
width: string;
|
|
29
47
|
placeholder: string;
|
|
@@ -56,13 +74,13 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
56
74
|
width: string;
|
|
57
75
|
helpertext: string;
|
|
58
76
|
optional: string;
|
|
59
|
-
focusOnReset: boolean;
|
|
60
77
|
periods: boolean;
|
|
61
|
-
periodOptions: string[];
|
|
62
78
|
monthSwitch: boolean;
|
|
63
79
|
yearSwitch: boolean;
|
|
64
80
|
disabledDate: Function;
|
|
81
|
+
periodOptions: string[];
|
|
65
82
|
showInput: boolean;
|
|
83
|
+
focusOnReset: boolean;
|
|
66
84
|
}, {}>;
|
|
67
85
|
export default _default;
|
|
68
86
|
declare type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
@@ -86,7 +86,6 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
86
86
|
width: string;
|
|
87
87
|
helpertext: string;
|
|
88
88
|
optional: string;
|
|
89
|
-
focusOnReset: boolean;
|
|
90
89
|
showWordLimit: boolean;
|
|
91
90
|
currency: boolean;
|
|
92
91
|
round: boolean;
|
|
@@ -96,6 +95,7 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
96
95
|
newPassword: boolean;
|
|
97
96
|
iconPointer: boolean;
|
|
98
97
|
customBlur: boolean;
|
|
98
|
+
focusOnReset: boolean;
|
|
99
99
|
disableTrim: boolean;
|
|
100
100
|
valueRange: {
|
|
101
101
|
min: number;
|
|
@@ -5,17 +5,20 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
5
5
|
icon: string;
|
|
6
6
|
counter: any;
|
|
7
7
|
name: string;
|
|
8
|
+
tooltip: string;
|
|
8
9
|
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ITabPaneProps>, {
|
|
9
10
|
label: string;
|
|
10
11
|
disabled: boolean;
|
|
11
12
|
icon: string;
|
|
12
13
|
counter: any;
|
|
13
14
|
name: string;
|
|
15
|
+
tooltip: string;
|
|
14
16
|
}>>>, {
|
|
15
17
|
name: string;
|
|
16
18
|
label: string;
|
|
17
19
|
disabled: boolean;
|
|
18
20
|
icon: import("../pl-icon").TIcon;
|
|
21
|
+
tooltip: string;
|
|
19
22
|
counter: number;
|
|
20
23
|
}, {}>, {
|
|
21
24
|
default?(_: {}): any;
|
|
@@ -5,6 +5,7 @@ interface IProps {
|
|
|
5
5
|
disabled?: boolean;
|
|
6
6
|
icon?: TIcon;
|
|
7
7
|
counter?: number;
|
|
8
|
+
tooltip?: string;
|
|
8
9
|
}
|
|
9
10
|
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IProps>, {
|
|
10
11
|
label: string;
|
|
@@ -12,16 +13,19 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
12
13
|
disabled: boolean;
|
|
13
14
|
icon: string;
|
|
14
15
|
counter: any;
|
|
16
|
+
tooltip: string;
|
|
15
17
|
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IProps>, {
|
|
16
18
|
label: string;
|
|
17
19
|
active: boolean;
|
|
18
20
|
disabled: boolean;
|
|
19
21
|
icon: string;
|
|
20
22
|
counter: any;
|
|
23
|
+
tooltip: string;
|
|
21
24
|
}>>>, {
|
|
22
25
|
label: string;
|
|
23
26
|
disabled: boolean;
|
|
24
27
|
icon: TIcon;
|
|
28
|
+
tooltip: string;
|
|
25
29
|
active: boolean;
|
|
26
30
|
counter: number;
|
|
27
31
|
}, {}>;
|