@romainbx/wpic-components 0.0.5 → 0.0.6
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/date/DateField.vue.d.ts +2 -0
- package/dist/components/form/FormField.vue.d.ts +2 -2
- package/dist/components/form/FormInput.vue.d.ts +5 -0
- package/dist/components/icons/micro/NumberedList.vue.d.ts +2 -0
- package/dist/wpic-components.js +1825 -1795
- package/dist/wpic-components.umd.cjs +21 -21
- package/package.json +1 -1
|
@@ -5,6 +5,7 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
|
5
5
|
doubleMonths: boolean;
|
|
6
6
|
disabled: boolean;
|
|
7
7
|
large: boolean;
|
|
8
|
+
clearable: boolean;
|
|
8
9
|
label?: string | undefined;
|
|
9
10
|
modelValue?: unknown;
|
|
10
11
|
info?: string | undefined;
|
|
@@ -14,6 +15,7 @@ declare const _default: import("vue").DefineComponent<{}, {
|
|
|
14
15
|
readonly doubleMonths?: boolean | undefined;
|
|
15
16
|
readonly disabled?: boolean | undefined;
|
|
16
17
|
readonly large?: boolean | undefined;
|
|
18
|
+
readonly clearable?: boolean | undefined;
|
|
17
19
|
readonly label?: string | undefined;
|
|
18
20
|
readonly modelValue?: unknown;
|
|
19
21
|
readonly info?: string | undefined;
|
|
@@ -14,6 +14,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{}
|
|
|
14
14
|
min: string | number;
|
|
15
15
|
disabled: boolean;
|
|
16
16
|
large: boolean;
|
|
17
|
+
clearable: boolean;
|
|
17
18
|
loading: boolean;
|
|
18
19
|
tag: string;
|
|
19
20
|
hideSelect: boolean;
|
|
@@ -23,7 +24,6 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{}
|
|
|
23
24
|
radio: boolean;
|
|
24
25
|
email: boolean;
|
|
25
26
|
slim: boolean;
|
|
26
|
-
clearable: boolean;
|
|
27
27
|
debounce: number;
|
|
28
28
|
password: boolean;
|
|
29
29
|
addLabel: string;
|
|
@@ -61,6 +61,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{}
|
|
|
61
61
|
readonly min?: string | number | undefined;
|
|
62
62
|
readonly disabled?: boolean | undefined;
|
|
63
63
|
readonly large?: boolean | undefined;
|
|
64
|
+
readonly clearable?: boolean | undefined;
|
|
64
65
|
readonly loading?: boolean | undefined;
|
|
65
66
|
readonly tag?: string | undefined;
|
|
66
67
|
readonly hideSelect?: boolean | undefined;
|
|
@@ -70,7 +71,6 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{}
|
|
|
70
71
|
readonly radio?: boolean | undefined;
|
|
71
72
|
readonly email?: boolean | undefined;
|
|
72
73
|
readonly slim?: boolean | undefined;
|
|
73
|
-
readonly clearable?: boolean | undefined;
|
|
74
74
|
readonly debounce?: number | undefined;
|
|
75
75
|
readonly password?: boolean | undefined;
|
|
76
76
|
readonly addLabel?: string | undefined;
|
|
@@ -1,11 +1,16 @@
|
|
|
1
1
|
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{}, {
|
|
2
|
+
$emit: (event: "onClear", ...args: any[]) => void;
|
|
2
3
|
disabled: boolean;
|
|
3
4
|
large: boolean;
|
|
5
|
+
clearable: boolean;
|
|
6
|
+
loading: boolean;
|
|
4
7
|
label?: string | undefined;
|
|
5
8
|
info?: string | undefined;
|
|
6
9
|
$props: {
|
|
7
10
|
readonly disabled?: boolean | undefined;
|
|
8
11
|
readonly large?: boolean | undefined;
|
|
12
|
+
readonly clearable?: boolean | undefined;
|
|
13
|
+
readonly loading?: boolean | undefined;
|
|
9
14
|
readonly label?: string | undefined;
|
|
10
15
|
readonly info?: string | undefined;
|
|
11
16
|
};
|