3h1-ui 3.0.0-next.217 → 3.0.0-next.219
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/es/index.js +4 -2
- package/lib/index.js +4 -2
- package/package.json +1 -1
package/es/index.js
CHANGED
|
@@ -11986,9 +11986,11 @@ const FormItem$2 = /* @__PURE__ */ defineComponent({
|
|
|
11986
11986
|
if (!renderComponentContent) {
|
|
11987
11987
|
return createVNode(Comp, mergeProps({
|
|
11988
11988
|
"ref": (_b = unref(componentsPropsRef)) == null ? void 0 : _b.useRef
|
|
11989
|
-
}, compAttr, {
|
|
11989
|
+
}, omit$1(compAttr, "slots"), {
|
|
11990
11990
|
"onInput": handleInput
|
|
11991
|
-
}),
|
|
11991
|
+
}), {
|
|
11992
|
+
...pick$1(compAttr, "slots") ?? {}
|
|
11993
|
+
});
|
|
11992
11994
|
}
|
|
11993
11995
|
const compSlot = isFunction$5(renderComponentContent) ? {
|
|
11994
11996
|
...renderComponentContent(unref(getValues))
|
package/lib/index.js
CHANGED
|
@@ -12010,9 +12010,11 @@ const FormItem$2 = /* @__PURE__ */ vue.defineComponent({
|
|
|
12010
12010
|
if (!renderComponentContent) {
|
|
12011
12011
|
return vue.createVNode(Comp, vue.mergeProps({
|
|
12012
12012
|
"ref": (_b = vue.unref(componentsPropsRef)) == null ? void 0 : _b.useRef
|
|
12013
|
-
}, compAttr, {
|
|
12013
|
+
}, omit$1(compAttr, "slots"), {
|
|
12014
12014
|
"onInput": handleInput
|
|
12015
|
-
}),
|
|
12015
|
+
}), {
|
|
12016
|
+
...pick$1(compAttr, "slots") ?? {}
|
|
12017
|
+
});
|
|
12016
12018
|
}
|
|
12017
12019
|
const compSlot = utils$1.isFunction(renderComponentContent) ? {
|
|
12018
12020
|
...renderComponentContent(vue.unref(getValues))
|