@romainbx/wpic-components 0.0.53 → 0.0.55
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/components/ProgressBar.vue.d.ts +4 -4
- package/dist/components/SlidePanel.vue.d.ts +2 -2
- package/dist/components/date/Calendar.vue.d.ts +6 -6
- package/dist/components/date/DateField.vue.d.ts +8 -8
- package/dist/components/floating/Popover.vue.d.ts +0 -1
- package/dist/components/form/Button.vue.d.ts +4 -4
- package/dist/components/form/ChoiceList.vue.d.ts +4 -5
- package/dist/components/form/FormField.vue.d.ts +14 -14
- package/dist/components/form/FormInput.vue.d.ts +2 -2
- package/dist/components/modal/Dialog.vue.d.ts +2 -2
- package/dist/components/pagination/Pagination.vue.d.ts +5 -5
- package/dist/components/tab/TabPane.vue.d.ts +2 -2
- package/dist/components/table/TableColumn.vue.d.ts +1 -1
- package/dist/wpic-components.js +7445 -9721
- package/dist/wpic-components.umd.cjs +25 -34
- package/package.json +2 -2
- package/dist/App.vue.d.ts +0 -3
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
declare const _default: import("vue").DefineComponent<{}, {
|
|
2
|
-
max: number;
|
|
3
2
|
indicators: boolean;
|
|
4
3
|
background: string;
|
|
4
|
+
max: number;
|
|
5
5
|
text?: string | undefined;
|
|
6
|
-
value?: number | undefined;
|
|
7
6
|
percent?: number | undefined;
|
|
7
|
+
value?: number | undefined;
|
|
8
8
|
$props: {
|
|
9
|
-
readonly max?: number | undefined;
|
|
10
9
|
readonly indicators?: boolean | undefined;
|
|
11
10
|
readonly background?: string | undefined;
|
|
11
|
+
readonly max?: number | undefined;
|
|
12
12
|
readonly text?: string | undefined;
|
|
13
|
-
readonly value?: number | undefined;
|
|
14
13
|
readonly percent?: number | undefined;
|
|
14
|
+
readonly value?: number | undefined;
|
|
15
15
|
};
|
|
16
16
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
|
|
17
17
|
export default _default;
|
|
@@ -2,16 +2,16 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{}
|
|
|
2
2
|
goBottom: () => void;
|
|
3
3
|
goTop: () => void;
|
|
4
4
|
$emit: (event: "close", ...args: any[]) => void;
|
|
5
|
-
expand: boolean;
|
|
6
5
|
visible: boolean;
|
|
7
6
|
backgroundColor: string;
|
|
8
7
|
options: Record<string, any>;
|
|
8
|
+
expand: boolean;
|
|
9
9
|
island: boolean;
|
|
10
10
|
$props: {
|
|
11
|
-
readonly expand?: boolean | undefined;
|
|
12
11
|
readonly visible?: boolean | undefined;
|
|
13
12
|
readonly backgroundColor?: string | undefined;
|
|
14
13
|
readonly options?: Record<string, any> | undefined;
|
|
14
|
+
readonly expand?: boolean | undefined;
|
|
15
15
|
readonly island?: boolean | undefined;
|
|
16
16
|
};
|
|
17
17
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>, {
|
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
declare const _default: import("vue").DefineComponent<{}, {
|
|
2
2
|
$emit: (event: "update:modelValue", ...args: any[]) => void;
|
|
3
|
-
week: boolean;
|
|
4
3
|
range: boolean;
|
|
5
4
|
doubleMonths: boolean;
|
|
6
|
-
|
|
7
|
-
maxDate?: unknown;
|
|
5
|
+
week: boolean;
|
|
8
6
|
modelValue?: unknown;
|
|
7
|
+
maxDate?: unknown;
|
|
8
|
+
minDate?: unknown;
|
|
9
9
|
initDates?: unknown;
|
|
10
10
|
$props: {
|
|
11
|
-
readonly week?: boolean | undefined;
|
|
12
11
|
readonly range?: boolean | undefined;
|
|
13
12
|
readonly doubleMonths?: boolean | undefined;
|
|
14
|
-
readonly
|
|
15
|
-
readonly maxDate?: unknown;
|
|
13
|
+
readonly week?: boolean | undefined;
|
|
16
14
|
readonly modelValue?: unknown;
|
|
15
|
+
readonly maxDate?: unknown;
|
|
16
|
+
readonly minDate?: unknown;
|
|
17
17
|
readonly initDates?: unknown;
|
|
18
18
|
};
|
|
19
19
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
|
|
@@ -1,39 +1,39 @@
|
|
|
1
1
|
declare const _default: import("vue").DefineComponent<{}, {
|
|
2
2
|
$emit: (event: "update:modelValue", ...args: any[]) => void;
|
|
3
|
-
week: boolean;
|
|
4
|
-
clearable: boolean;
|
|
5
3
|
placeholder: string;
|
|
6
4
|
range: boolean;
|
|
7
5
|
doubleMonths: boolean;
|
|
6
|
+
week: boolean;
|
|
8
7
|
disabled: boolean;
|
|
9
8
|
large: boolean;
|
|
9
|
+
clearable: boolean;
|
|
10
10
|
shortcuts: boolean;
|
|
11
11
|
slim: boolean;
|
|
12
12
|
required: boolean;
|
|
13
13
|
hideRequired: boolean;
|
|
14
|
-
minDate?: unknown;
|
|
15
|
-
maxDate?: unknown;
|
|
16
14
|
label?: string | undefined;
|
|
17
15
|
info?: string | undefined;
|
|
18
16
|
modelValue?: unknown;
|
|
17
|
+
maxDate?: unknown;
|
|
18
|
+
minDate?: unknown;
|
|
19
19
|
initDates?: unknown;
|
|
20
20
|
$props: {
|
|
21
|
-
readonly week?: boolean | undefined;
|
|
22
|
-
readonly clearable?: boolean | undefined;
|
|
23
21
|
readonly placeholder?: string | undefined;
|
|
24
22
|
readonly range?: boolean | undefined;
|
|
25
23
|
readonly doubleMonths?: boolean | undefined;
|
|
24
|
+
readonly week?: boolean | undefined;
|
|
26
25
|
readonly disabled?: boolean | undefined;
|
|
27
26
|
readonly large?: boolean | undefined;
|
|
27
|
+
readonly clearable?: boolean | undefined;
|
|
28
28
|
readonly shortcuts?: boolean | undefined;
|
|
29
29
|
readonly slim?: boolean | undefined;
|
|
30
30
|
readonly required?: boolean | undefined;
|
|
31
31
|
readonly hideRequired?: boolean | undefined;
|
|
32
|
-
readonly minDate?: unknown;
|
|
33
|
-
readonly maxDate?: unknown;
|
|
34
32
|
readonly label?: string | undefined;
|
|
35
33
|
readonly info?: string | undefined;
|
|
36
34
|
readonly modelValue?: unknown;
|
|
35
|
+
readonly maxDate?: unknown;
|
|
36
|
+
readonly minDate?: unknown;
|
|
37
37
|
readonly initDates?: unknown;
|
|
38
38
|
};
|
|
39
39
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{}, {
|
|
2
2
|
small: boolean;
|
|
3
|
-
type: string;
|
|
4
3
|
square: boolean;
|
|
4
|
+
type: string;
|
|
5
5
|
loading: boolean;
|
|
6
6
|
disabled: boolean;
|
|
7
7
|
full: boolean;
|
|
@@ -14,13 +14,13 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{}
|
|
|
14
14
|
medium: boolean;
|
|
15
15
|
plain: boolean;
|
|
16
16
|
outlining: boolean;
|
|
17
|
-
to?: string | Record<string, any> | undefined;
|
|
18
17
|
label?: string | undefined;
|
|
18
|
+
to?: string | Record<string, any> | undefined;
|
|
19
19
|
actions?: unknown;
|
|
20
20
|
$props: {
|
|
21
21
|
readonly small?: boolean | undefined;
|
|
22
|
-
readonly type?: string | undefined;
|
|
23
22
|
readonly square?: boolean | undefined;
|
|
23
|
+
readonly type?: string | undefined;
|
|
24
24
|
readonly loading?: boolean | undefined;
|
|
25
25
|
readonly disabled?: boolean | undefined;
|
|
26
26
|
readonly full?: boolean | undefined;
|
|
@@ -33,8 +33,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{}
|
|
|
33
33
|
readonly medium?: boolean | undefined;
|
|
34
34
|
readonly plain?: boolean | undefined;
|
|
35
35
|
readonly outlining?: boolean | undefined;
|
|
36
|
-
readonly to?: string | Record<string, any> | undefined;
|
|
37
36
|
readonly label?: string | undefined;
|
|
37
|
+
readonly to?: string | Record<string, any> | undefined;
|
|
38
38
|
readonly actions?: unknown;
|
|
39
39
|
};
|
|
40
40
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>, {
|
|
@@ -2,10 +2,10 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{}
|
|
|
2
2
|
isAllSelected: import("vue").ComputedRef<boolean>;
|
|
3
3
|
$emit: (event: "input" | "update:modelValue" | "change" | "blur-sm", ...args: any[]) => void;
|
|
4
4
|
small: boolean;
|
|
5
|
-
clearable: boolean;
|
|
6
5
|
placeholder: string;
|
|
7
6
|
loading: boolean;
|
|
8
7
|
disabled: boolean;
|
|
8
|
+
clearable: boolean;
|
|
9
9
|
required: boolean;
|
|
10
10
|
hideSelect: boolean;
|
|
11
11
|
multiple: boolean;
|
|
@@ -13,8 +13,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{}
|
|
|
13
13
|
batchSelect: boolean;
|
|
14
14
|
filterable: boolean;
|
|
15
15
|
debounce: number;
|
|
16
|
-
name?: string | undefined;
|
|
17
16
|
label?: string | undefined;
|
|
17
|
+
name?: string | undefined;
|
|
18
18
|
value?: unknown;
|
|
19
19
|
options?: unknown[] | undefined;
|
|
20
20
|
modelValue?: unknown;
|
|
@@ -24,10 +24,10 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{}
|
|
|
24
24
|
noDataText?: string | undefined;
|
|
25
25
|
$props: {
|
|
26
26
|
readonly small?: boolean | undefined;
|
|
27
|
-
readonly clearable?: boolean | undefined;
|
|
28
27
|
readonly placeholder?: string | undefined;
|
|
29
28
|
readonly loading?: boolean | undefined;
|
|
30
29
|
readonly disabled?: boolean | undefined;
|
|
30
|
+
readonly clearable?: boolean | undefined;
|
|
31
31
|
readonly required?: boolean | undefined;
|
|
32
32
|
readonly hideSelect?: boolean | undefined;
|
|
33
33
|
readonly multiple?: boolean | undefined;
|
|
@@ -35,8 +35,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{}
|
|
|
35
35
|
readonly batchSelect?: boolean | undefined;
|
|
36
36
|
readonly filterable?: boolean | undefined;
|
|
37
37
|
readonly debounce?: number | undefined;
|
|
38
|
-
readonly name?: string | undefined;
|
|
39
38
|
readonly label?: string | undefined;
|
|
39
|
+
readonly name?: string | undefined;
|
|
40
40
|
readonly value?: unknown;
|
|
41
41
|
readonly options?: unknown[] | undefined;
|
|
42
42
|
readonly modelValue?: unknown;
|
|
@@ -49,7 +49,6 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{}
|
|
|
49
49
|
default?(_: {}): any;
|
|
50
50
|
}>;
|
|
51
51
|
export default _default;
|
|
52
|
-
|
|
53
52
|
type __VLS_WithTemplateSlots<T, S> = T & (new () => {
|
|
54
53
|
$slots: S;
|
|
55
54
|
});
|
|
@@ -2,21 +2,20 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{}
|
|
|
2
2
|
focus: () => void;
|
|
3
3
|
isValid: () => any;
|
|
4
4
|
$emit: (event: "onChange" | "update:modelValue" | "onClear", ...args: any[]) => void;
|
|
5
|
-
date: boolean;
|
|
6
|
-
max: string | number;
|
|
7
|
-
min: string | number;
|
|
8
|
-
name: string;
|
|
9
5
|
select: boolean;
|
|
10
6
|
small: boolean;
|
|
11
7
|
textarea: boolean;
|
|
12
|
-
|
|
13
|
-
clearable: boolean;
|
|
8
|
+
name: string;
|
|
14
9
|
error: boolean;
|
|
10
|
+
type: string;
|
|
11
|
+
max: string | number;
|
|
15
12
|
blur: boolean;
|
|
16
13
|
loading: boolean;
|
|
17
14
|
range: boolean;
|
|
15
|
+
date: boolean;
|
|
18
16
|
disabled: boolean;
|
|
19
17
|
large: boolean;
|
|
18
|
+
clearable: boolean;
|
|
20
19
|
slim: boolean;
|
|
21
20
|
required: boolean;
|
|
22
21
|
hideRequired: boolean;
|
|
@@ -42,7 +41,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{}
|
|
|
42
41
|
minHeight: string | number;
|
|
43
42
|
maxHeight: string | number;
|
|
44
43
|
hideFocus: boolean;
|
|
45
|
-
|
|
44
|
+
min: string | number;
|
|
46
45
|
label?: string | number | undefined;
|
|
47
46
|
info?: string | undefined;
|
|
48
47
|
options?: unknown[] | undefined;
|
|
@@ -56,22 +55,22 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{}
|
|
|
56
55
|
checkboxValue?: unknown;
|
|
57
56
|
uncheckedValue?: unknown;
|
|
58
57
|
radioValue?: unknown;
|
|
58
|
+
help?: string | undefined;
|
|
59
59
|
$props: {
|
|
60
|
-
readonly date?: boolean | undefined;
|
|
61
|
-
readonly max?: string | number | undefined;
|
|
62
|
-
readonly min?: string | number | undefined;
|
|
63
|
-
readonly name?: string | undefined;
|
|
64
60
|
readonly select?: boolean | undefined;
|
|
65
61
|
readonly small?: boolean | undefined;
|
|
66
62
|
readonly textarea?: boolean | undefined;
|
|
67
|
-
readonly
|
|
68
|
-
readonly clearable?: boolean | undefined;
|
|
63
|
+
readonly name?: string | undefined;
|
|
69
64
|
readonly error?: boolean | undefined;
|
|
65
|
+
readonly type?: string | undefined;
|
|
66
|
+
readonly max?: string | number | undefined;
|
|
70
67
|
readonly blur?: boolean | undefined;
|
|
71
68
|
readonly loading?: boolean | undefined;
|
|
72
69
|
readonly range?: boolean | undefined;
|
|
70
|
+
readonly date?: boolean | undefined;
|
|
73
71
|
readonly disabled?: boolean | undefined;
|
|
74
72
|
readonly large?: boolean | undefined;
|
|
73
|
+
readonly clearable?: boolean | undefined;
|
|
75
74
|
readonly slim?: boolean | undefined;
|
|
76
75
|
readonly required?: boolean | undefined;
|
|
77
76
|
readonly hideRequired?: boolean | undefined;
|
|
@@ -97,7 +96,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{}
|
|
|
97
96
|
readonly minHeight?: string | number | undefined;
|
|
98
97
|
readonly maxHeight?: string | number | undefined;
|
|
99
98
|
readonly hideFocus?: boolean | undefined;
|
|
100
|
-
readonly
|
|
99
|
+
readonly min?: string | number | undefined;
|
|
101
100
|
readonly label?: string | number | undefined;
|
|
102
101
|
readonly info?: string | undefined;
|
|
103
102
|
readonly options?: unknown[] | undefined;
|
|
@@ -111,6 +110,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{}
|
|
|
111
110
|
readonly checkboxValue?: unknown;
|
|
112
111
|
readonly uncheckedValue?: unknown;
|
|
113
112
|
readonly radioValue?: unknown;
|
|
113
|
+
readonly help?: string | undefined;
|
|
114
114
|
};
|
|
115
115
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>, {
|
|
116
116
|
default?(_: {}): any;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{}, {
|
|
2
2
|
$emit: (event: "update:modelValue" | "onClear", ...args: any[]) => void;
|
|
3
3
|
small: boolean;
|
|
4
|
-
clearable: boolean;
|
|
5
4
|
loading: boolean;
|
|
6
5
|
disabled: boolean;
|
|
7
6
|
large: boolean;
|
|
7
|
+
clearable: boolean;
|
|
8
8
|
slim: boolean;
|
|
9
9
|
required: boolean;
|
|
10
10
|
hideRequired: boolean;
|
|
@@ -13,10 +13,10 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{}
|
|
|
13
13
|
info?: string | undefined;
|
|
14
14
|
$props: {
|
|
15
15
|
readonly small?: boolean | undefined;
|
|
16
|
-
readonly clearable?: boolean | undefined;
|
|
17
16
|
readonly loading?: boolean | undefined;
|
|
18
17
|
readonly disabled?: boolean | undefined;
|
|
19
18
|
readonly large?: boolean | undefined;
|
|
19
|
+
readonly clearable?: boolean | undefined;
|
|
20
20
|
readonly slim?: boolean | undefined;
|
|
21
21
|
readonly required?: boolean | undefined;
|
|
22
22
|
readonly hideRequired?: boolean | undefined;
|
|
@@ -3,8 +3,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{}
|
|
|
3
3
|
goTop: () => void;
|
|
4
4
|
isScrolledToBottom: import("vue").Ref<boolean>;
|
|
5
5
|
$emit: (event: "close", ...args: any[]) => void;
|
|
6
|
-
expand: boolean;
|
|
7
6
|
visible: boolean;
|
|
7
|
+
expand: boolean;
|
|
8
8
|
border: boolean;
|
|
9
9
|
large: boolean;
|
|
10
10
|
smooth: boolean;
|
|
@@ -12,8 +12,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{}
|
|
|
12
12
|
overflow: boolean;
|
|
13
13
|
title?: string | undefined;
|
|
14
14
|
$props: {
|
|
15
|
-
readonly expand?: boolean | undefined;
|
|
16
15
|
readonly visible?: boolean | undefined;
|
|
16
|
+
readonly expand?: boolean | undefined;
|
|
17
17
|
readonly border?: boolean | undefined;
|
|
18
18
|
readonly large?: boolean | undefined;
|
|
19
19
|
readonly smooth?: boolean | undefined;
|
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
declare const _default: import("vue").DefineComponent<{}, {
|
|
2
2
|
getStart: () => number;
|
|
3
3
|
getEnd: () => number | undefined;
|
|
4
|
-
$emit: (event: "update:
|
|
5
|
-
currentPage: number;
|
|
6
|
-
perPage: number;
|
|
4
|
+
$emit: (event: "update:perPage" | "update:currentPage", ...args: any[]) => void;
|
|
7
5
|
info: boolean;
|
|
8
6
|
pages: boolean;
|
|
9
7
|
perPages: boolean;
|
|
8
|
+
perPage: number;
|
|
9
|
+
currentPage: number;
|
|
10
10
|
total?: number | undefined;
|
|
11
11
|
$props: {
|
|
12
|
-
readonly currentPage?: number | undefined;
|
|
13
|
-
readonly perPage?: number | undefined;
|
|
14
12
|
readonly info?: boolean | undefined;
|
|
15
13
|
readonly pages?: boolean | undefined;
|
|
16
14
|
readonly perPages?: boolean | undefined;
|
|
15
|
+
readonly perPage?: number | undefined;
|
|
16
|
+
readonly currentPage?: number | undefined;
|
|
17
17
|
readonly total?: number | undefined;
|
|
18
18
|
};
|
|
19
19
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{}, {
|
|
2
|
-
name: string;
|
|
3
2
|
label: string;
|
|
3
|
+
name: string;
|
|
4
4
|
disabled: boolean;
|
|
5
5
|
noStyle: boolean;
|
|
6
6
|
$props: {
|
|
7
|
-
readonly name?: string | undefined;
|
|
8
7
|
readonly label?: string | undefined;
|
|
8
|
+
readonly name?: string | undefined;
|
|
9
9
|
readonly disabled?: boolean | undefined;
|
|
10
10
|
readonly noStyle?: boolean | undefined;
|
|
11
11
|
};
|