@bagelink/vue 0.0.1102 → 0.0.1104
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/form/BglField.vue.d.ts.map +1 -1
- package/dist/components/form/inputs/DatePick.vue.d.ts +23 -0
- package/dist/components/form/inputs/DatePick.vue.d.ts.map +1 -0
- package/dist/components/form/inputs/NumberInput.vue.d.ts +1 -0
- package/dist/components/form/inputs/NumberInput.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/composables/useFormField.d.ts +11 -0
- package/dist/composables/useFormField.d.ts.map +1 -0
- package/dist/index.cjs +652 -285
- package/dist/index.mjs +652 -285
- package/dist/style.css +187 -6
- package/package.json +1 -1
- package/src/components/form/BglField.vue +6 -41
- package/src/components/form/BglForm.vue +1 -1
- package/src/components/form/inputs/DatePick.vue +344 -250
- package/src/components/form/inputs/NumberInput.vue +13 -1
- package/src/components/form/inputs/index.ts +1 -1
- package/src/composables/useFormField.ts +35 -0
package/dist/index.cjs
CHANGED
|
@@ -47,7 +47,7 @@ const bagelFormUtils = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defi
|
|
|
47
47
|
return uploadField;
|
|
48
48
|
}
|
|
49
49
|
}, Symbol.toStringTag, { value: "Module" }));
|
|
50
|
-
const _sfc_main$
|
|
50
|
+
const _sfc_main$18 = /* @__PURE__ */ vue.defineComponent({
|
|
51
51
|
__name: "Accordion",
|
|
52
52
|
setup(__props) {
|
|
53
53
|
const state2 = vue.reactive({
|
|
@@ -61,10 +61,10 @@ const _sfc_main$17 = /* @__PURE__ */ vue.defineComponent({
|
|
|
61
61
|
};
|
|
62
62
|
}
|
|
63
63
|
});
|
|
64
|
-
const _hoisted_1$
|
|
65
|
-
const _hoisted_2$
|
|
66
|
-
const _hoisted_3$
|
|
67
|
-
const _sfc_main$
|
|
64
|
+
const _hoisted_1$X = ["aria-expanded", "aria-controls"];
|
|
65
|
+
const _hoisted_2$D = { class: "accordion-label" };
|
|
66
|
+
const _hoisted_3$t = ["id", "aria-hidden"];
|
|
67
|
+
const _sfc_main$17 = /* @__PURE__ */ vue.defineComponent({
|
|
68
68
|
__name: "AccordionItem",
|
|
69
69
|
props: {
|
|
70
70
|
label: {},
|
|
@@ -130,7 +130,7 @@ const _sfc_main$16 = /* @__PURE__ */ vue.defineComponent({
|
|
|
130
130
|
vue.createVNode(vue.unref(_sfc_main$d), { icon: computedIcon.value }, null, 8, ["icon"])
|
|
131
131
|
], 2)) : vue.createCommentVNode("", true),
|
|
132
132
|
vue.renderSlot(_ctx.$slots, "head", {}, () => [
|
|
133
|
-
vue.createElementVNode("span", _hoisted_2$
|
|
133
|
+
vue.createElementVNode("span", _hoisted_2$D, vue.toDisplayString(_ctx.label), 1)
|
|
134
134
|
], true),
|
|
135
135
|
iconPosition.value === "end" ? (vue.openBlock(), vue.createElementBlock("span", {
|
|
136
136
|
key: 1,
|
|
@@ -138,7 +138,7 @@ const _sfc_main$16 = /* @__PURE__ */ vue.defineComponent({
|
|
|
138
138
|
}, [
|
|
139
139
|
vue.createVNode(vue.unref(_sfc_main$d), { icon: computedIcon.value }, null, 8, ["icon"])
|
|
140
140
|
], 2)) : vue.createCommentVNode("", true)
|
|
141
|
-
], 8, _hoisted_1$
|
|
141
|
+
], 8, _hoisted_1$X),
|
|
142
142
|
vue.createVNode(vue.Transition, { name: "expand" }, {
|
|
143
143
|
default: vue.withCtx(() => [
|
|
144
144
|
vue.unref(isOpen) ? (vue.openBlock(), vue.createElementBlock("div", {
|
|
@@ -148,7 +148,7 @@ const _sfc_main$16 = /* @__PURE__ */ vue.defineComponent({
|
|
|
148
148
|
"aria-hidden": vue.unref(isOpen) ? "false" : "true"
|
|
149
149
|
}, [
|
|
150
150
|
vue.renderSlot(_ctx.$slots, "default", {}, void 0, true)
|
|
151
|
-
], 8, _hoisted_3$
|
|
151
|
+
], 8, _hoisted_3$t)) : vue.createCommentVNode("", true)
|
|
152
152
|
]),
|
|
153
153
|
_: 3
|
|
154
154
|
})
|
|
@@ -163,9 +163,9 @@ const _export_sfc = (sfc, props2) => {
|
|
|
163
163
|
}
|
|
164
164
|
return target;
|
|
165
165
|
};
|
|
166
|
-
const AccordionItem = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
167
|
-
const _hoisted_1$
|
|
168
|
-
const _sfc_main$
|
|
166
|
+
const AccordionItem = /* @__PURE__ */ _export_sfc(_sfc_main$17, [["__scopeId", "data-v-1e73ca3e"]]);
|
|
167
|
+
const _hoisted_1$W = { class: "relative" };
|
|
168
|
+
const _sfc_main$16 = /* @__PURE__ */ vue.defineComponent({
|
|
169
169
|
__name: "AddressSearch",
|
|
170
170
|
emits: ["addressSelected"],
|
|
171
171
|
setup(__props, { emit: __emit }) {
|
|
@@ -187,8 +187,8 @@ const _sfc_main$15 = /* @__PURE__ */ vue.defineComponent({
|
|
|
187
187
|
(_a2 = suggestion.value) == null ? void 0 : _a2.show();
|
|
188
188
|
}
|
|
189
189
|
return (_ctx, _cache) => {
|
|
190
|
-
return vue.openBlock(), vue.createElementBlock("div", _hoisted_1$
|
|
191
|
-
vue.createVNode(vue.unref(_sfc_main$
|
|
190
|
+
return vue.openBlock(), vue.createElementBlock("div", _hoisted_1$W, [
|
|
191
|
+
vue.createVNode(vue.unref(_sfc_main$X), {
|
|
192
192
|
ref_key: "suggestion",
|
|
193
193
|
ref: suggestion,
|
|
194
194
|
noAutoFocus: true,
|
|
@@ -223,11 +223,11 @@ const _sfc_main$15 = /* @__PURE__ */ vue.defineComponent({
|
|
|
223
223
|
};
|
|
224
224
|
}
|
|
225
225
|
});
|
|
226
|
-
const _hoisted_1$
|
|
226
|
+
const _hoisted_1$V = {
|
|
227
227
|
key: 1,
|
|
228
228
|
class: "bgl_btn-flex"
|
|
229
229
|
};
|
|
230
|
-
const _sfc_main$
|
|
230
|
+
const _sfc_main$15 = /* @__PURE__ */ vue.defineComponent({
|
|
231
231
|
__name: "Btn",
|
|
232
232
|
props: {
|
|
233
233
|
disabled: { type: Boolean, default: false },
|
|
@@ -292,7 +292,7 @@ const _sfc_main$14 = /* @__PURE__ */ vue.defineComponent({
|
|
|
292
292
|
_ctx.loading ? (vue.openBlock(), vue.createBlock(vue.unref(Loading), {
|
|
293
293
|
key: 0,
|
|
294
294
|
size: "15"
|
|
295
|
-
})) : (vue.openBlock(), vue.createElementBlock("div", _hoisted_1$
|
|
295
|
+
})) : (vue.openBlock(), vue.createElementBlock("div", _hoisted_1$V, [
|
|
296
296
|
_ctx.icon ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$d), {
|
|
297
297
|
key: 0,
|
|
298
298
|
icon: _ctx.icon
|
|
@@ -314,10 +314,10 @@ const _sfc_main$14 = /* @__PURE__ */ vue.defineComponent({
|
|
|
314
314
|
};
|
|
315
315
|
}
|
|
316
316
|
});
|
|
317
|
-
const Btn = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
318
|
-
const _hoisted_1$
|
|
319
|
-
const _hoisted_2$
|
|
320
|
-
const _sfc_main$
|
|
317
|
+
const Btn = /* @__PURE__ */ _export_sfc(_sfc_main$15, [["__scopeId", "data-v-c23a3626"]]);
|
|
318
|
+
const _hoisted_1$U = ["dismissable"];
|
|
319
|
+
const _hoisted_2$C = { class: "m-0" };
|
|
320
|
+
const _sfc_main$14 = /* @__PURE__ */ vue.defineComponent({
|
|
321
321
|
__name: "Alert",
|
|
322
322
|
props: {
|
|
323
323
|
message: {},
|
|
@@ -345,7 +345,7 @@ const _sfc_main$13 = /* @__PURE__ */ vue.defineComponent({
|
|
|
345
345
|
size: 2,
|
|
346
346
|
color: color2[_ctx.type]
|
|
347
347
|
}, null, 8, ["icon", "color"])) : vue.createCommentVNode("", true),
|
|
348
|
-
vue.createElementVNode("p", _hoisted_2$
|
|
348
|
+
vue.createElementVNode("p", _hoisted_2$C, vue.toDisplayString(_ctx.message), 1),
|
|
349
349
|
vue.createVNode(Btn, {
|
|
350
350
|
flat: "",
|
|
351
351
|
thin: "",
|
|
@@ -353,13 +353,13 @@ const _sfc_main$13 = /* @__PURE__ */ vue.defineComponent({
|
|
|
353
353
|
icon: "close",
|
|
354
354
|
onClick: _cache[0] || (_cache[0] = ($event) => isDismissed.value = true)
|
|
355
355
|
})
|
|
356
|
-
], 10, _hoisted_1$
|
|
356
|
+
], 10, _hoisted_1$U)) : vue.createCommentVNode("", true);
|
|
357
357
|
};
|
|
358
358
|
}
|
|
359
359
|
});
|
|
360
|
-
const Alert = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
361
|
-
const _hoisted_1$
|
|
362
|
-
const _sfc_main$
|
|
360
|
+
const Alert = /* @__PURE__ */ _export_sfc(_sfc_main$14, [["__scopeId", "data-v-57141c32"]]);
|
|
361
|
+
const _hoisted_1$T = ["src", "alt"];
|
|
362
|
+
const _sfc_main$13 = /* @__PURE__ */ vue.defineComponent({
|
|
363
363
|
__name: "Avatar",
|
|
364
364
|
props: {
|
|
365
365
|
fallback: {},
|
|
@@ -377,7 +377,7 @@ const _sfc_main$12 = /* @__PURE__ */ vue.defineComponent({
|
|
|
377
377
|
key: 0,
|
|
378
378
|
src: _ctx.src,
|
|
379
379
|
alt: _ctx.name
|
|
380
|
-
}, null, 8, _hoisted_1$
|
|
380
|
+
}, null, 8, _hoisted_1$T)) : (vue.openBlock(), vue.createElementBlock("p", {
|
|
381
381
|
key: 1,
|
|
382
382
|
style: vue.normalizeStyle({ "line-height": `${_ctx.size}px`, "font-size": `calc(1.5rem * ${_ctx.size} / 50)` })
|
|
383
383
|
}, vue.toDisplayString((_ctx.fallback || vue.unref(initials)(_ctx.name || "")).toUpperCase()), 5))
|
|
@@ -385,8 +385,8 @@ const _sfc_main$12 = /* @__PURE__ */ vue.defineComponent({
|
|
|
385
385
|
};
|
|
386
386
|
}
|
|
387
387
|
});
|
|
388
|
-
const Avatar = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
389
|
-
const _sfc_main$
|
|
388
|
+
const Avatar = /* @__PURE__ */ _export_sfc(_sfc_main$13, [["__scopeId", "data-v-46ad8c25"]]);
|
|
389
|
+
const _sfc_main$12 = /* @__PURE__ */ vue.defineComponent({
|
|
390
390
|
__name: "Badge",
|
|
391
391
|
props: {
|
|
392
392
|
color: {},
|
|
@@ -415,9 +415,9 @@ const _sfc_main$11 = /* @__PURE__ */ vue.defineComponent({
|
|
|
415
415
|
};
|
|
416
416
|
}
|
|
417
417
|
});
|
|
418
|
-
const Badge = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
419
|
-
const _hoisted_1$
|
|
420
|
-
const _sfc_main$
|
|
418
|
+
const Badge = /* @__PURE__ */ _export_sfc(_sfc_main$12, [["__scopeId", "data-v-2f3caf93"]]);
|
|
419
|
+
const _hoisted_1$S = { key: 1 };
|
|
420
|
+
const _sfc_main$11 = /* @__PURE__ */ vue.defineComponent({
|
|
421
421
|
__name: "BglComponent",
|
|
422
422
|
props: {
|
|
423
423
|
field: {},
|
|
@@ -437,16 +437,16 @@ const _sfc_main$10 = /* @__PURE__ */ vue.defineComponent({
|
|
|
437
437
|
return TextInput;
|
|
438
438
|
}
|
|
439
439
|
if (props2.field.$el === "number") return NumberInput;
|
|
440
|
-
if (props2.field.$el === "array") return _sfc_main$
|
|
440
|
+
if (props2.field.$el === "array") return _sfc_main$Q;
|
|
441
441
|
if (props2.field.$el === "select") return SelectInput;
|
|
442
442
|
if (props2.field.$el === "toggle") return ToggleInput;
|
|
443
443
|
if (props2.field.$el === "check") return CheckInput;
|
|
444
444
|
if (props2.field.$el === "richtext") return RichText;
|
|
445
445
|
if (props2.field.$el === "upload") return UploadInput;
|
|
446
446
|
if (props2.field.$el === "file") return FileUpload;
|
|
447
|
-
if (props2.field.$el === "date") return _sfc_main$
|
|
447
|
+
if (props2.field.$el === "date") return _sfc_main$L;
|
|
448
448
|
if (props2.field.$el === "tabs") return TabsNav;
|
|
449
|
-
if (props2.field.$el === "form") return _sfc_main$
|
|
449
|
+
if (props2.field.$el === "form") return _sfc_main$S;
|
|
450
450
|
return props2.field.$el ?? "div";
|
|
451
451
|
});
|
|
452
452
|
function getFieldData(path) {
|
|
@@ -563,7 +563,7 @@ const _sfc_main$10 = /* @__PURE__ */ vue.defineComponent({
|
|
|
563
563
|
id: [props2.id, child.id].filter(Boolean).join("."),
|
|
564
564
|
field: child,
|
|
565
565
|
"parent-path": props2.id
|
|
566
|
-
}, null, 8, ["id", "field", "parent-path"])) : (vue.openBlock(), vue.createElementBlock("span", _hoisted_1$
|
|
566
|
+
}, null, 8, ["id", "field", "parent-path"])) : (vue.openBlock(), vue.createElementBlock("span", _hoisted_1$S, vue.toDisplayString(child), 1))
|
|
567
567
|
], 64);
|
|
568
568
|
}), 128))
|
|
569
569
|
], 64))
|
|
@@ -573,10 +573,10 @@ const _sfc_main$10 = /* @__PURE__ */ vue.defineComponent({
|
|
|
573
573
|
};
|
|
574
574
|
}
|
|
575
575
|
});
|
|
576
|
-
const _hoisted_1$
|
|
577
|
-
const _hoisted_2$
|
|
578
|
-
const _hoisted_3$
|
|
579
|
-
const _sfc_main
|
|
576
|
+
const _hoisted_1$R = ["src"];
|
|
577
|
+
const _hoisted_2$B = ["autoplay", "muted", "loop", "controls", "playsinline"];
|
|
578
|
+
const _hoisted_3$s = ["src", "type"];
|
|
579
|
+
const _sfc_main$10 = /* @__PURE__ */ vue.defineComponent({
|
|
580
580
|
__name: "BglVideo",
|
|
581
581
|
props: {
|
|
582
582
|
src: {},
|
|
@@ -653,7 +653,7 @@ const _sfc_main$$ = /* @__PURE__ */ vue.defineComponent({
|
|
|
653
653
|
allowfullscreen: "",
|
|
654
654
|
title: "Video",
|
|
655
655
|
allow: "autoplay"
|
|
656
|
-
}, null, 12, _hoisted_1$
|
|
656
|
+
}, null, 12, _hoisted_1$R)) : _ctx.src ? (vue.openBlock(), vue.createElementBlock("video", {
|
|
657
657
|
key: 1,
|
|
658
658
|
ref_key: "video",
|
|
659
659
|
ref: video,
|
|
@@ -667,18 +667,18 @@ const _sfc_main$$ = /* @__PURE__ */ vue.defineComponent({
|
|
|
667
667
|
vue.createElementVNode("source", {
|
|
668
668
|
src: _ctx.src,
|
|
669
669
|
type: `video/${videoFormat.value}`
|
|
670
|
-
}, null, 8, _hoisted_3$
|
|
671
|
-
], 12, _hoisted_2$
|
|
670
|
+
}, null, 8, _hoisted_3$s)
|
|
671
|
+
], 12, _hoisted_2$B)) : vue.createCommentVNode("", true)
|
|
672
672
|
], 2);
|
|
673
673
|
};
|
|
674
674
|
}
|
|
675
675
|
});
|
|
676
|
-
const BglVideo = /* @__PURE__ */ _export_sfc(_sfc_main
|
|
677
|
-
const _hoisted_1$
|
|
676
|
+
const BglVideo = /* @__PURE__ */ _export_sfc(_sfc_main$10, [["__scopeId", "data-v-006552f6"]]);
|
|
677
|
+
const _hoisted_1$Q = {
|
|
678
678
|
key: 0,
|
|
679
679
|
class: "card_label"
|
|
680
680
|
};
|
|
681
|
-
const _sfc_main
|
|
681
|
+
const _sfc_main$$ = /* @__PURE__ */ vue.defineComponent({
|
|
682
682
|
__name: "Card",
|
|
683
683
|
props: {
|
|
684
684
|
label: {},
|
|
@@ -707,7 +707,7 @@ const _sfc_main$_ = /* @__PURE__ */ vue.defineComponent({
|
|
|
707
707
|
}])
|
|
708
708
|
}, {
|
|
709
709
|
default: vue.withCtx(() => [
|
|
710
|
-
_ctx.label ? (vue.openBlock(), vue.createElementBlock("span", _hoisted_1$
|
|
710
|
+
_ctx.label ? (vue.openBlock(), vue.createElementBlock("span", _hoisted_1$Q, vue.toDisplayString(_ctx.label), 1)) : vue.createCommentVNode("", true),
|
|
711
711
|
vue.renderSlot(_ctx.$slots, "default")
|
|
712
712
|
]),
|
|
713
713
|
_: 3
|
|
@@ -717,18 +717,18 @@ const _sfc_main$_ = /* @__PURE__ */ vue.defineComponent({
|
|
|
717
717
|
};
|
|
718
718
|
}
|
|
719
719
|
});
|
|
720
|
-
const _hoisted_1$
|
|
721
|
-
const _hoisted_2$
|
|
720
|
+
const _hoisted_1$P = ["dir"];
|
|
721
|
+
const _hoisted_2$A = {
|
|
722
722
|
key: 0,
|
|
723
723
|
class: "blocker"
|
|
724
724
|
};
|
|
725
|
-
const _hoisted_3$
|
|
725
|
+
const _hoisted_3$r = {
|
|
726
726
|
key: 0,
|
|
727
727
|
class: "dots flex-center gap-05 mt-1"
|
|
728
728
|
};
|
|
729
|
-
const _hoisted_4$
|
|
730
|
-
const _hoisted_5$
|
|
731
|
-
const _sfc_main$
|
|
729
|
+
const _hoisted_4$j = ["onClick"];
|
|
730
|
+
const _hoisted_5$i = { class: "Handlers" };
|
|
731
|
+
const _sfc_main$_ = /* @__PURE__ */ vue.defineComponent({
|
|
732
732
|
__name: "Carousel",
|
|
733
733
|
props: {
|
|
734
734
|
autoHeight: { type: Boolean, default: false },
|
|
@@ -906,19 +906,19 @@ const _sfc_main$Z = /* @__PURE__ */ vue.defineComponent({
|
|
|
906
906
|
onMouseover: clearAutoplay,
|
|
907
907
|
onFocusin: clearAutoplay
|
|
908
908
|
}, [
|
|
909
|
-
vue.unref(isDragging) ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_2$
|
|
909
|
+
vue.unref(isDragging) ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_2$A)) : vue.createCommentVNode("", true),
|
|
910
910
|
vue.renderSlot(_ctx.$slots, "default", {}, void 0, true)
|
|
911
911
|
], 38),
|
|
912
|
-
__props.dots && vue.unref(slideCount) > 1 ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_3$
|
|
912
|
+
__props.dots && vue.unref(slideCount) > 1 ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_3$r, [
|
|
913
913
|
(vue.openBlock(true), vue.createElementBlock(vue.Fragment, null, vue.renderList(vue.unref(slideCount), (i2) => {
|
|
914
914
|
return vue.openBlock(), vue.createElementBlock("span", {
|
|
915
915
|
key: i2,
|
|
916
916
|
class: vue.normalizeClass(["dot cursor", { current: vue.unref(activeSlideIndex) === i2 - 1 }]),
|
|
917
917
|
onClick: ($event) => goToSlide(i2 - 1)
|
|
918
|
-
}, null, 10, _hoisted_4$
|
|
918
|
+
}, null, 10, _hoisted_4$j);
|
|
919
919
|
}), 128))
|
|
920
920
|
])) : vue.createCommentVNode("", true),
|
|
921
|
-
vue.createElementVNode("div", _hoisted_5$
|
|
921
|
+
vue.createElementVNode("div", _hoisted_5$i, [
|
|
922
922
|
vue.createElementVNode("span", { onClick: prev }, [
|
|
923
923
|
vue.renderSlot(_ctx.$slots, "prev", {
|
|
924
924
|
index: vue.unref(activeSlideIndex),
|
|
@@ -932,11 +932,11 @@ const _sfc_main$Z = /* @__PURE__ */ vue.defineComponent({
|
|
|
932
932
|
}, void 0, true)
|
|
933
933
|
])
|
|
934
934
|
])
|
|
935
|
-
], 14, _hoisted_1$
|
|
935
|
+
], 14, _hoisted_1$P);
|
|
936
936
|
};
|
|
937
937
|
}
|
|
938
938
|
});
|
|
939
|
-
const Carousel = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
939
|
+
const Carousel = /* @__PURE__ */ _export_sfc(_sfc_main$_, [["__scopeId", "data-v-063b5ad9"]]);
|
|
940
940
|
function _isPlaceholder(a2) {
|
|
941
941
|
return a2 != null && typeof a2 === "object" && a2["@@functional/placeholder"] === true;
|
|
942
942
|
}
|
|
@@ -5847,7 +5847,7 @@ const _hoisted_4$2$1 = {
|
|
|
5847
5847
|
};
|
|
5848
5848
|
const _hoisted_5$2$1 = ["x1", "y1", "x2", "y2"];
|
|
5849
5849
|
const _hoisted_6$2$1 = ["x1", "y1", "x2", "y2"];
|
|
5850
|
-
const _hoisted_7$
|
|
5850
|
+
const _hoisted_7$a = ["x1", "y1", "x2", "y2"];
|
|
5851
5851
|
function render$5(_ctx, _cache, $props, $setup, $data, $options) {
|
|
5852
5852
|
return _ctx.data.length ? (vue.openBlock(), vue.createElementBlock("g", {
|
|
5853
5853
|
key: 0,
|
|
@@ -5903,7 +5903,7 @@ function render$5(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
5903
5903
|
y1: _ctx.canvas.y,
|
|
5904
5904
|
x2: _ctx.canvas.width - 1,
|
|
5905
5905
|
y2: _ctx.canvas.height
|
|
5906
|
-
}, null, 8, _hoisted_7$
|
|
5906
|
+
}, null, 8, _hoisted_7$a)
|
|
5907
5907
|
])
|
|
5908
5908
|
], 8, _hoisted_1$4$1)) : vue.createCommentVNode("v-if", true);
|
|
5909
5909
|
}
|
|
@@ -6770,10 +6770,10 @@ const _hoisted_1$1$1 = {
|
|
|
6770
6770
|
style: { display: "flex", position: "relative" }
|
|
6771
6771
|
};
|
|
6772
6772
|
const _hoisted_2$1$1 = ["width", "height", "viewBox"];
|
|
6773
|
-
const _hoisted_3$
|
|
6774
|
-
const _hoisted_4$
|
|
6775
|
-
const _hoisted_5$
|
|
6776
|
-
const _hoisted_6$
|
|
6773
|
+
const _hoisted_3$q = { class: "layer-rectangles" };
|
|
6774
|
+
const _hoisted_4$i = ["transform", "onMouseover"];
|
|
6775
|
+
const _hoisted_5$h = ["width", "height"];
|
|
6776
|
+
const _hoisted_6$e = {
|
|
6777
6777
|
x: 0 + 10,
|
|
6778
6778
|
y: 0 + 20,
|
|
6779
6779
|
"font-size": `15px`,
|
|
@@ -6788,7 +6788,7 @@ function render$1(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
6788
6788
|
viewBox: `0 0 ${_ctx.size.width} ${_ctx.size.height}`,
|
|
6789
6789
|
ref: "el"
|
|
6790
6790
|
}, [
|
|
6791
|
-
vue.createElementVNode("g", _hoisted_3$
|
|
6791
|
+
vue.createElementVNode("g", _hoisted_3$q, [
|
|
6792
6792
|
(vue.openBlock(true), vue.createElementBlock(
|
|
6793
6793
|
vue.Fragment,
|
|
6794
6794
|
null,
|
|
@@ -6809,21 +6809,21 @@ function render$1(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
6809
6809
|
y: 0,
|
|
6810
6810
|
width: r2.width,
|
|
6811
6811
|
height: r2.height
|
|
6812
|
-
}), null, 16, _hoisted_5$
|
|
6812
|
+
}), null, 16, _hoisted_5$h),
|
|
6813
6813
|
vue.renderSlot(_ctx.$slots, "text", {
|
|
6814
6814
|
r: r2,
|
|
6815
6815
|
selected: _ctx.selected === i2
|
|
6816
6816
|
}, () => [
|
|
6817
6817
|
vue.createElementVNode(
|
|
6818
6818
|
"text",
|
|
6819
|
-
_hoisted_6$
|
|
6819
|
+
_hoisted_6$e,
|
|
6820
6820
|
vue.toDisplayString(r2.data.name),
|
|
6821
6821
|
1
|
|
6822
6822
|
/* TEXT */
|
|
6823
6823
|
)
|
|
6824
6824
|
])
|
|
6825
6825
|
])
|
|
6826
|
-
], 42, _hoisted_4$
|
|
6826
|
+
], 42, _hoisted_4$i);
|
|
6827
6827
|
}),
|
|
6828
6828
|
128
|
|
6829
6829
|
/* KEYED_FRAGMENT */
|
|
@@ -6880,25 +6880,25 @@ var script = vue.defineComponent({
|
|
|
6880
6880
|
return { bar, canvas, direction, mouse };
|
|
6881
6881
|
}
|
|
6882
6882
|
});
|
|
6883
|
-
const _hoisted_1$
|
|
6883
|
+
const _hoisted_1$O = {
|
|
6884
6884
|
key: 0,
|
|
6885
6885
|
class: "layer-hover-bar"
|
|
6886
6886
|
};
|
|
6887
|
-
const _hoisted_2$
|
|
6887
|
+
const _hoisted_2$z = ["x", "y", "width", "height"];
|
|
6888
6888
|
function render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
6889
|
-
return _ctx.mouse.hover ? (vue.openBlock(), vue.createElementBlock("g", _hoisted_1$
|
|
6889
|
+
return _ctx.mouse.hover ? (vue.openBlock(), vue.createElementBlock("g", _hoisted_1$O, [
|
|
6890
6890
|
vue.createElementVNode("rect", vue.mergeProps({ class: "hover-bar" }, _ctx.barStyle, {
|
|
6891
6891
|
x: _ctx.bar.x,
|
|
6892
6892
|
y: _ctx.bar.y,
|
|
6893
6893
|
width: _ctx.bar.width > 0 ? _ctx.bar.width : 0,
|
|
6894
6894
|
height: _ctx.bar.height > 0 ? _ctx.bar.height : 0
|
|
6895
|
-
}), null, 16, _hoisted_2$
|
|
6895
|
+
}), null, 16, _hoisted_2$z)
|
|
6896
6896
|
])) : vue.createCommentVNode("v-if", true);
|
|
6897
6897
|
}
|
|
6898
6898
|
script.render = render;
|
|
6899
6899
|
script.__file = "src/components/HoverBar/index.vue";
|
|
6900
6900
|
const BRAND_COLOR = "var(--bgl-primary)";
|
|
6901
|
-
const _sfc_main$
|
|
6901
|
+
const _sfc_main$Z = /* @__PURE__ */ vue.defineComponent({
|
|
6902
6902
|
__name: "Lineart",
|
|
6903
6903
|
props: {
|
|
6904
6904
|
data: {},
|
|
@@ -7038,28 +7038,28 @@ const _sfc_main$Y = /* @__PURE__ */ vue.defineComponent({
|
|
|
7038
7038
|
};
|
|
7039
7039
|
}
|
|
7040
7040
|
});
|
|
7041
|
-
const _hoisted_1$
|
|
7041
|
+
const _hoisted_1$N = {
|
|
7042
7042
|
key: 0,
|
|
7043
7043
|
class: "data"
|
|
7044
7044
|
};
|
|
7045
|
-
const _hoisted_2$
|
|
7045
|
+
const _hoisted_2$y = {
|
|
7046
7046
|
key: 0,
|
|
7047
7047
|
class: "data-row m_py-05"
|
|
7048
7048
|
};
|
|
7049
|
-
const _hoisted_3$
|
|
7050
|
-
const _hoisted_4$
|
|
7051
|
-
const _hoisted_5$
|
|
7052
|
-
const _hoisted_6$
|
|
7049
|
+
const _hoisted_3$p = { class: "key" };
|
|
7050
|
+
const _hoisted_4$h = { class: "m-0" };
|
|
7051
|
+
const _hoisted_5$g = { key: 1 };
|
|
7052
|
+
const _hoisted_6$d = {
|
|
7053
7053
|
key: 0,
|
|
7054
7054
|
class: "data-row"
|
|
7055
7055
|
};
|
|
7056
|
-
const _hoisted_7$
|
|
7057
|
-
const _hoisted_8$
|
|
7058
|
-
const _hoisted_9$
|
|
7056
|
+
const _hoisted_7$9 = { class: "key" };
|
|
7057
|
+
const _hoisted_8$6 = { class: "m-0" };
|
|
7058
|
+
const _hoisted_9$5 = {
|
|
7059
7059
|
key: 0,
|
|
7060
7060
|
class: "m-0"
|
|
7061
7061
|
};
|
|
7062
|
-
const _sfc_main$
|
|
7062
|
+
const _sfc_main$Y = /* @__PURE__ */ vue.defineComponent({
|
|
7063
7063
|
__name: "DataPreview",
|
|
7064
7064
|
props: /* @__PURE__ */ vue.mergeModels({
|
|
7065
7065
|
showFields: {},
|
|
@@ -7095,7 +7095,7 @@ const _sfc_main$X = /* @__PURE__ */ vue.defineComponent({
|
|
|
7095
7095
|
const computedSchema = vue.computed(() => getFallbackSchema([itemData.value], props2.showFields));
|
|
7096
7096
|
return (_ctx, _cache) => {
|
|
7097
7097
|
var _a2;
|
|
7098
|
-
return __props.data ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_1$
|
|
7098
|
+
return __props.data ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_1$N, [
|
|
7099
7099
|
_ctx.title ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$4), {
|
|
7100
7100
|
key: 0,
|
|
7101
7101
|
label: _ctx.title
|
|
@@ -7104,11 +7104,11 @@ const _sfc_main$X = /* @__PURE__ */ vue.defineComponent({
|
|
|
7104
7104
|
return vue.openBlock(), vue.createElementBlock(vue.Fragment, {
|
|
7105
7105
|
key: field.id
|
|
7106
7106
|
}, [
|
|
7107
|
-
vue.unref(iffer)(field, itemData.value) ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_2$
|
|
7108
|
-
vue.createElementVNode("div", _hoisted_3$
|
|
7109
|
-
vue.createElementVNode("p", _hoisted_4$
|
|
7107
|
+
vue.unref(iffer)(field, itemData.value) ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_2$y, [
|
|
7108
|
+
vue.createElementVNode("div", _hoisted_3$p, [
|
|
7109
|
+
vue.createElementVNode("p", _hoisted_4$h, vue.toDisplayString((field == null ? void 0 : field.label) || vue.unref(keyToLabel)(field.id)), 1)
|
|
7110
7110
|
]),
|
|
7111
|
-
vue.createVNode(vue.unref(_sfc_main$
|
|
7111
|
+
vue.createVNode(vue.unref(_sfc_main$T), {
|
|
7112
7112
|
modelValue: itemData.value,
|
|
7113
7113
|
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => itemData.value = $event),
|
|
7114
7114
|
label: "",
|
|
@@ -7118,15 +7118,15 @@ const _sfc_main$X = /* @__PURE__ */ vue.defineComponent({
|
|
|
7118
7118
|
])) : vue.createCommentVNode("", true)
|
|
7119
7119
|
], 64);
|
|
7120
7120
|
}), 128)),
|
|
7121
|
-
!((_a2 = _ctx.schema) == null ? void 0 : _a2.length) ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_5$
|
|
7121
|
+
!((_a2 = _ctx.schema) == null ? void 0 : _a2.length) ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_5$g, [
|
|
7122
7122
|
(vue.openBlock(true), vue.createElementBlock(vue.Fragment, null, vue.renderList(computedSchema.value, ({ id, label }) => {
|
|
7123
7123
|
return vue.openBlock(), vue.createElementBlock(vue.Fragment, { key: id }, [
|
|
7124
|
-
!isUnset(itemData.value[id]) ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_6$
|
|
7125
|
-
vue.createElementVNode("div", _hoisted_7$
|
|
7126
|
-
vue.createElementVNode("p", _hoisted_8$
|
|
7124
|
+
!isUnset(itemData.value[id]) ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_6$d, [
|
|
7125
|
+
vue.createElementVNode("div", _hoisted_7$9, [
|
|
7126
|
+
vue.createElementVNode("p", _hoisted_8$6, vue.toDisplayString(label), 1)
|
|
7127
7127
|
]),
|
|
7128
7128
|
vue.createElementVNode("div", null, [
|
|
7129
|
-
id ? (vue.openBlock(), vue.createElementBlock("p", _hoisted_9$
|
|
7129
|
+
id ? (vue.openBlock(), vue.createElementBlock("p", _hoisted_9$5, vue.toDisplayString(dataTransform(itemData.value[id])), 1)) : vue.createCommentVNode("", true)
|
|
7130
7130
|
])
|
|
7131
7131
|
])) : vue.createCommentVNode("", true)
|
|
7132
7132
|
], 64);
|
|
@@ -7137,7 +7137,7 @@ const _sfc_main$X = /* @__PURE__ */ vue.defineComponent({
|
|
|
7137
7137
|
};
|
|
7138
7138
|
}
|
|
7139
7139
|
});
|
|
7140
|
-
const DataPreview = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
7140
|
+
const DataPreview = /* @__PURE__ */ _export_sfc(_sfc_main$Y, [["__scopeId", "data-v-6c27f163"]]);
|
|
7141
7141
|
const sides = ["top", "right", "bottom", "left"];
|
|
7142
7142
|
const alignments = ["start", "end"];
|
|
7143
7143
|
const placements = /* @__PURE__ */ sides.reduce((acc, side) => acc.concat(side, side + "-" + alignments[0], side + "-" + alignments[1]), []);
|
|
@@ -9684,7 +9684,7 @@ const Gt$1 = {
|
|
|
9684
9684
|
install: Ct$1,
|
|
9685
9685
|
options: h
|
|
9686
9686
|
};
|
|
9687
|
-
const _sfc_main$
|
|
9687
|
+
const _sfc_main$X = /* @__PURE__ */ vue.defineComponent({
|
|
9688
9688
|
__name: "Dropdown",
|
|
9689
9689
|
props: /* @__PURE__ */ vue.mergeModels({
|
|
9690
9690
|
value: {},
|
|
@@ -9762,9 +9762,9 @@ const _sfc_main$W = /* @__PURE__ */ vue.defineComponent({
|
|
|
9762
9762
|
};
|
|
9763
9763
|
}
|
|
9764
9764
|
});
|
|
9765
|
-
const _hoisted_1$
|
|
9766
|
-
const _hoisted_2$
|
|
9767
|
-
const _sfc_main$
|
|
9765
|
+
const _hoisted_1$M = { class: "px-1 pt-025 pb-1" };
|
|
9766
|
+
const _hoisted_2$x = { class: "ms-1" };
|
|
9767
|
+
const _sfc_main$W = /* @__PURE__ */ vue.defineComponent({
|
|
9768
9768
|
__name: "FieldSetVue",
|
|
9769
9769
|
props: {
|
|
9770
9770
|
label: {},
|
|
@@ -9772,15 +9772,15 @@ const _sfc_main$V = /* @__PURE__ */ vue.defineComponent({
|
|
|
9772
9772
|
},
|
|
9773
9773
|
setup(__props) {
|
|
9774
9774
|
return (_ctx, _cache) => {
|
|
9775
|
-
return vue.openBlock(), vue.createElementBlock("fieldset", _hoisted_1$
|
|
9776
|
-
vue.createElementVNode("legend", _hoisted_2$
|
|
9775
|
+
return vue.openBlock(), vue.createElementBlock("fieldset", _hoisted_1$M, [
|
|
9776
|
+
vue.createElementVNode("legend", _hoisted_2$x, vue.toDisplayString(_ctx.legend || _ctx.label), 1),
|
|
9777
9777
|
vue.renderSlot(_ctx.$slots, "default", {}, void 0, true)
|
|
9778
9778
|
]);
|
|
9779
9779
|
};
|
|
9780
9780
|
}
|
|
9781
9781
|
});
|
|
9782
|
-
const FieldSetVue = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
9783
|
-
const _sfc_main$
|
|
9782
|
+
const FieldSetVue = /* @__PURE__ */ _export_sfc(_sfc_main$W, [["__scopeId", "data-v-f7e758e5"]]);
|
|
9783
|
+
const _sfc_main$V = /* @__PURE__ */ vue.defineComponent({
|
|
9784
9784
|
__name: "Flag",
|
|
9785
9785
|
props: {
|
|
9786
9786
|
country: {},
|
|
@@ -9810,7 +9810,92 @@ const _sfc_main$U = /* @__PURE__ */ vue.defineComponent({
|
|
|
9810
9810
|
};
|
|
9811
9811
|
}
|
|
9812
9812
|
});
|
|
9813
|
-
const Flag = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
9813
|
+
const Flag = /* @__PURE__ */ _export_sfc(_sfc_main$V, [["__scopeId", "data-v-f99f1900"]]);
|
|
9814
|
+
const FORM_STATE_KEY = Symbol("bagelFormState");
|
|
9815
|
+
function safeClone(obj) {
|
|
9816
|
+
if (obj === null || typeof obj !== "object") return obj;
|
|
9817
|
+
const seen = /* @__PURE__ */ new WeakSet();
|
|
9818
|
+
return JSON.parse(JSON.stringify(obj, (key, value) => {
|
|
9819
|
+
if (typeof value === "object" && value !== null) {
|
|
9820
|
+
if (seen.has(value)) {
|
|
9821
|
+
return void 0;
|
|
9822
|
+
}
|
|
9823
|
+
seen.add(value);
|
|
9824
|
+
}
|
|
9825
|
+
return value;
|
|
9826
|
+
}));
|
|
9827
|
+
}
|
|
9828
|
+
function provideBagelFormState(initialData) {
|
|
9829
|
+
const data2 = vue.ref(initialData);
|
|
9830
|
+
const isDirty = vue.ref(false);
|
|
9831
|
+
const getFieldData = (path) => {
|
|
9832
|
+
if (!path) return "";
|
|
9833
|
+
const keys4 = path.split(/[.[]/);
|
|
9834
|
+
let current = data2.value;
|
|
9835
|
+
for (let i2 = 0; i2 < keys4.length; i2++) {
|
|
9836
|
+
const key = keys4[i2];
|
|
9837
|
+
if (!current || typeof current !== "object" || !(key in current)) {
|
|
9838
|
+
return "";
|
|
9839
|
+
}
|
|
9840
|
+
current = current[key];
|
|
9841
|
+
}
|
|
9842
|
+
return current ?? "";
|
|
9843
|
+
};
|
|
9844
|
+
const updateField = (path, value) => {
|
|
9845
|
+
const keys4 = path.split(/[.[]/);
|
|
9846
|
+
if (typeof data2.value !== "object" || data2.value === null) {
|
|
9847
|
+
data2.value = {};
|
|
9848
|
+
}
|
|
9849
|
+
let current = data2.value;
|
|
9850
|
+
for (let i2 = 0; i2 < keys4.length - 1; i2++) {
|
|
9851
|
+
const key = keys4[i2];
|
|
9852
|
+
if (!(key in current) || typeof current[key] !== "object" || current[key] === null) {
|
|
9853
|
+
current[key] = {};
|
|
9854
|
+
}
|
|
9855
|
+
current = current[key];
|
|
9856
|
+
}
|
|
9857
|
+
const safeValue = safeClone(value);
|
|
9858
|
+
current[keys4[keys4.length - 1]] = safeValue;
|
|
9859
|
+
isDirty.value = true;
|
|
9860
|
+
};
|
|
9861
|
+
const state2 = {
|
|
9862
|
+
data: data2,
|
|
9863
|
+
getFieldData,
|
|
9864
|
+
updateField,
|
|
9865
|
+
isDirty
|
|
9866
|
+
};
|
|
9867
|
+
vue.provide(FORM_STATE_KEY, state2);
|
|
9868
|
+
return state2;
|
|
9869
|
+
}
|
|
9870
|
+
function useBagelFormState() {
|
|
9871
|
+
const state2 = vue.inject(FORM_STATE_KEY);
|
|
9872
|
+
if (!state2) throw new Error("BagelFormState must be provided");
|
|
9873
|
+
return state2;
|
|
9874
|
+
}
|
|
9875
|
+
function useFormField(props2) {
|
|
9876
|
+
const formState = vue.inject(FORM_STATE_KEY);
|
|
9877
|
+
const fieldData = vue.computed({
|
|
9878
|
+
get: () => {
|
|
9879
|
+
if (!props2.fieldID || !formState) return props2.modelValue ?? props2.field.defaultValue ?? "";
|
|
9880
|
+
const value = formState.getFieldData(props2.fieldID);
|
|
9881
|
+
if (props2.field.$el === "form" && !value) return {};
|
|
9882
|
+
return value ?? "";
|
|
9883
|
+
},
|
|
9884
|
+
set: (val) => {
|
|
9885
|
+
if (!props2.fieldID || !formState) return;
|
|
9886
|
+
const currentValue = formState.getFieldData(props2.fieldID);
|
|
9887
|
+
if (JSON.stringify(val) === JSON.stringify(currentValue)) return;
|
|
9888
|
+
if (props2.field.onUpdate) {
|
|
9889
|
+
props2.field.onUpdate(val, currentValue);
|
|
9890
|
+
}
|
|
9891
|
+
formState.updateField(props2.fieldID, val);
|
|
9892
|
+
}
|
|
9893
|
+
});
|
|
9894
|
+
return {
|
|
9895
|
+
fieldData,
|
|
9896
|
+
formState
|
|
9897
|
+
};
|
|
9898
|
+
}
|
|
9814
9899
|
const state$1 = vue.reactive(/* @__PURE__ */ new Map());
|
|
9815
9900
|
function useTabs(group) {
|
|
9816
9901
|
if (!state$1.has(group)) {
|
|
@@ -9824,8 +9909,8 @@ function useTabs(group) {
|
|
|
9824
9909
|
});
|
|
9825
9910
|
return { currentTab };
|
|
9826
9911
|
}
|
|
9827
|
-
const _hoisted_1$
|
|
9828
|
-
const _sfc_main$
|
|
9912
|
+
const _hoisted_1$L = ["onClick"];
|
|
9913
|
+
const _sfc_main$U = /* @__PURE__ */ vue.defineComponent({
|
|
9829
9914
|
__name: "TabsNav",
|
|
9830
9915
|
props: {
|
|
9831
9916
|
title: {},
|
|
@@ -9907,77 +9992,16 @@ const _sfc_main$T = /* @__PURE__ */ vue.defineComponent({
|
|
|
9907
9992
|
icon: tab.icon
|
|
9908
9993
|
}, null, 8, ["icon"])) : vue.createCommentVNode("", true),
|
|
9909
9994
|
vue.createTextVNode(" " + vue.toDisplayString(tabLabel(tab)), 1)
|
|
9910
|
-
], 10, _hoisted_1$
|
|
9995
|
+
], 10, _hoisted_1$L);
|
|
9911
9996
|
}), 128))
|
|
9912
9997
|
], true)
|
|
9913
9998
|
], 2);
|
|
9914
9999
|
};
|
|
9915
10000
|
}
|
|
9916
10001
|
});
|
|
9917
|
-
const TabsNav = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
9918
|
-
const
|
|
9919
|
-
|
|
9920
|
-
if (obj === null || typeof obj !== "object") return obj;
|
|
9921
|
-
const seen = /* @__PURE__ */ new WeakSet();
|
|
9922
|
-
return JSON.parse(JSON.stringify(obj, (key, value) => {
|
|
9923
|
-
if (typeof value === "object" && value !== null) {
|
|
9924
|
-
if (seen.has(value)) {
|
|
9925
|
-
return void 0;
|
|
9926
|
-
}
|
|
9927
|
-
seen.add(value);
|
|
9928
|
-
}
|
|
9929
|
-
return value;
|
|
9930
|
-
}));
|
|
9931
|
-
}
|
|
9932
|
-
function provideBagelFormState(initialData) {
|
|
9933
|
-
const data2 = vue.ref(initialData);
|
|
9934
|
-
const isDirty = vue.ref(false);
|
|
9935
|
-
const getFieldData = (path) => {
|
|
9936
|
-
if (!path) return "";
|
|
9937
|
-
const keys4 = path.split(/[.[]/);
|
|
9938
|
-
let current = data2.value;
|
|
9939
|
-
for (let i2 = 0; i2 < keys4.length; i2++) {
|
|
9940
|
-
const key = keys4[i2];
|
|
9941
|
-
if (!current || typeof current !== "object" || !(key in current)) {
|
|
9942
|
-
return "";
|
|
9943
|
-
}
|
|
9944
|
-
current = current[key];
|
|
9945
|
-
}
|
|
9946
|
-
return current ?? "";
|
|
9947
|
-
};
|
|
9948
|
-
const updateField = (path, value) => {
|
|
9949
|
-
const keys4 = path.split(/[.[]/);
|
|
9950
|
-
if (typeof data2.value !== "object" || data2.value === null) {
|
|
9951
|
-
data2.value = {};
|
|
9952
|
-
}
|
|
9953
|
-
let current = data2.value;
|
|
9954
|
-
for (let i2 = 0; i2 < keys4.length - 1; i2++) {
|
|
9955
|
-
const key = keys4[i2];
|
|
9956
|
-
if (!(key in current) || typeof current[key] !== "object" || current[key] === null) {
|
|
9957
|
-
current[key] = {};
|
|
9958
|
-
}
|
|
9959
|
-
current = current[key];
|
|
9960
|
-
}
|
|
9961
|
-
const safeValue = safeClone(value);
|
|
9962
|
-
current[keys4[keys4.length - 1]] = safeValue;
|
|
9963
|
-
isDirty.value = true;
|
|
9964
|
-
};
|
|
9965
|
-
const state2 = {
|
|
9966
|
-
data: data2,
|
|
9967
|
-
getFieldData,
|
|
9968
|
-
updateField,
|
|
9969
|
-
isDirty
|
|
9970
|
-
};
|
|
9971
|
-
vue.provide(FORM_STATE_KEY, state2);
|
|
9972
|
-
return state2;
|
|
9973
|
-
}
|
|
9974
|
-
function useBagelFormState() {
|
|
9975
|
-
const state2 = vue.inject(FORM_STATE_KEY);
|
|
9976
|
-
if (!state2) throw new Error("BagelFormState must be provided");
|
|
9977
|
-
return state2;
|
|
9978
|
-
}
|
|
9979
|
-
const _hoisted_1$J = { key: 1 };
|
|
9980
|
-
const _sfc_main$S = /* @__PURE__ */ vue.defineComponent({
|
|
10002
|
+
const TabsNav = /* @__PURE__ */ _export_sfc(_sfc_main$U, [["__scopeId", "data-v-307612a9"]]);
|
|
10003
|
+
const _hoisted_1$K = { key: 1 };
|
|
10004
|
+
const _sfc_main$T = /* @__PURE__ */ vue.defineComponent({
|
|
9981
10005
|
__name: "BglField",
|
|
9982
10006
|
props: {
|
|
9983
10007
|
field: {},
|
|
@@ -9988,8 +10012,7 @@ const _sfc_main$S = /* @__PURE__ */ vue.defineComponent({
|
|
|
9988
10012
|
emits: ["update:modelValue"],
|
|
9989
10013
|
setup(__props, { emit: __emit }) {
|
|
9990
10014
|
const props2 = __props;
|
|
9991
|
-
const
|
|
9992
|
-
const formState = vue.inject(FORM_STATE_KEY) ?? provideBagelFormState(props2.modelValue);
|
|
10015
|
+
const { fieldData } = useFormField(props2);
|
|
9993
10016
|
const customAttrs = vue.ref({});
|
|
9994
10017
|
const is4 = vue.computed(() => {
|
|
9995
10018
|
if (props2.field.$el === "text") return TextInput;
|
|
@@ -9998,62 +10021,36 @@ const _sfc_main$S = /* @__PURE__ */ vue.defineComponent({
|
|
|
9998
10021
|
return TextInput;
|
|
9999
10022
|
}
|
|
10000
10023
|
if (props2.field.$el === "number") return NumberInput;
|
|
10001
|
-
if (props2.field.$el === "array") return _sfc_main$
|
|
10024
|
+
if (props2.field.$el === "array") return _sfc_main$Q;
|
|
10002
10025
|
if (props2.field.$el === "select") return SelectInput;
|
|
10003
10026
|
if (props2.field.$el === "toggle") return ToggleInput;
|
|
10004
10027
|
if (props2.field.$el === "check") return CheckInput;
|
|
10005
10028
|
if (props2.field.$el === "richtext") return RichText;
|
|
10006
10029
|
if (props2.field.$el === "upload") return UploadInput;
|
|
10007
10030
|
if (props2.field.$el === "file") return FileUpload;
|
|
10008
|
-
if (props2.field.$el === "date") return _sfc_main$
|
|
10031
|
+
if (props2.field.$el === "date") return _sfc_main$L;
|
|
10009
10032
|
if (props2.field.$el === "tabs") return TabsNav;
|
|
10010
|
-
if (props2.field.$el === "bglform") return _sfc_main$
|
|
10033
|
+
if (props2.field.$el === "bglform") return _sfc_main$S;
|
|
10011
10034
|
return props2.field.$el ?? "div";
|
|
10012
10035
|
});
|
|
10013
|
-
const fieldData = vue.computed({
|
|
10014
|
-
get: () => {
|
|
10015
|
-
if (!props2.fieldID) return props2.field.defaultValue ?? (props2.field.$el === "form" ? {} : "");
|
|
10016
|
-
const value = formState.getFieldData(props2.fieldID);
|
|
10017
|
-
if (props2.field.$el === "form" && !value) return {};
|
|
10018
|
-
return value ?? "";
|
|
10019
|
-
},
|
|
10020
|
-
set: (val) => {
|
|
10021
|
-
if (!props2.fieldID) return;
|
|
10022
|
-
const currentValue = formState.getFieldData(props2.fieldID);
|
|
10023
|
-
if (JSON.stringify(val) === JSON.stringify(currentValue)) return;
|
|
10024
|
-
emit2("update:modelValue", val);
|
|
10025
|
-
if (props2.field.onUpdate) {
|
|
10026
|
-
props2.field.onUpdate(val, currentValue);
|
|
10027
|
-
}
|
|
10028
|
-
formState.updateField(props2.fieldID, val);
|
|
10029
|
-
}
|
|
10030
|
-
});
|
|
10031
|
-
const vIf = vue.computed(() => {
|
|
10032
|
-
if (props2.field["v-if"] === void 0 && props2.field.vIf === void 0) return true;
|
|
10033
|
-
if (typeof props2.field["v-if"] === "boolean" || typeof props2.field.vIf === "boolean") return props2.field["v-if"];
|
|
10034
|
-
if (typeof props2.field["v-if"] === "string" || typeof props2.field.vIf === "string") return true;
|
|
10035
|
-
if (typeof props2.field["v-if"] === "function") return props2.field["v-if"](fieldData.value, formState.data.value);
|
|
10036
|
-
if (typeof props2.field.vIf === "function") return props2.field.vIf(fieldData.value, formState.data.value);
|
|
10037
|
-
return true;
|
|
10038
|
-
});
|
|
10039
10036
|
const computedOptions = vue.computed(
|
|
10040
|
-
() => bindAttrs({ options: props2.field.options }, fieldData
|
|
10037
|
+
() => bindAttrs({ options: props2.field.options }, fieldData, props2.modelValue).options
|
|
10041
10038
|
);
|
|
10042
10039
|
const computedAttrs = vue.computed(() => {
|
|
10043
10040
|
const attrs = { ...customAttrs.value, ...props2.field.attrs };
|
|
10044
|
-
return bindAttrs(attrs, fieldData
|
|
10041
|
+
return bindAttrs(attrs, fieldData, props2.modelValue);
|
|
10045
10042
|
});
|
|
10046
10043
|
const computedClass = vue.computed(
|
|
10047
10044
|
() => {
|
|
10048
10045
|
var _a2;
|
|
10049
|
-
return classify(fieldData
|
|
10046
|
+
return classify(fieldData, props2.modelValue, props2.field.class, (_a2 = props2.field.attrs) == null ? void 0 : _a2.class);
|
|
10050
10047
|
}
|
|
10051
10048
|
);
|
|
10052
10049
|
return (_ctx, _cache) => {
|
|
10053
10050
|
const _component_BglField = vue.resolveComponent("BglField", true);
|
|
10054
|
-
return vIf.
|
|
10055
|
-
modelValue: fieldData
|
|
10056
|
-
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => fieldData.value = $event),
|
|
10051
|
+
return _ctx.field.vIf === void 0 || _ctx.field.vIf ? (vue.openBlock(), vue.createBlock(vue.resolveDynamicComponent(is4.value), vue.mergeProps({ key: 0 }, computedAttrs.value, {
|
|
10052
|
+
modelValue: vue.unref(fieldData),
|
|
10053
|
+
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => vue.isRef(fieldData) ? fieldData.value = $event : null),
|
|
10057
10054
|
fieldID: props2.fieldID,
|
|
10058
10055
|
required: _ctx.field.required,
|
|
10059
10056
|
class: computedClass.value,
|
|
@@ -10072,7 +10069,7 @@ const _sfc_main$S = /* @__PURE__ */ vue.defineComponent({
|
|
|
10072
10069
|
fieldID: [props2.fieldID, child.id].filter(Boolean).join("."),
|
|
10073
10070
|
field: child,
|
|
10074
10071
|
"parent-path": props2.fieldID
|
|
10075
|
-
}, null, 8, ["fieldID", "field", "parent-path"])) : (vue.openBlock(), vue.createElementBlock("span", _hoisted_1$
|
|
10072
|
+
}, null, 8, ["fieldID", "field", "parent-path"])) : (vue.openBlock(), vue.createElementBlock("span", _hoisted_1$K, vue.toDisplayString(child), 1))
|
|
10076
10073
|
], 64);
|
|
10077
10074
|
}), 128))
|
|
10078
10075
|
]),
|
|
@@ -10081,7 +10078,7 @@ const _sfc_main$S = /* @__PURE__ */ vue.defineComponent({
|
|
|
10081
10078
|
};
|
|
10082
10079
|
}
|
|
10083
10080
|
});
|
|
10084
|
-
const _sfc_main$
|
|
10081
|
+
const _sfc_main$S = /* @__PURE__ */ vue.defineComponent({
|
|
10085
10082
|
__name: "BglForm",
|
|
10086
10083
|
props: {
|
|
10087
10084
|
label: {},
|
|
@@ -10111,7 +10108,7 @@ const _sfc_main$R = /* @__PURE__ */ vue.defineComponent({
|
|
|
10111
10108
|
}
|
|
10112
10109
|
data2.value = newVal;
|
|
10113
10110
|
}, { deep: true, immediate: true });
|
|
10114
|
-
vue.watch(() => data2, (newVal) => {
|
|
10111
|
+
vue.watch(() => data2.value, (newVal) => {
|
|
10115
10112
|
if (emitDirty.value) return;
|
|
10116
10113
|
emitDirty.value = true;
|
|
10117
10114
|
emit2("dirty");
|
|
@@ -10183,7 +10180,7 @@ const _sfc_main$R = /* @__PURE__ */ vue.defineComponent({
|
|
|
10183
10180
|
return vue.openBlock(), vue.createElementBlock(vue.Fragment, null, [
|
|
10184
10181
|
_ctx.tag === "template" ? (vue.openBlock(), vue.createElementBlock(vue.Fragment, { key: 0 }, [
|
|
10185
10182
|
(vue.openBlock(true), vue.createElementBlock(vue.Fragment, null, vue.renderList(computedSchema.value, (field, i2) => {
|
|
10186
|
-
return vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$
|
|
10183
|
+
return vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$T), {
|
|
10187
10184
|
key: field.id || `${i2}p`,
|
|
10188
10185
|
fieldID: field.id,
|
|
10189
10186
|
field
|
|
@@ -10206,7 +10203,7 @@ const _sfc_main$R = /* @__PURE__ */ vue.defineComponent({
|
|
|
10206
10203
|
label: _ctx.label
|
|
10207
10204
|
}, null, 8, ["label"])) : vue.createCommentVNode("", true),
|
|
10208
10205
|
(vue.openBlock(true), vue.createElementBlock(vue.Fragment, null, vue.renderList(computedSchema.value, (field, i2) => {
|
|
10209
|
-
return vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$
|
|
10206
|
+
return vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$T), {
|
|
10210
10207
|
key: field.id || `${i2}p`,
|
|
10211
10208
|
fieldID: field.id,
|
|
10212
10209
|
field
|
|
@@ -10224,8 +10221,8 @@ const _sfc_main$R = /* @__PURE__ */ vue.defineComponent({
|
|
|
10224
10221
|
};
|
|
10225
10222
|
}
|
|
10226
10223
|
});
|
|
10227
|
-
const _hoisted_1$
|
|
10228
|
-
const _sfc_main$
|
|
10224
|
+
const _hoisted_1$J = { key: 0 };
|
|
10225
|
+
const _sfc_main$R = /* @__PURE__ */ vue.defineComponent({
|
|
10229
10226
|
__name: "BglMultiStepForm",
|
|
10230
10227
|
props: /* @__PURE__ */ vue.mergeModels({
|
|
10231
10228
|
bagelFormProps: { default: () => ({}) },
|
|
@@ -10292,8 +10289,8 @@ const _sfc_main$Q = /* @__PURE__ */ vue.defineComponent({
|
|
|
10292
10289
|
mode: "out-in"
|
|
10293
10290
|
}, {
|
|
10294
10291
|
default: vue.withCtx(() => [
|
|
10295
|
-
!vue.unref(isStepping) ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_1$
|
|
10296
|
-
vue.createVNode(vue.unref(_sfc_main$
|
|
10292
|
+
!vue.unref(isStepping) ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_1$J, [
|
|
10293
|
+
vue.createVNode(vue.unref(_sfc_main$S), vue.mergeProps({
|
|
10297
10294
|
ref_key: "formRef",
|
|
10298
10295
|
ref: formRef,
|
|
10299
10296
|
modelValue: formData.value,
|
|
@@ -10332,12 +10329,12 @@ const _sfc_main$Q = /* @__PURE__ */ vue.defineComponent({
|
|
|
10332
10329
|
};
|
|
10333
10330
|
}
|
|
10334
10331
|
});
|
|
10335
|
-
const _hoisted_1$
|
|
10336
|
-
const _hoisted_2$
|
|
10332
|
+
const _hoisted_1$I = { class: "label mb-05" };
|
|
10333
|
+
const _hoisted_2$w = {
|
|
10337
10334
|
key: 0,
|
|
10338
10335
|
class: "-ms-05 ps-05 border-start"
|
|
10339
10336
|
};
|
|
10340
|
-
const _sfc_main$
|
|
10337
|
+
const _sfc_main$Q = /* @__PURE__ */ vue.defineComponent({
|
|
10341
10338
|
__name: "FieldArray",
|
|
10342
10339
|
props: {
|
|
10343
10340
|
el: { default: "div" },
|
|
@@ -10394,8 +10391,8 @@ const _sfc_main$P = /* @__PURE__ */ vue.defineComponent({
|
|
|
10394
10391
|
return vue.openBlock(), vue.createElementBlock("div", {
|
|
10395
10392
|
class: vue.normalizeClass(props2.class)
|
|
10396
10393
|
}, [
|
|
10397
|
-
vue.createElementVNode("p", _hoisted_1$
|
|
10398
|
-
_ctx.schema ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_2$
|
|
10394
|
+
vue.createElementVNode("p", _hoisted_1$I, vue.toDisplayString(_ctx.label), 1),
|
|
10395
|
+
_ctx.schema ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_2$w, [
|
|
10399
10396
|
(vue.openBlock(true), vue.createElementBlock(vue.Fragment, null, vue.renderList(data2.value, (_2, i2) => {
|
|
10400
10397
|
return vue.openBlock(), vue.createElementBlock("div", {
|
|
10401
10398
|
key: i2,
|
|
@@ -10403,7 +10400,7 @@ const _sfc_main$P = /* @__PURE__ */ vue.defineComponent({
|
|
|
10403
10400
|
thin: "",
|
|
10404
10401
|
class: "mb-05 itemBox transition p-05"
|
|
10405
10402
|
}, [
|
|
10406
|
-
vue.createVNode(vue.unref(_sfc_main$
|
|
10403
|
+
vue.createVNode(vue.unref(_sfc_main$S), {
|
|
10407
10404
|
modelValue: data2.value[i2],
|
|
10408
10405
|
"onUpdate:modelValue": [($event) => data2.value[i2] = $event, emitValue],
|
|
10409
10406
|
schema: _ctx.schema
|
|
@@ -10433,7 +10430,7 @@ const _sfc_main$P = /* @__PURE__ */ vue.defineComponent({
|
|
|
10433
10430
|
_: 1
|
|
10434
10431
|
})) : vue.createCommentVNode("", true)
|
|
10435
10432
|
])) : (vue.openBlock(true), vue.createElementBlock(vue.Fragment, { key: 1 }, vue.renderList(data2.value, (_2, i2) => {
|
|
10436
|
-
return vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$
|
|
10433
|
+
return vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$T), {
|
|
10437
10434
|
key: i2,
|
|
10438
10435
|
modelValue: data2.value[i2],
|
|
10439
10436
|
"onUpdate:modelValue": [($event) => data2.value[i2] = $event, emitValue],
|
|
@@ -10444,8 +10441,8 @@ const _sfc_main$P = /* @__PURE__ */ vue.defineComponent({
|
|
|
10444
10441
|
};
|
|
10445
10442
|
}
|
|
10446
10443
|
});
|
|
10447
|
-
const _hoisted_1$
|
|
10448
|
-
const _sfc_main$
|
|
10444
|
+
const _hoisted_1$H = { class: "primary-checkbox" };
|
|
10445
|
+
const _sfc_main$P = /* @__PURE__ */ vue.defineComponent({
|
|
10449
10446
|
__name: "Checkbox",
|
|
10450
10447
|
props: {
|
|
10451
10448
|
"modelValue": { type: Boolean, ...{ default: false } },
|
|
@@ -10455,7 +10452,7 @@ const _sfc_main$O = /* @__PURE__ */ vue.defineComponent({
|
|
|
10455
10452
|
setup(__props) {
|
|
10456
10453
|
const val = vue.useModel(__props, "modelValue");
|
|
10457
10454
|
return (_ctx, _cache) => {
|
|
10458
|
-
return vue.openBlock(), vue.createElementBlock("label", _hoisted_1$
|
|
10455
|
+
return vue.openBlock(), vue.createElementBlock("label", _hoisted_1$H, [
|
|
10459
10456
|
vue.renderSlot(_ctx.$slots, "label", {}, void 0, true),
|
|
10460
10457
|
vue.withDirectives(vue.createElementVNode("input", {
|
|
10461
10458
|
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => val.value = $event),
|
|
@@ -10467,11 +10464,11 @@ const _sfc_main$O = /* @__PURE__ */ vue.defineComponent({
|
|
|
10467
10464
|
};
|
|
10468
10465
|
}
|
|
10469
10466
|
});
|
|
10470
|
-
const Checkbox = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
10471
|
-
const _hoisted_1$
|
|
10472
|
-
const _hoisted_2$
|
|
10473
|
-
const _hoisted_3$
|
|
10474
|
-
const _sfc_main$
|
|
10467
|
+
const Checkbox = /* @__PURE__ */ _export_sfc(_sfc_main$P, [["__scopeId", "data-v-73f1d9ad"]]);
|
|
10468
|
+
const _hoisted_1$G = ["title"];
|
|
10469
|
+
const _hoisted_2$v = ["id", "value", "required"];
|
|
10470
|
+
const _hoisted_3$o = ["for"];
|
|
10471
|
+
const _sfc_main$O = /* @__PURE__ */ vue.defineComponent({
|
|
10475
10472
|
__name: "CheckInput",
|
|
10476
10473
|
props: /* @__PURE__ */ vue.mergeModels({
|
|
10477
10474
|
label: {},
|
|
@@ -10505,32 +10502,32 @@ const _sfc_main$N = /* @__PURE__ */ vue.defineComponent({
|
|
|
10505
10502
|
required: _ctx.required,
|
|
10506
10503
|
type: "checkbox",
|
|
10507
10504
|
class: "me-05"
|
|
10508
|
-
}, null, 8, _hoisted_2$
|
|
10505
|
+
}, null, 8, _hoisted_2$v), [
|
|
10509
10506
|
[vue.vModelCheckbox, checked.value]
|
|
10510
10507
|
]),
|
|
10511
10508
|
vue.createElementVNode("label", { for: inputId.value }, [
|
|
10512
10509
|
vue.renderSlot(_ctx.$slots, "label", {}, () => [
|
|
10513
10510
|
vue.createTextVNode(vue.toDisplayString(_ctx.label), 1)
|
|
10514
10511
|
], true)
|
|
10515
|
-
], 8, _hoisted_3$
|
|
10516
|
-
], 10, _hoisted_1$
|
|
10512
|
+
], 8, _hoisted_3$o)
|
|
10513
|
+
], 10, _hoisted_1$G);
|
|
10517
10514
|
};
|
|
10518
10515
|
}
|
|
10519
10516
|
});
|
|
10520
|
-
const CheckInput = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
10521
|
-
const _hoisted_1$
|
|
10522
|
-
const _hoisted_2$
|
|
10517
|
+
const CheckInput = /* @__PURE__ */ _export_sfc(_sfc_main$O, [["__scopeId", "data-v-03ed2982"]]);
|
|
10518
|
+
const _hoisted_1$F = { class: "mb-05" };
|
|
10519
|
+
const _hoisted_2$u = {
|
|
10523
10520
|
key: 0,
|
|
10524
10521
|
class: "label txt-start"
|
|
10525
10522
|
};
|
|
10526
|
-
const _hoisted_3$
|
|
10523
|
+
const _hoisted_3$n = {
|
|
10527
10524
|
key: 1,
|
|
10528
10525
|
class: "code-editor-wrap grid rounded p-1 overflow hm-300px ltr txt-start relative h-100p"
|
|
10529
10526
|
};
|
|
10530
|
-
const _hoisted_4$
|
|
10531
|
-
const _hoisted_5$
|
|
10532
|
-
const _hoisted_6$
|
|
10533
|
-
const _sfc_main$
|
|
10527
|
+
const _hoisted_4$g = { class: "overflow-hidden absolute inset-0 p-0 m-0 h-100 codeText" };
|
|
10528
|
+
const _hoisted_5$f = ["innerHTML"];
|
|
10529
|
+
const _hoisted_6$c = ["onKeydown"];
|
|
10530
|
+
const _sfc_main$N = /* @__PURE__ */ vue.defineComponent({
|
|
10534
10531
|
__name: "Index",
|
|
10535
10532
|
props: {
|
|
10536
10533
|
language: {},
|
|
@@ -10612,19 +10609,19 @@ const _sfc_main$M = /* @__PURE__ */ vue.defineComponent({
|
|
|
10612
10609
|
}
|
|
10613
10610
|
}, { immediate: true });
|
|
10614
10611
|
return (_ctx, _cache) => {
|
|
10615
|
-
return vue.openBlock(), vue.createElementBlock("div", _hoisted_1$
|
|
10616
|
-
_ctx.label ? (vue.openBlock(), vue.createElementBlock("label", _hoisted_2$
|
|
10617
|
-
vue.unref(loaded) ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_3$
|
|
10612
|
+
return vue.openBlock(), vue.createElementBlock("div", _hoisted_1$F, [
|
|
10613
|
+
_ctx.label ? (vue.openBlock(), vue.createElementBlock("label", _hoisted_2$u, vue.toDisplayString(_ctx.label), 1)) : vue.createCommentVNode("", true),
|
|
10614
|
+
vue.unref(loaded) ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_3$n, [
|
|
10618
10615
|
vue.createElementVNode("div", {
|
|
10619
10616
|
class: "relative block h-100",
|
|
10620
10617
|
style: vue.normalizeStyle({ height: `calc(${vue.unref(elHeight)} - 2rem)` })
|
|
10621
10618
|
}, [
|
|
10622
|
-
vue.createElementVNode("pre", _hoisted_4$
|
|
10619
|
+
vue.createElementVNode("pre", _hoisted_4$g, [
|
|
10623
10620
|
_cache[2] || (_cache[2] = vue.createTextVNode(" ")),
|
|
10624
10621
|
vue.createElementVNode("code", {
|
|
10625
10622
|
class: vue.normalizeClass(["absolute inset-0", className.value]),
|
|
10626
10623
|
innerHTML: highlightedCode.value
|
|
10627
|
-
}, null, 10, _hoisted_5$
|
|
10624
|
+
}, null, 10, _hoisted_5$f),
|
|
10628
10625
|
_cache[3] || (_cache[3] = vue.createTextVNode("\n "))
|
|
10629
10626
|
]),
|
|
10630
10627
|
!_ctx.readonly ? vue.withDirectives((vue.openBlock(), vue.createElementBlock("textarea", {
|
|
@@ -10639,7 +10636,7 @@ const _sfc_main$M = /* @__PURE__ */ vue.defineComponent({
|
|
|
10639
10636
|
"data-gramm": "false",
|
|
10640
10637
|
onKeydown: vue.withKeys(vue.withModifiers(handleTab, ["prevent"]), ["tab"]),
|
|
10641
10638
|
onInput: _cache[1] || (_cache[1] = ($event) => emit2("update:modelValue", vue.unref(code)))
|
|
10642
|
-
}, null, 40, _hoisted_6$
|
|
10639
|
+
}, null, 40, _hoisted_6$c)), [
|
|
10643
10640
|
[vue.vModelText, vue.unref(code)]
|
|
10644
10641
|
]) : vue.createCommentVNode("", true)
|
|
10645
10642
|
], 4)
|
|
@@ -10648,10 +10645,10 @@ const _sfc_main$M = /* @__PURE__ */ vue.defineComponent({
|
|
|
10648
10645
|
};
|
|
10649
10646
|
}
|
|
10650
10647
|
});
|
|
10651
|
-
const CodeEditor = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
10652
|
-
const _hoisted_1$
|
|
10653
|
-
const _hoisted_2$
|
|
10654
|
-
const _sfc_main$
|
|
10648
|
+
const CodeEditor = /* @__PURE__ */ _export_sfc(_sfc_main$N, [["__scopeId", "data-v-1fbc9b61"]]);
|
|
10649
|
+
const _hoisted_1$E = ["title"];
|
|
10650
|
+
const _hoisted_2$t = ["id", "placeholder", "required"];
|
|
10651
|
+
const _sfc_main$M = /* @__PURE__ */ vue.defineComponent({
|
|
10655
10652
|
__name: "ColorPicker",
|
|
10656
10653
|
props: {
|
|
10657
10654
|
label: {},
|
|
@@ -10689,11 +10686,11 @@ const _sfc_main$L = /* @__PURE__ */ vue.defineComponent({
|
|
|
10689
10686
|
placeholder: _ctx.placeholder || _ctx.label,
|
|
10690
10687
|
class: { "no-edit": !_ctx.editMode },
|
|
10691
10688
|
required: _ctx.required
|
|
10692
|
-
}, _ctx.nativeInputAttrs), null, 16, _hoisted_2$
|
|
10689
|
+
}, _ctx.nativeInputAttrs), null, 16, _hoisted_2$t), [
|
|
10693
10690
|
[vue.vModelText, inputVal.value]
|
|
10694
10691
|
])
|
|
10695
10692
|
])
|
|
10696
|
-
], 10, _hoisted_1$
|
|
10693
|
+
], 10, _hoisted_1$E)) : vue.createCommentVNode("", true);
|
|
10697
10694
|
};
|
|
10698
10695
|
}
|
|
10699
10696
|
});
|
|
@@ -19251,9 +19248,9 @@ const eo = ({
|
|
|
19251
19248
|
Object.entries(go).forEach(([e, t]) => {
|
|
19252
19249
|
e !== "default" && (Hn[e] = t);
|
|
19253
19250
|
});
|
|
19254
|
-
const _hoisted_1$
|
|
19255
|
-
const _hoisted_2$
|
|
19256
|
-
const _sfc_main$
|
|
19251
|
+
const _hoisted_1$D = ["title"];
|
|
19252
|
+
const _hoisted_2$s = { key: 0 };
|
|
19253
|
+
const _sfc_main$L = /* @__PURE__ */ vue.defineComponent({
|
|
19257
19254
|
__name: "DateInput",
|
|
19258
19255
|
props: {
|
|
19259
19256
|
required: { type: Boolean },
|
|
@@ -19295,7 +19292,7 @@ const _sfc_main$K = /* @__PURE__ */ vue.defineComponent({
|
|
|
19295
19292
|
class: vue.normalizeClass(["bagel-input", { small: _ctx.small }]),
|
|
19296
19293
|
title: _ctx.label
|
|
19297
19294
|
}, [
|
|
19298
|
-
_ctx.label ? (vue.openBlock(), vue.createElementBlock("label", _hoisted_2$
|
|
19295
|
+
_ctx.label ? (vue.openBlock(), vue.createElementBlock("label", _hoisted_2$s, vue.toDisplayString(_ctx.label), 1)) : vue.createCommentVNode("", true),
|
|
19299
19296
|
vue.createVNode(vue.unref(Hn), vue.mergeProps({
|
|
19300
19297
|
ref_key: "datePicker",
|
|
19301
19298
|
ref: datePicker,
|
|
@@ -19311,10 +19308,374 @@ const _sfc_main$K = /* @__PURE__ */ vue.defineComponent({
|
|
|
19311
19308
|
"minutes-grid-increment": _ctx.minutesGridIncrement,
|
|
19312
19309
|
"start-time": { hours: 8, minutes: 0 }
|
|
19313
19310
|
}), null, 16, ["modelValue", "required", "enable-time-picker", "allowed-dates", "time-picker-inline", "minutes-increment", "minutes-grid-increment"])
|
|
19311
|
+
], 10, _hoisted_1$D);
|
|
19312
|
+
};
|
|
19313
|
+
}
|
|
19314
|
+
});
|
|
19315
|
+
const _hoisted_1$C = ["title"];
|
|
19316
|
+
const _hoisted_2$r = { key: 0 };
|
|
19317
|
+
const _hoisted_3$m = {
|
|
19318
|
+
key: 0,
|
|
19319
|
+
class: "required"
|
|
19320
|
+
};
|
|
19321
|
+
const _hoisted_4$f = { class: "date-picker-container" };
|
|
19322
|
+
const _hoisted_5$e = ["type", "value", "min", "max", "required", "disabled"];
|
|
19323
|
+
const _hoisted_6$b = { class: "calendar-container" };
|
|
19324
|
+
const _hoisted_7$8 = { class: "calendar-section" };
|
|
19325
|
+
const _hoisted_8$5 = { class: "calendar-header" };
|
|
19326
|
+
const _hoisted_9$4 = { class: "month-year-selector" };
|
|
19327
|
+
const _hoisted_10$4 = { class: "month-year" };
|
|
19328
|
+
const _hoisted_11$3 = {
|
|
19329
|
+
key: 0,
|
|
19330
|
+
class: "calendar-grid"
|
|
19331
|
+
};
|
|
19332
|
+
const _hoisted_12$3 = ["disabled", "onClick"];
|
|
19333
|
+
const _hoisted_13$3 = {
|
|
19334
|
+
key: 1,
|
|
19335
|
+
class: "month-grid"
|
|
19336
|
+
};
|
|
19337
|
+
const _hoisted_14$2 = ["disabled", "onClick"];
|
|
19338
|
+
const _hoisted_15$1 = {
|
|
19339
|
+
key: 2,
|
|
19340
|
+
class: "year-grid"
|
|
19341
|
+
};
|
|
19342
|
+
const _hoisted_16 = ["disabled", "onClick"];
|
|
19343
|
+
const _hoisted_17 = {
|
|
19344
|
+
key: 0,
|
|
19345
|
+
class: "time-picker"
|
|
19346
|
+
};
|
|
19347
|
+
const _hoisted_18 = { class: "time-input-group" };
|
|
19348
|
+
const _hoisted_19 = { class: "timezone-display" };
|
|
19349
|
+
const _sfc_main$K = /* @__PURE__ */ vue.defineComponent({
|
|
19350
|
+
__name: "DatePick",
|
|
19351
|
+
props: {
|
|
19352
|
+
required: { type: Boolean },
|
|
19353
|
+
label: {},
|
|
19354
|
+
editMode: { type: Boolean, default: true },
|
|
19355
|
+
small: { type: Boolean, default: false },
|
|
19356
|
+
enableTime: { type: Boolean, default: false },
|
|
19357
|
+
modelValue: {},
|
|
19358
|
+
min: {},
|
|
19359
|
+
max: {},
|
|
19360
|
+
timezone: { default: "UTC" }
|
|
19361
|
+
},
|
|
19362
|
+
emits: ["update:modelValue"],
|
|
19363
|
+
setup(__props, { emit: __emit }) {
|
|
19364
|
+
const props2 = __props;
|
|
19365
|
+
const emit2 = __emit;
|
|
19366
|
+
let isOpen = vue.ref(false);
|
|
19367
|
+
let currentMonth = vue.ref(/* @__PURE__ */ new Date());
|
|
19368
|
+
let currentView = vue.ref("days");
|
|
19369
|
+
const inputType = vue.computed(() => props2.enableTime ? "datetime-local" : "date");
|
|
19370
|
+
function formatDate(date2) {
|
|
19371
|
+
if (!date2) return "";
|
|
19372
|
+
const dateObj = typeof date2 === "string" ? new Date(date2) : date2;
|
|
19373
|
+
return props2.enableTime ? dateObj.toISOString().slice(0, 16) : dateObj.toISOString().split("T")[0];
|
|
19374
|
+
}
|
|
19375
|
+
const formattedValue = vue.computed(() => formatDate(props2.modelValue));
|
|
19376
|
+
const formattedMin = vue.computed(() => formatDate(props2.min));
|
|
19377
|
+
const formattedMax = vue.computed(() => formatDate(props2.max));
|
|
19378
|
+
const selectedDate = vue.computed(() => {
|
|
19379
|
+
if (!props2.modelValue) return null;
|
|
19380
|
+
return typeof props2.modelValue === "string" ? new Date(props2.modelValue) : props2.modelValue;
|
|
19381
|
+
});
|
|
19382
|
+
const currentMonthDays = vue.computed(() => {
|
|
19383
|
+
const year = currentMonth.value.getFullYear();
|
|
19384
|
+
const month = currentMonth.value.getMonth();
|
|
19385
|
+
const firstDay = new Date(year, month, 1);
|
|
19386
|
+
const lastDay = new Date(year, month + 1, 0);
|
|
19387
|
+
const days = [];
|
|
19388
|
+
for (let i2 = 0; i2 < firstDay.getDay(); i2++) days.push(null);
|
|
19389
|
+
for (let i2 = 1; i2 <= lastDay.getDate(); i2++) days.push(new Date(year, month, i2));
|
|
19390
|
+
return days;
|
|
19391
|
+
});
|
|
19392
|
+
const currentMonthValue = vue.computed(() => ({
|
|
19393
|
+
month: currentMonth.value.getMonth(),
|
|
19394
|
+
year: currentMonth.value.getFullYear(),
|
|
19395
|
+
formatted: {
|
|
19396
|
+
month: currentMonth.value.toLocaleString("default", { month: "long", timeZone: props2.timezone }),
|
|
19397
|
+
year: currentMonth.value.toLocaleString("default", { year: "numeric", timeZone: props2.timezone })
|
|
19398
|
+
}
|
|
19399
|
+
}));
|
|
19400
|
+
const months = vue.computed(
|
|
19401
|
+
() => Array.from({ length: 12 }, (_2, i2) => {
|
|
19402
|
+
const date2 = new Date(currentMonthValue.value.year, i2, 1);
|
|
19403
|
+
return {
|
|
19404
|
+
name: date2.toLocaleString("default", { month: "short" }),
|
|
19405
|
+
value: i2,
|
|
19406
|
+
disabled: isDateDisabled(date2)
|
|
19407
|
+
};
|
|
19408
|
+
})
|
|
19409
|
+
);
|
|
19410
|
+
const years = vue.computed(() => {
|
|
19411
|
+
const startYear = currentMonthValue.value.year - 10;
|
|
19412
|
+
return Array.from({ length: 21 }, (_2, i2) => ({
|
|
19413
|
+
value: startYear + i2,
|
|
19414
|
+
disabled: isYearDisabled(startYear + i2)
|
|
19415
|
+
}));
|
|
19416
|
+
});
|
|
19417
|
+
function isDateDisabled(date2) {
|
|
19418
|
+
if (!date2) return true;
|
|
19419
|
+
const minDate = props2.min ? new Date(props2.min) : null;
|
|
19420
|
+
const maxDate = props2.max ? new Date(props2.max) : null;
|
|
19421
|
+
if (minDate && date2 < minDate) return true;
|
|
19422
|
+
if (maxDate && date2 > maxDate) return true;
|
|
19423
|
+
return false;
|
|
19424
|
+
}
|
|
19425
|
+
function isYearDisabled(year) {
|
|
19426
|
+
const minDate = props2.min ? new Date(props2.min) : null;
|
|
19427
|
+
const maxDate = props2.max ? new Date(props2.max) : null;
|
|
19428
|
+
if (minDate && year < minDate.getFullYear()) return true;
|
|
19429
|
+
if (maxDate && year > maxDate.getFullYear()) return true;
|
|
19430
|
+
return false;
|
|
19431
|
+
}
|
|
19432
|
+
function selectMonth(monthIndex) {
|
|
19433
|
+
currentMonth.value = new Date(currentMonth.value.getFullYear(), monthIndex, 1);
|
|
19434
|
+
currentView.value = "days";
|
|
19435
|
+
}
|
|
19436
|
+
function selectYear(year) {
|
|
19437
|
+
currentMonth.value = new Date(year, currentMonth.value.getMonth(), 1);
|
|
19438
|
+
currentView.value = "months";
|
|
19439
|
+
}
|
|
19440
|
+
function previousMonth() {
|
|
19441
|
+
currentMonth.value = new Date(currentMonth.value.getFullYear(), currentMonth.value.getMonth() - 1, 1);
|
|
19442
|
+
}
|
|
19443
|
+
function nextMonth() {
|
|
19444
|
+
currentMonth.value = new Date(currentMonth.value.getFullYear(), currentMonth.value.getMonth() + 1, 1);
|
|
19445
|
+
}
|
|
19446
|
+
function previousYear() {
|
|
19447
|
+
const offset2 = currentView.value === "months" ? 1 : 21;
|
|
19448
|
+
currentMonth.value = new Date(currentMonth.value.getFullYear() - offset2, currentMonth.value.getMonth(), 1);
|
|
19449
|
+
}
|
|
19450
|
+
function nextYear() {
|
|
19451
|
+
const offset2 = currentView.value === "months" ? 1 : 21;
|
|
19452
|
+
currentMonth.value = new Date(currentMonth.value.getFullYear() + offset2, currentMonth.value.getMonth(), 1);
|
|
19453
|
+
}
|
|
19454
|
+
function selectDate(date2) {
|
|
19455
|
+
var _a2, _b;
|
|
19456
|
+
if (!date2 || !props2.editMode) return;
|
|
19457
|
+
const newDate = new Date(date2.getFullYear(), date2.getMonth(), date2.getDate(), 0, 0, 0);
|
|
19458
|
+
if (props2.enableTime) {
|
|
19459
|
+
const currentHours = ((_a2 = selectedDate.value) == null ? void 0 : _a2.getHours()) ?? (/* @__PURE__ */ new Date()).getHours();
|
|
19460
|
+
const currentMinutes = ((_b = selectedDate.value) == null ? void 0 : _b.getMinutes()) ?? (/* @__PURE__ */ new Date()).getMinutes();
|
|
19461
|
+
newDate.setHours(currentHours);
|
|
19462
|
+
newDate.setMinutes(currentMinutes);
|
|
19463
|
+
emit2("update:modelValue", newDate.toISOString());
|
|
19464
|
+
} else {
|
|
19465
|
+
emit2("update:modelValue", newDate.toISOString().split("T")[0]);
|
|
19466
|
+
isOpen.value = false;
|
|
19467
|
+
}
|
|
19468
|
+
}
|
|
19469
|
+
function handleInput(event) {
|
|
19470
|
+
const input = event.target;
|
|
19471
|
+
if (!input.value) {
|
|
19472
|
+
emit2("update:modelValue", "");
|
|
19473
|
+
return;
|
|
19474
|
+
}
|
|
19475
|
+
const date2 = new Date(input.value);
|
|
19476
|
+
emit2("update:modelValue", props2.enableTime ? date2.toISOString() : date2.toISOString().split("T")[0]);
|
|
19477
|
+
}
|
|
19478
|
+
const hours = vue.computed(() => {
|
|
19479
|
+
var _a2;
|
|
19480
|
+
return ((_a2 = selectedDate.value) == null ? void 0 : _a2.getHours()) ?? 0;
|
|
19481
|
+
});
|
|
19482
|
+
const minutes = vue.computed(() => {
|
|
19483
|
+
var _a2;
|
|
19484
|
+
return ((_a2 = selectedDate.value) == null ? void 0 : _a2.getMinutes()) ?? 0;
|
|
19485
|
+
});
|
|
19486
|
+
function handleHourInput(value) {
|
|
19487
|
+
if (!selectedDate.value) return;
|
|
19488
|
+
const newDate = new Date(selectedDate.value);
|
|
19489
|
+
newDate.setHours(value);
|
|
19490
|
+
emit2("update:modelValue", newDate.toISOString());
|
|
19491
|
+
}
|
|
19492
|
+
function handleMinuteInput(value) {
|
|
19493
|
+
if (!selectedDate.value) return;
|
|
19494
|
+
const newDate = new Date(selectedDate.value);
|
|
19495
|
+
newDate.setMinutes(value);
|
|
19496
|
+
emit2("update:modelValue", newDate.toISOString());
|
|
19497
|
+
}
|
|
19498
|
+
function isSelected(date2) {
|
|
19499
|
+
if (!date2 || !selectedDate.value) return false;
|
|
19500
|
+
return date2.toISOString().split("T")[0] === selectedDate.value.toISOString().split("T")[0];
|
|
19501
|
+
}
|
|
19502
|
+
function isToday(date2) {
|
|
19503
|
+
if (!date2) return false;
|
|
19504
|
+
return date2.toISOString().split("T")[0] === (/* @__PURE__ */ new Date()).toISOString().split("T")[0];
|
|
19505
|
+
}
|
|
19506
|
+
const timezoneDisplay = vue.computed(() => {
|
|
19507
|
+
if (!props2.enableTime) return "";
|
|
19508
|
+
try {
|
|
19509
|
+
return (/* @__PURE__ */ new Date()).toLocaleString("en-US", {
|
|
19510
|
+
timeZoneName: "short",
|
|
19511
|
+
timeZone: props2.timezone
|
|
19512
|
+
}).split(" ").pop();
|
|
19513
|
+
} catch {
|
|
19514
|
+
return "UTC";
|
|
19515
|
+
}
|
|
19516
|
+
});
|
|
19517
|
+
return (_ctx, _cache) => {
|
|
19518
|
+
return vue.openBlock(), vue.createElementBlock("div", {
|
|
19519
|
+
class: vue.normalizeClass(["bagel-input", { small: _ctx.small }]),
|
|
19520
|
+
title: _ctx.label
|
|
19521
|
+
}, [
|
|
19522
|
+
_ctx.label ? (vue.openBlock(), vue.createElementBlock("label", _hoisted_2$r, [
|
|
19523
|
+
vue.createTextVNode(vue.toDisplayString(_ctx.label) + " ", 1),
|
|
19524
|
+
_ctx.required ? (vue.openBlock(), vue.createElementBlock("span", _hoisted_3$m, "*")) : vue.createCommentVNode("", true)
|
|
19525
|
+
])) : vue.createCommentVNode("", true),
|
|
19526
|
+
vue.createVNode(vue.unref(kt$1), {
|
|
19527
|
+
shown: vue.unref(isOpen),
|
|
19528
|
+
triggers: [],
|
|
19529
|
+
placement: "bottom-start",
|
|
19530
|
+
distance: 4,
|
|
19531
|
+
onApplyShow: _cache[4] || (_cache[4] = ($event) => vue.isRef(isOpen) ? isOpen.value = true : isOpen = true),
|
|
19532
|
+
onApplyHide: _cache[5] || (_cache[5] = ($event) => vue.isRef(isOpen) ? isOpen.value = false : isOpen = false)
|
|
19533
|
+
}, {
|
|
19534
|
+
popper: vue.withCtx(() => [
|
|
19535
|
+
vue.createElementVNode("div", _hoisted_6$b, [
|
|
19536
|
+
vue.createElementVNode("div", _hoisted_7$8, [
|
|
19537
|
+
vue.createElementVNode("div", _hoisted_8$5, [
|
|
19538
|
+
vue.unref(currentView) === "days" ? (vue.openBlock(), vue.createElementBlock(vue.Fragment, { key: 0 }, [
|
|
19539
|
+
vue.createVNode(vue.unref(Btn), {
|
|
19540
|
+
flat: "",
|
|
19541
|
+
icon: "chevron_left",
|
|
19542
|
+
onClick: previousMonth
|
|
19543
|
+
}),
|
|
19544
|
+
vue.createElementVNode("div", _hoisted_9$4, [
|
|
19545
|
+
vue.createElementVNode("button", {
|
|
19546
|
+
class: "month-btn",
|
|
19547
|
+
onClick: _cache[1] || (_cache[1] = ($event) => vue.isRef(currentView) ? currentView.value = "months" : currentView = "months")
|
|
19548
|
+
}, vue.toDisplayString(currentMonthValue.value.formatted.month), 1),
|
|
19549
|
+
vue.createElementVNode("button", {
|
|
19550
|
+
class: "year-btn",
|
|
19551
|
+
onClick: _cache[2] || (_cache[2] = ($event) => vue.isRef(currentView) ? currentView.value = "years" : currentView = "years")
|
|
19552
|
+
}, vue.toDisplayString(currentMonthValue.value.formatted.year), 1)
|
|
19553
|
+
]),
|
|
19554
|
+
vue.createVNode(vue.unref(Btn), {
|
|
19555
|
+
flat: "",
|
|
19556
|
+
icon: "chevron_right",
|
|
19557
|
+
onClick: nextMonth
|
|
19558
|
+
})
|
|
19559
|
+
], 64)) : (vue.openBlock(), vue.createElementBlock(vue.Fragment, { key: 1 }, [
|
|
19560
|
+
vue.createVNode(vue.unref(Btn), {
|
|
19561
|
+
flat: "",
|
|
19562
|
+
icon: "chevron_left",
|
|
19563
|
+
onClick: previousYear
|
|
19564
|
+
}),
|
|
19565
|
+
vue.createElementVNode("span", _hoisted_10$4, vue.toDisplayString(currentMonthValue.value.formatted.year), 1),
|
|
19566
|
+
vue.createVNode(vue.unref(Btn), {
|
|
19567
|
+
flat: "",
|
|
19568
|
+
icon: "chevron_right",
|
|
19569
|
+
onClick: nextYear
|
|
19570
|
+
})
|
|
19571
|
+
], 64))
|
|
19572
|
+
]),
|
|
19573
|
+
vue.unref(currentView) === "days" ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_11$3, [
|
|
19574
|
+
(vue.openBlock(), vue.createElementBlock(vue.Fragment, null, vue.renderList(["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"], (day) => {
|
|
19575
|
+
return vue.createElementVNode("div", {
|
|
19576
|
+
key: day,
|
|
19577
|
+
class: "weekday"
|
|
19578
|
+
}, vue.toDisplayString(day), 1);
|
|
19579
|
+
}), 64)),
|
|
19580
|
+
(vue.openBlock(true), vue.createElementBlock(vue.Fragment, null, vue.renderList(currentMonthDays.value, (date2, index2) => {
|
|
19581
|
+
return vue.openBlock(), vue.createElementBlock("button", {
|
|
19582
|
+
key: index2,
|
|
19583
|
+
type: "button",
|
|
19584
|
+
class: vue.normalizeClass(["day", {
|
|
19585
|
+
selected: isSelected(date2),
|
|
19586
|
+
today: isToday(date2),
|
|
19587
|
+
disabled: isDateDisabled(date2)
|
|
19588
|
+
}]),
|
|
19589
|
+
disabled: isDateDisabled(date2),
|
|
19590
|
+
onClick: ($event) => selectDate(date2)
|
|
19591
|
+
}, vue.toDisplayString(date2 == null ? void 0 : date2.getDate()), 11, _hoisted_12$3);
|
|
19592
|
+
}), 128))
|
|
19593
|
+
])) : vue.unref(currentView) === "months" ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_13$3, [
|
|
19594
|
+
(vue.openBlock(true), vue.createElementBlock(vue.Fragment, null, vue.renderList(months.value, (month) => {
|
|
19595
|
+
return vue.openBlock(), vue.createElementBlock("button", {
|
|
19596
|
+
key: month.value,
|
|
19597
|
+
class: vue.normalizeClass(["month-item", {
|
|
19598
|
+
selected: month.value === currentMonthValue.value.month,
|
|
19599
|
+
disabled: month.disabled
|
|
19600
|
+
}]),
|
|
19601
|
+
disabled: month.disabled,
|
|
19602
|
+
onClick: ($event) => selectMonth(month.value)
|
|
19603
|
+
}, vue.toDisplayString(month.name), 11, _hoisted_14$2);
|
|
19604
|
+
}), 128))
|
|
19605
|
+
])) : (vue.openBlock(), vue.createElementBlock("div", _hoisted_15$1, [
|
|
19606
|
+
(vue.openBlock(true), vue.createElementBlock(vue.Fragment, null, vue.renderList(years.value, (year) => {
|
|
19607
|
+
return vue.openBlock(), vue.createElementBlock("button", {
|
|
19608
|
+
key: year.value,
|
|
19609
|
+
class: vue.normalizeClass(["year-item", {
|
|
19610
|
+
selected: year.value === currentMonthValue.value.year,
|
|
19611
|
+
disabled: year.disabled
|
|
19612
|
+
}]),
|
|
19613
|
+
disabled: year.disabled,
|
|
19614
|
+
onClick: ($event) => selectYear(year.value)
|
|
19615
|
+
}, vue.toDisplayString(year.value), 11, _hoisted_16);
|
|
19616
|
+
}), 128))
|
|
19617
|
+
]))
|
|
19618
|
+
]),
|
|
19619
|
+
_ctx.enableTime && vue.unref(currentView) === "days" ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_17, [
|
|
19620
|
+
vue.createElementVNode("div", _hoisted_18, [
|
|
19621
|
+
vue.createVNode(vue.unref(NumberInput), {
|
|
19622
|
+
center: "",
|
|
19623
|
+
"model-value": hours.value,
|
|
19624
|
+
disabled: !selectedDate.value,
|
|
19625
|
+
min: 0,
|
|
19626
|
+
max: 23,
|
|
19627
|
+
layout: "vertical",
|
|
19628
|
+
padZero: 2,
|
|
19629
|
+
"onUpdate:modelValue": handleHourInput
|
|
19630
|
+
}, null, 8, ["model-value", "disabled"]),
|
|
19631
|
+
_cache[6] || (_cache[6] = vue.createElementVNode("span", null, ":", -1)),
|
|
19632
|
+
vue.createVNode(vue.unref(NumberInput), {
|
|
19633
|
+
center: "",
|
|
19634
|
+
"model-value": minutes.value,
|
|
19635
|
+
disabled: !selectedDate.value,
|
|
19636
|
+
min: 0,
|
|
19637
|
+
max: 59,
|
|
19638
|
+
padZero: 2,
|
|
19639
|
+
layout: "vertical",
|
|
19640
|
+
"onUpdate:modelValue": handleMinuteInput
|
|
19641
|
+
}, null, 8, ["model-value", "disabled"])
|
|
19642
|
+
]),
|
|
19643
|
+
vue.createElementVNode("span", _hoisted_19, vue.toDisplayString(timezoneDisplay.value), 1),
|
|
19644
|
+
selectedDate.value ? (vue.openBlock(), vue.createBlock(vue.unref(Btn), {
|
|
19645
|
+
key: 0,
|
|
19646
|
+
flat: "",
|
|
19647
|
+
onClick: _cache[3] || (_cache[3] = ($event) => vue.isRef(isOpen) ? isOpen.value = false : isOpen = false)
|
|
19648
|
+
}, {
|
|
19649
|
+
default: vue.withCtx(() => _cache[7] || (_cache[7] = [
|
|
19650
|
+
vue.createTextVNode(" Done ")
|
|
19651
|
+
])),
|
|
19652
|
+
_: 1
|
|
19653
|
+
})) : vue.createCommentVNode("", true)
|
|
19654
|
+
])) : vue.createCommentVNode("", true)
|
|
19655
|
+
])
|
|
19656
|
+
]),
|
|
19657
|
+
default: vue.withCtx(() => [
|
|
19658
|
+
vue.createElementVNode("div", _hoisted_4$f, [
|
|
19659
|
+
vue.createElementVNode("input", {
|
|
19660
|
+
type: inputType.value,
|
|
19661
|
+
value: formattedValue.value,
|
|
19662
|
+
min: formattedMin.value,
|
|
19663
|
+
max: formattedMax.value,
|
|
19664
|
+
required: _ctx.required,
|
|
19665
|
+
disabled: !_ctx.editMode,
|
|
19666
|
+
class: "date-input",
|
|
19667
|
+
onInput: handleInput,
|
|
19668
|
+
onClick: _cache[0] || (_cache[0] = ($event) => vue.isRef(isOpen) ? isOpen.value = true : isOpen = true)
|
|
19669
|
+
}, null, 40, _hoisted_5$e)
|
|
19670
|
+
])
|
|
19671
|
+
]),
|
|
19672
|
+
_: 1
|
|
19673
|
+
}, 8, ["shown"])
|
|
19314
19674
|
], 10, _hoisted_1$C);
|
|
19315
19675
|
};
|
|
19316
19676
|
}
|
|
19317
19677
|
});
|
|
19678
|
+
const DatePick = /* @__PURE__ */ _export_sfc(_sfc_main$K, [["__scopeId", "data-v-e36ecd8c"]]);
|
|
19318
19679
|
const _hoisted_1$B = { class: "datetime-wrap" };
|
|
19319
19680
|
const _hoisted_2$q = { class: "date-wrap" };
|
|
19320
19681
|
const _hoisted_3$l = {
|
|
@@ -19704,7 +20065,7 @@ const _sfc_main$H = /* @__PURE__ */ vue.defineComponent({
|
|
|
19704
20065
|
return vue.openBlock(), vue.createElementBlock("div", _hoisted_1$z, [
|
|
19705
20066
|
vue.createElementVNode("label", null, vue.toDisplayString(_ctx.label), 1),
|
|
19706
20067
|
_ctx.required && !storageFiles.value.length ? (vue.openBlock(), vue.createElementBlock("input", _hoisted_2$o)) : vue.createCommentVNode("", true),
|
|
19707
|
-
_ctx.theme === "basic" ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main
|
|
20068
|
+
_ctx.theme === "basic" ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$$), {
|
|
19708
20069
|
key: 1,
|
|
19709
20070
|
outline: "",
|
|
19710
20071
|
class: "flex p-05 gap-1",
|
|
@@ -20014,7 +20375,8 @@ const _sfc_main$F = /* @__PURE__ */ vue.defineComponent({
|
|
|
20014
20375
|
id: {},
|
|
20015
20376
|
helptext: {},
|
|
20016
20377
|
layout: {},
|
|
20017
|
-
center: { type: Boolean }
|
|
20378
|
+
center: { type: Boolean },
|
|
20379
|
+
padZero: {}
|
|
20018
20380
|
},
|
|
20019
20381
|
emits: ["update:modelValue"],
|
|
20020
20382
|
setup(__props, { emit: __emit }) {
|
|
@@ -20034,7 +20396,11 @@ const _sfc_main$F = /* @__PURE__ */ vue.defineComponent({
|
|
|
20034
20396
|
emit2("update:modelValue", numberValue.value);
|
|
20035
20397
|
}
|
|
20036
20398
|
function formatNumber2(num) {
|
|
20037
|
-
|
|
20399
|
+
let formatted = num.toString();
|
|
20400
|
+
if (__props.padZero && __props.padZero > 0) {
|
|
20401
|
+
formatted = formatted.padStart(__props.padZero, "0");
|
|
20402
|
+
}
|
|
20403
|
+
return formatted.replace(/\B(?=(\d{3})+(?!\d))/g, ",");
|
|
20038
20404
|
}
|
|
20039
20405
|
let formattedValue = vue.ref("");
|
|
20040
20406
|
function inputHandler() {
|
|
@@ -20149,7 +20515,7 @@ const _sfc_main$F = /* @__PURE__ */ vue.defineComponent({
|
|
|
20149
20515
|
};
|
|
20150
20516
|
}
|
|
20151
20517
|
});
|
|
20152
|
-
const NumberInput = /* @__PURE__ */ _export_sfc(_sfc_main$F, [["__scopeId", "data-v-
|
|
20518
|
+
const NumberInput = /* @__PURE__ */ _export_sfc(_sfc_main$F, [["__scopeId", "data-v-3a20cf4a"]]);
|
|
20153
20519
|
const _hoisted_1$w = ["value", "autofocus", "onKeydown", "onPaste"];
|
|
20154
20520
|
const _sfc_main$E = /* @__PURE__ */ vue.defineComponent({
|
|
20155
20521
|
__name: "OTP",
|
|
@@ -20812,7 +21178,7 @@ const _sfc_main$y = /* @__PURE__ */ vue.defineComponent({
|
|
|
20812
21178
|
return vue.openBlock(), vue.createElementBlock("div", _hoisted_1$q, [
|
|
20813
21179
|
(vue.openBlock(true), vue.createElementBlock(vue.Fragment, null, vue.renderList(_ctx.config.map(configToOption).filter(Boolean), (action, index2) => {
|
|
20814
21180
|
return vue.openBlock(), vue.createElementBlock(vue.Fragment, { key: index2 }, [
|
|
20815
|
-
action.name === "insertTable" ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$
|
|
21181
|
+
action.name === "insertTable" ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$X), {
|
|
20816
21182
|
key: 0,
|
|
20817
21183
|
placement: "bottom-start",
|
|
20818
21184
|
thin: "",
|
|
@@ -22110,7 +22476,7 @@ const _sfc_main$w = /* @__PURE__ */ vue.defineComponent({
|
|
|
22110
22476
|
}
|
|
22111
22477
|
});
|
|
22112
22478
|
return (_ctx, _cache) => {
|
|
22113
|
-
return vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$
|
|
22479
|
+
return vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$X), {
|
|
22114
22480
|
ref_key: "dropdown",
|
|
22115
22481
|
ref: dropdown,
|
|
22116
22482
|
shown: vue.unref(open),
|
|
@@ -22189,7 +22555,7 @@ const _sfc_main$w = /* @__PURE__ */ vue.defineComponent({
|
|
|
22189
22555
|
height: "25px",
|
|
22190
22556
|
class: "mx-1 my-1"
|
|
22191
22557
|
})) : vue.createCommentVNode("", true),
|
|
22192
|
-
vue.createVNode(vue.unref(_sfc_main
|
|
22558
|
+
vue.createVNode(vue.unref(_sfc_main$$), {
|
|
22193
22559
|
class: "p-05",
|
|
22194
22560
|
style: vue.normalizeStyle({ width: _ctx.fullWidth ? "100%" : "auto" })
|
|
22195
22561
|
}, {
|
|
@@ -30348,7 +30714,7 @@ const _sfc_main$t = /* @__PURE__ */ vue.defineComponent({
|
|
|
30348
30714
|
vue.withKeys(reset, ["tab"])
|
|
30349
30715
|
]
|
|
30350
30716
|
}, [
|
|
30351
|
-
!computedDropDownOptions.value.hide ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$
|
|
30717
|
+
!computedDropDownOptions.value.hide ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$X), {
|
|
30352
30718
|
key: 0,
|
|
30353
30719
|
ref_key: "phoneDropdown",
|
|
30354
30720
|
ref: phoneDropdown,
|
|
@@ -30815,7 +31181,7 @@ const _sfc_main$q = /* @__PURE__ */ vue.defineComponent({
|
|
|
30815
31181
|
return vue.openBlock(), vue.createElementBlock("div", _hoisted_1$i, [
|
|
30816
31182
|
_ctx.label ? (vue.openBlock(), vue.createElementBlock("label", _hoisted_2$9, vue.toDisplayString(_ctx.label), 1)) : vue.createCommentVNode("", true),
|
|
30817
31183
|
_ctx.required && !pathKeys.value.length ? (vue.openBlock(), vue.createElementBlock("input", _hoisted_3$7)) : vue.createCommentVNode("", true),
|
|
30818
|
-
_ctx.theme === "basic" ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main
|
|
31184
|
+
_ctx.theme === "basic" ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$$), {
|
|
30819
31185
|
key: 2,
|
|
30820
31186
|
outline: "",
|
|
30821
31187
|
class: "flex p-05 gap-1",
|
|
@@ -31111,7 +31477,7 @@ const _sfc_main$o = /* @__PURE__ */ vue.defineComponent({
|
|
|
31111
31477
|
},
|
|
31112
31478
|
setup(__props) {
|
|
31113
31479
|
return (_ctx, _cache) => {
|
|
31114
|
-
return vue.openBlock(), vue.createBlock(vue.unref(_sfc_main
|
|
31480
|
+
return vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$$), { class: "hide m_grid gap-05 bgl_bottombar px-1 txt14 justify-content-start align-items-center overflow-x" }, {
|
|
31115
31481
|
default: vue.withCtx(() => [
|
|
31116
31482
|
vue.renderSlot(_ctx.$slots, "brand", {}, void 0, true),
|
|
31117
31483
|
(vue.openBlock(true), vue.createElementBlock(vue.Fragment, null, vue.renderList(_ctx.navLinks, (nav, i2) => {
|
|
@@ -31212,7 +31578,7 @@ const _sfc_main$m = /* @__PURE__ */ vue.defineComponent({
|
|
|
31212
31578
|
icon: "keyboard_arrow_right",
|
|
31213
31579
|
onClick: vue.unref(toggleMenu)
|
|
31214
31580
|
}, null, 8, ["onClick"]),
|
|
31215
|
-
vue.createVNode(vue.unref(_sfc_main
|
|
31581
|
+
vue.createVNode(vue.unref(_sfc_main$$), { class: "py-1 px-05 h-100 flex column gap-05 rounded relative bg-primary font-light overflow-y" }, {
|
|
31216
31582
|
default: vue.withCtx(() => [
|
|
31217
31583
|
!vue.unref(isOpen) || !vue.unref(slots)["brand-open"] ? vue.renderSlot(_ctx.$slots, "brand", { key: 0 }, void 0, true) : vue.createCommentVNode("", true),
|
|
31218
31584
|
vue.unref(isOpen) ? vue.renderSlot(_ctx.$slots, "brand-open", { key: 1 }, void 0, true) : vue.createCommentVNode("", true),
|
|
@@ -31733,7 +32099,7 @@ const _sfc_main$c = /* @__PURE__ */ vue.defineComponent({
|
|
|
31733
32099
|
onClick: _cache[1] || (_cache[1] = () => _ctx.dismissable ? closeModal() : ""),
|
|
31734
32100
|
onKeydown: vue.withKeys(closeModal, ["esc"])
|
|
31735
32101
|
}, [
|
|
31736
|
-
vue.createVNode(vue.unref(_sfc_main
|
|
32102
|
+
vue.createVNode(vue.unref(_sfc_main$$), {
|
|
31737
32103
|
class: "modal",
|
|
31738
32104
|
style: vue.normalizeStyle({ ...maxWidth.value }),
|
|
31739
32105
|
onClick: _cache[0] || (_cache[0] = vue.withModifiers(() => {
|
|
@@ -31910,7 +32276,7 @@ const _sfc_main$a = /* @__PURE__ */ vue.defineComponent({
|
|
|
31910
32276
|
"onUpdate:visible": _cache[1] || (_cache[1] = ($event) => emit2("update:visible", $event))
|
|
31911
32277
|
}, vue.createSlots({
|
|
31912
32278
|
default: vue.withCtx(() => [
|
|
31913
|
-
_ctx.visible ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$
|
|
32279
|
+
_ctx.visible ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$S), {
|
|
31914
32280
|
key: 0,
|
|
31915
32281
|
ref_key: "form",
|
|
31916
32282
|
ref: form,
|
|
@@ -33029,7 +33395,7 @@ const _sfc_main$5 = /* @__PURE__ */ vue.defineComponent({
|
|
|
33029
33395
|
row,
|
|
33030
33396
|
field
|
|
33031
33397
|
}, void 0, true) : (vue.openBlock(), vue.createElementBlock("div", _hoisted_10$1, [
|
|
33032
|
-
vue.createVNode(vue.unref(_sfc_main$
|
|
33398
|
+
vue.createVNode(vue.unref(_sfc_main$11), {
|
|
33033
33399
|
id: field.id,
|
|
33034
33400
|
class: "embedded-field",
|
|
33035
33401
|
field,
|
|
@@ -35155,33 +35521,34 @@ function timeAgo(date2, lang = "en") {
|
|
|
35155
35521
|
}
|
|
35156
35522
|
return selectedLang.justNow;
|
|
35157
35523
|
}
|
|
35158
|
-
exports.Accordion = _sfc_main$
|
|
35524
|
+
exports.Accordion = _sfc_main$18;
|
|
35159
35525
|
exports.AccordionItem = AccordionItem;
|
|
35160
|
-
exports.AddressSearch = _sfc_main$
|
|
35526
|
+
exports.AddressSearch = _sfc_main$16;
|
|
35161
35527
|
exports.Alert = Alert;
|
|
35162
35528
|
exports.Avatar = Avatar;
|
|
35163
35529
|
exports.Badge = Badge;
|
|
35164
|
-
exports.BagelForm = _sfc_main$
|
|
35530
|
+
exports.BagelForm = _sfc_main$S;
|
|
35165
35531
|
exports.BagelVue = BagelVue;
|
|
35166
|
-
exports.BglComponent = _sfc_main$
|
|
35167
|
-
exports.BglField = _sfc_main$
|
|
35168
|
-
exports.BglForm = _sfc_main$
|
|
35169
|
-
exports.BglMultiStepForm = _sfc_main$
|
|
35532
|
+
exports.BglComponent = _sfc_main$11;
|
|
35533
|
+
exports.BglField = _sfc_main$T;
|
|
35534
|
+
exports.BglForm = _sfc_main$S;
|
|
35535
|
+
exports.BglMultiStepForm = _sfc_main$R;
|
|
35170
35536
|
exports.BglVideo = BglVideo;
|
|
35171
35537
|
exports.BottomMenu = BottomMenu;
|
|
35172
35538
|
exports.Btn = Btn;
|
|
35173
|
-
exports.Card = _sfc_main
|
|
35539
|
+
exports.Card = _sfc_main$$;
|
|
35174
35540
|
exports.Carousel = Carousel;
|
|
35175
35541
|
exports.CheckInput = CheckInput;
|
|
35176
35542
|
exports.Checkbox = Checkbox;
|
|
35177
35543
|
exports.CodeEditor = CodeEditor;
|
|
35178
|
-
exports.ColorPicker = _sfc_main$
|
|
35544
|
+
exports.ColorPicker = _sfc_main$M;
|
|
35179
35545
|
exports.DataPreview = DataPreview;
|
|
35180
|
-
exports.DateInput = _sfc_main$
|
|
35546
|
+
exports.DateInput = _sfc_main$L;
|
|
35547
|
+
exports.DatePick = DatePick;
|
|
35181
35548
|
exports.DatePicker = _sfc_main$J;
|
|
35182
|
-
exports.Dropdown = _sfc_main$
|
|
35549
|
+
exports.Dropdown = _sfc_main$X;
|
|
35183
35550
|
exports.FORM_STATE_KEY = FORM_STATE_KEY;
|
|
35184
|
-
exports.FieldArray = _sfc_main$
|
|
35551
|
+
exports.FieldArray = _sfc_main$Q;
|
|
35185
35552
|
exports.FieldSetVue = FieldSetVue;
|
|
35186
35553
|
exports.FileUpload = FileUpload;
|
|
35187
35554
|
exports.Flag = Flag;
|
|
@@ -35192,7 +35559,7 @@ exports.IframeVue = _sfc_main$p;
|
|
|
35192
35559
|
exports.Image = Image$1;
|
|
35193
35560
|
exports.JSONInput = JSONInput;
|
|
35194
35561
|
exports.Layout = Layout;
|
|
35195
|
-
exports.Lineart = _sfc_main$
|
|
35562
|
+
exports.Lineart = _sfc_main$Z;
|
|
35196
35563
|
exports.ListItem = _sfc_main$h;
|
|
35197
35564
|
exports.ListView = ListView;
|
|
35198
35565
|
exports.Loading = Loading;
|