@maltjoy/core-vue 3.6.2 → 3.7.1
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/App.vue.d.ts +1 -1
- package/dist/components/JoyBadge/VJoyBadge.vue.d.ts +1 -1
- package/dist/components/JoyButton/VJoyButton.vue.d.ts +1 -1
- package/dist/components/JoyCheckbox/VJoyCheckbox.vue.d.ts +1 -1
- package/dist/components/JoyCounter/VJoyCounter.vue.d.ts +19 -64
- package/dist/components/JoyDropdown/VJoyDropdown.vue.d.ts +1 -1
- package/dist/components/JoyDropdownList/VJoyDropdownList.vue.d.ts +1 -1
- package/dist/components/JoyFormError/VJoyFormError.vue.d.ts +1 -1
- package/dist/components/JoyHighlight/VJoyHighlight.vue.d.ts +1 -1
- package/dist/components/JoyIcon/VJoyIcon.vue.d.ts +1 -1
- package/dist/components/JoyInput/VJoyInput.vue.d.ts +1 -1
- package/dist/components/JoyLabel/VJoyLabel.vue.d.ts +1 -1
- package/dist/components/JoyLink/VJoyLink.vue.d.ts +1 -1
- package/dist/components/JoyMultiCheckbox/VJoyMultiCheckbox.vue.d.ts +1 -1
- package/dist/components/JoyPanel/VJoyPanel.vue.d.ts +1 -1
- package/dist/components/JoyPanelSection/VJoyPanelSection.vue.d.ts +1 -1
- package/dist/components/JoyRadio/VJoyRadio.vue.d.ts +1 -1
- package/dist/components/JoyRadioGroup/VJoyRadioGroup.vue.d.ts +1 -1
- package/dist/components/JoyScreenLoader/VJoyScreenLoader.vue.d.ts +1 -1
- package/dist/components/JoySelect/VJoySelect.vue.d.ts +1 -1
- package/dist/components/JoySelectableItem/VJoySelectableItem.vue.d.ts +1 -1
- package/dist/components/JoySelectableItemGroup/VJoySelectableItemGroup.vue.d.ts +1 -1
- package/dist/components/JoySpinner/VJoySpinner.vue.d.ts +1 -1
- package/dist/components/JoyTemplate/VJoyTemplate.vue.d.ts +1 -1
- package/dist/components/JoyTextarea/VJoyTextarea.vue.d.ts +1 -1
- package/dist/components/JoyToggle/VJoyToggle.vue.d.ts +1 -1
- package/dist/components/JoyWrapper/VJoyWrapper.vue.d.ts +1 -1
- package/dist/joy-vue.js +111 -111
- package/dist/joy-vue.umd.cjs +1 -1
- package/dist/tests/composables/test-components/CheckboxFormProps.vue.d.ts +1 -1
- package/dist/tests/composables/test-components/GenericFormProps.vue.d.ts +1 -1
- package/dist/tests/composables/test-components/GenericFormPropsWithLabel.vue.d.ts +1 -1
- package/package.json +6 -6
package/dist/App.vue.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
|
|
2
2
|
export default _default;
|
|
@@ -103,7 +103,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
103
103
|
required: boolean;
|
|
104
104
|
indeterminate: boolean;
|
|
105
105
|
displayFocus: boolean;
|
|
106
|
-
}>, {
|
|
106
|
+
}, {}>, {
|
|
107
107
|
default: (_: {}) => any;
|
|
108
108
|
'checkbox-content': (_: {}) => any;
|
|
109
109
|
}>;
|
|
@@ -62,69 +62,24 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
62
62
|
type: StringConstructor;
|
|
63
63
|
};
|
|
64
64
|
}, {
|
|
65
|
-
props:
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
default: boolean;
|
|
84
|
-
};
|
|
85
|
-
/** Display a label on top of the element. */
|
|
86
|
-
label: StringConstructor;
|
|
87
|
-
/** Overrides the default label size. See JoyLabel stories */
|
|
88
|
-
labelSize: {
|
|
89
|
-
type: PropType<"small" | "medium" | "large">;
|
|
90
|
-
default: string;
|
|
91
|
-
};
|
|
92
|
-
/** If your component is not required, we can add a label to explicitely tell that it's not mandatory */
|
|
93
|
-
optionalLabel: StringConstructor;
|
|
94
|
-
/** Depending on context, we can add a "*" after the label to specify it's mandatory. */
|
|
95
|
-
requiredMark: {
|
|
96
|
-
type: BooleanConstructor;
|
|
97
|
-
default: boolean;
|
|
98
|
-
};
|
|
99
|
-
/** Used for aria-label. */
|
|
100
|
-
labelDecrement: {
|
|
101
|
-
type: StringConstructor;
|
|
102
|
-
};
|
|
103
|
-
/** Used for aria-label. */
|
|
104
|
-
labelIncrement: {
|
|
105
|
-
type: StringConstructor;
|
|
106
|
-
};
|
|
107
|
-
max: {
|
|
108
|
-
type: NumberConstructor;
|
|
109
|
-
};
|
|
110
|
-
min: {
|
|
111
|
-
type: NumberConstructor;
|
|
112
|
-
default: number;
|
|
113
|
-
};
|
|
114
|
-
modelValue: {
|
|
115
|
-
type: NumberConstructor;
|
|
116
|
-
default: number;
|
|
117
|
-
};
|
|
118
|
-
/** In order to increment or decrement by given steps. For non-integer values, don't use comma */
|
|
119
|
-
step: {
|
|
120
|
-
type: NumberConstructor;
|
|
121
|
-
default: number;
|
|
122
|
-
};
|
|
123
|
-
/** When given, it renders a JoyFormError element */
|
|
124
|
-
errorMessage: {
|
|
125
|
-
type: StringConstructor;
|
|
126
|
-
};
|
|
127
|
-
}>>;
|
|
65
|
+
props: {
|
|
66
|
+
readonly disabled: boolean;
|
|
67
|
+
readonly required: boolean;
|
|
68
|
+
readonly modelValue: number;
|
|
69
|
+
readonly min: number;
|
|
70
|
+
readonly step: number;
|
|
71
|
+
readonly invalid: boolean;
|
|
72
|
+
readonly labelSize: "small" | "medium" | "large";
|
|
73
|
+
readonly requiredMark: boolean;
|
|
74
|
+
readonly id?: string | undefined;
|
|
75
|
+
readonly label?: string | undefined;
|
|
76
|
+
readonly name?: string | undefined;
|
|
77
|
+
readonly max?: number | undefined;
|
|
78
|
+
readonly optionalLabel?: string | undefined;
|
|
79
|
+
readonly labelDecrement?: string | undefined;
|
|
80
|
+
readonly labelIncrement?: string | undefined;
|
|
81
|
+
readonly errorMessage?: string | undefined;
|
|
82
|
+
};
|
|
128
83
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
129
84
|
"update:modelValue": (value: number) => void;
|
|
130
85
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
@@ -200,7 +155,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
200
155
|
invalid: boolean;
|
|
201
156
|
labelSize: "small" | "medium" | "large";
|
|
202
157
|
requiredMark: boolean;
|
|
203
|
-
}>, {
|
|
158
|
+
}, {}>, {
|
|
204
159
|
default: (_: {}) => any;
|
|
205
160
|
}>;
|
|
206
161
|
export default _default;
|
|
@@ -175,7 +175,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
175
175
|
direction: "down" | "up";
|
|
176
176
|
justify: "left" | "right";
|
|
177
177
|
dropdownGap: string;
|
|
178
|
-
}>, {
|
|
178
|
+
}, {}>, {
|
|
179
179
|
'dropdown-button': (_: {}) => any;
|
|
180
180
|
'dropdown-header': (_: {}) => any;
|
|
181
181
|
'dropdown-items': (_: {}) => any;
|
|
@@ -79,7 +79,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
79
79
|
options: Option[];
|
|
80
80
|
width: string;
|
|
81
81
|
height: string;
|
|
82
|
-
}>, {
|
|
82
|
+
}, {}>, {
|
|
83
83
|
'dropdown-list-header': (_: {}) => any;
|
|
84
84
|
'dropdown-list-items': (_: {}) => any;
|
|
85
85
|
label: (_: Option) => any;
|
|
@@ -40,7 +40,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
40
40
|
accent: boolean;
|
|
41
41
|
displayIcon: boolean;
|
|
42
42
|
level: "info" | "error" | "warning" | "neutral" | "success";
|
|
43
|
-
}>, {
|
|
43
|
+
}, {}>, {
|
|
44
44
|
'highlight-title': (_: {}) => any;
|
|
45
45
|
default: (_: {}) => any;
|
|
46
46
|
}>;
|
|
@@ -28,5 +28,5 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
28
28
|
}>>, {
|
|
29
29
|
color: "primary" | "secondary" | "tertiary" | "quaternary" | "info" | "error" | "white" | "warning" | "neutral" | "success" | "brand-primary" | "brand-secondary";
|
|
30
30
|
size: "small" | "xsmall" | "xxsmall" | "medium" | "large" | "xlarge";
|
|
31
|
-
}>;
|
|
31
|
+
}, {}>;
|
|
32
32
|
export default _default;
|
|
@@ -120,7 +120,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
120
120
|
labelSize: "small" | "medium" | "large";
|
|
121
121
|
requiredMark: boolean;
|
|
122
122
|
clearable: boolean;
|
|
123
|
-
}>, {
|
|
123
|
+
}, {}>, {
|
|
124
124
|
default: (_: {}) => any;
|
|
125
125
|
}>;
|
|
126
126
|
export default _default;
|
|
@@ -73,7 +73,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
73
73
|
required: boolean;
|
|
74
74
|
labelSize: "small" | "medium" | "large";
|
|
75
75
|
requiredMark: boolean;
|
|
76
|
-
}>, {
|
|
76
|
+
}, {}>, {
|
|
77
77
|
checkbox: (_: Option) => any;
|
|
78
78
|
}>;
|
|
79
79
|
export default _default;
|
|
@@ -58,7 +58,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
58
58
|
padding: PanelSizes;
|
|
59
59
|
titleSize: PanelTitleSizes;
|
|
60
60
|
loadingColor: "dark" | "light";
|
|
61
|
-
}>, {
|
|
61
|
+
}, {}>, {
|
|
62
62
|
'panel-title': (_: {}) => any;
|
|
63
63
|
'panel-title-action': (_: {}) => any;
|
|
64
64
|
'panel-subtitle': (_: {}) => any;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>, {
|
|
1
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>, {
|
|
2
2
|
'panel-section-title': (_: {}) => any;
|
|
3
3
|
'panel-section-content': (_: {}) => any;
|
|
4
4
|
}>;
|
|
@@ -71,7 +71,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
71
71
|
required: boolean;
|
|
72
72
|
invalid: boolean;
|
|
73
73
|
theme: "default" | "outline";
|
|
74
|
-
}>, {
|
|
74
|
+
}, {}>, {
|
|
75
75
|
default: (_: {}) => any;
|
|
76
76
|
'radio-content': (_: {}) => any;
|
|
77
77
|
'expandable-content': (_: {}) => any;
|
|
@@ -76,7 +76,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
76
76
|
invalid: boolean;
|
|
77
77
|
labelSize: "small" | "medium" | "large";
|
|
78
78
|
requiredMark: boolean;
|
|
79
|
-
}>, {
|
|
79
|
+
}, {}>, {
|
|
80
80
|
'select-label': (_: {}) => any;
|
|
81
81
|
default: (_: {}) => any;
|
|
82
82
|
}>;
|
|
@@ -38,7 +38,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
38
38
|
loadingColor: "dark" | "light";
|
|
39
39
|
full: boolean;
|
|
40
40
|
sidebar: "left" | "right";
|
|
41
|
-
}>, {
|
|
41
|
+
}, {}>, {
|
|
42
42
|
'template-back': (_: {}) => any;
|
|
43
43
|
'template-title': (_: {}) => any;
|
|
44
44
|
'template-subtitle': (_: {}) => any;
|
|
@@ -103,7 +103,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
103
103
|
labelSize: "small" | "medium" | "large";
|
|
104
104
|
requiredMark: boolean;
|
|
105
105
|
autogrow: boolean;
|
|
106
|
-
}>, {
|
|
106
|
+
}, {}>, {
|
|
107
107
|
default: (_: {}) => any;
|
|
108
108
|
}>;
|
|
109
109
|
export default _default;
|