@maltjoy/core-vue 3.19.2 → 3.19.3
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/JoyCounter/VJoyCounter.vue.d.ts +10 -0
- package/dist/components/JoyIndicators/VJoyIndicators.vue.d.ts +2 -2
- package/dist/components/JoyInput/VJoyInput.vue.d.ts +9 -0
- package/dist/components/JoySelectableItemGroup/VJoySelectableItemGroup.vue.d.ts +25 -4
- package/dist/components/JoySnackbar/VJoySnackbar.vue.d.ts +9 -5
- package/dist/components/JoyTab/TabButton.vue.d.ts +2 -2
- package/dist/components/JoyTab/VJoyTab.vue.d.ts +4 -4
- package/dist/components/JoyTabs/VJoyTabs.vue.d.ts +8 -8
- package/dist/components/JoyTextarea/VJoyTextarea.vue.d.ts +9 -0
- package/dist/composables/index.d.ts +2 -1
- package/dist/joy-vue.js +1758 -1721
- package/dist/joy-vue.umd.cjs +4 -4
- package/dist/style.css +1 -1
- package/package.json +3 -3
- package/dist/composables/props.d.ts +0 -72
- package/dist/tests/composables/test-components/CheckboxFormProps.vue.d.ts +0 -62
- package/dist/tests/composables/test-components/GenericFormProps.vue.d.ts +0 -44
- package/dist/tests/composables/test-components/GenericFormPropsWithLabel.vue.d.ts +0 -66
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@maltjoy/core-vue",
|
|
3
|
-
"version": "3.19.
|
|
3
|
+
"version": "3.19.3",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist",
|
|
@@ -20,8 +20,8 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@floating-ui/dom": "1.5.3",
|
|
22
22
|
"@floating-ui/vue": "^1.0.2",
|
|
23
|
-
"@maltjoy/icons": "3.19.
|
|
24
|
-
"@maltjoy/themes": "3.19.
|
|
23
|
+
"@maltjoy/icons": "3.19.3",
|
|
24
|
+
"@maltjoy/themes": "3.19.3",
|
|
25
25
|
"@vueuse/components": "^9.13.0",
|
|
26
26
|
"@vueuse/core": "^9.13.0",
|
|
27
27
|
"@vueuse/integrations": "10.5.0",
|
|
@@ -1,72 +0,0 @@
|
|
|
1
|
-
import { PropType } from 'vue';
|
|
2
|
-
/**
|
|
3
|
-
* AT THE MOMENT VUE-AUTOGEN PLUGIN FOR STORYBOOK DOES NOT SUPPORT OUT-OF-COMPONENTS PROPS DECLARATION.
|
|
4
|
-
* IT SIMPLY IGNORES IT AND PROPS ARE NOT RENDERED.
|
|
5
|
-
* WE KEEP THIS CODE ONLY IN CASE OF A MAJOR RELEASE INCLUDING THE FEATURE
|
|
6
|
-
*/
|
|
7
|
-
export declare const FORM_BASED_PROPS: {
|
|
8
|
-
disabled: {
|
|
9
|
-
type: BooleanConstructor;
|
|
10
|
-
default: boolean;
|
|
11
|
-
};
|
|
12
|
-
id: {
|
|
13
|
-
type: StringConstructor;
|
|
14
|
-
};
|
|
15
|
-
invalid: {
|
|
16
|
-
type: BooleanConstructor;
|
|
17
|
-
default: boolean;
|
|
18
|
-
};
|
|
19
|
-
name: {
|
|
20
|
-
type: StringConstructor;
|
|
21
|
-
};
|
|
22
|
-
required: {
|
|
23
|
-
type: BooleanConstructor;
|
|
24
|
-
default: boolean;
|
|
25
|
-
};
|
|
26
|
-
};
|
|
27
|
-
export declare const TEXT_BASED_PROPS: {
|
|
28
|
-
modelValue: {
|
|
29
|
-
type: StringConstructor;
|
|
30
|
-
default: string;
|
|
31
|
-
};
|
|
32
|
-
};
|
|
33
|
-
export declare const CHECKBOX_BASED_PROPS: {
|
|
34
|
-
disabled: {
|
|
35
|
-
type: BooleanConstructor;
|
|
36
|
-
default: boolean;
|
|
37
|
-
};
|
|
38
|
-
id: {
|
|
39
|
-
type: StringConstructor;
|
|
40
|
-
};
|
|
41
|
-
invalid: {
|
|
42
|
-
type: BooleanConstructor;
|
|
43
|
-
default: boolean;
|
|
44
|
-
};
|
|
45
|
-
name: {
|
|
46
|
-
type: StringConstructor;
|
|
47
|
-
};
|
|
48
|
-
required: {
|
|
49
|
-
type: BooleanConstructor;
|
|
50
|
-
default: boolean;
|
|
51
|
-
};
|
|
52
|
-
modelValue: {
|
|
53
|
-
type: BooleanConstructor;
|
|
54
|
-
default: boolean;
|
|
55
|
-
};
|
|
56
|
-
value: {
|
|
57
|
-
type: StringConstructor;
|
|
58
|
-
default: string;
|
|
59
|
-
};
|
|
60
|
-
};
|
|
61
|
-
export declare const LABEL_BASED_PROPS: {
|
|
62
|
-
label: StringConstructor;
|
|
63
|
-
labelSize: {
|
|
64
|
-
type: PropType<"small" | "large" | "medium">;
|
|
65
|
-
default: string;
|
|
66
|
-
};
|
|
67
|
-
optionalLabel: StringConstructor;
|
|
68
|
-
requiredMark: {
|
|
69
|
-
type: BooleanConstructor;
|
|
70
|
-
default: boolean;
|
|
71
|
-
};
|
|
72
|
-
};
|
|
@@ -1,62 +0,0 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{
|
|
2
|
-
disabled: {
|
|
3
|
-
type: BooleanConstructor;
|
|
4
|
-
default: boolean;
|
|
5
|
-
};
|
|
6
|
-
id: {
|
|
7
|
-
type: StringConstructor;
|
|
8
|
-
};
|
|
9
|
-
invalid: {
|
|
10
|
-
type: BooleanConstructor;
|
|
11
|
-
default: boolean;
|
|
12
|
-
};
|
|
13
|
-
name: {
|
|
14
|
-
type: StringConstructor;
|
|
15
|
-
};
|
|
16
|
-
required: {
|
|
17
|
-
type: BooleanConstructor;
|
|
18
|
-
default: boolean;
|
|
19
|
-
};
|
|
20
|
-
modelValue: {
|
|
21
|
-
type: BooleanConstructor;
|
|
22
|
-
default: boolean;
|
|
23
|
-
};
|
|
24
|
-
value: {
|
|
25
|
-
type: StringConstructor;
|
|
26
|
-
default: string;
|
|
27
|
-
};
|
|
28
|
-
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
29
|
-
disabled: {
|
|
30
|
-
type: BooleanConstructor;
|
|
31
|
-
default: boolean;
|
|
32
|
-
};
|
|
33
|
-
id: {
|
|
34
|
-
type: StringConstructor;
|
|
35
|
-
};
|
|
36
|
-
invalid: {
|
|
37
|
-
type: BooleanConstructor;
|
|
38
|
-
default: boolean;
|
|
39
|
-
};
|
|
40
|
-
name: {
|
|
41
|
-
type: StringConstructor;
|
|
42
|
-
};
|
|
43
|
-
required: {
|
|
44
|
-
type: BooleanConstructor;
|
|
45
|
-
default: boolean;
|
|
46
|
-
};
|
|
47
|
-
modelValue: {
|
|
48
|
-
type: BooleanConstructor;
|
|
49
|
-
default: boolean;
|
|
50
|
-
};
|
|
51
|
-
value: {
|
|
52
|
-
type: StringConstructor;
|
|
53
|
-
default: string;
|
|
54
|
-
};
|
|
55
|
-
}>>, {
|
|
56
|
-
required: boolean;
|
|
57
|
-
disabled: boolean;
|
|
58
|
-
invalid: boolean;
|
|
59
|
-
value: string;
|
|
60
|
-
modelValue: boolean;
|
|
61
|
-
}, {}>;
|
|
62
|
-
export default _default;
|
|
@@ -1,44 +0,0 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{
|
|
2
|
-
disabled: {
|
|
3
|
-
type: BooleanConstructor;
|
|
4
|
-
default: boolean;
|
|
5
|
-
};
|
|
6
|
-
id: {
|
|
7
|
-
type: StringConstructor;
|
|
8
|
-
};
|
|
9
|
-
invalid: {
|
|
10
|
-
type: BooleanConstructor;
|
|
11
|
-
default: boolean;
|
|
12
|
-
};
|
|
13
|
-
name: {
|
|
14
|
-
type: StringConstructor;
|
|
15
|
-
};
|
|
16
|
-
required: {
|
|
17
|
-
type: BooleanConstructor;
|
|
18
|
-
default: boolean;
|
|
19
|
-
};
|
|
20
|
-
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
21
|
-
disabled: {
|
|
22
|
-
type: BooleanConstructor;
|
|
23
|
-
default: boolean;
|
|
24
|
-
};
|
|
25
|
-
id: {
|
|
26
|
-
type: StringConstructor;
|
|
27
|
-
};
|
|
28
|
-
invalid: {
|
|
29
|
-
type: BooleanConstructor;
|
|
30
|
-
default: boolean;
|
|
31
|
-
};
|
|
32
|
-
name: {
|
|
33
|
-
type: StringConstructor;
|
|
34
|
-
};
|
|
35
|
-
required: {
|
|
36
|
-
type: BooleanConstructor;
|
|
37
|
-
default: boolean;
|
|
38
|
-
};
|
|
39
|
-
}>>, {
|
|
40
|
-
required: boolean;
|
|
41
|
-
disabled: boolean;
|
|
42
|
-
invalid: boolean;
|
|
43
|
-
}, {}>;
|
|
44
|
-
export default _default;
|
|
@@ -1,66 +0,0 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{
|
|
2
|
-
label: StringConstructor;
|
|
3
|
-
labelSize: {
|
|
4
|
-
type: import("vue").PropType<"small" | "large" | "medium">;
|
|
5
|
-
default: string;
|
|
6
|
-
};
|
|
7
|
-
optionalLabel: StringConstructor;
|
|
8
|
-
requiredMark: {
|
|
9
|
-
type: BooleanConstructor;
|
|
10
|
-
default: boolean;
|
|
11
|
-
};
|
|
12
|
-
disabled: {
|
|
13
|
-
type: BooleanConstructor;
|
|
14
|
-
default: boolean;
|
|
15
|
-
};
|
|
16
|
-
id: {
|
|
17
|
-
type: StringConstructor;
|
|
18
|
-
};
|
|
19
|
-
invalid: {
|
|
20
|
-
type: BooleanConstructor;
|
|
21
|
-
default: boolean;
|
|
22
|
-
};
|
|
23
|
-
name: {
|
|
24
|
-
type: StringConstructor;
|
|
25
|
-
};
|
|
26
|
-
required: {
|
|
27
|
-
type: BooleanConstructor;
|
|
28
|
-
default: boolean;
|
|
29
|
-
};
|
|
30
|
-
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
31
|
-
label: StringConstructor;
|
|
32
|
-
labelSize: {
|
|
33
|
-
type: import("vue").PropType<"small" | "large" | "medium">;
|
|
34
|
-
default: string;
|
|
35
|
-
};
|
|
36
|
-
optionalLabel: StringConstructor;
|
|
37
|
-
requiredMark: {
|
|
38
|
-
type: BooleanConstructor;
|
|
39
|
-
default: boolean;
|
|
40
|
-
};
|
|
41
|
-
disabled: {
|
|
42
|
-
type: BooleanConstructor;
|
|
43
|
-
default: boolean;
|
|
44
|
-
};
|
|
45
|
-
id: {
|
|
46
|
-
type: StringConstructor;
|
|
47
|
-
};
|
|
48
|
-
invalid: {
|
|
49
|
-
type: BooleanConstructor;
|
|
50
|
-
default: boolean;
|
|
51
|
-
};
|
|
52
|
-
name: {
|
|
53
|
-
type: StringConstructor;
|
|
54
|
-
};
|
|
55
|
-
required: {
|
|
56
|
-
type: BooleanConstructor;
|
|
57
|
-
default: boolean;
|
|
58
|
-
};
|
|
59
|
-
}>>, {
|
|
60
|
-
required: boolean;
|
|
61
|
-
disabled: boolean;
|
|
62
|
-
invalid: boolean;
|
|
63
|
-
labelSize: "small" | "large" | "medium";
|
|
64
|
-
requiredMark: boolean;
|
|
65
|
-
}, {}>;
|
|
66
|
-
export default _default;
|