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