@vue-interface/input-field 1.0.0-beta.26 → 1.0.0-beta.27
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/src/InputField.vue.d.ts +10 -10
- package/package.json +18 -18
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
import type { FormControlEvents, FormControlSlots } from '@vue-interface/form-control';
|
|
2
2
|
declare const _default: <T, V>(__VLS_props: {
|
|
3
|
+
value?: V;
|
|
4
|
+
name?: string;
|
|
3
5
|
onBlur?: (event: FocusEvent) => any;
|
|
4
6
|
onChange?: (value: T) => any;
|
|
5
|
-
onClick?: (
|
|
7
|
+
onClick?: (event: PointerEvent) => any;
|
|
6
8
|
onFocus?: (event: FocusEvent) => any;
|
|
7
9
|
"onUpdate:modelValue"?: (value: T) => any;
|
|
8
10
|
activity?: boolean;
|
|
@@ -19,21 +21,21 @@ declare const _default: <T, V>(__VLS_props: {
|
|
|
19
21
|
label?: string;
|
|
20
22
|
labelClass?: string;
|
|
21
23
|
modelValue?: T;
|
|
22
|
-
name?: string;
|
|
23
24
|
plaintext?: boolean;
|
|
24
25
|
readonly?: boolean;
|
|
25
26
|
valid?: boolean;
|
|
26
|
-
value?: V;
|
|
27
27
|
checked?: boolean;
|
|
28
28
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, __VLS_ctx?: {
|
|
29
|
+
slots: Readonly<FormControlSlots<T>> & FormControlSlots<T>;
|
|
29
30
|
attrs: any;
|
|
30
31
|
emit: FormControlEvents<T>;
|
|
31
|
-
slots: Readonly<FormControlSlots<T>> & FormControlSlots<T>;
|
|
32
32
|
}, __VLS_expose?: (exposed: import('vue').ShallowUnwrapRef<{}>) => void, __VLS_setup?: Promise<{
|
|
33
33
|
props: {
|
|
34
|
+
value?: V;
|
|
35
|
+
name?: string;
|
|
34
36
|
onBlur?: (event: FocusEvent) => any;
|
|
35
37
|
onChange?: (value: T) => any;
|
|
36
|
-
onClick?: (
|
|
38
|
+
onClick?: (event: PointerEvent) => any;
|
|
37
39
|
onFocus?: (event: FocusEvent) => any;
|
|
38
40
|
"onUpdate:modelValue"?: (value: T) => any;
|
|
39
41
|
activity?: boolean;
|
|
@@ -50,11 +52,9 @@ declare const _default: <T, V>(__VLS_props: {
|
|
|
50
52
|
label?: string;
|
|
51
53
|
labelClass?: string;
|
|
52
54
|
modelValue?: T;
|
|
53
|
-
name?: string;
|
|
54
55
|
plaintext?: boolean;
|
|
55
56
|
readonly?: boolean;
|
|
56
57
|
valid?: boolean;
|
|
57
|
-
value?: V;
|
|
58
58
|
checked?: boolean;
|
|
59
59
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
|
|
60
60
|
expose(exposed: import('vue').ShallowUnwrapRef<{}>): void;
|
|
@@ -66,9 +66,11 @@ declare const _default: <T, V>(__VLS_props: {
|
|
|
66
66
|
}> & {
|
|
67
67
|
__ctx?: {
|
|
68
68
|
props: {
|
|
69
|
+
value?: V;
|
|
70
|
+
name?: string;
|
|
69
71
|
onBlur?: (event: FocusEvent) => any;
|
|
70
72
|
onChange?: (value: T) => any;
|
|
71
|
-
onClick?: (
|
|
73
|
+
onClick?: (event: PointerEvent) => any;
|
|
72
74
|
onFocus?: (event: FocusEvent) => any;
|
|
73
75
|
"onUpdate:modelValue"?: (value: T) => any;
|
|
74
76
|
activity?: boolean;
|
|
@@ -85,11 +87,9 @@ declare const _default: <T, V>(__VLS_props: {
|
|
|
85
87
|
label?: string;
|
|
86
88
|
labelClass?: string;
|
|
87
89
|
modelValue?: T;
|
|
88
|
-
name?: string;
|
|
89
90
|
plaintext?: boolean;
|
|
90
91
|
readonly?: boolean;
|
|
91
92
|
valid?: boolean;
|
|
92
|
-
value?: V;
|
|
93
93
|
checked?: boolean;
|
|
94
94
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
|
|
95
95
|
expose(exposed: import('vue').ShallowUnwrapRef<{}>): void;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vue-interface/input-field",
|
|
3
|
-
"version": "1.0.0-beta.
|
|
3
|
+
"version": "1.0.0-beta.27",
|
|
4
4
|
"description": "A Vue input field component.",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist"
|
|
@@ -41,32 +41,32 @@
|
|
|
41
41
|
},
|
|
42
42
|
"homepage": "https://github.com/vue-interface/input-field/docs#readme",
|
|
43
43
|
"dependencies": {
|
|
44
|
-
"@vue-interface/activity-indicator": "^2.0.0-beta.
|
|
45
|
-
"@vue-interface/form-control": "^1.0.0-beta.
|
|
44
|
+
"@vue-interface/activity-indicator": "^2.0.0-beta.20",
|
|
45
|
+
"@vue-interface/form-control": "^1.0.0-beta.51"
|
|
46
46
|
},
|
|
47
47
|
"peerDependencies": {
|
|
48
48
|
"vue": "^3.3.4"
|
|
49
49
|
},
|
|
50
50
|
"devDependencies": {
|
|
51
|
-
"@commitlint/config-conventional": "^17.
|
|
51
|
+
"@commitlint/config-conventional": "^17.8.1",
|
|
52
52
|
"@semantic-release/changelog": "^6.0.3",
|
|
53
53
|
"@semantic-release/git": "^10.0.1",
|
|
54
|
-
"@semantic-release/npm": "^10.0.
|
|
55
|
-
"@vitejs/plugin-vue": "^4.
|
|
56
|
-
"@vue-interface/eslint-config": "1.0.0-beta.4",
|
|
57
|
-
"autoprefixer": "^10.4.
|
|
54
|
+
"@semantic-release/npm": "^10.0.6",
|
|
55
|
+
"@vitejs/plugin-vue": "^4.6.2",
|
|
56
|
+
"@vue-interface/eslint-config": "^1.0.0-beta.4",
|
|
57
|
+
"autoprefixer": "^10.4.19",
|
|
58
58
|
"change-case": "^4.1.2",
|
|
59
|
-
"commitlint": "^17.
|
|
60
|
-
"dotenv": "^16.
|
|
61
|
-
"eslint": "^8.
|
|
59
|
+
"commitlint": "^17.8.1",
|
|
60
|
+
"dotenv": "^16.4.5",
|
|
61
|
+
"eslint": "^8.57.0",
|
|
62
62
|
"husky": "^8.0.3",
|
|
63
63
|
"pascalcase": "^2.0.0",
|
|
64
|
-
"postcss": "^8.4.
|
|
65
|
-
"semantic-release": "^21.1.
|
|
66
|
-
"tailwindcss": "^3.
|
|
67
|
-
"typescript": "^5.
|
|
68
|
-
"vite": "^4.
|
|
69
|
-
"vue": "^3.
|
|
70
|
-
"vue-tsc": "^1.8.
|
|
64
|
+
"postcss": "^8.4.38",
|
|
65
|
+
"semantic-release": "^21.1.2",
|
|
66
|
+
"tailwindcss": "^3.4.3",
|
|
67
|
+
"typescript": "^5.4.5",
|
|
68
|
+
"vite": "^4.5.3",
|
|
69
|
+
"vue": "^3.4.27",
|
|
70
|
+
"vue-tsc": "^1.8.27"
|
|
71
71
|
}
|
|
72
72
|
}
|