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