3h1-ui 3.0.0-next.224 → 3.0.0-next.225
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 +75 -43
- package/lib/index.js +75 -43
- package/package.json +3 -3
package/es/index.js
CHANGED
|
@@ -11730,7 +11730,7 @@ const FormItem$2 = /* @__PURE__ */ defineComponent({
|
|
|
11730
11730
|
const isTableForm = computed(() => !!formProps2.value.formLabelInInput);
|
|
11731
11731
|
const componentsPropsRef = ref({});
|
|
11732
11732
|
watch(() => props2.formModel, () => {
|
|
11733
|
-
var _a2;
|
|
11733
|
+
var _a2, _b, _c, _d, _e;
|
|
11734
11734
|
const {
|
|
11735
11735
|
schema: schema2,
|
|
11736
11736
|
tableAction: tableAction2,
|
|
@@ -11762,7 +11762,7 @@ const FormItem$2 = /* @__PURE__ */ defineComponent({
|
|
|
11762
11762
|
...props2
|
|
11763
11763
|
});
|
|
11764
11764
|
}
|
|
11765
|
-
if (schema2.component.includes("Picker") || schema2.component.includes("Select")) {
|
|
11765
|
+
if (((_b = (_a2 = schema2.component) == null ? void 0 : _a2.includes) == null ? void 0 : _b.call(_a2, "Picker")) || ((_d = (_c = schema2.component) == null ? void 0 : _c.includes) == null ? void 0 : _d.call(_c, "Select"))) {
|
|
11766
11766
|
componentProps.getPopupContainer = () => document.body;
|
|
11767
11767
|
}
|
|
11768
11768
|
if (["RangePicker", "DatePicker"].includes(schema2.component)) {
|
|
@@ -11794,7 +11794,7 @@ const FormItem$2 = /* @__PURE__ */ defineComponent({
|
|
|
11794
11794
|
};
|
|
11795
11795
|
}
|
|
11796
11796
|
if (schema2.component === "Select") {
|
|
11797
|
-
const label = ((
|
|
11797
|
+
const label = ((_e = componentProps == null ? void 0 : componentProps.fieldNames) == null ? void 0 : _e.label) || "label";
|
|
11798
11798
|
componentProps = Object.assign({}, componentProps, {
|
|
11799
11799
|
showSearch: true,
|
|
11800
11800
|
filterOption: (input, option) => {
|
|
@@ -49305,49 +49305,72 @@ const Descriptions = /* @__PURE__ */ defineComponent({
|
|
|
49305
49305
|
};
|
|
49306
49306
|
});
|
|
49307
49307
|
const handleValuePrecision = (item, data) => {
|
|
49308
|
-
|
|
49309
|
-
return slots[`${item.field}Value`] ? (_a2 = slots[`${item.field}Value`]) == null ? void 0 : _a2.call(slots, {
|
|
49310
|
-
model: data,
|
|
49311
|
-
field: data[`${item.field}`]
|
|
49312
|
-
}) : getProps.value.summaryTotalFields.includes(item.field) && isNumber$3(+data[`${item.field}`]) && !isNaN(+data[`${item.field}`]) ? (+data[`${item.field}`]).toFixed(getProps.value.summaryPrecision).replace(/\d(?=(?:\d{3})+(?:\.|$))/g, (match, offset2, string3) => {
|
|
49308
|
+
return getProps.value.summaryTotalFields.includes(item.field) && isNumber$3(+data[`${item.field}`]) && !isNaN(+data[`${item.field}`]) ? (+data[`${item.field}`]).toFixed(getProps.value.summaryPrecision).replace(/\d(?=(?:\d{3})+(?:\.|$))/g, (match, offset2, string3) => {
|
|
49313
49309
|
return match + (string3.charAt(offset2 + 1) === "." || offset2 === string3.length - 1 ? "" : ",");
|
|
49314
49310
|
}) : data[`${item.field}`];
|
|
49315
49311
|
};
|
|
49316
49312
|
emit("register", {
|
|
49317
49313
|
setDescProps
|
|
49318
49314
|
});
|
|
49319
|
-
const transformValue = (
|
|
49320
|
-
|
|
49321
|
-
|
|
49322
|
-
|
|
49323
|
-
|
|
49324
|
-
|
|
49325
|
-
|
|
49326
|
-
|
|
49327
|
-
|
|
49328
|
-
|
|
49329
|
-
|
|
49330
|
-
|
|
49331
|
-
|
|
49332
|
-
|
|
49333
|
-
|
|
49334
|
-
|
|
49335
|
-
|
|
49336
|
-
|
|
49337
|
-
|
|
49315
|
+
const transformValue = computed(() => {
|
|
49316
|
+
return (item) => {
|
|
49317
|
+
var _a2;
|
|
49318
|
+
const {
|
|
49319
|
+
field,
|
|
49320
|
+
componentProps: comProps,
|
|
49321
|
+
component,
|
|
49322
|
+
label
|
|
49323
|
+
} = item;
|
|
49324
|
+
const {
|
|
49325
|
+
data,
|
|
49326
|
+
summaryTotalFields
|
|
49327
|
+
} = unref(getProps);
|
|
49328
|
+
const componentProps = isFunction$6(comProps) ? (
|
|
49329
|
+
// @ts-ignore
|
|
49330
|
+
comProps({
|
|
49331
|
+
formModel: data
|
|
49332
|
+
})
|
|
49333
|
+
) : comProps;
|
|
49334
|
+
if (slots[`${item.field}Value`]) {
|
|
49335
|
+
return (_a2 = slots[`${item.field}Value`]) == null ? void 0 : _a2.call(slots, {
|
|
49336
|
+
model: data,
|
|
49337
|
+
field: data[`${item.field}`]
|
|
49338
|
+
});
|
|
49339
|
+
}
|
|
49340
|
+
if ((summaryTotalFields == null ? void 0 : summaryTotalFields.length) && summaryTotalFields.includes(field)) {
|
|
49341
|
+
return handleValuePrecision(item, data);
|
|
49342
|
+
}
|
|
49343
|
+
if ((componentProps == null ? void 0 : componentProps.options) || (componentProps == null ? void 0 : componentProps.api)) {
|
|
49344
|
+
let options = [];
|
|
49345
|
+
if (Array.isArray(componentProps.options)) {
|
|
49346
|
+
options = treeToList(componentProps.options);
|
|
49347
|
+
}
|
|
49348
|
+
return createVNode(ShyTag, mergeProps({
|
|
49349
|
+
"value": data[`${field}`]
|
|
49350
|
+
}, componentProps, {
|
|
49351
|
+
"options": options
|
|
49352
|
+
}), null);
|
|
49353
|
+
}
|
|
49354
|
+
if (["DatePicker", "MonthPicker", "RangePicker", "WeekPicker", "TimePicker"].includes(component)) {
|
|
49355
|
+
if (!data[`${field}`])
|
|
49356
|
+
return "";
|
|
49357
|
+
return dayjs$1(data[`${field}`]).format((componentProps == null ? void 0 : componentProps.valueFormat) || "YYYY-MM-DD");
|
|
49358
|
+
}
|
|
49359
|
+
if (component === "Table") {
|
|
49360
|
+
return createVNode(ShyFormTable, mergeProps(componentProps, {
|
|
49361
|
+
"isShowAddBtn": false,
|
|
49362
|
+
"isShowAction": false,
|
|
49363
|
+
"value": data[`${field}`]
|
|
49364
|
+
}), null);
|
|
49365
|
+
}
|
|
49366
|
+
if (component === "Divider") {
|
|
49367
|
+
return createVNode(Divider, componentProps, _isSlot(label) ? label : {
|
|
49368
|
+
default: () => [label]
|
|
49369
|
+
});
|
|
49338
49370
|
}
|
|
49339
|
-
return createVNode(ShyTag, mergeProps({
|
|
49340
|
-
"value": data[`${field}`]
|
|
49341
|
-
}, componentProps, {
|
|
49342
|
-
"options": options
|
|
49343
|
-
}), null);
|
|
49344
|
-
} else if (["DatePicker", "MonthPicker", "RangePicker", "WeekPicker", "TimePicker"].includes(component)) {
|
|
49345
|
-
if (!data[`${field}`])
|
|
49346
|
-
return "";
|
|
49347
|
-
return dayjs$1(data[`${field}`]).format((componentProps == null ? void 0 : componentProps.valueFormat) || "YYYY-MM-DD");
|
|
49348
|
-
} else
|
|
49349
49371
|
return data[`${field}`];
|
|
49350
|
-
|
|
49372
|
+
};
|
|
49373
|
+
});
|
|
49351
49374
|
const renderValue = (item) => {
|
|
49352
49375
|
var _a2;
|
|
49353
49376
|
const {
|
|
@@ -49369,12 +49392,13 @@ const Descriptions = /* @__PURE__ */ defineComponent({
|
|
|
49369
49392
|
return render3(unref(getValues)(item));
|
|
49370
49393
|
} else {
|
|
49371
49394
|
const contentStyles = {
|
|
49395
|
+
overflow: "hidden",
|
|
49372
49396
|
...unref(getProps).contentStyle,
|
|
49373
49397
|
...contentStyle
|
|
49374
49398
|
};
|
|
49375
49399
|
return createVNode("div", {
|
|
49376
49400
|
"style": contentStyles
|
|
49377
|
-
}, [transformValue(item)]);
|
|
49401
|
+
}, [unref(transformValue)(item)]);
|
|
49378
49402
|
}
|
|
49379
49403
|
};
|
|
49380
49404
|
const labelAlignCss = computed(() => {
|
|
@@ -49496,7 +49520,7 @@ const Descriptions = /* @__PURE__ */ defineComponent({
|
|
|
49496
49520
|
}), [[vShow, isShow]]);
|
|
49497
49521
|
};
|
|
49498
49522
|
const renderSchema = (group) => {
|
|
49499
|
-
var _a2, _b;
|
|
49523
|
+
var _a2, _b, _c;
|
|
49500
49524
|
if (isArray$3(group)) {
|
|
49501
49525
|
let _slot2;
|
|
49502
49526
|
const props3 = pick$1(unref(getProps), ["bordered"]);
|
|
@@ -49518,10 +49542,10 @@ const Descriptions = /* @__PURE__ */ defineComponent({
|
|
|
49518
49542
|
const componentProps = isFunction$6(comProps) ? (
|
|
49519
49543
|
// @ts-ignore
|
|
49520
49544
|
comProps({
|
|
49521
|
-
formModel: unref(
|
|
49545
|
+
formModel: (_a2 = unref(getProps)) == null ? void 0 : _a2.data
|
|
49522
49546
|
})
|
|
49523
49547
|
) : comProps;
|
|
49524
|
-
const realSpan = ((colProps2 == null ? void 0 : colProps2.span) || ((
|
|
49548
|
+
const realSpan = ((colProps2 == null ? void 0 : colProps2.span) || ((_c = (_b = unref(getProps)) == null ? void 0 : _b.baseColProps) == null ? void 0 : _c.span) || basicColProps) / basicRowProps;
|
|
49525
49549
|
const style2 = {
|
|
49526
49550
|
[`--col-span`]: `${realSpan * 100}%`,
|
|
49527
49551
|
[`--w-gap`]: `${realSpan * basicGap}px`
|
|
@@ -49570,10 +49594,18 @@ const Descriptions = /* @__PURE__ */ defineComponent({
|
|
|
49570
49594
|
if (!isArray$3(schemas))
|
|
49571
49595
|
return [];
|
|
49572
49596
|
return schemas.reduce((prev2, curr) => {
|
|
49573
|
-
if (curr
|
|
49597
|
+
if ((curr == null ? void 0 : curr.component) === "Group") {
|
|
49574
49598
|
prev2.push(curr);
|
|
49575
49599
|
return prev2;
|
|
49576
49600
|
}
|
|
49601
|
+
if ((curr == null ? void 0 : curr.component) === "Divider") {
|
|
49602
|
+
prev2.push(merge$2(curr, {
|
|
49603
|
+
componentProps: {
|
|
49604
|
+
groupType: "Divider"
|
|
49605
|
+
}
|
|
49606
|
+
}));
|
|
49607
|
+
return prev2;
|
|
49608
|
+
}
|
|
49577
49609
|
if (!isArray$3(prev2[prev2.length - 1])) {
|
|
49578
49610
|
prev2.push([]);
|
|
49579
49611
|
}
|
package/lib/index.js
CHANGED
|
@@ -11754,7 +11754,7 @@ const FormItem$2 = /* @__PURE__ */ vue.defineComponent({
|
|
|
11754
11754
|
const isTableForm = vue.computed(() => !!formProps2.value.formLabelInInput);
|
|
11755
11755
|
const componentsPropsRef = vue.ref({});
|
|
11756
11756
|
vue.watch(() => props2.formModel, () => {
|
|
11757
|
-
var _a2;
|
|
11757
|
+
var _a2, _b, _c, _d, _e;
|
|
11758
11758
|
const {
|
|
11759
11759
|
schema: schema2,
|
|
11760
11760
|
tableAction: tableAction2,
|
|
@@ -11786,7 +11786,7 @@ const FormItem$2 = /* @__PURE__ */ vue.defineComponent({
|
|
|
11786
11786
|
...props2
|
|
11787
11787
|
});
|
|
11788
11788
|
}
|
|
11789
|
-
if (schema2.component.includes("Picker") || schema2.component.includes("Select")) {
|
|
11789
|
+
if (((_b = (_a2 = schema2.component) == null ? void 0 : _a2.includes) == null ? void 0 : _b.call(_a2, "Picker")) || ((_d = (_c = schema2.component) == null ? void 0 : _c.includes) == null ? void 0 : _d.call(_c, "Select"))) {
|
|
11790
11790
|
componentProps.getPopupContainer = () => document.body;
|
|
11791
11791
|
}
|
|
11792
11792
|
if (["RangePicker", "DatePicker"].includes(schema2.component)) {
|
|
@@ -11818,7 +11818,7 @@ const FormItem$2 = /* @__PURE__ */ vue.defineComponent({
|
|
|
11818
11818
|
};
|
|
11819
11819
|
}
|
|
11820
11820
|
if (schema2.component === "Select") {
|
|
11821
|
-
const label = ((
|
|
11821
|
+
const label = ((_e = componentProps == null ? void 0 : componentProps.fieldNames) == null ? void 0 : _e.label) || "label";
|
|
11822
11822
|
componentProps = Object.assign({}, componentProps, {
|
|
11823
11823
|
showSearch: true,
|
|
11824
11824
|
filterOption: (input, option) => {
|
|
@@ -49329,49 +49329,72 @@ const Descriptions = /* @__PURE__ */ vue.defineComponent({
|
|
|
49329
49329
|
};
|
|
49330
49330
|
});
|
|
49331
49331
|
const handleValuePrecision = (item, data) => {
|
|
49332
|
-
|
|
49333
|
-
return slots[`${item.field}Value`] ? (_a2 = slots[`${item.field}Value`]) == null ? void 0 : _a2.call(slots, {
|
|
49334
|
-
model: data,
|
|
49335
|
-
field: data[`${item.field}`]
|
|
49336
|
-
}) : getProps.value.summaryTotalFields.includes(item.field) && utils$1.isNumber(+data[`${item.field}`]) && !isNaN(+data[`${item.field}`]) ? (+data[`${item.field}`]).toFixed(getProps.value.summaryPrecision).replace(/\d(?=(?:\d{3})+(?:\.|$))/g, (match, offset2, string3) => {
|
|
49332
|
+
return getProps.value.summaryTotalFields.includes(item.field) && utils$1.isNumber(+data[`${item.field}`]) && !isNaN(+data[`${item.field}`]) ? (+data[`${item.field}`]).toFixed(getProps.value.summaryPrecision).replace(/\d(?=(?:\d{3})+(?:\.|$))/g, (match, offset2, string3) => {
|
|
49337
49333
|
return match + (string3.charAt(offset2 + 1) === "." || offset2 === string3.length - 1 ? "" : ",");
|
|
49338
49334
|
}) : data[`${item.field}`];
|
|
49339
49335
|
};
|
|
49340
49336
|
emit("register", {
|
|
49341
49337
|
setDescProps
|
|
49342
49338
|
});
|
|
49343
|
-
const transformValue = (
|
|
49344
|
-
|
|
49345
|
-
|
|
49346
|
-
|
|
49347
|
-
|
|
49348
|
-
|
|
49349
|
-
|
|
49350
|
-
|
|
49351
|
-
|
|
49352
|
-
|
|
49353
|
-
|
|
49354
|
-
|
|
49355
|
-
|
|
49356
|
-
|
|
49357
|
-
|
|
49358
|
-
|
|
49359
|
-
|
|
49360
|
-
|
|
49361
|
-
|
|
49339
|
+
const transformValue = vue.computed(() => {
|
|
49340
|
+
return (item) => {
|
|
49341
|
+
var _a2;
|
|
49342
|
+
const {
|
|
49343
|
+
field,
|
|
49344
|
+
componentProps: comProps,
|
|
49345
|
+
component,
|
|
49346
|
+
label
|
|
49347
|
+
} = item;
|
|
49348
|
+
const {
|
|
49349
|
+
data,
|
|
49350
|
+
summaryTotalFields
|
|
49351
|
+
} = vue.unref(getProps);
|
|
49352
|
+
const componentProps = utils$1.isFunction(comProps) ? (
|
|
49353
|
+
// @ts-ignore
|
|
49354
|
+
comProps({
|
|
49355
|
+
formModel: data
|
|
49356
|
+
})
|
|
49357
|
+
) : comProps;
|
|
49358
|
+
if (slots[`${item.field}Value`]) {
|
|
49359
|
+
return (_a2 = slots[`${item.field}Value`]) == null ? void 0 : _a2.call(slots, {
|
|
49360
|
+
model: data,
|
|
49361
|
+
field: data[`${item.field}`]
|
|
49362
|
+
});
|
|
49363
|
+
}
|
|
49364
|
+
if ((summaryTotalFields == null ? void 0 : summaryTotalFields.length) && summaryTotalFields.includes(field)) {
|
|
49365
|
+
return handleValuePrecision(item, data);
|
|
49366
|
+
}
|
|
49367
|
+
if ((componentProps == null ? void 0 : componentProps.options) || (componentProps == null ? void 0 : componentProps.api)) {
|
|
49368
|
+
let options = [];
|
|
49369
|
+
if (Array.isArray(componentProps.options)) {
|
|
49370
|
+
options = treeToList(componentProps.options);
|
|
49371
|
+
}
|
|
49372
|
+
return vue.createVNode(ShyTag, vue.mergeProps({
|
|
49373
|
+
"value": data[`${field}`]
|
|
49374
|
+
}, componentProps, {
|
|
49375
|
+
"options": options
|
|
49376
|
+
}), null);
|
|
49377
|
+
}
|
|
49378
|
+
if (["DatePicker", "MonthPicker", "RangePicker", "WeekPicker", "TimePicker"].includes(component)) {
|
|
49379
|
+
if (!data[`${field}`])
|
|
49380
|
+
return "";
|
|
49381
|
+
return dayjs$1(data[`${field}`]).format((componentProps == null ? void 0 : componentProps.valueFormat) || "YYYY-MM-DD");
|
|
49382
|
+
}
|
|
49383
|
+
if (component === "Table") {
|
|
49384
|
+
return vue.createVNode(ShyFormTable, vue.mergeProps(componentProps, {
|
|
49385
|
+
"isShowAddBtn": false,
|
|
49386
|
+
"isShowAction": false,
|
|
49387
|
+
"value": data[`${field}`]
|
|
49388
|
+
}), null);
|
|
49389
|
+
}
|
|
49390
|
+
if (component === "Divider") {
|
|
49391
|
+
return vue.createVNode(Divider, componentProps, _isSlot(label) ? label : {
|
|
49392
|
+
default: () => [label]
|
|
49393
|
+
});
|
|
49362
49394
|
}
|
|
49363
|
-
return vue.createVNode(ShyTag, vue.mergeProps({
|
|
49364
|
-
"value": data[`${field}`]
|
|
49365
|
-
}, componentProps, {
|
|
49366
|
-
"options": options
|
|
49367
|
-
}), null);
|
|
49368
|
-
} else if (["DatePicker", "MonthPicker", "RangePicker", "WeekPicker", "TimePicker"].includes(component)) {
|
|
49369
|
-
if (!data[`${field}`])
|
|
49370
|
-
return "";
|
|
49371
|
-
return dayjs$1(data[`${field}`]).format((componentProps == null ? void 0 : componentProps.valueFormat) || "YYYY-MM-DD");
|
|
49372
|
-
} else
|
|
49373
49395
|
return data[`${field}`];
|
|
49374
|
-
|
|
49396
|
+
};
|
|
49397
|
+
});
|
|
49375
49398
|
const renderValue = (item) => {
|
|
49376
49399
|
var _a2;
|
|
49377
49400
|
const {
|
|
@@ -49393,12 +49416,13 @@ const Descriptions = /* @__PURE__ */ vue.defineComponent({
|
|
|
49393
49416
|
return render3(vue.unref(getValues)(item));
|
|
49394
49417
|
} else {
|
|
49395
49418
|
const contentStyles = {
|
|
49419
|
+
overflow: "hidden",
|
|
49396
49420
|
...vue.unref(getProps).contentStyle,
|
|
49397
49421
|
...contentStyle
|
|
49398
49422
|
};
|
|
49399
49423
|
return vue.createVNode("div", {
|
|
49400
49424
|
"style": contentStyles
|
|
49401
|
-
}, [transformValue(item)]);
|
|
49425
|
+
}, [vue.unref(transformValue)(item)]);
|
|
49402
49426
|
}
|
|
49403
49427
|
};
|
|
49404
49428
|
const labelAlignCss = vue.computed(() => {
|
|
@@ -49520,7 +49544,7 @@ const Descriptions = /* @__PURE__ */ vue.defineComponent({
|
|
|
49520
49544
|
}), [[vue.vShow, isShow]]);
|
|
49521
49545
|
};
|
|
49522
49546
|
const renderSchema = (group) => {
|
|
49523
|
-
var _a2, _b;
|
|
49547
|
+
var _a2, _b, _c;
|
|
49524
49548
|
if (utils$1.isArray(group)) {
|
|
49525
49549
|
let _slot2;
|
|
49526
49550
|
const props3 = pick$1(vue.unref(getProps), ["bordered"]);
|
|
@@ -49542,10 +49566,10 @@ const Descriptions = /* @__PURE__ */ vue.defineComponent({
|
|
|
49542
49566
|
const componentProps = utils$1.isFunction(comProps) ? (
|
|
49543
49567
|
// @ts-ignore
|
|
49544
49568
|
comProps({
|
|
49545
|
-
formModel: vue.unref(
|
|
49569
|
+
formModel: (_a2 = vue.unref(getProps)) == null ? void 0 : _a2.data
|
|
49546
49570
|
})
|
|
49547
49571
|
) : comProps;
|
|
49548
|
-
const realSpan = ((colProps2 == null ? void 0 : colProps2.span) || ((
|
|
49572
|
+
const realSpan = ((colProps2 == null ? void 0 : colProps2.span) || ((_c = (_b = vue.unref(getProps)) == null ? void 0 : _b.baseColProps) == null ? void 0 : _c.span) || basicColProps) / basicRowProps;
|
|
49549
49573
|
const style2 = {
|
|
49550
49574
|
[`--col-span`]: `${realSpan * 100}%`,
|
|
49551
49575
|
[`--w-gap`]: `${realSpan * basicGap}px`
|
|
@@ -49594,10 +49618,18 @@ const Descriptions = /* @__PURE__ */ vue.defineComponent({
|
|
|
49594
49618
|
if (!utils$1.isArray(schemas))
|
|
49595
49619
|
return [];
|
|
49596
49620
|
return schemas.reduce((prev2, curr) => {
|
|
49597
|
-
if (curr
|
|
49621
|
+
if ((curr == null ? void 0 : curr.component) === "Group") {
|
|
49598
49622
|
prev2.push(curr);
|
|
49599
49623
|
return prev2;
|
|
49600
49624
|
}
|
|
49625
|
+
if ((curr == null ? void 0 : curr.component) === "Divider") {
|
|
49626
|
+
prev2.push(merge$2(curr, {
|
|
49627
|
+
componentProps: {
|
|
49628
|
+
groupType: "Divider"
|
|
49629
|
+
}
|
|
49630
|
+
}));
|
|
49631
|
+
return prev2;
|
|
49632
|
+
}
|
|
49601
49633
|
if (!utils$1.isArray(prev2[prev2.length - 1])) {
|
|
49602
49634
|
prev2.push([]);
|
|
49603
49635
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "3h1-ui",
|
|
3
|
-
"version": "3.0.0-next.
|
|
3
|
+
"version": "3.0.0-next.225",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"module": "es/index.js",
|
|
@@ -30,8 +30,8 @@
|
|
|
30
30
|
"vxe-table": "^4.3.6",
|
|
31
31
|
"xe-utils": "^3.5.7",
|
|
32
32
|
"@shy-plugins/tinymce": "^1.0.6",
|
|
33
|
-
"@shy-plugins/
|
|
34
|
-
"@shy-plugins/
|
|
33
|
+
"@shy-plugins/utils": "1.0.0-next.1",
|
|
34
|
+
"@shy-plugins/use": "1.0.1-next.5"
|
|
35
35
|
},
|
|
36
36
|
"types": "es/ui/index.d.ts",
|
|
37
37
|
"devDependencies": {
|