@vunk/form 2.14.13 → 2.14.14
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/components/card-input-collection/index.cjs +19 -3
- package/components/card-input-collection/index.mjs +20 -4
- package/components/card-input-collection/src/core.vue.d.ts +1100 -0
- package/components/card-input-collection/src/index.vue.d.ts +9 -825
- package/components/card-input-collection/src/types.d.ts +1 -1
- package/components/dialog-input-collection/src/dialog-form.vue.d.ts +1 -1
- package/components/dialog-input-collection/src/index.vue.d.ts +1 -1
- package/components/form-item/index.cjs +4 -1
- package/components/form-item/index.css +3 -0
- package/components/form-item/index.mjs +4 -1
- package/index.css +3 -0
- package/package.json +1 -1
|
@@ -1774,9 +1774,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
1774
1774
|
visible: boolean;
|
|
1775
1775
|
modelValue: Record<string, any>;
|
|
1776
1776
|
formItems: unknown[];
|
|
1777
|
+
title: string;
|
|
1777
1778
|
dialogFormProps: Record<string, any>;
|
|
1778
1779
|
validateCatch: AnyFunc;
|
|
1779
|
-
title: string;
|
|
1780
1780
|
openReset: boolean;
|
|
1781
1781
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
1782
1782
|
export default _default;
|
|
@@ -2860,9 +2860,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
2860
2860
|
visible: boolean;
|
|
2861
2861
|
modelValue: Record<string, any>;
|
|
2862
2862
|
formItems: unknown[];
|
|
2863
|
+
title: string;
|
|
2863
2864
|
dialogFormProps: Record<string, any>;
|
|
2864
2865
|
validateCatch: import("@vunk/shared").AnyFunc;
|
|
2865
|
-
title: string;
|
|
2866
2866
|
openReset: boolean;
|
|
2867
2867
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
2868
2868
|
TemplatesLayout: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
@@ -95,7 +95,10 @@ var _sfc_main$1 = /* @__PURE__ */ vue.defineComponent({
|
|
|
95
95
|
}
|
|
96
96
|
});
|
|
97
97
|
|
|
98
|
-
const _hoisted_1 = {
|
|
98
|
+
const _hoisted_1 = {
|
|
99
|
+
key: 0,
|
|
100
|
+
class: "vkf-form-item-label__span"
|
|
101
|
+
};
|
|
99
102
|
const _hoisted_2 = {
|
|
100
103
|
key: 2,
|
|
101
104
|
class: "vkf-form-item-label__actions"
|
|
@@ -91,7 +91,10 @@ var _sfc_main$1 = /* @__PURE__ */ defineComponent({
|
|
|
91
91
|
}
|
|
92
92
|
});
|
|
93
93
|
|
|
94
|
-
const _hoisted_1 = {
|
|
94
|
+
const _hoisted_1 = {
|
|
95
|
+
key: 0,
|
|
96
|
+
class: "vkf-form-item-label__span"
|
|
97
|
+
};
|
|
95
98
|
const _hoisted_2 = {
|
|
96
99
|
key: 2,
|
|
97
100
|
class: "vkf-form-item-label__actions"
|
package/index.css
CHANGED