@bagelink/vue 0.0.736 → 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/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 +302 -259
- package/dist/index.mjs +302 -259
- package/dist/style.css +66 -53
- package/package.json +1 -1
- 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: {},
|
|
@@ -6365,14 +6368,14 @@ const _sfc_main$J = /* @__PURE__ */ vue.defineComponent({
|
|
|
6365
6368
|
src: _ctx.src,
|
|
6366
6369
|
size: 40
|
|
6367
6370
|
}, null, 8, ["name", "src"])) : vue.createCommentVNode("", true),
|
|
6368
|
-
_ctx.icon ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$
|
|
6371
|
+
_ctx.icon ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$R), {
|
|
6369
6372
|
key: 1,
|
|
6370
6373
|
size: "1.2",
|
|
6371
6374
|
class: "color-primary",
|
|
6372
6375
|
icon: _ctx.icon
|
|
6373
6376
|
}, null, 8, ["icon"])) : vue.createCommentVNode("", true),
|
|
6374
6377
|
vue.createElementVNode("div", null, [
|
|
6375
|
-
vue.createElementVNode("p", _hoisted_1$
|
|
6378
|
+
vue.createElementVNode("p", _hoisted_1$I, [
|
|
6376
6379
|
vue.createTextVNode(vue.toDisplayString(_ctx.title) + " ", 1),
|
|
6377
6380
|
vue.renderSlot(_ctx.$slots, "default")
|
|
6378
6381
|
]),
|
|
@@ -6387,9 +6390,9 @@ const _sfc_main$J = /* @__PURE__ */ vue.defineComponent({
|
|
|
6387
6390
|
};
|
|
6388
6391
|
}
|
|
6389
6392
|
});
|
|
6390
|
-
const _hoisted_1$
|
|
6393
|
+
const _hoisted_1$H = { class: "page-top" };
|
|
6391
6394
|
const _hoisted_2$v = { class: "top-title m-0" };
|
|
6392
|
-
const _sfc_main$
|
|
6395
|
+
const _sfc_main$J = /* @__PURE__ */ vue.defineComponent({
|
|
6393
6396
|
__name: "PageTitle",
|
|
6394
6397
|
props: {
|
|
6395
6398
|
value: {
|
|
@@ -6399,7 +6402,7 @@ const _sfc_main$I = /* @__PURE__ */ vue.defineComponent({
|
|
|
6399
6402
|
},
|
|
6400
6403
|
setup(__props) {
|
|
6401
6404
|
return (_ctx, _cache) => {
|
|
6402
|
-
return vue.openBlock(), vue.createElementBlock("div", _hoisted_1$
|
|
6405
|
+
return vue.openBlock(), vue.createElementBlock("div", _hoisted_1$H, [
|
|
6403
6406
|
vue.createElementVNode("h1", _hoisted_2$v, [
|
|
6404
6407
|
vue.renderSlot(_ctx.$slots, "default"),
|
|
6405
6408
|
vue.createTextVNode(" " + vue.toDisplayString(__props.value), 1)
|
|
@@ -6723,7 +6726,7 @@ function useVerticalVirtualList(options, list) {
|
|
|
6723
6726
|
};
|
|
6724
6727
|
}
|
|
6725
6728
|
const _withScopeId$2 = (n2) => (vue.pushScopeId("data-v-5441d9cd"), n2 = n2(), vue.popScopeId(), n2);
|
|
6726
|
-
const _hoisted_1$
|
|
6729
|
+
const _hoisted_1$G = {
|
|
6727
6730
|
key: 0,
|
|
6728
6731
|
class: "loading-table-wrapper z-99 h-100 w-100 absolute inset"
|
|
6729
6732
|
};
|
|
@@ -6734,13 +6737,13 @@ const _hoisted_3$l = [
|
|
|
6734
6737
|
const _hoisted_4$f = { class: "infinite-wrapper" };
|
|
6735
6738
|
const _hoisted_5$e = { class: "row first-row" };
|
|
6736
6739
|
const _hoisted_6$9 = { key: 0 };
|
|
6737
|
-
const _hoisted_7$
|
|
6740
|
+
const _hoisted_7$5 = ["onClick"];
|
|
6738
6741
|
const _hoisted_8$2 = { class: "flex" };
|
|
6739
6742
|
const _hoisted_9$2 = ["onClick"];
|
|
6740
6743
|
const _hoisted_10$1 = { key: 0 };
|
|
6741
6744
|
const _hoisted_11$1 = ["value"];
|
|
6742
6745
|
const _hoisted_12$1 = { key: 1 };
|
|
6743
|
-
const _sfc_main$
|
|
6746
|
+
const _sfc_main$I = /* @__PURE__ */ vue.defineComponent({
|
|
6744
6747
|
__name: "TableSchema",
|
|
6745
6748
|
props: /* @__PURE__ */ vue.mergeModels({
|
|
6746
6749
|
selectedItems: {},
|
|
@@ -6877,7 +6880,7 @@ const _sfc_main$H = /* @__PURE__ */ vue.defineComponent({
|
|
|
6877
6880
|
return vue.openBlock(), vue.createElementBlock("div", vue.mergeProps({ class: "table-list-wrap h-100" }, vue.unref(containerProps), {
|
|
6878
6881
|
class: { "loading-table": loading.value }
|
|
6879
6882
|
}), [
|
|
6880
|
-
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))), [
|
|
6881
6884
|
vue.createElementVNode("table", _hoisted_4$f, [
|
|
6882
6885
|
vue.createElementVNode("thead", _hoisted_5$e, [
|
|
6883
6886
|
vue.unref(isSelectable) ? (vue.openBlock(), vue.createElementBlock("th", _hoisted_6$9, [
|
|
@@ -6901,13 +6904,13 @@ const _sfc_main$H = /* @__PURE__ */ vue.defineComponent({
|
|
|
6901
6904
|
vue.createElementVNode("div", {
|
|
6902
6905
|
class: vue.normalizeClass(["list-arrows", { sorted: vue.unref(sortField) === field.id }])
|
|
6903
6906
|
}, [
|
|
6904
|
-
vue.createVNode(vue.unref(_sfc_main$
|
|
6907
|
+
vue.createVNode(vue.unref(_sfc_main$R), {
|
|
6905
6908
|
class: vue.normalizeClass({ desc: vue.unref(sortDirection) === "DESC" }),
|
|
6906
6909
|
icon: "keyboard_arrow_up"
|
|
6907
6910
|
}, null, 8, ["class"])
|
|
6908
6911
|
], 2)
|
|
6909
6912
|
])
|
|
6910
|
-
], 8, _hoisted_7$
|
|
6913
|
+
], 8, _hoisted_7$5);
|
|
6911
6914
|
}), 128))
|
|
6912
6915
|
]),
|
|
6913
6916
|
vue.createElementVNode("tbody", null, [
|
|
@@ -6941,7 +6944,7 @@ const _sfc_main$H = /* @__PURE__ */ vue.defineComponent({
|
|
|
6941
6944
|
row,
|
|
6942
6945
|
field
|
|
6943
6946
|
}, void 0, true) : (vue.openBlock(), vue.createElementBlock("div", _hoisted_12$1, [
|
|
6944
|
-
vue.createVNode(vue.unref(_sfc_main$
|
|
6947
|
+
vue.createVNode(vue.unref(_sfc_main$s), {
|
|
6945
6948
|
class: "embedded-field",
|
|
6946
6949
|
field,
|
|
6947
6950
|
modelValue: row,
|
|
@@ -6959,16 +6962,16 @@ const _sfc_main$H = /* @__PURE__ */ vue.defineComponent({
|
|
|
6959
6962
|
};
|
|
6960
6963
|
}
|
|
6961
6964
|
});
|
|
6962
|
-
const TableSchema = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
6963
|
-
const _sfc_main$
|
|
6964
|
-
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" };
|
|
6965
6968
|
function _sfc_render$1(_ctx, _cache) {
|
|
6966
|
-
return vue.openBlock(), vue.createElementBlock("div", _hoisted_1$
|
|
6969
|
+
return vue.openBlock(), vue.createElementBlock("div", _hoisted_1$F, [
|
|
6967
6970
|
vue.renderSlot(_ctx.$slots, "default")
|
|
6968
6971
|
]);
|
|
6969
6972
|
}
|
|
6970
|
-
const TopBar = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
6971
|
-
const _sfc_main$
|
|
6973
|
+
const TopBar = /* @__PURE__ */ _export_sfc(_sfc_main$H, [["render", _sfc_render$1]]);
|
|
6974
|
+
const _sfc_main$G = {};
|
|
6972
6975
|
function _sfc_render(_ctx, _cache) {
|
|
6973
6976
|
const _component_router_view = vue.resolveComponent("router-view");
|
|
6974
6977
|
return vue.openBlock(), vue.createBlock(_component_router_view, null, {
|
|
@@ -6990,8 +6993,8 @@ function _sfc_render(_ctx, _cache) {
|
|
|
6990
6993
|
_: 1
|
|
6991
6994
|
});
|
|
6992
6995
|
}
|
|
6993
|
-
const RouterWrapper = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
6994
|
-
const _hoisted_1$
|
|
6996
|
+
const RouterWrapper = /* @__PURE__ */ _export_sfc(_sfc_main$G, [["render", _sfc_render]]);
|
|
6997
|
+
const _hoisted_1$E = {
|
|
6995
6998
|
key: 0,
|
|
6996
6999
|
class: "data"
|
|
6997
7000
|
};
|
|
@@ -7006,13 +7009,13 @@ const _hoisted_6$8 = {
|
|
|
7006
7009
|
key: 0,
|
|
7007
7010
|
class: "data-row"
|
|
7008
7011
|
};
|
|
7009
|
-
const _hoisted_7$
|
|
7012
|
+
const _hoisted_7$4 = { class: "key" };
|
|
7010
7013
|
const _hoisted_8$1 = { class: "m-0" };
|
|
7011
7014
|
const _hoisted_9$1 = {
|
|
7012
7015
|
key: 0,
|
|
7013
7016
|
class: "m-0"
|
|
7014
7017
|
};
|
|
7015
|
-
const _sfc_main$
|
|
7018
|
+
const _sfc_main$F = /* @__PURE__ */ vue.defineComponent({
|
|
7016
7019
|
__name: "DataPreview",
|
|
7017
7020
|
props: /* @__PURE__ */ vue.mergeModels({
|
|
7018
7021
|
showFields: {},
|
|
@@ -7048,8 +7051,8 @@ const _sfc_main$E = /* @__PURE__ */ vue.defineComponent({
|
|
|
7048
7051
|
const computedSchema = vue.computed(() => getFallbackSchema([itemData.value], props2.showFields));
|
|
7049
7052
|
return (_ctx, _cache) => {
|
|
7050
7053
|
var _a2;
|
|
7051
|
-
return __props.data ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_1$
|
|
7052
|
-
_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), {
|
|
7053
7056
|
key: 0,
|
|
7054
7057
|
label: _ctx.title
|
|
7055
7058
|
}, null, 8, ["label"])) : vue.createCommentVNode("", true),
|
|
@@ -7061,7 +7064,7 @@ const _sfc_main$E = /* @__PURE__ */ vue.defineComponent({
|
|
|
7061
7064
|
vue.createElementVNode("div", _hoisted_3$k, [
|
|
7062
7065
|
vue.createElementVNode("p", _hoisted_4$e, vue.toDisplayString((field == null ? void 0 : field.label) || vue.unref(keyToLabel)(field.id)), 1)
|
|
7063
7066
|
]),
|
|
7064
|
-
vue.createVNode(vue.unref(_sfc_main$
|
|
7067
|
+
vue.createVNode(vue.unref(_sfc_main$s), {
|
|
7065
7068
|
modelValue: itemData.value,
|
|
7066
7069
|
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => itemData.value = $event),
|
|
7067
7070
|
label: "",
|
|
@@ -7075,7 +7078,7 @@ const _sfc_main$E = /* @__PURE__ */ vue.defineComponent({
|
|
|
7075
7078
|
(vue.openBlock(true), vue.createElementBlock(vue.Fragment, null, vue.renderList(computedSchema.value, ({ id, label }) => {
|
|
7076
7079
|
return vue.openBlock(), vue.createElementBlock(vue.Fragment, { key: id }, [
|
|
7077
7080
|
!isUnset(itemData.value[id]) ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_6$8, [
|
|
7078
|
-
vue.createElementVNode("div", _hoisted_7$
|
|
7081
|
+
vue.createElementVNode("div", _hoisted_7$4, [
|
|
7079
7082
|
vue.createElementVNode("p", _hoisted_8$1, vue.toDisplayString(label), 1)
|
|
7080
7083
|
]),
|
|
7081
7084
|
vue.createElementVNode("div", null, [
|
|
@@ -7090,12 +7093,12 @@ const _sfc_main$E = /* @__PURE__ */ vue.defineComponent({
|
|
|
7090
7093
|
};
|
|
7091
7094
|
}
|
|
7092
7095
|
});
|
|
7093
|
-
const DataPreview = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
7094
|
-
const _hoisted_1$
|
|
7096
|
+
const DataPreview = /* @__PURE__ */ _export_sfc(_sfc_main$F, [["__scopeId", "data-v-4d174f13"]]);
|
|
7097
|
+
const _hoisted_1$D = {
|
|
7095
7098
|
key: 0,
|
|
7096
7099
|
class: "card_label"
|
|
7097
7100
|
};
|
|
7098
|
-
const _sfc_main$
|
|
7101
|
+
const _sfc_main$E = /* @__PURE__ */ vue.defineComponent({
|
|
7099
7102
|
__name: "Card",
|
|
7100
7103
|
props: {
|
|
7101
7104
|
label: {},
|
|
@@ -7123,7 +7126,7 @@ const _sfc_main$D = /* @__PURE__ */ vue.defineComponent({
|
|
|
7123
7126
|
}])
|
|
7124
7127
|
}, {
|
|
7125
7128
|
default: vue.withCtx(() => [
|
|
7126
|
-
_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),
|
|
7127
7130
|
vue.renderSlot(_ctx.$slots, "default")
|
|
7128
7131
|
]),
|
|
7129
7132
|
_: 3
|
|
@@ -7131,8 +7134,8 @@ const _sfc_main$D = /* @__PURE__ */ vue.defineComponent({
|
|
|
7131
7134
|
};
|
|
7132
7135
|
}
|
|
7133
7136
|
});
|
|
7134
|
-
const _hoisted_1$
|
|
7135
|
-
const _sfc_main$
|
|
7137
|
+
const _hoisted_1$C = ["src", "alt"];
|
|
7138
|
+
const _sfc_main$D = /* @__PURE__ */ vue.defineComponent({
|
|
7136
7139
|
__name: "Avatar",
|
|
7137
7140
|
props: {
|
|
7138
7141
|
fallback: {},
|
|
@@ -7150,7 +7153,7 @@ const _sfc_main$C = /* @__PURE__ */ vue.defineComponent({
|
|
|
7150
7153
|
key: 0,
|
|
7151
7154
|
src: _ctx.src,
|
|
7152
7155
|
alt: _ctx.name
|
|
7153
|
-
}, null, 8, _hoisted_1$
|
|
7156
|
+
}, null, 8, _hoisted_1$C)) : (vue.openBlock(), vue.createElementBlock("p", {
|
|
7154
7157
|
key: 1,
|
|
7155
7158
|
style: vue.normalizeStyle({ "line-height": `${_ctx.size}px`, "font-size": `calc(1.5rem * ${_ctx.size} / 50)` })
|
|
7156
7159
|
}, vue.toDisplayString(_ctx.fallback || vue.unref(initials)(_ctx.name || "")), 5))
|
|
@@ -7158,8 +7161,8 @@ const _sfc_main$C = /* @__PURE__ */ vue.defineComponent({
|
|
|
7158
7161
|
};
|
|
7159
7162
|
}
|
|
7160
7163
|
});
|
|
7161
|
-
const Avatar = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
7162
|
-
const _sfc_main$
|
|
7164
|
+
const Avatar = /* @__PURE__ */ _export_sfc(_sfc_main$D, [["__scopeId", "data-v-dd2f6734"]]);
|
|
7165
|
+
const _sfc_main$C = /* @__PURE__ */ vue.defineComponent({
|
|
7163
7166
|
__name: "Title",
|
|
7164
7167
|
props: {
|
|
7165
7168
|
value: {
|
|
@@ -7187,7 +7190,7 @@ const _sfc_main$B = /* @__PURE__ */ vue.defineComponent({
|
|
|
7187
7190
|
};
|
|
7188
7191
|
}
|
|
7189
7192
|
});
|
|
7190
|
-
const _sfc_main$
|
|
7193
|
+
const _sfc_main$B = /* @__PURE__ */ vue.defineComponent({
|
|
7191
7194
|
__name: "Accordion",
|
|
7192
7195
|
setup(__props) {
|
|
7193
7196
|
const state2 = vue.reactive({
|
|
@@ -7201,9 +7204,9 @@ const _sfc_main$A = /* @__PURE__ */ vue.defineComponent({
|
|
|
7201
7204
|
};
|
|
7202
7205
|
}
|
|
7203
7206
|
});
|
|
7204
|
-
const _hoisted_1$
|
|
7207
|
+
const _hoisted_1$B = ["dismissable"];
|
|
7205
7208
|
const _hoisted_2$s = { class: "m-0" };
|
|
7206
|
-
const _sfc_main$
|
|
7209
|
+
const _sfc_main$A = /* @__PURE__ */ vue.defineComponent({
|
|
7207
7210
|
__name: "Alert",
|
|
7208
7211
|
props: {
|
|
7209
7212
|
message: {},
|
|
@@ -7224,7 +7227,7 @@ const _sfc_main$z = /* @__PURE__ */ vue.defineComponent({
|
|
|
7224
7227
|
class: vue.normalizeClass(["alert", [_ctx.type]]),
|
|
7225
7228
|
dismissable: _ctx.dismissable
|
|
7226
7229
|
}, [
|
|
7227
|
-
_ctx.icon !== "none" ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$
|
|
7230
|
+
_ctx.icon !== "none" ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$R), {
|
|
7228
7231
|
key: 0,
|
|
7229
7232
|
class: "alert_icon",
|
|
7230
7233
|
icon: _ctx.icon || _ctx.type,
|
|
@@ -7239,12 +7242,12 @@ const _sfc_main$z = /* @__PURE__ */ vue.defineComponent({
|
|
|
7239
7242
|
icon: "close",
|
|
7240
7243
|
onClick: _cache[0] || (_cache[0] = ($event) => isDismissed.value = true)
|
|
7241
7244
|
})
|
|
7242
|
-
], 10, _hoisted_1$
|
|
7245
|
+
], 10, _hoisted_1$B)) : vue.createCommentVNode("", true);
|
|
7243
7246
|
};
|
|
7244
7247
|
}
|
|
7245
7248
|
});
|
|
7246
|
-
const Alert = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
7247
|
-
const _sfc_main$
|
|
7249
|
+
const Alert = /* @__PURE__ */ _export_sfc(_sfc_main$A, [["__scopeId", "data-v-1322d9e1"]]);
|
|
7250
|
+
const _sfc_main$z = /* @__PURE__ */ vue.defineComponent({
|
|
7248
7251
|
__name: "Badge",
|
|
7249
7252
|
props: {
|
|
7250
7253
|
color: {},
|
|
@@ -7260,13 +7263,13 @@ const _sfc_main$y = /* @__PURE__ */ vue.defineComponent({
|
|
|
7260
7263
|
return vue.openBlock(), vue.createElementBlock("div", {
|
|
7261
7264
|
class: vue.normalizeClass(["pill", [_ctx.color]])
|
|
7262
7265
|
}, [
|
|
7263
|
-
_ctx.icon ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$
|
|
7266
|
+
_ctx.icon ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$R), {
|
|
7264
7267
|
key: 0,
|
|
7265
7268
|
class: "inline",
|
|
7266
7269
|
icon: _ctx.icon
|
|
7267
7270
|
}, null, 8, ["icon"])) : vue.createCommentVNode("", true),
|
|
7268
7271
|
vue.createTextVNode(" " + vue.toDisplayString(_ctx.text) + " ", 1),
|
|
7269
|
-
props2["icon.end"] ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$
|
|
7272
|
+
props2["icon.end"] ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$R), {
|
|
7270
7273
|
key: 1,
|
|
7271
7274
|
class: "inline",
|
|
7272
7275
|
icon: props2["icon.end"]
|
|
@@ -7275,10 +7278,10 @@ const _sfc_main$y = /* @__PURE__ */ vue.defineComponent({
|
|
|
7275
7278
|
};
|
|
7276
7279
|
}
|
|
7277
7280
|
});
|
|
7278
|
-
const Badge = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
7279
|
-
const _hoisted_1$
|
|
7281
|
+
const Badge = /* @__PURE__ */ _export_sfc(_sfc_main$z, [["__scopeId", "data-v-532b36ae"]]);
|
|
7282
|
+
const _hoisted_1$A = ["src"];
|
|
7280
7283
|
const _hoisted_2$r = ["src", "autoplay", "muted", "loop", "controls"];
|
|
7281
|
-
const _sfc_main$
|
|
7284
|
+
const _sfc_main$y = /* @__PURE__ */ vue.defineComponent({
|
|
7282
7285
|
__name: "BglVideo",
|
|
7283
7286
|
props: {
|
|
7284
7287
|
src: {},
|
|
@@ -7333,7 +7336,7 @@ const _sfc_main$x = /* @__PURE__ */ vue.defineComponent({
|
|
|
7333
7336
|
allowfullscreen: "",
|
|
7334
7337
|
title: "Video",
|
|
7335
7338
|
allow: "autoplay"
|
|
7336
|
-
}, null, 12, _hoisted_1$
|
|
7339
|
+
}, null, 12, _hoisted_1$A)) : _ctx.src ? (vue.openBlock(), vue.createElementBlock("video", {
|
|
7337
7340
|
key: 1,
|
|
7338
7341
|
src: _ctx.src,
|
|
7339
7342
|
autoplay: _ctx.autoplay,
|
|
@@ -7347,13 +7350,13 @@ const _sfc_main$x = /* @__PURE__ */ vue.defineComponent({
|
|
|
7347
7350
|
};
|
|
7348
7351
|
}
|
|
7349
7352
|
});
|
|
7350
|
-
const BglVideo = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
7351
|
-
const _hoisted_1$
|
|
7353
|
+
const BglVideo = /* @__PURE__ */ _export_sfc(_sfc_main$y, [["__scopeId", "data-v-8495afe2"]]);
|
|
7354
|
+
const _hoisted_1$z = {
|
|
7352
7355
|
key: 0,
|
|
7353
7356
|
class: "blocker"
|
|
7354
7357
|
};
|
|
7355
7358
|
const _hoisted_2$q = { class: "Handlers" };
|
|
7356
|
-
const _sfc_main$
|
|
7359
|
+
const _sfc_main$x = /* @__PURE__ */ vue.defineComponent({
|
|
7357
7360
|
__name: "Carousel",
|
|
7358
7361
|
props: {
|
|
7359
7362
|
autoHeight: {
|
|
@@ -7501,7 +7504,7 @@ const _sfc_main$w = /* @__PURE__ */ vue.defineComponent({
|
|
|
7501
7504
|
onScrollend: scrollEnd,
|
|
7502
7505
|
onMousedown: startDragging
|
|
7503
7506
|
}, [
|
|
7504
|
-
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),
|
|
7505
7508
|
vue.renderSlot(_ctx.$slots, "default", {}, void 0, true)
|
|
7506
7509
|
], 34),
|
|
7507
7510
|
vue.createElementVNode("div", _hoisted_2$q, [
|
|
@@ -7522,10 +7525,10 @@ const _sfc_main$w = /* @__PURE__ */ vue.defineComponent({
|
|
|
7522
7525
|
};
|
|
7523
7526
|
}
|
|
7524
7527
|
});
|
|
7525
|
-
const Carousel = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
7526
|
-
const _hoisted_1$
|
|
7528
|
+
const Carousel = /* @__PURE__ */ _export_sfc(_sfc_main$x, [["__scopeId", "data-v-1f9c6644"]]);
|
|
7529
|
+
const _hoisted_1$y = { class: "m-0" };
|
|
7527
7530
|
const _hoisted_2$p = { class: "px-1 py-1 pretty m-0" };
|
|
7528
|
-
const _sfc_main$
|
|
7531
|
+
const _sfc_main$w = /* @__PURE__ */ vue.defineComponent({
|
|
7529
7532
|
__name: "ModalConfirm",
|
|
7530
7533
|
props: {
|
|
7531
7534
|
title: {},
|
|
@@ -7541,7 +7544,7 @@ const _sfc_main$v = /* @__PURE__ */ vue.defineComponent({
|
|
|
7541
7544
|
emit2("update:visible");
|
|
7542
7545
|
}
|
|
7543
7546
|
return (_ctx, _cache) => {
|
|
7544
|
-
return vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$
|
|
7547
|
+
return vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$O), {
|
|
7545
7548
|
width: "380px",
|
|
7546
7549
|
dismissable: false,
|
|
7547
7550
|
class: "color-black txt-center"
|
|
@@ -7560,7 +7563,7 @@ const _sfc_main$v = /* @__PURE__ */ vue.defineComponent({
|
|
|
7560
7563
|
})
|
|
7561
7564
|
]),
|
|
7562
7565
|
default: vue.withCtx(() => [
|
|
7563
|
-
vue.createElementVNode("h3", _hoisted_1$
|
|
7566
|
+
vue.createElementVNode("h3", _hoisted_1$y, vue.toDisplayString(_ctx.title), 1),
|
|
7564
7567
|
vue.createElementVNode("p", _hoisted_2$p, vue.toDisplayString(_ctx.message), 1)
|
|
7565
7568
|
]),
|
|
7566
7569
|
_: 1
|
|
@@ -7568,16 +7571,16 @@ const _sfc_main$v = /* @__PURE__ */ vue.defineComponent({
|
|
|
7568
7571
|
};
|
|
7569
7572
|
}
|
|
7570
7573
|
});
|
|
7571
|
-
const _hoisted_1$
|
|
7572
|
-
const _sfc_main$
|
|
7574
|
+
const _hoisted_1$x = { class: "map-test" };
|
|
7575
|
+
const _sfc_main$v = /* @__PURE__ */ vue.defineComponent({
|
|
7573
7576
|
__name: "MapEmbed",
|
|
7574
7577
|
setup(__props) {
|
|
7575
7578
|
return (_ctx, _cache) => {
|
|
7576
|
-
return vue.openBlock(), vue.createElementBlock("div", _hoisted_1$
|
|
7579
|
+
return vue.openBlock(), vue.createElementBlock("div", _hoisted_1$x);
|
|
7577
7580
|
};
|
|
7578
7581
|
}
|
|
7579
7582
|
});
|
|
7580
|
-
const _sfc_main$
|
|
7583
|
+
const _sfc_main$u = /* @__PURE__ */ vue.defineComponent({
|
|
7581
7584
|
__name: "Flag",
|
|
7582
7585
|
props: {
|
|
7583
7586
|
country: {},
|
|
@@ -7607,8 +7610,8 @@ const _sfc_main$t = /* @__PURE__ */ vue.defineComponent({
|
|
|
7607
7610
|
};
|
|
7608
7611
|
}
|
|
7609
7612
|
});
|
|
7610
|
-
const Flag = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
7611
|
-
const _sfc_main$
|
|
7613
|
+
const Flag = /* @__PURE__ */ _export_sfc(_sfc_main$u, [["__scopeId", "data-v-f99f1900"]]);
|
|
7614
|
+
const _sfc_main$t = /* @__PURE__ */ vue.defineComponent({
|
|
7612
7615
|
__name: "BglForm",
|
|
7613
7616
|
props: {
|
|
7614
7617
|
label: {},
|
|
@@ -7700,13 +7703,13 @@ const _sfc_main$s = /* @__PURE__ */ vue.defineComponent({
|
|
|
7700
7703
|
return (_ctx, _cache) => {
|
|
7701
7704
|
return vue.openBlock(), vue.createElementBlock(vue.Fragment, null, [
|
|
7702
7705
|
_ctx.id ? (vue.openBlock(), vue.createElementBlock(vue.Fragment, { key: 0 }, [
|
|
7703
|
-
_ctx.label ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$
|
|
7706
|
+
_ctx.label ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$C), {
|
|
7704
7707
|
key: 0,
|
|
7705
7708
|
tag: "h4",
|
|
7706
7709
|
label: _ctx.label
|
|
7707
7710
|
}, null, 8, ["label"])) : vue.createCommentVNode("", true),
|
|
7708
7711
|
(vue.openBlock(true), vue.createElementBlock(vue.Fragment, null, vue.renderList(computedSchema.value, (field, i2) => {
|
|
7709
|
-
return vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$
|
|
7712
|
+
return vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$s), {
|
|
7710
7713
|
key: field.id || `${i2}p`,
|
|
7711
7714
|
modelValue: vue.unref(data2),
|
|
7712
7715
|
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => vue.isRef(data2) ? data2.value = $event : data2 = $event),
|
|
@@ -7724,13 +7727,13 @@ const _sfc_main$s = /* @__PURE__ */ vue.defineComponent({
|
|
|
7724
7727
|
ref: form,
|
|
7725
7728
|
onSubmit: vue.withModifiers(runSubmit, ["prevent"])
|
|
7726
7729
|
}, [
|
|
7727
|
-
_ctx.label ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$
|
|
7730
|
+
_ctx.label ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$C), {
|
|
7728
7731
|
key: 0,
|
|
7729
7732
|
tag: "h4",
|
|
7730
7733
|
label: _ctx.label
|
|
7731
7734
|
}, null, 8, ["label"])) : vue.createCommentVNode("", true),
|
|
7732
7735
|
(vue.openBlock(true), vue.createElementBlock(vue.Fragment, null, vue.renderList(computedSchema.value, (field, i2) => {
|
|
7733
|
-
return vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$
|
|
7736
|
+
return vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$s), {
|
|
7734
7737
|
key: field.id || `${i2}p`,
|
|
7735
7738
|
modelValue: vue.unref(data2),
|
|
7736
7739
|
"onUpdate:modelValue": _cache[1] || (_cache[1] = ($event) => vue.isRef(data2) ? data2.value = $event : data2 = $event),
|
|
@@ -7749,7 +7752,7 @@ const _sfc_main$s = /* @__PURE__ */ vue.defineComponent({
|
|
|
7749
7752
|
};
|
|
7750
7753
|
}
|
|
7751
7754
|
});
|
|
7752
|
-
const _sfc_main$
|
|
7755
|
+
const _sfc_main$s = /* @__PURE__ */ vue.defineComponent({
|
|
7753
7756
|
__name: "BglField",
|
|
7754
7757
|
props: {
|
|
7755
7758
|
field: {},
|
|
@@ -7764,8 +7767,8 @@ const _sfc_main$r = /* @__PURE__ */ vue.defineComponent({
|
|
|
7764
7767
|
if (props2.field.$el === "select") return SelectInput;
|
|
7765
7768
|
if (props2.field.$el === "toggle") return ToggleInput;
|
|
7766
7769
|
if (props2.field.$el === "check") return CheckInput;
|
|
7767
|
-
if (props2.field.$el === "richtext") return _sfc_main$
|
|
7768
|
-
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;
|
|
7769
7772
|
return props2.field.$el ?? "div";
|
|
7770
7773
|
});
|
|
7771
7774
|
const formData = vue.computed({
|
|
@@ -7849,8 +7852,8 @@ const _sfc_main$r = /* @__PURE__ */ vue.defineComponent({
|
|
|
7849
7852
|
};
|
|
7850
7853
|
}
|
|
7851
7854
|
});
|
|
7852
|
-
const _hoisted_1$
|
|
7853
|
-
const _sfc_main$
|
|
7855
|
+
const _hoisted_1$w = { key: 0 };
|
|
7856
|
+
const _sfc_main$r = /* @__PURE__ */ vue.defineComponent({
|
|
7854
7857
|
__name: "BglMultiStepForm",
|
|
7855
7858
|
props: /* @__PURE__ */ vue.mergeModels({
|
|
7856
7859
|
bagelFormProps: { default: () => ({}) },
|
|
@@ -7917,8 +7920,8 @@ const _sfc_main$q = /* @__PURE__ */ vue.defineComponent({
|
|
|
7917
7920
|
mode: "out-in"
|
|
7918
7921
|
}, {
|
|
7919
7922
|
default: vue.withCtx(() => [
|
|
7920
|
-
!vue.unref(isStepping) ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_1$
|
|
7921
|
-
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({
|
|
7922
7925
|
ref_key: "formRef",
|
|
7923
7926
|
ref: formRef,
|
|
7924
7927
|
modelValue: formData.value,
|
|
@@ -7957,10 +7960,10 @@ const _sfc_main$q = /* @__PURE__ */ vue.defineComponent({
|
|
|
7957
7960
|
};
|
|
7958
7961
|
}
|
|
7959
7962
|
});
|
|
7960
|
-
const _hoisted_1$
|
|
7963
|
+
const _hoisted_1$v = ["title"];
|
|
7961
7964
|
const _hoisted_2$o = ["id", "required"];
|
|
7962
7965
|
const _hoisted_3$j = ["for"];
|
|
7963
|
-
const _sfc_main$
|
|
7966
|
+
const _sfc_main$q = /* @__PURE__ */ vue.defineComponent({
|
|
7964
7967
|
__name: "CheckInput",
|
|
7965
7968
|
props: /* @__PURE__ */ vue.mergeModels({
|
|
7966
7969
|
label: {},
|
|
@@ -8000,11 +8003,11 @@ const _sfc_main$p = /* @__PURE__ */ vue.defineComponent({
|
|
|
8000
8003
|
vue.createTextVNode(vue.toDisplayString(_ctx.label), 1)
|
|
8001
8004
|
], true)
|
|
8002
8005
|
], 8, _hoisted_3$j)
|
|
8003
|
-
], 10, _hoisted_1$
|
|
8006
|
+
], 10, _hoisted_1$v);
|
|
8004
8007
|
};
|
|
8005
8008
|
}
|
|
8006
8009
|
});
|
|
8007
|
-
const CheckInput = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
8010
|
+
const CheckInput = /* @__PURE__ */ _export_sfc(_sfc_main$q, [["__scopeId", "data-v-c0868d55"]]);
|
|
8008
8011
|
function toDate(argument) {
|
|
8009
8012
|
const argStr = Object.prototype.toString.call(argument);
|
|
8010
8013
|
if (argument instanceof Date || typeof argument === "object" && argStr === "[object Date]") {
|
|
@@ -16444,9 +16447,9 @@ const eo = ({
|
|
|
16444
16447
|
Object.entries(go).forEach(([e, t]) => {
|
|
16445
16448
|
e !== "default" && (Hn[e] = t);
|
|
16446
16449
|
});
|
|
16447
|
-
const _hoisted_1$
|
|
16450
|
+
const _hoisted_1$u = ["title"];
|
|
16448
16451
|
const _hoisted_2$n = { key: 0 };
|
|
16449
|
-
const _sfc_main$
|
|
16452
|
+
const _sfc_main$p = /* @__PURE__ */ vue.defineComponent({
|
|
16450
16453
|
__name: "DateInput",
|
|
16451
16454
|
props: {
|
|
16452
16455
|
required: { type: Boolean },
|
|
@@ -16504,14 +16507,14 @@ const _sfc_main$o = /* @__PURE__ */ vue.defineComponent({
|
|
|
16504
16507
|
"minutes-grid-increment": _ctx.minutesGridIncrement,
|
|
16505
16508
|
"start-time": { hours: 8, minutes: 0 }
|
|
16506
16509
|
}), null, 16, ["modelValue", "required", "enable-time-picker", "allowed-dates", "time-picker-inline", "minutes-increment", "minutes-grid-increment"])
|
|
16507
|
-
], 10, _hoisted_1$
|
|
16510
|
+
], 10, _hoisted_1$u);
|
|
16508
16511
|
};
|
|
16509
16512
|
}
|
|
16510
16513
|
});
|
|
16511
|
-
const _hoisted_1$
|
|
16514
|
+
const _hoisted_1$t = ["title"];
|
|
16512
16515
|
const _hoisted_2$m = { key: 0 };
|
|
16513
16516
|
const _hoisted_3$i = ["value", "placeholder"];
|
|
16514
|
-
const _sfc_main$
|
|
16517
|
+
const _sfc_main$o = /* @__PURE__ */ vue.defineComponent({
|
|
16515
16518
|
__name: "JSONInput",
|
|
16516
16519
|
props: {
|
|
16517
16520
|
description: { default: "" },
|
|
@@ -16543,12 +16546,12 @@ const _sfc_main$n = /* @__PURE__ */ vue.defineComponent({
|
|
|
16543
16546
|
placeholder: _ctx.placeholder,
|
|
16544
16547
|
onInput: handleInput
|
|
16545
16548
|
}, null, 42, _hoisted_3$i)
|
|
16546
|
-
], 10, _hoisted_1$
|
|
16549
|
+
], 10, _hoisted_1$t);
|
|
16547
16550
|
};
|
|
16548
16551
|
}
|
|
16549
16552
|
});
|
|
16550
|
-
const JSONInput = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
16551
|
-
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" };
|
|
16552
16555
|
const _hoisted_2$l = ["disabled"];
|
|
16553
16556
|
const _hoisted_3$h = { key: 1 };
|
|
16554
16557
|
const _hoisted_4$d = {
|
|
@@ -16557,7 +16560,8 @@ const _hoisted_4$d = {
|
|
|
16557
16560
|
};
|
|
16558
16561
|
const _hoisted_5$c = ["value"];
|
|
16559
16562
|
const _hoisted_6$7 = ["aria-selected", "onClick", "onKeydown"];
|
|
16560
|
-
const
|
|
16563
|
+
const _hoisted_7$3 = { class: "block" };
|
|
16564
|
+
const _sfc_main$n = /* @__PURE__ */ vue.defineComponent({
|
|
16561
16565
|
__name: "SelectInput",
|
|
16562
16566
|
props: {
|
|
16563
16567
|
options: {},
|
|
@@ -16706,7 +16710,7 @@ const _sfc_main$m = /* @__PURE__ */ vue.defineComponent({
|
|
|
16706
16710
|
onHide: _cache[5] || (_cache[5] = ($event) => updateOpen(false))
|
|
16707
16711
|
}, {
|
|
16708
16712
|
popper: vue.withCtx(() => [
|
|
16709
|
-
vue.createVNode(vue.unref(_sfc_main$
|
|
16713
|
+
vue.createVNode(vue.unref(_sfc_main$E), {
|
|
16710
16714
|
class: "p-05",
|
|
16711
16715
|
style: vue.normalizeStyle({ width: _ctx.fullWidth ? "100%" : "auto" })
|
|
16712
16716
|
}, {
|
|
@@ -16727,7 +16731,7 @@ const _sfc_main$m = /* @__PURE__ */ vue.defineComponent({
|
|
|
16727
16731
|
(vue.openBlock(true), vue.createElementBlock(vue.Fragment, null, vue.renderList(filteredOptions.value, (option2, i2) => {
|
|
16728
16732
|
return vue.openBlock(), vue.createElementBlock("div", {
|
|
16729
16733
|
key: `${option2}${i2}`,
|
|
16730
|
-
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) }]),
|
|
16731
16735
|
role: "option",
|
|
16732
16736
|
tabindex: "0",
|
|
16733
16737
|
"aria-selected": isSelected(option2),
|
|
@@ -16735,17 +16739,19 @@ const _sfc_main$m = /* @__PURE__ */ vue.defineComponent({
|
|
|
16735
16739
|
onKeydown: vue.withKeys(($event) => select2(option2), ["enter"])
|
|
16736
16740
|
}, [
|
|
16737
16741
|
_ctx.multiselect ? (vue.openBlock(), vue.createElementBlock(vue.Fragment, { key: 0 }, [
|
|
16738
|
-
isSelected(option2) ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$
|
|
16742
|
+
isSelected(option2) ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$R), {
|
|
16739
16743
|
key: 0,
|
|
16744
|
+
size: 1.1,
|
|
16740
16745
|
icon: "select_check_box"
|
|
16741
16746
|
})) : vue.createCommentVNode("", true),
|
|
16742
|
-
!isSelected(option2) ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$
|
|
16747
|
+
!isSelected(option2) ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$R), {
|
|
16743
16748
|
key: 1,
|
|
16744
16749
|
class: "opacity-3",
|
|
16745
|
-
icon: "check_box_outline_blank"
|
|
16750
|
+
icon: "check_box_outline_blank",
|
|
16751
|
+
size: 1.1
|
|
16746
16752
|
})) : vue.createCommentVNode("", true)
|
|
16747
16753
|
], 64)) : vue.createCommentVNode("", true),
|
|
16748
|
-
vue.createElementVNode("span",
|
|
16754
|
+
vue.createElementVNode("span", _hoisted_7$3, vue.toDisplayString(getLabel(option2)), 1)
|
|
16749
16755
|
], 42, _hoisted_6$7);
|
|
16750
16756
|
}), 128))
|
|
16751
16757
|
], 2),
|
|
@@ -16757,7 +16763,7 @@ const _sfc_main$m = /* @__PURE__ */ vue.defineComponent({
|
|
|
16757
16763
|
default: vue.withCtx(() => [
|
|
16758
16764
|
vue.createElementVNode("label", null, [
|
|
16759
16765
|
vue.createTextVNode(vue.toDisplayString(_ctx.label) + " ", 1),
|
|
16760
|
-
vue.createElementVNode("div", _hoisted_1$
|
|
16766
|
+
vue.createElementVNode("div", _hoisted_1$s, [
|
|
16761
16767
|
vue.createElementVNode("button", {
|
|
16762
16768
|
disabled: _ctx.disabled,
|
|
16763
16769
|
type: "button",
|
|
@@ -16765,7 +16771,7 @@ const _sfc_main$m = /* @__PURE__ */ vue.defineComponent({
|
|
|
16765
16771
|
onKeydown: openOptions,
|
|
16766
16772
|
onClick: _cache[1] || (_cache[1] = ($event) => updateOpen(true))
|
|
16767
16773
|
}, [
|
|
16768
|
-
_ctx.icon ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$
|
|
16774
|
+
_ctx.icon ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$R), {
|
|
16769
16775
|
key: 0,
|
|
16770
16776
|
icon: _ctx.icon
|
|
16771
16777
|
}, null, 8, ["icon"])) : vue.createCommentVNode("", true),
|
|
@@ -16782,7 +16788,7 @@ const _sfc_main$m = /* @__PURE__ */ vue.defineComponent({
|
|
|
16782
16788
|
})
|
|
16783
16789
|
})
|
|
16784
16790
|
])) : vue.createCommentVNode("", true),
|
|
16785
|
-
!_ctx.disabled ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$
|
|
16791
|
+
!_ctx.disabled ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$R), vue.mergeProps({
|
|
16786
16792
|
key: 3,
|
|
16787
16793
|
thin: ""
|
|
16788
16794
|
}, { icon: vue.unref(open) ? "unfold_less" : "unfold_more" }), null, 16)) : vue.createCommentVNode("", true)
|
|
@@ -16803,7 +16809,7 @@ const _sfc_main$m = /* @__PURE__ */ vue.defineComponent({
|
|
|
16803
16809
|
};
|
|
16804
16810
|
}
|
|
16805
16811
|
});
|
|
16806
|
-
const SelectInput = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
16812
|
+
const SelectInput = /* @__PURE__ */ _export_sfc(_sfc_main$n, [["__scopeId", "data-v-be6303fe"]]);
|
|
16807
16813
|
/*!
|
|
16808
16814
|
* vue-draggable-next v2.2.0
|
|
16809
16815
|
* (c) 2023 Anish George
|
|
@@ -19283,13 +19289,13 @@ const VueDraggableNext = vue.defineComponent({
|
|
|
19283
19289
|
}
|
|
19284
19290
|
}
|
|
19285
19291
|
});
|
|
19286
|
-
const _hoisted_1$
|
|
19292
|
+
const _hoisted_1$r = ["title"];
|
|
19287
19293
|
const _hoisted_2$k = { class: "bagel-input" };
|
|
19288
19294
|
const _hoisted_3$g = { class: "table-side-scroll" };
|
|
19289
19295
|
const _hoisted_4$c = { class: "table-header" };
|
|
19290
19296
|
const _hoisted_5$b = { class: "table-reorder" };
|
|
19291
19297
|
const _hoisted_6$6 = { class: "table-action" };
|
|
19292
|
-
const _sfc_main$
|
|
19298
|
+
const _sfc_main$m = /* @__PURE__ */ vue.defineComponent({
|
|
19293
19299
|
__name: "TableField",
|
|
19294
19300
|
props: {
|
|
19295
19301
|
description: { default: "" },
|
|
@@ -19386,7 +19392,7 @@ const _sfc_main$l = /* @__PURE__ */ vue.defineComponent({
|
|
|
19386
19392
|
class: "flex table-row"
|
|
19387
19393
|
}, [
|
|
19388
19394
|
vue.createElementVNode("div", _hoisted_5$b, [
|
|
19389
|
-
vue.createVNode(vue.unref(_sfc_main$
|
|
19395
|
+
vue.createVNode(vue.unref(_sfc_main$R), { icon: "more_vert" })
|
|
19390
19396
|
]),
|
|
19391
19397
|
(vue.openBlock(true), vue.createElementBlock(vue.Fragment, null, vue.renderList((_a3 = vue.unref(entityMeta)) == null ? void 0 : _a3.fields, (field) => {
|
|
19392
19398
|
return vue.openBlock(), vue.createElementBlock("div", {
|
|
@@ -19403,7 +19409,7 @@ const _sfc_main$l = /* @__PURE__ */ vue.defineComponent({
|
|
|
19403
19409
|
], 2);
|
|
19404
19410
|
}), 128)),
|
|
19405
19411
|
vue.createElementVNode("div", _hoisted_6$6, [
|
|
19406
|
-
vue.createVNode(vue.unref(_sfc_main$
|
|
19412
|
+
vue.createVNode(vue.unref(_sfc_main$R), {
|
|
19407
19413
|
icon: "delete",
|
|
19408
19414
|
onClick: ($event) => removeRow2(index2)
|
|
19409
19415
|
}, null, 8, ["onClick"])
|
|
@@ -19429,17 +19435,17 @@ const _sfc_main$l = /* @__PURE__ */ vue.defineComponent({
|
|
|
19429
19435
|
]),
|
|
19430
19436
|
_: 1
|
|
19431
19437
|
})
|
|
19432
|
-
], 8, _hoisted_1$
|
|
19438
|
+
], 8, _hoisted_1$r);
|
|
19433
19439
|
};
|
|
19434
19440
|
}
|
|
19435
19441
|
});
|
|
19436
|
-
const TableField = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
19437
|
-
const _hoisted_1$
|
|
19442
|
+
const TableField = /* @__PURE__ */ _export_sfc(_sfc_main$m, [["__scopeId", "data-v-515f5dc9"]]);
|
|
19443
|
+
const _hoisted_1$q = ["title"];
|
|
19438
19444
|
const _hoisted_2$j = ["for"];
|
|
19439
19445
|
const _hoisted_3$f = ["id", "title", "autocomplete", "type", "placeholder", "disabled", "required", "pattern"];
|
|
19440
19446
|
const _hoisted_4$b = ["id", "title", "type", "rows", "placeholder", "disabled", "required", "pattern"];
|
|
19441
19447
|
const _hoisted_5$a = { key: 2 };
|
|
19442
|
-
const _sfc_main$
|
|
19448
|
+
const _sfc_main$l = /* @__PURE__ */ vue.defineComponent({
|
|
19443
19449
|
__name: "TextInput",
|
|
19444
19450
|
props: {
|
|
19445
19451
|
id: {},
|
|
@@ -19560,22 +19566,22 @@ const _sfc_main$k = /* @__PURE__ */ vue.defineComponent({
|
|
|
19560
19566
|
]),
|
|
19561
19567
|
_ctx.helptext ? (vue.openBlock(), vue.createElementBlock("p", _hoisted_5$a, vue.toDisplayString(_ctx.helptext), 1)) : vue.createCommentVNode("", true)
|
|
19562
19568
|
], 8, _hoisted_2$j),
|
|
19563
|
-
_ctx.iconStart ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$
|
|
19569
|
+
_ctx.iconStart ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$R), {
|
|
19564
19570
|
key: 0,
|
|
19565
19571
|
class: "iconStart",
|
|
19566
19572
|
icon: _ctx.iconStart
|
|
19567
19573
|
}, null, 8, ["icon"])) : vue.createCommentVNode("", true),
|
|
19568
|
-
_ctx.icon ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$
|
|
19574
|
+
_ctx.icon ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$R), {
|
|
19569
19575
|
key: 1,
|
|
19570
19576
|
icon: _ctx.icon
|
|
19571
19577
|
}, null, 8, ["icon"])) : vue.createCommentVNode("", true)
|
|
19572
|
-
], 10, _hoisted_1$
|
|
19578
|
+
], 10, _hoisted_1$q);
|
|
19573
19579
|
};
|
|
19574
19580
|
}
|
|
19575
19581
|
});
|
|
19576
|
-
const TextInput = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
19577
|
-
const _hoisted_1$
|
|
19578
|
-
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({
|
|
19579
19585
|
__name: "Checkbox",
|
|
19580
19586
|
props: {
|
|
19581
19587
|
"modelValue": { type: Boolean, ...{ default: false } },
|
|
@@ -19585,7 +19591,7 @@ const _sfc_main$j = /* @__PURE__ */ vue.defineComponent({
|
|
|
19585
19591
|
setup(__props) {
|
|
19586
19592
|
const val = vue.useModel(__props, "modelValue");
|
|
19587
19593
|
return (_ctx, _cache) => {
|
|
19588
|
-
return vue.openBlock(), vue.createElementBlock("label", _hoisted_1$
|
|
19594
|
+
return vue.openBlock(), vue.createElementBlock("label", _hoisted_1$p, [
|
|
19589
19595
|
vue.renderSlot(_ctx.$slots, "label", {}, void 0, true),
|
|
19590
19596
|
vue.withDirectives(vue.createElementVNode("input", {
|
|
19591
19597
|
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => val.value = $event),
|
|
@@ -19597,10 +19603,10 @@ const _sfc_main$j = /* @__PURE__ */ vue.defineComponent({
|
|
|
19597
19603
|
};
|
|
19598
19604
|
}
|
|
19599
19605
|
});
|
|
19600
|
-
const Checkbox = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
19601
|
-
const _hoisted_1$
|
|
19606
|
+
const Checkbox = /* @__PURE__ */ _export_sfc(_sfc_main$k, [["__scopeId", "data-v-032d6226"]]);
|
|
19607
|
+
const _hoisted_1$o = ["title"];
|
|
19602
19608
|
const _hoisted_2$i = ["id", "placeholder", "required"];
|
|
19603
|
-
const _sfc_main$
|
|
19609
|
+
const _sfc_main$j = /* @__PURE__ */ vue.defineComponent({
|
|
19604
19610
|
__name: "ColorPicker",
|
|
19605
19611
|
props: {
|
|
19606
19612
|
label: {},
|
|
@@ -19642,11 +19648,11 @@ const _sfc_main$i = /* @__PURE__ */ vue.defineComponent({
|
|
|
19642
19648
|
[vue.vModelText, inputVal.value]
|
|
19643
19649
|
])
|
|
19644
19650
|
])
|
|
19645
|
-
], 10, _hoisted_1$
|
|
19651
|
+
], 10, _hoisted_1$o)) : vue.createCommentVNode("", true);
|
|
19646
19652
|
};
|
|
19647
19653
|
}
|
|
19648
19654
|
});
|
|
19649
|
-
const _hoisted_1$
|
|
19655
|
+
const _hoisted_1$n = { class: "datetime-wrap" };
|
|
19650
19656
|
const _hoisted_2$h = { class: "date-wrap" };
|
|
19651
19657
|
const _hoisted_3$e = {
|
|
19652
19658
|
key: 0,
|
|
@@ -19654,7 +19660,7 @@ const _hoisted_3$e = {
|
|
|
19654
19660
|
};
|
|
19655
19661
|
const _hoisted_4$a = ["id", "name", "value"];
|
|
19656
19662
|
const _hoisted_5$9 = ["for"];
|
|
19657
|
-
const _sfc_main$
|
|
19663
|
+
const _sfc_main$i = /* @__PURE__ */ vue.defineComponent({
|
|
19658
19664
|
__name: "DatePicker",
|
|
19659
19665
|
props: {
|
|
19660
19666
|
label: {},
|
|
@@ -19683,7 +19689,7 @@ const _sfc_main$h = /* @__PURE__ */ vue.defineComponent({
|
|
|
19683
19689
|
return `${hour}:${minute}`;
|
|
19684
19690
|
});
|
|
19685
19691
|
return (_ctx, _cache) => {
|
|
19686
|
-
return vue.openBlock(), vue.createElementBlock("div", _hoisted_1$
|
|
19692
|
+
return vue.openBlock(), vue.createElementBlock("div", _hoisted_1$n, [
|
|
19687
19693
|
vue.createElementVNode("div", _hoisted_2$h, [
|
|
19688
19694
|
vue.createVNode(vue.unref(Hn), vue.mergeProps({
|
|
19689
19695
|
modelValue: selectedDate.value,
|
|
@@ -19724,12 +19730,12 @@ const _sfc_main$h = /* @__PURE__ */ vue.defineComponent({
|
|
|
19724
19730
|
};
|
|
19725
19731
|
}
|
|
19726
19732
|
});
|
|
19727
|
-
const _hoisted_1$
|
|
19733
|
+
const _hoisted_1$m = { class: "bagel-input" };
|
|
19728
19734
|
const _hoisted_2$g = { class: "pb-025" };
|
|
19729
19735
|
const _hoisted_3$d = { class: "flex gap-05 flex-wrap" };
|
|
19730
19736
|
const _hoisted_4$9 = ["id", "name", "value", "checked"];
|
|
19731
19737
|
const _hoisted_5$8 = ["for"];
|
|
19732
|
-
const _sfc_main$
|
|
19738
|
+
const _sfc_main$h = /* @__PURE__ */ vue.defineComponent({
|
|
19733
19739
|
__name: "RadioPillsInput",
|
|
19734
19740
|
props: {
|
|
19735
19741
|
options: {},
|
|
@@ -19770,7 +19776,7 @@ const _sfc_main$g = /* @__PURE__ */ vue.defineComponent({
|
|
|
19770
19776
|
selectedValue.value = props2.modelValue;
|
|
19771
19777
|
});
|
|
19772
19778
|
return (_ctx, _cache) => {
|
|
19773
|
-
return vue.openBlock(), vue.createElementBlock("div", _hoisted_1$
|
|
19779
|
+
return vue.openBlock(), vue.createElementBlock("div", _hoisted_1$m, [
|
|
19774
19780
|
vue.createElementVNode("label", _hoisted_2$g, vue.toDisplayString(_ctx.label), 1),
|
|
19775
19781
|
vue.createElementVNode("div", _hoisted_3$d, [
|
|
19776
19782
|
(vue.openBlock(true), vue.createElementBlock(vue.Fragment, null, vue.renderList(_ctx.options, (option2, index2) => {
|
|
@@ -19796,8 +19802,8 @@ const _sfc_main$g = /* @__PURE__ */ vue.defineComponent({
|
|
|
19796
19802
|
};
|
|
19797
19803
|
}
|
|
19798
19804
|
});
|
|
19799
|
-
const RadioPillsInput = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
19800
|
-
const _hoisted_1$
|
|
19805
|
+
const RadioPillsInput = /* @__PURE__ */ _export_sfc(_sfc_main$h, [["__scopeId", "data-v-d86ce838"]]);
|
|
19806
|
+
const _hoisted_1$l = { class: "bagel-input" };
|
|
19801
19807
|
const _hoisted_2$f = {
|
|
19802
19808
|
key: 0,
|
|
19803
19809
|
class: "bgl-multi-preview"
|
|
@@ -19820,8 +19826,8 @@ const _hoisted_10 = {
|
|
|
19820
19826
|
class: "progress"
|
|
19821
19827
|
};
|
|
19822
19828
|
const _hoisted_11 = ["src"];
|
|
19823
|
-
const _hoisted_12 = { class: "p-1 flex column hover fileUploadPlaceHolder" };
|
|
19824
|
-
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({
|
|
19825
19831
|
__name: "FileUpload",
|
|
19826
19832
|
props: {
|
|
19827
19833
|
label: {},
|
|
@@ -19970,7 +19976,7 @@ const _sfc_main$f = /* @__PURE__ */ vue.defineComponent({
|
|
|
19970
19976
|
}
|
|
19971
19977
|
return (_ctx, _cache) => {
|
|
19972
19978
|
const _directive_lightbox = vue.resolveDirective("lightbox");
|
|
19973
|
-
return vue.openBlock(), vue.createElementBlock("div", _hoisted_1$
|
|
19979
|
+
return vue.openBlock(), vue.createElementBlock("div", _hoisted_1$l, [
|
|
19974
19980
|
vue.createElementVNode("label", null, vue.toDisplayString(_ctx.label), 1),
|
|
19975
19981
|
vue.createElementVNode("div", {
|
|
19976
19982
|
class: vue.normalizeClass(["fileUploadWrap", {
|
|
@@ -20001,7 +20007,7 @@ const _sfc_main$f = /* @__PURE__ */ vue.defineComponent({
|
|
|
20001
20007
|
alt: ""
|
|
20002
20008
|
}, null, 8, _hoisted_3$c)), [
|
|
20003
20009
|
[_directive_lightbox]
|
|
20004
|
-
]) : (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$
|
|
20010
|
+
]) : (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$R), {
|
|
20005
20011
|
key: 1,
|
|
20006
20012
|
icon: "draft",
|
|
20007
20013
|
class: "multi-preview"
|
|
@@ -20029,7 +20035,7 @@ const _sfc_main$f = /* @__PURE__ */ vue.defineComponent({
|
|
|
20029
20035
|
src: fileToUrl(fileQ.file),
|
|
20030
20036
|
alt: ""
|
|
20031
20037
|
}, null, 8, _hoisted_5$7)) : vue.createCommentVNode("", true)
|
|
20032
|
-
], 64)) : (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$
|
|
20038
|
+
], 64)) : (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$R), {
|
|
20033
20039
|
key: 1,
|
|
20034
20040
|
icon: "draft",
|
|
20035
20041
|
class: "multi-preview"
|
|
@@ -20040,7 +20046,7 @@ const _sfc_main$f = /* @__PURE__ */ vue.defineComponent({
|
|
|
20040
20046
|
style: vue.normalizeStyle([`--p:${fileQ.progress}`, { "--b": "2px" }])
|
|
20041
20047
|
}, [
|
|
20042
20048
|
fileQ.progress < 100 ? (vue.openBlock(), vue.createElementBlock("span", _hoisted_7$2, vue.toDisplayString(`${fileQ.progress.toFixed(0)}`), 1)) : vue.createCommentVNode("", true),
|
|
20043
|
-
vue.createVNode(vue.unref(_sfc_main$
|
|
20049
|
+
vue.createVNode(vue.unref(_sfc_main$R), {
|
|
20044
20050
|
class: "success",
|
|
20045
20051
|
icon: "check"
|
|
20046
20052
|
})
|
|
@@ -20048,7 +20054,7 @@ const _sfc_main$f = /* @__PURE__ */ vue.defineComponent({
|
|
|
20048
20054
|
]);
|
|
20049
20055
|
}), 128))
|
|
20050
20056
|
])) : vue.createCommentVNode("", true),
|
|
20051
|
-
!_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, [
|
|
20052
20058
|
(vue.openBlock(true), vue.createElementBlock(vue.Fragment, null, vue.renderList(storageFiles.value, (file) => {
|
|
20053
20059
|
return vue.openBlock(), vue.createElementBlock("div", {
|
|
20054
20060
|
key: file.id,
|
|
@@ -20061,7 +20067,7 @@ const _sfc_main$f = /* @__PURE__ */ vue.defineComponent({
|
|
|
20061
20067
|
alt: ""
|
|
20062
20068
|
}, null, 8, _hoisted_9)), [
|
|
20063
20069
|
[_directive_lightbox]
|
|
20064
|
-
]) : (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$
|
|
20070
|
+
]) : (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$R), {
|
|
20065
20071
|
key: 1,
|
|
20066
20072
|
size: 4,
|
|
20067
20073
|
weight: "2",
|
|
@@ -20080,7 +20086,7 @@ const _sfc_main$f = /* @__PURE__ */ vue.defineComponent({
|
|
|
20080
20086
|
style: vue.normalizeStyle([`--p:${fileQ.progress}`, { "--b": "2px" }])
|
|
20081
20087
|
}, [
|
|
20082
20088
|
fileQ.progress < 100 ? (vue.openBlock(), vue.createElementBlock("span", _hoisted_10, vue.toDisplayString(`${fileQ.progress.toFixed(0)}`), 1)) : vue.createCommentVNode("", true),
|
|
20083
|
-
vue.createVNode(vue.unref(_sfc_main$
|
|
20089
|
+
vue.createVNode(vue.unref(_sfc_main$R), {
|
|
20084
20090
|
class: "success",
|
|
20085
20091
|
icon: "check"
|
|
20086
20092
|
})
|
|
@@ -20102,7 +20108,7 @@ const _sfc_main$f = /* @__PURE__ */ vue.defineComponent({
|
|
|
20102
20108
|
browse
|
|
20103
20109
|
}, () => [
|
|
20104
20110
|
vue.createElementVNode("p", _hoisted_12, [
|
|
20105
|
-
vue.createVNode(vue.unref(_sfc_main$
|
|
20111
|
+
vue.createVNode(vue.unref(_sfc_main$R), { icon: "upload_2" }),
|
|
20106
20112
|
vue.createTextVNode(" Drop files here or click to upload ")
|
|
20107
20113
|
])
|
|
20108
20114
|
], true) : vue.createCommentVNode("", true)
|
|
@@ -20111,16 +20117,16 @@ const _sfc_main$f = /* @__PURE__ */ vue.defineComponent({
|
|
|
20111
20117
|
};
|
|
20112
20118
|
}
|
|
20113
20119
|
});
|
|
20114
|
-
const $el = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
20120
|
+
const $el = /* @__PURE__ */ _export_sfc(_sfc_main$g, [["__scopeId", "data-v-e8b1219f"]]);
|
|
20115
20121
|
const _withScopeId$1 = (n2) => (vue.pushScopeId("data-v-06b95183"), n2 = n2(), vue.popScopeId(), n2);
|
|
20116
|
-
const _hoisted_1$
|
|
20122
|
+
const _hoisted_1$k = ["title"];
|
|
20117
20123
|
const _hoisted_2$e = /* @__PURE__ */ _withScopeId$1(() => /* @__PURE__ */ vue.createElementVNode("span", { class: "slider round" }, null, -1));
|
|
20118
20124
|
const _hoisted_3$b = [
|
|
20119
20125
|
_hoisted_2$e
|
|
20120
20126
|
];
|
|
20121
20127
|
const _hoisted_4$7 = ["id", "required"];
|
|
20122
20128
|
const _hoisted_5$6 = ["for"];
|
|
20123
|
-
const _sfc_main$
|
|
20129
|
+
const _sfc_main$f = /* @__PURE__ */ vue.defineComponent({
|
|
20124
20130
|
__name: "ToggleInput",
|
|
20125
20131
|
props: /* @__PURE__ */ vue.mergeModels({
|
|
20126
20132
|
label: {},
|
|
@@ -20162,11 +20168,11 @@ const _sfc_main$e = /* @__PURE__ */ vue.defineComponent({
|
|
|
20162
20168
|
vue.createTextVNode(vue.toDisplayString(_ctx.label), 1)
|
|
20163
20169
|
], true)
|
|
20164
20170
|
], 8, _hoisted_5$6)
|
|
20165
|
-
], 10, _hoisted_1$
|
|
20171
|
+
], 10, _hoisted_1$k);
|
|
20166
20172
|
};
|
|
20167
20173
|
}
|
|
20168
20174
|
});
|
|
20169
|
-
const ToggleInput = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
20175
|
+
const ToggleInput = /* @__PURE__ */ _export_sfc(_sfc_main$f, [["__scopeId", "data-v-06b95183"]]);
|
|
20170
20176
|
function OrderedMap(content) {
|
|
20171
20177
|
this.content = content;
|
|
20172
20178
|
}
|
|
@@ -43981,12 +43987,12 @@ const TableHeader = Node$2.create({
|
|
|
43981
43987
|
return ["th", mergeAttributes(this.options.HTMLAttributes, HTMLAttributes), 0];
|
|
43982
43988
|
}
|
|
43983
43989
|
});
|
|
43984
|
-
const _hoisted_1$
|
|
43990
|
+
const _hoisted_1$j = { class: "RichText" };
|
|
43985
43991
|
const _hoisted_2$d = {
|
|
43986
43992
|
key: 0,
|
|
43987
43993
|
class: "RichText-tools"
|
|
43988
43994
|
};
|
|
43989
|
-
const _sfc_main$
|
|
43995
|
+
const _sfc_main$e = /* @__PURE__ */ vue.defineComponent({
|
|
43990
43996
|
__name: "RichText",
|
|
43991
43997
|
props: {
|
|
43992
43998
|
modelValue: {}
|
|
@@ -44211,7 +44217,7 @@ const _sfc_main$d = /* @__PURE__ */ vue.defineComponent({
|
|
|
44211
44217
|
});
|
|
44212
44218
|
return (_ctx, _cache) => {
|
|
44213
44219
|
const _directive_tooltip = vue.resolveDirective("tooltip");
|
|
44214
|
-
return vue.openBlock(), vue.createElementBlock("div", _hoisted_1$
|
|
44220
|
+
return vue.openBlock(), vue.createElementBlock("div", _hoisted_1$j, [
|
|
44215
44221
|
vue.unref(editor) ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_2$d, [
|
|
44216
44222
|
(vue.openBlock(), vue.createElementBlock(vue.Fragment, null, vue.renderList(config, (item) => {
|
|
44217
44223
|
var _a2;
|
|
@@ -46319,13 +46325,13 @@ function parsePhoneNumber$1() {
|
|
|
46319
46325
|
function parsePhoneNumber() {
|
|
46320
46326
|
return withMetadataArgument(parsePhoneNumber$1, arguments);
|
|
46321
46327
|
}
|
|
46322
|
-
const _hoisted_1$
|
|
46328
|
+
const _hoisted_1$i = ["aria-expanded"];
|
|
46323
46329
|
const _hoisted_2$c = { class: "p-075 tel-countryp-dropdown" };
|
|
46324
46330
|
const _hoisted_3$a = ["aria-selected", "onClick", "onMousemove"];
|
|
46325
46331
|
const _hoisted_4$6 = { class: "tel-country" };
|
|
46326
46332
|
const _hoisted_5$5 = { key: 1 };
|
|
46327
46333
|
const _hoisted_6$4 = ["id", "required", "placeholder", "disabled", "autocomplete", "pattern", "minlength", "maxlength", "name", "readonly", "tabindex", "aria-describedby"];
|
|
46328
|
-
const _sfc_main$
|
|
46334
|
+
const _sfc_main$d = /* @__PURE__ */ vue.defineComponent({
|
|
46329
46335
|
__name: "TelInput",
|
|
46330
46336
|
props: /* @__PURE__ */ vue.mergeModels({
|
|
46331
46337
|
label: {},
|
|
@@ -46634,7 +46640,7 @@ const _sfc_main$c = /* @__PURE__ */ vue.defineComponent({
|
|
|
46634
46640
|
class: "flex gap-05",
|
|
46635
46641
|
onClick: _cache[0] || (_cache[0] = ($event) => vue.isRef(open) ? open.value = true : open = true)
|
|
46636
46642
|
}, [
|
|
46637
|
-
vue.createVNode(vue.unref(_sfc_main$
|
|
46643
|
+
vue.createVNode(vue.unref(_sfc_main$R), {
|
|
46638
46644
|
icon: vue.unref(open) ? "collapse_all" : "expand_all"
|
|
46639
46645
|
}, null, 8, ["icon"]),
|
|
46640
46646
|
computedDropDownOptions.value.showFlags && vue.unref(activeCountryCode) ? (vue.openBlock(), vue.createBlock(vue.unref(Flag), {
|
|
@@ -46672,13 +46678,13 @@ const _sfc_main$c = /* @__PURE__ */ vue.defineComponent({
|
|
|
46672
46678
|
}, null, 44, _hoisted_6$4), [
|
|
46673
46679
|
[vue.vModelText, phone.value]
|
|
46674
46680
|
])
|
|
46675
|
-
], 40, _hoisted_1$
|
|
46681
|
+
], 40, _hoisted_1$i)
|
|
46676
46682
|
])
|
|
46677
46683
|
], 2);
|
|
46678
46684
|
};
|
|
46679
46685
|
}
|
|
46680
46686
|
});
|
|
46681
|
-
const TelInput = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
46687
|
+
const TelInput = /* @__PURE__ */ _export_sfc(_sfc_main$d, [["__scopeId", "data-v-9d176183"]]);
|
|
46682
46688
|
/*!
|
|
46683
46689
|
* Signature Pad v5.0.2 | https://github.com/szimek/signature_pad
|
|
46684
46690
|
* (c) 2024 Szymon Nowak | Released under the MIT license
|
|
@@ -47272,8 +47278,8 @@ class SignaturePad extends SignatureEventTarget {
|
|
|
47272
47278
|
return svg.outerHTML;
|
|
47273
47279
|
}
|
|
47274
47280
|
}
|
|
47275
|
-
const _hoisted_1$
|
|
47276
|
-
const _sfc_main$
|
|
47281
|
+
const _hoisted_1$h = ["disabled"];
|
|
47282
|
+
const _sfc_main$c = /* @__PURE__ */ vue.defineComponent({
|
|
47277
47283
|
__name: "SignaturePad",
|
|
47278
47284
|
props: {
|
|
47279
47285
|
sigOption: {},
|
|
@@ -47405,16 +47411,16 @@ const _sfc_main$b = /* @__PURE__ */ vue.defineComponent({
|
|
|
47405
47411
|
ref: vCanvas,
|
|
47406
47412
|
class: "canvas",
|
|
47407
47413
|
disabled: _ctx.disabled
|
|
47408
|
-
}, null, 8, _hoisted_1$
|
|
47414
|
+
}, null, 8, _hoisted_1$h)
|
|
47409
47415
|
], 34);
|
|
47410
47416
|
};
|
|
47411
47417
|
}
|
|
47412
47418
|
});
|
|
47413
|
-
const _hoisted_1$
|
|
47419
|
+
const _hoisted_1$g = {
|
|
47414
47420
|
class: "toolbar flex gap-025 pb-05 flex-wrap",
|
|
47415
47421
|
role: "toolbar"
|
|
47416
47422
|
};
|
|
47417
|
-
const _sfc_main$
|
|
47423
|
+
const _sfc_main$b = /* @__PURE__ */ vue.defineComponent({
|
|
47418
47424
|
__name: "Toolbar",
|
|
47419
47425
|
props: {
|
|
47420
47426
|
config: {}
|
|
@@ -47444,7 +47450,7 @@ const _sfc_main$a = /* @__PURE__ */ vue.defineComponent({
|
|
|
47444
47450
|
}
|
|
47445
47451
|
return (_ctx, _cache) => {
|
|
47446
47452
|
const _directive_tooltip = vue.resolveDirective("tooltip");
|
|
47447
|
-
return vue.openBlock(), vue.createElementBlock("div", _hoisted_1$
|
|
47453
|
+
return vue.openBlock(), vue.createElementBlock("div", _hoisted_1$g, [
|
|
47448
47454
|
vue.createVNode(SelectInput, {
|
|
47449
47455
|
class: "m-0 w150",
|
|
47450
47456
|
options: ["Text", "Heading 1", "Heading 2", "Heading 3", "Heading 4", "Heading 5", "Heading 6", "Blockquote", "Code"],
|
|
@@ -47645,14 +47651,14 @@ function createTable() {
|
|
|
47645
47651
|
}
|
|
47646
47652
|
}
|
|
47647
47653
|
}
|
|
47648
|
-
const _hoisted_1$
|
|
47654
|
+
const _hoisted_1$f = { class: "rich-text-editor round pt-05 px-1 pb-1" };
|
|
47649
47655
|
const _hoisted_2$b = { class: "editor-container flex flex-stretch gap-1 m_column" };
|
|
47650
47656
|
const _hoisted_3$9 = { class: "content-area rounded p-1 bg-white shadow-light w-100 grid" };
|
|
47651
47657
|
const _hoisted_4$5 = {
|
|
47652
47658
|
key: 0,
|
|
47653
47659
|
class: "preview-area bg-black color-white w-100 rounded p-1"
|
|
47654
47660
|
};
|
|
47655
|
-
const _sfc_main$
|
|
47661
|
+
const _sfc_main$a = /* @__PURE__ */ vue.defineComponent({
|
|
47656
47662
|
__name: "index",
|
|
47657
47663
|
props: {
|
|
47658
47664
|
modelValue: {},
|
|
@@ -47779,8 +47785,8 @@ const _sfc_main$9 = /* @__PURE__ */ vue.defineComponent({
|
|
|
47779
47785
|
}
|
|
47780
47786
|
}
|
|
47781
47787
|
return (_ctx, _cache) => {
|
|
47782
|
-
return vue.openBlock(), vue.createElementBlock("div", _hoisted_1$
|
|
47783
|
-
vue.createVNode(_sfc_main$
|
|
47788
|
+
return vue.openBlock(), vue.createElementBlock("div", _hoisted_1$f, [
|
|
47789
|
+
vue.createVNode(_sfc_main$b, {
|
|
47784
47790
|
config: config.value,
|
|
47785
47791
|
onAction: handleToolbarAction
|
|
47786
47792
|
}, null, 8, ["config"]),
|
|
@@ -47811,8 +47817,8 @@ const _sfc_main$9 = /* @__PURE__ */ vue.defineComponent({
|
|
|
47811
47817
|
};
|
|
47812
47818
|
}
|
|
47813
47819
|
});
|
|
47814
|
-
const index = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
47815
|
-
const _hoisted_1$
|
|
47820
|
+
const index = /* @__PURE__ */ _export_sfc(_sfc_main$a, [["__scopeId", "data-v-c9729efd"]]);
|
|
47821
|
+
const _hoisted_1$e = ["for"];
|
|
47816
47822
|
const _hoisted_2$a = ["id", "name", "value"];
|
|
47817
47823
|
const _hoisted_3$8 = { class: "flex w-100 gap-1 flex-wrap m_gap-05 m_gap-row-025" };
|
|
47818
47824
|
const _hoisted_4$4 = ["src", "alt"];
|
|
@@ -47825,7 +47831,7 @@ const _hoisted_7$1 = {
|
|
|
47825
47831
|
key: 1,
|
|
47826
47832
|
class: "txt-gray txt-12 m-0"
|
|
47827
47833
|
};
|
|
47828
|
-
const _sfc_main$
|
|
47834
|
+
const _sfc_main$9 = /* @__PURE__ */ vue.defineComponent({
|
|
47829
47835
|
__name: "RadioGroup",
|
|
47830
47836
|
props: /* @__PURE__ */ vue.mergeModels({
|
|
47831
47837
|
groupName: {},
|
|
@@ -47878,13 +47884,49 @@ const _sfc_main$8 = /* @__PURE__ */ vue.defineComponent({
|
|
|
47878
47884
|
icon: "delete",
|
|
47879
47885
|
onClick: ($event) => _ctx.$emit("delete", opt)
|
|
47880
47886
|
}, null, 8, ["onClick"])) : vue.createCommentVNode("", true)
|
|
47881
|
-
], 8, _hoisted_1$
|
|
47887
|
+
], 8, _hoisted_1$e);
|
|
47882
47888
|
}), 128))
|
|
47883
47889
|
]);
|
|
47884
47890
|
};
|
|
47885
47891
|
}
|
|
47886
47892
|
});
|
|
47887
|
-
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
|
+
});
|
|
47888
47930
|
function _isPlaceholder(a2) {
|
|
47889
47931
|
return a2 != null && typeof a2 === "object" && a2["@@functional/placeholder"] === true;
|
|
47890
47932
|
}
|
|
@@ -54050,7 +54092,7 @@ const _sfc_main$5 = /* @__PURE__ */ vue.defineComponent({
|
|
|
54050
54092
|
}
|
|
54051
54093
|
return (_ctx, _cache) => {
|
|
54052
54094
|
const _directive_tooltip = vue.resolveDirective("tooltip");
|
|
54053
|
-
return vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$
|
|
54095
|
+
return vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$E), {
|
|
54054
54096
|
class: vue.normalizeClass(["flex column gap-05 pt-1 bgl_sidebar", { wideNav: vue.unref(isOpen) }])
|
|
54055
54097
|
}, {
|
|
54056
54098
|
default: vue.withCtx(() => [
|
|
@@ -54073,7 +54115,7 @@ const _sfc_main$5 = /* @__PURE__ */ vue.defineComponent({
|
|
|
54073
54115
|
class: "nav-button px-075"
|
|
54074
54116
|
}, {
|
|
54075
54117
|
default: vue.withCtx(() => [
|
|
54076
|
-
vue.createVNode(vue.unref(_sfc_main$
|
|
54118
|
+
vue.createVNode(vue.unref(_sfc_main$R), {
|
|
54077
54119
|
icon: nav2.icon,
|
|
54078
54120
|
size: 1.4
|
|
54079
54121
|
}, null, 8, ["icon"]),
|
|
@@ -54110,7 +54152,7 @@ const _sfc_main$4 = /* @__PURE__ */ vue.defineComponent({
|
|
|
54110
54152
|
},
|
|
54111
54153
|
setup(__props) {
|
|
54112
54154
|
return (_ctx, _cache) => {
|
|
54113
|
-
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" }, {
|
|
54114
54156
|
default: vue.withCtx(() => [
|
|
54115
54157
|
vue.renderSlot(_ctx.$slots, "brand", {}, void 0, true),
|
|
54116
54158
|
(vue.openBlock(true), vue.createElementBlock(vue.Fragment, null, vue.renderList(_ctx.navLinks, (nav2, i2) => {
|
|
@@ -54121,7 +54163,7 @@ const _sfc_main$4 = /* @__PURE__ */ vue.defineComponent({
|
|
|
54121
54163
|
onClick: nav2.onClick
|
|
54122
54164
|
}, {
|
|
54123
54165
|
default: vue.withCtx(() => [
|
|
54124
|
-
vue.createVNode(vue.unref(_sfc_main$
|
|
54166
|
+
vue.createVNode(vue.unref(_sfc_main$R), {
|
|
54125
54167
|
icon: nav2.icon,
|
|
54126
54168
|
size: 1.4,
|
|
54127
54169
|
class: "m-0"
|
|
@@ -54274,7 +54316,7 @@ const _sfc_main$2 = /* @__PURE__ */ vue.defineComponent({
|
|
|
54274
54316
|
class: vue.normalizeClass([{ active: isActive2(tab) }, "bgl_tab relative z-1"]),
|
|
54275
54317
|
onClick: ($event) => selectTab(tab)
|
|
54276
54318
|
}, [
|
|
54277
|
-
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), {
|
|
54278
54320
|
key: 0,
|
|
54279
54321
|
icon: tab.icon
|
|
54280
54322
|
}, null, 8, ["icon"])) : vue.createCommentVNode("", true),
|
|
@@ -54692,54 +54734,55 @@ const IMAGE_FORMATS = ["jpeg", "png", "webp", "avif", "apng", "gif", "avifs", "s
|
|
|
54692
54734
|
const IMAGE_FORMATS_REGEXP = new RegExp(`(${IMAGE_FORMATS.join("|")})$`, "i");
|
|
54693
54735
|
const VIDEO_FORMATS = ["mp4", "webm", "ogg", "mov", "avi", "flv", "wmv", "mkv", "ts", "m3u8"];
|
|
54694
54736
|
const VIDEO_FORMATS_REGEXP = new RegExp(`(${VIDEO_FORMATS.join("|")})$`, "i");
|
|
54695
|
-
exports.Accordion = _sfc_main$
|
|
54737
|
+
exports.Accordion = _sfc_main$B;
|
|
54696
54738
|
exports.AccordionItem = AccordionItem;
|
|
54697
54739
|
exports.Alert = Alert;
|
|
54698
54740
|
exports.Avatar = Avatar;
|
|
54699
54741
|
exports.Badge = Badge;
|
|
54700
|
-
exports.BagelForm = _sfc_main$
|
|
54742
|
+
exports.BagelForm = _sfc_main$t;
|
|
54701
54743
|
exports.BagelVue = BagelVue;
|
|
54702
|
-
exports.BglField = _sfc_main$
|
|
54703
|
-
exports.BglForm = _sfc_main$
|
|
54704
|
-
exports.BglMultiStepForm = _sfc_main$
|
|
54744
|
+
exports.BglField = _sfc_main$s;
|
|
54745
|
+
exports.BglForm = _sfc_main$t;
|
|
54746
|
+
exports.BglMultiStepForm = _sfc_main$r;
|
|
54705
54747
|
exports.BglVideo = BglVideo;
|
|
54706
54748
|
exports.BottomMenu = BottomMenu;
|
|
54707
54749
|
exports.Btn = Btn;
|
|
54708
|
-
exports.Card = _sfc_main$
|
|
54750
|
+
exports.Card = _sfc_main$E;
|
|
54709
54751
|
exports.Carousel = Carousel;
|
|
54710
54752
|
exports.CheckInput = CheckInput;
|
|
54711
54753
|
exports.Checkbox = Checkbox;
|
|
54712
|
-
exports.ColorPicker = _sfc_main$
|
|
54754
|
+
exports.ColorPicker = _sfc_main$j;
|
|
54713
54755
|
exports.DataPreview = DataPreview;
|
|
54714
|
-
exports.DateInput = _sfc_main$
|
|
54715
|
-
exports.DatePicker = _sfc_main$
|
|
54756
|
+
exports.DateInput = _sfc_main$p;
|
|
54757
|
+
exports.DatePicker = _sfc_main$i;
|
|
54716
54758
|
exports.Dropdown = kt$1;
|
|
54717
54759
|
exports.FileUpload = $el;
|
|
54718
54760
|
exports.Flag = Flag;
|
|
54719
54761
|
exports.IMAGE_FORMATS = IMAGE_FORMATS;
|
|
54720
54762
|
exports.IMAGE_FORMATS_REGEXP = IMAGE_FORMATS_REGEXP;
|
|
54721
|
-
exports.Icon = _sfc_main$
|
|
54763
|
+
exports.Icon = _sfc_main$R;
|
|
54722
54764
|
exports.JSONInput = JSONInput;
|
|
54723
54765
|
exports.Layout = Layout;
|
|
54724
54766
|
exports.Lineart = _sfc_main$7;
|
|
54725
|
-
exports.ListItem = _sfc_main$
|
|
54767
|
+
exports.ListItem = _sfc_main$K;
|
|
54726
54768
|
exports.ListView = ListView;
|
|
54727
|
-
exports.MapEmbed = _sfc_main$
|
|
54728
|
-
exports.MaterialIcon = _sfc_main$
|
|
54729
|
-
exports.Modal = _sfc_main$
|
|
54730
|
-
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;
|
|
54731
54773
|
exports.ModalForm = ModalForm;
|
|
54732
54774
|
exports.ModalPlugin = ModalPlugin;
|
|
54733
54775
|
exports.NavBar = NavBar;
|
|
54734
|
-
exports.PageTitle = _sfc_main$
|
|
54776
|
+
exports.PageTitle = _sfc_main$J;
|
|
54777
|
+
exports.PasswordInput = _sfc_main$8;
|
|
54735
54778
|
exports.RadioGroup = RadioGroup;
|
|
54736
54779
|
exports.RadioPillsInput = RadioPillsInput;
|
|
54737
|
-
exports.RichText = _sfc_main$
|
|
54780
|
+
exports.RichText = _sfc_main$e;
|
|
54738
54781
|
exports.RichText2 = index;
|
|
54739
54782
|
exports.RouterWrapper = RouterWrapper;
|
|
54740
54783
|
exports.SelectInput = SelectInput;
|
|
54741
54784
|
exports.SidebarMenu = SidebarMenu;
|
|
54742
|
-
exports.SignaturePad = _sfc_main$
|
|
54785
|
+
exports.SignaturePad = _sfc_main$c;
|
|
54743
54786
|
exports.TabbedLayout = TabbedLayout;
|
|
54744
54787
|
exports.TableField = TableField;
|
|
54745
54788
|
exports.TableSchema = TableSchema;
|
|
@@ -54748,7 +54791,7 @@ exports.TabsBody = _sfc_main$1;
|
|
|
54748
54791
|
exports.TabsNav = TabsNav;
|
|
54749
54792
|
exports.TelInput = TelInput;
|
|
54750
54793
|
exports.TextInput = TextInput;
|
|
54751
|
-
exports.Title = _sfc_main$
|
|
54794
|
+
exports.Title = _sfc_main$C;
|
|
54752
54795
|
exports.ToggleInput = ToggleInput;
|
|
54753
54796
|
exports.TopBar = TopBar;
|
|
54754
54797
|
exports.VIDEO_FORMATS = VIDEO_FORMATS;
|