@processmaker/screen-builder 2.84.0 → 2.84.2
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/dist/vue-form-builder.css +1 -1
- package/dist/vue-form-builder.es.js +90 -75
- package/dist/vue-form-builder.es.js.map +1 -1
- package/dist/vue-form-builder.umd.js +2 -2
- package/dist/vue-form-builder.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/App.vue +1 -0
- package/src/assets/css/tabs.css +118 -0
- package/src/components/TabsBar.vue +0 -121
- package/src/components/editor/pagesDropdown.vue +1 -1
- package/src/components/index.js +1 -0
- package/src/components/sortable/sortableList/SortableList.vue +64 -28
- package/src/components/vue-form-builder.vue +10 -7
- package/src/stories/DropdownAndPages.stories.js +2 -1
- package/src/stories/Sortable.stories.js +11 -0
|
@@ -48400,7 +48400,7 @@ const $X = {
|
|
|
48400
48400
|
* @param {PageItem} page - The selected page item.
|
|
48401
48401
|
*/
|
|
48402
48402
|
onClickPage(t) {
|
|
48403
|
-
this.$emit("clickPage", t);
|
|
48403
|
+
this.$emit("clickPage", this.data[t]);
|
|
48404
48404
|
}
|
|
48405
48405
|
}
|
|
48406
48406
|
};
|
|
@@ -48419,7 +48419,7 @@ var PX = function() {
|
|
|
48419
48419
|
DX,
|
|
48420
48420
|
!1,
|
|
48421
48421
|
null,
|
|
48422
|
-
"
|
|
48422
|
+
"18f6828f",
|
|
48423
48423
|
null,
|
|
48424
48424
|
null
|
|
48425
48425
|
);
|
|
@@ -48497,8 +48497,7 @@ var BX = function() {
|
|
|
48497
48497
|
null,
|
|
48498
48498
|
null
|
|
48499
48499
|
);
|
|
48500
|
-
const UX = WX.exports
|
|
48501
|
-
const av = 200, GX = {
|
|
48500
|
+
const UX = WX.exports, av = 200, GX = {
|
|
48502
48501
|
props: {
|
|
48503
48502
|
/**
|
|
48504
48503
|
* The configuration of all the pages
|
|
@@ -48659,34 +48658,36 @@ const JX = {
|
|
|
48659
48658
|
},
|
|
48660
48659
|
data() {
|
|
48661
48660
|
return {
|
|
48661
|
+
originalName: "",
|
|
48662
48662
|
draggedItem: 0,
|
|
48663
48663
|
draggedOverItem: 0,
|
|
48664
|
-
itemsClone: [],
|
|
48665
48664
|
editRowIndex: null
|
|
48666
48665
|
};
|
|
48667
48666
|
},
|
|
48668
48667
|
computed: {
|
|
48669
48668
|
sortedItems() {
|
|
48670
|
-
return this.filteredItems.sort(
|
|
48671
|
-
|
|
48672
|
-
|
|
48673
|
-
watch: {
|
|
48674
|
-
items: {
|
|
48675
|
-
handler(t) {
|
|
48676
|
-
this.itemsClone = [...t];
|
|
48677
|
-
},
|
|
48678
|
-
immediate: !0
|
|
48669
|
+
return [...this.filteredItems].sort(
|
|
48670
|
+
(e, r) => e.order - r.order
|
|
48671
|
+
);
|
|
48679
48672
|
}
|
|
48680
48673
|
},
|
|
48681
48674
|
methods: {
|
|
48682
|
-
|
|
48683
|
-
this.
|
|
48675
|
+
validateState(t, e) {
|
|
48676
|
+
const r = !t, a = this.items.filter((i) => i !== e).find((i) => i.name === t);
|
|
48677
|
+
return r || a ? !1 : null;
|
|
48684
48678
|
},
|
|
48685
|
-
|
|
48686
|
-
|
|
48679
|
+
validateError(t, e) {
|
|
48680
|
+
return t ? this.$t("The Page Name field is required.") : this.items.filter((i) => i !== e).find((i) => i.name === t) ? this.$t("Must be unique.") : "";
|
|
48681
|
+
},
|
|
48682
|
+
onFocus(t, e) {
|
|
48683
|
+
this.originalName = t;
|
|
48684
|
+
},
|
|
48685
|
+
async onBlur(t, e) {
|
|
48686
|
+
this.validateState(t, e) === !1 && (e.name = this.originalName), await this.$nextTick(), setTimeout(() => {
|
|
48687
48687
|
this.editRowIndex = null;
|
|
48688
|
-
|
|
48689
|
-
|
|
48688
|
+
}, 250);
|
|
48689
|
+
},
|
|
48690
|
+
onClick(t, e) {
|
|
48690
48691
|
this.editRowIndex = e, this.$emit("item-edit", t);
|
|
48691
48692
|
},
|
|
48692
48693
|
dragStart(t, e) {
|
|
@@ -48697,24 +48698,30 @@ const JX = {
|
|
|
48697
48698
|
},
|
|
48698
48699
|
dragEnd(t) {
|
|
48699
48700
|
t.target.classList.remove("dragging");
|
|
48700
|
-
const e = this.
|
|
48701
|
-
|
|
48702
|
-
|
|
48703
|
-
|
|
48704
|
-
|
|
48705
|
-
|
|
48706
|
-
|
|
48707
|
-
|
|
48708
|
-
|
|
48709
|
-
|
|
48710
|
-
for (let
|
|
48711
|
-
const
|
|
48712
|
-
|
|
48713
|
-
}
|
|
48714
|
-
|
|
48701
|
+
const e = [...this.items].sort(
|
|
48702
|
+
(i, n) => i.order - n.order
|
|
48703
|
+
), r = e.findIndex(
|
|
48704
|
+
(i) => i.order === this.draggedItem
|
|
48705
|
+
), a = e.findIndex(
|
|
48706
|
+
(i) => i.order === this.draggedOverItem
|
|
48707
|
+
);
|
|
48708
|
+
if (r !== a) {
|
|
48709
|
+
const i = e[a].order, n = this.draggedItem > this.draggedOverItem ? 1 : -1;
|
|
48710
|
+
if (r < a) {
|
|
48711
|
+
for (let s = r + 1; s <= a; s++) {
|
|
48712
|
+
const o = e[s].order;
|
|
48713
|
+
e[s].order = o + n;
|
|
48714
|
+
}
|
|
48715
|
+
e[r].order = i;
|
|
48716
|
+
} else if (r > a) {
|
|
48717
|
+
for (let s = a; s <= r - 1; s++) {
|
|
48718
|
+
const o = e[s].order;
|
|
48719
|
+
e[s].order = o + n;
|
|
48720
|
+
}
|
|
48721
|
+
e[r].order = i;
|
|
48715
48722
|
}
|
|
48716
48723
|
}
|
|
48717
|
-
this.$emit("ordered",
|
|
48724
|
+
this.$emit("ordered", e);
|
|
48718
48725
|
},
|
|
48719
48726
|
dragOver(t) {
|
|
48720
48727
|
t.preventDefault();
|
|
@@ -48724,11 +48731,15 @@ const JX = {
|
|
|
48724
48731
|
var ZX = function() {
|
|
48725
48732
|
var e = this, r = e._self._c;
|
|
48726
48733
|
return r("div", { staticClass: "row mt-3" }, [r("div", { staticClass: "col p-0 border rounded-lg sortable-list" }, [e._m(0), r("div", { staticClass: "sortable-container", on: { dragover: e.dragOver } }, e._l(e.sortedItems, function(a, i) {
|
|
48727
|
-
return r("div", { key: i, staticClass: "sortable-item sortable-draggable", attrs: { "data-order": a.order, "data-test": `item-${a.order}`, title: a.name, draggable: "true" }, on: { dragstart: (n) => e.dragStart(n, a.order), dragenter: (n) => e.dragEnter(n, a.order), dragend: e.dragEnd } }, [e._m(1, !0), r("div", { staticClass: "rounded sortable-item-name" }, [e.editRowIndex === i ? r("b-form-input", { attrs: { type: "text", autofocus: "" }, on: { blur: function(n) {
|
|
48728
|
-
return n.stopPropagation(), e.onBlur();
|
|
48734
|
+
return r("div", { key: i, staticClass: "sortable-item sortable-draggable", attrs: { "data-order": a.order, "data-test": `item-${a.order}`, title: a.name, draggable: "true" }, on: { dragstart: (n) => e.dragStart(n, a.order), dragenter: (n) => e.dragEnter(n, a.order), dragend: e.dragEnd } }, [e._m(1, !0), r("div", { staticClass: "rounded sortable-item-name" }, [e.editRowIndex === i ? r("b-form-input", { attrs: { type: "text", autofocus: "", required: "", state: e.validateState(a.name, a), error: e.validateError(a.name, a) }, on: { blur: function(n) {
|
|
48735
|
+
return n.stopPropagation(), e.onBlur(a.name, a);
|
|
48736
|
+
}, keydown: function(n) {
|
|
48737
|
+
return !n.type.indexOf("key") && e._k(n.keyCode, "enter", 13, n.key, "Enter") ? null : (n.stopPropagation(), e.onBlur(a.name, a));
|
|
48738
|
+
}, focus: function(n) {
|
|
48739
|
+
return e.onFocus(a.name, a);
|
|
48729
48740
|
} }, model: { value: a.name, callback: function(n) {
|
|
48730
48741
|
e.$set(a, "name", n);
|
|
48731
|
-
}, expression: "item.name" } }) : r("span", [e._v(e._s(a.name))])], 1), r("div", { staticClass: "border rounded-lg sortable-item-action" }, [r("button", { staticClass: "btn", on: { click: function(n) {
|
|
48742
|
+
}, expression: "item.name" } }) : r("span", [e._v(e._s(a.name))])], 1), r("div", { staticClass: "border rounded-lg sortable-item-action" }, [e.editRowIndex === i ? r("button", { staticClass: "btn" }, [r("i", { staticClass: "fas fa-check" })]) : r("button", { staticClass: "btn", on: { click: function(n) {
|
|
48732
48743
|
return n.stopPropagation(), e.onClick(a, i);
|
|
48733
48744
|
} } }, [r("i", { staticClass: "fas fa-edit" })]), r("div", { staticClass: "sortable-item-vr" }), r("button", { staticClass: "btn", on: { click: function(n) {
|
|
48734
48745
|
return e.$emit("item-delete", a);
|
|
@@ -48746,7 +48757,7 @@ var ZX = function() {
|
|
|
48746
48757
|
XX,
|
|
48747
48758
|
!1,
|
|
48748
48759
|
null,
|
|
48749
|
-
"
|
|
48760
|
+
"94c99e35",
|
|
48750
48761
|
null,
|
|
48751
48762
|
null
|
|
48752
48763
|
);
|
|
@@ -48914,6 +48925,9 @@ const oee = [
|
|
|
48914
48925
|
};
|
|
48915
48926
|
},
|
|
48916
48927
|
computed: {
|
|
48928
|
+
sortedPages() {
|
|
48929
|
+
return [...this.config].sort((t, e) => t.order - e.order);
|
|
48930
|
+
},
|
|
48917
48931
|
builder() {
|
|
48918
48932
|
return this;
|
|
48919
48933
|
},
|
|
@@ -48993,7 +49007,7 @@ const oee = [
|
|
|
48993
49007
|
return ((r = (e = this.config[t]) == null ? void 0 : e.items) == null ? void 0 : r.length) === 0;
|
|
48994
49008
|
},
|
|
48995
49009
|
onClick(t) {
|
|
48996
|
-
this.$refs.tabsBar.openPageByIndex(t);
|
|
49010
|
+
this.$refs.tabsBar.openPageByIndex(this.config.indexOf(t));
|
|
48997
49011
|
},
|
|
48998
49012
|
checkPageName(t, e = !1) {
|
|
48999
49013
|
return !e && !this.showAddPageValidations ? null : t.trim() ? this.config.map((a) => a.name).filter((a) => a !== this.originalPageName).includes(t) ? this.$t("Must be unique.") : "" : this.$t("The Page Name field is required.");
|
|
@@ -49370,45 +49384,45 @@ var dee = function() {
|
|
|
49370
49384
|
})], 2)], 1)], 1), r("b-col", { ref: "screen-container", staticClass: "overflow-auto mh-100 p-0 d-flex flex-column position-relative", attrs: { id: "screen-container" } }, [r("tabs-bar", { ref: "tabsBar", attrs: { pages: e.config }, on: { "tab-opened": function(a) {
|
|
49371
49385
|
e.currentPage = a;
|
|
49372
49386
|
} }, scopedSlots: e._u([{ key: "tabs-start", fn: function() {
|
|
49373
|
-
return [e.showToolbar ? r("pages-dropdown", { attrs: { data: e.
|
|
49387
|
+
return [e.showToolbar ? r("pages-dropdown", { attrs: { data: e.sortedPages }, on: { addPage: function(a) {
|
|
49374
49388
|
return e.$bvModal.show("addPageModal");
|
|
49375
49389
|
}, clickPage: e.onClick, seeAllPages: function(a) {
|
|
49376
49390
|
return e.$bvModal.show("openSortable");
|
|
49377
49391
|
} } }) : e._e()];
|
|
49378
|
-
}, proxy: !0 }, { key: "default", fn: function() {
|
|
49379
|
-
return [e.isCurrentPageEmpty(
|
|
49392
|
+
}, proxy: !0 }, { key: "default", fn: function({ currentPage: a }) {
|
|
49393
|
+
return [e.isCurrentPageEmpty(a) ? r("div", { staticClass: "d-flex justify-content-center align-items-center drag-placeholder text-center position-absolute rounded mt-4 flex-column", attrs: { "data-cy": "screen-drop-zone" } }, [r("svg", { attrs: { width: "81", height: "107", viewBox: "0 0 81 107", fill: "none", xmlns: "http://www.w3.org/2000/svg" } }, [r("path", { attrs: { d: "M47.125 28.6562V0.5H5.71875C2.96523 0.5 0.75 2.71523 0.75 5.46875V101.531C0.75 104.285 2.96523 106.5 5.71875 106.5H75.2812C78.0348 106.5 80.25 104.285 80.25 101.531V33.625H52.0938C49.3609 33.625 47.125 31.3891 47.125 28.6562ZM60.375 77.5156C60.375 78.882 59.257 80 57.8906 80H23.1094C21.743 80 20.625 78.882 20.625 77.5156V75.8594C20.625 74.493 21.743 73.375 23.1094 73.375H57.8906C59.257 73.375 60.375 74.493 60.375 75.8594V77.5156ZM60.375 64.2656C60.375 65.632 59.257 66.75 57.8906 66.75H23.1094C21.743 66.75 20.625 65.632 20.625 64.2656V62.6094C20.625 61.243 21.743 60.125 23.1094 60.125H57.8906C59.257 60.125 60.375 61.243 60.375 62.6094V64.2656ZM60.375 49.3594V51.0156C60.375 52.382 59.257 53.5 57.8906 53.5H23.1094C21.743 53.5 20.625 52.382 20.625 51.0156V49.3594C20.625 47.993 21.743 46.875 23.1094 46.875H57.8906C59.257 46.875 60.375 47.993 60.375 49.3594ZM80.25 25.7371V27H53.75V0.5H55.0129C56.3379 0.5 57.6008 1.01758 58.5324 1.94922L78.8008 22.2383C79.7324 23.1699 80.25 24.4328 80.25 25.7371Z", fill: "#699CFF" } })]), r("h3", [e._v(e._s(e.$t("Place your controls here.")))]), r("p", [e._v(" " + e._s(e.$t("To begin creating a screen, drag and drop items from the Controls Menu on the left.")) + " ")])]) : e._e(), e.renderControls ? r("draggable", e._b({ key: e.editorContentKey, staticClass: "h-100", attrs: { "data-cy": "editor-content", "ghost-class": "form-control-ghost", value: e.config[a].items }, on: { input: e.updateConfig } }, "draggable", {
|
|
49380
49394
|
group: { name: "controls" },
|
|
49381
49395
|
swapThreshold: 0.5
|
|
49382
|
-
}, !1), e._l(e.config[
|
|
49383
|
-
return r("div", { key:
|
|
49384
|
-
selected: e.selected ===
|
|
49385
|
-
hasError: e.hasError(
|
|
49386
|
-
}, attrs: { selector:
|
|
49387
|
-
return e.inspect(
|
|
49388
|
-
} } }, [
|
|
49389
|
-
return e.inspect(
|
|
49390
|
-
} } }, [e.selected ===
|
|
49391
|
-
return e.applyAiChanges(
|
|
49392
|
-
} } }, [e._v(" " + e._s(e.$t("Apply Changes")) + " ")]) : e._e(), e.isAiSection(
|
|
49393
|
-
return e.duplicateItem(
|
|
49394
|
-
} } }, [r("i", { staticClass: "fas fa-copy text-light" })]), r("button", { staticClass: "btn btn-sm btn-danger", attrs: { "data-test": "delete-control-btn", title: e.$t("Delete Control") }, on: { click: function(
|
|
49395
|
-
return e.deleteItem(
|
|
49396
|
-
} } }, [r("i", { staticClass: "far fa-trash-alt text-light" })])])]) : e._e(), r(
|
|
49397
|
-
e.$set(
|
|
49398
|
-
}, expression: "element.items" } })], 1) : r("div", { staticClass: "card", attrs: { "data-cy": "screen-element-container" } }, [e.selected ===
|
|
49399
|
-
return e.duplicateItem(
|
|
49400
|
-
} } }, [r("i", { staticClass: "fas fa-copy text-light" })]), r("button", { staticClass: "btn btn-sm btn-danger", attrs: { title: e.$t("Delete Control") }, on: { click: function(
|
|
49401
|
-
return e.deleteItem(
|
|
49402
|
-
} } }, [r("i", { staticClass: "far fa-trash-alt text-light" })])])]) : e._e(), r(
|
|
49403
|
-
e.elementCssClass(
|
|
49404
|
-
{ "prevent-interaction": !
|
|
49405
|
-
], attrs: { tabindex:
|
|
49406
|
-
|
|
49407
|
-
} }, nativeOn: { focusout: function(
|
|
49396
|
+
}, !1), e._l(e.config[a].items, function(i, n) {
|
|
49397
|
+
return r("div", { key: n, staticClass: "control-item mt-4 mb-4", class: {
|
|
49398
|
+
selected: e.selected === i,
|
|
49399
|
+
hasError: e.hasError(i)
|
|
49400
|
+
}, attrs: { selector: i.config.customCssSelector }, on: { click: function(s) {
|
|
49401
|
+
return e.inspect(i);
|
|
49402
|
+
} } }, [i.container ? r("div", { staticClass: "card container-lement", class: { "ai-section-card": e.isAiSection(i) }, attrs: { "data-cy": "screen-element-container" }, on: { click: function(s) {
|
|
49403
|
+
return e.inspect(i);
|
|
49404
|
+
} } }, [e.selected === i ? r("div", { staticClass: "card-header form-element-header d-flex align-items-center", class: { pulse: e.isAiSection(i) && e.aiPreview(i) } }, [r("i", { staticClass: "fas fa-arrows-alt-v mr-1 text-muted" }), i.config.icon ? r("i", { staticClass: "mr-2 ml-1", class: i.config.icon }) : e._e(), e._v(" " + e._s(i.config.name || i.label || e.$t("Field Name")) + " "), r("div", { staticClass: "ml-auto" }, [e.isAiSection(i) && e.aiPreview(i) ? r("button", { staticClass: "btn btn-sm btn-primary mr-2", attrs: { "data-test": "apply-ai-btn", title: e.$t("Apply Changes") }, on: { click: function(s) {
|
|
49405
|
+
return e.applyAiChanges(i);
|
|
49406
|
+
} } }, [e._v(" " + e._s(e.$t("Apply Changes")) + " ")]) : e._e(), e.isAiSection(i) && e.aiPreview(i) ? e._e() : r("button", { staticClass: "btn btn-sm btn-secondary mr-2", attrs: { "data-test": "copy-control-btn", title: e.$t("Copy Control") }, on: { click: function(s) {
|
|
49407
|
+
return e.duplicateItem(n);
|
|
49408
|
+
} } }, [r("i", { staticClass: "fas fa-copy text-light" })]), r("button", { staticClass: "btn btn-sm btn-danger", attrs: { "data-test": "delete-control-btn", title: e.$t("Delete Control") }, on: { click: function(s) {
|
|
49409
|
+
return e.deleteItem(n);
|
|
49410
|
+
} } }, [r("i", { staticClass: "far fa-trash-alt text-light" })])])]) : e._e(), r(i["editor-component"], { tag: "component", staticClass: "card-body", class: e.elementCssClass(i), attrs: { "validation-errors": e.validationErrors, selected: e.selected, config: i.config, "ai-element": i }, on: { inspect: e.inspect, "update-state": e.updateState }, model: { value: i.items, callback: function(s) {
|
|
49411
|
+
e.$set(i, "items", s);
|
|
49412
|
+
}, expression: "element.items" } })], 1) : r("div", { staticClass: "card", attrs: { "data-cy": "screen-element-container" } }, [e.selected === i ? r("div", { staticClass: "card-header form-element-header d-flex align-items-center" }, [r("i", { staticClass: "fas fa-arrows-alt-v mr-1 text-muted" }), i.config.icon ? r("i", { staticClass: "mr-2 ml-1", class: i.config.icon }) : e._e(), e._v(" " + e._s(i.config.name || e.$t("Variable Name")) + " "), r("div", { staticClass: "ml-auto" }, [r("button", { staticClass: "btn btn-sm btn-secondary mr-2", attrs: { title: e.$t("Copy Control") }, on: { click: function(s) {
|
|
49413
|
+
return e.duplicateItem(n);
|
|
49414
|
+
} } }, [r("i", { staticClass: "fas fa-copy text-light" })]), r("button", { staticClass: "btn btn-sm btn-danger", attrs: { title: e.$t("Delete Control") }, on: { click: function(s) {
|
|
49415
|
+
return e.deleteItem(n);
|
|
49416
|
+
} } }, [r("i", { staticClass: "far fa-trash-alt text-light" })])])]) : e._e(), r(i["editor-component"], e._b({ tag: "component", staticClass: "card-body m-0 pb-4 pt-4", class: [
|
|
49417
|
+
e.elementCssClass(i),
|
|
49418
|
+
{ "prevent-interaction": !i.config.interactive }
|
|
49419
|
+
], attrs: { tabindex: i.config.interactive ? 0 : -1 }, on: { input: function(s) {
|
|
49420
|
+
i.config.interactive && (i.config.content = s);
|
|
49421
|
+
} }, nativeOn: { focusout: function(s) {
|
|
49408
49422
|
return e.updateState.apply(null, arguments);
|
|
49409
|
-
} } }, "component",
|
|
49410
|
-
}), 0) : e._e(), e.isCurrentPageEmpty ? e._e() : r("div", { attrs: { "data-cy": "screen-drop-zone" } }, [e._v(" ")])];
|
|
49411
|
-
}
|
|
49423
|
+
} } }, "component", i.config, !1))], 1)]);
|
|
49424
|
+
}), 0) : e._e(), e.isCurrentPageEmpty(a) ? e._e() : r("div", { attrs: { "data-cy": "screen-drop-zone" } }, [e._v(" ")])];
|
|
49425
|
+
} }]) })], 1), e.renderControls ? r("b-col", { staticClass: "overflow-hidden h-100 p-0 inspector-column" }, [r("b-card", { staticClass: "p-0 h-100 border-top-0 border-bottom-0 border-right-0 rounded-0", attrs: { "no-body": "" } }, [r("b-card-body", { staticClass: "p-0 h-100 overflow-auto" }, [e._l(e.accordions, function(a) {
|
|
49412
49426
|
return [e.getInspectorFields(a) && e.getInspectorFields(a).length > 0 ? r("b-button", { key: `${e.accordionName(a)}-button`, staticClass: "text-left card-header d-flex align-items-center w-100 outline-0 text-capitalize shadow-none", attrs: { variant: "outline", "data-cy": `accordion-${e.accordionName(a).replace(
|
|
49413
49427
|
" ",
|
|
49414
49428
|
""
|
|
@@ -49455,7 +49469,7 @@ var dee = function() {
|
|
|
49455
49469
|
pee,
|
|
49456
49470
|
!1,
|
|
49457
49471
|
null,
|
|
49458
|
-
"
|
|
49472
|
+
"6dca9fa7",
|
|
49459
49473
|
null,
|
|
49460
49474
|
null
|
|
49461
49475
|
);
|
|
@@ -52060,7 +52074,8 @@ var Ite = function() {
|
|
|
52060
52074
|
null,
|
|
52061
52075
|
null
|
|
52062
52076
|
);
|
|
52063
|
-
const ure = jte.exports
|
|
52077
|
+
const ure = jte.exports;
|
|
52078
|
+
const cre = {
|
|
52064
52079
|
...Os,
|
|
52065
52080
|
FormMultiColumn: sl
|
|
52066
52081
|
};
|