@vuecs/forms 5.2.2 → 5.2.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/form-checkbox/FormCheckbox.vue.d.ts +19 -19
- package/dist/components/form-checkbox-group/FormCheckboxGroup.vue.d.ts +13 -13
- package/dist/components/form-group/FormGroup.vue.d.ts +29 -29
- package/dist/components/form-input/FormInput.vue.d.ts +14 -14
- package/dist/components/form-number/FormNumber.vue.d.ts +29 -29
- package/dist/components/form-pin/FormPin.vue.d.ts +18 -18
- package/dist/components/form-radio/FormRadio.vue.d.ts +12 -12
- package/dist/components/form-radio-group/FormRadioGroup.vue.d.ts +17 -17
- package/dist/components/form-select/FormSelect.vue.d.ts +17 -17
- package/dist/components/form-select/FormSelect.vue.d.ts.map +1 -1
- package/dist/components/form-select-search/FormSelectSearch.vue.d.ts +38 -38
- package/dist/components/form-select-search/FormSelectSearchEntry.vue.d.ts +1 -1
- package/dist/components/form-select-search/FormSelectSearchEntry.vue.d.ts.map +1 -1
- package/dist/components/form-slider/FormSlider.vue.d.ts +15 -15
- package/dist/components/form-switch/FormSwitch.vue.d.ts +20 -20
- package/dist/components/form-tags/FormTags.vue.d.ts +21 -21
- package/dist/components/form-textarea/FormTextarea.vue.d.ts +7 -7
- package/dist/components/validation-group/ValidationGroup.vue.d.ts +9 -9
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +3 -3
|
@@ -49,7 +49,7 @@ declare const validationGroupProps: {
|
|
|
49
49
|
*/
|
|
50
50
|
severity: {
|
|
51
51
|
type: PropType<ValidationGroupSeverity>;
|
|
52
|
-
default:
|
|
52
|
+
default: undefined;
|
|
53
53
|
};
|
|
54
54
|
/** Validation messages — keyed object or ordered array of `{ key, value }`. */
|
|
55
55
|
messages: {
|
|
@@ -64,12 +64,12 @@ declare const validationGroupProps: {
|
|
|
64
64
|
/** Theme-class overrides for this component instance. */
|
|
65
65
|
themeClass: {
|
|
66
66
|
type: PropType<ThemeClassesOverride<ValidationGroupThemeClasses>>;
|
|
67
|
-
default:
|
|
67
|
+
default: undefined;
|
|
68
68
|
};
|
|
69
69
|
/** Theme variant values for this component instance. */
|
|
70
70
|
themeVariant: {
|
|
71
71
|
type: PropType<VariantValues>;
|
|
72
|
-
default:
|
|
72
|
+
default: undefined;
|
|
73
73
|
};
|
|
74
74
|
};
|
|
75
75
|
export type ValidationGroupProps = ExtractPublicPropTypes<typeof validationGroupProps>;
|
|
@@ -91,7 +91,7 @@ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractP
|
|
|
91
91
|
*/
|
|
92
92
|
severity: {
|
|
93
93
|
type: PropType<ValidationGroupSeverity>;
|
|
94
|
-
default:
|
|
94
|
+
default: undefined;
|
|
95
95
|
};
|
|
96
96
|
/** Validation messages — keyed object or ordered array of `{ key, value }`. */
|
|
97
97
|
messages: {
|
|
@@ -106,12 +106,12 @@ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractP
|
|
|
106
106
|
/** Theme-class overrides for this component instance. */
|
|
107
107
|
themeClass: {
|
|
108
108
|
type: PropType<ThemeClassesOverride<ValidationGroupThemeClasses>>;
|
|
109
|
-
default:
|
|
109
|
+
default: undefined;
|
|
110
110
|
};
|
|
111
111
|
/** Theme variant values for this component instance. */
|
|
112
112
|
themeVariant: {
|
|
113
113
|
type: PropType<VariantValues>;
|
|
114
|
-
default:
|
|
114
|
+
default: undefined;
|
|
115
115
|
};
|
|
116
116
|
}>, () => VNodeChild, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
117
117
|
/**
|
|
@@ -129,7 +129,7 @@ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractP
|
|
|
129
129
|
*/
|
|
130
130
|
severity: {
|
|
131
131
|
type: PropType<ValidationGroupSeverity>;
|
|
132
|
-
default:
|
|
132
|
+
default: undefined;
|
|
133
133
|
};
|
|
134
134
|
/** Validation messages — keyed object or ordered array of `{ key, value }`. */
|
|
135
135
|
messages: {
|
|
@@ -144,12 +144,12 @@ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractP
|
|
|
144
144
|
/** Theme-class overrides for this component instance. */
|
|
145
145
|
themeClass: {
|
|
146
146
|
type: PropType<ThemeClassesOverride<ValidationGroupThemeClasses>>;
|
|
147
|
-
default:
|
|
147
|
+
default: undefined;
|
|
148
148
|
};
|
|
149
149
|
/** Theme variant values for this component instance. */
|
|
150
150
|
themeVariant: {
|
|
151
151
|
type: PropType<VariantValues>;
|
|
152
|
-
default:
|
|
152
|
+
default: undefined;
|
|
153
153
|
};
|
|
154
154
|
}>> & Readonly<{}>, {
|
|
155
155
|
severity: ValidationGroupSeverity;
|
package/dist/index.mjs
CHANGED
|
@@ -1090,7 +1090,7 @@ function _sfc_render$1(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
1090
1090
|
return renderSlot(_ctx.$slots, "default", {
|
|
1091
1091
|
entry: _ctx.entry,
|
|
1092
1092
|
active: _ctx.active
|
|
1093
|
-
}, () => [createTextVNode(toDisplayString(_ctx.entry
|
|
1093
|
+
}, () => [createTextVNode(toDisplayString(_ctx.entry?.label), 1)]);
|
|
1094
1094
|
}
|
|
1095
1095
|
var FormSelectSearchEntry_default = /* @__PURE__ */ _plugin_vue_export_helper_default(FormSelectSearchEntry_vue_vue_type_script_lang_default, [["render", _sfc_render$1]]);
|
|
1096
1096
|
//#endregion
|