@bagelink/vue 0.0.734 → 0.0.738
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/components/ListItem.vue.d.ts.map +1 -1
- package/dist/components/form/inputs/FileUpload.vue.d.ts.map +1 -1
- package/dist/components/form/inputs/PasswordInput.vue.d.ts +18 -43
- package/dist/components/form/inputs/PasswordInput.vue.d.ts.map +1 -1
- package/dist/components/form/inputs/SelectInput.vue.d.ts.map +1 -1
- package/dist/components/form/inputs/index.d.ts +1 -0
- package/dist/components/form/inputs/index.d.ts.map +1 -1
- package/dist/components/lightbox/Lightbox.vue.d.ts.map +1 -1
- package/dist/index.cjs +305 -261
- package/dist/index.mjs +305 -261
- package/dist/style.css +66 -53
- package/package.json +1 -1
- package/src/components/ListItem.vue +1 -0
- package/src/components/form/inputs/FileUpload.vue +2 -2
- package/src/components/form/inputs/PasswordInput.vue +26 -0
- package/src/components/form/inputs/SelectInput.vue +11 -4
- package/src/components/form/inputs/index.ts +1 -0
- package/src/components/lightbox/Lightbox.vue +22 -16
- package/src/styles/text.css +8 -0
package/dist/index.cjs
CHANGED
|
@@ -5147,24 +5147,24 @@ class Bagel {
|
|
|
5147
5147
|
return data2;
|
|
5148
5148
|
}
|
|
5149
5149
|
}
|
|
5150
|
-
const _hoisted_1$
|
|
5151
|
-
|
|
5152
|
-
|
|
5153
|
-
|
|
5150
|
+
const _hoisted_1$O = {
|
|
5151
|
+
key: 0,
|
|
5152
|
+
class: "navigation flex space-between px-3 w-100 absolute"
|
|
5153
|
+
};
|
|
5154
|
+
const _hoisted_2$C = { class: "bgl-lightbox-item" };
|
|
5155
|
+
const _hoisted_3$q = ["src"];
|
|
5156
|
+
const _hoisted_4$i = ["src", "title"];
|
|
5157
|
+
const _hoisted_5$g = {
|
|
5154
5158
|
key: 3,
|
|
5155
5159
|
class: "file-info txt-white"
|
|
5156
5160
|
};
|
|
5157
|
-
const
|
|
5158
|
-
const
|
|
5161
|
+
const _hoisted_6$b = ["href"];
|
|
5162
|
+
const _hoisted_7$6 = {
|
|
5159
5163
|
key: 0,
|
|
5160
|
-
class: "navigation flex space-between w-100 absolute"
|
|
5161
|
-
};
|
|
5162
|
-
const _hoisted_7$5 = {
|
|
5163
|
-
key: 1,
|
|
5164
5164
|
class: "flex justify-content-center mt-2 overflow p-1 fixed bottom start end gap-1 m_justify-content-start"
|
|
5165
5165
|
};
|
|
5166
5166
|
const _hoisted_8$3 = ["src", "onClick"];
|
|
5167
|
-
const _sfc_main$
|
|
5167
|
+
const _sfc_main$S = /* @__PURE__ */ vue.defineComponent({
|
|
5168
5168
|
__name: "Lightbox",
|
|
5169
5169
|
setup(__props, { expose: __expose }) {
|
|
5170
5170
|
let isOpen = vue.ref(false);
|
|
@@ -5176,7 +5176,7 @@ const _sfc_main$R = /* @__PURE__ */ vue.defineComponent({
|
|
|
5176
5176
|
currentItem.value = item;
|
|
5177
5177
|
if (!groupItems.length) return;
|
|
5178
5178
|
group.value = groupItems;
|
|
5179
|
-
currentIndex.value = groupItems.
|
|
5179
|
+
currentIndex.value = groupItems.findIndex(({ src }) => item.src === src);
|
|
5180
5180
|
document.addEventListener("keydown", handleKeydown);
|
|
5181
5181
|
}
|
|
5182
5182
|
function close2() {
|
|
@@ -5233,8 +5233,20 @@ const _sfc_main$R = /* @__PURE__ */ vue.defineComponent({
|
|
|
5233
5233
|
],
|
|
5234
5234
|
onClick: close2
|
|
5235
5235
|
}, [
|
|
5236
|
+
vue.unref(group) && vue.unref(group).length > 1 ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_1$O, [
|
|
5237
|
+
vue.createVNode(vue.unref(Btn), {
|
|
5238
|
+
class: "navigation-btn oval",
|
|
5239
|
+
icon: "arrow_back",
|
|
5240
|
+
onClick: prev
|
|
5241
|
+
}),
|
|
5242
|
+
vue.createVNode(vue.unref(Btn), {
|
|
5243
|
+
class: "navigation-btn oval",
|
|
5244
|
+
icon: "arrow_forward",
|
|
5245
|
+
onClick: next
|
|
5246
|
+
})
|
|
5247
|
+
])) : vue.createCommentVNode("", true),
|
|
5236
5248
|
vue.createElementVNode("div", {
|
|
5237
|
-
class: "bgl-lightbox relative
|
|
5249
|
+
class: "bgl-lightbox relative txt-center",
|
|
5238
5250
|
onClick: _cache[0] || (_cache[0] = vue.withModifiers(() => {
|
|
5239
5251
|
}, ["stop"]))
|
|
5240
5252
|
}, [
|
|
@@ -5244,45 +5256,36 @@ const _sfc_main$R = /* @__PURE__ */ vue.defineComponent({
|
|
|
5244
5256
|
icon: "close",
|
|
5245
5257
|
onClick: close2
|
|
5246
5258
|
}),
|
|
5247
|
-
vue.createElementVNode("div",
|
|
5259
|
+
vue.createElementVNode("div", _hoisted_2$C, [
|
|
5248
5260
|
((_a2 = vue.unref(currentItem)) == null ? void 0 : _a2.type) === "image" ? (vue.openBlock(), vue.createElementBlock("img", {
|
|
5249
5261
|
key: 0,
|
|
5250
5262
|
src: (_b = vue.unref(currentItem)) == null ? void 0 : _b.src,
|
|
5251
|
-
alt: "Preview"
|
|
5252
|
-
|
|
5263
|
+
alt: "Preview",
|
|
5264
|
+
class: "vw90 lightbox-image"
|
|
5265
|
+
}, null, 8, _hoisted_3$q)) : ((_c = vue.unref(currentItem)) == null ? void 0 : _c.type) === "video" ? (vue.openBlock(), vue.createBlock(vue.unref(BglVideo), {
|
|
5253
5266
|
key: 1,
|
|
5254
5267
|
src: (_d = vue.unref(currentItem)) == null ? void 0 : _d.src,
|
|
5255
5268
|
autoplay: "",
|
|
5256
|
-
controls: ""
|
|
5269
|
+
controls: "",
|
|
5270
|
+
class: "vw90"
|
|
5257
5271
|
}, null, 8, ["src"])) : ((_e2 = vue.unref(currentItem)) == null ? void 0 : _e2.type) === "pdf" ? (vue.openBlock(), vue.createElementBlock("embed", {
|
|
5258
5272
|
key: 2,
|
|
5259
5273
|
src: normalizeURL((_f = vue.unref(currentItem)) == null ? void 0 : _f.src),
|
|
5260
5274
|
type: "application/pdf",
|
|
5261
5275
|
width: "100%",
|
|
5262
5276
|
height: "1080",
|
|
5263
|
-
title: (_g = vue.unref(currentItem)) == null ? void 0 : _g.name
|
|
5264
|
-
|
|
5277
|
+
title: (_g = vue.unref(currentItem)) == null ? void 0 : _g.name,
|
|
5278
|
+
class: "vw90"
|
|
5279
|
+
}, null, 8, _hoisted_4$i)) : (vue.openBlock(), vue.createElementBlock("div", _hoisted_5$g, [
|
|
5265
5280
|
vue.createElementVNode("p", null, "File: " + vue.toDisplayString((_h = vue.unref(currentItem)) == null ? void 0 : _h.name), 1),
|
|
5266
5281
|
vue.createElementVNode("p", null, "Type: " + vue.toDisplayString((_i = vue.unref(currentItem)) == null ? void 0 : _i.type), 1),
|
|
5267
5282
|
vue.createElementVNode("a", {
|
|
5268
5283
|
href: (_j = vue.unref(currentItem)) == null ? void 0 : _j.src,
|
|
5269
5284
|
target: "_blank"
|
|
5270
|
-
}, "Open file", 8,
|
|
5285
|
+
}, "Open file", 8, _hoisted_6$b)
|
|
5271
5286
|
]))
|
|
5272
5287
|
]),
|
|
5273
|
-
vue.unref(group) && vue.unref(group).length > 1 ? (vue.openBlock(), vue.createElementBlock("div",
|
|
5274
|
-
vue.createVNode(vue.unref(Btn), {
|
|
5275
|
-
class: "navigation-btn oval user-select-none",
|
|
5276
|
-
icon: "arrow_back",
|
|
5277
|
-
onClick: prev
|
|
5278
|
-
}),
|
|
5279
|
-
vue.createVNode(vue.unref(Btn), {
|
|
5280
|
-
class: "navigation-btn oval user-select-none",
|
|
5281
|
-
icon: "arrow_forward",
|
|
5282
|
-
onClick: next
|
|
5283
|
-
})
|
|
5284
|
-
])) : vue.createCommentVNode("", true),
|
|
5285
|
-
vue.unref(group) && vue.unref(group).length > 1 ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_7$5, [
|
|
5288
|
+
vue.unref(group) && vue.unref(group).length > 1 ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_7$6, [
|
|
5286
5289
|
(vue.openBlock(true), vue.createElementBlock(vue.Fragment, null, vue.renderList(vue.unref(group), (item, index2) => {
|
|
5287
5290
|
return vue.openBlock(), vue.createElementBlock(vue.Fragment, { key: index2 }, [
|
|
5288
5291
|
item.type === "image" ? (vue.openBlock(), vue.createElementBlock("img", {
|
|
@@ -5291,7 +5294,7 @@ const _sfc_main$R = /* @__PURE__ */ vue.defineComponent({
|
|
|
5291
5294
|
src: item.src,
|
|
5292
5295
|
alt: "",
|
|
5293
5296
|
onClick: ($event) => selectItem(index2)
|
|
5294
|
-
}, null, 10, _hoisted_8$3)) : (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$
|
|
5297
|
+
}, null, 10, _hoisted_8$3)) : (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$R), {
|
|
5295
5298
|
key: 1,
|
|
5296
5299
|
class: vue.normalizeClass(["thumbnail object-fit-cover hover opacity-5 round flex bg-white justify-content-center align-items-center flex-shrink-0", { active: vue.unref(currentIndex) === index2 }]),
|
|
5297
5300
|
icon: "description",
|
|
@@ -5316,7 +5319,7 @@ const _export_sfc = (sfc, props2) => {
|
|
|
5316
5319
|
}
|
|
5317
5320
|
return target;
|
|
5318
5321
|
};
|
|
5319
|
-
const Lightbox$1 = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
5322
|
+
const Lightbox$1 = /* @__PURE__ */ _export_sfc(_sfc_main$S, [["__scopeId", "data-v-c061443c"]]);
|
|
5320
5323
|
const groups = {};
|
|
5321
5324
|
const lightboxDirective = {
|
|
5322
5325
|
mounted(el, binding) {
|
|
@@ -5526,7 +5529,7 @@ function frmRow(...children2) {
|
|
|
5526
5529
|
function bglForm(idOrField, ...schema) {
|
|
5527
5530
|
if (typeof idOrField === "string") {
|
|
5528
5531
|
return {
|
|
5529
|
-
$el: vue.markRaw(_sfc_main$
|
|
5532
|
+
$el: vue.markRaw(_sfc_main$t),
|
|
5530
5533
|
id: idOrField,
|
|
5531
5534
|
attrs: {
|
|
5532
5535
|
schema: [idOrField, ...schema]
|
|
@@ -5534,7 +5537,7 @@ function bglForm(idOrField, ...schema) {
|
|
|
5534
5537
|
};
|
|
5535
5538
|
}
|
|
5536
5539
|
return {
|
|
5537
|
-
$el: vue.markRaw(_sfc_main$
|
|
5540
|
+
$el: vue.markRaw(_sfc_main$t),
|
|
5538
5541
|
attrs: {
|
|
5539
5542
|
schema: [idOrField, ...schema]
|
|
5540
5543
|
}
|
|
@@ -5755,9 +5758,9 @@ const ModalPlugin = {
|
|
|
5755
5758
|
return vue.h(ModalForm, props2, modal.componentSlots);
|
|
5756
5759
|
}
|
|
5757
5760
|
if (modal.modalType === "confirm") {
|
|
5758
|
-
return vue.h(_sfc_main$
|
|
5761
|
+
return vue.h(_sfc_main$w, props2, {});
|
|
5759
5762
|
}
|
|
5760
|
-
return vue.h(_sfc_main$
|
|
5763
|
+
return vue.h(_sfc_main$O, props2, modal.componentSlots);
|
|
5761
5764
|
});
|
|
5762
5765
|
}
|
|
5763
5766
|
});
|
|
@@ -5783,7 +5786,7 @@ function useLocalStorage(key, initialValue) {
|
|
|
5783
5786
|
}, { immediate: true, deep: true });
|
|
5784
5787
|
return value;
|
|
5785
5788
|
}
|
|
5786
|
-
const _sfc_main$
|
|
5789
|
+
const _sfc_main$R = /* @__PURE__ */ vue.defineComponent({
|
|
5787
5790
|
__name: "MaterialIcon",
|
|
5788
5791
|
props: {
|
|
5789
5792
|
icon: {},
|
|
@@ -5801,13 +5804,13 @@ const _sfc_main$Q = /* @__PURE__ */ vue.defineComponent({
|
|
|
5801
5804
|
};
|
|
5802
5805
|
}
|
|
5803
5806
|
});
|
|
5804
|
-
const _hoisted_1$
|
|
5807
|
+
const _hoisted_1$N = { class: "full-nav" };
|
|
5805
5808
|
const _hoisted_2$B = { class: "nav-scroll" };
|
|
5806
5809
|
const _hoisted_3$p = { class: "nav-links-wrapper" };
|
|
5807
5810
|
const _hoisted_4$h = { class: "tooltip" };
|
|
5808
5811
|
const _hoisted_5$f = { class: "bot-buttons-wrapper" };
|
|
5809
5812
|
const _hoisted_6$a = { class: "tooltip" };
|
|
5810
|
-
const _sfc_main$
|
|
5813
|
+
const _sfc_main$Q = /* @__PURE__ */ vue.defineComponent({
|
|
5811
5814
|
__name: "NavBar",
|
|
5812
5815
|
props: {
|
|
5813
5816
|
footerLinks: { default: () => [] },
|
|
@@ -5832,12 +5835,12 @@ const _sfc_main$P = /* @__PURE__ */ vue.defineComponent({
|
|
|
5832
5835
|
onClick: _cache[0] || (_cache[0] = ($event) => isOpen.value = !isOpen.value),
|
|
5833
5836
|
onKeypress: _cache[1] || (_cache[1] = vue.withKeys(($event) => isOpen.value = !isOpen.value, ["enter"]))
|
|
5834
5837
|
}, [
|
|
5835
|
-
vue.createVNode(vue.unref(_sfc_main$
|
|
5838
|
+
vue.createVNode(vue.unref(_sfc_main$R), {
|
|
5836
5839
|
icon: "chevron_right",
|
|
5837
5840
|
class: "top-arrow"
|
|
5838
5841
|
})
|
|
5839
5842
|
], 32),
|
|
5840
|
-
vue.createElementVNode("div", _hoisted_1$
|
|
5843
|
+
vue.createElementVNode("div", _hoisted_1$N, [
|
|
5841
5844
|
vue.createElementVNode("div", _hoisted_2$B, [
|
|
5842
5845
|
vue.createElementVNode("div", _hoisted_3$p, [
|
|
5843
5846
|
(vue.openBlock(true), vue.createElementBlock(vue.Fragment, null, vue.renderList(_ctx.links, (link) => {
|
|
@@ -5851,7 +5854,7 @@ const _sfc_main$P = /* @__PURE__ */ vue.defineComponent({
|
|
|
5851
5854
|
}
|
|
5852
5855
|
}, {
|
|
5853
5856
|
default: vue.withCtx(() => [
|
|
5854
|
-
vue.createVNode(vue.unref(_sfc_main$
|
|
5857
|
+
vue.createVNode(vue.unref(_sfc_main$R), {
|
|
5855
5858
|
icon: link.icon
|
|
5856
5859
|
}, null, 8, ["icon"]),
|
|
5857
5860
|
vue.createElementVNode("div", _hoisted_4$h, vue.toDisplayString(link.label), 1)
|
|
@@ -5873,7 +5876,7 @@ const _sfc_main$P = /* @__PURE__ */ vue.defineComponent({
|
|
|
5873
5876
|
}
|
|
5874
5877
|
}, {
|
|
5875
5878
|
default: vue.withCtx(() => [
|
|
5876
|
-
vue.createVNode(vue.unref(_sfc_main$
|
|
5879
|
+
vue.createVNode(vue.unref(_sfc_main$R), {
|
|
5877
5880
|
icon: link.icon
|
|
5878
5881
|
}, null, 8, ["icon"]),
|
|
5879
5882
|
vue.createElementVNode("div", _hoisted_6$a, vue.toDisplayString(link.label), 1)
|
|
@@ -5888,8 +5891,8 @@ const _sfc_main$P = /* @__PURE__ */ vue.defineComponent({
|
|
|
5888
5891
|
};
|
|
5889
5892
|
}
|
|
5890
5893
|
});
|
|
5891
|
-
const NavBar = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
5892
|
-
const _hoisted_1$
|
|
5894
|
+
const NavBar = /* @__PURE__ */ _export_sfc(_sfc_main$Q, [["__scopeId", "data-v-776cab4a"]]);
|
|
5895
|
+
const _hoisted_1$M = {
|
|
5893
5896
|
key: 0,
|
|
5894
5897
|
class: "loading"
|
|
5895
5898
|
};
|
|
@@ -5897,7 +5900,7 @@ const _hoisted_2$A = {
|
|
|
5897
5900
|
key: 1,
|
|
5898
5901
|
class: "bgl_btn-flex"
|
|
5899
5902
|
};
|
|
5900
|
-
const _sfc_main$
|
|
5903
|
+
const _sfc_main$P = /* @__PURE__ */ vue.defineComponent({
|
|
5901
5904
|
__name: "Btn",
|
|
5902
5905
|
props: {
|
|
5903
5906
|
disabled: { type: Boolean, default: false },
|
|
@@ -5991,8 +5994,8 @@ const _sfc_main$O = /* @__PURE__ */ vue.defineComponent({
|
|
|
5991
5994
|
onClick: vue.withModifiers(_ctx.onClick, ["stop"])
|
|
5992
5995
|
}, {
|
|
5993
5996
|
default: vue.withCtx(() => [
|
|
5994
|
-
_ctx.loading ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_1$
|
|
5995
|
-
_ctx.icon ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$
|
|
5997
|
+
_ctx.loading ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_1$M)) : (vue.openBlock(), vue.createElementBlock("div", _hoisted_2$A, [
|
|
5998
|
+
_ctx.icon ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$R), {
|
|
5996
5999
|
key: 0,
|
|
5997
6000
|
icon: _ctx.icon
|
|
5998
6001
|
}, null, 8, ["icon"])) : vue.createCommentVNode("", true),
|
|
@@ -6000,7 +6003,7 @@ const _sfc_main$O = /* @__PURE__ */ vue.defineComponent({
|
|
|
6000
6003
|
!vue.unref(slots).default && _ctx.value ? (vue.openBlock(), vue.createElementBlock(vue.Fragment, { key: 1 }, [
|
|
6001
6004
|
vue.createTextVNode(vue.toDisplayString(_ctx.value), 1)
|
|
6002
6005
|
], 64)) : vue.createCommentVNode("", true),
|
|
6003
|
-
props2["icon.end"] ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$
|
|
6006
|
+
props2["icon.end"] ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$R), {
|
|
6004
6007
|
key: 2,
|
|
6005
6008
|
icon: props2["icon.end"]
|
|
6006
6009
|
}, null, 8, ["icon"])) : vue.createCommentVNode("", true)
|
|
@@ -6011,8 +6014,8 @@ const _sfc_main$O = /* @__PURE__ */ vue.defineComponent({
|
|
|
6011
6014
|
};
|
|
6012
6015
|
}
|
|
6013
6016
|
});
|
|
6014
|
-
const Btn = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
6015
|
-
const _hoisted_1$
|
|
6017
|
+
const Btn = /* @__PURE__ */ _export_sfc(_sfc_main$P, [["__scopeId", "data-v-895cf824"]]);
|
|
6018
|
+
const _hoisted_1$L = {
|
|
6016
6019
|
key: 0,
|
|
6017
6020
|
class: "tool-bar"
|
|
6018
6021
|
};
|
|
@@ -6024,7 +6027,7 @@ const _hoisted_3$o = {
|
|
|
6024
6027
|
key: 2,
|
|
6025
6028
|
class: "modal-footer mt-1"
|
|
6026
6029
|
};
|
|
6027
|
-
const _sfc_main$
|
|
6030
|
+
const _sfc_main$O = /* @__PURE__ */ vue.defineComponent({
|
|
6028
6031
|
__name: "Modal",
|
|
6029
6032
|
props: {
|
|
6030
6033
|
side: { type: Boolean },
|
|
@@ -6080,7 +6083,7 @@ const _sfc_main$N = /* @__PURE__ */ vue.defineComponent({
|
|
|
6080
6083
|
onClick: _cache[1] || (_cache[1] = () => _ctx.dismissable ? closeModal() : ""),
|
|
6081
6084
|
onKeydown: vue.withKeys(closeModal, ["esc"])
|
|
6082
6085
|
}, [
|
|
6083
|
-
vue.createVNode(vue.unref(_sfc_main$
|
|
6086
|
+
vue.createVNode(vue.unref(_sfc_main$E), {
|
|
6084
6087
|
class: "modal",
|
|
6085
6088
|
style: vue.normalizeStyle({ ...maxWidth.value }),
|
|
6086
6089
|
onClick: _cache[0] || (_cache[0] = vue.withModifiers(() => {
|
|
@@ -6089,7 +6092,7 @@ const _sfc_main$N = /* @__PURE__ */ vue.defineComponent({
|
|
|
6089
6092
|
default: vue.withCtx(() => {
|
|
6090
6093
|
var _a2;
|
|
6091
6094
|
return [
|
|
6092
|
-
vue.unref(slots).toolbar || _ctx.title ? (vue.openBlock(), vue.createElementBlock("header", _hoisted_1$
|
|
6095
|
+
vue.unref(slots).toolbar || _ctx.title ? (vue.openBlock(), vue.createElementBlock("header", _hoisted_1$L, [
|
|
6093
6096
|
vue.renderSlot(_ctx.$slots, "toolbar"),
|
|
6094
6097
|
vue.createVNode(vue.unref(Btn), {
|
|
6095
6098
|
style: vue.normalizeStyle({ float: _ctx.side ? "left" : "right" }),
|
|
@@ -6097,7 +6100,7 @@ const _sfc_main$N = /* @__PURE__ */ vue.defineComponent({
|
|
|
6097
6100
|
icon: "close",
|
|
6098
6101
|
onClick: closeModal
|
|
6099
6102
|
}, null, 8, ["style"]),
|
|
6100
|
-
_ctx.title ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$
|
|
6103
|
+
_ctx.title ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$C), {
|
|
6101
6104
|
key: 0,
|
|
6102
6105
|
class: "modal-title",
|
|
6103
6106
|
tag: "h3",
|
|
@@ -6131,7 +6134,7 @@ const _sfc_main$N = /* @__PURE__ */ vue.defineComponent({
|
|
|
6131
6134
|
};
|
|
6132
6135
|
}
|
|
6133
6136
|
});
|
|
6134
|
-
const _sfc_main$
|
|
6137
|
+
const _sfc_main$N = /* @__PURE__ */ vue.defineComponent({
|
|
6135
6138
|
__name: "ModalForm",
|
|
6136
6139
|
props: /* @__PURE__ */ vue.mergeModels({
|
|
6137
6140
|
side: { type: Boolean },
|
|
@@ -6192,7 +6195,7 @@ const _sfc_main$M = /* @__PURE__ */ vue.defineComponent({
|
|
|
6192
6195
|
}
|
|
6193
6196
|
__expose({ setFormValues });
|
|
6194
6197
|
return (_ctx, _cache) => {
|
|
6195
|
-
return vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$
|
|
6198
|
+
return vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$O), {
|
|
6196
6199
|
ref_key: "modal",
|
|
6197
6200
|
ref: modal,
|
|
6198
6201
|
side: _ctx.side,
|
|
@@ -6203,7 +6206,7 @@ const _sfc_main$M = /* @__PURE__ */ vue.defineComponent({
|
|
|
6203
6206
|
"onUpdate:visible": _cache[1] || (_cache[1] = ($event) => emit2("update:visible", $event))
|
|
6204
6207
|
}, vue.createSlots({
|
|
6205
6208
|
default: vue.withCtx(() => [
|
|
6206
|
-
vue.createVNode(vue.unref(_sfc_main$
|
|
6209
|
+
vue.createVNode(vue.unref(_sfc_main$t), {
|
|
6207
6210
|
ref_key: "form",
|
|
6208
6211
|
ref: form,
|
|
6209
6212
|
modelValue: formData.value,
|
|
@@ -6245,12 +6248,12 @@ const _sfc_main$M = /* @__PURE__ */ vue.defineComponent({
|
|
|
6245
6248
|
};
|
|
6246
6249
|
}
|
|
6247
6250
|
});
|
|
6248
|
-
const ModalForm = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
6249
|
-
const _hoisted_1$
|
|
6251
|
+
const ModalForm = /* @__PURE__ */ _export_sfc(_sfc_main$N, [["__scopeId", "data-v-083a1b2d"]]);
|
|
6252
|
+
const _hoisted_1$K = { class: "accordion-item" };
|
|
6250
6253
|
const _hoisted_2$y = ["aria-expanded", "aria-controls"];
|
|
6251
6254
|
const _hoisted_3$n = { class: "accordion-label" };
|
|
6252
6255
|
const _hoisted_4$g = ["id", "aria-hidden"];
|
|
6253
|
-
const _sfc_main$
|
|
6256
|
+
const _sfc_main$M = /* @__PURE__ */ vue.defineComponent({
|
|
6254
6257
|
__name: "AccordionItem",
|
|
6255
6258
|
props: {
|
|
6256
6259
|
label: {},
|
|
@@ -6287,7 +6290,7 @@ const _sfc_main$L = /* @__PURE__ */ vue.defineComponent({
|
|
|
6287
6290
|
else if (accordionState.openItem === id) accordionState.openItem = null;
|
|
6288
6291
|
}
|
|
6289
6292
|
return (_ctx, _cache) => {
|
|
6290
|
-
return vue.openBlock(), vue.createElementBlock("div", _hoisted_1$
|
|
6293
|
+
return vue.openBlock(), vue.createElementBlock("div", _hoisted_1$K, [
|
|
6291
6294
|
vue.createElementVNode("button", {
|
|
6292
6295
|
"aria-expanded": vue.unref(isOpen) ? "true" : "false",
|
|
6293
6296
|
class: "accordion-head",
|
|
@@ -6300,7 +6303,7 @@ const _sfc_main$L = /* @__PURE__ */ vue.defineComponent({
|
|
|
6300
6303
|
vue.createElementVNode("div", {
|
|
6301
6304
|
class: vue.normalizeClass(["accordion-icon", { open: vue.unref(isOpen) }])
|
|
6302
6305
|
}, [
|
|
6303
|
-
vue.createVNode(vue.unref(_sfc_main$
|
|
6306
|
+
vue.createVNode(vue.unref(_sfc_main$R), { icon: "expand_more" })
|
|
6304
6307
|
], 2)
|
|
6305
6308
|
], 8, _hoisted_2$y),
|
|
6306
6309
|
vue.createVNode(vue.Transition, { name: "expand" }, {
|
|
@@ -6320,13 +6323,13 @@ const _sfc_main$L = /* @__PURE__ */ vue.defineComponent({
|
|
|
6320
6323
|
};
|
|
6321
6324
|
}
|
|
6322
6325
|
});
|
|
6323
|
-
const AccordionItem = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
6324
|
-
const _sfc_main$
|
|
6325
|
-
const _hoisted_1$
|
|
6326
|
+
const AccordionItem = /* @__PURE__ */ _export_sfc(_sfc_main$M, [["__scopeId", "data-v-f87b579d"]]);
|
|
6327
|
+
const _sfc_main$L = {};
|
|
6328
|
+
const _hoisted_1$J = { class: "list-wrap bgl_card thin grid overflow-hidden h-100 pt-0 pb-05 px-0 m_pb-0" };
|
|
6326
6329
|
const _hoisted_2$x = { class: "p-1" };
|
|
6327
6330
|
const _hoisted_3$m = { class: "list-content auto-flow-rows align-items-start overflow-y h-100" };
|
|
6328
6331
|
function _sfc_render$2(_ctx, _cache) {
|
|
6329
|
-
return vue.openBlock(), vue.createElementBlock("div", _hoisted_1$
|
|
6332
|
+
return vue.openBlock(), vue.createElementBlock("div", _hoisted_1$J, [
|
|
6330
6333
|
vue.createElementVNode("div", _hoisted_2$x, [
|
|
6331
6334
|
vue.renderSlot(_ctx.$slots, "header")
|
|
6332
6335
|
]),
|
|
@@ -6335,10 +6338,10 @@ function _sfc_render$2(_ctx, _cache) {
|
|
|
6335
6338
|
])
|
|
6336
6339
|
]);
|
|
6337
6340
|
}
|
|
6338
|
-
const ListView = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
6339
|
-
const _hoisted_1$
|
|
6341
|
+
const ListView = /* @__PURE__ */ _export_sfc(_sfc_main$L, [["render", _sfc_render$2]]);
|
|
6342
|
+
const _hoisted_1$I = { class: "no-margin ellipsis line-height-14 pb-025" };
|
|
6340
6343
|
const _hoisted_2$w = { class: "txt12 no-margin txt-gray ellipsis" };
|
|
6341
|
-
const _sfc_main$
|
|
6344
|
+
const _sfc_main$K = /* @__PURE__ */ vue.defineComponent({
|
|
6342
6345
|
__name: "ListItem",
|
|
6343
6346
|
props: {
|
|
6344
6347
|
src: {},
|
|
@@ -6354,7 +6357,8 @@ const _sfc_main$J = /* @__PURE__ */ vue.defineComponent({
|
|
|
6354
6357
|
return (_ctx, _cache) => {
|
|
6355
6358
|
return vue.openBlock(), vue.createBlock(vue.resolveDynamicComponent(_ctx.to ? "RouterLink" : "div"), {
|
|
6356
6359
|
to: _ctx.to,
|
|
6357
|
-
class: vue.normalizeClass(["flex gap-1 list-item", { "notClickable": !(_ctx.to || _ctx.onClick), "no-border-list": _ctx.flat }])
|
|
6360
|
+
class: vue.normalizeClass(["flex gap-1 list-item", { "notClickable": !(_ctx.to || _ctx.onClick), "no-border-list": _ctx.flat }]),
|
|
6361
|
+
onClick: _ctx.onClick
|
|
6358
6362
|
}, {
|
|
6359
6363
|
default: vue.withCtx(() => [
|
|
6360
6364
|
_ctx.src || _ctx.showAvatar ? (vue.openBlock(), vue.createBlock(vue.unref(Avatar), {
|
|
@@ -6364,14 +6368,14 @@ const _sfc_main$J = /* @__PURE__ */ vue.defineComponent({
|
|
|
6364
6368
|
src: _ctx.src,
|
|
6365
6369
|
size: 40
|
|
6366
6370
|
}, null, 8, ["name", "src"])) : vue.createCommentVNode("", true),
|
|
6367
|
-
_ctx.icon ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$
|
|
6371
|
+
_ctx.icon ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$R), {
|
|
6368
6372
|
key: 1,
|
|
6369
6373
|
size: "1.2",
|
|
6370
6374
|
class: "color-primary",
|
|
6371
6375
|
icon: _ctx.icon
|
|
6372
6376
|
}, null, 8, ["icon"])) : vue.createCommentVNode("", true),
|
|
6373
6377
|
vue.createElementVNode("div", null, [
|
|
6374
|
-
vue.createElementVNode("p", _hoisted_1$
|
|
6378
|
+
vue.createElementVNode("p", _hoisted_1$I, [
|
|
6375
6379
|
vue.createTextVNode(vue.toDisplayString(_ctx.title) + " ", 1),
|
|
6376
6380
|
vue.renderSlot(_ctx.$slots, "default")
|
|
6377
6381
|
]),
|
|
@@ -6382,13 +6386,13 @@ const _sfc_main$J = /* @__PURE__ */ vue.defineComponent({
|
|
|
6382
6386
|
])
|
|
6383
6387
|
]),
|
|
6384
6388
|
_: 3
|
|
6385
|
-
}, 8, ["to", "class"]);
|
|
6389
|
+
}, 8, ["to", "class", "onClick"]);
|
|
6386
6390
|
};
|
|
6387
6391
|
}
|
|
6388
6392
|
});
|
|
6389
|
-
const _hoisted_1$
|
|
6393
|
+
const _hoisted_1$H = { class: "page-top" };
|
|
6390
6394
|
const _hoisted_2$v = { class: "top-title m-0" };
|
|
6391
|
-
const _sfc_main$
|
|
6395
|
+
const _sfc_main$J = /* @__PURE__ */ vue.defineComponent({
|
|
6392
6396
|
__name: "PageTitle",
|
|
6393
6397
|
props: {
|
|
6394
6398
|
value: {
|
|
@@ -6398,7 +6402,7 @@ const _sfc_main$I = /* @__PURE__ */ vue.defineComponent({
|
|
|
6398
6402
|
},
|
|
6399
6403
|
setup(__props) {
|
|
6400
6404
|
return (_ctx, _cache) => {
|
|
6401
|
-
return vue.openBlock(), vue.createElementBlock("div", _hoisted_1$
|
|
6405
|
+
return vue.openBlock(), vue.createElementBlock("div", _hoisted_1$H, [
|
|
6402
6406
|
vue.createElementVNode("h1", _hoisted_2$v, [
|
|
6403
6407
|
vue.renderSlot(_ctx.$slots, "default"),
|
|
6404
6408
|
vue.createTextVNode(" " + vue.toDisplayString(__props.value), 1)
|
|
@@ -6722,7 +6726,7 @@ function useVerticalVirtualList(options, list) {
|
|
|
6722
6726
|
};
|
|
6723
6727
|
}
|
|
6724
6728
|
const _withScopeId$2 = (n2) => (vue.pushScopeId("data-v-5441d9cd"), n2 = n2(), vue.popScopeId(), n2);
|
|
6725
|
-
const _hoisted_1$
|
|
6729
|
+
const _hoisted_1$G = {
|
|
6726
6730
|
key: 0,
|
|
6727
6731
|
class: "loading-table-wrapper z-99 h-100 w-100 absolute inset"
|
|
6728
6732
|
};
|
|
@@ -6733,13 +6737,13 @@ const _hoisted_3$l = [
|
|
|
6733
6737
|
const _hoisted_4$f = { class: "infinite-wrapper" };
|
|
6734
6738
|
const _hoisted_5$e = { class: "row first-row" };
|
|
6735
6739
|
const _hoisted_6$9 = { key: 0 };
|
|
6736
|
-
const _hoisted_7$
|
|
6740
|
+
const _hoisted_7$5 = ["onClick"];
|
|
6737
6741
|
const _hoisted_8$2 = { class: "flex" };
|
|
6738
6742
|
const _hoisted_9$2 = ["onClick"];
|
|
6739
6743
|
const _hoisted_10$1 = { key: 0 };
|
|
6740
6744
|
const _hoisted_11$1 = ["value"];
|
|
6741
6745
|
const _hoisted_12$1 = { key: 1 };
|
|
6742
|
-
const _sfc_main$
|
|
6746
|
+
const _sfc_main$I = /* @__PURE__ */ vue.defineComponent({
|
|
6743
6747
|
__name: "TableSchema",
|
|
6744
6748
|
props: /* @__PURE__ */ vue.mergeModels({
|
|
6745
6749
|
selectedItems: {},
|
|
@@ -6876,7 +6880,7 @@ const _sfc_main$H = /* @__PURE__ */ vue.defineComponent({
|
|
|
6876
6880
|
return vue.openBlock(), vue.createElementBlock("div", vue.mergeProps({ class: "table-list-wrap h-100" }, vue.unref(containerProps), {
|
|
6877
6881
|
class: { "loading-table": loading.value }
|
|
6878
6882
|
}), [
|
|
6879
|
-
loading.value ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_1$
|
|
6883
|
+
loading.value ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_1$G, _hoisted_3$l)) : (vue.openBlock(), vue.createElementBlock("div", vue.normalizeProps(vue.mergeProps({ key: 1 }, vue.unref(wrapperProps))), [
|
|
6880
6884
|
vue.createElementVNode("table", _hoisted_4$f, [
|
|
6881
6885
|
vue.createElementVNode("thead", _hoisted_5$e, [
|
|
6882
6886
|
vue.unref(isSelectable) ? (vue.openBlock(), vue.createElementBlock("th", _hoisted_6$9, [
|
|
@@ -6900,13 +6904,13 @@ const _sfc_main$H = /* @__PURE__ */ vue.defineComponent({
|
|
|
6900
6904
|
vue.createElementVNode("div", {
|
|
6901
6905
|
class: vue.normalizeClass(["list-arrows", { sorted: vue.unref(sortField) === field.id }])
|
|
6902
6906
|
}, [
|
|
6903
|
-
vue.createVNode(vue.unref(_sfc_main$
|
|
6907
|
+
vue.createVNode(vue.unref(_sfc_main$R), {
|
|
6904
6908
|
class: vue.normalizeClass({ desc: vue.unref(sortDirection) === "DESC" }),
|
|
6905
6909
|
icon: "keyboard_arrow_up"
|
|
6906
6910
|
}, null, 8, ["class"])
|
|
6907
6911
|
], 2)
|
|
6908
6912
|
])
|
|
6909
|
-
], 8, _hoisted_7$
|
|
6913
|
+
], 8, _hoisted_7$5);
|
|
6910
6914
|
}), 128))
|
|
6911
6915
|
]),
|
|
6912
6916
|
vue.createElementVNode("tbody", null, [
|
|
@@ -6940,7 +6944,7 @@ const _sfc_main$H = /* @__PURE__ */ vue.defineComponent({
|
|
|
6940
6944
|
row,
|
|
6941
6945
|
field
|
|
6942
6946
|
}, void 0, true) : (vue.openBlock(), vue.createElementBlock("div", _hoisted_12$1, [
|
|
6943
|
-
vue.createVNode(vue.unref(_sfc_main$
|
|
6947
|
+
vue.createVNode(vue.unref(_sfc_main$s), {
|
|
6944
6948
|
class: "embedded-field",
|
|
6945
6949
|
field,
|
|
6946
6950
|
modelValue: row,
|
|
@@ -6958,16 +6962,16 @@ const _sfc_main$H = /* @__PURE__ */ vue.defineComponent({
|
|
|
6958
6962
|
};
|
|
6959
6963
|
}
|
|
6960
6964
|
});
|
|
6961
|
-
const TableSchema = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
6962
|
-
const _sfc_main$
|
|
6963
|
-
const _hoisted_1$
|
|
6965
|
+
const TableSchema = /* @__PURE__ */ _export_sfc(_sfc_main$I, [["__scopeId", "data-v-5441d9cd"]]);
|
|
6966
|
+
const _sfc_main$H = {};
|
|
6967
|
+
const _hoisted_1$F = { class: "flex space-between" };
|
|
6964
6968
|
function _sfc_render$1(_ctx, _cache) {
|
|
6965
|
-
return vue.openBlock(), vue.createElementBlock("div", _hoisted_1$
|
|
6969
|
+
return vue.openBlock(), vue.createElementBlock("div", _hoisted_1$F, [
|
|
6966
6970
|
vue.renderSlot(_ctx.$slots, "default")
|
|
6967
6971
|
]);
|
|
6968
6972
|
}
|
|
6969
|
-
const TopBar = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
6970
|
-
const _sfc_main$
|
|
6973
|
+
const TopBar = /* @__PURE__ */ _export_sfc(_sfc_main$H, [["render", _sfc_render$1]]);
|
|
6974
|
+
const _sfc_main$G = {};
|
|
6971
6975
|
function _sfc_render(_ctx, _cache) {
|
|
6972
6976
|
const _component_router_view = vue.resolveComponent("router-view");
|
|
6973
6977
|
return vue.openBlock(), vue.createBlock(_component_router_view, null, {
|
|
@@ -6989,8 +6993,8 @@ function _sfc_render(_ctx, _cache) {
|
|
|
6989
6993
|
_: 1
|
|
6990
6994
|
});
|
|
6991
6995
|
}
|
|
6992
|
-
const RouterWrapper = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
6993
|
-
const _hoisted_1$
|
|
6996
|
+
const RouterWrapper = /* @__PURE__ */ _export_sfc(_sfc_main$G, [["render", _sfc_render]]);
|
|
6997
|
+
const _hoisted_1$E = {
|
|
6994
6998
|
key: 0,
|
|
6995
6999
|
class: "data"
|
|
6996
7000
|
};
|
|
@@ -7005,13 +7009,13 @@ const _hoisted_6$8 = {
|
|
|
7005
7009
|
key: 0,
|
|
7006
7010
|
class: "data-row"
|
|
7007
7011
|
};
|
|
7008
|
-
const _hoisted_7$
|
|
7012
|
+
const _hoisted_7$4 = { class: "key" };
|
|
7009
7013
|
const _hoisted_8$1 = { class: "m-0" };
|
|
7010
7014
|
const _hoisted_9$1 = {
|
|
7011
7015
|
key: 0,
|
|
7012
7016
|
class: "m-0"
|
|
7013
7017
|
};
|
|
7014
|
-
const _sfc_main$
|
|
7018
|
+
const _sfc_main$F = /* @__PURE__ */ vue.defineComponent({
|
|
7015
7019
|
__name: "DataPreview",
|
|
7016
7020
|
props: /* @__PURE__ */ vue.mergeModels({
|
|
7017
7021
|
showFields: {},
|
|
@@ -7047,8 +7051,8 @@ const _sfc_main$E = /* @__PURE__ */ vue.defineComponent({
|
|
|
7047
7051
|
const computedSchema = vue.computed(() => getFallbackSchema([itemData.value], props2.showFields));
|
|
7048
7052
|
return (_ctx, _cache) => {
|
|
7049
7053
|
var _a2;
|
|
7050
|
-
return __props.data ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_1$
|
|
7051
|
-
_ctx.title ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$
|
|
7054
|
+
return __props.data ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_1$E, [
|
|
7055
|
+
_ctx.title ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$C), {
|
|
7052
7056
|
key: 0,
|
|
7053
7057
|
label: _ctx.title
|
|
7054
7058
|
}, null, 8, ["label"])) : vue.createCommentVNode("", true),
|
|
@@ -7060,7 +7064,7 @@ const _sfc_main$E = /* @__PURE__ */ vue.defineComponent({
|
|
|
7060
7064
|
vue.createElementVNode("div", _hoisted_3$k, [
|
|
7061
7065
|
vue.createElementVNode("p", _hoisted_4$e, vue.toDisplayString((field == null ? void 0 : field.label) || vue.unref(keyToLabel)(field.id)), 1)
|
|
7062
7066
|
]),
|
|
7063
|
-
vue.createVNode(vue.unref(_sfc_main$
|
|
7067
|
+
vue.createVNode(vue.unref(_sfc_main$s), {
|
|
7064
7068
|
modelValue: itemData.value,
|
|
7065
7069
|
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => itemData.value = $event),
|
|
7066
7070
|
label: "",
|
|
@@ -7074,7 +7078,7 @@ const _sfc_main$E = /* @__PURE__ */ vue.defineComponent({
|
|
|
7074
7078
|
(vue.openBlock(true), vue.createElementBlock(vue.Fragment, null, vue.renderList(computedSchema.value, ({ id, label }) => {
|
|
7075
7079
|
return vue.openBlock(), vue.createElementBlock(vue.Fragment, { key: id }, [
|
|
7076
7080
|
!isUnset(itemData.value[id]) ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_6$8, [
|
|
7077
|
-
vue.createElementVNode("div", _hoisted_7$
|
|
7081
|
+
vue.createElementVNode("div", _hoisted_7$4, [
|
|
7078
7082
|
vue.createElementVNode("p", _hoisted_8$1, vue.toDisplayString(label), 1)
|
|
7079
7083
|
]),
|
|
7080
7084
|
vue.createElementVNode("div", null, [
|
|
@@ -7089,12 +7093,12 @@ const _sfc_main$E = /* @__PURE__ */ vue.defineComponent({
|
|
|
7089
7093
|
};
|
|
7090
7094
|
}
|
|
7091
7095
|
});
|
|
7092
|
-
const DataPreview = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
7093
|
-
const _hoisted_1$
|
|
7096
|
+
const DataPreview = /* @__PURE__ */ _export_sfc(_sfc_main$F, [["__scopeId", "data-v-4d174f13"]]);
|
|
7097
|
+
const _hoisted_1$D = {
|
|
7094
7098
|
key: 0,
|
|
7095
7099
|
class: "card_label"
|
|
7096
7100
|
};
|
|
7097
|
-
const _sfc_main$
|
|
7101
|
+
const _sfc_main$E = /* @__PURE__ */ vue.defineComponent({
|
|
7098
7102
|
__name: "Card",
|
|
7099
7103
|
props: {
|
|
7100
7104
|
label: {},
|
|
@@ -7122,7 +7126,7 @@ const _sfc_main$D = /* @__PURE__ */ vue.defineComponent({
|
|
|
7122
7126
|
}])
|
|
7123
7127
|
}, {
|
|
7124
7128
|
default: vue.withCtx(() => [
|
|
7125
|
-
_ctx.label ? (vue.openBlock(), vue.createElementBlock("span", _hoisted_1$
|
|
7129
|
+
_ctx.label ? (vue.openBlock(), vue.createElementBlock("span", _hoisted_1$D, vue.toDisplayString(_ctx.label), 1)) : vue.createCommentVNode("", true),
|
|
7126
7130
|
vue.renderSlot(_ctx.$slots, "default")
|
|
7127
7131
|
]),
|
|
7128
7132
|
_: 3
|
|
@@ -7130,8 +7134,8 @@ const _sfc_main$D = /* @__PURE__ */ vue.defineComponent({
|
|
|
7130
7134
|
};
|
|
7131
7135
|
}
|
|
7132
7136
|
});
|
|
7133
|
-
const _hoisted_1$
|
|
7134
|
-
const _sfc_main$
|
|
7137
|
+
const _hoisted_1$C = ["src", "alt"];
|
|
7138
|
+
const _sfc_main$D = /* @__PURE__ */ vue.defineComponent({
|
|
7135
7139
|
__name: "Avatar",
|
|
7136
7140
|
props: {
|
|
7137
7141
|
fallback: {},
|
|
@@ -7149,7 +7153,7 @@ const _sfc_main$C = /* @__PURE__ */ vue.defineComponent({
|
|
|
7149
7153
|
key: 0,
|
|
7150
7154
|
src: _ctx.src,
|
|
7151
7155
|
alt: _ctx.name
|
|
7152
|
-
}, null, 8, _hoisted_1$
|
|
7156
|
+
}, null, 8, _hoisted_1$C)) : (vue.openBlock(), vue.createElementBlock("p", {
|
|
7153
7157
|
key: 1,
|
|
7154
7158
|
style: vue.normalizeStyle({ "line-height": `${_ctx.size}px`, "font-size": `calc(1.5rem * ${_ctx.size} / 50)` })
|
|
7155
7159
|
}, vue.toDisplayString(_ctx.fallback || vue.unref(initials)(_ctx.name || "")), 5))
|
|
@@ -7157,8 +7161,8 @@ const _sfc_main$C = /* @__PURE__ */ vue.defineComponent({
|
|
|
7157
7161
|
};
|
|
7158
7162
|
}
|
|
7159
7163
|
});
|
|
7160
|
-
const Avatar = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
7161
|
-
const _sfc_main$
|
|
7164
|
+
const Avatar = /* @__PURE__ */ _export_sfc(_sfc_main$D, [["__scopeId", "data-v-dd2f6734"]]);
|
|
7165
|
+
const _sfc_main$C = /* @__PURE__ */ vue.defineComponent({
|
|
7162
7166
|
__name: "Title",
|
|
7163
7167
|
props: {
|
|
7164
7168
|
value: {
|
|
@@ -7186,7 +7190,7 @@ const _sfc_main$B = /* @__PURE__ */ vue.defineComponent({
|
|
|
7186
7190
|
};
|
|
7187
7191
|
}
|
|
7188
7192
|
});
|
|
7189
|
-
const _sfc_main$
|
|
7193
|
+
const _sfc_main$B = /* @__PURE__ */ vue.defineComponent({
|
|
7190
7194
|
__name: "Accordion",
|
|
7191
7195
|
setup(__props) {
|
|
7192
7196
|
const state2 = vue.reactive({
|
|
@@ -7200,9 +7204,9 @@ const _sfc_main$A = /* @__PURE__ */ vue.defineComponent({
|
|
|
7200
7204
|
};
|
|
7201
7205
|
}
|
|
7202
7206
|
});
|
|
7203
|
-
const _hoisted_1$
|
|
7207
|
+
const _hoisted_1$B = ["dismissable"];
|
|
7204
7208
|
const _hoisted_2$s = { class: "m-0" };
|
|
7205
|
-
const _sfc_main$
|
|
7209
|
+
const _sfc_main$A = /* @__PURE__ */ vue.defineComponent({
|
|
7206
7210
|
__name: "Alert",
|
|
7207
7211
|
props: {
|
|
7208
7212
|
message: {},
|
|
@@ -7223,7 +7227,7 @@ const _sfc_main$z = /* @__PURE__ */ vue.defineComponent({
|
|
|
7223
7227
|
class: vue.normalizeClass(["alert", [_ctx.type]]),
|
|
7224
7228
|
dismissable: _ctx.dismissable
|
|
7225
7229
|
}, [
|
|
7226
|
-
_ctx.icon !== "none" ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$
|
|
7230
|
+
_ctx.icon !== "none" ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$R), {
|
|
7227
7231
|
key: 0,
|
|
7228
7232
|
class: "alert_icon",
|
|
7229
7233
|
icon: _ctx.icon || _ctx.type,
|
|
@@ -7238,12 +7242,12 @@ const _sfc_main$z = /* @__PURE__ */ vue.defineComponent({
|
|
|
7238
7242
|
icon: "close",
|
|
7239
7243
|
onClick: _cache[0] || (_cache[0] = ($event) => isDismissed.value = true)
|
|
7240
7244
|
})
|
|
7241
|
-
], 10, _hoisted_1$
|
|
7245
|
+
], 10, _hoisted_1$B)) : vue.createCommentVNode("", true);
|
|
7242
7246
|
};
|
|
7243
7247
|
}
|
|
7244
7248
|
});
|
|
7245
|
-
const Alert = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
7246
|
-
const _sfc_main$
|
|
7249
|
+
const Alert = /* @__PURE__ */ _export_sfc(_sfc_main$A, [["__scopeId", "data-v-1322d9e1"]]);
|
|
7250
|
+
const _sfc_main$z = /* @__PURE__ */ vue.defineComponent({
|
|
7247
7251
|
__name: "Badge",
|
|
7248
7252
|
props: {
|
|
7249
7253
|
color: {},
|
|
@@ -7259,13 +7263,13 @@ const _sfc_main$y = /* @__PURE__ */ vue.defineComponent({
|
|
|
7259
7263
|
return vue.openBlock(), vue.createElementBlock("div", {
|
|
7260
7264
|
class: vue.normalizeClass(["pill", [_ctx.color]])
|
|
7261
7265
|
}, [
|
|
7262
|
-
_ctx.icon ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$
|
|
7266
|
+
_ctx.icon ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$R), {
|
|
7263
7267
|
key: 0,
|
|
7264
7268
|
class: "inline",
|
|
7265
7269
|
icon: _ctx.icon
|
|
7266
7270
|
}, null, 8, ["icon"])) : vue.createCommentVNode("", true),
|
|
7267
7271
|
vue.createTextVNode(" " + vue.toDisplayString(_ctx.text) + " ", 1),
|
|
7268
|
-
props2["icon.end"] ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$
|
|
7272
|
+
props2["icon.end"] ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$R), {
|
|
7269
7273
|
key: 1,
|
|
7270
7274
|
class: "inline",
|
|
7271
7275
|
icon: props2["icon.end"]
|
|
@@ -7274,10 +7278,10 @@ const _sfc_main$y = /* @__PURE__ */ vue.defineComponent({
|
|
|
7274
7278
|
};
|
|
7275
7279
|
}
|
|
7276
7280
|
});
|
|
7277
|
-
const Badge = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
7278
|
-
const _hoisted_1$
|
|
7281
|
+
const Badge = /* @__PURE__ */ _export_sfc(_sfc_main$z, [["__scopeId", "data-v-532b36ae"]]);
|
|
7282
|
+
const _hoisted_1$A = ["src"];
|
|
7279
7283
|
const _hoisted_2$r = ["src", "autoplay", "muted", "loop", "controls"];
|
|
7280
|
-
const _sfc_main$
|
|
7284
|
+
const _sfc_main$y = /* @__PURE__ */ vue.defineComponent({
|
|
7281
7285
|
__name: "BglVideo",
|
|
7282
7286
|
props: {
|
|
7283
7287
|
src: {},
|
|
@@ -7332,7 +7336,7 @@ const _sfc_main$x = /* @__PURE__ */ vue.defineComponent({
|
|
|
7332
7336
|
allowfullscreen: "",
|
|
7333
7337
|
title: "Video",
|
|
7334
7338
|
allow: "autoplay"
|
|
7335
|
-
}, null, 12, _hoisted_1$
|
|
7339
|
+
}, null, 12, _hoisted_1$A)) : _ctx.src ? (vue.openBlock(), vue.createElementBlock("video", {
|
|
7336
7340
|
key: 1,
|
|
7337
7341
|
src: _ctx.src,
|
|
7338
7342
|
autoplay: _ctx.autoplay,
|
|
@@ -7346,13 +7350,13 @@ const _sfc_main$x = /* @__PURE__ */ vue.defineComponent({
|
|
|
7346
7350
|
};
|
|
7347
7351
|
}
|
|
7348
7352
|
});
|
|
7349
|
-
const BglVideo = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
7350
|
-
const _hoisted_1$
|
|
7353
|
+
const BglVideo = /* @__PURE__ */ _export_sfc(_sfc_main$y, [["__scopeId", "data-v-8495afe2"]]);
|
|
7354
|
+
const _hoisted_1$z = {
|
|
7351
7355
|
key: 0,
|
|
7352
7356
|
class: "blocker"
|
|
7353
7357
|
};
|
|
7354
7358
|
const _hoisted_2$q = { class: "Handlers" };
|
|
7355
|
-
const _sfc_main$
|
|
7359
|
+
const _sfc_main$x = /* @__PURE__ */ vue.defineComponent({
|
|
7356
7360
|
__name: "Carousel",
|
|
7357
7361
|
props: {
|
|
7358
7362
|
autoHeight: {
|
|
@@ -7500,7 +7504,7 @@ const _sfc_main$w = /* @__PURE__ */ vue.defineComponent({
|
|
|
7500
7504
|
onScrollend: scrollEnd,
|
|
7501
7505
|
onMousedown: startDragging
|
|
7502
7506
|
}, [
|
|
7503
|
-
vue.unref(isDragging) ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_1$
|
|
7507
|
+
vue.unref(isDragging) ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_1$z)) : vue.createCommentVNode("", true),
|
|
7504
7508
|
vue.renderSlot(_ctx.$slots, "default", {}, void 0, true)
|
|
7505
7509
|
], 34),
|
|
7506
7510
|
vue.createElementVNode("div", _hoisted_2$q, [
|
|
@@ -7521,10 +7525,10 @@ const _sfc_main$w = /* @__PURE__ */ vue.defineComponent({
|
|
|
7521
7525
|
};
|
|
7522
7526
|
}
|
|
7523
7527
|
});
|
|
7524
|
-
const Carousel = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
7525
|
-
const _hoisted_1$
|
|
7528
|
+
const Carousel = /* @__PURE__ */ _export_sfc(_sfc_main$x, [["__scopeId", "data-v-1f9c6644"]]);
|
|
7529
|
+
const _hoisted_1$y = { class: "m-0" };
|
|
7526
7530
|
const _hoisted_2$p = { class: "px-1 py-1 pretty m-0" };
|
|
7527
|
-
const _sfc_main$
|
|
7531
|
+
const _sfc_main$w = /* @__PURE__ */ vue.defineComponent({
|
|
7528
7532
|
__name: "ModalConfirm",
|
|
7529
7533
|
props: {
|
|
7530
7534
|
title: {},
|
|
@@ -7540,7 +7544,7 @@ const _sfc_main$v = /* @__PURE__ */ vue.defineComponent({
|
|
|
7540
7544
|
emit2("update:visible");
|
|
7541
7545
|
}
|
|
7542
7546
|
return (_ctx, _cache) => {
|
|
7543
|
-
return vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$
|
|
7547
|
+
return vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$O), {
|
|
7544
7548
|
width: "380px",
|
|
7545
7549
|
dismissable: false,
|
|
7546
7550
|
class: "color-black txt-center"
|
|
@@ -7559,7 +7563,7 @@ const _sfc_main$v = /* @__PURE__ */ vue.defineComponent({
|
|
|
7559
7563
|
})
|
|
7560
7564
|
]),
|
|
7561
7565
|
default: vue.withCtx(() => [
|
|
7562
|
-
vue.createElementVNode("h3", _hoisted_1$
|
|
7566
|
+
vue.createElementVNode("h3", _hoisted_1$y, vue.toDisplayString(_ctx.title), 1),
|
|
7563
7567
|
vue.createElementVNode("p", _hoisted_2$p, vue.toDisplayString(_ctx.message), 1)
|
|
7564
7568
|
]),
|
|
7565
7569
|
_: 1
|
|
@@ -7567,16 +7571,16 @@ const _sfc_main$v = /* @__PURE__ */ vue.defineComponent({
|
|
|
7567
7571
|
};
|
|
7568
7572
|
}
|
|
7569
7573
|
});
|
|
7570
|
-
const _hoisted_1$
|
|
7571
|
-
const _sfc_main$
|
|
7574
|
+
const _hoisted_1$x = { class: "map-test" };
|
|
7575
|
+
const _sfc_main$v = /* @__PURE__ */ vue.defineComponent({
|
|
7572
7576
|
__name: "MapEmbed",
|
|
7573
7577
|
setup(__props) {
|
|
7574
7578
|
return (_ctx, _cache) => {
|
|
7575
|
-
return vue.openBlock(), vue.createElementBlock("div", _hoisted_1$
|
|
7579
|
+
return vue.openBlock(), vue.createElementBlock("div", _hoisted_1$x);
|
|
7576
7580
|
};
|
|
7577
7581
|
}
|
|
7578
7582
|
});
|
|
7579
|
-
const _sfc_main$
|
|
7583
|
+
const _sfc_main$u = /* @__PURE__ */ vue.defineComponent({
|
|
7580
7584
|
__name: "Flag",
|
|
7581
7585
|
props: {
|
|
7582
7586
|
country: {},
|
|
@@ -7606,8 +7610,8 @@ const _sfc_main$t = /* @__PURE__ */ vue.defineComponent({
|
|
|
7606
7610
|
};
|
|
7607
7611
|
}
|
|
7608
7612
|
});
|
|
7609
|
-
const Flag = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
7610
|
-
const _sfc_main$
|
|
7613
|
+
const Flag = /* @__PURE__ */ _export_sfc(_sfc_main$u, [["__scopeId", "data-v-f99f1900"]]);
|
|
7614
|
+
const _sfc_main$t = /* @__PURE__ */ vue.defineComponent({
|
|
7611
7615
|
__name: "BglForm",
|
|
7612
7616
|
props: {
|
|
7613
7617
|
label: {},
|
|
@@ -7699,13 +7703,13 @@ const _sfc_main$s = /* @__PURE__ */ vue.defineComponent({
|
|
|
7699
7703
|
return (_ctx, _cache) => {
|
|
7700
7704
|
return vue.openBlock(), vue.createElementBlock(vue.Fragment, null, [
|
|
7701
7705
|
_ctx.id ? (vue.openBlock(), vue.createElementBlock(vue.Fragment, { key: 0 }, [
|
|
7702
|
-
_ctx.label ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$
|
|
7706
|
+
_ctx.label ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$C), {
|
|
7703
7707
|
key: 0,
|
|
7704
7708
|
tag: "h4",
|
|
7705
7709
|
label: _ctx.label
|
|
7706
7710
|
}, null, 8, ["label"])) : vue.createCommentVNode("", true),
|
|
7707
7711
|
(vue.openBlock(true), vue.createElementBlock(vue.Fragment, null, vue.renderList(computedSchema.value, (field, i2) => {
|
|
7708
|
-
return vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$
|
|
7712
|
+
return vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$s), {
|
|
7709
7713
|
key: field.id || `${i2}p`,
|
|
7710
7714
|
modelValue: vue.unref(data2),
|
|
7711
7715
|
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => vue.isRef(data2) ? data2.value = $event : data2 = $event),
|
|
@@ -7723,13 +7727,13 @@ const _sfc_main$s = /* @__PURE__ */ vue.defineComponent({
|
|
|
7723
7727
|
ref: form,
|
|
7724
7728
|
onSubmit: vue.withModifiers(runSubmit, ["prevent"])
|
|
7725
7729
|
}, [
|
|
7726
|
-
_ctx.label ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$
|
|
7730
|
+
_ctx.label ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$C), {
|
|
7727
7731
|
key: 0,
|
|
7728
7732
|
tag: "h4",
|
|
7729
7733
|
label: _ctx.label
|
|
7730
7734
|
}, null, 8, ["label"])) : vue.createCommentVNode("", true),
|
|
7731
7735
|
(vue.openBlock(true), vue.createElementBlock(vue.Fragment, null, vue.renderList(computedSchema.value, (field, i2) => {
|
|
7732
|
-
return vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$
|
|
7736
|
+
return vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$s), {
|
|
7733
7737
|
key: field.id || `${i2}p`,
|
|
7734
7738
|
modelValue: vue.unref(data2),
|
|
7735
7739
|
"onUpdate:modelValue": _cache[1] || (_cache[1] = ($event) => vue.isRef(data2) ? data2.value = $event : data2 = $event),
|
|
@@ -7748,7 +7752,7 @@ const _sfc_main$s = /* @__PURE__ */ vue.defineComponent({
|
|
|
7748
7752
|
};
|
|
7749
7753
|
}
|
|
7750
7754
|
});
|
|
7751
|
-
const _sfc_main$
|
|
7755
|
+
const _sfc_main$s = /* @__PURE__ */ vue.defineComponent({
|
|
7752
7756
|
__name: "BglField",
|
|
7753
7757
|
props: {
|
|
7754
7758
|
field: {},
|
|
@@ -7763,8 +7767,8 @@ const _sfc_main$r = /* @__PURE__ */ vue.defineComponent({
|
|
|
7763
7767
|
if (props2.field.$el === "select") return SelectInput;
|
|
7764
7768
|
if (props2.field.$el === "toggle") return ToggleInput;
|
|
7765
7769
|
if (props2.field.$el === "check") return CheckInput;
|
|
7766
|
-
if (props2.field.$el === "richtext") return _sfc_main$
|
|
7767
|
-
if (props2.field.$el === "date") return _sfc_main$
|
|
7770
|
+
if (props2.field.$el === "richtext") return _sfc_main$e;
|
|
7771
|
+
if (props2.field.$el === "date") return _sfc_main$p;
|
|
7768
7772
|
return props2.field.$el ?? "div";
|
|
7769
7773
|
});
|
|
7770
7774
|
const formData = vue.computed({
|
|
@@ -7848,8 +7852,8 @@ const _sfc_main$r = /* @__PURE__ */ vue.defineComponent({
|
|
|
7848
7852
|
};
|
|
7849
7853
|
}
|
|
7850
7854
|
});
|
|
7851
|
-
const _hoisted_1$
|
|
7852
|
-
const _sfc_main$
|
|
7855
|
+
const _hoisted_1$w = { key: 0 };
|
|
7856
|
+
const _sfc_main$r = /* @__PURE__ */ vue.defineComponent({
|
|
7853
7857
|
__name: "BglMultiStepForm",
|
|
7854
7858
|
props: /* @__PURE__ */ vue.mergeModels({
|
|
7855
7859
|
bagelFormProps: { default: () => ({}) },
|
|
@@ -7916,8 +7920,8 @@ const _sfc_main$q = /* @__PURE__ */ vue.defineComponent({
|
|
|
7916
7920
|
mode: "out-in"
|
|
7917
7921
|
}, {
|
|
7918
7922
|
default: vue.withCtx(() => [
|
|
7919
|
-
!vue.unref(isStepping) ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_1$
|
|
7920
|
-
vue.createVNode(vue.unref(_sfc_main$
|
|
7923
|
+
!vue.unref(isStepping) ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_1$w, [
|
|
7924
|
+
vue.createVNode(vue.unref(_sfc_main$t), vue.mergeProps({
|
|
7921
7925
|
ref_key: "formRef",
|
|
7922
7926
|
ref: formRef,
|
|
7923
7927
|
modelValue: formData.value,
|
|
@@ -7956,10 +7960,10 @@ const _sfc_main$q = /* @__PURE__ */ vue.defineComponent({
|
|
|
7956
7960
|
};
|
|
7957
7961
|
}
|
|
7958
7962
|
});
|
|
7959
|
-
const _hoisted_1$
|
|
7963
|
+
const _hoisted_1$v = ["title"];
|
|
7960
7964
|
const _hoisted_2$o = ["id", "required"];
|
|
7961
7965
|
const _hoisted_3$j = ["for"];
|
|
7962
|
-
const _sfc_main$
|
|
7966
|
+
const _sfc_main$q = /* @__PURE__ */ vue.defineComponent({
|
|
7963
7967
|
__name: "CheckInput",
|
|
7964
7968
|
props: /* @__PURE__ */ vue.mergeModels({
|
|
7965
7969
|
label: {},
|
|
@@ -7999,11 +8003,11 @@ const _sfc_main$p = /* @__PURE__ */ vue.defineComponent({
|
|
|
7999
8003
|
vue.createTextVNode(vue.toDisplayString(_ctx.label), 1)
|
|
8000
8004
|
], true)
|
|
8001
8005
|
], 8, _hoisted_3$j)
|
|
8002
|
-
], 10, _hoisted_1$
|
|
8006
|
+
], 10, _hoisted_1$v);
|
|
8003
8007
|
};
|
|
8004
8008
|
}
|
|
8005
8009
|
});
|
|
8006
|
-
const CheckInput = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
8010
|
+
const CheckInput = /* @__PURE__ */ _export_sfc(_sfc_main$q, [["__scopeId", "data-v-c0868d55"]]);
|
|
8007
8011
|
function toDate(argument) {
|
|
8008
8012
|
const argStr = Object.prototype.toString.call(argument);
|
|
8009
8013
|
if (argument instanceof Date || typeof argument === "object" && argStr === "[object Date]") {
|
|
@@ -16443,9 +16447,9 @@ const eo = ({
|
|
|
16443
16447
|
Object.entries(go).forEach(([e, t]) => {
|
|
16444
16448
|
e !== "default" && (Hn[e] = t);
|
|
16445
16449
|
});
|
|
16446
|
-
const _hoisted_1$
|
|
16450
|
+
const _hoisted_1$u = ["title"];
|
|
16447
16451
|
const _hoisted_2$n = { key: 0 };
|
|
16448
|
-
const _sfc_main$
|
|
16452
|
+
const _sfc_main$p = /* @__PURE__ */ vue.defineComponent({
|
|
16449
16453
|
__name: "DateInput",
|
|
16450
16454
|
props: {
|
|
16451
16455
|
required: { type: Boolean },
|
|
@@ -16503,14 +16507,14 @@ const _sfc_main$o = /* @__PURE__ */ vue.defineComponent({
|
|
|
16503
16507
|
"minutes-grid-increment": _ctx.minutesGridIncrement,
|
|
16504
16508
|
"start-time": { hours: 8, minutes: 0 }
|
|
16505
16509
|
}), null, 16, ["modelValue", "required", "enable-time-picker", "allowed-dates", "time-picker-inline", "minutes-increment", "minutes-grid-increment"])
|
|
16506
|
-
], 10, _hoisted_1$
|
|
16510
|
+
], 10, _hoisted_1$u);
|
|
16507
16511
|
};
|
|
16508
16512
|
}
|
|
16509
16513
|
});
|
|
16510
|
-
const _hoisted_1$
|
|
16514
|
+
const _hoisted_1$t = ["title"];
|
|
16511
16515
|
const _hoisted_2$m = { key: 0 };
|
|
16512
16516
|
const _hoisted_3$i = ["value", "placeholder"];
|
|
16513
|
-
const _sfc_main$
|
|
16517
|
+
const _sfc_main$o = /* @__PURE__ */ vue.defineComponent({
|
|
16514
16518
|
__name: "JSONInput",
|
|
16515
16519
|
props: {
|
|
16516
16520
|
description: { default: "" },
|
|
@@ -16542,12 +16546,12 @@ const _sfc_main$n = /* @__PURE__ */ vue.defineComponent({
|
|
|
16542
16546
|
placeholder: _ctx.placeholder,
|
|
16543
16547
|
onInput: handleInput
|
|
16544
16548
|
}, null, 42, _hoisted_3$i)
|
|
16545
|
-
], 10, _hoisted_1$
|
|
16549
|
+
], 10, _hoisted_1$t);
|
|
16546
16550
|
};
|
|
16547
16551
|
}
|
|
16548
16552
|
});
|
|
16549
|
-
const JSONInput = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
16550
|
-
const _hoisted_1$
|
|
16553
|
+
const JSONInput = /* @__PURE__ */ _export_sfc(_sfc_main$o, [["__scopeId", "data-v-1cbaeab2"]]);
|
|
16554
|
+
const _hoisted_1$s = { class: "flex gap-05" };
|
|
16551
16555
|
const _hoisted_2$l = ["disabled"];
|
|
16552
16556
|
const _hoisted_3$h = { key: 1 };
|
|
16553
16557
|
const _hoisted_4$d = {
|
|
@@ -16556,7 +16560,8 @@ const _hoisted_4$d = {
|
|
|
16556
16560
|
};
|
|
16557
16561
|
const _hoisted_5$c = ["value"];
|
|
16558
16562
|
const _hoisted_6$7 = ["aria-selected", "onClick", "onKeydown"];
|
|
16559
|
-
const
|
|
16563
|
+
const _hoisted_7$3 = { class: "block" };
|
|
16564
|
+
const _sfc_main$n = /* @__PURE__ */ vue.defineComponent({
|
|
16560
16565
|
__name: "SelectInput",
|
|
16561
16566
|
props: {
|
|
16562
16567
|
options: {},
|
|
@@ -16705,7 +16710,7 @@ const _sfc_main$m = /* @__PURE__ */ vue.defineComponent({
|
|
|
16705
16710
|
onHide: _cache[5] || (_cache[5] = ($event) => updateOpen(false))
|
|
16706
16711
|
}, {
|
|
16707
16712
|
popper: vue.withCtx(() => [
|
|
16708
|
-
vue.createVNode(vue.unref(_sfc_main$
|
|
16713
|
+
vue.createVNode(vue.unref(_sfc_main$E), {
|
|
16709
16714
|
class: "p-05",
|
|
16710
16715
|
style: vue.normalizeStyle({ width: _ctx.fullWidth ? "100%" : "auto" })
|
|
16711
16716
|
}, {
|
|
@@ -16726,7 +16731,7 @@ const _sfc_main$m = /* @__PURE__ */ vue.defineComponent({
|
|
|
16726
16731
|
(vue.openBlock(true), vue.createElementBlock(vue.Fragment, null, vue.renderList(filteredOptions.value, (option2, i2) => {
|
|
16727
16732
|
return vue.openBlock(), vue.createElementBlock("div", {
|
|
16728
16733
|
key: `${option2}${i2}`,
|
|
16729
|
-
class: vue.normalizeClass(["selectinput-option hover gap-1", { selected: isSelected(option2) }]),
|
|
16734
|
+
class: vue.normalizeClass(["selectinput-option hover gap-1 align-items-center", { selected: isSelected(option2) }]),
|
|
16730
16735
|
role: "option",
|
|
16731
16736
|
tabindex: "0",
|
|
16732
16737
|
"aria-selected": isSelected(option2),
|
|
@@ -16734,17 +16739,19 @@ const _sfc_main$m = /* @__PURE__ */ vue.defineComponent({
|
|
|
16734
16739
|
onKeydown: vue.withKeys(($event) => select2(option2), ["enter"])
|
|
16735
16740
|
}, [
|
|
16736
16741
|
_ctx.multiselect ? (vue.openBlock(), vue.createElementBlock(vue.Fragment, { key: 0 }, [
|
|
16737
|
-
isSelected(option2) ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$
|
|
16742
|
+
isSelected(option2) ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$R), {
|
|
16738
16743
|
key: 0,
|
|
16744
|
+
size: 1.1,
|
|
16739
16745
|
icon: "select_check_box"
|
|
16740
16746
|
})) : vue.createCommentVNode("", true),
|
|
16741
|
-
!isSelected(option2) ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$
|
|
16747
|
+
!isSelected(option2) ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$R), {
|
|
16742
16748
|
key: 1,
|
|
16743
16749
|
class: "opacity-3",
|
|
16744
|
-
icon: "check_box_outline_blank"
|
|
16750
|
+
icon: "check_box_outline_blank",
|
|
16751
|
+
size: 1.1
|
|
16745
16752
|
})) : vue.createCommentVNode("", true)
|
|
16746
16753
|
], 64)) : vue.createCommentVNode("", true),
|
|
16747
|
-
vue.createElementVNode("span",
|
|
16754
|
+
vue.createElementVNode("span", _hoisted_7$3, vue.toDisplayString(getLabel(option2)), 1)
|
|
16748
16755
|
], 42, _hoisted_6$7);
|
|
16749
16756
|
}), 128))
|
|
16750
16757
|
], 2),
|
|
@@ -16756,7 +16763,7 @@ const _sfc_main$m = /* @__PURE__ */ vue.defineComponent({
|
|
|
16756
16763
|
default: vue.withCtx(() => [
|
|
16757
16764
|
vue.createElementVNode("label", null, [
|
|
16758
16765
|
vue.createTextVNode(vue.toDisplayString(_ctx.label) + " ", 1),
|
|
16759
|
-
vue.createElementVNode("div", _hoisted_1$
|
|
16766
|
+
vue.createElementVNode("div", _hoisted_1$s, [
|
|
16760
16767
|
vue.createElementVNode("button", {
|
|
16761
16768
|
disabled: _ctx.disabled,
|
|
16762
16769
|
type: "button",
|
|
@@ -16764,7 +16771,7 @@ const _sfc_main$m = /* @__PURE__ */ vue.defineComponent({
|
|
|
16764
16771
|
onKeydown: openOptions,
|
|
16765
16772
|
onClick: _cache[1] || (_cache[1] = ($event) => updateOpen(true))
|
|
16766
16773
|
}, [
|
|
16767
|
-
_ctx.icon ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$
|
|
16774
|
+
_ctx.icon ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$R), {
|
|
16768
16775
|
key: 0,
|
|
16769
16776
|
icon: _ctx.icon
|
|
16770
16777
|
}, null, 8, ["icon"])) : vue.createCommentVNode("", true),
|
|
@@ -16781,7 +16788,7 @@ const _sfc_main$m = /* @__PURE__ */ vue.defineComponent({
|
|
|
16781
16788
|
})
|
|
16782
16789
|
})
|
|
16783
16790
|
])) : vue.createCommentVNode("", true),
|
|
16784
|
-
!_ctx.disabled ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$
|
|
16791
|
+
!_ctx.disabled ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$R), vue.mergeProps({
|
|
16785
16792
|
key: 3,
|
|
16786
16793
|
thin: ""
|
|
16787
16794
|
}, { icon: vue.unref(open) ? "unfold_less" : "unfold_more" }), null, 16)) : vue.createCommentVNode("", true)
|
|
@@ -16802,7 +16809,7 @@ const _sfc_main$m = /* @__PURE__ */ vue.defineComponent({
|
|
|
16802
16809
|
};
|
|
16803
16810
|
}
|
|
16804
16811
|
});
|
|
16805
|
-
const SelectInput = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
16812
|
+
const SelectInput = /* @__PURE__ */ _export_sfc(_sfc_main$n, [["__scopeId", "data-v-be6303fe"]]);
|
|
16806
16813
|
/*!
|
|
16807
16814
|
* vue-draggable-next v2.2.0
|
|
16808
16815
|
* (c) 2023 Anish George
|
|
@@ -19282,13 +19289,13 @@ const VueDraggableNext = vue.defineComponent({
|
|
|
19282
19289
|
}
|
|
19283
19290
|
}
|
|
19284
19291
|
});
|
|
19285
|
-
const _hoisted_1$
|
|
19292
|
+
const _hoisted_1$r = ["title"];
|
|
19286
19293
|
const _hoisted_2$k = { class: "bagel-input" };
|
|
19287
19294
|
const _hoisted_3$g = { class: "table-side-scroll" };
|
|
19288
19295
|
const _hoisted_4$c = { class: "table-header" };
|
|
19289
19296
|
const _hoisted_5$b = { class: "table-reorder" };
|
|
19290
19297
|
const _hoisted_6$6 = { class: "table-action" };
|
|
19291
|
-
const _sfc_main$
|
|
19298
|
+
const _sfc_main$m = /* @__PURE__ */ vue.defineComponent({
|
|
19292
19299
|
__name: "TableField",
|
|
19293
19300
|
props: {
|
|
19294
19301
|
description: { default: "" },
|
|
@@ -19385,7 +19392,7 @@ const _sfc_main$l = /* @__PURE__ */ vue.defineComponent({
|
|
|
19385
19392
|
class: "flex table-row"
|
|
19386
19393
|
}, [
|
|
19387
19394
|
vue.createElementVNode("div", _hoisted_5$b, [
|
|
19388
|
-
vue.createVNode(vue.unref(_sfc_main$
|
|
19395
|
+
vue.createVNode(vue.unref(_sfc_main$R), { icon: "more_vert" })
|
|
19389
19396
|
]),
|
|
19390
19397
|
(vue.openBlock(true), vue.createElementBlock(vue.Fragment, null, vue.renderList((_a3 = vue.unref(entityMeta)) == null ? void 0 : _a3.fields, (field) => {
|
|
19391
19398
|
return vue.openBlock(), vue.createElementBlock("div", {
|
|
@@ -19402,7 +19409,7 @@ const _sfc_main$l = /* @__PURE__ */ vue.defineComponent({
|
|
|
19402
19409
|
], 2);
|
|
19403
19410
|
}), 128)),
|
|
19404
19411
|
vue.createElementVNode("div", _hoisted_6$6, [
|
|
19405
|
-
vue.createVNode(vue.unref(_sfc_main$
|
|
19412
|
+
vue.createVNode(vue.unref(_sfc_main$R), {
|
|
19406
19413
|
icon: "delete",
|
|
19407
19414
|
onClick: ($event) => removeRow2(index2)
|
|
19408
19415
|
}, null, 8, ["onClick"])
|
|
@@ -19428,17 +19435,17 @@ const _sfc_main$l = /* @__PURE__ */ vue.defineComponent({
|
|
|
19428
19435
|
]),
|
|
19429
19436
|
_: 1
|
|
19430
19437
|
})
|
|
19431
|
-
], 8, _hoisted_1$
|
|
19438
|
+
], 8, _hoisted_1$r);
|
|
19432
19439
|
};
|
|
19433
19440
|
}
|
|
19434
19441
|
});
|
|
19435
|
-
const TableField = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
19436
|
-
const _hoisted_1$
|
|
19442
|
+
const TableField = /* @__PURE__ */ _export_sfc(_sfc_main$m, [["__scopeId", "data-v-515f5dc9"]]);
|
|
19443
|
+
const _hoisted_1$q = ["title"];
|
|
19437
19444
|
const _hoisted_2$j = ["for"];
|
|
19438
19445
|
const _hoisted_3$f = ["id", "title", "autocomplete", "type", "placeholder", "disabled", "required", "pattern"];
|
|
19439
19446
|
const _hoisted_4$b = ["id", "title", "type", "rows", "placeholder", "disabled", "required", "pattern"];
|
|
19440
19447
|
const _hoisted_5$a = { key: 2 };
|
|
19441
|
-
const _sfc_main$
|
|
19448
|
+
const _sfc_main$l = /* @__PURE__ */ vue.defineComponent({
|
|
19442
19449
|
__name: "TextInput",
|
|
19443
19450
|
props: {
|
|
19444
19451
|
id: {},
|
|
@@ -19559,22 +19566,22 @@ const _sfc_main$k = /* @__PURE__ */ vue.defineComponent({
|
|
|
19559
19566
|
]),
|
|
19560
19567
|
_ctx.helptext ? (vue.openBlock(), vue.createElementBlock("p", _hoisted_5$a, vue.toDisplayString(_ctx.helptext), 1)) : vue.createCommentVNode("", true)
|
|
19561
19568
|
], 8, _hoisted_2$j),
|
|
19562
|
-
_ctx.iconStart ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$
|
|
19569
|
+
_ctx.iconStart ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$R), {
|
|
19563
19570
|
key: 0,
|
|
19564
19571
|
class: "iconStart",
|
|
19565
19572
|
icon: _ctx.iconStart
|
|
19566
19573
|
}, null, 8, ["icon"])) : vue.createCommentVNode("", true),
|
|
19567
|
-
_ctx.icon ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$
|
|
19574
|
+
_ctx.icon ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$R), {
|
|
19568
19575
|
key: 1,
|
|
19569
19576
|
icon: _ctx.icon
|
|
19570
19577
|
}, null, 8, ["icon"])) : vue.createCommentVNode("", true)
|
|
19571
|
-
], 10, _hoisted_1$
|
|
19578
|
+
], 10, _hoisted_1$q);
|
|
19572
19579
|
};
|
|
19573
19580
|
}
|
|
19574
19581
|
});
|
|
19575
|
-
const TextInput = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
19576
|
-
const _hoisted_1$
|
|
19577
|
-
const _sfc_main$
|
|
19582
|
+
const TextInput = /* @__PURE__ */ _export_sfc(_sfc_main$l, [["__scopeId", "data-v-edac341b"]]);
|
|
19583
|
+
const _hoisted_1$p = { class: "primary-checkbox" };
|
|
19584
|
+
const _sfc_main$k = /* @__PURE__ */ vue.defineComponent({
|
|
19578
19585
|
__name: "Checkbox",
|
|
19579
19586
|
props: {
|
|
19580
19587
|
"modelValue": { type: Boolean, ...{ default: false } },
|
|
@@ -19584,7 +19591,7 @@ const _sfc_main$j = /* @__PURE__ */ vue.defineComponent({
|
|
|
19584
19591
|
setup(__props) {
|
|
19585
19592
|
const val = vue.useModel(__props, "modelValue");
|
|
19586
19593
|
return (_ctx, _cache) => {
|
|
19587
|
-
return vue.openBlock(), vue.createElementBlock("label", _hoisted_1$
|
|
19594
|
+
return vue.openBlock(), vue.createElementBlock("label", _hoisted_1$p, [
|
|
19588
19595
|
vue.renderSlot(_ctx.$slots, "label", {}, void 0, true),
|
|
19589
19596
|
vue.withDirectives(vue.createElementVNode("input", {
|
|
19590
19597
|
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => val.value = $event),
|
|
@@ -19596,10 +19603,10 @@ const _sfc_main$j = /* @__PURE__ */ vue.defineComponent({
|
|
|
19596
19603
|
};
|
|
19597
19604
|
}
|
|
19598
19605
|
});
|
|
19599
|
-
const Checkbox = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
19600
|
-
const _hoisted_1$
|
|
19606
|
+
const Checkbox = /* @__PURE__ */ _export_sfc(_sfc_main$k, [["__scopeId", "data-v-032d6226"]]);
|
|
19607
|
+
const _hoisted_1$o = ["title"];
|
|
19601
19608
|
const _hoisted_2$i = ["id", "placeholder", "required"];
|
|
19602
|
-
const _sfc_main$
|
|
19609
|
+
const _sfc_main$j = /* @__PURE__ */ vue.defineComponent({
|
|
19603
19610
|
__name: "ColorPicker",
|
|
19604
19611
|
props: {
|
|
19605
19612
|
label: {},
|
|
@@ -19641,11 +19648,11 @@ const _sfc_main$i = /* @__PURE__ */ vue.defineComponent({
|
|
|
19641
19648
|
[vue.vModelText, inputVal.value]
|
|
19642
19649
|
])
|
|
19643
19650
|
])
|
|
19644
|
-
], 10, _hoisted_1$
|
|
19651
|
+
], 10, _hoisted_1$o)) : vue.createCommentVNode("", true);
|
|
19645
19652
|
};
|
|
19646
19653
|
}
|
|
19647
19654
|
});
|
|
19648
|
-
const _hoisted_1$
|
|
19655
|
+
const _hoisted_1$n = { class: "datetime-wrap" };
|
|
19649
19656
|
const _hoisted_2$h = { class: "date-wrap" };
|
|
19650
19657
|
const _hoisted_3$e = {
|
|
19651
19658
|
key: 0,
|
|
@@ -19653,7 +19660,7 @@ const _hoisted_3$e = {
|
|
|
19653
19660
|
};
|
|
19654
19661
|
const _hoisted_4$a = ["id", "name", "value"];
|
|
19655
19662
|
const _hoisted_5$9 = ["for"];
|
|
19656
|
-
const _sfc_main$
|
|
19663
|
+
const _sfc_main$i = /* @__PURE__ */ vue.defineComponent({
|
|
19657
19664
|
__name: "DatePicker",
|
|
19658
19665
|
props: {
|
|
19659
19666
|
label: {},
|
|
@@ -19682,7 +19689,7 @@ const _sfc_main$h = /* @__PURE__ */ vue.defineComponent({
|
|
|
19682
19689
|
return `${hour}:${minute}`;
|
|
19683
19690
|
});
|
|
19684
19691
|
return (_ctx, _cache) => {
|
|
19685
|
-
return vue.openBlock(), vue.createElementBlock("div", _hoisted_1$
|
|
19692
|
+
return vue.openBlock(), vue.createElementBlock("div", _hoisted_1$n, [
|
|
19686
19693
|
vue.createElementVNode("div", _hoisted_2$h, [
|
|
19687
19694
|
vue.createVNode(vue.unref(Hn), vue.mergeProps({
|
|
19688
19695
|
modelValue: selectedDate.value,
|
|
@@ -19723,12 +19730,12 @@ const _sfc_main$h = /* @__PURE__ */ vue.defineComponent({
|
|
|
19723
19730
|
};
|
|
19724
19731
|
}
|
|
19725
19732
|
});
|
|
19726
|
-
const _hoisted_1$
|
|
19733
|
+
const _hoisted_1$m = { class: "bagel-input" };
|
|
19727
19734
|
const _hoisted_2$g = { class: "pb-025" };
|
|
19728
19735
|
const _hoisted_3$d = { class: "flex gap-05 flex-wrap" };
|
|
19729
19736
|
const _hoisted_4$9 = ["id", "name", "value", "checked"];
|
|
19730
19737
|
const _hoisted_5$8 = ["for"];
|
|
19731
|
-
const _sfc_main$
|
|
19738
|
+
const _sfc_main$h = /* @__PURE__ */ vue.defineComponent({
|
|
19732
19739
|
__name: "RadioPillsInput",
|
|
19733
19740
|
props: {
|
|
19734
19741
|
options: {},
|
|
@@ -19769,7 +19776,7 @@ const _sfc_main$g = /* @__PURE__ */ vue.defineComponent({
|
|
|
19769
19776
|
selectedValue.value = props2.modelValue;
|
|
19770
19777
|
});
|
|
19771
19778
|
return (_ctx, _cache) => {
|
|
19772
|
-
return vue.openBlock(), vue.createElementBlock("div", _hoisted_1$
|
|
19779
|
+
return vue.openBlock(), vue.createElementBlock("div", _hoisted_1$m, [
|
|
19773
19780
|
vue.createElementVNode("label", _hoisted_2$g, vue.toDisplayString(_ctx.label), 1),
|
|
19774
19781
|
vue.createElementVNode("div", _hoisted_3$d, [
|
|
19775
19782
|
(vue.openBlock(true), vue.createElementBlock(vue.Fragment, null, vue.renderList(_ctx.options, (option2, index2) => {
|
|
@@ -19795,8 +19802,8 @@ const _sfc_main$g = /* @__PURE__ */ vue.defineComponent({
|
|
|
19795
19802
|
};
|
|
19796
19803
|
}
|
|
19797
19804
|
});
|
|
19798
|
-
const RadioPillsInput = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
19799
|
-
const _hoisted_1$
|
|
19805
|
+
const RadioPillsInput = /* @__PURE__ */ _export_sfc(_sfc_main$h, [["__scopeId", "data-v-d86ce838"]]);
|
|
19806
|
+
const _hoisted_1$l = { class: "bagel-input" };
|
|
19800
19807
|
const _hoisted_2$f = {
|
|
19801
19808
|
key: 0,
|
|
19802
19809
|
class: "bgl-multi-preview"
|
|
@@ -19819,8 +19826,8 @@ const _hoisted_10 = {
|
|
|
19819
19826
|
class: "progress"
|
|
19820
19827
|
};
|
|
19821
19828
|
const _hoisted_11 = ["src"];
|
|
19822
|
-
const _hoisted_12 = { class: "p-1 flex column hover fileUploadPlaceHolder" };
|
|
19823
|
-
const _sfc_main$
|
|
19829
|
+
const _hoisted_12 = { class: "p-1 flex column hover fileUploadPlaceHolder justify-content-center mb-05" };
|
|
19830
|
+
const _sfc_main$g = /* @__PURE__ */ vue.defineComponent({
|
|
19824
19831
|
__name: "FileUpload",
|
|
19825
19832
|
props: {
|
|
19826
19833
|
label: {},
|
|
@@ -19969,7 +19976,7 @@ const _sfc_main$f = /* @__PURE__ */ vue.defineComponent({
|
|
|
19969
19976
|
}
|
|
19970
19977
|
return (_ctx, _cache) => {
|
|
19971
19978
|
const _directive_lightbox = vue.resolveDirective("lightbox");
|
|
19972
|
-
return vue.openBlock(), vue.createElementBlock("div", _hoisted_1$
|
|
19979
|
+
return vue.openBlock(), vue.createElementBlock("div", _hoisted_1$l, [
|
|
19973
19980
|
vue.createElementVNode("label", null, vue.toDisplayString(_ctx.label), 1),
|
|
19974
19981
|
vue.createElementVNode("div", {
|
|
19975
19982
|
class: vue.normalizeClass(["fileUploadWrap", {
|
|
@@ -20000,7 +20007,7 @@ const _sfc_main$f = /* @__PURE__ */ vue.defineComponent({
|
|
|
20000
20007
|
alt: ""
|
|
20001
20008
|
}, null, 8, _hoisted_3$c)), [
|
|
20002
20009
|
[_directive_lightbox]
|
|
20003
|
-
]) : (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$
|
|
20010
|
+
]) : (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$R), {
|
|
20004
20011
|
key: 1,
|
|
20005
20012
|
icon: "draft",
|
|
20006
20013
|
class: "multi-preview"
|
|
@@ -20028,7 +20035,7 @@ const _sfc_main$f = /* @__PURE__ */ vue.defineComponent({
|
|
|
20028
20035
|
src: fileToUrl(fileQ.file),
|
|
20029
20036
|
alt: ""
|
|
20030
20037
|
}, null, 8, _hoisted_5$7)) : vue.createCommentVNode("", true)
|
|
20031
|
-
], 64)) : (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$
|
|
20038
|
+
], 64)) : (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$R), {
|
|
20032
20039
|
key: 1,
|
|
20033
20040
|
icon: "draft",
|
|
20034
20041
|
class: "multi-preview"
|
|
@@ -20039,7 +20046,7 @@ const _sfc_main$f = /* @__PURE__ */ vue.defineComponent({
|
|
|
20039
20046
|
style: vue.normalizeStyle([`--p:${fileQ.progress}`, { "--b": "2px" }])
|
|
20040
20047
|
}, [
|
|
20041
20048
|
fileQ.progress < 100 ? (vue.openBlock(), vue.createElementBlock("span", _hoisted_7$2, vue.toDisplayString(`${fileQ.progress.toFixed(0)}`), 1)) : vue.createCommentVNode("", true),
|
|
20042
|
-
vue.createVNode(vue.unref(_sfc_main$
|
|
20049
|
+
vue.createVNode(vue.unref(_sfc_main$R), {
|
|
20043
20050
|
class: "success",
|
|
20044
20051
|
icon: "check"
|
|
20045
20052
|
})
|
|
@@ -20047,7 +20054,7 @@ const _sfc_main$f = /* @__PURE__ */ vue.defineComponent({
|
|
|
20047
20054
|
]);
|
|
20048
20055
|
}), 128))
|
|
20049
20056
|
])) : vue.createCommentVNode("", true),
|
|
20050
|
-
!_ctx.multiple ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_8, [
|
|
20057
|
+
!_ctx.multiple && (storageFiles.value.length > 0 || fileQueue.value.length > 0) ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_8, [
|
|
20051
20058
|
(vue.openBlock(true), vue.createElementBlock(vue.Fragment, null, vue.renderList(storageFiles.value, (file) => {
|
|
20052
20059
|
return vue.openBlock(), vue.createElementBlock("div", {
|
|
20053
20060
|
key: file.id,
|
|
@@ -20060,7 +20067,7 @@ const _sfc_main$f = /* @__PURE__ */ vue.defineComponent({
|
|
|
20060
20067
|
alt: ""
|
|
20061
20068
|
}, null, 8, _hoisted_9)), [
|
|
20062
20069
|
[_directive_lightbox]
|
|
20063
|
-
]) : (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$
|
|
20070
|
+
]) : (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$R), {
|
|
20064
20071
|
key: 1,
|
|
20065
20072
|
size: 4,
|
|
20066
20073
|
weight: "2",
|
|
@@ -20079,7 +20086,7 @@ const _sfc_main$f = /* @__PURE__ */ vue.defineComponent({
|
|
|
20079
20086
|
style: vue.normalizeStyle([`--p:${fileQ.progress}`, { "--b": "2px" }])
|
|
20080
20087
|
}, [
|
|
20081
20088
|
fileQ.progress < 100 ? (vue.openBlock(), vue.createElementBlock("span", _hoisted_10, vue.toDisplayString(`${fileQ.progress.toFixed(0)}`), 1)) : vue.createCommentVNode("", true),
|
|
20082
|
-
vue.createVNode(vue.unref(_sfc_main$
|
|
20089
|
+
vue.createVNode(vue.unref(_sfc_main$R), {
|
|
20083
20090
|
class: "success",
|
|
20084
20091
|
icon: "check"
|
|
20085
20092
|
})
|
|
@@ -20101,7 +20108,7 @@ const _sfc_main$f = /* @__PURE__ */ vue.defineComponent({
|
|
|
20101
20108
|
browse
|
|
20102
20109
|
}, () => [
|
|
20103
20110
|
vue.createElementVNode("p", _hoisted_12, [
|
|
20104
|
-
vue.createVNode(vue.unref(_sfc_main$
|
|
20111
|
+
vue.createVNode(vue.unref(_sfc_main$R), { icon: "upload_2" }),
|
|
20105
20112
|
vue.createTextVNode(" Drop files here or click to upload ")
|
|
20106
20113
|
])
|
|
20107
20114
|
], true) : vue.createCommentVNode("", true)
|
|
@@ -20110,16 +20117,16 @@ const _sfc_main$f = /* @__PURE__ */ vue.defineComponent({
|
|
|
20110
20117
|
};
|
|
20111
20118
|
}
|
|
20112
20119
|
});
|
|
20113
|
-
const $el = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
20120
|
+
const $el = /* @__PURE__ */ _export_sfc(_sfc_main$g, [["__scopeId", "data-v-e8b1219f"]]);
|
|
20114
20121
|
const _withScopeId$1 = (n2) => (vue.pushScopeId("data-v-06b95183"), n2 = n2(), vue.popScopeId(), n2);
|
|
20115
|
-
const _hoisted_1$
|
|
20122
|
+
const _hoisted_1$k = ["title"];
|
|
20116
20123
|
const _hoisted_2$e = /* @__PURE__ */ _withScopeId$1(() => /* @__PURE__ */ vue.createElementVNode("span", { class: "slider round" }, null, -1));
|
|
20117
20124
|
const _hoisted_3$b = [
|
|
20118
20125
|
_hoisted_2$e
|
|
20119
20126
|
];
|
|
20120
20127
|
const _hoisted_4$7 = ["id", "required"];
|
|
20121
20128
|
const _hoisted_5$6 = ["for"];
|
|
20122
|
-
const _sfc_main$
|
|
20129
|
+
const _sfc_main$f = /* @__PURE__ */ vue.defineComponent({
|
|
20123
20130
|
__name: "ToggleInput",
|
|
20124
20131
|
props: /* @__PURE__ */ vue.mergeModels({
|
|
20125
20132
|
label: {},
|
|
@@ -20161,11 +20168,11 @@ const _sfc_main$e = /* @__PURE__ */ vue.defineComponent({
|
|
|
20161
20168
|
vue.createTextVNode(vue.toDisplayString(_ctx.label), 1)
|
|
20162
20169
|
], true)
|
|
20163
20170
|
], 8, _hoisted_5$6)
|
|
20164
|
-
], 10, _hoisted_1$
|
|
20171
|
+
], 10, _hoisted_1$k);
|
|
20165
20172
|
};
|
|
20166
20173
|
}
|
|
20167
20174
|
});
|
|
20168
|
-
const ToggleInput = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
20175
|
+
const ToggleInput = /* @__PURE__ */ _export_sfc(_sfc_main$f, [["__scopeId", "data-v-06b95183"]]);
|
|
20169
20176
|
function OrderedMap(content) {
|
|
20170
20177
|
this.content = content;
|
|
20171
20178
|
}
|
|
@@ -43980,12 +43987,12 @@ const TableHeader = Node$2.create({
|
|
|
43980
43987
|
return ["th", mergeAttributes(this.options.HTMLAttributes, HTMLAttributes), 0];
|
|
43981
43988
|
}
|
|
43982
43989
|
});
|
|
43983
|
-
const _hoisted_1$
|
|
43990
|
+
const _hoisted_1$j = { class: "RichText" };
|
|
43984
43991
|
const _hoisted_2$d = {
|
|
43985
43992
|
key: 0,
|
|
43986
43993
|
class: "RichText-tools"
|
|
43987
43994
|
};
|
|
43988
|
-
const _sfc_main$
|
|
43995
|
+
const _sfc_main$e = /* @__PURE__ */ vue.defineComponent({
|
|
43989
43996
|
__name: "RichText",
|
|
43990
43997
|
props: {
|
|
43991
43998
|
modelValue: {}
|
|
@@ -44210,7 +44217,7 @@ const _sfc_main$d = /* @__PURE__ */ vue.defineComponent({
|
|
|
44210
44217
|
});
|
|
44211
44218
|
return (_ctx, _cache) => {
|
|
44212
44219
|
const _directive_tooltip = vue.resolveDirective("tooltip");
|
|
44213
|
-
return vue.openBlock(), vue.createElementBlock("div", _hoisted_1$
|
|
44220
|
+
return vue.openBlock(), vue.createElementBlock("div", _hoisted_1$j, [
|
|
44214
44221
|
vue.unref(editor) ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_2$d, [
|
|
44215
44222
|
(vue.openBlock(), vue.createElementBlock(vue.Fragment, null, vue.renderList(config, (item) => {
|
|
44216
44223
|
var _a2;
|
|
@@ -46318,13 +46325,13 @@ function parsePhoneNumber$1() {
|
|
|
46318
46325
|
function parsePhoneNumber() {
|
|
46319
46326
|
return withMetadataArgument(parsePhoneNumber$1, arguments);
|
|
46320
46327
|
}
|
|
46321
|
-
const _hoisted_1$
|
|
46328
|
+
const _hoisted_1$i = ["aria-expanded"];
|
|
46322
46329
|
const _hoisted_2$c = { class: "p-075 tel-countryp-dropdown" };
|
|
46323
46330
|
const _hoisted_3$a = ["aria-selected", "onClick", "onMousemove"];
|
|
46324
46331
|
const _hoisted_4$6 = { class: "tel-country" };
|
|
46325
46332
|
const _hoisted_5$5 = { key: 1 };
|
|
46326
46333
|
const _hoisted_6$4 = ["id", "required", "placeholder", "disabled", "autocomplete", "pattern", "minlength", "maxlength", "name", "readonly", "tabindex", "aria-describedby"];
|
|
46327
|
-
const _sfc_main$
|
|
46334
|
+
const _sfc_main$d = /* @__PURE__ */ vue.defineComponent({
|
|
46328
46335
|
__name: "TelInput",
|
|
46329
46336
|
props: /* @__PURE__ */ vue.mergeModels({
|
|
46330
46337
|
label: {},
|
|
@@ -46633,7 +46640,7 @@ const _sfc_main$c = /* @__PURE__ */ vue.defineComponent({
|
|
|
46633
46640
|
class: "flex gap-05",
|
|
46634
46641
|
onClick: _cache[0] || (_cache[0] = ($event) => vue.isRef(open) ? open.value = true : open = true)
|
|
46635
46642
|
}, [
|
|
46636
|
-
vue.createVNode(vue.unref(_sfc_main$
|
|
46643
|
+
vue.createVNode(vue.unref(_sfc_main$R), {
|
|
46637
46644
|
icon: vue.unref(open) ? "collapse_all" : "expand_all"
|
|
46638
46645
|
}, null, 8, ["icon"]),
|
|
46639
46646
|
computedDropDownOptions.value.showFlags && vue.unref(activeCountryCode) ? (vue.openBlock(), vue.createBlock(vue.unref(Flag), {
|
|
@@ -46671,13 +46678,13 @@ const _sfc_main$c = /* @__PURE__ */ vue.defineComponent({
|
|
|
46671
46678
|
}, null, 44, _hoisted_6$4), [
|
|
46672
46679
|
[vue.vModelText, phone.value]
|
|
46673
46680
|
])
|
|
46674
|
-
], 40, _hoisted_1$
|
|
46681
|
+
], 40, _hoisted_1$i)
|
|
46675
46682
|
])
|
|
46676
46683
|
], 2);
|
|
46677
46684
|
};
|
|
46678
46685
|
}
|
|
46679
46686
|
});
|
|
46680
|
-
const TelInput = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
46687
|
+
const TelInput = /* @__PURE__ */ _export_sfc(_sfc_main$d, [["__scopeId", "data-v-9d176183"]]);
|
|
46681
46688
|
/*!
|
|
46682
46689
|
* Signature Pad v5.0.2 | https://github.com/szimek/signature_pad
|
|
46683
46690
|
* (c) 2024 Szymon Nowak | Released under the MIT license
|
|
@@ -47271,8 +47278,8 @@ class SignaturePad extends SignatureEventTarget {
|
|
|
47271
47278
|
return svg.outerHTML;
|
|
47272
47279
|
}
|
|
47273
47280
|
}
|
|
47274
|
-
const _hoisted_1$
|
|
47275
|
-
const _sfc_main$
|
|
47281
|
+
const _hoisted_1$h = ["disabled"];
|
|
47282
|
+
const _sfc_main$c = /* @__PURE__ */ vue.defineComponent({
|
|
47276
47283
|
__name: "SignaturePad",
|
|
47277
47284
|
props: {
|
|
47278
47285
|
sigOption: {},
|
|
@@ -47404,16 +47411,16 @@ const _sfc_main$b = /* @__PURE__ */ vue.defineComponent({
|
|
|
47404
47411
|
ref: vCanvas,
|
|
47405
47412
|
class: "canvas",
|
|
47406
47413
|
disabled: _ctx.disabled
|
|
47407
|
-
}, null, 8, _hoisted_1$
|
|
47414
|
+
}, null, 8, _hoisted_1$h)
|
|
47408
47415
|
], 34);
|
|
47409
47416
|
};
|
|
47410
47417
|
}
|
|
47411
47418
|
});
|
|
47412
|
-
const _hoisted_1$
|
|
47419
|
+
const _hoisted_1$g = {
|
|
47413
47420
|
class: "toolbar flex gap-025 pb-05 flex-wrap",
|
|
47414
47421
|
role: "toolbar"
|
|
47415
47422
|
};
|
|
47416
|
-
const _sfc_main$
|
|
47423
|
+
const _sfc_main$b = /* @__PURE__ */ vue.defineComponent({
|
|
47417
47424
|
__name: "Toolbar",
|
|
47418
47425
|
props: {
|
|
47419
47426
|
config: {}
|
|
@@ -47443,7 +47450,7 @@ const _sfc_main$a = /* @__PURE__ */ vue.defineComponent({
|
|
|
47443
47450
|
}
|
|
47444
47451
|
return (_ctx, _cache) => {
|
|
47445
47452
|
const _directive_tooltip = vue.resolveDirective("tooltip");
|
|
47446
|
-
return vue.openBlock(), vue.createElementBlock("div", _hoisted_1$
|
|
47453
|
+
return vue.openBlock(), vue.createElementBlock("div", _hoisted_1$g, [
|
|
47447
47454
|
vue.createVNode(SelectInput, {
|
|
47448
47455
|
class: "m-0 w150",
|
|
47449
47456
|
options: ["Text", "Heading 1", "Heading 2", "Heading 3", "Heading 4", "Heading 5", "Heading 6", "Blockquote", "Code"],
|
|
@@ -47644,14 +47651,14 @@ function createTable() {
|
|
|
47644
47651
|
}
|
|
47645
47652
|
}
|
|
47646
47653
|
}
|
|
47647
|
-
const _hoisted_1$
|
|
47654
|
+
const _hoisted_1$f = { class: "rich-text-editor round pt-05 px-1 pb-1" };
|
|
47648
47655
|
const _hoisted_2$b = { class: "editor-container flex flex-stretch gap-1 m_column" };
|
|
47649
47656
|
const _hoisted_3$9 = { class: "content-area rounded p-1 bg-white shadow-light w-100 grid" };
|
|
47650
47657
|
const _hoisted_4$5 = {
|
|
47651
47658
|
key: 0,
|
|
47652
47659
|
class: "preview-area bg-black color-white w-100 rounded p-1"
|
|
47653
47660
|
};
|
|
47654
|
-
const _sfc_main$
|
|
47661
|
+
const _sfc_main$a = /* @__PURE__ */ vue.defineComponent({
|
|
47655
47662
|
__name: "index",
|
|
47656
47663
|
props: {
|
|
47657
47664
|
modelValue: {},
|
|
@@ -47778,8 +47785,8 @@ const _sfc_main$9 = /* @__PURE__ */ vue.defineComponent({
|
|
|
47778
47785
|
}
|
|
47779
47786
|
}
|
|
47780
47787
|
return (_ctx, _cache) => {
|
|
47781
|
-
return vue.openBlock(), vue.createElementBlock("div", _hoisted_1$
|
|
47782
|
-
vue.createVNode(_sfc_main$
|
|
47788
|
+
return vue.openBlock(), vue.createElementBlock("div", _hoisted_1$f, [
|
|
47789
|
+
vue.createVNode(_sfc_main$b, {
|
|
47783
47790
|
config: config.value,
|
|
47784
47791
|
onAction: handleToolbarAction
|
|
47785
47792
|
}, null, 8, ["config"]),
|
|
@@ -47810,8 +47817,8 @@ const _sfc_main$9 = /* @__PURE__ */ vue.defineComponent({
|
|
|
47810
47817
|
};
|
|
47811
47818
|
}
|
|
47812
47819
|
});
|
|
47813
|
-
const index = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
47814
|
-
const _hoisted_1$
|
|
47820
|
+
const index = /* @__PURE__ */ _export_sfc(_sfc_main$a, [["__scopeId", "data-v-c9729efd"]]);
|
|
47821
|
+
const _hoisted_1$e = ["for"];
|
|
47815
47822
|
const _hoisted_2$a = ["id", "name", "value"];
|
|
47816
47823
|
const _hoisted_3$8 = { class: "flex w-100 gap-1 flex-wrap m_gap-05 m_gap-row-025" };
|
|
47817
47824
|
const _hoisted_4$4 = ["src", "alt"];
|
|
@@ -47824,7 +47831,7 @@ const _hoisted_7$1 = {
|
|
|
47824
47831
|
key: 1,
|
|
47825
47832
|
class: "txt-gray txt-12 m-0"
|
|
47826
47833
|
};
|
|
47827
|
-
const _sfc_main$
|
|
47834
|
+
const _sfc_main$9 = /* @__PURE__ */ vue.defineComponent({
|
|
47828
47835
|
__name: "RadioGroup",
|
|
47829
47836
|
props: /* @__PURE__ */ vue.mergeModels({
|
|
47830
47837
|
groupName: {},
|
|
@@ -47877,13 +47884,49 @@ const _sfc_main$8 = /* @__PURE__ */ vue.defineComponent({
|
|
|
47877
47884
|
icon: "delete",
|
|
47878
47885
|
onClick: ($event) => _ctx.$emit("delete", opt)
|
|
47879
47886
|
}, null, 8, ["onClick"])) : vue.createCommentVNode("", true)
|
|
47880
|
-
], 8, _hoisted_1$
|
|
47887
|
+
], 8, _hoisted_1$e);
|
|
47881
47888
|
}), 128))
|
|
47882
47889
|
]);
|
|
47883
47890
|
};
|
|
47884
47891
|
}
|
|
47885
47892
|
});
|
|
47886
|
-
const RadioGroup = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
47893
|
+
const RadioGroup = /* @__PURE__ */ _export_sfc(_sfc_main$9, [["__scopeId", "data-v-ac3dc0e2"]]);
|
|
47894
|
+
const _hoisted_1$d = { class: "relative" };
|
|
47895
|
+
const _sfc_main$8 = /* @__PURE__ */ vue.defineComponent({
|
|
47896
|
+
__name: "PasswordInput",
|
|
47897
|
+
props: /* @__PURE__ */ vue.mergeModels({
|
|
47898
|
+
txtInputProps: {}
|
|
47899
|
+
}, {
|
|
47900
|
+
"modelValue": {},
|
|
47901
|
+
"modelModifiers": {},
|
|
47902
|
+
"showPwd": { default: false },
|
|
47903
|
+
"showPwdModifiers": {}
|
|
47904
|
+
}),
|
|
47905
|
+
emits: ["update:modelValue", "update:showPwd"],
|
|
47906
|
+
setup(__props) {
|
|
47907
|
+
const password = vue.useModel(__props, "modelValue");
|
|
47908
|
+
const showPwd = vue.useModel(__props, "showPwd");
|
|
47909
|
+
const toggleShowPwdIcon = vue.computed(() => showPwd.value ? "visibility_off" : "visibility");
|
|
47910
|
+
const inputType = vue.computed(() => showPwd.value ? "text" : "password");
|
|
47911
|
+
return (_ctx, _cache) => {
|
|
47912
|
+
return vue.openBlock(), vue.createElementBlock("div", _hoisted_1$d, [
|
|
47913
|
+
vue.createVNode(vue.unref(TextInput), vue.mergeProps({
|
|
47914
|
+
modelValue: password.value,
|
|
47915
|
+
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => password.value = $event),
|
|
47916
|
+
class: "mb-0",
|
|
47917
|
+
type: inputType.value
|
|
47918
|
+
}, _ctx.txtInputProps), null, 16, ["modelValue", "type"]),
|
|
47919
|
+
vue.createVNode(vue.unref(Btn), {
|
|
47920
|
+
flat: "",
|
|
47921
|
+
thin: "",
|
|
47922
|
+
class: "m-05 position-bottom-end",
|
|
47923
|
+
icon: toggleShowPwdIcon.value,
|
|
47924
|
+
onClick: _cache[1] || (_cache[1] = ($event) => showPwd.value = !showPwd.value)
|
|
47925
|
+
}, null, 8, ["icon"])
|
|
47926
|
+
]);
|
|
47927
|
+
};
|
|
47928
|
+
}
|
|
47929
|
+
});
|
|
47887
47930
|
function _isPlaceholder(a2) {
|
|
47888
47931
|
return a2 != null && typeof a2 === "object" && a2["@@functional/placeholder"] === true;
|
|
47889
47932
|
}
|
|
@@ -54049,7 +54092,7 @@ const _sfc_main$5 = /* @__PURE__ */ vue.defineComponent({
|
|
|
54049
54092
|
}
|
|
54050
54093
|
return (_ctx, _cache) => {
|
|
54051
54094
|
const _directive_tooltip = vue.resolveDirective("tooltip");
|
|
54052
|
-
return vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$
|
|
54095
|
+
return vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$E), {
|
|
54053
54096
|
class: vue.normalizeClass(["flex column gap-05 pt-1 bgl_sidebar", { wideNav: vue.unref(isOpen) }])
|
|
54054
54097
|
}, {
|
|
54055
54098
|
default: vue.withCtx(() => [
|
|
@@ -54072,7 +54115,7 @@ const _sfc_main$5 = /* @__PURE__ */ vue.defineComponent({
|
|
|
54072
54115
|
class: "nav-button px-075"
|
|
54073
54116
|
}, {
|
|
54074
54117
|
default: vue.withCtx(() => [
|
|
54075
|
-
vue.createVNode(vue.unref(_sfc_main$
|
|
54118
|
+
vue.createVNode(vue.unref(_sfc_main$R), {
|
|
54076
54119
|
icon: nav2.icon,
|
|
54077
54120
|
size: 1.4
|
|
54078
54121
|
}, null, 8, ["icon"]),
|
|
@@ -54109,7 +54152,7 @@ const _sfc_main$4 = /* @__PURE__ */ vue.defineComponent({
|
|
|
54109
54152
|
},
|
|
54110
54153
|
setup(__props) {
|
|
54111
54154
|
return (_ctx, _cache) => {
|
|
54112
|
-
return vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$
|
|
54155
|
+
return vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$E), { class: "hide m_grid gap-05 bgl_bottombar px-1 txt14 justify-content-start align-items-center overflow-x" }, {
|
|
54113
54156
|
default: vue.withCtx(() => [
|
|
54114
54157
|
vue.renderSlot(_ctx.$slots, "brand", {}, void 0, true),
|
|
54115
54158
|
(vue.openBlock(true), vue.createElementBlock(vue.Fragment, null, vue.renderList(_ctx.navLinks, (nav2, i2) => {
|
|
@@ -54120,7 +54163,7 @@ const _sfc_main$4 = /* @__PURE__ */ vue.defineComponent({
|
|
|
54120
54163
|
onClick: nav2.onClick
|
|
54121
54164
|
}, {
|
|
54122
54165
|
default: vue.withCtx(() => [
|
|
54123
|
-
vue.createVNode(vue.unref(_sfc_main$
|
|
54166
|
+
vue.createVNode(vue.unref(_sfc_main$R), {
|
|
54124
54167
|
icon: nav2.icon,
|
|
54125
54168
|
size: 1.4,
|
|
54126
54169
|
class: "m-0"
|
|
@@ -54273,7 +54316,7 @@ const _sfc_main$2 = /* @__PURE__ */ vue.defineComponent({
|
|
|
54273
54316
|
class: vue.normalizeClass([{ active: isActive2(tab) }, "bgl_tab relative z-1"]),
|
|
54274
54317
|
onClick: ($event) => selectTab(tab)
|
|
54275
54318
|
}, [
|
|
54276
|
-
typeof tab !== "string" && tab.icon ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$
|
|
54319
|
+
typeof tab !== "string" && tab.icon ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$R), {
|
|
54277
54320
|
key: 0,
|
|
54278
54321
|
icon: tab.icon
|
|
54279
54322
|
}, null, 8, ["icon"])) : vue.createCommentVNode("", true),
|
|
@@ -54691,54 +54734,55 @@ const IMAGE_FORMATS = ["jpeg", "png", "webp", "avif", "apng", "gif", "avifs", "s
|
|
|
54691
54734
|
const IMAGE_FORMATS_REGEXP = new RegExp(`(${IMAGE_FORMATS.join("|")})$`, "i");
|
|
54692
54735
|
const VIDEO_FORMATS = ["mp4", "webm", "ogg", "mov", "avi", "flv", "wmv", "mkv", "ts", "m3u8"];
|
|
54693
54736
|
const VIDEO_FORMATS_REGEXP = new RegExp(`(${VIDEO_FORMATS.join("|")})$`, "i");
|
|
54694
|
-
exports.Accordion = _sfc_main$
|
|
54737
|
+
exports.Accordion = _sfc_main$B;
|
|
54695
54738
|
exports.AccordionItem = AccordionItem;
|
|
54696
54739
|
exports.Alert = Alert;
|
|
54697
54740
|
exports.Avatar = Avatar;
|
|
54698
54741
|
exports.Badge = Badge;
|
|
54699
|
-
exports.BagelForm = _sfc_main$
|
|
54742
|
+
exports.BagelForm = _sfc_main$t;
|
|
54700
54743
|
exports.BagelVue = BagelVue;
|
|
54701
|
-
exports.BglField = _sfc_main$
|
|
54702
|
-
exports.BglForm = _sfc_main$
|
|
54703
|
-
exports.BglMultiStepForm = _sfc_main$
|
|
54744
|
+
exports.BglField = _sfc_main$s;
|
|
54745
|
+
exports.BglForm = _sfc_main$t;
|
|
54746
|
+
exports.BglMultiStepForm = _sfc_main$r;
|
|
54704
54747
|
exports.BglVideo = BglVideo;
|
|
54705
54748
|
exports.BottomMenu = BottomMenu;
|
|
54706
54749
|
exports.Btn = Btn;
|
|
54707
|
-
exports.Card = _sfc_main$
|
|
54750
|
+
exports.Card = _sfc_main$E;
|
|
54708
54751
|
exports.Carousel = Carousel;
|
|
54709
54752
|
exports.CheckInput = CheckInput;
|
|
54710
54753
|
exports.Checkbox = Checkbox;
|
|
54711
|
-
exports.ColorPicker = _sfc_main$
|
|
54754
|
+
exports.ColorPicker = _sfc_main$j;
|
|
54712
54755
|
exports.DataPreview = DataPreview;
|
|
54713
|
-
exports.DateInput = _sfc_main$
|
|
54714
|
-
exports.DatePicker = _sfc_main$
|
|
54756
|
+
exports.DateInput = _sfc_main$p;
|
|
54757
|
+
exports.DatePicker = _sfc_main$i;
|
|
54715
54758
|
exports.Dropdown = kt$1;
|
|
54716
54759
|
exports.FileUpload = $el;
|
|
54717
54760
|
exports.Flag = Flag;
|
|
54718
54761
|
exports.IMAGE_FORMATS = IMAGE_FORMATS;
|
|
54719
54762
|
exports.IMAGE_FORMATS_REGEXP = IMAGE_FORMATS_REGEXP;
|
|
54720
|
-
exports.Icon = _sfc_main$
|
|
54763
|
+
exports.Icon = _sfc_main$R;
|
|
54721
54764
|
exports.JSONInput = JSONInput;
|
|
54722
54765
|
exports.Layout = Layout;
|
|
54723
54766
|
exports.Lineart = _sfc_main$7;
|
|
54724
|
-
exports.ListItem = _sfc_main$
|
|
54767
|
+
exports.ListItem = _sfc_main$K;
|
|
54725
54768
|
exports.ListView = ListView;
|
|
54726
|
-
exports.MapEmbed = _sfc_main$
|
|
54727
|
-
exports.MaterialIcon = _sfc_main$
|
|
54728
|
-
exports.Modal = _sfc_main$
|
|
54729
|
-
exports.ModalConfirm = _sfc_main$
|
|
54769
|
+
exports.MapEmbed = _sfc_main$v;
|
|
54770
|
+
exports.MaterialIcon = _sfc_main$R;
|
|
54771
|
+
exports.Modal = _sfc_main$O;
|
|
54772
|
+
exports.ModalConfirm = _sfc_main$w;
|
|
54730
54773
|
exports.ModalForm = ModalForm;
|
|
54731
54774
|
exports.ModalPlugin = ModalPlugin;
|
|
54732
54775
|
exports.NavBar = NavBar;
|
|
54733
|
-
exports.PageTitle = _sfc_main$
|
|
54776
|
+
exports.PageTitle = _sfc_main$J;
|
|
54777
|
+
exports.PasswordInput = _sfc_main$8;
|
|
54734
54778
|
exports.RadioGroup = RadioGroup;
|
|
54735
54779
|
exports.RadioPillsInput = RadioPillsInput;
|
|
54736
|
-
exports.RichText = _sfc_main$
|
|
54780
|
+
exports.RichText = _sfc_main$e;
|
|
54737
54781
|
exports.RichText2 = index;
|
|
54738
54782
|
exports.RouterWrapper = RouterWrapper;
|
|
54739
54783
|
exports.SelectInput = SelectInput;
|
|
54740
54784
|
exports.SidebarMenu = SidebarMenu;
|
|
54741
|
-
exports.SignaturePad = _sfc_main$
|
|
54785
|
+
exports.SignaturePad = _sfc_main$c;
|
|
54742
54786
|
exports.TabbedLayout = TabbedLayout;
|
|
54743
54787
|
exports.TableField = TableField;
|
|
54744
54788
|
exports.TableSchema = TableSchema;
|
|
@@ -54747,7 +54791,7 @@ exports.TabsBody = _sfc_main$1;
|
|
|
54747
54791
|
exports.TabsNav = TabsNav;
|
|
54748
54792
|
exports.TelInput = TelInput;
|
|
54749
54793
|
exports.TextInput = TextInput;
|
|
54750
|
-
exports.Title = _sfc_main$
|
|
54794
|
+
exports.Title = _sfc_main$C;
|
|
54751
54795
|
exports.ToggleInput = ToggleInput;
|
|
54752
54796
|
exports.TopBar = TopBar;
|
|
54753
54797
|
exports.VIDEO_FORMATS = VIDEO_FORMATS;
|