@bagelink/vue 0.0.147 → 0.0.158
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/Modal.vue.d.ts.map +1 -1
- package/dist/index.cjs +101 -98
- package/dist/index.mjs +102 -99
- package/dist/style.css +2 -2
- package/package.json +2 -2
- package/src/components/Modal.vue +11 -5
- package/src/components/ModalForm.vue +1 -1
package/dist/index.cjs
CHANGED
|
@@ -14595,8 +14595,8 @@ const _hoisted_1$X = /* @__PURE__ */ vue.createElementVNode("div", { class: "ico
|
|
|
14595
14595
|
const _hoisted_2$P = [
|
|
14596
14596
|
_hoisted_1$X
|
|
14597
14597
|
];
|
|
14598
|
-
const _hoisted_3$
|
|
14599
|
-
const _hoisted_4$
|
|
14598
|
+
const _hoisted_3$H = { class: "full-nav" };
|
|
14599
|
+
const _hoisted_4$q = { class: "nav-scroll" };
|
|
14600
14600
|
const _hoisted_5$l = { class: "nav-links-wrapper" };
|
|
14601
14601
|
const _hoisted_6$h = { class: "icon-font" };
|
|
14602
14602
|
const _hoisted_7$c = { class: "tooltip" };
|
|
@@ -14626,8 +14626,8 @@ const _sfc_main$Q = /* @__PURE__ */ vue.defineComponent({
|
|
|
14626
14626
|
"aria-label": "Toggle Navigation",
|
|
14627
14627
|
tabindex: "0"
|
|
14628
14628
|
}, _hoisted_2$P, 32),
|
|
14629
|
-
vue.createElementVNode("div", _hoisted_3$
|
|
14630
|
-
vue.createElementVNode("div", _hoisted_4$
|
|
14629
|
+
vue.createElementVNode("div", _hoisted_3$H, [
|
|
14630
|
+
vue.createElementVNode("div", _hoisted_4$q, [
|
|
14631
14631
|
vue.createElementVNode("div", _hoisted_5$l, [
|
|
14632
14632
|
(vue.openBlock(true), vue.createElementBlock(vue.Fragment, null, vue.renderList((_a = _ctx.links) == null ? void 0 : _a.call(_ctx), (link) => {
|
|
14633
14633
|
return vue.openBlock(), vue.createBlock(_component_RouterLink, {
|
|
@@ -14724,10 +14724,9 @@ const _export_sfc = (sfc, props2) => {
|
|
|
14724
14724
|
return target;
|
|
14725
14725
|
};
|
|
14726
14726
|
const Btn = /* @__PURE__ */ _export_sfc(_sfc_main$P, [["__scopeId", "data-v-b94d75fb"]]);
|
|
14727
|
-
const _hoisted_1$V =
|
|
14728
|
-
const _hoisted_2$N = { class: "
|
|
14729
|
-
const _hoisted_3$
|
|
14730
|
-
const _hoisted_4$q = { class: "modal-footer mt-3" };
|
|
14727
|
+
const _hoisted_1$V = { class: "tool-bar" };
|
|
14728
|
+
const _hoisted_2$N = { class: "modal-title" };
|
|
14729
|
+
const _hoisted_3$G = { class: "modal-footer mt-3" };
|
|
14731
14730
|
const _sfc_main$O = /* @__PURE__ */ vue.defineComponent({
|
|
14732
14731
|
__name: "Modal",
|
|
14733
14732
|
props: {
|
|
@@ -14738,6 +14737,7 @@ const _sfc_main$O = /* @__PURE__ */ vue.defineComponent({
|
|
|
14738
14737
|
},
|
|
14739
14738
|
emits: ["update:isModalVisible"],
|
|
14740
14739
|
setup(__props, { emit: __emit }) {
|
|
14740
|
+
const props2 = __props;
|
|
14741
14741
|
let isActive = vue.ref(false);
|
|
14742
14742
|
const emit2 = __emit;
|
|
14743
14743
|
const closeModal = () => {
|
|
@@ -14746,7 +14746,7 @@ const _sfc_main$O = /* @__PURE__ */ vue.defineComponent({
|
|
|
14746
14746
|
emit2("update:isModalVisible", false);
|
|
14747
14747
|
}, 200);
|
|
14748
14748
|
};
|
|
14749
|
-
const escapeKeyClose = (e) => useEscape(e, () => closeModal());
|
|
14749
|
+
const escapeKeyClose = (e) => (props2 == null ? void 0 : props2.dismissable) && useEscape(e, () => closeModal());
|
|
14750
14750
|
vue.onMounted(() => {
|
|
14751
14751
|
setTimeout(() => {
|
|
14752
14752
|
isActive.value = true;
|
|
@@ -14773,12 +14773,18 @@ const _sfc_main$O = /* @__PURE__ */ vue.defineComponent({
|
|
|
14773
14773
|
onClick: _cache[0] || (_cache[0] = vue.withModifiers(() => {
|
|
14774
14774
|
}, ["stop"]))
|
|
14775
14775
|
}, [
|
|
14776
|
-
vue.createElementVNode("header",
|
|
14777
|
-
vue.renderSlot(_ctx.$slots, "toolbar")
|
|
14776
|
+
vue.createElementVNode("header", _hoisted_1$V, [
|
|
14777
|
+
vue.renderSlot(_ctx.$slots, "toolbar"),
|
|
14778
|
+
vue.createVNode(vue.unref(Btn), {
|
|
14779
|
+
style: vue.normalizeStyle({ float: _ctx.side ? "left" : "right" }),
|
|
14780
|
+
flat: "",
|
|
14781
|
+
icon: "close",
|
|
14782
|
+
onClick: closeModal
|
|
14783
|
+
}, null, 8, ["style"]),
|
|
14784
|
+
vue.createElementVNode("h3", _hoisted_2$N, vue.toDisplayString(_ctx.title), 1)
|
|
14778
14785
|
]),
|
|
14779
|
-
vue.createElementVNode("h3", _hoisted_3$I, vue.toDisplayString(_ctx.title), 1),
|
|
14780
14786
|
vue.renderSlot(_ctx.$slots, "default"),
|
|
14781
|
-
vue.createElementVNode("footer",
|
|
14787
|
+
vue.createElementVNode("footer", _hoisted_3$G, [
|
|
14782
14788
|
(vue.openBlock(true), vue.createElementBlock(vue.Fragment, null, vue.renderList(_ctx.actions, (action, i2) => {
|
|
14783
14789
|
return vue.openBlock(), vue.createBlock(vue.unref(Btn), vue.mergeProps({
|
|
14784
14790
|
key: i2,
|
|
@@ -14789,13 +14795,13 @@ const _sfc_main$O = /* @__PURE__ */ vue.defineComponent({
|
|
|
14789
14795
|
vue.renderSlot(_ctx.$slots, "footer")
|
|
14790
14796
|
])
|
|
14791
14797
|
])
|
|
14792
|
-
],
|
|
14798
|
+
], 34);
|
|
14793
14799
|
};
|
|
14794
14800
|
}
|
|
14795
14801
|
});
|
|
14796
14802
|
const _hoisted_1$U = { class: "dropdown-title" };
|
|
14797
14803
|
const _hoisted_2$M = { class: "dropdown-body" };
|
|
14798
|
-
const _hoisted_3$
|
|
14804
|
+
const _hoisted_3$F = ["onClick"];
|
|
14799
14805
|
const _sfc_main$N = /* @__PURE__ */ vue.defineComponent({
|
|
14800
14806
|
__name: "DropDown",
|
|
14801
14807
|
props: {
|
|
@@ -14831,7 +14837,7 @@ const _sfc_main$N = /* @__PURE__ */ vue.defineComponent({
|
|
|
14831
14837
|
return vue.openBlock(), vue.createElementBlock("p", {
|
|
14832
14838
|
key: index2,
|
|
14833
14839
|
onClick: vue.withModifiers(($event) => selectOption(option2, index2), ["stop"])
|
|
14834
|
-
}, vue.toDisplayString(option2), 9, _hoisted_3$
|
|
14840
|
+
}, vue.toDisplayString(option2), 9, _hoisted_3$F);
|
|
14835
14841
|
}), 128))
|
|
14836
14842
|
])
|
|
14837
14843
|
], 2);
|
|
@@ -14840,7 +14846,7 @@ const _sfc_main$N = /* @__PURE__ */ vue.defineComponent({
|
|
|
14840
14846
|
});
|
|
14841
14847
|
const _hoisted_1$T = { class: "card list-view grid thin" };
|
|
14842
14848
|
const _hoisted_2$L = { class: "list-header flex gap-3 align-items-top" };
|
|
14843
|
-
const _hoisted_3$
|
|
14849
|
+
const _hoisted_3$E = {
|
|
14844
14850
|
key: 0,
|
|
14845
14851
|
class: "bagel-input search-wrap"
|
|
14846
14852
|
};
|
|
@@ -14864,7 +14870,7 @@ const _sfc_main$M = /* @__PURE__ */ vue.defineComponent({
|
|
|
14864
14870
|
return (_ctx, _cache) => {
|
|
14865
14871
|
return vue.openBlock(), vue.createElementBlock("div", _hoisted_1$T, [
|
|
14866
14872
|
vue.createElementVNode("div", _hoisted_2$L, [
|
|
14867
|
-
_ctx.enableSearch ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_3$
|
|
14873
|
+
_ctx.enableSearch ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_3$E, [
|
|
14868
14874
|
vue.withDirectives(vue.createElementVNode("input", {
|
|
14869
14875
|
placeholder: _ctx.searchPlaceholder,
|
|
14870
14876
|
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => searchTerm.value = $event),
|
|
@@ -14919,7 +14925,7 @@ const _sfc_main$L = /* @__PURE__ */ vue.defineComponent({
|
|
|
14919
14925
|
});
|
|
14920
14926
|
const _hoisted_1$R = { class: "h-100 grid list-view gap-3" };
|
|
14921
14927
|
const _hoisted_2$J = { class: "card tabs-top" };
|
|
14922
|
-
const _hoisted_3$
|
|
14928
|
+
const _hoisted_3$D = { class: "tabs grid auto-flow-columns fit-content" };
|
|
14923
14929
|
const _hoisted_4$o = ["onClick"];
|
|
14924
14930
|
const _sfc_main$K = /* @__PURE__ */ vue.defineComponent({
|
|
14925
14931
|
__name: "TabbedLayout",
|
|
@@ -14952,7 +14958,7 @@ const _sfc_main$K = /* @__PURE__ */ vue.defineComponent({
|
|
|
14952
14958
|
return vue.openBlock(), vue.createElementBlock("div", _hoisted_1$R, [
|
|
14953
14959
|
vue.createElementVNode("div", _hoisted_2$J, [
|
|
14954
14960
|
vue.renderSlot(_ctx.$slots, "top-section", {}, void 0, true),
|
|
14955
|
-
vue.createElementVNode("div", _hoisted_3$
|
|
14961
|
+
vue.createElementVNode("div", _hoisted_3$D, [
|
|
14956
14962
|
(vue.openBlock(true), vue.createElementBlock(vue.Fragment, null, vue.renderList(_ctx.tabs, (tab) => {
|
|
14957
14963
|
return vue.openBlock(), vue.createElementBlock("div", {
|
|
14958
14964
|
class: vue.normalizeClass([{
|
|
@@ -14979,7 +14985,7 @@ const _sfc_main$K = /* @__PURE__ */ vue.defineComponent({
|
|
|
14979
14985
|
const TabbedLayout = /* @__PURE__ */ _export_sfc(_sfc_main$K, [["__scopeId", "data-v-4ac29f1d"]]);
|
|
14980
14986
|
const _hoisted_1$Q = { class: "comments-wrap" };
|
|
14981
14987
|
const _hoisted_2$I = { class: "comment-list" };
|
|
14982
|
-
const _hoisted_3$
|
|
14988
|
+
const _hoisted_3$C = { class: "comment-top" };
|
|
14983
14989
|
const _hoisted_4$n = { class: "comment-owner" };
|
|
14984
14990
|
const _hoisted_5$j = { class: "comment-time" };
|
|
14985
14991
|
const _hoisted_6$g = { class: "comment-actions" };
|
|
@@ -15041,7 +15047,7 @@ const _sfc_main$J = /* @__PURE__ */ vue.defineComponent({
|
|
|
15041
15047
|
}, "comment"]),
|
|
15042
15048
|
key: comment.id
|
|
15043
15049
|
}, [
|
|
15044
|
-
vue.createElementVNode("div", _hoisted_3$
|
|
15050
|
+
vue.createElementVNode("div", _hoisted_3$C, [
|
|
15045
15051
|
vue.createElementVNode("div", _hoisted_4$n, vue.toDisplayString(comment.sender.first_name) + " " + vue.toDisplayString(comment.sender.last_name), 1),
|
|
15046
15052
|
vue.createElementVNode("div", _hoisted_5$j, vue.toDisplayString(comment.updated_at.split("T")[0]), 1),
|
|
15047
15053
|
vue.createElementVNode("div", _hoisted_6$g, [
|
|
@@ -15121,9 +15127,8 @@ const _sfc_main$I = /* @__PURE__ */ vue.defineComponent({
|
|
|
15121
15127
|
};
|
|
15122
15128
|
}
|
|
15123
15129
|
});
|
|
15124
|
-
const _hoisted_1$O =
|
|
15125
|
-
const _hoisted_2$G = { class: "
|
|
15126
|
-
const _hoisted_3$D = { class: "modal-title" };
|
|
15130
|
+
const _hoisted_1$O = { class: "tool-bar" };
|
|
15131
|
+
const _hoisted_2$G = { class: "modal-title" };
|
|
15127
15132
|
const _sfc_main$H = /* @__PURE__ */ vue.defineComponent({
|
|
15128
15133
|
__name: "ModalForm",
|
|
15129
15134
|
props: {
|
|
@@ -15170,7 +15175,7 @@ const _sfc_main$H = /* @__PURE__ */ vue.defineComponent({
|
|
|
15170
15175
|
(_b = props2.onDelete) == null ? void 0 : _b.call(props2, (_a = props2.modelValue) == null ? void 0 : _a.id);
|
|
15171
15176
|
closeModal();
|
|
15172
15177
|
};
|
|
15173
|
-
const escapeKeyClose = (e) => useEscape(e, () => closeModal());
|
|
15178
|
+
const escapeKeyClose = (e) => (props2 == null ? void 0 : props2.dismissable) && useEscape(e, () => closeModal());
|
|
15174
15179
|
vue.onMounted(() => {
|
|
15175
15180
|
setTimeout(() => {
|
|
15176
15181
|
isActive.value = true;
|
|
@@ -15197,7 +15202,7 @@ const _sfc_main$H = /* @__PURE__ */ vue.defineComponent({
|
|
|
15197
15202
|
onClick: _cache[0] || (_cache[0] = vue.withModifiers(() => {
|
|
15198
15203
|
}, ["stop"]))
|
|
15199
15204
|
}, [
|
|
15200
|
-
vue.createElementVNode("header",
|
|
15205
|
+
vue.createElementVNode("header", _hoisted_1$O, [
|
|
15201
15206
|
vue.renderSlot(_ctx.$slots, "toolbar", {}, void 0, true),
|
|
15202
15207
|
vue.createVNode(vue.unref(Btn), {
|
|
15203
15208
|
style: vue.normalizeStyle({ float: _ctx.side ? "left" : "right" }),
|
|
@@ -15205,7 +15210,7 @@ const _sfc_main$H = /* @__PURE__ */ vue.defineComponent({
|
|
|
15205
15210
|
icon: "close",
|
|
15206
15211
|
onClick: closeModal
|
|
15207
15212
|
}, null, 8, ["style"]),
|
|
15208
|
-
vue.createElementVNode("h3",
|
|
15213
|
+
vue.createElementVNode("h3", _hoisted_2$G, vue.toDisplayString(_ctx.title), 1)
|
|
15209
15214
|
]),
|
|
15210
15215
|
vue.createVNode(vue.unref(_sfc_main$F), {
|
|
15211
15216
|
onDelete: _ctx.onDelete ? runDelete : void 0,
|
|
@@ -15215,11 +15220,11 @@ const _sfc_main$H = /* @__PURE__ */ vue.defineComponent({
|
|
|
15215
15220
|
schema: computedFormSchema.value
|
|
15216
15221
|
}, null, 8, ["onDelete", "modelValue", "schema"])
|
|
15217
15222
|
])
|
|
15218
|
-
],
|
|
15223
|
+
], 34);
|
|
15219
15224
|
};
|
|
15220
15225
|
}
|
|
15221
15226
|
});
|
|
15222
|
-
const ModalForm = /* @__PURE__ */ _export_sfc(_sfc_main$H, [["__scopeId", "data-v-
|
|
15227
|
+
const ModalForm = /* @__PURE__ */ _export_sfc(_sfc_main$H, [["__scopeId", "data-v-1799b7d0"]]);
|
|
15223
15228
|
const _hoisted_1$N = {
|
|
15224
15229
|
key: 0,
|
|
15225
15230
|
class: "data"
|
|
@@ -15228,7 +15233,7 @@ const _hoisted_2$F = {
|
|
|
15228
15233
|
key: 0,
|
|
15229
15234
|
class: "mb-3 mt-0"
|
|
15230
15235
|
};
|
|
15231
|
-
const _hoisted_3$
|
|
15236
|
+
const _hoisted_3$B = { class: "key" };
|
|
15232
15237
|
const _hoisted_4$m = { key: 1 };
|
|
15233
15238
|
const _hoisted_5$i = { class: "key" };
|
|
15234
15239
|
const _hoisted_6$f = { class: "vlue" };
|
|
@@ -15251,7 +15256,7 @@ const _sfc_main$G = /* @__PURE__ */ vue.defineComponent({
|
|
|
15251
15256
|
key: field.id,
|
|
15252
15257
|
class: "data-row"
|
|
15253
15258
|
}, [
|
|
15254
|
-
vue.createElementVNode("div", _hoisted_3$
|
|
15259
|
+
vue.createElementVNode("div", _hoisted_3$B, vue.toDisplayString((field == null ? void 0 : field.label) || vue.unref(keyToLabel)(field.id)), 1),
|
|
15255
15260
|
(vue.openBlock(), vue.createBlock(vue.resolveDynamicComponent(field.$el || "div"), { class: "vlue" }, {
|
|
15256
15261
|
default: vue.withCtx(() => [
|
|
15257
15262
|
vue.createTextVNode(vue.toDisplayString(_ctx.data[field.id] || field.defaultValue), 1)
|
|
@@ -15354,7 +15359,7 @@ const _sfc_main$F = /* @__PURE__ */ vue.defineComponent({
|
|
|
15354
15359
|
});
|
|
15355
15360
|
const _hoisted_1$M = { class: "table-list-wrap h-100" };
|
|
15356
15361
|
const _hoisted_2$E = { class: "infinite-wrapper" };
|
|
15357
|
-
const _hoisted_3$
|
|
15362
|
+
const _hoisted_3$A = { class: "row first-row" };
|
|
15358
15363
|
const _hoisted_4$l = ["onClick"];
|
|
15359
15364
|
const _hoisted_5$h = { class: "flex" };
|
|
15360
15365
|
const _hoisted_6$e = ["onClick"];
|
|
@@ -15411,7 +15416,7 @@ const _sfc_main$E = /* @__PURE__ */ vue.defineComponent({
|
|
|
15411
15416
|
return (_ctx, _cache) => {
|
|
15412
15417
|
return vue.openBlock(), vue.createElementBlock("div", _hoisted_1$M, [
|
|
15413
15418
|
vue.createElementVNode("table", _hoisted_2$E, [
|
|
15414
|
-
vue.createElementVNode("thead", _hoisted_3$
|
|
15419
|
+
vue.createElementVNode("thead", _hoisted_3$A, [
|
|
15415
15420
|
(vue.openBlock(true), vue.createElementBlock(vue.Fragment, null, vue.renderList(columns.value, (field) => {
|
|
15416
15421
|
return vue.openBlock(), vue.createElementBlock("th", {
|
|
15417
15422
|
class: "col",
|
|
@@ -15552,7 +15557,7 @@ const _hoisted_1$J = {
|
|
|
15552
15557
|
class: "person-card-edit flex gap-2"
|
|
15553
15558
|
};
|
|
15554
15559
|
const _hoisted_2$D = { class: "person-card-icon-wrap" };
|
|
15555
|
-
const _hoisted_3$
|
|
15560
|
+
const _hoisted_3$z = { class: "person-card-icon" };
|
|
15556
15561
|
const _hoisted_4$k = { class: "person-card-name txt20" };
|
|
15557
15562
|
const _hoisted_5$g = { class: "person-card-details-wrap" };
|
|
15558
15563
|
const _hoisted_6$d = {
|
|
@@ -15567,7 +15572,7 @@ const _hoisted_8$5 = {
|
|
|
15567
15572
|
key: 2,
|
|
15568
15573
|
class: "person-card-details badge"
|
|
15569
15574
|
};
|
|
15570
|
-
const _hoisted_9$
|
|
15575
|
+
const _hoisted_9$3 = { key: 0 };
|
|
15571
15576
|
const _hoisted_10$3 = { key: 1 };
|
|
15572
15577
|
const _sfc_main$A = /* @__PURE__ */ vue.defineComponent({
|
|
15573
15578
|
__name: "PersonPreview",
|
|
@@ -15617,7 +15622,7 @@ const _sfc_main$A = /* @__PURE__ */ vue.defineComponent({
|
|
|
15617
15622
|
})
|
|
15618
15623
|
])) : vue.createCommentVNode("", true),
|
|
15619
15624
|
vue.createElementVNode("div", _hoisted_2$D, [
|
|
15620
|
-
vue.createElementVNode("p", _hoisted_3$
|
|
15625
|
+
vue.createElementVNode("p", _hoisted_3$z, vue.toDisplayString(vue.unref(initials)(_ctx.person.first_name, _ctx.person.last_name)), 1),
|
|
15621
15626
|
vue.createElementVNode("p", _hoisted_4$k, vue.toDisplayString(_ctx.person.first_name) + " " + vue.toDisplayString(_ctx.person.last_name), 1)
|
|
15622
15627
|
]),
|
|
15623
15628
|
vue.createElementVNode("div", _hoisted_5$g, [
|
|
@@ -15639,7 +15644,7 @@ const _sfc_main$A = /* @__PURE__ */ vue.defineComponent({
|
|
|
15639
15644
|
])) : vue.createCommentVNode("", true),
|
|
15640
15645
|
_ctx.person.date_of_birth || _ctx.person.gender ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_8$5, [
|
|
15641
15646
|
vue.createVNode(vue.unref(_sfc_main$R), { icon: "badge" }),
|
|
15642
|
-
_ctx.person.date_of_birth ? (vue.openBlock(), vue.createElementBlock("p", _hoisted_9$
|
|
15647
|
+
_ctx.person.date_of_birth ? (vue.openBlock(), vue.createElementBlock("p", _hoisted_9$3, vue.toDisplayString(_ctx.person.date_of_birth), 1)) : vue.createCommentVNode("", true),
|
|
15643
15648
|
_ctx.person.gender ? (vue.openBlock(), vue.createElementBlock("p", _hoisted_10$3, vue.toDisplayString(_ctx.person.gender), 1)) : vue.createCommentVNode("", true)
|
|
15644
15649
|
])) : vue.createCommentVNode("", true)
|
|
15645
15650
|
])
|
|
@@ -15653,7 +15658,7 @@ const _hoisted_2$C = {
|
|
|
15653
15658
|
key: 0,
|
|
15654
15659
|
class: "group-wrap"
|
|
15655
15660
|
};
|
|
15656
|
-
const _hoisted_3$
|
|
15661
|
+
const _hoisted_3$y = { class: "group-title" };
|
|
15657
15662
|
const _hoisted_4$j = {
|
|
15658
15663
|
key: 1,
|
|
15659
15664
|
class: "bar-wrap"
|
|
@@ -15719,7 +15724,7 @@ const _sfc_main$z = /* @__PURE__ */ vue.defineComponent({
|
|
|
15719
15724
|
key: i2
|
|
15720
15725
|
}, [
|
|
15721
15726
|
item.group ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_2$C, [
|
|
15722
|
-
vue.createElementVNode("p", _hoisted_3$
|
|
15727
|
+
vue.createElementVNode("p", _hoisted_3$y, vue.toDisplayString(item.group), 1),
|
|
15723
15728
|
(vue.openBlock(true), vue.createElementBlock(vue.Fragment, null, vue.renderList((item == null ? void 0 : item.data) || [], (nested, i22) => {
|
|
15724
15729
|
return vue.openBlock(), vue.createElementBlock("div", {
|
|
15725
15730
|
key: i22,
|
|
@@ -17061,7 +17066,7 @@ const _sfc_main$y = /* @__PURE__ */ vue.defineComponent({
|
|
|
17061
17066
|
const Checkbox = /* @__PURE__ */ _export_sfc(_sfc_main$y, [["__scopeId", "data-v-5f3ff6ea"]]);
|
|
17062
17067
|
const _hoisted_1$G = { class: "bagel-input" };
|
|
17063
17068
|
const _hoisted_2$B = { class: "mt-1" };
|
|
17064
|
-
const _hoisted_3$
|
|
17069
|
+
const _hoisted_3$x = {
|
|
17065
17070
|
key: 0,
|
|
17066
17071
|
class: "bglform-contact-confirm"
|
|
17067
17072
|
};
|
|
@@ -17128,7 +17133,7 @@ const _sfc_main$x = /* @__PURE__ */ vue.defineComponent({
|
|
|
17128
17133
|
class: "bglform-contact mb-2",
|
|
17129
17134
|
key: i2
|
|
17130
17135
|
}, [
|
|
17131
|
-
vue.unref(deleteCandidate) === i2 ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_3$
|
|
17136
|
+
vue.unref(deleteCandidate) === i2 ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_3$x, [
|
|
17132
17137
|
vue.createElementVNode("p", _hoisted_4$i, vue.toDisplayString((_a = formPlaceholders.value) == null ? void 0 : _a.sure), 1),
|
|
17133
17138
|
vue.createVNode(vue.unref(Btn), {
|
|
17134
17139
|
thin: "",
|
|
@@ -17216,7 +17221,7 @@ const _sfc_main$x = /* @__PURE__ */ vue.defineComponent({
|
|
|
17216
17221
|
const ContactArrayFormKit = /* @__PURE__ */ _export_sfc(_sfc_main$x, [["__scopeId", "data-v-0533667e"]]);
|
|
17217
17222
|
const _hoisted_1$F = { class: "bagel-input" };
|
|
17218
17223
|
const _hoisted_2$A = { class: "mt-1" };
|
|
17219
|
-
const _hoisted_3$
|
|
17224
|
+
const _hoisted_3$w = {
|
|
17220
17225
|
key: 0,
|
|
17221
17226
|
class: "bglform-contact-confirm"
|
|
17222
17227
|
};
|
|
@@ -17225,7 +17230,7 @@ const _hoisted_5$d = ["onUpdate:modelValue", "placeholder"];
|
|
|
17225
17230
|
const _hoisted_6$a = { class: "bglform-contact-address" };
|
|
17226
17231
|
const _hoisted_7$6 = ["onUpdate:modelValue", "placeholder"];
|
|
17227
17232
|
const _hoisted_8$3 = { class: "bglform-contact-address-flex" };
|
|
17228
|
-
const _hoisted_9$
|
|
17233
|
+
const _hoisted_9$2 = ["onUpdate:modelValue", "placeholder"];
|
|
17229
17234
|
const _hoisted_10$2 = ["onUpdate:modelValue", "placeholder"];
|
|
17230
17235
|
const _hoisted_11$1 = ["onUpdate:modelValue", "placeholder"];
|
|
17231
17236
|
const _hoisted_12$1 = { class: "bglform-address-del" };
|
|
@@ -17294,7 +17299,7 @@ const _sfc_main$w = /* @__PURE__ */ vue.defineComponent({
|
|
|
17294
17299
|
class: "bglform-contact mb-3",
|
|
17295
17300
|
key: i2
|
|
17296
17301
|
}, [
|
|
17297
|
-
vue.unref(deleteCandidate) === i2 ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_3$
|
|
17302
|
+
vue.unref(deleteCandidate) === i2 ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_3$w, [
|
|
17298
17303
|
vue.createElementVNode("p", _hoisted_4$h, vue.toDisplayString((_a = formPlaceholders.value) == null ? void 0 : _a.sure), 1),
|
|
17299
17304
|
vue.createVNode(vue.unref(Btn), {
|
|
17300
17305
|
thin: "",
|
|
@@ -17347,7 +17352,7 @@ const _sfc_main$w = /* @__PURE__ */ vue.defineComponent({
|
|
|
17347
17352
|
"onUpdate:modelValue": ($event) => address.city = $event,
|
|
17348
17353
|
placeholder: (_d = formPlaceholders.value) == null ? void 0 : _d.city,
|
|
17349
17354
|
type: "text"
|
|
17350
|
-
}, null, 8, _hoisted_9$
|
|
17355
|
+
}, null, 8, _hoisted_9$2), [
|
|
17351
17356
|
[vue.vModelText, address.city]
|
|
17352
17357
|
]),
|
|
17353
17358
|
vue.withDirectives(vue.createElementVNode("input", {
|
|
@@ -17399,7 +17404,7 @@ const _sfc_main$w = /* @__PURE__ */ vue.defineComponent({
|
|
|
17399
17404
|
const AddressArray = /* @__PURE__ */ _export_sfc(_sfc_main$w, [["__scopeId", "data-v-98a4f943"]]);
|
|
17400
17405
|
const _hoisted_1$E = { class: "bagel-input" };
|
|
17401
17406
|
const _hoisted_2$z = { class: "mt-1" };
|
|
17402
|
-
const _hoisted_3$
|
|
17407
|
+
const _hoisted_3$v = {
|
|
17403
17408
|
key: 0,
|
|
17404
17409
|
class: "bglform-contact-confirm"
|
|
17405
17410
|
};
|
|
@@ -17408,7 +17413,7 @@ const _hoisted_5$c = ["onUpdate:modelValue", "placeholder"];
|
|
|
17408
17413
|
const _hoisted_6$9 = { class: "bglform-contact-address" };
|
|
17409
17414
|
const _hoisted_7$5 = ["onUpdate:modelValue", "placeholder"];
|
|
17410
17415
|
const _hoisted_8$2 = { class: "bglform-contact-address-flex" };
|
|
17411
|
-
const _hoisted_9$
|
|
17416
|
+
const _hoisted_9$1 = ["onUpdate:modelValue", "placeholder"];
|
|
17412
17417
|
const _hoisted_10$1 = ["onUpdate:modelValue", "placeholder"];
|
|
17413
17418
|
const _hoisted_11 = { class: "grid gap-2" };
|
|
17414
17419
|
const _hoisted_12 = ["onUpdate:modelValue", "placeholder"];
|
|
@@ -17476,7 +17481,7 @@ const _sfc_main$v = /* @__PURE__ */ vue.defineComponent({
|
|
|
17476
17481
|
class: "bglform-contact mb-3",
|
|
17477
17482
|
key: i2
|
|
17478
17483
|
}, [
|
|
17479
|
-
vue.unref(deleteCandidate) === i2 ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_3$
|
|
17484
|
+
vue.unref(deleteCandidate) === i2 ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_3$v, [
|
|
17480
17485
|
vue.createElementVNode("p", _hoisted_4$g, vue.toDisplayString((_a = formPlaceholders.value) == null ? void 0 : _a.sure), 1),
|
|
17481
17486
|
vue.createVNode(vue.unref(Btn), {
|
|
17482
17487
|
thin: "",
|
|
@@ -17531,7 +17536,7 @@ const _sfc_main$v = /* @__PURE__ */ vue.defineComponent({
|
|
|
17531
17536
|
placeholder: (_d = formPlaceholders.value) == null ? void 0 : _d.bankBranch,
|
|
17532
17537
|
type: "text",
|
|
17533
17538
|
required: ""
|
|
17534
|
-
}, null, 8, _hoisted_9$
|
|
17539
|
+
}, null, 8, _hoisted_9$1), [
|
|
17535
17540
|
[vue.vModelText, bank_account.branch]
|
|
17536
17541
|
]),
|
|
17537
17542
|
vue.withDirectives(vue.createElementVNode("input", {
|
|
@@ -17663,7 +17668,7 @@ const MiscFieldsBtns = /* @__PURE__ */ _export_sfc(_sfc_main$u, [["__scopeId", "
|
|
|
17663
17668
|
const _withScopeId$1 = (n) => (vue.pushScopeId("data-v-d12598ff"), n = n(), vue.popScopeId(), n);
|
|
17664
17669
|
const _hoisted_1$C = ["title"];
|
|
17665
17670
|
const _hoisted_2$y = { class: "switch" };
|
|
17666
|
-
const _hoisted_3$
|
|
17671
|
+
const _hoisted_3$u = ["id"];
|
|
17667
17672
|
const _hoisted_4$f = /* @__PURE__ */ _withScopeId$1(() => /* @__PURE__ */ vue.createElementVNode("span", { class: "slider round" }, null, -1));
|
|
17668
17673
|
const _sfc_main$t = /* @__PURE__ */ vue.defineComponent({
|
|
17669
17674
|
__name: "Toggle",
|
|
@@ -17698,7 +17703,7 @@ const _sfc_main$t = /* @__PURE__ */ vue.defineComponent({
|
|
|
17698
17703
|
type: "checkbox",
|
|
17699
17704
|
"onUpdate:modelValue": _cache[1] || (_cache[1] = ($event) => vue.isRef(inputVal) ? inputVal.value = $event : inputVal = $event),
|
|
17700
17705
|
id: (_c = __props.context) == null ? void 0 : _c.id
|
|
17701
|
-
}, null, 40, _hoisted_3$
|
|
17706
|
+
}, null, 40, _hoisted_3$u), [
|
|
17702
17707
|
[vue.vModelCheckbox, vue.unref(inputVal)]
|
|
17703
17708
|
]),
|
|
17704
17709
|
_hoisted_4$f
|
|
@@ -17709,20 +17714,19 @@ const _sfc_main$t = /* @__PURE__ */ vue.defineComponent({
|
|
|
17709
17714
|
});
|
|
17710
17715
|
const Toggle = /* @__PURE__ */ _export_sfc(_sfc_main$t, [["__scopeId", "data-v-d12598ff"]]);
|
|
17711
17716
|
const _hoisted_1$B = { class: "files-wrapper flex" };
|
|
17712
|
-
const _hoisted_2$x =
|
|
17713
|
-
const _hoisted_3$u = {
|
|
17717
|
+
const _hoisted_2$x = {
|
|
17714
17718
|
key: 0,
|
|
17715
17719
|
class: "img-label"
|
|
17716
17720
|
};
|
|
17717
|
-
const
|
|
17718
|
-
const
|
|
17719
|
-
const
|
|
17720
|
-
const
|
|
17721
|
-
const
|
|
17721
|
+
const _hoisted_3$t = { class: "uploading-wrap" };
|
|
17722
|
+
const _hoisted_4$e = { class: "load-file-bar" };
|
|
17723
|
+
const _hoisted_5$b = ["src", "alt"];
|
|
17724
|
+
const _hoisted_6$8 = { class: "flex" };
|
|
17725
|
+
const _hoisted_7$4 = {
|
|
17722
17726
|
key: 0,
|
|
17723
17727
|
class: "progress"
|
|
17724
17728
|
};
|
|
17725
|
-
const
|
|
17729
|
+
const _hoisted_8$1 = ["multiple"];
|
|
17726
17730
|
const _sfc_main$s = /* @__PURE__ */ vue.defineComponent({
|
|
17727
17731
|
__name: "FileUploader",
|
|
17728
17732
|
props: {
|
|
@@ -17868,33 +17872,33 @@ const _sfc_main$s = /* @__PURE__ */ vue.defineComponent({
|
|
|
17868
17872
|
]),
|
|
17869
17873
|
_: 1
|
|
17870
17874
|
}),
|
|
17871
|
-
allowUpload.value ? (vue.openBlock(), vue.createElementBlock("div",
|
|
17875
|
+
allowUpload.value ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_2$x, [
|
|
17872
17876
|
vue.createElementVNode("p", null, [
|
|
17873
17877
|
vue.createTextVNode(vue.toDisplayString(_ctx.dragDropLabel) + " ", 1),
|
|
17874
17878
|
vue.createElementVNode("span", null, vue.toDisplayString(_ctx.browseLabel), 1)
|
|
17875
17879
|
])
|
|
17876
17880
|
])) : vue.createCommentVNode("", true),
|
|
17877
|
-
vue.createElementVNode("div",
|
|
17881
|
+
vue.createElementVNode("div", _hoisted_3$t, [
|
|
17878
17882
|
(vue.openBlock(true), vue.createElementBlock(vue.Fragment, null, vue.renderList(files.value, (item, index2) => {
|
|
17879
17883
|
return vue.openBlock(), vue.createElementBlock("div", {
|
|
17880
17884
|
class: vue.normalizeClass({ uploading: item.uploading }),
|
|
17881
17885
|
key: index2
|
|
17882
17886
|
}, [
|
|
17883
|
-
vue.createElementVNode("div",
|
|
17887
|
+
vue.createElementVNode("div", _hoisted_4$e, [
|
|
17884
17888
|
isImg(item) ? (vue.openBlock(), vue.createElementBlock("img", {
|
|
17885
17889
|
key: 0,
|
|
17886
17890
|
width: "40",
|
|
17887
17891
|
src: item.dataUrl,
|
|
17888
17892
|
alt: item.name,
|
|
17889
17893
|
style: { "margin-inline-end": "10px" }
|
|
17890
|
-
}, null, 8,
|
|
17894
|
+
}, null, 8, _hoisted_5$b)) : vue.createCommentVNode("", true),
|
|
17891
17895
|
vue.createElementVNode("p", null, vue.toDisplayString(item.name), 1),
|
|
17892
|
-
vue.createElementVNode("div",
|
|
17896
|
+
vue.createElementVNode("div", _hoisted_6$8, [
|
|
17893
17897
|
vue.createElementVNode("div", {
|
|
17894
17898
|
class: vue.normalizeClass(["pie", { complete: item.progress === 100 }]),
|
|
17895
17899
|
style: vue.normalizeStyle([`--p:${item.progress}`, { "--b": "2px" }])
|
|
17896
17900
|
}, [
|
|
17897
|
-
item.progress < 100 ? (vue.openBlock(), vue.createElementBlock("span",
|
|
17901
|
+
item.progress < 100 ? (vue.openBlock(), vue.createElementBlock("span", _hoisted_7$4, vue.toDisplayString(`${item.progress.toFixed(0)}`), 1)) : vue.createCommentVNode("", true),
|
|
17898
17902
|
vue.createVNode(vue.unref(_sfc_main$R), {
|
|
17899
17903
|
class: "success",
|
|
17900
17904
|
icon: "check"
|
|
@@ -17912,7 +17916,7 @@ const _sfc_main$s = /* @__PURE__ */ vue.defineComponent({
|
|
|
17912
17916
|
], 2);
|
|
17913
17917
|
}), 128))
|
|
17914
17918
|
])
|
|
17915
|
-
],
|
|
17919
|
+
], 544),
|
|
17916
17920
|
vue.createElementVNode("input", {
|
|
17917
17921
|
class: "file-input",
|
|
17918
17922
|
type: "file",
|
|
@@ -17920,7 +17924,7 @@ const _sfc_main$s = /* @__PURE__ */ vue.defineComponent({
|
|
|
17920
17924
|
ref_key: "fileInputEl",
|
|
17921
17925
|
ref: fileInputEl,
|
|
17922
17926
|
multiple: ((_a = _ctx.context) == null ? void 0 : _a.attrs.multiple) || false
|
|
17923
|
-
}, null, 40,
|
|
17927
|
+
}, null, 40, _hoisted_8$1)
|
|
17924
17928
|
]);
|
|
17925
17929
|
};
|
|
17926
17930
|
}
|
|
@@ -17930,7 +17934,7 @@ const _hoisted_1$A = {
|
|
|
17930
17934
|
class: "person-card-edit flex gap-2"
|
|
17931
17935
|
};
|
|
17932
17936
|
const _hoisted_2$w = { class: "person-card-icon-wrap" };
|
|
17933
|
-
const _hoisted_3$
|
|
17937
|
+
const _hoisted_3$s = { class: "person-card-icon" };
|
|
17934
17938
|
const _hoisted_4$d = { class: "person-card-name txt20" };
|
|
17935
17939
|
const _hoisted_5$a = { class: "person-card-details-wrap" };
|
|
17936
17940
|
const _hoisted_6$7 = {
|
|
@@ -17997,7 +18001,7 @@ const _sfc_main$r = /* @__PURE__ */ vue.defineComponent({
|
|
|
17997
18001
|
})
|
|
17998
18002
|
])) : vue.createCommentVNode("", true),
|
|
17999
18003
|
vue.createElementVNode("div", _hoisted_2$w, [
|
|
18000
|
-
vue.createElementVNode("p", _hoisted_3$
|
|
18004
|
+
vue.createElementVNode("p", _hoisted_3$s, vue.toDisplayString(vue.unref(initials)(person.value.first_name, person.value.last_name)), 1),
|
|
18001
18005
|
vue.createElementVNode("p", _hoisted_4$d, vue.toDisplayString(person.value.first_name) + " " + vue.toDisplayString(person.value.last_name), 1)
|
|
18002
18006
|
]),
|
|
18003
18007
|
vue.createElementVNode("div", _hoisted_5$a, [
|
|
@@ -18185,7 +18189,7 @@ const _sfc_main$o = /* @__PURE__ */ vue.defineComponent({
|
|
|
18185
18189
|
});
|
|
18186
18190
|
const _hoisted_1$y = { class: "bagel-input" };
|
|
18187
18191
|
const _hoisted_2$v = ["for"];
|
|
18188
|
-
const _hoisted_3$
|
|
18192
|
+
const _hoisted_3$r = ["checked"];
|
|
18189
18193
|
const _hoisted_4$c = ["name", "type", "value"];
|
|
18190
18194
|
const _hoisted_5$9 = ["name", "type", "value"];
|
|
18191
18195
|
const _hoisted_6$6 = ["name", "type", "value"];
|
|
@@ -18235,7 +18239,7 @@ const _sfc_main$n = /* @__PURE__ */ vue.defineComponent({
|
|
|
18235
18239
|
class: "ctl",
|
|
18236
18240
|
type: "checkbox",
|
|
18237
18241
|
onChange: handleCheck
|
|
18238
|
-
}, null, 40, _hoisted_3$
|
|
18242
|
+
}, null, 40, _hoisted_3$r)) : _ctx.type === "number" ? (vue.openBlock(), vue.createElementBlock("input", {
|
|
18239
18243
|
key: 1,
|
|
18240
18244
|
ref_key: "el",
|
|
18241
18245
|
ref: el,
|
|
@@ -18273,7 +18277,7 @@ const _sfc_main$n = /* @__PURE__ */ vue.defineComponent({
|
|
|
18273
18277
|
const _withScopeId = (n) => (vue.pushScopeId("data-v-69f0d857"), n = n(), vue.popScopeId(), n);
|
|
18274
18278
|
const _hoisted_1$x = ["title"];
|
|
18275
18279
|
const _hoisted_2$u = ["for"];
|
|
18276
|
-
const _hoisted_3$
|
|
18280
|
+
const _hoisted_3$q = { class: "switch" };
|
|
18277
18281
|
const _hoisted_4$b = ["id"];
|
|
18278
18282
|
const _hoisted_5$8 = /* @__PURE__ */ _withScopeId(() => /* @__PURE__ */ vue.createElementVNode("span", { class: "slider round" }, null, -1));
|
|
18279
18283
|
const _sfc_main$m = /* @__PURE__ */ vue.defineComponent({
|
|
@@ -18310,7 +18314,7 @@ const _sfc_main$m = /* @__PURE__ */ vue.defineComponent({
|
|
|
18310
18314
|
vue.createElementVNode("label", {
|
|
18311
18315
|
for: _ctx.field.id
|
|
18312
18316
|
}, vue.toDisplayString(_ctx.field.label), 9, _hoisted_2$u),
|
|
18313
|
-
vue.createElementVNode("label", _hoisted_3$
|
|
18317
|
+
vue.createElementVNode("label", _hoisted_3$q, [
|
|
18314
18318
|
vue.withDirectives(vue.createElementVNode("input", {
|
|
18315
18319
|
id: _ctx.field.id,
|
|
18316
18320
|
type: "checkbox",
|
|
@@ -18328,7 +18332,7 @@ const _sfc_main$m = /* @__PURE__ */ vue.defineComponent({
|
|
|
18328
18332
|
const CheckInput = /* @__PURE__ */ _export_sfc(_sfc_main$m, [["__scopeId", "data-v-69f0d857"]]);
|
|
18329
18333
|
const _hoisted_1$w = ["title"];
|
|
18330
18334
|
const _hoisted_2$t = { key: 0 };
|
|
18331
|
-
const _hoisted_3$
|
|
18335
|
+
const _hoisted_3$p = { class: "flex gap-3" };
|
|
18332
18336
|
const _hoisted_4$a = ["value", "placeholder"];
|
|
18333
18337
|
const _hoisted_5$7 = { class: "currency" };
|
|
18334
18338
|
const _sfc_main$l = /* @__PURE__ */ vue.defineComponent({
|
|
@@ -18433,7 +18437,7 @@ const _sfc_main$l = /* @__PURE__ */ vue.defineComponent({
|
|
|
18433
18437
|
title: _ctx.field.description
|
|
18434
18438
|
}, [
|
|
18435
18439
|
_ctx.field.label ? (vue.openBlock(), vue.createElementBlock("label", _hoisted_2$t, vue.toDisplayString(_ctx.field.label), 1)) : vue.createCommentVNode("", true),
|
|
18436
|
-
vue.createElementVNode("div", _hoisted_3$
|
|
18440
|
+
vue.createElementVNode("div", _hoisted_3$p, [
|
|
18437
18441
|
vue.createElementVNode("input", {
|
|
18438
18442
|
value: _ctx.modelValue,
|
|
18439
18443
|
type: "number",
|
|
@@ -18450,7 +18454,7 @@ const _sfc_main$l = /* @__PURE__ */ vue.defineComponent({
|
|
|
18450
18454
|
const CurrencyInput = /* @__PURE__ */ _export_sfc(_sfc_main$l, [["__scopeId", "data-v-17a56a3f"]]);
|
|
18451
18455
|
const _hoisted_1$v = ["title"];
|
|
18452
18456
|
const _hoisted_2$s = { key: 0 };
|
|
18453
|
-
const _hoisted_3$
|
|
18457
|
+
const _hoisted_3$o = ["placeholder", "disabled"];
|
|
18454
18458
|
const _sfc_main$k = /* @__PURE__ */ vue.defineComponent({
|
|
18455
18459
|
__name: "DateInput",
|
|
18456
18460
|
props: {
|
|
@@ -18482,7 +18486,7 @@ const _sfc_main$k = /* @__PURE__ */ vue.defineComponent({
|
|
|
18482
18486
|
disabled: !_ctx.editMode,
|
|
18483
18487
|
enableTimePicker: false,
|
|
18484
18488
|
textInputOptions: { format: "yyyy-MM-dd" }
|
|
18485
|
-
}, null, 40, _hoisted_3$
|
|
18489
|
+
}, null, 40, _hoisted_3$o), [
|
|
18486
18490
|
[vue.vModelText, date2.value]
|
|
18487
18491
|
])
|
|
18488
18492
|
], 10, _hoisted_1$v);
|
|
@@ -18492,7 +18496,7 @@ const _sfc_main$k = /* @__PURE__ */ vue.defineComponent({
|
|
|
18492
18496
|
const DateInput = /* @__PURE__ */ _export_sfc(_sfc_main$k, [["__scopeId", "data-v-782aee7f"]]);
|
|
18493
18497
|
const _hoisted_1$u = ["title"];
|
|
18494
18498
|
const _hoisted_2$r = { key: 0 };
|
|
18495
|
-
const _hoisted_3$
|
|
18499
|
+
const _hoisted_3$n = ["value", "placeholder"];
|
|
18496
18500
|
const _sfc_main$j = /* @__PURE__ */ vue.defineComponent({
|
|
18497
18501
|
__name: "DatetimeInput",
|
|
18498
18502
|
props: {
|
|
@@ -18528,14 +18532,14 @@ const _sfc_main$j = /* @__PURE__ */ vue.defineComponent({
|
|
|
18528
18532
|
onInput: handleInput,
|
|
18529
18533
|
placeholder: _ctx.placeholder,
|
|
18530
18534
|
class: vue.normalizeClass({ "no-edit": !_ctx.editMode })
|
|
18531
|
-
}, null, 42, _hoisted_3$
|
|
18535
|
+
}, null, 42, _hoisted_3$n)
|
|
18532
18536
|
], 10, _hoisted_1$u);
|
|
18533
18537
|
};
|
|
18534
18538
|
}
|
|
18535
18539
|
});
|
|
18536
18540
|
const _hoisted_1$t = ["title"];
|
|
18537
18541
|
const _hoisted_2$q = { key: 0 };
|
|
18538
|
-
const _hoisted_3$
|
|
18542
|
+
const _hoisted_3$m = ["value", "placeholder"];
|
|
18539
18543
|
const _sfc_main$i = /* @__PURE__ */ vue.defineComponent({
|
|
18540
18544
|
__name: "EmailInput",
|
|
18541
18545
|
props: {
|
|
@@ -18569,7 +18573,7 @@ const _sfc_main$i = /* @__PURE__ */ vue.defineComponent({
|
|
|
18569
18573
|
onInput: handleInput,
|
|
18570
18574
|
class: vue.normalizeClass({ "no-edit": !_ctx.editMode }),
|
|
18571
18575
|
placeholder: _ctx.placeholder
|
|
18572
|
-
}, null, 42, _hoisted_3$
|
|
18576
|
+
}, null, 42, _hoisted_3$m)
|
|
18573
18577
|
], 10, _hoisted_1$t);
|
|
18574
18578
|
};
|
|
18575
18579
|
}
|
|
@@ -18577,7 +18581,7 @@ const _sfc_main$i = /* @__PURE__ */ vue.defineComponent({
|
|
|
18577
18581
|
const EmailInput = /* @__PURE__ */ _export_sfc(_sfc_main$i, [["__scopeId", "data-v-ed81a514"]]);
|
|
18578
18582
|
const _hoisted_1$s = ["title"];
|
|
18579
18583
|
const _hoisted_2$p = { key: 0 };
|
|
18580
|
-
const _hoisted_3$
|
|
18584
|
+
const _hoisted_3$l = ["value", "placeholder"];
|
|
18581
18585
|
const _sfc_main$h = /* @__PURE__ */ vue.defineComponent({
|
|
18582
18586
|
__name: "FloatInput",
|
|
18583
18587
|
props: {
|
|
@@ -18614,14 +18618,14 @@ const _sfc_main$h = /* @__PURE__ */ vue.defineComponent({
|
|
|
18614
18618
|
onInput: handleInput,
|
|
18615
18619
|
class: vue.normalizeClass({ "no-edit": !_ctx.editMode }),
|
|
18616
18620
|
placeholder: _ctx.placeholder
|
|
18617
|
-
}, null, 42, _hoisted_3$
|
|
18621
|
+
}, null, 42, _hoisted_3$l)
|
|
18618
18622
|
], 10, _hoisted_1$s);
|
|
18619
18623
|
};
|
|
18620
18624
|
}
|
|
18621
18625
|
});
|
|
18622
18626
|
const _hoisted_1$r = ["title"];
|
|
18623
18627
|
const _hoisted_2$o = { key: 0 };
|
|
18624
|
-
const _hoisted_3$
|
|
18628
|
+
const _hoisted_3$k = ["value", "placeholder"];
|
|
18625
18629
|
const _sfc_main$g = /* @__PURE__ */ vue.defineComponent({
|
|
18626
18630
|
__name: "IntInput",
|
|
18627
18631
|
props: {
|
|
@@ -18658,14 +18662,14 @@ const _sfc_main$g = /* @__PURE__ */ vue.defineComponent({
|
|
|
18658
18662
|
onInput: handleInput,
|
|
18659
18663
|
class: vue.normalizeClass({ "no-edit": !_ctx.editMode }),
|
|
18660
18664
|
placeholder: _ctx.placeholder
|
|
18661
|
-
}, null, 42, _hoisted_3$
|
|
18665
|
+
}, null, 42, _hoisted_3$k)
|
|
18662
18666
|
], 10, _hoisted_1$r);
|
|
18663
18667
|
};
|
|
18664
18668
|
}
|
|
18665
18669
|
});
|
|
18666
18670
|
const _hoisted_1$q = ["title"];
|
|
18667
18671
|
const _hoisted_2$n = { key: 0 };
|
|
18668
|
-
const _hoisted_3$
|
|
18672
|
+
const _hoisted_3$j = ["value", "placeholder"];
|
|
18669
18673
|
const _sfc_main$f = /* @__PURE__ */ vue.defineComponent({
|
|
18670
18674
|
__name: "JSONInput",
|
|
18671
18675
|
props: {
|
|
@@ -18697,7 +18701,7 @@ const _sfc_main$f = /* @__PURE__ */ vue.defineComponent({
|
|
|
18697
18701
|
onInput: handleInput,
|
|
18698
18702
|
class: vue.normalizeClass({ "no-edit": !_ctx.editMode }),
|
|
18699
18703
|
placeholder: _ctx.placeholder
|
|
18700
|
-
}, null, 42, _hoisted_3$
|
|
18704
|
+
}, null, 42, _hoisted_3$j)
|
|
18701
18705
|
], 10, _hoisted_1$q);
|
|
18702
18706
|
};
|
|
18703
18707
|
}
|
|
@@ -18705,7 +18709,7 @@ const _sfc_main$f = /* @__PURE__ */ vue.defineComponent({
|
|
|
18705
18709
|
const JSONInput = /* @__PURE__ */ _export_sfc(_sfc_main$f, [["__scopeId", "data-v-1fc4f739"]]);
|
|
18706
18710
|
const _hoisted_1$p = ["title"];
|
|
18707
18711
|
const _hoisted_2$m = { key: 0 };
|
|
18708
|
-
const _hoisted_3$
|
|
18712
|
+
const _hoisted_3$i = ["disabled"];
|
|
18709
18713
|
const _hoisted_4$9 = ["onClick"];
|
|
18710
18714
|
const _hoisted_5$6 = {
|
|
18711
18715
|
key: 0,
|
|
@@ -18852,7 +18856,7 @@ const _sfc_main$e = /* @__PURE__ */ vue.defineComponent({
|
|
|
18852
18856
|
onFocus: initList,
|
|
18853
18857
|
onInput: handleInput,
|
|
18854
18858
|
disabled: !_ctx.editMode
|
|
18855
|
-
}, null, 40, _hoisted_3$
|
|
18859
|
+
}, null, 40, _hoisted_3$i), [
|
|
18856
18860
|
[vue.vModelText, selectedItem.value]
|
|
18857
18861
|
]),
|
|
18858
18862
|
vue.createElementVNode("div", {
|
|
@@ -18889,7 +18893,7 @@ const _sfc_main$e = /* @__PURE__ */ vue.defineComponent({
|
|
|
18889
18893
|
const LinkField = /* @__PURE__ */ _export_sfc(_sfc_main$e, [["__scopeId", "data-v-947beb38"]]);
|
|
18890
18894
|
const _hoisted_1$o = ["title"];
|
|
18891
18895
|
const _hoisted_2$l = { key: 0 };
|
|
18892
|
-
const _hoisted_3$
|
|
18896
|
+
const _hoisted_3$h = { class: "password-input-wrap" };
|
|
18893
18897
|
const _hoisted_4$8 = ["value", "type", "placeholder"];
|
|
18894
18898
|
const _sfc_main$d = /* @__PURE__ */ vue.defineComponent({
|
|
18895
18899
|
__name: "PasswordInput",
|
|
@@ -18928,7 +18932,7 @@ const _sfc_main$d = /* @__PURE__ */ vue.defineComponent({
|
|
|
18928
18932
|
_ctx.label ? (vue.openBlock(), vue.createElementBlock("label", _hoisted_2$l, [
|
|
18929
18933
|
vue.createVNode(_component_LangText, { input: _ctx.label }, null, 8, ["input"])
|
|
18930
18934
|
])) : vue.createCommentVNode("", true),
|
|
18931
|
-
vue.createElementVNode("div", _hoisted_3$
|
|
18935
|
+
vue.createElementVNode("div", _hoisted_3$h, [
|
|
18932
18936
|
vue.createElementVNode("input", {
|
|
18933
18937
|
value: _ctx.modelValue,
|
|
18934
18938
|
type: vue.unref(inputType),
|
|
@@ -18948,7 +18952,7 @@ const _sfc_main$d = /* @__PURE__ */ vue.defineComponent({
|
|
|
18948
18952
|
const PasswordInput = /* @__PURE__ */ _export_sfc(_sfc_main$d, [["__scopeId", "data-v-eec3e237"]]);
|
|
18949
18953
|
const _hoisted_1$n = ["title"];
|
|
18950
18954
|
const _hoisted_2$k = ["for"];
|
|
18951
|
-
const _hoisted_3$
|
|
18955
|
+
const _hoisted_3$g = ["id", "type", "placeholder", "required", "pattern"];
|
|
18952
18956
|
const _sfc_main$c = /* @__PURE__ */ vue.defineComponent({
|
|
18953
18957
|
__name: "Password",
|
|
18954
18958
|
props: {
|
|
@@ -18989,7 +18993,7 @@ const _sfc_main$c = /* @__PURE__ */ vue.defineComponent({
|
|
|
18989
18993
|
class: { "no-edit": !_ctx.editMode },
|
|
18990
18994
|
required: _ctx.required,
|
|
18991
18995
|
pattern: _ctx.pattern
|
|
18992
|
-
}, _ctx.nativeInputAttrs), null, 16, _hoisted_3$
|
|
18996
|
+
}, _ctx.nativeInputAttrs), null, 16, _hoisted_3$g), [
|
|
18993
18997
|
[vue.vModelDynamic, inputVal.value]
|
|
18994
18998
|
])
|
|
18995
18999
|
], 8, _hoisted_2$k),
|
|
@@ -19026,7 +19030,6 @@ const _sfc_main$b = /* @__PURE__ */ vue.defineComponent({
|
|
|
19026
19030
|
const ReadOnlyInput = /* @__PURE__ */ _export_sfc(_sfc_main$b, [["__scopeId", "data-v-b3b5a368"]]);
|
|
19027
19031
|
const _hoisted_1$l = ["title"];
|
|
19028
19032
|
const _hoisted_2$i = ["onClick"];
|
|
19029
|
-
const _hoisted_3$g = ["onClick"];
|
|
19030
19033
|
const _sfc_main$a = /* @__PURE__ */ vue.defineComponent({
|
|
19031
19034
|
__name: "SelectField",
|
|
19032
19035
|
props: {
|
|
@@ -19172,7 +19175,7 @@ const _sfc_main$a = /* @__PURE__ */ vue.defineComponent({
|
|
|
19172
19175
|
name: "select-input"
|
|
19173
19176
|
}, [
|
|
19174
19177
|
vue.createVNode(vue.unref(_sfc_main$T), { input: displayValue.value }, null, 8, ["input"])
|
|
19175
|
-
],
|
|
19178
|
+
], 2),
|
|
19176
19179
|
(vue.openBlock(), vue.createBlock(vue.Teleport, { to: "#app" }, [
|
|
19177
19180
|
vue.createElementVNode("div", {
|
|
19178
19181
|
ref_key: "dropdown",
|
|
@@ -19187,7 +19190,7 @@ const _sfc_main$a = /* @__PURE__ */ vue.defineComponent({
|
|
|
19187
19190
|
vue.createVNode(vue.unref(_sfc_main$T), {
|
|
19188
19191
|
input: option2.label
|
|
19189
19192
|
}, null, 8, ["input"])
|
|
19190
|
-
], 8,
|
|
19193
|
+
], 8, _hoisted_2$i);
|
|
19191
19194
|
}), 128))
|
|
19192
19195
|
], 2)
|
|
19193
19196
|
]))
|
|
@@ -22110,7 +22113,7 @@ const _sfc_main$4 = /* @__PURE__ */ vue.defineComponent({
|
|
|
22110
22113
|
}
|
|
22111
22114
|
});
|
|
22112
22115
|
const _hoisted_1$e = { key: 0 };
|
|
22113
|
-
const _hoisted_2$b = ["
|
|
22116
|
+
const _hoisted_2$b = ["disabled"];
|
|
22114
22117
|
const _hoisted_3$9 = { class: "custom-select-drop" };
|
|
22115
22118
|
const _hoisted_4$5 = ["onClick"];
|
|
22116
22119
|
const _sfc_main$3 = /* @__PURE__ */ vue.defineComponent({
|