@bagelink/vue 1.2.45 → 1.2.50
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/AddressSearch.vue.d.ts.map +1 -1
- package/dist/components/Dropdown.vue.d.ts.map +1 -1
- package/dist/components/ListItem.vue.d.ts +3 -0
- package/dist/components/ListItem.vue.d.ts.map +1 -1
- package/dist/components/form/FieldArray.vue.d.ts +29 -21
- package/dist/components/form/FieldArray.vue.d.ts.map +1 -1
- package/dist/components/form/inputs/DateInput.vue.d.ts.map +1 -1
- package/dist/components/form/inputs/SelectInput.vue.d.ts.map +1 -1
- package/dist/components/form/inputs/ToggleInput.vue.d.ts +1 -1
- package/dist/components/form/inputs/ToggleInput.vue.d.ts.map +1 -1
- package/dist/index.cjs +84 -67
- package/dist/index.mjs +84 -67
- package/dist/style.css +45 -44
- package/dist/types/BagelForm.d.ts +3 -3
- package/dist/types/BagelForm.d.ts.map +1 -1
- package/package.json +2 -2
- package/src/components/ListItem.vue +24 -7
- package/src/components/Modal.vue +1 -1
- package/src/components/calendar/views/WeekView.vue +5 -5
- package/src/components/form/FieldArray.vue +31 -24
- package/src/components/form/inputs/DateInput.vue +0 -11
- package/src/components/form/inputs/ToggleInput.vue +1 -1
- package/src/styles/appearance.css +12 -0
- package/src/styles/modal.css +4 -4
- package/src/types/BagelForm.ts +4 -3
package/dist/index.mjs
CHANGED
|
@@ -548,7 +548,7 @@ const CalendarPopover = /* @__PURE__ */ _export_sfc(_sfc_main$16, [["__scopeId",
|
|
|
548
548
|
const _hoisted_1$X = { class: "agenda-view" };
|
|
549
549
|
const _hoisted_2$I = ["data-date", "onClick"];
|
|
550
550
|
const _hoisted_3$C = { class: "event-content" };
|
|
551
|
-
const _hoisted_4$
|
|
551
|
+
const _hoisted_4$q = { class: "event-time" };
|
|
552
552
|
const _hoisted_5$o = { class: "event-details" };
|
|
553
553
|
const _hoisted_6$l = { class: "event-title" };
|
|
554
554
|
const _sfc_main$15 = /* @__PURE__ */ defineComponent({
|
|
@@ -671,7 +671,7 @@ const _sfc_main$15 = /* @__PURE__ */ defineComponent({
|
|
|
671
671
|
onClick: withModifiers(($event) => handleEventSelection(event, $event), ["stop"])
|
|
672
672
|
}, [
|
|
673
673
|
createElementVNode("div", _hoisted_3$C, [
|
|
674
|
-
createElementVNode("div", _hoisted_4$
|
|
674
|
+
createElementVNode("div", _hoisted_4$q, toDisplayString(unref(formatDate)(event.start_time, { fmt: "HH:mm" })), 1),
|
|
675
675
|
createElementVNode("div", _hoisted_5$o, [
|
|
676
676
|
createElementVNode("div", _hoisted_6$l, toDisplayString(event.title), 1),
|
|
677
677
|
createElementVNode("div", {
|
|
@@ -690,7 +690,7 @@ const AgendaView = /* @__PURE__ */ _export_sfc(_sfc_main$15, [["__scopeId", "dat
|
|
|
690
690
|
const _hoisted_1$W = { class: "w-100p overflow-hidden m_overflow h-100p grid" };
|
|
691
691
|
const _hoisted_2$H = { class: "border-bottom me-1 txt-center p-05 dayGrid" };
|
|
692
692
|
const _hoisted_3$B = { class: "overflow h-100p pe-05" };
|
|
693
|
-
const _hoisted_4$
|
|
693
|
+
const _hoisted_4$p = { class: "time-column" };
|
|
694
694
|
const _hoisted_5$n = { class: "events-column" };
|
|
695
695
|
const _hoisted_6$k = ["onClick"];
|
|
696
696
|
const _hoisted_7$g = { class: "event-content" };
|
|
@@ -843,7 +843,7 @@ const _sfc_main$14 = /* @__PURE__ */ defineComponent({
|
|
|
843
843
|
class: "time-slots dayGrid border-end relative",
|
|
844
844
|
onMousedown: handleMouseDown
|
|
845
845
|
}, [
|
|
846
|
-
createElementVNode("div", _hoisted_4$
|
|
846
|
+
createElementVNode("div", _hoisted_4$p, [
|
|
847
847
|
(openBlock(true), createElementBlock(Fragment, null, renderList(timeSlots.value, (slot) => {
|
|
848
848
|
return openBlock(), createElementBlock("div", {
|
|
849
849
|
key: slot.time,
|
|
@@ -902,7 +902,7 @@ const DayView = /* @__PURE__ */ _export_sfc(_sfc_main$14, [["__scopeId", "data-v
|
|
|
902
902
|
const _hoisted_1$V = { class: "month-view" };
|
|
903
903
|
const _hoisted_2$G = { class: "month-header" };
|
|
904
904
|
const _hoisted_3$A = { class: "month-grid" };
|
|
905
|
-
const _hoisted_4$
|
|
905
|
+
const _hoisted_4$o = { class: "day-number" };
|
|
906
906
|
const _hoisted_5$m = { class: "day-events" };
|
|
907
907
|
const _hoisted_6$j = {
|
|
908
908
|
key: 0,
|
|
@@ -1004,7 +1004,7 @@ const _sfc_main$13 = /* @__PURE__ */ defineComponent({
|
|
|
1004
1004
|
"other-month": !day.isCurrentMonth
|
|
1005
1005
|
}])
|
|
1006
1006
|
}, [
|
|
1007
|
-
createElementVNode("div", _hoisted_4$
|
|
1007
|
+
createElementVNode("div", _hoisted_4$o, toDisplayString(unref(fmtDate)(day.date, { fmt: "DD" })), 1),
|
|
1008
1008
|
createElementVNode("div", _hoisted_5$m, [
|
|
1009
1009
|
isMobile.value ? (openBlock(), createElementBlock(Fragment, { key: 0 }, [
|
|
1010
1010
|
day.events.length > 0 ? (openBlock(), createElementBlock("div", _hoisted_6$j)) : createCommentVNode("", true)
|
|
@@ -1031,10 +1031,10 @@ const MonthView = /* @__PURE__ */ _export_sfc(_sfc_main$13, [["__scopeId", "data
|
|
|
1031
1031
|
const _hoisted_1$U = { class: "w-100p overflow-hidden m_overflow h-100p grid" };
|
|
1032
1032
|
const _hoisted_2$F = { class: "overflow h-100p pe-05" };
|
|
1033
1033
|
const _hoisted_3$z = ["onMousedown"];
|
|
1034
|
-
const _hoisted_4$
|
|
1034
|
+
const _hoisted_4$n = ["onClick"];
|
|
1035
1035
|
const _hoisted_5$l = { class: "overflow-hidden color-white p-025 txt12 h-100p" };
|
|
1036
1036
|
const _hoisted_6$i = { class: "white-space ellipsis-1" };
|
|
1037
|
-
const _hoisted_7$e = { class: "txt10 opacity-8" };
|
|
1037
|
+
const _hoisted_7$e = { class: "txt10 opacity-8 user-select-none" };
|
|
1038
1038
|
const _hoisted_8$7 = { class: "color-primary txt-12 p-025" };
|
|
1039
1039
|
const slotHeight = 60;
|
|
1040
1040
|
const slotDuration = 60;
|
|
@@ -1127,7 +1127,7 @@ const _sfc_main$12 = /* @__PURE__ */ defineComponent({
|
|
|
1127
1127
|
});
|
|
1128
1128
|
Object.values(overlappingGroups).forEach((group) => {
|
|
1129
1129
|
if (group.length > 1) {
|
|
1130
|
-
const groupWidth =
|
|
1130
|
+
const groupWidth = 100 / group.length;
|
|
1131
1131
|
group.forEach((event, index2) => {
|
|
1132
1132
|
event.overlappingEvents = group.length;
|
|
1133
1133
|
event.position = index2;
|
|
@@ -1351,7 +1351,7 @@ const _sfc_main$12 = /* @__PURE__ */ defineComponent({
|
|
|
1351
1351
|
(openBlock(true), createElementBlock(Fragment, null, renderList(processedEvents.value.filter((e) => new Date(e.start_time).toDateString() === day.toDateString()), (event) => {
|
|
1352
1352
|
return openBlock(), createElementBlock("div", {
|
|
1353
1353
|
key: event.id,
|
|
1354
|
-
class: "event absolute radius-05 overflow-hidden pointer transition z-1",
|
|
1354
|
+
class: "event absolute radius-05 overflow-hidden pointer transition z-1 opacity-8 border",
|
|
1355
1355
|
style: normalizeStyle({
|
|
1356
1356
|
top: `${event.top}px`,
|
|
1357
1357
|
height: `${event.height}px`,
|
|
@@ -1367,7 +1367,7 @@ const _sfc_main$12 = /* @__PURE__ */ defineComponent({
|
|
|
1367
1367
|
createElementVNode("div", _hoisted_6$i, toDisplayString(event.title), 1),
|
|
1368
1368
|
createElementVNode("div", _hoisted_7$e, toDisplayString(unref(formatDate)(event.start_time, { fmt: "HH:mm" })) + " - " + toDisplayString(unref(formatDate)(event.end_time, { fmt: "HH:mm" })), 1)
|
|
1369
1369
|
])
|
|
1370
|
-
], 44, _hoisted_4$
|
|
1370
|
+
], 44, _hoisted_4$n);
|
|
1371
1371
|
}), 128))
|
|
1372
1372
|
], 40, _hoisted_3$z);
|
|
1373
1373
|
}), 128)),
|
|
@@ -1390,11 +1390,11 @@ const _sfc_main$12 = /* @__PURE__ */ defineComponent({
|
|
|
1390
1390
|
};
|
|
1391
1391
|
}
|
|
1392
1392
|
});
|
|
1393
|
-
const WeekView = /* @__PURE__ */ _export_sfc(_sfc_main$12, [["__scopeId", "data-v-
|
|
1393
|
+
const WeekView = /* @__PURE__ */ _export_sfc(_sfc_main$12, [["__scopeId", "data-v-2d5bca17"]]);
|
|
1394
1394
|
const _hoisted_1$T = { class: "calendar" };
|
|
1395
1395
|
const _hoisted_2$E = { class: "flex m_block m_pb-1" };
|
|
1396
1396
|
const _hoisted_3$y = { class: "txt-light my-0" };
|
|
1397
|
-
const _hoisted_4$
|
|
1397
|
+
const _hoisted_4$m = { class: "ms-auto flex gap-025" };
|
|
1398
1398
|
const _sfc_main$11 = /* @__PURE__ */ defineComponent({
|
|
1399
1399
|
__name: "Index",
|
|
1400
1400
|
props: {
|
|
@@ -1493,7 +1493,7 @@ const _sfc_main$11 = /* @__PURE__ */ defineComponent({
|
|
|
1493
1493
|
createElementVNode("b", null, toDisplayString(unref(fmtDate)(currentDate.value, { fmt: "MMMM" })), 1),
|
|
1494
1494
|
createTextVNode(" " + toDisplayString(unref(fmtDate)(currentDate.value, { fmt: "YYYY" })), 1)
|
|
1495
1495
|
]),
|
|
1496
|
-
createElementVNode("div", _hoisted_4$
|
|
1496
|
+
createElementVNode("div", _hoisted_4$m, [
|
|
1497
1497
|
createVNode(unref(_sfc_main$W), {
|
|
1498
1498
|
thin: "",
|
|
1499
1499
|
value: currentView.value,
|
|
@@ -7914,7 +7914,7 @@ const _hoisted_1$1$1 = {
|
|
|
7914
7914
|
};
|
|
7915
7915
|
const _hoisted_2$1$1 = ["width", "height", "viewBox"];
|
|
7916
7916
|
const _hoisted_3$w = { class: "layer-rectangles" };
|
|
7917
|
-
const _hoisted_4$
|
|
7917
|
+
const _hoisted_4$l = ["transform", "onMouseover"];
|
|
7918
7918
|
const _hoisted_5$k = ["width", "height"];
|
|
7919
7919
|
const _hoisted_6$h = {
|
|
7920
7920
|
x: 0 + 10,
|
|
@@ -7966,7 +7966,7 @@ function render$1(_ctx, _cache, $props, $setup, $data, $options) {
|
|
|
7966
7966
|
)
|
|
7967
7967
|
])
|
|
7968
7968
|
])
|
|
7969
|
-
], 42, _hoisted_4$
|
|
7969
|
+
], 42, _hoisted_4$l);
|
|
7970
7970
|
}),
|
|
7971
7971
|
128
|
|
7972
7972
|
/* KEYED_FRAGMENT */
|
|
@@ -9519,7 +9519,7 @@ const _hoisted_2$A = {
|
|
|
9519
9519
|
class: "flex-center h-300px txt-red"
|
|
9520
9520
|
};
|
|
9521
9521
|
const _hoisted_3$v = { class: "infinite-wrapper" };
|
|
9522
|
-
const _hoisted_4$
|
|
9522
|
+
const _hoisted_4$k = { class: "row first-row" };
|
|
9523
9523
|
const _hoisted_5$j = { key: 0 };
|
|
9524
9524
|
const _hoisted_6$g = ["onClick"];
|
|
9525
9525
|
const _hoisted_7$c = { class: "flex" };
|
|
@@ -9655,7 +9655,7 @@ const _sfc_main$Y = /* @__PURE__ */ defineComponent({
|
|
|
9655
9655
|
class: { "pointer-events-none": showLoading.value }
|
|
9656
9656
|
}), [
|
|
9657
9657
|
createElementVNode("table", _hoisted_3$v, [
|
|
9658
|
-
createElementVNode("thead", _hoisted_4$
|
|
9658
|
+
createElementVNode("thead", _hoisted_4$k, [
|
|
9659
9659
|
unref(isSelectable) ? (openBlock(), createElementBlock("th", _hoisted_5$j, [
|
|
9660
9660
|
createElementVNode("input", {
|
|
9661
9661
|
ref_key: "allSelectorEl",
|
|
@@ -13617,7 +13617,7 @@ const _hoisted_2$y = {
|
|
|
13617
13617
|
class: "bgl-step-progress"
|
|
13618
13618
|
};
|
|
13619
13619
|
const _hoisted_3$u = { class: "bgl-steps-indicator" };
|
|
13620
|
-
const _hoisted_4$
|
|
13620
|
+
const _hoisted_4$j = ["onClick"];
|
|
13621
13621
|
const _hoisted_5$i = {
|
|
13622
13622
|
key: 0,
|
|
13623
13623
|
class: "bgl-step-label"
|
|
@@ -13803,7 +13803,7 @@ const _sfc_main$S = /* @__PURE__ */ defineComponent({
|
|
|
13803
13803
|
}, [
|
|
13804
13804
|
createElementVNode("span", null, toDisplayString(index2 + 1), 1),
|
|
13805
13805
|
props2.stepLabels && props2.stepLabels[index2] ? (openBlock(), createElementBlock("span", _hoisted_5$i, toDisplayString(props2.stepLabels[index2]), 1)) : createCommentVNode("", true)
|
|
13806
|
-
], 10, _hoisted_4$
|
|
13806
|
+
], 10, _hoisted_4$j);
|
|
13807
13807
|
}), 128))
|
|
13808
13808
|
])
|
|
13809
13809
|
], true)
|
|
@@ -13887,7 +13887,7 @@ const _hoisted_3$t = {
|
|
|
13887
13887
|
key: 0,
|
|
13888
13888
|
class: "flex-center h-300px"
|
|
13889
13889
|
};
|
|
13890
|
-
const _hoisted_4$
|
|
13890
|
+
const _hoisted_4$i = {
|
|
13891
13891
|
key: 1,
|
|
13892
13892
|
class: "py-1"
|
|
13893
13893
|
};
|
|
@@ -13931,9 +13931,9 @@ const _sfc_main$R = /* @__PURE__ */ defineComponent({
|
|
|
13931
13931
|
}, { deep: true });
|
|
13932
13932
|
const primitiveSchema = computed(() => {
|
|
13933
13933
|
if (props2.type === "text") {
|
|
13934
|
-
return [{ id: "value", type: "text", label: "" }];
|
|
13934
|
+
return [{ id: "value", type: "text", label: "", $el: "text" }];
|
|
13935
13935
|
} else if (props2.type === "number") {
|
|
13936
|
-
return [{ id: "value", type: "number", label: "" }];
|
|
13936
|
+
return [{ id: "value", type: "number", label: "", $el: "number" }];
|
|
13937
13937
|
}
|
|
13938
13938
|
return [];
|
|
13939
13939
|
});
|
|
@@ -14013,7 +14013,7 @@ const _sfc_main$R = /* @__PURE__ */ defineComponent({
|
|
|
14013
14013
|
icon: "error",
|
|
14014
14014
|
color: "red"
|
|
14015
14015
|
})) : createCommentVNode("", true)
|
|
14016
|
-
])) : !canRenderItems.value ? (openBlock(), createElementBlock("div", _hoisted_4$
|
|
14016
|
+
])) : !canRenderItems.value ? (openBlock(), createElementBlock("div", _hoisted_4$i, _cache[0] || (_cache[0] = [
|
|
14017
14017
|
createElementVNode("p", { class: "opacity-7" }, " No schema available ", -1)
|
|
14018
14018
|
]))) : (openBlock(), createElementBlock(Fragment, { key: 2 }, [
|
|
14019
14019
|
(openBlock(true), createElementBlock(Fragment, null, renderList(internalData.value, (item, i2) => {
|
|
@@ -14152,7 +14152,7 @@ const _hoisted_3$r = {
|
|
|
14152
14152
|
key: 1,
|
|
14153
14153
|
class: "code-editor-wrap grid rounded p-1 overflow hm-300px ltr txt-start relative h-100p"
|
|
14154
14154
|
};
|
|
14155
|
-
const _hoisted_4$
|
|
14155
|
+
const _hoisted_4$h = { class: "overflow-hidden absolute inset-0 p-0 m-0 h-100 codeText" };
|
|
14156
14156
|
const _hoisted_5$g = ["innerHTML"];
|
|
14157
14157
|
const _hoisted_6$d = ["onKeydown"];
|
|
14158
14158
|
const _sfc_main$O = /* @__PURE__ */ defineComponent({
|
|
@@ -14244,7 +14244,7 @@ const _sfc_main$O = /* @__PURE__ */ defineComponent({
|
|
|
14244
14244
|
class: "relative block h-100",
|
|
14245
14245
|
style: normalizeStyle({ height: `calc(${unref(elHeight)} - 2rem)` })
|
|
14246
14246
|
}, [
|
|
14247
|
-
createElementVNode("pre", _hoisted_4$
|
|
14247
|
+
createElementVNode("pre", _hoisted_4$h, [
|
|
14248
14248
|
_cache[2] || (_cache[2] = createTextVNode(" ")),
|
|
14249
14249
|
createElementVNode("code", {
|
|
14250
14250
|
class: normalizeClass(["absolute inset-0", className.value]),
|
|
@@ -14861,7 +14861,7 @@ class Time {
|
|
|
14861
14861
|
const _hoisted_1$F = { class: "ltr flex gap-075 p-05 m_flex-wrap calendar-container justify-content-center h-100p" };
|
|
14862
14862
|
const _hoisted_2$t = { class: "calendar-section m_border-none pe-05 m_p-0" };
|
|
14863
14863
|
const _hoisted_3$p = { class: "flex space-between pb-1" };
|
|
14864
|
-
const _hoisted_4$
|
|
14864
|
+
const _hoisted_4$g = { class: "flex gap-05" };
|
|
14865
14865
|
const _hoisted_5$f = { class: "month-year" };
|
|
14866
14866
|
const _hoisted_6$c = {
|
|
14867
14867
|
key: 0,
|
|
@@ -15101,7 +15101,7 @@ const _sfc_main$M = /* @__PURE__ */ defineComponent({
|
|
|
15101
15101
|
icon: "chevron_left",
|
|
15102
15102
|
onClick: unref(previousMonth)
|
|
15103
15103
|
}, null, 8, ["onClick"]),
|
|
15104
|
-
createElementVNode("div", _hoisted_4$
|
|
15104
|
+
createElementVNode("div", _hoisted_4$g, [
|
|
15105
15105
|
createVNode(unref(Btn), {
|
|
15106
15106
|
flat: "",
|
|
15107
15107
|
thin: "",
|
|
@@ -15415,7 +15415,7 @@ const _hoisted_2$r = {
|
|
|
15415
15415
|
class: "pixel"
|
|
15416
15416
|
};
|
|
15417
15417
|
const _hoisted_3$n = { class: "m-05 flex opacity-7 z-99" };
|
|
15418
|
-
const _hoisted_4$
|
|
15418
|
+
const _hoisted_4$f = { class: "ellipsis-1 word-break-all h-20 m-0 color-black" };
|
|
15419
15419
|
const _hoisted_5$e = { class: "flex gap-025 rounded pe-1 ps-05 py-025 bg-gray-80 -my-1" };
|
|
15420
15420
|
const _hoisted_6$b = { class: "ellipsis-1 word-break-all h-20 m-0 color-black txt16" };
|
|
15421
15421
|
const _hoisted_7$9 = {
|
|
@@ -15675,7 +15675,7 @@ const _sfc_main$K = /* @__PURE__ */ defineComponent({
|
|
|
15675
15675
|
}, null, 8, ["href", "download"]), [
|
|
15676
15676
|
[_directive_tooltip, "Download"]
|
|
15677
15677
|
]),
|
|
15678
|
-
withDirectives((openBlock(), createElementBlock("p", _hoisted_4$
|
|
15678
|
+
withDirectives((openBlock(), createElementBlock("p", _hoisted_4$f, [
|
|
15679
15679
|
createTextVNode(toDisplayString(file.name), 1)
|
|
15680
15680
|
])), [
|
|
15681
15681
|
[_directive_lightbox, { src: file.url, download: true }]
|
|
@@ -15926,7 +15926,7 @@ const _hoisted_2$p = {
|
|
|
15926
15926
|
class: "block"
|
|
15927
15927
|
};
|
|
15928
15928
|
const _hoisted_3$l = ["id", "placeholder", "disabled", "required", "readonly", "pattern", "onKeydown"];
|
|
15929
|
-
const _hoisted_4$
|
|
15929
|
+
const _hoisted_4$e = {
|
|
15930
15930
|
key: 1,
|
|
15931
15931
|
class: "opacity-7 light"
|
|
15932
15932
|
};
|
|
@@ -16088,7 +16088,7 @@ const _sfc_main$I = /* @__PURE__ */ defineComponent({
|
|
|
16088
16088
|
{ number: true }
|
|
16089
16089
|
]
|
|
16090
16090
|
]),
|
|
16091
|
-
_ctx.helptext ? (openBlock(), createElementBlock("p", _hoisted_4$
|
|
16091
|
+
_ctx.helptext ? (openBlock(), createElementBlock("p", _hoisted_4$e, toDisplayString(_ctx.helptext), 1)) : createCommentVNode("", true),
|
|
16092
16092
|
_ctx.iconStart ? (openBlock(), createBlock(unref(_sfc_main$s), {
|
|
16093
16093
|
key: 2,
|
|
16094
16094
|
class: "iconStart",
|
|
@@ -20785,7 +20785,7 @@ function parsePhoneNumber() {
|
|
|
20785
20785
|
const _hoisted_1$y = ["aria-expanded"];
|
|
20786
20786
|
const _hoisted_2$n = { class: "flex gap-05 country-code-display" };
|
|
20787
20787
|
const _hoisted_3$k = { class: "p-075 tel-countryp-dropdown" };
|
|
20788
|
-
const _hoisted_4$
|
|
20788
|
+
const _hoisted_4$d = {
|
|
20789
20789
|
class: "overflow-y p-0 max-h-300px",
|
|
20790
20790
|
role: "listbox"
|
|
20791
20791
|
};
|
|
@@ -21001,7 +21001,7 @@ const _sfc_main$F = /* @__PURE__ */ defineComponent({
|
|
|
21001
21001
|
placeholder: "Search",
|
|
21002
21002
|
icon: "search"
|
|
21003
21003
|
}, null, 8, ["modelValue"])) : createCommentVNode("", true),
|
|
21004
|
-
createElementVNode("ul", _hoisted_4$
|
|
21004
|
+
createElementVNode("ul", _hoisted_4$d, [
|
|
21005
21005
|
(openBlock(true), createElementBlock(Fragment, null, renderList(countries.value, (pb) => {
|
|
21006
21006
|
return openBlock(), createElementBlock("li", {
|
|
21007
21007
|
key: pb.iso2,
|
|
@@ -21060,7 +21060,7 @@ const TelInput = /* @__PURE__ */ _export_sfc(_sfc_main$F, [["__scopeId", "data-v
|
|
|
21060
21060
|
const _hoisted_1$x = ["for"];
|
|
21061
21061
|
const _hoisted_2$m = ["id", "disabled", "name", "value", "required"];
|
|
21062
21062
|
const _hoisted_3$j = { class: "flex w-100 gap-1 flex-wrap m_gap-05 m_gap-row-025" };
|
|
21063
|
-
const _hoisted_4$
|
|
21063
|
+
const _hoisted_4$c = ["src", "alt"];
|
|
21064
21064
|
const _hoisted_5$b = { class: "" };
|
|
21065
21065
|
const _hoisted_6$9 = {
|
|
21066
21066
|
key: 0,
|
|
@@ -21138,7 +21138,7 @@ const _sfc_main$E = /* @__PURE__ */ defineComponent({
|
|
|
21138
21138
|
width: "60",
|
|
21139
21139
|
src: opt.imgSrc,
|
|
21140
21140
|
alt: opt.imgAlt
|
|
21141
|
-
}, null, 8, _hoisted_4$
|
|
21141
|
+
}, null, 8, _hoisted_4$c)) : createCommentVNode("", true),
|
|
21142
21142
|
createElementVNode("div", _hoisted_5$b, [
|
|
21143
21143
|
opt.label ? (openBlock(), createElementBlock("p", _hoisted_6$9, toDisplayString(opt.label), 1)) : createCommentVNode("", true),
|
|
21144
21144
|
opt.subLabel ? (openBlock(), createElementBlock("p", _hoisted_7$7, toDisplayString(opt.subLabel), 1)) : createCommentVNode("", true)
|
|
@@ -21163,7 +21163,7 @@ const RadioGroup = /* @__PURE__ */ _export_sfc(_sfc_main$E, [["__scopeId", "data
|
|
|
21163
21163
|
const _hoisted_1$w = { class: "bagel-input" };
|
|
21164
21164
|
const _hoisted_2$l = { class: "pb-025" };
|
|
21165
21165
|
const _hoisted_3$i = { class: "flex gap-05 flex-wrap" };
|
|
21166
|
-
const _hoisted_4$
|
|
21166
|
+
const _hoisted_4$b = ["id", "name", "value", "checked"];
|
|
21167
21167
|
const _hoisted_5$a = ["for"];
|
|
21168
21168
|
const _sfc_main$D = /* @__PURE__ */ defineComponent({
|
|
21169
21169
|
__name: "RadioPillsInput",
|
|
@@ -21223,7 +21223,7 @@ const _sfc_main$D = /* @__PURE__ */ defineComponent({
|
|
|
21223
21223
|
value: getValue(option2),
|
|
21224
21224
|
checked: unref(selectedValue) === getValue(option2),
|
|
21225
21225
|
onChange: handleSelect
|
|
21226
|
-
}, null, 40, _hoisted_4$
|
|
21226
|
+
}, null, 40, _hoisted_4$b),
|
|
21227
21227
|
createElementVNode("label", {
|
|
21228
21228
|
for: `${_ctx.id}-${getValue(option2)}`
|
|
21229
21229
|
}, toDisplayString(getLabel(option2)), 9, _hoisted_5$a)
|
|
@@ -21241,7 +21241,7 @@ const _hoisted_2$k = {
|
|
|
21241
21241
|
class: "label"
|
|
21242
21242
|
};
|
|
21243
21243
|
const _hoisted_3$h = { class: "range-slider relative w-100" };
|
|
21244
|
-
const _hoisted_4$
|
|
21244
|
+
const _hoisted_4$a = ["id", "value", "min", "max", "step", "required", "disabled", "aria-label"];
|
|
21245
21245
|
const _hoisted_5$9 = ["value", "min", "max", "step", "required", "disabled"];
|
|
21246
21246
|
const _hoisted_6$8 = { class: "track absolute pointer-events-none overflow-hidden round" };
|
|
21247
21247
|
const _hoisted_7$6 = { class: "txt-center txt-14 user-select-none range-slider-txt flex space-between opacity-4 mx-05" };
|
|
@@ -21323,7 +21323,7 @@ const _sfc_main$C = /* @__PURE__ */ defineComponent({
|
|
|
21323
21323
|
disabled: _ctx.disabled,
|
|
21324
21324
|
"aria-label": unref(multiRange) ? "Minimum value" : "Value",
|
|
21325
21325
|
onInput: _cache[0] || (_cache[0] = (e) => handleInput(+e.target.value, true))
|
|
21326
|
-
}, null, 40, _hoisted_4$
|
|
21326
|
+
}, null, 40, _hoisted_4$a),
|
|
21327
21327
|
unref(multiRange) ? (openBlock(), createElementBlock("input", {
|
|
21328
21328
|
key: 0,
|
|
21329
21329
|
value: validTo.value,
|
|
@@ -23368,7 +23368,7 @@ const RichText = /* @__PURE__ */ _export_sfc(_sfc_main$z, [["__scopeId", "data-v
|
|
|
23368
23368
|
const _hoisted_1$r = { class: "flex gap-05" };
|
|
23369
23369
|
const _hoisted_2$h = ["disabled"];
|
|
23370
23370
|
const _hoisted_3$e = { key: 1 };
|
|
23371
|
-
const _hoisted_4$
|
|
23371
|
+
const _hoisted_4$9 = {
|
|
23372
23372
|
key: 2,
|
|
23373
23373
|
class: "ms-auto ps-05 me-05"
|
|
23374
23374
|
};
|
|
@@ -23600,7 +23600,7 @@ const _sfc_main$y = /* @__PURE__ */ defineComponent({
|
|
|
23600
23600
|
icon: _ctx.icon
|
|
23601
23601
|
}, null, 8, ["icon"])) : createCommentVNode("", true),
|
|
23602
23602
|
!_ctx.hideLabel ? (openBlock(), createElementBlock("p", _hoisted_3$e, toDisplayString(selectedLabel.value), 1)) : createCommentVNode("", true),
|
|
23603
|
-
_ctx.clearable && selectedItemCount.value > 0 ? (openBlock(), createElementBlock("div", _hoisted_4$
|
|
23603
|
+
_ctx.clearable && selectedItemCount.value > 0 ? (openBlock(), createElementBlock("div", _hoisted_4$9, [
|
|
23604
23604
|
createVNode(unref(Btn), {
|
|
23605
23605
|
flat: "",
|
|
23606
23606
|
thin: "",
|
|
@@ -26977,7 +26977,7 @@ const VueDraggableNext = defineComponent({
|
|
|
26977
26977
|
const _hoisted_1$p = ["title"];
|
|
26978
26978
|
const _hoisted_2$f = { class: "bagel-input" };
|
|
26979
26979
|
const _hoisted_3$d = { class: "table-side-scroll" };
|
|
26980
|
-
const _hoisted_4$
|
|
26980
|
+
const _hoisted_4$8 = { class: "table-header" };
|
|
26981
26981
|
const _hoisted_5$7 = { class: "table-reorder" };
|
|
26982
26982
|
const _hoisted_6$6 = { class: "table-action" };
|
|
26983
26983
|
const _sfc_main$w = /* @__PURE__ */ defineComponent({
|
|
@@ -27049,7 +27049,7 @@ const _sfc_main$w = /* @__PURE__ */ defineComponent({
|
|
|
27049
27049
|
createElementVNode("label", null, toDisplayString((_a = unref(fieldMeta)) == null ? void 0 : _a.label), 1)
|
|
27050
27050
|
]),
|
|
27051
27051
|
createElementVNode("div", _hoisted_3$d, [
|
|
27052
|
-
createElementVNode("div", _hoisted_4$
|
|
27052
|
+
createElementVNode("div", _hoisted_4$8, [
|
|
27053
27053
|
(openBlock(true), createElementBlock(Fragment, null, renderList((_b = unref(entityMeta)) == null ? void 0 : _b.fields, (field) => {
|
|
27054
27054
|
return openBlock(), createElementBlock("div", {
|
|
27055
27055
|
key: `${field.fieldname}header`,
|
|
@@ -27128,7 +27128,7 @@ const TableField = /* @__PURE__ */ _export_sfc(_sfc_main$w, [["__scopeId", "data
|
|
|
27128
27128
|
const _hoisted_1$o = ["title"];
|
|
27129
27129
|
const _hoisted_2$e = ["for"];
|
|
27130
27130
|
const _hoisted_3$c = ["id", "name", "title", "autocomplete", "type", "placeholder", "disabled", "required", "pattern"];
|
|
27131
|
-
const _hoisted_4$
|
|
27131
|
+
const _hoisted_4$7 = ["id", "name", "title", "type", "rows", "placeholder", "disabled", "required", "pattern"];
|
|
27132
27132
|
const _hoisted_5$6 = {
|
|
27133
27133
|
key: 2,
|
|
27134
27134
|
class: "opacity-7 light"
|
|
@@ -27271,7 +27271,7 @@ const _sfc_main$v = /* @__PURE__ */ defineComponent({
|
|
|
27271
27271
|
onInput: updateInputVal,
|
|
27272
27272
|
onFocusout: _cache[4] || (_cache[4] = //@ts-ignore
|
|
27273
27273
|
(...args) => _ctx.onFocusout && _ctx.onFocusout(...args))
|
|
27274
|
-
}), null, 16, _hoisted_4$
|
|
27274
|
+
}), null, 16, _hoisted_4$7)), [
|
|
27275
27275
|
[vModelText, unref(inputVal)]
|
|
27276
27276
|
]),
|
|
27277
27277
|
_ctx.helptext ? (openBlock(), createElementBlock("p", _hoisted_5$6, toDisplayString(_ctx.helptext), 1)) : createCommentVNode("", true),
|
|
@@ -27341,7 +27341,7 @@ const _sfc_main$u = /* @__PURE__ */ defineComponent({
|
|
|
27341
27341
|
};
|
|
27342
27342
|
}
|
|
27343
27343
|
});
|
|
27344
|
-
const ToggleInput = /* @__PURE__ */ _export_sfc(_sfc_main$u, [["__scopeId", "data-v-
|
|
27344
|
+
const ToggleInput = /* @__PURE__ */ _export_sfc(_sfc_main$u, [["__scopeId", "data-v-c5e45931"]]);
|
|
27345
27345
|
const files = {
|
|
27346
27346
|
setBaseUrl: (baseUrl) => {
|
|
27347
27347
|
if (!baseUrl) return;
|
|
@@ -27379,7 +27379,7 @@ const _hoisted_3$a = {
|
|
|
27379
27379
|
required: "",
|
|
27380
27380
|
class: "pixel"
|
|
27381
27381
|
};
|
|
27382
|
-
const _hoisted_4$
|
|
27382
|
+
const _hoisted_4$6 = { class: "m-05 flex opacity-7 z-99" };
|
|
27383
27383
|
const _hoisted_5$5 = { class: "flex gap-025 rounded pe-1 ps-05 py-025 bg-gray-80 -my-1" };
|
|
27384
27384
|
const _hoisted_6$5 = { class: "ellipsis-1 word-break-all h-20 m-0 color-black txt16" };
|
|
27385
27385
|
const _hoisted_7$4 = {
|
|
@@ -27544,7 +27544,7 @@ const _sfc_main$t = /* @__PURE__ */ defineComponent({
|
|
|
27544
27544
|
key: path_key,
|
|
27545
27545
|
class: "txt-gray txt-12 flex"
|
|
27546
27546
|
}, [
|
|
27547
|
-
createElementVNode("div", _hoisted_4$
|
|
27547
|
+
createElementVNode("div", _hoisted_4$6, [
|
|
27548
27548
|
withDirectives(createVNode(unref(Btn), {
|
|
27549
27549
|
color: "gray",
|
|
27550
27550
|
thin: "",
|
|
@@ -32823,14 +32823,15 @@ const _sfc_main$i = /* @__PURE__ */ defineComponent({
|
|
|
32823
32823
|
}
|
|
32824
32824
|
});
|
|
32825
32825
|
const TabsNav = /* @__PURE__ */ _export_sfc(_sfc_main$i, [["__scopeId", "data-v-6ece2018"]]);
|
|
32826
|
-
const _hoisted_1$e = {
|
|
32826
|
+
const _hoisted_1$e = { class: "txt-start" };
|
|
32827
|
+
const _hoisted_2$9 = {
|
|
32827
32828
|
key: 0,
|
|
32828
|
-
class: "txt10
|
|
32829
|
+
class: "txt10 m-0 p-0 txt-gray ellipsis"
|
|
32829
32830
|
};
|
|
32830
|
-
const
|
|
32831
|
-
const
|
|
32831
|
+
const _hoisted_3$7 = { class: "m-0 p-0 ellipsis-1 line-height-14 pb-025" };
|
|
32832
|
+
const _hoisted_4$5 = {
|
|
32832
32833
|
key: 1,
|
|
32833
|
-
class: "txt12
|
|
32834
|
+
class: "txt12 m-0 p-0 opacity-7 ellipsis-1"
|
|
32834
32835
|
};
|
|
32835
32836
|
const _sfc_main$h = /* @__PURE__ */ defineComponent({
|
|
32836
32837
|
__name: "ListItem",
|
|
@@ -32847,6 +32848,8 @@ const _sfc_main$h = /* @__PURE__ */ defineComponent({
|
|
|
32847
32848
|
lead: {},
|
|
32848
32849
|
iconEnd: {},
|
|
32849
32850
|
target: {},
|
|
32851
|
+
thin: { type: Boolean },
|
|
32852
|
+
fullWidth: { type: Boolean },
|
|
32850
32853
|
onClick: { type: Function }
|
|
32851
32854
|
},
|
|
32852
32855
|
setup(__props) {
|
|
@@ -32857,6 +32860,9 @@ const _sfc_main$h = /* @__PURE__ */ defineComponent({
|
|
|
32857
32860
|
if (props2.onClick) return "button";
|
|
32858
32861
|
return "div";
|
|
32859
32862
|
});
|
|
32863
|
+
const isClickable = computed(() => {
|
|
32864
|
+
return props2.to || props2.href || props2.onClick;
|
|
32865
|
+
});
|
|
32860
32866
|
const bind3 = computed(() => {
|
|
32861
32867
|
const obj = {};
|
|
32862
32868
|
if (props2.to) obj.to = props2.to;
|
|
@@ -32870,8 +32876,14 @@ const _sfc_main$h = /* @__PURE__ */ defineComponent({
|
|
|
32870
32876
|
return obj;
|
|
32871
32877
|
});
|
|
32872
32878
|
return (_ctx, _cache) => {
|
|
32873
|
-
|
|
32874
|
-
|
|
32879
|
+
const _directive_ripple = resolveDirective("ripple");
|
|
32880
|
+
return withDirectives((openBlock(), createBlock(resolveDynamicComponent(isComponent.value), mergeProps(bind3.value, {
|
|
32881
|
+
class: ["flex gap-05 list-item", {
|
|
32882
|
+
"py-1": !props2.thin,
|
|
32883
|
+
"py-05": props2.thin,
|
|
32884
|
+
"px-1": !props2.fullWidth,
|
|
32885
|
+
"px-0": props2.fullWidth
|
|
32886
|
+
}],
|
|
32875
32887
|
onClick: _ctx.onClick
|
|
32876
32888
|
}), {
|
|
32877
32889
|
default: withCtx(() => [
|
|
@@ -32888,28 +32900,33 @@ const _sfc_main$h = /* @__PURE__ */ defineComponent({
|
|
|
32888
32900
|
class: "color-primary",
|
|
32889
32901
|
icon: _ctx.icon
|
|
32890
32902
|
}, null, 8, ["icon"])) : createCommentVNode("", true),
|
|
32891
|
-
createElementVNode("div",
|
|
32892
|
-
_ctx.lead ? (openBlock(), createElementBlock("p",
|
|
32903
|
+
createElementVNode("div", _hoisted_1$e, [
|
|
32904
|
+
_ctx.lead ? (openBlock(), createElementBlock("p", _hoisted_2$9, [
|
|
32893
32905
|
createTextVNode(toDisplayString(_ctx.lead) + " ", 1),
|
|
32894
32906
|
renderSlot(_ctx.$slots, "lead")
|
|
32895
32907
|
])) : createCommentVNode("", true),
|
|
32896
|
-
createElementVNode("p",
|
|
32908
|
+
createElementVNode("p", _hoisted_3$7, [
|
|
32897
32909
|
createTextVNode(toDisplayString(_ctx.title) + " ", 1),
|
|
32898
32910
|
renderSlot(_ctx.$slots, "default")
|
|
32899
32911
|
]),
|
|
32900
|
-
_ctx.subtitle ? (openBlock(), createElementBlock("p",
|
|
32912
|
+
_ctx.subtitle ? (openBlock(), createElementBlock("p", _hoisted_4$5, [
|
|
32901
32913
|
createTextVNode(toDisplayString(_ctx.subtitle) + " ", 1),
|
|
32902
32914
|
renderSlot(_ctx.$slots, "subtitle")
|
|
32903
32915
|
])) : createCommentVNode("", true)
|
|
32904
32916
|
]),
|
|
32905
|
-
|
|
32906
|
-
|
|
32907
|
-
|
|
32908
|
-
|
|
32909
|
-
|
|
32917
|
+
_cache[0] || (_cache[0] = createElementVNode("div", { class: "flex-grow-1" }, null, -1)),
|
|
32918
|
+
renderSlot(_ctx.$slots, "action", {}, () => [
|
|
32919
|
+
_ctx.iconEnd ? (openBlock(), createBlock(unref(_sfc_main$s), {
|
|
32920
|
+
key: 0,
|
|
32921
|
+
icon: _ctx.iconEnd,
|
|
32922
|
+
class: "transition-400"
|
|
32923
|
+
}, null, 8, ["icon"])) : createCommentVNode("", true)
|
|
32924
|
+
])
|
|
32910
32925
|
]),
|
|
32911
32926
|
_: 3
|
|
32912
|
-
}, 16, ["onClick"])
|
|
32927
|
+
}, 16, ["class", "onClick"])), [
|
|
32928
|
+
[_directive_ripple, isClickable.value]
|
|
32929
|
+
]);
|
|
32913
32930
|
};
|
|
32914
32931
|
}
|
|
32915
32932
|
});
|
|
@@ -33157,7 +33174,7 @@ const _sfc_main$d = /* @__PURE__ */ defineComponent({
|
|
|
33157
33174
|
});
|
|
33158
33175
|
return (_ctx, _cache) => {
|
|
33159
33176
|
return openBlock(), createElementBlock("div", {
|
|
33160
|
-
class: normalizeClass(["bg-dark", { "is-side": _ctx.side, "is-active": unref(isVisible), "bg-lignt": false }]),
|
|
33177
|
+
class: normalizeClass(["bg-dark-modal", { "is-side": _ctx.side, "is-active": unref(isVisible), "bg-lignt": false }]),
|
|
33161
33178
|
onClick: _cache[1] || (_cache[1] = () => _ctx.dismissable ? closeModal() : ""),
|
|
33162
33179
|
onKeydown: withKeys(closeModal, ["esc"])
|
|
33163
33180
|
}, [
|