@codemonster-ru/vueforge 0.85.0 → 0.86.0
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/index.ts.mjs +645 -625
- package/dist/index.ts.umd.js +4 -4
- package/dist/package/components/__tests__/input.test.d.ts +1 -0
- package/dist/package/components/filter-chips.vue.d.ts +1 -1
- package/dist/package/components/form.vue.d.ts +1 -1
- package/dist/package/components/input.vue.d.ts +21 -0
- package/dist/package/components/otp-input.vue.d.ts +1 -1
- package/dist/package/components/password-input.vue.d.ts +1 -1
- package/dist/package/components/progress.vue.d.ts +1 -1
- package/dist/package/components/search-input.vue.d.ts +1 -1
- package/dist/package/components/slider.vue.d.ts +1 -1
- package/package.json +2 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -37,9 +37,9 @@ declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, imp
|
|
|
37
37
|
wrap: boolean;
|
|
38
38
|
variant: FilterVariant;
|
|
39
39
|
modelValue: FilterModel;
|
|
40
|
-
clearable: boolean;
|
|
41
40
|
ariaLabel: string;
|
|
42
41
|
ariaLabelledby: string;
|
|
42
|
+
clearable: boolean;
|
|
43
43
|
multiple: boolean;
|
|
44
44
|
options: Array<FilterChipOption>;
|
|
45
45
|
clearLabel: string;
|
|
@@ -71,12 +71,12 @@ declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {},
|
|
|
71
71
|
id: string;
|
|
72
72
|
modelValue: FormValues;
|
|
73
73
|
ariaLabel: string;
|
|
74
|
+
ariaLabelledby: string;
|
|
74
75
|
initialValues: FormValues;
|
|
75
76
|
validate: FormValidateHandler;
|
|
76
77
|
mapSubmitError: FormSubmitErrorMapper;
|
|
77
78
|
validateOn: ValidateTrigger | Array<ValidateTrigger>;
|
|
78
79
|
novalidate: boolean;
|
|
79
|
-
ariaLabelledby: string;
|
|
80
80
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
81
81
|
formRef: HTMLFormElement;
|
|
82
82
|
}, HTMLFormElement>;
|
|
@@ -1,11 +1,22 @@
|
|
|
1
1
|
type Size = 'small' | 'normal' | 'large';
|
|
2
2
|
type Variant = 'filled' | 'outlined';
|
|
3
|
+
type InputMode = 'none' | 'text' | 'tel' | 'url' | 'email' | 'numeric' | 'decimal' | 'search';
|
|
3
4
|
interface Props {
|
|
4
5
|
modelValue?: string | number;
|
|
5
6
|
type?: string;
|
|
6
7
|
placeholder?: string;
|
|
7
8
|
disabled?: boolean;
|
|
8
9
|
readonly?: boolean;
|
|
10
|
+
required?: boolean;
|
|
11
|
+
id?: string;
|
|
12
|
+
name?: string;
|
|
13
|
+
autocomplete?: string;
|
|
14
|
+
inputmode?: InputMode;
|
|
15
|
+
ariaLabel?: string;
|
|
16
|
+
ariaLabelledby?: string;
|
|
17
|
+
ariaDescribedby?: string;
|
|
18
|
+
ariaInvalid?: boolean | 'true' | 'false';
|
|
19
|
+
ariaRequired?: boolean | 'true' | 'false';
|
|
9
20
|
size?: Size;
|
|
10
21
|
variant?: Variant;
|
|
11
22
|
}
|
|
@@ -34,11 +45,21 @@ declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {},
|
|
|
34
45
|
}>, {
|
|
35
46
|
type: string;
|
|
36
47
|
disabled: boolean;
|
|
48
|
+
name: string;
|
|
37
49
|
size: Size;
|
|
50
|
+
required: boolean;
|
|
51
|
+
id: string;
|
|
38
52
|
variant: Variant;
|
|
39
53
|
modelValue: string | number;
|
|
40
54
|
placeholder: string;
|
|
41
55
|
readonly: boolean;
|
|
56
|
+
autocomplete: string;
|
|
57
|
+
inputmode: InputMode;
|
|
58
|
+
ariaLabel: string;
|
|
59
|
+
ariaLabelledby: string;
|
|
60
|
+
ariaDescribedby: string;
|
|
61
|
+
ariaInvalid: boolean | "true" | "false";
|
|
62
|
+
ariaRequired: boolean | "true" | "false";
|
|
42
63
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
43
64
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
44
65
|
export default _default;
|
|
@@ -37,8 +37,8 @@ declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, imp
|
|
|
37
37
|
modelValue: string;
|
|
38
38
|
placeholder: string;
|
|
39
39
|
readonly: boolean;
|
|
40
|
-
ariaLabel: string;
|
|
41
40
|
autocomplete: string;
|
|
41
|
+
ariaLabel: string;
|
|
42
42
|
alphanumeric: boolean;
|
|
43
43
|
autoFocus: boolean;
|
|
44
44
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
@@ -52,8 +52,8 @@ declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {},
|
|
|
52
52
|
modelValue: string;
|
|
53
53
|
placeholder: string;
|
|
54
54
|
readonly: boolean;
|
|
55
|
-
ariaLabel: string;
|
|
56
55
|
autocomplete: string;
|
|
56
|
+
ariaLabel: string;
|
|
57
57
|
showToggle: boolean;
|
|
58
58
|
showStrength: boolean;
|
|
59
59
|
showCapsLockHint: boolean;
|
|
@@ -24,8 +24,8 @@ declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {},
|
|
|
24
24
|
size: ProgressSize;
|
|
25
25
|
variant: ProgressVariant;
|
|
26
26
|
severity: ProgressSeverity;
|
|
27
|
-
value: number | null;
|
|
28
27
|
ariaLabel: string;
|
|
28
|
+
value: number | null;
|
|
29
29
|
showValue: boolean;
|
|
30
30
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
31
31
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
@@ -36,9 +36,9 @@ declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, imp
|
|
|
36
36
|
modelValue: string;
|
|
37
37
|
placeholder: string;
|
|
38
38
|
readonly: boolean;
|
|
39
|
+
ariaLabel: string;
|
|
39
40
|
debounce: number;
|
|
40
41
|
clearable: boolean;
|
|
41
|
-
ariaLabel: string;
|
|
42
42
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
43
43
|
control: HTMLInputElement;
|
|
44
44
|
}, HTMLDivElement>;
|
|
@@ -36,8 +36,8 @@ declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, imp
|
|
|
36
36
|
size: Size;
|
|
37
37
|
variant: Variant;
|
|
38
38
|
modelValue: number | [number, number];
|
|
39
|
-
range: boolean;
|
|
40
39
|
ariaLabel: string;
|
|
40
|
+
range: boolean;
|
|
41
41
|
min: number;
|
|
42
42
|
max: number;
|
|
43
43
|
step: number;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codemonster-ru/vueforge",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.86.0",
|
|
4
4
|
"description": "Open source UI components for Vue.js.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Kirill Kolesnikov",
|
|
@@ -82,3 +82,4 @@
|
|
|
82
82
|
"@codemonster-ru/floater.js": "^1.0.8"
|
|
83
83
|
}
|
|
84
84
|
}
|
|
85
|
+
|