3h1-ui 3.0.0-next.214 → 3.0.0-next.215
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 +3 -2
- package/lib/index.js +3 -2
- package/package.json +1 -1
package/es/index.js
CHANGED
|
@@ -42942,7 +42942,7 @@ const Descriptions = /* @__PURE__ */ defineComponent({
|
|
|
42942
42942
|
componentProps: comProps,
|
|
42943
42943
|
component
|
|
42944
42944
|
} = item;
|
|
42945
|
-
const componentProps = isFunction$5(comProps) ? comProps() : comProps;
|
|
42945
|
+
const componentProps = isFunction$5(comProps) ? comProps({}) : comProps;
|
|
42946
42946
|
const {
|
|
42947
42947
|
data,
|
|
42948
42948
|
summaryTotalFields
|
|
@@ -43123,10 +43123,11 @@ const Descriptions = /* @__PURE__ */ defineComponent({
|
|
|
43123
43123
|
if (!isIfShow)
|
|
43124
43124
|
return null;
|
|
43125
43125
|
const {
|
|
43126
|
-
componentProps,
|
|
43126
|
+
componentProps: comProps,
|
|
43127
43127
|
label,
|
|
43128
43128
|
colProps: colProps2
|
|
43129
43129
|
} = group;
|
|
43130
|
+
const componentProps = isFunction$5(comProps) ? comProps({}) : comProps;
|
|
43130
43131
|
const realSpan = ((colProps2 == null ? void 0 : colProps2.span) || ((_b = (_a2 = unref(getProps)) == null ? void 0 : _a2.baseColProps) == null ? void 0 : _b.span) || basicColProps) / basicRowProps;
|
|
43131
43132
|
const style2 = {
|
|
43132
43133
|
[`--col-span`]: `${realSpan * 100}%`,
|
package/lib/index.js
CHANGED
|
@@ -42966,7 +42966,7 @@ const Descriptions = /* @__PURE__ */ vue.defineComponent({
|
|
|
42966
42966
|
componentProps: comProps,
|
|
42967
42967
|
component
|
|
42968
42968
|
} = item;
|
|
42969
|
-
const componentProps = utils$1.isFunction(comProps) ? comProps() : comProps;
|
|
42969
|
+
const componentProps = utils$1.isFunction(comProps) ? comProps({}) : comProps;
|
|
42970
42970
|
const {
|
|
42971
42971
|
data,
|
|
42972
42972
|
summaryTotalFields
|
|
@@ -43147,10 +43147,11 @@ const Descriptions = /* @__PURE__ */ vue.defineComponent({
|
|
|
43147
43147
|
if (!isIfShow)
|
|
43148
43148
|
return null;
|
|
43149
43149
|
const {
|
|
43150
|
-
componentProps,
|
|
43150
|
+
componentProps: comProps,
|
|
43151
43151
|
label,
|
|
43152
43152
|
colProps: colProps2
|
|
43153
43153
|
} = group;
|
|
43154
|
+
const componentProps = utils$1.isFunction(comProps) ? comProps({}) : comProps;
|
|
43154
43155
|
const realSpan = ((colProps2 == null ? void 0 : colProps2.span) || ((_b = (_a2 = vue.unref(getProps)) == null ? void 0 : _a2.baseColProps) == null ? void 0 : _b.span) || basicColProps) / basicRowProps;
|
|
43155
43156
|
const style2 = {
|
|
43156
43157
|
[`--col-span`]: `${realSpan * 100}%`,
|