@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
|
@@ -83,12 +83,12 @@ const emits = {
|
|
|
83
83
|
"update:modelValue": null
|
|
84
84
|
};
|
|
85
85
|
|
|
86
|
-
var _sfc_main = /* @__PURE__ */ vue.defineComponent({
|
|
86
|
+
var _sfc_main$1 = /* @__PURE__ */ vue.defineComponent({
|
|
87
87
|
...{
|
|
88
88
|
name: "VkfCardInputCollection",
|
|
89
89
|
inheritAttrs: false
|
|
90
90
|
},
|
|
91
|
-
__name: "
|
|
91
|
+
__name: "core",
|
|
92
92
|
props: props,
|
|
93
93
|
emits,
|
|
94
94
|
setup(__props, { expose: __expose, emit: __emit }) {
|
|
@@ -320,7 +320,23 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
320
320
|
/* FORWARDED */
|
|
321
321
|
});
|
|
322
322
|
}
|
|
323
|
-
var
|
|
323
|
+
var Core = /* @__PURE__ */ _pluginVue_exportHelper._export_sfc(_sfc_main$1, [["render", _sfc_render], ["__file", "/home/runner/work/private-vunk-form/private-vunk-form/packages/components/card-input-collection/src/core.vue"]]);
|
|
324
|
+
|
|
325
|
+
var _sfc_main = vue.defineComponent({
|
|
326
|
+
props,
|
|
327
|
+
emits,
|
|
328
|
+
setup(props2, { slots, emit }) {
|
|
329
|
+
return () => vue.h(Core, {
|
|
330
|
+
...props2,
|
|
331
|
+
"onUpdate:modelValue": (e) => emit("update:modelValue", e)
|
|
332
|
+
}, {
|
|
333
|
+
...props2.slots,
|
|
334
|
+
...slots
|
|
335
|
+
});
|
|
336
|
+
}
|
|
337
|
+
});
|
|
338
|
+
|
|
339
|
+
var VkfCardInputCollection = /* @__PURE__ */ _pluginVue_exportHelper._export_sfc(_sfc_main, [["__file", "/home/runner/work/private-vunk-form/private-vunk-form/packages/components/card-input-collection/src/index.vue"]]);
|
|
324
340
|
|
|
325
341
|
var types = /*#__PURE__*/Object.freeze({
|
|
326
342
|
__proto__: null
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { defineComponent, computed, openBlock, createBlock, withCtx, createVNode, mergeProps, createSlots, createElementBlock, createTextVNode, createCommentVNode, toDisplayString, Fragment, renderList, createElementVNode, renderSlot } from 'vue';
|
|
1
|
+
import { defineComponent, computed, openBlock, createBlock, withCtx, createVNode, mergeProps, createSlots, createElementBlock, createTextVNode, createCommentVNode, toDisplayString, Fragment, renderList, createElementVNode, renderSlot, h } from 'vue';
|
|
2
2
|
import { _VkfFormItemCtx, VkfFormItem } from '@vunk/form/components/form-item';
|
|
3
3
|
import { useComputedReadonly } from '@vunk/form/composables';
|
|
4
4
|
import { ElButton, ElCard, ElEmpty } from 'element-plus';
|
|
@@ -79,12 +79,12 @@ const emits = {
|
|
|
79
79
|
"update:modelValue": null
|
|
80
80
|
};
|
|
81
81
|
|
|
82
|
-
var _sfc_main = /* @__PURE__ */ defineComponent({
|
|
82
|
+
var _sfc_main$1 = /* @__PURE__ */ defineComponent({
|
|
83
83
|
...{
|
|
84
84
|
name: "VkfCardInputCollection",
|
|
85
85
|
inheritAttrs: false
|
|
86
86
|
},
|
|
87
|
-
__name: "
|
|
87
|
+
__name: "core",
|
|
88
88
|
props: props,
|
|
89
89
|
emits,
|
|
90
90
|
setup(__props, { expose: __expose, emit: __emit }) {
|
|
@@ -316,7 +316,23 @@ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
316
316
|
/* FORWARDED */
|
|
317
317
|
});
|
|
318
318
|
}
|
|
319
|
-
var
|
|
319
|
+
var Core = /* @__PURE__ */ _export_sfc(_sfc_main$1, [["render", _sfc_render], ["__file", "/home/runner/work/private-vunk-form/private-vunk-form/packages/components/card-input-collection/src/core.vue"]]);
|
|
320
|
+
|
|
321
|
+
var _sfc_main = defineComponent({
|
|
322
|
+
props,
|
|
323
|
+
emits,
|
|
324
|
+
setup(props2, { slots, emit }) {
|
|
325
|
+
return () => h(Core, {
|
|
326
|
+
...props2,
|
|
327
|
+
"onUpdate:modelValue": (e) => emit("update:modelValue", e)
|
|
328
|
+
}, {
|
|
329
|
+
...props2.slots,
|
|
330
|
+
...slots
|
|
331
|
+
});
|
|
332
|
+
}
|
|
333
|
+
});
|
|
334
|
+
|
|
335
|
+
var VkfCardInputCollection = /* @__PURE__ */ _export_sfc(_sfc_main, [["__file", "/home/runner/work/private-vunk-form/private-vunk-form/packages/components/card-input-collection/src/index.vue"]]);
|
|
320
336
|
|
|
321
337
|
var types = /*#__PURE__*/Object.freeze({
|
|
322
338
|
__proto__: null
|