@maltjoy/core-vue 1.0.0-beta.1 → 1.0.0-beta.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/README.md +1 -0
- package/dist/components/JoyBadge/JoyBadge.types.d.ts +2 -0
- package/dist/components/JoyBadge/VJoyBadge.vue.d.ts +43 -0
- package/dist/components/JoyButton/JoyButton.types.d.ts +0 -4
- package/dist/components/JoyButton/VJoyButton.vue.d.ts +2 -15
- package/dist/components/JoyCheckbox/VJoyCheckbox.vue.d.ts +24 -1
- package/dist/components/JoyCounter/VJoyCounter.vue.d.ts +6 -6
- package/dist/components/JoyDropdown/JoyDropdown.types.d.ts +4 -0
- package/dist/components/JoyDropdown/VJoyDropdown.vue.d.ts +180 -0
- package/dist/components/JoyDropdownList/JoyDropdownList.types.d.ts +3 -0
- package/dist/components/JoyDropdownList/VJoyDropdownList.vue.d.ts +84 -0
- package/dist/components/JoyHighlight/JoyHighlight.types.d.ts +1 -1
- package/dist/components/JoyHighlight/VJoyHighlight.vue.d.ts +3 -3
- package/dist/components/JoyInput/VJoyInput.vue.d.ts +4 -4
- package/dist/components/JoyLabel/VJoyLabel.vue.d.ts +3 -3
- package/dist/components/JoyMultiCheckbox/VJoyMultiCheckbox.vue.d.ts +11 -4
- package/dist/components/JoySelect/VJoySelect.vue.d.ts +4 -4
- package/dist/components/JoySelectableItem/VJoySelectableItem.vue.d.ts +2 -2
- package/dist/components/JoySelectableItemGroup/VJoySelectableItemGroup.vue.d.ts +4 -4
- package/dist/components/JoyTextarea/VJoyTextarea.vue.d.ts +4 -4
- package/dist/components/JoyToggle/VJoyToggle.vue.d.ts +1 -1
- package/dist/components/JoyWrapper/VJoyWrapper.vue.d.ts +2 -2
- package/dist/components/index.d.ts +4 -1
- package/dist/composables/events.d.ts +5 -0
- package/dist/composables/index.d.ts +1 -0
- package/dist/composables/props.d.ts +1 -1
- package/dist/joy-vue.js +1627 -599
- package/dist/joy-vue.umd.cjs +1 -1
- package/dist/style.css +1 -1
- package/dist/tests/composables/test-components/CheckboxFormProps.vue.d.ts +1 -1
- package/dist/tests/composables/test-components/GenericFormPropsWithLabel.vue.d.ts +3 -3
- package/joy-components.d.ts +27 -24
- package/package.json +19 -15
|
@@ -39,7 +39,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
39
39
|
};
|
|
40
40
|
label: StringConstructor;
|
|
41
41
|
labelSize: {
|
|
42
|
-
type: PropType<"small" | "
|
|
42
|
+
type: PropType<"small" | "medium" | "large">;
|
|
43
43
|
default: string;
|
|
44
44
|
};
|
|
45
45
|
optionalLabel: StringConstructor;
|
|
@@ -74,7 +74,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
74
74
|
};
|
|
75
75
|
label: StringConstructor;
|
|
76
76
|
labelSize: {
|
|
77
|
-
type: PropType<"small" | "
|
|
77
|
+
type: PropType<"small" | "medium" | "large">;
|
|
78
78
|
default: string;
|
|
79
79
|
};
|
|
80
80
|
optionalLabel: StringConstructor;
|
|
@@ -87,9 +87,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
87
87
|
}, {
|
|
88
88
|
value: string | unknown[];
|
|
89
89
|
required: boolean;
|
|
90
|
-
|
|
90
|
+
multiple: boolean;
|
|
91
|
+
labelSize: "small" | "medium" | "large";
|
|
91
92
|
requiredMark: boolean;
|
|
92
93
|
fullWidth: boolean;
|
|
93
|
-
multiple: boolean;
|
|
94
94
|
}>;
|
|
95
95
|
export default _default;
|
|
@@ -20,7 +20,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
20
20
|
};
|
|
21
21
|
label: StringConstructor;
|
|
22
22
|
labelSize: {
|
|
23
|
-
type: PropType<"small" | "
|
|
23
|
+
type: PropType<"small" | "medium" | "large">;
|
|
24
24
|
default: string;
|
|
25
25
|
};
|
|
26
26
|
optionalLabel: StringConstructor;
|
|
@@ -70,7 +70,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
70
70
|
};
|
|
71
71
|
label: StringConstructor;
|
|
72
72
|
labelSize: {
|
|
73
|
-
type: PropType<"small" | "
|
|
73
|
+
type: PropType<"small" | "medium" | "large">;
|
|
74
74
|
default: string;
|
|
75
75
|
};
|
|
76
76
|
optionalLabel: StringConstructor;
|
|
@@ -98,10 +98,10 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
98
98
|
}, {
|
|
99
99
|
disabled: boolean;
|
|
100
100
|
required: boolean;
|
|
101
|
+
modelValue: string;
|
|
101
102
|
invalid: boolean;
|
|
102
|
-
labelSize: "small" | "
|
|
103
|
+
labelSize: "small" | "medium" | "large";
|
|
103
104
|
requiredMark: boolean;
|
|
104
|
-
modelValue: string;
|
|
105
105
|
autogrow: boolean;
|
|
106
106
|
}>, {
|
|
107
107
|
default: (_: {}) => any;
|
|
@@ -34,10 +34,10 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
34
34
|
default: string;
|
|
35
35
|
};
|
|
36
36
|
}>>, {
|
|
37
|
+
align: "flex-end" | "stretch" | "center" | "flex-start";
|
|
37
38
|
direction: "column" | "row";
|
|
38
|
-
wrap: "nowrap" | "wrap";
|
|
39
39
|
justify: "flex-end" | "center" | "space-between" | "flex-start";
|
|
40
|
-
|
|
40
|
+
wrap: "nowrap" | "wrap";
|
|
41
41
|
}>, {
|
|
42
42
|
default: (_: {}) => any;
|
|
43
43
|
}>;
|
|
@@ -1,6 +1,9 @@
|
|
|
1
|
+
import VJoyBadge from '@/components/JoyBadge/VJoyBadge.vue';
|
|
1
2
|
import VJoyButton from '@/components/JoyButton/VJoyButton.vue';
|
|
2
3
|
import VJoyCheckbox from '@/components/JoyCheckbox/VJoyCheckbox.vue';
|
|
3
4
|
import VJoyCounter from '@/components/JoyCounter/VJoyCounter.vue';
|
|
5
|
+
import VJoyDropdown from '@/components/JoyDropdown/VJoyDropdown.vue';
|
|
6
|
+
import VJoyDropdownList from '@/components/JoyDropdownList/VJoyDropdownList.vue';
|
|
4
7
|
import VJoyFormError from '@/components/JoyFormError/VJoyFormError.vue';
|
|
5
8
|
import VJoyHighlight from '@/components/JoyHighlight/VJoyHighlight.vue';
|
|
6
9
|
import VJoyInput from '@/components/JoyInput/VJoyInput.vue';
|
|
@@ -19,4 +22,4 @@ import VJoyWrapper from '@/components/JoyWrapper/VJoyWrapper.vue';
|
|
|
19
22
|
import VJoyTemplate from '@/components/JoyTemplate/VJoyTemplate.vue';
|
|
20
23
|
import VJoyTextarea from '@/components/JoyTextarea/VJoyTextarea.vue';
|
|
21
24
|
import VJoyToggle from '@/components/JoyToggle/VJoyToggle.vue';
|
|
22
|
-
export { VJoyButton, VJoyCheckbox, VJoyCounter, VJoyFormError, VJoyHighlight, VJoyInput, VJoyLabel, VJoyLink, VJoyMultiCheckbox, VJoyPanel, VJoyPanelSection, VJoyRadio, VJoyRadioGroup, VJoySelect, VJoySelectableItem, VJoySelectableItemGroup, VJoySpinner, VJoyTemplate, VJoyTextarea, VJoyToggle, VJoyWrapper, };
|
|
25
|
+
export { VJoyBadge, VJoyButton, VJoyCheckbox, VJoyCounter, VJoyDropdown, VJoyDropdownList, VJoyFormError, VJoyHighlight, VJoyInput, VJoyLabel, VJoyLink, VJoyMultiCheckbox, VJoyPanel, VJoyPanelSection, VJoyRadio, VJoyRadioGroup, VJoySelect, VJoySelectableItem, VJoySelectableItemGroup, VJoySpinner, VJoyTemplate, VJoyTextarea, VJoyToggle, VJoyWrapper, };
|
|
@@ -61,7 +61,7 @@ export declare const CHECKBOX_BASED_PROPS: {
|
|
|
61
61
|
export declare const LABEL_BASED_PROPS: {
|
|
62
62
|
label: StringConstructor;
|
|
63
63
|
labelSize: {
|
|
64
|
-
type: PropType<"small" | "
|
|
64
|
+
type: PropType<"small" | "medium" | "large">;
|
|
65
65
|
default: string;
|
|
66
66
|
};
|
|
67
67
|
optionalLabel: StringConstructor;
|