@factoringplus/pl-components-pack-v3 1.2.2 → 1.2.3
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-autocomplete/pl-autocompete.vue.d.ts +1 -1
- package/dist/components/pl-date-picker-plus/common/components/PlDatePickerRangeWrapper.vue.d.ts +5 -16
- package/dist/components/pl-date-picker-plus/common/components/PlDatePickerWrapper.vue.d.ts +3 -12
- package/dist/components/pl-date-picker-plus/common/types/index.d.ts +50 -0
- package/dist/components/pl-date-picker-plus/common/utils/wrapperFunctions.d.ts +14 -0
- package/dist/components/pl-date-picker-plus/pl-date-picker-plus/pl-date-picker-plus.vue.d.ts +9 -19
- package/dist/components/pl-date-picker-plus/pl-date-picker-range-plus/pl-date-picker-range-plus.vue.d.ts +6 -24
- package/dist/components/pl-input-plus/pl-input-plus.vue.d.ts +2 -2
- package/dist/components/pl-multi-select/components/pl-default.vue.d.ts +1 -1
- package/dist/components/pl-multi-select/pl-multi-select.vue.d.ts +1 -1
- package/dist/components/pl-select-plus/components/pl-default.vue.d.ts +1 -1
- package/dist/components/pl-select-plus/pl-select-plus.vue.d.ts +1 -1
- package/dist/components/pl-tab-pane/pl-tab-pane.vue.d.ts +0 -3
- package/dist/components/pl-tab-pane/types/index.d.ts +0 -1
- package/dist/components/pl-tabs/components/pl-tab.vue.d.ts +0 -4
- package/dist/components/pl-tooltip/pl-tooltip.vue.d.ts +6 -6
- package/dist/components/pl-tooltip-plus/pl-tooltip-plus.vue.d.ts +4 -4
- package/dist/components/pl-upload-plus/pl-upload-plus.vue.d.ts +1 -1
- package/dist/pl-components-pack-v3.es.js +11458 -11387
- package/dist/pl-components-pack-v3.umd.js +35 -35
- package/dist/style.css +1 -1
- package/package.json +1 -1
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
|
+
```
|
|
@@ -57,7 +57,6 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
57
57
|
label: string;
|
|
58
58
|
disabled: boolean;
|
|
59
59
|
modelValue: IOption;
|
|
60
|
-
tooltip: string;
|
|
61
60
|
prop: string;
|
|
62
61
|
placeholder: string;
|
|
63
62
|
clearable: boolean;
|
|
@@ -73,6 +72,7 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
73
72
|
defaultDropText: string;
|
|
74
73
|
noData: string;
|
|
75
74
|
optional: string;
|
|
75
|
+
tooltip: string;
|
|
76
76
|
teleport: boolean;
|
|
77
77
|
}, {}>;
|
|
78
78
|
export default _default;
|
package/dist/components/pl-date-picker-plus/common/components/PlDatePickerRangeWrapper.vue.d.ts
CHANGED
|
@@ -1,17 +1,6 @@
|
|
|
1
1
|
|
|
2
|
-
|
|
3
|
-
|
|
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>, {
|
|
2
|
+
import { IWrapperRangeProps } from '../types';
|
|
3
|
+
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IWrapperRangeProps>, {
|
|
15
4
|
modelValue: () => any[];
|
|
16
5
|
isOpen: boolean;
|
|
17
6
|
dateValue: string;
|
|
@@ -34,7 +23,7 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
34
23
|
"update:dateValue": (...args: any[]) => void;
|
|
35
24
|
closePickerOnMobile: (...args: any[]) => void;
|
|
36
25
|
changeOpen: (...args: any[]) => void;
|
|
37
|
-
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<
|
|
26
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IWrapperRangeProps>, {
|
|
38
27
|
modelValue: () => any[];
|
|
39
28
|
isOpen: boolean;
|
|
40
29
|
dateValue: string;
|
|
@@ -53,15 +42,15 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
53
42
|
onChangeOpen?: (...args: any[]) => any;
|
|
54
43
|
}, {
|
|
55
44
|
modelValue: string[];
|
|
45
|
+
periods: boolean;
|
|
46
|
+
periodOptions: string[];
|
|
56
47
|
isOpen: boolean;
|
|
57
48
|
dateValue: string;
|
|
58
49
|
idProp: string;
|
|
59
50
|
mobile: boolean;
|
|
60
|
-
periods: boolean;
|
|
61
51
|
monthSwitch: boolean;
|
|
62
52
|
yearSwitch: boolean;
|
|
63
53
|
disabledDate: Function;
|
|
64
|
-
periodOptions: string[];
|
|
65
54
|
}, {}>;
|
|
66
55
|
export default _default;
|
|
67
56
|
declare type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
@@ -1,15 +1,6 @@
|
|
|
1
1
|
|
|
2
|
-
|
|
3
|
-
|
|
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>, {
|
|
2
|
+
import { IWrapperProps } from '../types';
|
|
3
|
+
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IWrapperProps>, {
|
|
13
4
|
modelValue: any;
|
|
14
5
|
dateValue: string;
|
|
15
6
|
mobile: boolean;
|
|
@@ -26,7 +17,7 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
26
17
|
"update:dateValue": (...args: any[]) => void;
|
|
27
18
|
closePickerOnMobile: (...args: any[]) => void;
|
|
28
19
|
changeOpen: (...args: any[]) => void;
|
|
29
|
-
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<
|
|
20
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IWrapperProps>, {
|
|
30
21
|
modelValue: any;
|
|
31
22
|
dateValue: string;
|
|
32
23
|
mobile: boolean;
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
declare type Item = {
|
|
2
|
+
day: number;
|
|
3
|
+
month: number;
|
|
4
|
+
year: number;
|
|
5
|
+
type?: string;
|
|
6
|
+
};
|
|
7
|
+
declare interface IDefaultPickerProps {
|
|
8
|
+
width?: string;
|
|
9
|
+
placeholder?: string;
|
|
10
|
+
label?: string;
|
|
11
|
+
optional?: string;
|
|
12
|
+
helpertext?: string;
|
|
13
|
+
tooltip?: string;
|
|
14
|
+
showInput?: boolean;
|
|
15
|
+
monthSwitch?: boolean;
|
|
16
|
+
yearSwitch?: boolean;
|
|
17
|
+
prop?: string;
|
|
18
|
+
clearable?: boolean;
|
|
19
|
+
disabledDate?: Function;
|
|
20
|
+
disabled?: boolean;
|
|
21
|
+
disableTeleport?: boolean;
|
|
22
|
+
}
|
|
23
|
+
declare interface IPickerProps extends IDefaultPickerProps {
|
|
24
|
+
modelValue: string | null;
|
|
25
|
+
}
|
|
26
|
+
declare interface IPickerRangeProps extends IDefaultPickerProps {
|
|
27
|
+
modelValue: string[] | null;
|
|
28
|
+
focusOnReset?: boolean;
|
|
29
|
+
periods?: boolean;
|
|
30
|
+
periodOptions?: string[];
|
|
31
|
+
}
|
|
32
|
+
declare interface IDefaultWrapperProps {
|
|
33
|
+
isOpen: boolean;
|
|
34
|
+
dateValue: string;
|
|
35
|
+
idProp: string;
|
|
36
|
+
mobile?: boolean;
|
|
37
|
+
inputElement?: HTMLElement;
|
|
38
|
+
monthSwitch?: boolean;
|
|
39
|
+
yearSwitch?: boolean;
|
|
40
|
+
disabledDate?: Function;
|
|
41
|
+
}
|
|
42
|
+
declare interface IWrapperRangeProps extends IDefaultWrapperProps {
|
|
43
|
+
modelValue: string[] | null;
|
|
44
|
+
periods?: boolean;
|
|
45
|
+
periodOptions?: string[];
|
|
46
|
+
}
|
|
47
|
+
declare interface IWrapperProps extends IDefaultWrapperProps {
|
|
48
|
+
modelValue: string | null;
|
|
49
|
+
}
|
|
50
|
+
export { Item, IPickerProps, IPickerRangeProps, IWrapperRangeProps, IWrapperProps };
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import dayjs, { Dayjs } from 'dayjs';
|
|
2
|
+
import { Item } from '../types';
|
|
3
|
+
declare const WEEK_DAYS: string[];
|
|
4
|
+
declare const isCurrentDate: (item: Item) => boolean;
|
|
5
|
+
declare const isDisabledDate: (item: Item, disabledDate: Function) => any;
|
|
6
|
+
declare const dayjsFormat: (value: Item) => Dayjs;
|
|
7
|
+
declare const capitalize: (value: string) => string;
|
|
8
|
+
declare const switchPrevMonth: (currentDate: Dayjs) => dayjs.Dayjs;
|
|
9
|
+
declare const switchNextMonth: (currentDate: Dayjs) => dayjs.Dayjs;
|
|
10
|
+
declare const switchPrevYear: (currentDate: Dayjs) => dayjs.Dayjs;
|
|
11
|
+
declare const switchNextYear: (currentDate: Dayjs) => dayjs.Dayjs;
|
|
12
|
+
declare const isCurrentItem: (item: Item, disabledDate: Function) => boolean;
|
|
13
|
+
declare const getArrayOfDays: (date: Dayjs) => Item[];
|
|
14
|
+
export { WEEK_DAYS, isCurrentDate, isDisabledDate, dayjsFormat, capitalize, switchPrevMonth, switchNextMonth, switchPrevYear, switchNextYear, isCurrentItem, getArrayOfDays, };
|
package/dist/components/pl-date-picker-plus/pl-date-picker-plus/pl-date-picker-plus.vue.d.ts
CHANGED
|
@@ -1,20 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
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>, {
|
|
1
|
+
import { IPickerProps } from '../common/types';
|
|
2
|
+
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IPickerProps>, {
|
|
18
3
|
modelValue: any;
|
|
19
4
|
width: string;
|
|
20
5
|
placeholder: string;
|
|
@@ -30,13 +15,15 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
30
15
|
clearable: boolean;
|
|
31
16
|
disabledDate: () => void;
|
|
32
17
|
disabled: boolean;
|
|
18
|
+
disableTeleport: boolean;
|
|
33
19
|
}>, {
|
|
34
20
|
openPopup: () => void;
|
|
35
21
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
36
22
|
"update:modelValue": (...args: any[]) => void;
|
|
37
23
|
blur: (...args: any[]) => void;
|
|
24
|
+
change: (...args: any[]) => void;
|
|
38
25
|
changeOpen: (...args: any[]) => void;
|
|
39
|
-
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<
|
|
26
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IPickerProps>, {
|
|
40
27
|
modelValue: any;
|
|
41
28
|
width: string;
|
|
42
29
|
placeholder: string;
|
|
@@ -52,25 +39,28 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
52
39
|
clearable: boolean;
|
|
53
40
|
disabledDate: () => void;
|
|
54
41
|
disabled: boolean;
|
|
42
|
+
disableTeleport: boolean;
|
|
55
43
|
}>>> & {
|
|
56
44
|
onBlur?: (...args: any[]) => any;
|
|
45
|
+
onChange?: (...args: any[]) => any;
|
|
57
46
|
"onUpdate:modelValue"?: (...args: any[]) => any;
|
|
58
47
|
onChangeOpen?: (...args: any[]) => any;
|
|
59
48
|
}, {
|
|
60
49
|
label: string;
|
|
61
50
|
disabled: boolean;
|
|
62
51
|
modelValue: string;
|
|
63
|
-
tooltip: string;
|
|
64
52
|
prop: string;
|
|
65
53
|
placeholder: string;
|
|
66
54
|
clearable: boolean;
|
|
67
55
|
width: string;
|
|
68
56
|
helpertext: string;
|
|
69
57
|
optional: string;
|
|
58
|
+
tooltip: string;
|
|
70
59
|
monthSwitch: boolean;
|
|
71
60
|
yearSwitch: boolean;
|
|
72
61
|
disabledDate: Function;
|
|
73
62
|
showInput: boolean;
|
|
63
|
+
disableTeleport: boolean;
|
|
74
64
|
}, {}>;
|
|
75
65
|
export default _default;
|
|
76
66
|
declare type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
@@ -1,23 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
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>, {
|
|
1
|
+
import { IPickerRangeProps } from '../common/types';
|
|
2
|
+
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IPickerRangeProps>, {
|
|
21
3
|
modelValue: () => any[];
|
|
22
4
|
width: string;
|
|
23
5
|
placeholder: string;
|
|
@@ -41,7 +23,7 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
41
23
|
"update:modelValue": (...args: any[]) => void;
|
|
42
24
|
blur: (...args: any[]) => void;
|
|
43
25
|
changeOpen: (...args: any[]) => void;
|
|
44
|
-
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<
|
|
26
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IPickerRangeProps>, {
|
|
45
27
|
modelValue: () => any[];
|
|
46
28
|
width: string;
|
|
47
29
|
placeholder: string;
|
|
@@ -67,20 +49,20 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
67
49
|
label: string;
|
|
68
50
|
disabled: boolean;
|
|
69
51
|
modelValue: string[];
|
|
70
|
-
tooltip: string;
|
|
71
52
|
prop: string;
|
|
72
53
|
placeholder: string;
|
|
73
54
|
clearable: boolean;
|
|
74
55
|
width: string;
|
|
75
56
|
helpertext: string;
|
|
76
57
|
optional: string;
|
|
58
|
+
tooltip: string;
|
|
59
|
+
focusOnReset: boolean;
|
|
77
60
|
periods: boolean;
|
|
61
|
+
periodOptions: string[];
|
|
78
62
|
monthSwitch: boolean;
|
|
79
63
|
yearSwitch: boolean;
|
|
80
64
|
disabledDate: Function;
|
|
81
|
-
periodOptions: string[];
|
|
82
65
|
showInput: boolean;
|
|
83
|
-
focusOnReset: boolean;
|
|
84
66
|
}, {}>;
|
|
85
67
|
export default _default;
|
|
86
68
|
declare type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
@@ -76,7 +76,6 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
76
76
|
textarea: boolean;
|
|
77
77
|
disabled: boolean;
|
|
78
78
|
modelValue: import("./types").TInputModelValue;
|
|
79
|
-
tooltip: string;
|
|
80
79
|
prop: string;
|
|
81
80
|
placeholder: string;
|
|
82
81
|
clearable: boolean;
|
|
@@ -86,6 +85,8 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
86
85
|
width: string;
|
|
87
86
|
helpertext: string;
|
|
88
87
|
optional: string;
|
|
88
|
+
tooltip: string;
|
|
89
|
+
focusOnReset: boolean;
|
|
89
90
|
showWordLimit: boolean;
|
|
90
91
|
currency: boolean;
|
|
91
92
|
round: boolean;
|
|
@@ -95,7 +96,6 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
95
96
|
newPassword: boolean;
|
|
96
97
|
iconPointer: boolean;
|
|
97
98
|
customBlur: boolean;
|
|
98
|
-
focusOnReset: boolean;
|
|
99
99
|
disableTrim: boolean;
|
|
100
100
|
valueRange: {
|
|
101
101
|
min: number;
|
|
@@ -40,12 +40,12 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
40
40
|
}, {
|
|
41
41
|
id: string;
|
|
42
42
|
disabled: boolean;
|
|
43
|
-
focus: boolean;
|
|
44
43
|
prop: string;
|
|
45
44
|
placeholder: string;
|
|
46
45
|
clearable: boolean;
|
|
47
46
|
showError: number;
|
|
48
47
|
leftIcon: TIcon;
|
|
48
|
+
focus: boolean;
|
|
49
49
|
showDescription: string | boolean;
|
|
50
50
|
}, {}>;
|
|
51
51
|
export default _default;
|
|
@@ -39,7 +39,6 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
39
39
|
label: string;
|
|
40
40
|
disabled: boolean;
|
|
41
41
|
modelValue: IOption[];
|
|
42
|
-
tooltip: string;
|
|
43
42
|
prop: string;
|
|
44
43
|
placeholder: string;
|
|
45
44
|
clearable: boolean;
|
|
@@ -47,6 +46,7 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
47
46
|
width: string;
|
|
48
47
|
helpertext: string;
|
|
49
48
|
optional: string;
|
|
49
|
+
tooltip: string;
|
|
50
50
|
buttons: boolean;
|
|
51
51
|
options: IOption[];
|
|
52
52
|
}, {}>;
|
|
@@ -41,12 +41,12 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
41
41
|
}, {
|
|
42
42
|
id: string;
|
|
43
43
|
disabled: boolean;
|
|
44
|
-
focus: boolean;
|
|
45
44
|
prop: string;
|
|
46
45
|
placeholder: string;
|
|
47
46
|
clearable: boolean;
|
|
48
47
|
showError: number;
|
|
49
48
|
leftIcon: TIcon;
|
|
49
|
+
focus: boolean;
|
|
50
50
|
showDescription: string | boolean;
|
|
51
51
|
}, {}>;
|
|
52
52
|
export default _default;
|
|
@@ -43,7 +43,6 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
43
43
|
label: string;
|
|
44
44
|
disabled: boolean;
|
|
45
45
|
modelValue: string | number | IOption;
|
|
46
|
-
tooltip: string;
|
|
47
46
|
prop: string;
|
|
48
47
|
placeholder: string;
|
|
49
48
|
clearable: boolean;
|
|
@@ -52,6 +51,7 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
52
51
|
width: string;
|
|
53
52
|
helpertext: string;
|
|
54
53
|
optional: string;
|
|
54
|
+
tooltip: string;
|
|
55
55
|
teleport: boolean;
|
|
56
56
|
showDescription: boolean;
|
|
57
57
|
options: IOption[];
|
|
@@ -5,20 +5,17 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
5
5
|
icon: string;
|
|
6
6
|
counter: any;
|
|
7
7
|
name: string;
|
|
8
|
-
tooltip: string;
|
|
9
8
|
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ITabPaneProps>, {
|
|
10
9
|
label: string;
|
|
11
10
|
disabled: boolean;
|
|
12
11
|
icon: string;
|
|
13
12
|
counter: any;
|
|
14
13
|
name: string;
|
|
15
|
-
tooltip: string;
|
|
16
14
|
}>>>, {
|
|
17
15
|
name: string;
|
|
18
16
|
label: string;
|
|
19
17
|
disabled: boolean;
|
|
20
18
|
icon: import("../pl-icon").TIcon;
|
|
21
|
-
tooltip: string;
|
|
22
19
|
counter: number;
|
|
23
20
|
}, {}>, {
|
|
24
21
|
default?(_: {}): any;
|
|
@@ -5,7 +5,6 @@ interface IProps {
|
|
|
5
5
|
disabled?: boolean;
|
|
6
6
|
icon?: TIcon;
|
|
7
7
|
counter?: number;
|
|
8
|
-
tooltip?: string;
|
|
9
8
|
}
|
|
10
9
|
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IProps>, {
|
|
11
10
|
label: string;
|
|
@@ -13,19 +12,16 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
13
12
|
disabled: boolean;
|
|
14
13
|
icon: string;
|
|
15
14
|
counter: any;
|
|
16
|
-
tooltip: string;
|
|
17
15
|
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IProps>, {
|
|
18
16
|
label: string;
|
|
19
17
|
active: boolean;
|
|
20
18
|
disabled: boolean;
|
|
21
19
|
icon: string;
|
|
22
20
|
counter: any;
|
|
23
|
-
tooltip: string;
|
|
24
21
|
}>>>, {
|
|
25
22
|
label: string;
|
|
26
23
|
disabled: boolean;
|
|
27
24
|
icon: TIcon;
|
|
28
|
-
tooltip: string;
|
|
29
25
|
active: boolean;
|
|
30
26
|
counter: number;
|
|
31
27
|
}, {}>;
|
|
@@ -4,7 +4,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
4
4
|
required: false;
|
|
5
5
|
};
|
|
6
6
|
position: {
|
|
7
|
-
type: () => "left" | "right" | "top" | "
|
|
7
|
+
type: () => "left" | "right" | "top" | "bottom" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end" | "right-start" | "right-end";
|
|
8
8
|
default: string;
|
|
9
9
|
};
|
|
10
10
|
customClass: {
|
|
@@ -12,7 +12,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
12
12
|
default: string;
|
|
13
13
|
};
|
|
14
14
|
trigger: {
|
|
15
|
-
type: () => "click" | "
|
|
15
|
+
type: () => "click" | "focus" | "hover" | "contextmenu";
|
|
16
16
|
default: string;
|
|
17
17
|
};
|
|
18
18
|
hideAfter: {
|
|
@@ -25,7 +25,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
25
25
|
required: false;
|
|
26
26
|
};
|
|
27
27
|
position: {
|
|
28
|
-
type: () => "left" | "right" | "top" | "
|
|
28
|
+
type: () => "left" | "right" | "top" | "bottom" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end" | "right-start" | "right-end";
|
|
29
29
|
default: string;
|
|
30
30
|
};
|
|
31
31
|
customClass: {
|
|
@@ -33,7 +33,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
33
33
|
default: string;
|
|
34
34
|
};
|
|
35
35
|
trigger: {
|
|
36
|
-
type: () => "click" | "
|
|
36
|
+
type: () => "click" | "focus" | "hover" | "contextmenu";
|
|
37
37
|
default: string;
|
|
38
38
|
};
|
|
39
39
|
hideAfter: {
|
|
@@ -41,9 +41,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
41
41
|
default: number;
|
|
42
42
|
};
|
|
43
43
|
}>>, {
|
|
44
|
-
position: "left" | "right" | "top" | "top-start" | "top-end" | "bottom" | "bottom-start" | "bottom-end" | "left-start" | "left-end" | "right-start" | "right-end";
|
|
45
44
|
customClass: string;
|
|
46
|
-
trigger: "click" | "
|
|
45
|
+
trigger: "click" | "focus" | "hover" | "contextmenu";
|
|
46
|
+
position: "left" | "right" | "top" | "bottom" | "top-start" | "top-end" | "bottom-start" | "bottom-end" | "left-start" | "left-end" | "right-start" | "right-end";
|
|
47
47
|
hideAfter: number;
|
|
48
48
|
}, {}>, {
|
|
49
49
|
default?(_: {}): any;
|
|
@@ -3,8 +3,8 @@ interface IProps {
|
|
|
3
3
|
width?: string;
|
|
4
4
|
delay?: boolean | undefined;
|
|
5
5
|
truncated?: boolean;
|
|
6
|
-
trigger
|
|
7
|
-
disabled
|
|
6
|
+
trigger?: 'click' | 'hover';
|
|
7
|
+
disabled?: boolean;
|
|
8
8
|
}
|
|
9
9
|
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<IProps>, {
|
|
10
10
|
placement: string;
|
|
@@ -20,10 +20,10 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
20
20
|
disabled: boolean;
|
|
21
21
|
}>>>, {
|
|
22
22
|
disabled: boolean;
|
|
23
|
-
|
|
24
|
-
placement: "left" | "right" | "top" | "bottom" | "top-right" | "top-left" | "right-top" | "right-bottom" | "bottom-left" | "bottom-right" | "left-bottom" | "left-top";
|
|
23
|
+
placement: "left" | "right" | "top" | "top-right" | "top-left" | "right-top" | "right-bottom" | "bottom-left" | "bottom" | "bottom-right" | "left-bottom" | "left-top";
|
|
25
24
|
delay: boolean;
|
|
26
25
|
truncated: boolean;
|
|
26
|
+
trigger: "click" | "hover";
|
|
27
27
|
}, {}>, {
|
|
28
28
|
default?(_: {}): any;
|
|
29
29
|
"tooltip-text"?(_: {}): any;
|
|
@@ -65,10 +65,10 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
65
65
|
title: string;
|
|
66
66
|
disabled: boolean;
|
|
67
67
|
modelValue: (File | TUnloadedFile)[];
|
|
68
|
-
tooltip: string;
|
|
69
68
|
prop: string;
|
|
70
69
|
description: string;
|
|
71
70
|
optional: string;
|
|
71
|
+
tooltip: string;
|
|
72
72
|
accept: string;
|
|
73
73
|
multiple: boolean;
|
|
74
74
|
fileSize: number;
|