@bagelink/vue 0.0.206 → 0.0.211
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/ModalBglForm.vue.d.ts +45 -0
- package/dist/components/ModalBglForm.vue.d.ts.map +1 -0
- package/dist/components/form/index.d.ts +1 -0
- package/dist/components/form/index.d.ts.map +1 -1
- package/dist/components/index.d.ts +1 -0
- package/dist/components/index.d.ts.map +1 -1
- package/dist/index.cjs +167 -60
- package/dist/index.mjs +167 -60
- package/dist/plugins/modal.d.ts +3 -1
- package/dist/plugins/modal.d.ts.map +1 -1
- package/dist/style.css +9 -0
- package/dist/types/BagelForm.d.ts +2 -0
- package/dist/types/BagelForm.d.ts.map +1 -1
- package/dist/types/BtnOptions.d.ts +1 -0
- package/dist/types/BtnOptions.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/components/ModalBglForm.vue +121 -0
- package/src/components/form/index.ts +1 -0
- package/src/components/index.ts +1 -0
- package/src/plugins/modal.ts +16 -8
- package/src/types/BagelForm.ts +2 -0
- package/src/types/BtnOptions.ts +1 -1
package/dist/index.mjs
CHANGED
|
@@ -2277,16 +2277,17 @@ const ModalPlugin = {
|
|
|
2277
2277
|
const hideModal = (index2) => {
|
|
2278
2278
|
modalStack.value.splice(index2, 1);
|
|
2279
2279
|
};
|
|
2280
|
-
const showModal = (
|
|
2280
|
+
const showModal = (modalType, options, slots = {}) => {
|
|
2281
2281
|
modalStack.value.push({
|
|
2282
2282
|
modalOptions: options,
|
|
2283
|
-
|
|
2283
|
+
modalType,
|
|
2284
2284
|
componentSlots: slots
|
|
2285
2285
|
});
|
|
2286
2286
|
};
|
|
2287
2287
|
app.provide(ModalSymbol, {
|
|
2288
|
-
modalForm: (options, slots) => showModal(
|
|
2289
|
-
showModal: (options, slots) => showModal(
|
|
2288
|
+
modalForm: (options, slots) => showModal(1, options, slots),
|
|
2289
|
+
showModal: (options, slots) => showModal(0, options, slots),
|
|
2290
|
+
showModalForm: (options, slots) => showModal(2, options, slots),
|
|
2290
2291
|
hideModal: (index2 = modalStack.value.length - 1) => hideModal(index2)
|
|
2291
2292
|
// modalOptions,
|
|
2292
2293
|
});
|
|
@@ -2298,7 +2299,13 @@ const ModalPlugin = {
|
|
|
2298
2299
|
},
|
|
2299
2300
|
render() {
|
|
2300
2301
|
return modalStack.value.map((modal, index2) => {
|
|
2301
|
-
|
|
2302
|
+
let renderComponent;
|
|
2303
|
+
if (modal.modalType === 1)
|
|
2304
|
+
renderComponent = ModalForm;
|
|
2305
|
+
else if (modal.modalType === 2)
|
|
2306
|
+
renderComponent = ModalBglForm;
|
|
2307
|
+
else
|
|
2308
|
+
renderComponent = _sfc_main$U;
|
|
2302
2309
|
return h(
|
|
2303
2310
|
renderComponent,
|
|
2304
2311
|
{
|
|
@@ -2362,8 +2369,8 @@ function bindAttrs(attrs, fieldVal, row) {
|
|
|
2362
2369
|
const resolvedAttrs = Object.fromEntries(arr);
|
|
2363
2370
|
return resolvedAttrs;
|
|
2364
2371
|
}
|
|
2365
|
-
const _hoisted_1$
|
|
2366
|
-
const _sfc_main$
|
|
2372
|
+
const _hoisted_1$12 = { ref: "el" };
|
|
2373
|
+
const _sfc_main$Z = /* @__PURE__ */ defineComponent({
|
|
2367
2374
|
__name: "LangText",
|
|
2368
2375
|
props: {
|
|
2369
2376
|
input: {}
|
|
@@ -2371,7 +2378,7 @@ const _sfc_main$Y = /* @__PURE__ */ defineComponent({
|
|
|
2371
2378
|
setup(__props) {
|
|
2372
2379
|
return (_ctx, _cache) => {
|
|
2373
2380
|
return openBlock(), createElementBlock(Fragment$1, null, [
|
|
2374
|
-
createElementVNode("span", _hoisted_1$
|
|
2381
|
+
createElementVNode("span", _hoisted_1$12, null, 512),
|
|
2375
2382
|
createTextVNode(" " + toDisplayString(_ctx.input), 1)
|
|
2376
2383
|
], 64);
|
|
2377
2384
|
};
|
|
@@ -14484,8 +14491,8 @@ const marks = {
|
|
|
14484
14491
|
}
|
|
14485
14492
|
};
|
|
14486
14493
|
const schema = new Schema({ nodes, marks });
|
|
14487
|
-
const _hoisted_1$
|
|
14488
|
-
const _sfc_main$
|
|
14494
|
+
const _hoisted_1$11 = ["id"];
|
|
14495
|
+
const _sfc_main$Y = /* @__PURE__ */ defineComponent({
|
|
14489
14496
|
__name: "RTXEditor",
|
|
14490
14497
|
props: {
|
|
14491
14498
|
elementId: { default: Math.random().toString(36).substr(2, 9) },
|
|
@@ -14562,11 +14569,11 @@ const _sfc_main$X = /* @__PURE__ */ defineComponent({
|
|
|
14562
14569
|
onClick: focusEditor,
|
|
14563
14570
|
id: `canvas-${_ctx.elementId}`,
|
|
14564
14571
|
onKeydown: _cache[0] || (_cache[0] = withKeys(withModifiers(($event) => _ctx.$emit("keydown.meta.enter"), ["meta"]), ["enter"]))
|
|
14565
|
-
}, null, 40, _hoisted_1$
|
|
14572
|
+
}, null, 40, _hoisted_1$11);
|
|
14566
14573
|
};
|
|
14567
14574
|
}
|
|
14568
14575
|
});
|
|
14569
|
-
const _sfc_main$
|
|
14576
|
+
const _sfc_main$X = /* @__PURE__ */ defineComponent({
|
|
14570
14577
|
__name: "MaterialIcon",
|
|
14571
14578
|
props: {
|
|
14572
14579
|
icon: {},
|
|
@@ -14581,9 +14588,9 @@ const _sfc_main$W = /* @__PURE__ */ defineComponent({
|
|
|
14581
14588
|
};
|
|
14582
14589
|
}
|
|
14583
14590
|
});
|
|
14584
|
-
const _hoisted_1
|
|
14585
|
-
const _hoisted_2$
|
|
14586
|
-
_hoisted_1
|
|
14591
|
+
const _hoisted_1$10 = /* @__PURE__ */ createElementVNode("div", { class: "icon-font top-arrow" }, "chevron_right", -1);
|
|
14592
|
+
const _hoisted_2$T = [
|
|
14593
|
+
_hoisted_1$10
|
|
14587
14594
|
];
|
|
14588
14595
|
const _hoisted_3$K = { class: "full-nav" };
|
|
14589
14596
|
const _hoisted_4$t = { class: "nav-scroll" };
|
|
@@ -14591,7 +14598,7 @@ const _hoisted_5$o = { class: "nav-links-wrapper" };
|
|
|
14591
14598
|
const _hoisted_6$i = { class: "icon-font" };
|
|
14592
14599
|
const _hoisted_7$d = { class: "tooltip" };
|
|
14593
14600
|
const _hoisted_8$7 = { class: "bot-buttons-wrapper" };
|
|
14594
|
-
const _sfc_main$
|
|
14601
|
+
const _sfc_main$W = /* @__PURE__ */ defineComponent({
|
|
14595
14602
|
__name: "NavBar",
|
|
14596
14603
|
props: {
|
|
14597
14604
|
links: {},
|
|
@@ -14615,7 +14622,7 @@ const _sfc_main$V = /* @__PURE__ */ defineComponent({
|
|
|
14615
14622
|
role: "button",
|
|
14616
14623
|
"aria-label": "Toggle Navigation",
|
|
14617
14624
|
tabindex: "0"
|
|
14618
|
-
}, _hoisted_2$
|
|
14625
|
+
}, _hoisted_2$T, 32),
|
|
14619
14626
|
createElementVNode("div", _hoisted_3$K, [
|
|
14620
14627
|
createElementVNode("div", _hoisted_4$t, [
|
|
14621
14628
|
createElementVNode("div", _hoisted_5$o, [
|
|
@@ -14642,15 +14649,15 @@ const _sfc_main$V = /* @__PURE__ */ defineComponent({
|
|
|
14642
14649
|
};
|
|
14643
14650
|
}
|
|
14644
14651
|
});
|
|
14645
|
-
const _hoisted_1
|
|
14652
|
+
const _hoisted_1$$ = {
|
|
14646
14653
|
key: 0,
|
|
14647
14654
|
class: "loading"
|
|
14648
14655
|
};
|
|
14649
|
-
const _hoisted_2$
|
|
14656
|
+
const _hoisted_2$S = {
|
|
14650
14657
|
key: 1,
|
|
14651
14658
|
class: "btn-flex"
|
|
14652
14659
|
};
|
|
14653
|
-
const _sfc_main$
|
|
14660
|
+
const _sfc_main$V = /* @__PURE__ */ defineComponent({
|
|
14654
14661
|
__name: "Btn",
|
|
14655
14662
|
props: {
|
|
14656
14663
|
disabled: { type: Boolean, default: false },
|
|
@@ -14730,8 +14737,8 @@ const _sfc_main$U = /* @__PURE__ */ defineComponent({
|
|
|
14730
14737
|
})
|
|
14731
14738
|
}, {
|
|
14732
14739
|
default: withCtx(() => [
|
|
14733
|
-
_ctx.loading ? (openBlock(), createElementBlock("div", _hoisted_1
|
|
14734
|
-
_ctx.icon ? (openBlock(), createBlock(unref(_sfc_main$
|
|
14740
|
+
_ctx.loading ? (openBlock(), createElementBlock("div", _hoisted_1$$)) : (openBlock(), createElementBlock("div", _hoisted_2$S, [
|
|
14741
|
+
_ctx.icon ? (openBlock(), createBlock(unref(_sfc_main$X), {
|
|
14735
14742
|
key: 0,
|
|
14736
14743
|
icon: _ctx.icon
|
|
14737
14744
|
}, null, 8, ["icon"])) : createCommentVNode("", true),
|
|
@@ -14739,7 +14746,7 @@ const _sfc_main$U = /* @__PURE__ */ defineComponent({
|
|
|
14739
14746
|
!unref(slots)["default"] && _ctx.value ? (openBlock(), createElementBlock(Fragment$1, { key: 1 }, [
|
|
14740
14747
|
createTextVNode(toDisplayString(_ctx.value), 1)
|
|
14741
14748
|
], 64)) : createCommentVNode("", true),
|
|
14742
|
-
props2["icon.end"] ? (openBlock(), createBlock(unref(_sfc_main$
|
|
14749
|
+
props2["icon.end"] ? (openBlock(), createBlock(unref(_sfc_main$X), {
|
|
14743
14750
|
key: 2,
|
|
14744
14751
|
icon: props2["icon.end"]
|
|
14745
14752
|
}, null, 8, ["icon"])) : createCommentVNode("", true)
|
|
@@ -14757,11 +14764,11 @@ const _export_sfc = (sfc, props2) => {
|
|
|
14757
14764
|
}
|
|
14758
14765
|
return target;
|
|
14759
14766
|
};
|
|
14760
|
-
const Btn = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
14761
|
-
const _hoisted_1$
|
|
14762
|
-
const _hoisted_2$
|
|
14767
|
+
const Btn = /* @__PURE__ */ _export_sfc(_sfc_main$V, [["__scopeId", "data-v-0ca0d3de"]]);
|
|
14768
|
+
const _hoisted_1$_ = { class: "tool-bar" };
|
|
14769
|
+
const _hoisted_2$R = { class: "modal-title" };
|
|
14763
14770
|
const _hoisted_3$J = { class: "modal-footer mt-3" };
|
|
14764
|
-
const _sfc_main$
|
|
14771
|
+
const _sfc_main$U = /* @__PURE__ */ defineComponent({
|
|
14765
14772
|
__name: "Modal",
|
|
14766
14773
|
props: {
|
|
14767
14774
|
side: { type: Boolean },
|
|
@@ -14807,7 +14814,7 @@ const _sfc_main$T = /* @__PURE__ */ defineComponent({
|
|
|
14807
14814
|
onClick: _cache[0] || (_cache[0] = withModifiers(() => {
|
|
14808
14815
|
}, ["stop"]))
|
|
14809
14816
|
}, [
|
|
14810
|
-
createElementVNode("header", _hoisted_1$
|
|
14817
|
+
createElementVNode("header", _hoisted_1$_, [
|
|
14811
14818
|
renderSlot(_ctx.$slots, "toolbar"),
|
|
14812
14819
|
createVNode(unref(Btn), {
|
|
14813
14820
|
style: normalizeStyle({ float: _ctx.side ? "left" : "right" }),
|
|
@@ -14815,7 +14822,7 @@ const _sfc_main$T = /* @__PURE__ */ defineComponent({
|
|
|
14815
14822
|
icon: "close",
|
|
14816
14823
|
onClick: closeModal
|
|
14817
14824
|
}, null, 8, ["style"]),
|
|
14818
|
-
createElementVNode("h3", _hoisted_2$
|
|
14825
|
+
createElementVNode("h3", _hoisted_2$R, toDisplayString(_ctx.title), 1)
|
|
14819
14826
|
]),
|
|
14820
14827
|
renderSlot(_ctx.$slots, "default"),
|
|
14821
14828
|
createElementVNode("footer", _hoisted_3$J, [
|
|
@@ -14833,6 +14840,104 @@ const _sfc_main$T = /* @__PURE__ */ defineComponent({
|
|
|
14833
14840
|
};
|
|
14834
14841
|
}
|
|
14835
14842
|
});
|
|
14843
|
+
const _hoisted_1$Z = { class: "tool-bar" };
|
|
14844
|
+
const _hoisted_2$Q = { class: "modal-title" };
|
|
14845
|
+
const _sfc_main$T = /* @__PURE__ */ defineComponent({
|
|
14846
|
+
__name: "ModalBglForm",
|
|
14847
|
+
props: {
|
|
14848
|
+
side: { type: Boolean },
|
|
14849
|
+
title: {},
|
|
14850
|
+
dismissable: { type: Boolean },
|
|
14851
|
+
actions: {},
|
|
14852
|
+
schema: { type: Function },
|
|
14853
|
+
modelValue: {},
|
|
14854
|
+
onSubmit: { type: Function },
|
|
14855
|
+
onDelete: { type: Function }
|
|
14856
|
+
},
|
|
14857
|
+
emits: ["update:isModalVisible", "update:modelValue"],
|
|
14858
|
+
setup(__props, { emit: __emit }) {
|
|
14859
|
+
const props2 = __props;
|
|
14860
|
+
const computedFormSchema = computed(() => {
|
|
14861
|
+
if (typeof props2.schema === "function") {
|
|
14862
|
+
return props2.schema();
|
|
14863
|
+
}
|
|
14864
|
+
return props2.schema;
|
|
14865
|
+
});
|
|
14866
|
+
let isActive = ref(false);
|
|
14867
|
+
const emit2 = __emit;
|
|
14868
|
+
const handleEmit = (value) => {
|
|
14869
|
+
emit2("update:modelValue", value);
|
|
14870
|
+
};
|
|
14871
|
+
const closeModal = () => {
|
|
14872
|
+
isActive.value = false;
|
|
14873
|
+
setTimeout(() => {
|
|
14874
|
+
emit2("update:isModalVisible", false);
|
|
14875
|
+
}, 200);
|
|
14876
|
+
};
|
|
14877
|
+
const runSubmit = async (formData) => {
|
|
14878
|
+
var _a2;
|
|
14879
|
+
try {
|
|
14880
|
+
await ((_a2 = props2.onSubmit) == null ? void 0 : _a2.call(props2, formData));
|
|
14881
|
+
closeModal();
|
|
14882
|
+
} catch (err) {
|
|
14883
|
+
console.error(err);
|
|
14884
|
+
}
|
|
14885
|
+
};
|
|
14886
|
+
const runDelete = () => {
|
|
14887
|
+
var _a2, _b;
|
|
14888
|
+
(_b = props2.onDelete) == null ? void 0 : _b.call(props2, (_a2 = props2.modelValue) == null ? void 0 : _a2.id);
|
|
14889
|
+
closeModal();
|
|
14890
|
+
};
|
|
14891
|
+
const escapeKeyClose = (e3) => (props2 == null ? void 0 : props2.dismissable) && useEscape(e3, () => closeModal());
|
|
14892
|
+
onMounted(() => {
|
|
14893
|
+
setTimeout(() => {
|
|
14894
|
+
isActive.value = true;
|
|
14895
|
+
}, 1);
|
|
14896
|
+
document.addEventListener(
|
|
14897
|
+
"keydown",
|
|
14898
|
+
escapeKeyClose
|
|
14899
|
+
);
|
|
14900
|
+
});
|
|
14901
|
+
onUnmounted(() => {
|
|
14902
|
+
document.removeEventListener(
|
|
14903
|
+
"keydown",
|
|
14904
|
+
escapeKeyClose
|
|
14905
|
+
);
|
|
14906
|
+
});
|
|
14907
|
+
return (_ctx, _cache) => {
|
|
14908
|
+
return openBlock(), createElementBlock("div", {
|
|
14909
|
+
class: normalizeClass(["bg-dark", { "is-side": _ctx.side, "is-active": unref(isActive) }]),
|
|
14910
|
+
onClick: _cache[1] || (_cache[1] = () => _ctx.dismissable ? closeModal() : ""),
|
|
14911
|
+
onKeydown: withKeys(closeModal, ["esc"])
|
|
14912
|
+
}, [
|
|
14913
|
+
createElementVNode("div", {
|
|
14914
|
+
class: "card modal",
|
|
14915
|
+
onClick: _cache[0] || (_cache[0] = withModifiers(() => {
|
|
14916
|
+
}, ["stop"]))
|
|
14917
|
+
}, [
|
|
14918
|
+
createElementVNode("header", _hoisted_1$Z, [
|
|
14919
|
+
renderSlot(_ctx.$slots, "toolbar", {}, void 0, true),
|
|
14920
|
+
createVNode(unref(Btn), {
|
|
14921
|
+
style: normalizeStyle({ float: _ctx.side ? "left" : "right" }),
|
|
14922
|
+
flat: "",
|
|
14923
|
+
icon: "close",
|
|
14924
|
+
onClick: closeModal
|
|
14925
|
+
}, null, 8, ["style"]),
|
|
14926
|
+
createElementVNode("h3", _hoisted_2$Q, toDisplayString(_ctx.title), 1)
|
|
14927
|
+
]),
|
|
14928
|
+
createVNode(unref(_sfc_main$r), {
|
|
14929
|
+
onDelete: _ctx.onDelete ? runDelete : void 0,
|
|
14930
|
+
modelValue: _ctx.modelValue,
|
|
14931
|
+
"onUpdate:modelValue": handleEmit,
|
|
14932
|
+
onSubmit: runSubmit,
|
|
14933
|
+
schema: computedFormSchema.value
|
|
14934
|
+
}, null, 8, ["onDelete", "modelValue", "schema"])
|
|
14935
|
+
])
|
|
14936
|
+
], 34);
|
|
14937
|
+
};
|
|
14938
|
+
}
|
|
14939
|
+
});
|
|
14940
|
+
const ModalBglForm = /* @__PURE__ */ _export_sfc(_sfc_main$T, [["__scopeId", "data-v-93c9eab1"]]);
|
|
14836
14941
|
const _hoisted_1$Y = { class: "dropdown-title" };
|
|
14837
14942
|
const _hoisted_2$P = { class: "dropdown-body" };
|
|
14838
14943
|
const _hoisted_3$I = ["onClick"];
|
|
@@ -14864,7 +14969,7 @@ const _sfc_main$S = /* @__PURE__ */ defineComponent({
|
|
|
14864
14969
|
}, [
|
|
14865
14970
|
createElementVNode("div", _hoisted_1$Y, [
|
|
14866
14971
|
createTextVNode(toDisplayString(unref(selectedOption) || __props.placeholder) + " ", 1),
|
|
14867
|
-
createVNode(unref(_sfc_main$
|
|
14972
|
+
createVNode(unref(_sfc_main$X), { icon: "keyboard_arrow_down" })
|
|
14868
14973
|
]),
|
|
14869
14974
|
createElementVNode("div", _hoisted_2$P, [
|
|
14870
14975
|
(openBlock(true), createElementBlock(Fragment$1, null, renderList(__props.options, (option2, index2) => {
|
|
@@ -14912,7 +15017,7 @@ const _sfc_main$R = /* @__PURE__ */ defineComponent({
|
|
|
14912
15017
|
}, null, 40, _hoisted_4$s), [
|
|
14913
15018
|
[vModelText, searchTerm.value]
|
|
14914
15019
|
]),
|
|
14915
|
-
createVNode(unref(_sfc_main$
|
|
15020
|
+
createVNode(unref(_sfc_main$X), {
|
|
14916
15021
|
class: "txtgray",
|
|
14917
15022
|
icon: "search"
|
|
14918
15023
|
})
|
|
@@ -15088,19 +15193,19 @@ const _sfc_main$O = /* @__PURE__ */ defineComponent({
|
|
|
15088
15193
|
createElementVNode("div", _hoisted_4$r, toDisplayString(comment.sender.first_name) + " " + toDisplayString(comment.sender.last_name), 1),
|
|
15089
15194
|
createElementVNode("div", _hoisted_5$m, toDisplayString(comment.updated_at.split("T")[0]), 1),
|
|
15090
15195
|
createElementVNode("div", _hoisted_6$h, [
|
|
15091
|
-
createVNode(unref(_sfc_main$
|
|
15196
|
+
createVNode(unref(_sfc_main$X), {
|
|
15092
15197
|
size: 1,
|
|
15093
15198
|
class: "edit",
|
|
15094
15199
|
icon: "edit",
|
|
15095
15200
|
onClick: ($event) => isRef(editComment) ? editComment.value = comment : editComment = comment
|
|
15096
15201
|
}, null, 8, ["onClick"]),
|
|
15097
|
-
createVNode(unref(_sfc_main$
|
|
15202
|
+
createVNode(unref(_sfc_main$X), {
|
|
15098
15203
|
size: 1.2,
|
|
15099
15204
|
class: "delete",
|
|
15100
15205
|
icon: "delete",
|
|
15101
15206
|
onClick: ($event) => deleteComment(comment.id)
|
|
15102
15207
|
}, null, 8, ["onClick"]),
|
|
15103
|
-
createVNode(unref(_sfc_main$
|
|
15208
|
+
createVNode(unref(_sfc_main$X), {
|
|
15104
15209
|
size: 1.2,
|
|
15105
15210
|
class: "save",
|
|
15106
15211
|
icon: "save",
|
|
@@ -15108,7 +15213,7 @@ const _sfc_main$O = /* @__PURE__ */ defineComponent({
|
|
|
15108
15213
|
})
|
|
15109
15214
|
])
|
|
15110
15215
|
]),
|
|
15111
|
-
unref(editComment) !== null && ((_c = unref(editComment)) == null ? void 0 : _c.id) === comment.id ? (openBlock(), createBlock(unref(_sfc_main$
|
|
15216
|
+
unref(editComment) !== null && ((_c = unref(editComment)) == null ? void 0 : _c.id) === comment.id ? (openBlock(), createBlock(unref(_sfc_main$Y), {
|
|
15112
15217
|
key: 0,
|
|
15113
15218
|
modelValue: unref(editComment).body_html,
|
|
15114
15219
|
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => unref(editComment).body_html = $event),
|
|
@@ -15122,7 +15227,7 @@ const _sfc_main$O = /* @__PURE__ */ defineComponent({
|
|
|
15122
15227
|
}), 128))
|
|
15123
15228
|
]),
|
|
15124
15229
|
createElementVNode("div", _hoisted_8$6, [
|
|
15125
|
-
createVNode(unref(_sfc_main$
|
|
15230
|
+
createVNode(unref(_sfc_main$Y), {
|
|
15126
15231
|
class: "comment-input",
|
|
15127
15232
|
modelValue: unref(bodyHtml),
|
|
15128
15233
|
"onUpdate:modelValue": _cache[1] || (_cache[1] = ($event) => isRef(bodyHtml) ? bodyHtml.value = $event : bodyHtml = $event),
|
|
@@ -15402,7 +15507,7 @@ const _sfc_main$K = /* @__PURE__ */ defineComponent({
|
|
|
15402
15507
|
createElementVNode("div", {
|
|
15403
15508
|
class: normalizeClass(["list-arrows", { sorted: unref(sortField) === field.id }])
|
|
15404
15509
|
}, [
|
|
15405
|
-
createVNode(unref(_sfc_main$
|
|
15510
|
+
createVNode(unref(_sfc_main$X), {
|
|
15406
15511
|
class: normalizeClass({ desc: unref(sortDirection) === "DESC" }),
|
|
15407
15512
|
icon: "keyboard_arrow_up"
|
|
15408
15513
|
}, null, 8, ["class"])
|
|
@@ -15606,7 +15711,7 @@ const _sfc_main$G = /* @__PURE__ */ defineComponent({
|
|
|
15606
15711
|
]),
|
|
15607
15712
|
createElementVNode("div", _hoisted_5$k, [
|
|
15608
15713
|
((_a2 = _ctx.person.phone) == null ? void 0 : _a2.length) ? (openBlock(), createElementBlock("div", _hoisted_6$f, [
|
|
15609
|
-
createVNode(unref(_sfc_main$
|
|
15714
|
+
createVNode(unref(_sfc_main$X), { icon: "phone" }),
|
|
15610
15715
|
(openBlock(true), createElementBlock(Fragment$1, null, renderList(_ctx.person.phone, (phone) => {
|
|
15611
15716
|
return openBlock(), createElementBlock("p", {
|
|
15612
15717
|
key: phone.id
|
|
@@ -15614,7 +15719,7 @@ const _sfc_main$G = /* @__PURE__ */ defineComponent({
|
|
|
15614
15719
|
}), 128))
|
|
15615
15720
|
])) : createCommentVNode("", true),
|
|
15616
15721
|
((_b = _ctx.person.email) == null ? void 0 : _b.length) ? (openBlock(), createElementBlock("div", _hoisted_7$a, [
|
|
15617
|
-
createVNode(unref(_sfc_main$
|
|
15722
|
+
createVNode(unref(_sfc_main$X), { icon: "email" }),
|
|
15618
15723
|
(openBlock(true), createElementBlock(Fragment$1, null, renderList(_ctx.person.email, (email) => {
|
|
15619
15724
|
return openBlock(), createElementBlock("p", {
|
|
15620
15725
|
key: email.id
|
|
@@ -15622,7 +15727,7 @@ const _sfc_main$G = /* @__PURE__ */ defineComponent({
|
|
|
15622
15727
|
}), 128))
|
|
15623
15728
|
])) : createCommentVNode("", true),
|
|
15624
15729
|
_ctx.person.date_of_birth || _ctx.person.gender ? (openBlock(), createElementBlock("div", _hoisted_8$5, [
|
|
15625
|
-
createVNode(unref(_sfc_main$
|
|
15730
|
+
createVNode(unref(_sfc_main$X), { icon: "badge" }),
|
|
15626
15731
|
_ctx.person.date_of_birth ? (openBlock(), createElementBlock("p", _hoisted_9$3, toDisplayString(_ctx.person.date_of_birth), 1)) : createCommentVNode("", true),
|
|
15627
15732
|
_ctx.person.gender ? (openBlock(), createElementBlock("p", _hoisted_10$3, toDisplayString(_ctx.person.gender), 1)) : createCommentVNode("", true)
|
|
15628
15733
|
])) : createCommentVNode("", true)
|
|
@@ -17126,7 +17231,7 @@ const _sfc_main$D = /* @__PURE__ */ defineComponent({
|
|
|
17126
17231
|
[vModelCheckbox, unref(val)]
|
|
17127
17232
|
]),
|
|
17128
17233
|
createElementVNode("span", null, [
|
|
17129
|
-
createVNode(unref(_sfc_main$
|
|
17234
|
+
createVNode(unref(_sfc_main$X), { icon: "check" })
|
|
17130
17235
|
])
|
|
17131
17236
|
]);
|
|
17132
17237
|
};
|
|
@@ -17984,7 +18089,7 @@ const _sfc_main$x = /* @__PURE__ */ defineComponent({
|
|
|
17984
18089
|
style: normalizeStyle([`--p:${item.progress}`, { "--b": "2px" }])
|
|
17985
18090
|
}, [
|
|
17986
18091
|
item.progress < 100 ? (openBlock(), createElementBlock("span", _hoisted_7$4, toDisplayString(`${item.progress.toFixed(0)}`), 1)) : createCommentVNode("", true),
|
|
17987
|
-
createVNode(unref(_sfc_main$
|
|
18092
|
+
createVNode(unref(_sfc_main$X), {
|
|
17988
18093
|
class: "success",
|
|
17989
18094
|
icon: "check"
|
|
17990
18095
|
})
|
|
@@ -18091,7 +18196,7 @@ const _sfc_main$w = /* @__PURE__ */ defineComponent({
|
|
|
18091
18196
|
]),
|
|
18092
18197
|
createElementVNode("div", _hoisted_5$d, [
|
|
18093
18198
|
((_a2 = person.value.phone) == null ? void 0 : _a2.length) ? (openBlock(), createElementBlock("div", _hoisted_6$8, [
|
|
18094
|
-
createVNode(unref(_sfc_main$
|
|
18199
|
+
createVNode(unref(_sfc_main$X), { icon: "phone" }),
|
|
18095
18200
|
(openBlock(true), createElementBlock(Fragment$1, null, renderList(person.value.phone, (phone) => {
|
|
18096
18201
|
return openBlock(), createElementBlock("p", {
|
|
18097
18202
|
key: phone.id
|
|
@@ -18099,7 +18204,7 @@ const _sfc_main$w = /* @__PURE__ */ defineComponent({
|
|
|
18099
18204
|
}), 128))
|
|
18100
18205
|
])) : createCommentVNode("", true),
|
|
18101
18206
|
((_b = person.value.email) == null ? void 0 : _b.length) ? (openBlock(), createElementBlock("div", _hoisted_7$3, [
|
|
18102
|
-
createVNode(unref(_sfc_main$
|
|
18207
|
+
createVNode(unref(_sfc_main$X), { icon: "email" }),
|
|
18103
18208
|
(openBlock(true), createElementBlock(Fragment$1, null, renderList(person.value.email, (email) => {
|
|
18104
18209
|
return openBlock(), createElementBlock("p", {
|
|
18105
18210
|
key: email.id
|
|
@@ -18107,7 +18212,7 @@ const _sfc_main$w = /* @__PURE__ */ defineComponent({
|
|
|
18107
18212
|
}), 128))
|
|
18108
18213
|
])) : createCommentVNode("", true),
|
|
18109
18214
|
person.value.date_of_birth || person.value.gender ? (openBlock(), createElementBlock("div", _hoisted_8, [
|
|
18110
|
-
createVNode(unref(_sfc_main$
|
|
18215
|
+
createVNode(unref(_sfc_main$X), { icon: "badge" }),
|
|
18111
18216
|
person.value.date_of_birth ? (openBlock(), createElementBlock("p", _hoisted_9, toDisplayString(person.value.date_of_birth), 1)) : createCommentVNode("", true),
|
|
18112
18217
|
person.value.gender ? (openBlock(), createElementBlock("p", _hoisted_10, toDisplayString(person.value.gender), 1)) : createCommentVNode("", true)
|
|
18113
18218
|
])) : createCommentVNode("", true)
|
|
@@ -18249,7 +18354,7 @@ const _sfc_main$u = /* @__PURE__ */ defineComponent({
|
|
|
18249
18354
|
}, {
|
|
18250
18355
|
default: withCtx(() => [
|
|
18251
18356
|
createTextVNode(toDisplayString(content.value) + " ", 1),
|
|
18252
|
-
createVNode(unref(_sfc_main$
|
|
18357
|
+
createVNode(unref(_sfc_main$X), { icon: "arrow_forward" })
|
|
18253
18358
|
]),
|
|
18254
18359
|
_: 1
|
|
18255
18360
|
})) : (openBlock(), createElementBlock("span", _hoisted_1$D, toDisplayString(content.value), 1))
|
|
@@ -18312,7 +18417,7 @@ const _sfc_main$s = /* @__PURE__ */ defineComponent({
|
|
|
18312
18417
|
createElementVNode("label", {
|
|
18313
18418
|
for: unref(formatString)(_ctx.name, "pascal")
|
|
18314
18419
|
}, [
|
|
18315
|
-
createVNode(_sfc_main$
|
|
18420
|
+
createVNode(_sfc_main$Z, {
|
|
18316
18421
|
input: unref(formatString)(_ctx.name, "titleCase")
|
|
18317
18422
|
}, null, 8, ["input"])
|
|
18318
18423
|
], 8, _hoisted_2$y),
|
|
@@ -18353,7 +18458,7 @@ const _sfc_main$s = /* @__PURE__ */ defineComponent({
|
|
|
18353
18458
|
onInput: handleInput
|
|
18354
18459
|
}, null, 40, _hoisted_6$7)) : createCommentVNode("", true),
|
|
18355
18460
|
createElementVNode("div", null, [
|
|
18356
|
-
createVNode(_sfc_main$
|
|
18461
|
+
createVNode(_sfc_main$Z, { input: _ctx.errorMessage }, null, 8, ["input"])
|
|
18357
18462
|
])
|
|
18358
18463
|
]);
|
|
18359
18464
|
};
|
|
@@ -19203,7 +19308,7 @@ const _sfc_main$f = /* @__PURE__ */ defineComponent({
|
|
|
19203
19308
|
[vModelDynamic, inputVal.value]
|
|
19204
19309
|
])
|
|
19205
19310
|
], 8, _hoisted_2$n),
|
|
19206
|
-
createVNode(unref(_sfc_main$
|
|
19311
|
+
createVNode(unref(_sfc_main$X), {
|
|
19207
19312
|
onClick: showPassword,
|
|
19208
19313
|
icon: unref(seePassword) ? "visibility" : "visibility_off"
|
|
19209
19314
|
}, null, 8, ["icon"])
|
|
@@ -19352,7 +19457,7 @@ const _sfc_main$d = /* @__PURE__ */ defineComponent({
|
|
|
19352
19457
|
for: "label",
|
|
19353
19458
|
class: normalizeClass({ active: showList.value })
|
|
19354
19459
|
}, [
|
|
19355
|
-
createVNode(unref(_sfc_main$
|
|
19460
|
+
createVNode(unref(_sfc_main$Z), { input: _ctx.label }, null, 8, ["input"])
|
|
19356
19461
|
], 2)) : createCommentVNode("", true),
|
|
19357
19462
|
createElementVNode("div", {
|
|
19358
19463
|
class: normalizeClass(["custom-select", { "open-select": showList.value && _ctx.editMode }]),
|
|
@@ -19364,7 +19469,7 @@ const _sfc_main$d = /* @__PURE__ */ defineComponent({
|
|
|
19364
19469
|
class: normalizeClass(["input", { active: showList.value }]),
|
|
19365
19470
|
name: "select-input"
|
|
19366
19471
|
}, [
|
|
19367
|
-
createVNode(unref(_sfc_main$
|
|
19472
|
+
createVNode(unref(_sfc_main$Z), { input: displayValue.value }, null, 8, ["input"])
|
|
19368
19473
|
], 2),
|
|
19369
19474
|
(openBlock(), createBlock(Teleport, { to: "#app" }, [
|
|
19370
19475
|
createElementVNode("div", {
|
|
@@ -19377,7 +19482,7 @@ const _sfc_main$d = /* @__PURE__ */ defineComponent({
|
|
|
19377
19482
|
key: option2.value,
|
|
19378
19483
|
onClick: ($event) => handleSelect(option2)
|
|
19379
19484
|
}, [
|
|
19380
|
-
createVNode(unref(_sfc_main$
|
|
19485
|
+
createVNode(unref(_sfc_main$Z), {
|
|
19381
19486
|
input: option2.label
|
|
19382
19487
|
}, null, 8, ["input"])
|
|
19383
19488
|
], 8, _hoisted_2$l);
|
|
@@ -22262,12 +22367,12 @@ const _sfc_main$9 = /* @__PURE__ */ defineComponent({
|
|
|
22262
22367
|
[vModelText, unref(inputVal)]
|
|
22263
22368
|
])
|
|
22264
22369
|
], 8, _hoisted_2$h),
|
|
22265
|
-
_ctx.iconStart ? (openBlock(), createBlock(unref(_sfc_main$
|
|
22370
|
+
_ctx.iconStart ? (openBlock(), createBlock(unref(_sfc_main$X), {
|
|
22266
22371
|
key: 0,
|
|
22267
22372
|
class: "iconStart",
|
|
22268
22373
|
icon: _ctx.iconStart
|
|
22269
22374
|
}, null, 8, ["icon"])) : createCommentVNode("", true),
|
|
22270
|
-
_ctx.icon ? (openBlock(), createBlock(unref(_sfc_main$
|
|
22375
|
+
_ctx.icon ? (openBlock(), createBlock(unref(_sfc_main$X), {
|
|
22271
22376
|
key: 1,
|
|
22272
22377
|
icon: _ctx.icon
|
|
22273
22378
|
}, null, 8, ["icon"])) : createCommentVNode("", true),
|
|
@@ -22317,7 +22422,7 @@ const _sfc_main$8 = /* @__PURE__ */ defineComponent({
|
|
|
22317
22422
|
title: _ctx.description
|
|
22318
22423
|
}, [
|
|
22319
22424
|
_ctx.label ? (openBlock(), createElementBlock("label", _hoisted_2$g, [
|
|
22320
|
-
createVNode(unref(_sfc_main$
|
|
22425
|
+
createVNode(unref(_sfc_main$Z), { input: _ctx.label }, null, 8, ["input"])
|
|
22321
22426
|
])) : createCommentVNode("", true),
|
|
22322
22427
|
_ctx.showCharacterLimit ? (openBlock(), createElementBlock("span", _hoisted_3$e, toDisplayString((_a2 = _ctx.modelValue) == null ? void 0 : _a2.length) + " " + toDisplayString(((_b = _ctx.nativeInputAttrs) == null ? void 0 : _b.maxlength) ? `/${_ctx.nativeInputAttrs.maxlength}` : ""), 1)) : createCommentVNode("", true),
|
|
22323
22428
|
createElementVNode("textarea", mergeProps({
|
|
@@ -38652,6 +38757,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
|
|
|
38652
38757
|
const MsgTemplate = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-7031e613"]]);
|
|
38653
38758
|
export {
|
|
38654
38759
|
AddressInput,
|
|
38760
|
+
_sfc_main$r as BagelForm,
|
|
38655
38761
|
BagelVue,
|
|
38656
38762
|
BankDetailsInput,
|
|
38657
38763
|
BarChart,
|
|
@@ -38681,18 +38787,19 @@ export {
|
|
|
38681
38787
|
_sfc_main$j as IntInput,
|
|
38682
38788
|
_sfc_main$u as ItemRef,
|
|
38683
38789
|
JSONInput,
|
|
38684
|
-
_sfc_main$
|
|
38790
|
+
_sfc_main$Z as LangText,
|
|
38685
38791
|
_sfc_main$1 as Lineart,
|
|
38686
38792
|
LinkField,
|
|
38687
38793
|
_sfc_main$Q as ListItem,
|
|
38688
38794
|
_sfc_main$R as ListView,
|
|
38689
|
-
_sfc_main$
|
|
38795
|
+
_sfc_main$X as MaterialIcon,
|
|
38690
38796
|
MiscFieldsInput,
|
|
38691
|
-
_sfc_main$
|
|
38797
|
+
_sfc_main$U as Modal,
|
|
38798
|
+
ModalBglForm,
|
|
38692
38799
|
ModalForm,
|
|
38693
38800
|
ModalPlugin,
|
|
38694
38801
|
MsgTemplate,
|
|
38695
|
-
_sfc_main$
|
|
38802
|
+
_sfc_main$W as NavBar,
|
|
38696
38803
|
_sfc_main$N as PageTitle,
|
|
38697
38804
|
Password,
|
|
38698
38805
|
PasswordInput,
|
|
@@ -38700,7 +38807,7 @@ export {
|
|
|
38700
38807
|
PersonPreviewInput,
|
|
38701
38808
|
_sfc_main$s as PlainInputField,
|
|
38702
38809
|
PlainText,
|
|
38703
|
-
_sfc_main$
|
|
38810
|
+
_sfc_main$Y as RTXEditor,
|
|
38704
38811
|
RadioPillsInput,
|
|
38705
38812
|
ReadOnlyInput,
|
|
38706
38813
|
RichTextEditor,
|
package/dist/plugins/modal.d.ts
CHANGED
|
@@ -2,6 +2,7 @@ import { InjectionKey } from 'vue';
|
|
|
2
2
|
import type { Plugin } from 'vue';
|
|
3
3
|
import type { BtnOptions } from '..';
|
|
4
4
|
import type { FormKitSchemaDefinition } from '@formkit/core';
|
|
5
|
+
import { BglFormSchemaT } from 'dist/types';
|
|
5
6
|
interface ModalOptions {
|
|
6
7
|
title?: string;
|
|
7
8
|
dismissable?: boolean;
|
|
@@ -14,10 +15,11 @@ interface ModalFormOptions extends ModalOptions {
|
|
|
14
15
|
'onUpdate:modelValue'?: (val: any) => void;
|
|
15
16
|
onSubmit: (val: any) => void;
|
|
16
17
|
onDelete?: (id: string) => void;
|
|
17
|
-
schema: FormKitSchemaDefinition;
|
|
18
|
+
schema: FormKitSchemaDefinition | BglFormSchemaT;
|
|
18
19
|
}
|
|
19
20
|
interface ModalApi {
|
|
20
21
|
showModal: (options: ModalOptions, slots?: Record<string, any>) => void;
|
|
22
|
+
showModalForm: (options: ModalFormOptions, slots?: Record<string, any>) => void;
|
|
21
23
|
modalForm: (options: ModalFormOptions, slots?: Record<string, any>) => void;
|
|
22
24
|
hideModal: (index?: number) => void;
|
|
23
25
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"modal.d.ts","sourceRoot":"","sources":["../../src/plugins/modal.ts"],"names":[],"mappings":"AAAA,OAAO,EACH,YAAY,EACf,MAAM,KAAK,CAAC;AACb,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,KAAK,CAAC;AAClC,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,eAAe,CAAC;AAEhD,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,eAAe,CAAC;
|
|
1
|
+
{"version":3,"file":"modal.d.ts","sourceRoot":"","sources":["../../src/plugins/modal.ts"],"names":[],"mappings":"AAAA,OAAO,EACH,YAAY,EACf,MAAM,KAAK,CAAC;AACb,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,KAAK,CAAC;AAClC,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,eAAe,CAAC;AAEhD,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,eAAe,CAAC;AAC7D,OAAO,EAAE,cAAc,EAAE,MAAM,YAAY,CAAC;AAE5C,UAAU,YAAY;IACrB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,IAAI,CAAC,EAAE,OAAO,CAAC;IACf,OAAO,CAAC,EAAE,UAAU,EAAE,CAAC;IACvB,KAAK,CAAC,EAAE,MAAM,CAAC;CACf;AAED,UAAU,gBAAiB,SAAQ,YAAY;IAC9C,UAAU,CAAC,EAAE,GAAG,CAAC;IAEjB,qBAAqB,CAAC,EAAE,CAAC,GAAG,EAAE,GAAG,KAAK,IAAI,CAAC;IAE3C,QAAQ,EAAE,CAAC,GAAG,EAAE,GAAG,KAAK,IAAI,CAAC;IAE7B,QAAQ,CAAC,EAAE,CAAC,EAAE,EAAE,MAAM,KAAK,IAAI,CAAC;IAChC,MAAM,EAAE,uBAAuB,GAAG,cAAc,CAAC;CACjD;AAED,UAAU,QAAQ;IAEjB,SAAS,EAAE,CAAC,OAAO,EAAE,YAAY,EAAE,KAAK,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,KAAK,IAAI,CAAC;IAExE,aAAa,EAAE,CAAC,OAAO,EAAE,gBAAgB,EAAE,KAAK,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,KAAK,IAAI,CAAC;IAEhF,SAAS,EAAE,CAAC,OAAO,EAAE,gBAAgB,EAAE,KAAK,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,KAAK,IAAI,CAAC;IAE5E,SAAS,EAAE,CAAC,KAAK,CAAC,EAAE,MAAM,KAAK,IAAI,CAAC;CAEpC;AAED,eAAO,MAAM,WAAW,EAAE,YAAY,CAAC,QAAQ,CAAmB,CAAC;AAEnE,eAAO,MAAM,QAAQ,QAAO,QAI3B,CAAC;AAQF,eAAO,MAAM,WAAW,EAAE,MAuDzB,CAAC"}
|
package/dist/style.css
CHANGED
|
@@ -517,6 +517,15 @@
|
|
|
517
517
|
inset-inline-end: 5%;
|
|
518
518
|
}
|
|
519
519
|
}
|
|
520
|
+
.modal-title[data-v-93c9eab1] {
|
|
521
|
+
margin-top: 0.5rem;
|
|
522
|
+
}
|
|
523
|
+
@media screen and (max-width: 910px) {
|
|
524
|
+
.modal-title[data-v-93c9eab1] {
|
|
525
|
+
margin-top: 1rem;
|
|
526
|
+
}
|
|
527
|
+
}
|
|
528
|
+
|
|
520
529
|
.dropdown {
|
|
521
530
|
position: relative;
|
|
522
531
|
font-size: calc(var(--input-font-size) * 1.3);
|
|
@@ -11,6 +11,8 @@ export type Field<T = Record<string, any>> = {
|
|
|
11
11
|
children?: Field<T>[];
|
|
12
12
|
attrs?: Attributes<T>;
|
|
13
13
|
required?: boolean;
|
|
14
|
+
hint?: string;
|
|
15
|
+
'v-if'?: string | boolean | ((val: any, row: T) => boolean);
|
|
14
16
|
};
|
|
15
17
|
export interface SelectBagelField {
|
|
16
18
|
inputType: 'SelectField';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"BagelForm.d.ts","sourceRoot":"","sources":["../../src/types/BagelForm.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,cAAc,GAAG,MAAM,GAAG,MAAM,GAAG,OAAO,GAAG,IAAI,GAAG,SAAS,GAAG,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;AAEhG,MAAM,MAAM,WAAW,CAAC,CAAC,GAAG,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,IAAI,CAAC,KAAK,EAAE,GAAG,EAAE,GAAG,EAAE,CAAC,KAAK,cAAc,CAAC;AAE1F,MAAM,WAAW,UAAU,CAAC,CAAC,GAAG,GAAG;IACjC,CAAC,GAAG,EAAE,MAAM,GAAG,cAAc,GAAG,WAAW,CAAC,CAAC,CAAC,CAAA;CAC/C;AAED,MAAM,MAAM,KAAK,CAAC,CAAC,GAAG,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,IAAI;IAC3C,GAAG,CAAC,EAAE,GAAG,CAAC;IACV,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,QAAQ,CAAC,EAAE,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC;IACtB,KAAK,CAAC,EAAE,UAAU,CAAC,CAAC,CAAC,CAAC;IACtB,QAAQ,CAAC,EAAE,OAAO,CAAC;
|
|
1
|
+
{"version":3,"file":"BagelForm.d.ts","sourceRoot":"","sources":["../../src/types/BagelForm.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,cAAc,GAAG,MAAM,GAAG,MAAM,GAAG,OAAO,GAAG,IAAI,GAAG,SAAS,GAAG,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;AAEhG,MAAM,MAAM,WAAW,CAAC,CAAC,GAAG,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,IAAI,CAAC,KAAK,EAAE,GAAG,EAAE,GAAG,EAAE,CAAC,KAAK,cAAc,CAAC;AAE1F,MAAM,WAAW,UAAU,CAAC,CAAC,GAAG,GAAG;IACjC,CAAC,GAAG,EAAE,MAAM,GAAG,cAAc,GAAG,WAAW,CAAC,CAAC,CAAC,CAAA;CAC/C;AAED,MAAM,MAAM,KAAK,CAAC,CAAC,GAAG,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,IAAI;IAC3C,GAAG,CAAC,EAAE,GAAG,CAAC;IACV,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,QAAQ,CAAC,EAAE,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC;IACtB,KAAK,CAAC,EAAE,UAAU,CAAC,CAAC,CAAC,CAAC;IACtB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,MAAM,CAAC,EAAE,MAAM,GAAG,OAAO,GAAG,CAAC,CAAC,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,CAAC,KAAK,OAAO,CAAC,CAAC;CAC7D,CAAA;AAED,MAAM,WAAW,gBAAgB;IAChC,SAAS,EAAE,aAAa,CAAC;IACzB,OAAO,EAAE,MAAM,GAAG;QAAE,KAAK,EAAE,MAAM,CAAC;QAAC,KAAK,EAAE,MAAM,GAAG,MAAM,CAAA;KAAE,EAAE,CAAC;CAC9D;AAED,MAAM,MAAM,cAAc,CAAC,CAAC,GAAG,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,IAAI,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"BtnOptions.d.ts","sourceRoot":"","sources":["../../src/types/BtnOptions.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,aAAa,EAAE,MAAM,GAAG,CAAC;AAElD,MAAM,WAAW,UAAU;IAC1B,OAAO,CAAC,EAAE,MAAM,IAAI,CAAC;IACrB,KAAK,CAAC,EAAC,SAAS,CAAC;IACjB,KAAK,CAAC,EAAC,SAAS,CAAC;IACjB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,IAAI,CAAC,EAAE,aAAa,CAAC;IACrB,IAAI,CAAC,EAAE,OAAO,CAAC;IACf,IAAI,CAAC,EAAE,OAAO,CAAC;IACf,IAAI,CAAC,EAAE,QAAQ,GAAG,QAAQ,GAAG,OAAO,CAAC;IACrC,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,KAAK,CAAC,EAAE,MAAM,CAAC;
|
|
1
|
+
{"version":3,"file":"BtnOptions.d.ts","sourceRoot":"","sources":["../../src/types/BtnOptions.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,aAAa,EAAE,MAAM,GAAG,CAAC;AAElD,MAAM,WAAW,UAAU;IAC1B,OAAO,CAAC,EAAE,MAAM,IAAI,CAAC;IACrB,KAAK,CAAC,EAAC,SAAS,CAAC;IACjB,KAAK,CAAC,EAAC,SAAS,CAAC;IACjB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,IAAI,CAAC,EAAE,aAAa,CAAC;IACrB,IAAI,CAAC,EAAE,OAAO,CAAC;IACf,IAAI,CAAC,EAAE,OAAO,CAAC;IACf,IAAI,CAAC,EAAE,QAAQ,GAAG,QAAQ,GAAG,OAAO,CAAC;IACrC,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,MAAM,CAAC,EAAE,OAAO,CAAC;CACjB"}
|