@codemonster-ru/vueforge 0.85.0 → 0.87.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 +4772 -4611
- package/dist/index.ts.umd.js +12 -12
- 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/masked-input.vue.d.ts +20 -0
- package/dist/package/components/mention-input.vue.d.ts +18 -0
- package/dist/package/components/number-input.vue.d.ts +19 -0
- package/dist/package/components/otp-input.vue.d.ts +19 -1
- package/dist/package/components/password-input.vue.d.ts +15 -1
- package/dist/package/components/progress.vue.d.ts +1 -1
- package/dist/package/components/search-input.vue.d.ts +19 -1
- package/dist/package/components/slider.vue.d.ts +1 -1
- package/dist/package/components/textarea.vue.d.ts +21 -0
- package/package.json +3 -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;
|
|
@@ -8,6 +8,16 @@ interface Props {
|
|
|
8
8
|
placeholderChar?: string;
|
|
9
9
|
disabled?: boolean;
|
|
10
10
|
readonly?: boolean;
|
|
11
|
+
required?: boolean;
|
|
12
|
+
id?: string;
|
|
13
|
+
name?: string;
|
|
14
|
+
autocomplete?: string;
|
|
15
|
+
inputmode?: 'none' | 'text' | 'tel' | 'url' | 'email' | 'numeric' | 'decimal' | 'search';
|
|
16
|
+
ariaLabel?: string;
|
|
17
|
+
ariaLabelledby?: string;
|
|
18
|
+
ariaDescribedby?: string;
|
|
19
|
+
ariaInvalid?: boolean | 'true' | 'false';
|
|
20
|
+
ariaRequired?: boolean | 'true' | 'false';
|
|
11
21
|
unmask?: boolean;
|
|
12
22
|
size?: Size;
|
|
13
23
|
variant?: Variant;
|
|
@@ -40,12 +50,22 @@ declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {},
|
|
|
40
50
|
onComplete?: ((...args: any[]) => any) | undefined;
|
|
41
51
|
}>, {
|
|
42
52
|
disabled: boolean;
|
|
53
|
+
name: string;
|
|
43
54
|
mask: string | MaskTransformer;
|
|
44
55
|
size: Size;
|
|
56
|
+
required: boolean;
|
|
57
|
+
id: string;
|
|
45
58
|
variant: Variant;
|
|
46
59
|
modelValue: string;
|
|
47
60
|
placeholder: string;
|
|
48
61
|
readonly: boolean;
|
|
62
|
+
autocomplete: string;
|
|
63
|
+
inputmode: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search";
|
|
64
|
+
ariaLabel: string;
|
|
65
|
+
ariaLabelledby: string;
|
|
66
|
+
ariaDescribedby: string;
|
|
67
|
+
ariaInvalid: boolean | "true" | "false";
|
|
68
|
+
ariaRequired: boolean | "true" | "false";
|
|
49
69
|
placeholderChar: string;
|
|
50
70
|
unmask: boolean;
|
|
51
71
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
@@ -13,6 +13,11 @@ interface Props {
|
|
|
13
13
|
placeholder?: string;
|
|
14
14
|
disabled?: boolean;
|
|
15
15
|
readonly?: boolean;
|
|
16
|
+
required?: boolean;
|
|
17
|
+
id?: string;
|
|
18
|
+
name?: string;
|
|
19
|
+
autocomplete?: string;
|
|
20
|
+
inputmode?: 'none' | 'text' | 'tel' | 'url' | 'email' | 'numeric' | 'decimal' | 'search';
|
|
16
21
|
loading?: boolean;
|
|
17
22
|
loadingText?: string;
|
|
18
23
|
emptyText?: string;
|
|
@@ -22,6 +27,10 @@ interface Props {
|
|
|
22
27
|
size?: Size;
|
|
23
28
|
variant?: Variant;
|
|
24
29
|
ariaLabel?: string;
|
|
30
|
+
ariaLabelledby?: string;
|
|
31
|
+
ariaDescribedby?: string;
|
|
32
|
+
ariaInvalid?: boolean | 'true' | 'false';
|
|
33
|
+
ariaRequired?: boolean | 'true' | 'false';
|
|
25
34
|
}
|
|
26
35
|
declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
27
36
|
search: (...args: any[]) => void;
|
|
@@ -43,13 +52,22 @@ declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, imp
|
|
|
43
52
|
onInsert?: ((...args: any[]) => any) | undefined;
|
|
44
53
|
}>, {
|
|
45
54
|
disabled: boolean;
|
|
55
|
+
name: string;
|
|
46
56
|
size: Size;
|
|
57
|
+
required: boolean;
|
|
58
|
+
id: string;
|
|
47
59
|
loading: boolean;
|
|
48
60
|
variant: Variant;
|
|
49
61
|
modelValue: string;
|
|
50
62
|
placeholder: string;
|
|
51
63
|
readonly: boolean;
|
|
64
|
+
autocomplete: string;
|
|
65
|
+
inputmode: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search";
|
|
52
66
|
ariaLabel: string;
|
|
67
|
+
ariaLabelledby: string;
|
|
68
|
+
ariaDescribedby: string;
|
|
69
|
+
ariaInvalid: boolean | "true" | "false";
|
|
70
|
+
ariaRequired: boolean | "true" | "false";
|
|
53
71
|
suggestions: Array<MentionOption>;
|
|
54
72
|
triggers: Array<string>;
|
|
55
73
|
loadingText: string;
|
|
@@ -1,5 +1,6 @@
|
|
|
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?: number | null;
|
|
5
6
|
min?: number;
|
|
@@ -9,10 +10,19 @@ interface Props {
|
|
|
9
10
|
placeholder?: string;
|
|
10
11
|
disabled?: boolean;
|
|
11
12
|
readonly?: boolean;
|
|
13
|
+
required?: boolean;
|
|
14
|
+
id?: string;
|
|
15
|
+
name?: string;
|
|
16
|
+
autocomplete?: string;
|
|
17
|
+
inputmode?: InputMode;
|
|
12
18
|
size?: Size;
|
|
13
19
|
variant?: Variant;
|
|
14
20
|
controls?: boolean;
|
|
15
21
|
ariaLabel?: string;
|
|
22
|
+
ariaLabelledby?: string;
|
|
23
|
+
ariaDescribedby?: string;
|
|
24
|
+
ariaInvalid?: boolean | 'true' | 'false';
|
|
25
|
+
ariaRequired?: boolean | 'true' | 'false';
|
|
16
26
|
}
|
|
17
27
|
declare function __VLS_template(): {
|
|
18
28
|
attrs: Partial<{}>;
|
|
@@ -38,12 +48,21 @@ declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {},
|
|
|
38
48
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
39
49
|
}>, {
|
|
40
50
|
disabled: boolean;
|
|
51
|
+
name: string;
|
|
41
52
|
size: Size;
|
|
53
|
+
required: boolean;
|
|
54
|
+
id: string;
|
|
42
55
|
variant: Variant;
|
|
43
56
|
modelValue: number | null;
|
|
44
57
|
placeholder: string;
|
|
45
58
|
readonly: boolean;
|
|
59
|
+
autocomplete: string;
|
|
60
|
+
inputmode: InputMode;
|
|
46
61
|
ariaLabel: string;
|
|
62
|
+
ariaLabelledby: string;
|
|
63
|
+
ariaDescribedby: string;
|
|
64
|
+
ariaInvalid: boolean | "true" | "false";
|
|
65
|
+
ariaRequired: boolean | "true" | "false";
|
|
47
66
|
min: number;
|
|
48
67
|
max: number;
|
|
49
68
|
step: number;
|
|
@@ -6,13 +6,22 @@ interface Props {
|
|
|
6
6
|
placeholder?: string;
|
|
7
7
|
disabled?: boolean;
|
|
8
8
|
readonly?: boolean;
|
|
9
|
+
required?: boolean;
|
|
10
|
+
id?: string;
|
|
11
|
+
name?: string;
|
|
9
12
|
size?: Size;
|
|
10
13
|
variant?: Variant;
|
|
11
14
|
mask?: boolean;
|
|
12
15
|
alphanumeric?: boolean;
|
|
13
16
|
autocomplete?: string;
|
|
17
|
+
inputmode?: 'none' | 'text' | 'tel' | 'url' | 'email' | 'numeric' | 'decimal' | 'search';
|
|
14
18
|
autoFocus?: boolean;
|
|
15
19
|
ariaLabel?: string;
|
|
20
|
+
ariaLabelledby?: string;
|
|
21
|
+
ariaDescribedby?: string;
|
|
22
|
+
ariaInvalid?: boolean | 'true' | 'false';
|
|
23
|
+
ariaRequired?: boolean | 'true' | 'false';
|
|
24
|
+
cellAriaLabelPrefix?: string;
|
|
16
25
|
}
|
|
17
26
|
declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
18
27
|
blur: (...args: any[]) => void;
|
|
@@ -31,15 +40,24 @@ declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, imp
|
|
|
31
40
|
}>, {
|
|
32
41
|
length: number;
|
|
33
42
|
disabled: boolean;
|
|
43
|
+
name: string;
|
|
34
44
|
mask: boolean;
|
|
35
45
|
size: Size;
|
|
46
|
+
required: boolean;
|
|
47
|
+
id: string;
|
|
36
48
|
variant: Variant;
|
|
37
49
|
modelValue: string;
|
|
38
50
|
placeholder: string;
|
|
39
51
|
readonly: boolean;
|
|
40
|
-
ariaLabel: string;
|
|
41
52
|
autocomplete: string;
|
|
53
|
+
inputmode: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search";
|
|
54
|
+
ariaLabel: string;
|
|
55
|
+
ariaLabelledby: string;
|
|
56
|
+
ariaDescribedby: string;
|
|
57
|
+
ariaInvalid: boolean | "true" | "false";
|
|
58
|
+
ariaRequired: boolean | "true" | "false";
|
|
42
59
|
alphanumeric: boolean;
|
|
43
60
|
autoFocus: boolean;
|
|
61
|
+
cellAriaLabelPrefix: string;
|
|
44
62
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
45
63
|
export default _default;
|
|
@@ -5,6 +5,9 @@ interface Props {
|
|
|
5
5
|
placeholder?: string;
|
|
6
6
|
disabled?: boolean;
|
|
7
7
|
readonly?: boolean;
|
|
8
|
+
required?: boolean;
|
|
9
|
+
id?: string;
|
|
10
|
+
name?: string;
|
|
8
11
|
size?: Size;
|
|
9
12
|
variant?: Variant;
|
|
10
13
|
autocomplete?: string;
|
|
@@ -20,6 +23,10 @@ interface Props {
|
|
|
20
23
|
mediumLabel?: string;
|
|
21
24
|
strongLabel?: string;
|
|
22
25
|
ariaLabel?: string;
|
|
26
|
+
ariaLabelledby?: string;
|
|
27
|
+
ariaDescribedby?: string;
|
|
28
|
+
ariaInvalid?: boolean | 'true' | 'false';
|
|
29
|
+
ariaRequired?: boolean | 'true' | 'false';
|
|
23
30
|
}
|
|
24
31
|
declare function __VLS_template(): {
|
|
25
32
|
attrs: Partial<{}>;
|
|
@@ -47,13 +54,20 @@ declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {},
|
|
|
47
54
|
onToggleVisibility?: ((...args: any[]) => any) | undefined;
|
|
48
55
|
}>, {
|
|
49
56
|
disabled: boolean;
|
|
57
|
+
name: string;
|
|
50
58
|
size: Size;
|
|
59
|
+
required: boolean;
|
|
60
|
+
id: string;
|
|
51
61
|
variant: Variant;
|
|
52
62
|
modelValue: string;
|
|
53
63
|
placeholder: string;
|
|
54
64
|
readonly: boolean;
|
|
55
|
-
ariaLabel: string;
|
|
56
65
|
autocomplete: string;
|
|
66
|
+
ariaLabel: string;
|
|
67
|
+
ariaLabelledby: string;
|
|
68
|
+
ariaDescribedby: string;
|
|
69
|
+
ariaInvalid: boolean | "true" | "false";
|
|
70
|
+
ariaRequired: boolean | "true" | "false";
|
|
57
71
|
showToggle: boolean;
|
|
58
72
|
showStrength: boolean;
|
|
59
73
|
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"]>;
|
|
@@ -5,12 +5,21 @@ interface Props {
|
|
|
5
5
|
placeholder?: string;
|
|
6
6
|
disabled?: boolean;
|
|
7
7
|
readonly?: boolean;
|
|
8
|
+
required?: boolean;
|
|
9
|
+
id?: string;
|
|
10
|
+
name?: string;
|
|
11
|
+
autocomplete?: string;
|
|
12
|
+
inputmode?: 'none' | 'text' | 'tel' | 'url' | 'email' | 'numeric' | 'decimal' | 'search';
|
|
8
13
|
debounce?: number;
|
|
9
14
|
loading?: boolean;
|
|
10
15
|
clearable?: boolean;
|
|
11
16
|
size?: Size;
|
|
12
17
|
variant?: Variant;
|
|
13
18
|
ariaLabel?: string;
|
|
19
|
+
ariaLabelledby?: string;
|
|
20
|
+
ariaDescribedby?: string;
|
|
21
|
+
ariaInvalid?: boolean | 'true' | 'false';
|
|
22
|
+
ariaRequired?: boolean | 'true' | 'false';
|
|
14
23
|
}
|
|
15
24
|
declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
16
25
|
search: (...args: any[]) => void;
|
|
@@ -30,15 +39,24 @@ declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, imp
|
|
|
30
39
|
onClear?: ((...args: any[]) => any) | undefined;
|
|
31
40
|
}>, {
|
|
32
41
|
disabled: boolean;
|
|
42
|
+
name: string;
|
|
33
43
|
size: Size;
|
|
44
|
+
required: boolean;
|
|
45
|
+
id: string;
|
|
34
46
|
loading: boolean;
|
|
35
47
|
variant: Variant;
|
|
36
48
|
modelValue: string;
|
|
37
49
|
placeholder: string;
|
|
38
50
|
readonly: boolean;
|
|
51
|
+
autocomplete: string;
|
|
52
|
+
inputmode: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search";
|
|
53
|
+
ariaLabel: string;
|
|
54
|
+
ariaLabelledby: string;
|
|
55
|
+
ariaDescribedby: string;
|
|
56
|
+
ariaInvalid: boolean | "true" | "false";
|
|
57
|
+
ariaRequired: boolean | "true" | "false";
|
|
39
58
|
debounce: number;
|
|
40
59
|
clearable: boolean;
|
|
41
|
-
ariaLabel: string;
|
|
42
60
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
43
61
|
control: HTMLInputElement;
|
|
44
62
|
}, 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;
|
|
@@ -1,10 +1,21 @@
|
|
|
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;
|
|
5
6
|
placeholder?: string;
|
|
6
7
|
disabled?: boolean;
|
|
7
8
|
readonly?: boolean;
|
|
9
|
+
required?: boolean;
|
|
10
|
+
id?: string;
|
|
11
|
+
name?: string;
|
|
12
|
+
autocomplete?: string;
|
|
13
|
+
inputmode?: InputMode;
|
|
14
|
+
ariaLabel?: string;
|
|
15
|
+
ariaLabelledby?: string;
|
|
16
|
+
ariaDescribedby?: string;
|
|
17
|
+
ariaInvalid?: boolean | 'true' | 'false';
|
|
18
|
+
ariaRequired?: boolean | 'true' | 'false';
|
|
8
19
|
size?: Size;
|
|
9
20
|
variant?: Variant;
|
|
10
21
|
rows?: number;
|
|
@@ -23,11 +34,21 @@ declare const _default: import('vue').DefineComponent<Props, {}, {}, {}, {}, imp
|
|
|
23
34
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
24
35
|
}>, {
|
|
25
36
|
disabled: boolean;
|
|
37
|
+
name: string;
|
|
26
38
|
size: Size;
|
|
39
|
+
required: boolean;
|
|
40
|
+
id: string;
|
|
27
41
|
variant: Variant;
|
|
28
42
|
modelValue: string;
|
|
29
43
|
placeholder: string;
|
|
30
44
|
readonly: boolean;
|
|
45
|
+
autocomplete: string;
|
|
46
|
+
inputmode: InputMode;
|
|
47
|
+
ariaLabel: string;
|
|
48
|
+
ariaLabelledby: string;
|
|
49
|
+
ariaDescribedby: string;
|
|
50
|
+
ariaInvalid: boolean | "true" | "false";
|
|
51
|
+
ariaRequired: boolean | "true" | "false";
|
|
31
52
|
rows: number;
|
|
32
53
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
33
54
|
export default _default;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codemonster-ru/vueforge",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.87.0",
|
|
4
4
|
"description": "Open source UI components for Vue.js.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Kirill Kolesnikov",
|
|
@@ -82,3 +82,5 @@
|
|
|
82
82
|
"@codemonster-ru/floater.js": "^1.0.8"
|
|
83
83
|
}
|
|
84
84
|
}
|
|
85
|
+
|
|
86
|
+
|