@bagelink/vue 0.0.400 → 0.0.407
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/BglVideo.vue.d.ts.map +1 -1
- package/dist/components/Drop.vue.d.ts +34 -0
- package/dist/components/Drop.vue.d.ts.map +1 -0
- package/dist/components/FileUploader.vue.d.ts +60 -0
- package/dist/components/FileUploader.vue.d.ts.map +1 -0
- package/dist/components/ModalConfirm.vue.d.ts +24 -0
- package/dist/components/ModalConfirm.vue.d.ts.map +1 -0
- package/dist/components/ModalForm.vue.d.ts +10 -6
- package/dist/components/ModalForm.vue.d.ts.map +1 -1
- package/dist/components/form/ItemRef.vue.d.ts +1 -0
- package/dist/components/form/ItemRef.vue.d.ts.map +1 -1
- package/dist/components/form/inputs/RichText.vue.d.ts.map +1 -1
- package/dist/components/form/inputs/SelectField.vue.d.ts +1 -4
- package/dist/components/form/inputs/SelectField.vue.d.ts.map +1 -1
- package/dist/components/form/inputs/SelectInput.vue.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 +147 -91
- package/dist/index.mjs +147 -91
- package/dist/plugins/modal.d.ts +14 -2
- package/dist/plugins/modal.d.ts.map +1 -1
- package/dist/style.css +69 -26
- package/package.json +1 -1
- package/src/components/BglVideo.vue +8 -4
- package/src/components/ModalConfirm.vue +26 -0
- package/src/components/ModalForm.vue +15 -12
- package/src/components/form/inputs/RichText.vue +59 -33
- package/src/components/form/inputs/SelectInput.vue +5 -4
- package/src/components/index.ts +1 -0
- package/src/plugins/modal.ts +26 -4
- package/src/styles/layout.css +9 -0
- package/src/styles/mobilLayout.css +11 -0
- package/dist/components/Popover.vue.d.ts +0 -10
- package/dist/components/Popover.vue.d.ts.map +0 -1
- package/dist/types/materialIcon.d.ts +0 -2
- package/dist/types/materialIcon.d.ts.map +0 -1
package/dist/index.cjs
CHANGED
|
@@ -4720,6 +4720,8 @@ class Bagel {
|
|
|
4720
4720
|
__publicField(this, "onError");
|
|
4721
4721
|
__publicField(this, "read_table", null);
|
|
4722
4722
|
__publicField(this, "auth", new BagelAuth(this));
|
|
4723
|
+
if (!this.host)
|
|
4724
|
+
throw new Error("you probably need to set VITE_BAGEL_BASE_URL in the .env file");
|
|
4723
4725
|
this.host = host.replace(/\/$/, "");
|
|
4724
4726
|
axios.defaults.baseURL = this.host;
|
|
4725
4727
|
this.onError = onError;
|
|
@@ -4857,6 +4859,15 @@ const ModalPlugin = {
|
|
|
4857
4859
|
const hideModal = (index2) => {
|
|
4858
4860
|
modalStack.value.splice(index2, 1);
|
|
4859
4861
|
};
|
|
4862
|
+
const modalConfirm = (options) => new Promise((resolve) => {
|
|
4863
|
+
if (typeof options === "string")
|
|
4864
|
+
options = { title: options, message: "" };
|
|
4865
|
+
modalStack.value.push({
|
|
4866
|
+
modalOptions: { ...options, resolve },
|
|
4867
|
+
modalType: "confirm",
|
|
4868
|
+
componentSlots: {}
|
|
4869
|
+
});
|
|
4870
|
+
});
|
|
4860
4871
|
const showModal = (modalType, options, slots = {}) => {
|
|
4861
4872
|
modalStack.value.push({
|
|
4862
4873
|
modalOptions: options,
|
|
@@ -4870,6 +4881,7 @@ const ModalPlugin = {
|
|
|
4870
4881
|
app.provide(ModalSymbol, {
|
|
4871
4882
|
showModal: (options, slots) => showModal("modal", options, slots),
|
|
4872
4883
|
showModalForm: (options, slots) => showModal("modalForm", options, slots),
|
|
4884
|
+
confirm: (userOptions) => modalConfirm(userOptions),
|
|
4873
4885
|
hideModal: (index2 = modalStack.value.length - 1) => hideModal(index2)
|
|
4874
4886
|
// modalOptions,
|
|
4875
4887
|
});
|
|
@@ -4880,7 +4892,9 @@ const ModalPlugin = {
|
|
|
4880
4892
|
const props2 = { ...modal.modalOptions, visible: true, "onUpdate:visible": () => hideModal(index2) };
|
|
4881
4893
|
if (modal.modalType === "modalForm")
|
|
4882
4894
|
return vue.h(ModalForm, props2, modal.componentSlots);
|
|
4883
|
-
|
|
4895
|
+
if (modal.modalType === "confirm")
|
|
4896
|
+
return vue.h(_sfc_main$n, props2, {});
|
|
4897
|
+
return vue.h(_sfc_main$F, props2, modal.componentSlots);
|
|
4884
4898
|
});
|
|
4885
4899
|
}
|
|
4886
4900
|
});
|
|
@@ -5019,7 +5033,7 @@ const iffer = (field, itemData) => {
|
|
|
5019
5033
|
return true;
|
|
5020
5034
|
};
|
|
5021
5035
|
const denullify = (itemData, fieldID) => fieldID && itemData ? itemData[fieldID] : null;
|
|
5022
|
-
const _sfc_main$
|
|
5036
|
+
const _sfc_main$I = /* @__PURE__ */ vue.defineComponent({
|
|
5023
5037
|
__name: "MaterialIcon",
|
|
5024
5038
|
props: {
|
|
5025
5039
|
icon: {},
|
|
@@ -5042,7 +5056,7 @@ const _hoisted_3$l = { class: "nav-links-wrapper" };
|
|
|
5042
5056
|
const _hoisted_4$e = { class: "tooltip" };
|
|
5043
5057
|
const _hoisted_5$b = { class: "bot-buttons-wrapper" };
|
|
5044
5058
|
const _hoisted_6$7 = { class: "tooltip" };
|
|
5045
|
-
const _sfc_main$
|
|
5059
|
+
const _sfc_main$H = /* @__PURE__ */ vue.defineComponent({
|
|
5046
5060
|
__name: "NavBar",
|
|
5047
5061
|
props: {
|
|
5048
5062
|
footerLinks: { default: () => [] },
|
|
@@ -5066,7 +5080,7 @@ const _sfc_main$G = /* @__PURE__ */ vue.defineComponent({
|
|
|
5066
5080
|
"aria-label": "Toggle Navigation",
|
|
5067
5081
|
tabindex: "0"
|
|
5068
5082
|
}, [
|
|
5069
|
-
vue.createVNode(vue.unref(_sfc_main$
|
|
5083
|
+
vue.createVNode(vue.unref(_sfc_main$I), {
|
|
5070
5084
|
icon: "chevron_right",
|
|
5071
5085
|
class: "top-arrow"
|
|
5072
5086
|
})
|
|
@@ -5085,7 +5099,7 @@ const _sfc_main$G = /* @__PURE__ */ vue.defineComponent({
|
|
|
5085
5099
|
}
|
|
5086
5100
|
}, {
|
|
5087
5101
|
default: vue.withCtx(() => [
|
|
5088
|
-
vue.createVNode(vue.unref(_sfc_main$
|
|
5102
|
+
vue.createVNode(vue.unref(_sfc_main$I), {
|
|
5089
5103
|
icon: link.icon
|
|
5090
5104
|
}, null, 8, ["icon"]),
|
|
5091
5105
|
vue.createElementVNode("div", _hoisted_4$e, vue.toDisplayString(link.label), 1)
|
|
@@ -5107,7 +5121,7 @@ const _sfc_main$G = /* @__PURE__ */ vue.defineComponent({
|
|
|
5107
5121
|
key: link.label
|
|
5108
5122
|
}, {
|
|
5109
5123
|
default: vue.withCtx(() => [
|
|
5110
|
-
vue.createVNode(vue.unref(_sfc_main$
|
|
5124
|
+
vue.createVNode(vue.unref(_sfc_main$I), {
|
|
5111
5125
|
icon: link.icon
|
|
5112
5126
|
}, null, 8, ["icon"]),
|
|
5113
5127
|
vue.createElementVNode("div", _hoisted_6$7, vue.toDisplayString(link.label), 1)
|
|
@@ -5129,7 +5143,7 @@ const _export_sfc = (sfc, props2) => {
|
|
|
5129
5143
|
}
|
|
5130
5144
|
return target;
|
|
5131
5145
|
};
|
|
5132
|
-
const NavBar = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
5146
|
+
const NavBar = /* @__PURE__ */ _export_sfc(_sfc_main$H, [["__scopeId", "data-v-727b754a"]]);
|
|
5133
5147
|
const _hoisted_1$D = {
|
|
5134
5148
|
key: 0,
|
|
5135
5149
|
class: "loading"
|
|
@@ -5138,7 +5152,7 @@ const _hoisted_2$w = {
|
|
|
5138
5152
|
key: 1,
|
|
5139
5153
|
class: "bgl_btn-flex"
|
|
5140
5154
|
};
|
|
5141
|
-
const _sfc_main$
|
|
5155
|
+
const _sfc_main$G = /* @__PURE__ */ vue.defineComponent({
|
|
5142
5156
|
__name: "Btn",
|
|
5143
5157
|
props: {
|
|
5144
5158
|
disabled: { type: Boolean, default: false },
|
|
@@ -5226,7 +5240,7 @@ const _sfc_main$F = /* @__PURE__ */ vue.defineComponent({
|
|
|
5226
5240
|
}, {
|
|
5227
5241
|
default: vue.withCtx(() => [
|
|
5228
5242
|
_ctx.loading ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_1$D)) : (vue.openBlock(), vue.createElementBlock("div", _hoisted_2$w, [
|
|
5229
|
-
_ctx.icon ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$
|
|
5243
|
+
_ctx.icon ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$I), {
|
|
5230
5244
|
key: 0,
|
|
5231
5245
|
icon: _ctx.icon
|
|
5232
5246
|
}, null, 8, ["icon"])) : vue.createCommentVNode("", true),
|
|
@@ -5234,7 +5248,7 @@ const _sfc_main$F = /* @__PURE__ */ vue.defineComponent({
|
|
|
5234
5248
|
!vue.unref(slots)["default"] && _ctx.value ? (vue.openBlock(), vue.createElementBlock(vue.Fragment, { key: 1 }, [
|
|
5235
5249
|
vue.createTextVNode(vue.toDisplayString(_ctx.value), 1)
|
|
5236
5250
|
], 64)) : vue.createCommentVNode("", true),
|
|
5237
|
-
props2["icon.end"] ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$
|
|
5251
|
+
props2["icon.end"] ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$I), {
|
|
5238
5252
|
key: 2,
|
|
5239
5253
|
icon: props2["icon.end"]
|
|
5240
5254
|
}, null, 8, ["icon"])) : vue.createCommentVNode("", true)
|
|
@@ -5245,10 +5259,10 @@ const _sfc_main$F = /* @__PURE__ */ vue.defineComponent({
|
|
|
5245
5259
|
};
|
|
5246
5260
|
}
|
|
5247
5261
|
});
|
|
5248
|
-
const Btn = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
5262
|
+
const Btn = /* @__PURE__ */ _export_sfc(_sfc_main$G, [["__scopeId", "data-v-d09a83c5"]]);
|
|
5249
5263
|
const _hoisted_1$C = { class: "tool-bar" };
|
|
5250
5264
|
const _hoisted_2$v = { class: "modal-footer mt-3" };
|
|
5251
|
-
const _sfc_main$
|
|
5265
|
+
const _sfc_main$F = /* @__PURE__ */ vue.defineComponent({
|
|
5252
5266
|
__name: "Modal",
|
|
5253
5267
|
props: {
|
|
5254
5268
|
side: { type: Boolean },
|
|
@@ -5302,7 +5316,7 @@ const _sfc_main$E = /* @__PURE__ */ vue.defineComponent({
|
|
|
5302
5316
|
onClick: _cache[1] || (_cache[1] = () => _ctx.dismissable ? closeModal() : ""),
|
|
5303
5317
|
onKeydown: vue.withKeys(closeModal, ["esc"])
|
|
5304
5318
|
}, [
|
|
5305
|
-
vue.createVNode(vue.unref(_sfc_main$
|
|
5319
|
+
vue.createVNode(vue.unref(_sfc_main$v), {
|
|
5306
5320
|
class: "modal",
|
|
5307
5321
|
onClick: _cache[0] || (_cache[0] = vue.withModifiers(() => {
|
|
5308
5322
|
}, ["stop"])),
|
|
@@ -5317,7 +5331,7 @@ const _sfc_main$E = /* @__PURE__ */ vue.defineComponent({
|
|
|
5317
5331
|
icon: "close",
|
|
5318
5332
|
onClick: closeModal
|
|
5319
5333
|
}, null, 8, ["style"]),
|
|
5320
|
-
_ctx.title ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$
|
|
5334
|
+
_ctx.title ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$t), {
|
|
5321
5335
|
key: 0,
|
|
5322
5336
|
class: "modal-title",
|
|
5323
5337
|
tag: "h3",
|
|
@@ -5342,7 +5356,7 @@ const _sfc_main$E = /* @__PURE__ */ vue.defineComponent({
|
|
|
5342
5356
|
};
|
|
5343
5357
|
}
|
|
5344
5358
|
});
|
|
5345
|
-
const _sfc_main$
|
|
5359
|
+
const _sfc_main$E = /* @__PURE__ */ vue.defineComponent({
|
|
5346
5360
|
__name: "ModalForm",
|
|
5347
5361
|
props: /* @__PURE__ */ vue.mergeModels({
|
|
5348
5362
|
side: { type: Boolean },
|
|
@@ -5353,7 +5367,7 @@ const _sfc_main$D = /* @__PURE__ */ vue.defineComponent({
|
|
|
5353
5367
|
schema: { type: Function },
|
|
5354
5368
|
onSubmit: { type: Function },
|
|
5355
5369
|
onDelete: { type: Function },
|
|
5356
|
-
|
|
5370
|
+
visible: { type: Boolean },
|
|
5357
5371
|
onError: { type: Function },
|
|
5358
5372
|
modelValue: {}
|
|
5359
5373
|
}, {
|
|
@@ -5362,10 +5376,11 @@ const _sfc_main$D = /* @__PURE__ */ vue.defineComponent({
|
|
|
5362
5376
|
},
|
|
5363
5377
|
"modelModifiers": {}
|
|
5364
5378
|
}),
|
|
5365
|
-
emits: ["update:modelValue"],
|
|
5366
|
-
setup(__props, { expose: __expose }) {
|
|
5379
|
+
emits: /* @__PURE__ */ vue.mergeModels(["update:visible"], ["update:modelValue"]),
|
|
5380
|
+
setup(__props, { expose: __expose, emit: __emit }) {
|
|
5367
5381
|
const bagel = useBagel();
|
|
5368
5382
|
const props2 = __props;
|
|
5383
|
+
const emit2 = __emit;
|
|
5369
5384
|
const modal = vue.ref();
|
|
5370
5385
|
const computedFormSchema = vue.computed(() => {
|
|
5371
5386
|
if (typeof props2.schema === "function")
|
|
@@ -5402,12 +5417,13 @@ const _sfc_main$D = /* @__PURE__ */ vue.defineComponent({
|
|
|
5402
5417
|
}
|
|
5403
5418
|
__expose({ setFormValues });
|
|
5404
5419
|
return (_ctx, _cache) => {
|
|
5405
|
-
return vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$
|
|
5406
|
-
"
|
|
5420
|
+
return vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$F), {
|
|
5421
|
+
"onUpdate:visible": _cache[1] || (_cache[1] = ($event) => emit2("update:visible", $event)),
|
|
5407
5422
|
side: _ctx.side,
|
|
5408
5423
|
ref_key: "modal",
|
|
5409
5424
|
ref: modal,
|
|
5410
5425
|
width: _ctx.width,
|
|
5426
|
+
visible: _ctx.visible,
|
|
5411
5427
|
dismissable: _ctx.dismissable,
|
|
5412
5428
|
title: _ctx.title
|
|
5413
5429
|
}, vue.createSlots({
|
|
@@ -5450,16 +5466,16 @@ const _sfc_main$D = /* @__PURE__ */ vue.defineComponent({
|
|
|
5450
5466
|
]),
|
|
5451
5467
|
key: "0"
|
|
5452
5468
|
} : void 0
|
|
5453
|
-
]), 1032, ["
|
|
5469
|
+
]), 1032, ["side", "width", "visible", "dismissable", "title"]);
|
|
5454
5470
|
};
|
|
5455
5471
|
}
|
|
5456
5472
|
});
|
|
5457
|
-
const ModalForm = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
5473
|
+
const ModalForm = /* @__PURE__ */ _export_sfc(_sfc_main$E, [["__scopeId", "data-v-04d84995"]]);
|
|
5458
5474
|
const _hoisted_1$B = { class: "accordion-item" };
|
|
5459
5475
|
const _hoisted_2$u = ["aria-expanded", "aria-controls"];
|
|
5460
5476
|
const _hoisted_3$k = { class: "accordion-label" };
|
|
5461
5477
|
const _hoisted_4$d = ["id", "aria-hidden"];
|
|
5462
|
-
const _sfc_main$
|
|
5478
|
+
const _sfc_main$D = /* @__PURE__ */ vue.defineComponent({
|
|
5463
5479
|
__name: "AccordionItem",
|
|
5464
5480
|
props: {
|
|
5465
5481
|
label: {},
|
|
@@ -5494,7 +5510,7 @@ const _sfc_main$C = /* @__PURE__ */ vue.defineComponent({
|
|
|
5494
5510
|
vue.createElementVNode("div", {
|
|
5495
5511
|
class: vue.normalizeClass(["accordion-icon", { open: vue.unref(open) }])
|
|
5496
5512
|
}, [
|
|
5497
|
-
vue.createVNode(vue.unref(_sfc_main$
|
|
5513
|
+
vue.createVNode(vue.unref(_sfc_main$I), { icon: "expand_more" })
|
|
5498
5514
|
], 2)
|
|
5499
5515
|
], 8, _hoisted_2$u),
|
|
5500
5516
|
vue.createVNode(vue.Transition, { name: "expand" }, {
|
|
@@ -5514,11 +5530,11 @@ const _sfc_main$C = /* @__PURE__ */ vue.defineComponent({
|
|
|
5514
5530
|
};
|
|
5515
5531
|
}
|
|
5516
5532
|
});
|
|
5517
|
-
const AccordionItem = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
5533
|
+
const AccordionItem = /* @__PURE__ */ _export_sfc(_sfc_main$D, [["__scopeId", "data-v-bf74738b"]]);
|
|
5518
5534
|
const _hoisted_1$A = { class: "list-wrap bgl_card thin grid overflow-hidden h-100 p-0" };
|
|
5519
5535
|
const _hoisted_2$t = { class: "p-1" };
|
|
5520
5536
|
const _hoisted_3$j = { class: "list-content auto-flow-rows align-items-start overflow-y h-100" };
|
|
5521
|
-
const _sfc_main$
|
|
5537
|
+
const _sfc_main$C = /* @__PURE__ */ vue.defineComponent({
|
|
5522
5538
|
__name: "ListView",
|
|
5523
5539
|
setup(__props) {
|
|
5524
5540
|
return (_ctx, _cache) => {
|
|
@@ -5535,7 +5551,7 @@ const _sfc_main$B = /* @__PURE__ */ vue.defineComponent({
|
|
|
5535
5551
|
});
|
|
5536
5552
|
const _hoisted_1$z = { class: "txt16 no-margin ellipsis" };
|
|
5537
5553
|
const _hoisted_2$s = { class: "txt14 no-margin txt-gray ellipsis" };
|
|
5538
|
-
const _sfc_main$
|
|
5554
|
+
const _sfc_main$B = /* @__PURE__ */ vue.defineComponent({
|
|
5539
5555
|
__name: "ListItem",
|
|
5540
5556
|
props: {
|
|
5541
5557
|
src: {},
|
|
@@ -5576,7 +5592,7 @@ const _sfc_main$A = /* @__PURE__ */ vue.defineComponent({
|
|
|
5576
5592
|
});
|
|
5577
5593
|
const _hoisted_1$y = { class: "page-top" };
|
|
5578
5594
|
const _hoisted_2$r = { class: "top-title" };
|
|
5579
|
-
const _sfc_main$
|
|
5595
|
+
const _sfc_main$A = /* @__PURE__ */ vue.defineComponent({
|
|
5580
5596
|
__name: "PageTitle",
|
|
5581
5597
|
props: {
|
|
5582
5598
|
value: {
|
|
@@ -5602,7 +5618,7 @@ const _hoisted_4$c = ["onClick"];
|
|
|
5602
5618
|
const _hoisted_5$a = { class: "flex" };
|
|
5603
5619
|
const _hoisted_6$6 = ["onClick"];
|
|
5604
5620
|
const _hoisted_7$2 = { key: 1 };
|
|
5605
|
-
const _sfc_main$
|
|
5621
|
+
const _sfc_main$z = /* @__PURE__ */ vue.defineComponent({
|
|
5606
5622
|
__name: "TableSchema",
|
|
5607
5623
|
props: {
|
|
5608
5624
|
data: {},
|
|
@@ -5650,7 +5666,7 @@ const _sfc_main$y = /* @__PURE__ */ vue.defineComponent({
|
|
|
5650
5666
|
vue.createElementVNode("div", {
|
|
5651
5667
|
class: vue.normalizeClass(["list-arrows", { sorted: vue.unref(sortField) === field.id }])
|
|
5652
5668
|
}, [
|
|
5653
|
-
vue.createVNode(vue.unref(_sfc_main$
|
|
5669
|
+
vue.createVNode(vue.unref(_sfc_main$I), {
|
|
5654
5670
|
class: vue.normalizeClass({ desc: vue.unref(sortDirection) === "DESC" }),
|
|
5655
5671
|
icon: "keyboard_arrow_up"
|
|
5656
5672
|
}, null, 8, ["class"])
|
|
@@ -5696,16 +5712,16 @@ const _sfc_main$y = /* @__PURE__ */ vue.defineComponent({
|
|
|
5696
5712
|
};
|
|
5697
5713
|
}
|
|
5698
5714
|
});
|
|
5699
|
-
const TableSchema = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
5700
|
-
const _sfc_main$
|
|
5715
|
+
const TableSchema = /* @__PURE__ */ _export_sfc(_sfc_main$z, [["__scopeId", "data-v-10808aad"]]);
|
|
5716
|
+
const _sfc_main$y = {};
|
|
5701
5717
|
const _hoisted_1$w = { class: "flex space-between" };
|
|
5702
5718
|
function _sfc_render$1(_ctx, _cache) {
|
|
5703
5719
|
return vue.openBlock(), vue.createElementBlock("div", _hoisted_1$w, [
|
|
5704
5720
|
vue.renderSlot(_ctx.$slots, "default")
|
|
5705
5721
|
]);
|
|
5706
5722
|
}
|
|
5707
|
-
const TopBar = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
5708
|
-
const _sfc_main$
|
|
5723
|
+
const TopBar = /* @__PURE__ */ _export_sfc(_sfc_main$y, [["render", _sfc_render$1]]);
|
|
5724
|
+
const _sfc_main$x = {};
|
|
5709
5725
|
function _sfc_render(_ctx, _cache) {
|
|
5710
5726
|
const _component_router_view = vue.resolveComponent("router-view");
|
|
5711
5727
|
return vue.openBlock(), vue.createBlock(_component_router_view, null, {
|
|
@@ -5727,7 +5743,7 @@ function _sfc_render(_ctx, _cache) {
|
|
|
5727
5743
|
_: 1
|
|
5728
5744
|
});
|
|
5729
5745
|
}
|
|
5730
|
-
const RouterWrapper = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
5746
|
+
const RouterWrapper = /* @__PURE__ */ _export_sfc(_sfc_main$x, [["render", _sfc_render]]);
|
|
5731
5747
|
const _hoisted_1$v = {
|
|
5732
5748
|
key: 0,
|
|
5733
5749
|
class: "data"
|
|
@@ -5740,7 +5756,7 @@ const _hoisted_3$h = { class: "key" };
|
|
|
5740
5756
|
const _hoisted_4$b = { key: 1 };
|
|
5741
5757
|
const _hoisted_5$9 = { class: "key" };
|
|
5742
5758
|
const _hoisted_6$5 = { class: "vlue" };
|
|
5743
|
-
const _sfc_main$
|
|
5759
|
+
const _sfc_main$w = /* @__PURE__ */ vue.defineComponent({
|
|
5744
5760
|
__name: "DataPreview",
|
|
5745
5761
|
props: /* @__PURE__ */ vue.mergeModels({
|
|
5746
5762
|
schema: {},
|
|
@@ -5755,7 +5771,7 @@ const _sfc_main$v = /* @__PURE__ */ vue.defineComponent({
|
|
|
5755
5771
|
return (_ctx, _cache) => {
|
|
5756
5772
|
var _a2;
|
|
5757
5773
|
return __props.data ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_1$v, [
|
|
5758
|
-
_ctx.title ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$
|
|
5774
|
+
_ctx.title ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$t), {
|
|
5759
5775
|
key: 0,
|
|
5760
5776
|
label: _ctx.title
|
|
5761
5777
|
}, null, 8, ["label"])) : vue.createCommentVNode("", true),
|
|
@@ -5789,12 +5805,12 @@ const _sfc_main$v = /* @__PURE__ */ vue.defineComponent({
|
|
|
5789
5805
|
};
|
|
5790
5806
|
}
|
|
5791
5807
|
});
|
|
5792
|
-
const DataPreview = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
5808
|
+
const DataPreview = /* @__PURE__ */ _export_sfc(_sfc_main$w, [["__scopeId", "data-v-bb2526f9"]]);
|
|
5793
5809
|
const _hoisted_1$u = {
|
|
5794
5810
|
key: 0,
|
|
5795
5811
|
class: "card_label"
|
|
5796
5812
|
};
|
|
5797
|
-
const _sfc_main$
|
|
5813
|
+
const _sfc_main$v = /* @__PURE__ */ vue.defineComponent({
|
|
5798
5814
|
__name: "Card",
|
|
5799
5815
|
props: {
|
|
5800
5816
|
label: {},
|
|
@@ -5824,7 +5840,7 @@ const _sfc_main$u = /* @__PURE__ */ vue.defineComponent({
|
|
|
5824
5840
|
}
|
|
5825
5841
|
});
|
|
5826
5842
|
const _hoisted_1$t = ["src", "alt"];
|
|
5827
|
-
const _sfc_main$
|
|
5843
|
+
const _sfc_main$u = /* @__PURE__ */ vue.defineComponent({
|
|
5828
5844
|
__name: "Avatar",
|
|
5829
5845
|
props: {
|
|
5830
5846
|
fallback: {},
|
|
@@ -5850,8 +5866,8 @@ const _sfc_main$t = /* @__PURE__ */ vue.defineComponent({
|
|
|
5850
5866
|
};
|
|
5851
5867
|
}
|
|
5852
5868
|
});
|
|
5853
|
-
const Avatar = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
5854
|
-
const _sfc_main$
|
|
5869
|
+
const Avatar = /* @__PURE__ */ _export_sfc(_sfc_main$u, [["__scopeId", "data-v-c38bc02a"]]);
|
|
5870
|
+
const _sfc_main$t = /* @__PURE__ */ vue.defineComponent({
|
|
5855
5871
|
__name: "Title",
|
|
5856
5872
|
props: {
|
|
5857
5873
|
value: {
|
|
@@ -5879,7 +5895,7 @@ const _sfc_main$s = /* @__PURE__ */ vue.defineComponent({
|
|
|
5879
5895
|
};
|
|
5880
5896
|
}
|
|
5881
5897
|
});
|
|
5882
|
-
const _sfc_main$
|
|
5898
|
+
const _sfc_main$s = /* @__PURE__ */ vue.defineComponent({
|
|
5883
5899
|
__name: "Accordion",
|
|
5884
5900
|
setup(__props) {
|
|
5885
5901
|
const state2 = vue.reactive({
|
|
@@ -5895,7 +5911,7 @@ const _sfc_main$r = /* @__PURE__ */ vue.defineComponent({
|
|
|
5895
5911
|
});
|
|
5896
5912
|
const _hoisted_1$s = ["dismissable"];
|
|
5897
5913
|
const _hoisted_2$o = { class: "m-0" };
|
|
5898
|
-
const _sfc_main$
|
|
5914
|
+
const _sfc_main$r = /* @__PURE__ */ vue.defineComponent({
|
|
5899
5915
|
__name: "Alert",
|
|
5900
5916
|
props: {
|
|
5901
5917
|
message: {},
|
|
@@ -5915,7 +5931,7 @@ const _sfc_main$q = /* @__PURE__ */ vue.defineComponent({
|
|
|
5915
5931
|
class: vue.normalizeClass(["alert", [_ctx.type]]),
|
|
5916
5932
|
dismissable: _ctx.dismissable
|
|
5917
5933
|
}, [
|
|
5918
|
-
vue.createVNode(vue.unref(_sfc_main$
|
|
5934
|
+
vue.createVNode(vue.unref(_sfc_main$I), {
|
|
5919
5935
|
class: "alert_icon",
|
|
5920
5936
|
icon: _ctx.type,
|
|
5921
5937
|
size: 2,
|
|
@@ -5933,8 +5949,8 @@ const _sfc_main$q = /* @__PURE__ */ vue.defineComponent({
|
|
|
5933
5949
|
};
|
|
5934
5950
|
}
|
|
5935
5951
|
});
|
|
5936
|
-
const Alert = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
5937
|
-
const _sfc_main$
|
|
5952
|
+
const Alert = /* @__PURE__ */ _export_sfc(_sfc_main$r, [["__scopeId", "data-v-4017e821"]]);
|
|
5953
|
+
const _sfc_main$q = /* @__PURE__ */ vue.defineComponent({
|
|
5938
5954
|
__name: "Badge",
|
|
5939
5955
|
props: {
|
|
5940
5956
|
color: {},
|
|
@@ -5949,13 +5965,13 @@ const _sfc_main$p = /* @__PURE__ */ vue.defineComponent({
|
|
|
5949
5965
|
return vue.openBlock(), vue.createElementBlock("div", {
|
|
5950
5966
|
class: vue.normalizeClass(["pill", [_ctx.color]])
|
|
5951
5967
|
}, [
|
|
5952
|
-
_ctx.icon ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$
|
|
5968
|
+
_ctx.icon ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$I), {
|
|
5953
5969
|
key: 0,
|
|
5954
5970
|
class: "inline",
|
|
5955
5971
|
icon: _ctx.icon
|
|
5956
5972
|
}, null, 8, ["icon"])) : vue.createCommentVNode("", true),
|
|
5957
5973
|
vue.createTextVNode(" " + vue.toDisplayString(_ctx.text) + " ", 1),
|
|
5958
|
-
props2["icon.end"] ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$
|
|
5974
|
+
props2["icon.end"] ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$I), {
|
|
5959
5975
|
key: 1,
|
|
5960
5976
|
class: "inline",
|
|
5961
5977
|
icon: props2["icon.end"]
|
|
@@ -5964,10 +5980,10 @@ const _sfc_main$p = /* @__PURE__ */ vue.defineComponent({
|
|
|
5964
5980
|
};
|
|
5965
5981
|
}
|
|
5966
5982
|
});
|
|
5967
|
-
const Badge = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
5983
|
+
const Badge = /* @__PURE__ */ _export_sfc(_sfc_main$q, [["__scopeId", "data-v-561f7a72"]]);
|
|
5968
5984
|
const _hoisted_1$r = ["src"];
|
|
5969
5985
|
const _hoisted_2$n = ["src", "autoplay", "muted", "loop", "controls"];
|
|
5970
|
-
const _sfc_main$
|
|
5986
|
+
const _sfc_main$p = /* @__PURE__ */ vue.defineComponent({
|
|
5971
5987
|
__name: "BglVideo",
|
|
5972
5988
|
props: {
|
|
5973
5989
|
src: {},
|
|
@@ -6035,13 +6051,13 @@ const _sfc_main$o = /* @__PURE__ */ vue.defineComponent({
|
|
|
6035
6051
|
};
|
|
6036
6052
|
}
|
|
6037
6053
|
});
|
|
6038
|
-
const BglVideo = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
6054
|
+
const BglVideo = /* @__PURE__ */ _export_sfc(_sfc_main$p, [["__scopeId", "data-v-b1ad7c32"]]);
|
|
6039
6055
|
const _hoisted_1$q = {
|
|
6040
6056
|
key: 0,
|
|
6041
6057
|
class: "blocker"
|
|
6042
6058
|
};
|
|
6043
6059
|
const _hoisted_2$m = { class: "Handlers" };
|
|
6044
|
-
const _sfc_main$
|
|
6060
|
+
const _sfc_main$o = /* @__PURE__ */ vue.defineComponent({
|
|
6045
6061
|
__name: "Carousel",
|
|
6046
6062
|
props: {
|
|
6047
6063
|
autoHeight: {
|
|
@@ -6215,7 +6231,48 @@ const _sfc_main$n = /* @__PURE__ */ vue.defineComponent({
|
|
|
6215
6231
|
};
|
|
6216
6232
|
}
|
|
6217
6233
|
});
|
|
6218
|
-
const Carousel = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
6234
|
+
const Carousel = /* @__PURE__ */ _export_sfc(_sfc_main$o, [["__scopeId", "data-v-068aa914"]]);
|
|
6235
|
+
const _sfc_main$n = /* @__PURE__ */ vue.defineComponent({
|
|
6236
|
+
__name: "ModalConfirm",
|
|
6237
|
+
props: {
|
|
6238
|
+
title: {},
|
|
6239
|
+
message: {},
|
|
6240
|
+
resolve: { type: Function }
|
|
6241
|
+
},
|
|
6242
|
+
emits: ["update:visible"],
|
|
6243
|
+
setup(__props, { emit: __emit }) {
|
|
6244
|
+
const props2 = __props;
|
|
6245
|
+
const emit2 = __emit;
|
|
6246
|
+
function select2(val) {
|
|
6247
|
+
props2.resolve(val);
|
|
6248
|
+
emit2("update:visible");
|
|
6249
|
+
}
|
|
6250
|
+
return (_ctx, _cache) => {
|
|
6251
|
+
return vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$F), {
|
|
6252
|
+
width: "380px",
|
|
6253
|
+
dismissable: false,
|
|
6254
|
+
title: _ctx.title
|
|
6255
|
+
}, {
|
|
6256
|
+
footer: vue.withCtx(() => [
|
|
6257
|
+
vue.createVNode(vue.unref(Btn), {
|
|
6258
|
+
onClick: _cache[0] || (_cache[0] = ($event) => select2(true)),
|
|
6259
|
+
color: "primary",
|
|
6260
|
+
value: "Confirm"
|
|
6261
|
+
}),
|
|
6262
|
+
vue.createVNode(vue.unref(Btn), {
|
|
6263
|
+
onClick: _cache[1] || (_cache[1] = ($event) => select2(false)),
|
|
6264
|
+
color: "red",
|
|
6265
|
+
value: "Cancel"
|
|
6266
|
+
})
|
|
6267
|
+
]),
|
|
6268
|
+
default: vue.withCtx(() => [
|
|
6269
|
+
vue.createTextVNode(vue.toDisplayString(_ctx.message) + " ", 1)
|
|
6270
|
+
]),
|
|
6271
|
+
_: 1
|
|
6272
|
+
}, 8, ["title"]);
|
|
6273
|
+
};
|
|
6274
|
+
}
|
|
6275
|
+
});
|
|
6219
6276
|
const _sfc_main$m = /* @__PURE__ */ vue.defineComponent({
|
|
6220
6277
|
__name: "BglForm",
|
|
6221
6278
|
props: {
|
|
@@ -6299,7 +6356,7 @@ const _sfc_main$m = /* @__PURE__ */ vue.defineComponent({
|
|
|
6299
6356
|
ref: form,
|
|
6300
6357
|
onSubmit: vue.withModifiers(runSubmit, ["prevent"])
|
|
6301
6358
|
}, [
|
|
6302
|
-
_ctx.label ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$
|
|
6359
|
+
_ctx.label ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$t), {
|
|
6303
6360
|
key: 0,
|
|
6304
6361
|
tag: "h4",
|
|
6305
6362
|
label: _ctx.label
|
|
@@ -15225,6 +15282,8 @@ const _sfc_main$h = /* @__PURE__ */ vue.defineComponent({
|
|
|
15225
15282
|
});
|
|
15226
15283
|
const emit2 = __emit;
|
|
15227
15284
|
const getLabel = (option2) => {
|
|
15285
|
+
if (!option2)
|
|
15286
|
+
return "";
|
|
15228
15287
|
if (typeof option2 === "string")
|
|
15229
15288
|
return option2;
|
|
15230
15289
|
if (typeof option2 === "number")
|
|
@@ -15232,6 +15291,8 @@ const _sfc_main$h = /* @__PURE__ */ vue.defineComponent({
|
|
|
15232
15291
|
return option2.label;
|
|
15233
15292
|
};
|
|
15234
15293
|
const getValue = (option2) => {
|
|
15294
|
+
if (!option2)
|
|
15295
|
+
return "";
|
|
15235
15296
|
if (typeof option2 === "string")
|
|
15236
15297
|
return option2;
|
|
15237
15298
|
if (typeof option2 === "number")
|
|
@@ -15279,8 +15340,6 @@ const _sfc_main$h = /* @__PURE__ */ vue.defineComponent({
|
|
|
15279
15340
|
vue.watch(
|
|
15280
15341
|
() => props2.modelValue,
|
|
15281
15342
|
(newVal) => {
|
|
15282
|
-
if (!newVal)
|
|
15283
|
-
return;
|
|
15284
15343
|
if (!props2.multiselect) {
|
|
15285
15344
|
const newOption = props2.options.find((o2) => getValue(o2) === newVal) || newVal;
|
|
15286
15345
|
if (!isSelected(newOption)) {
|
|
@@ -15298,7 +15357,6 @@ const _sfc_main$h = /* @__PURE__ */ vue.defineComponent({
|
|
|
15298
15357
|
vue.watch(
|
|
15299
15358
|
() => props2.options,
|
|
15300
15359
|
() => {
|
|
15301
|
-
const original = JSON.stringify(props2.options.map(getValue));
|
|
15302
15360
|
[...selectedItems.value].forEach((option2, i2) => {
|
|
15303
15361
|
const exists = props2.options.find(
|
|
15304
15362
|
(o2) => getValue(o2) === getValue(option2)
|
|
@@ -15308,9 +15366,6 @@ const _sfc_main$h = /* @__PURE__ */ vue.defineComponent({
|
|
|
15308
15366
|
else
|
|
15309
15367
|
selectedItems.value.splice(i2, 1, exists);
|
|
15310
15368
|
});
|
|
15311
|
-
const newSelection = JSON.stringify(selectedItems.value.map(getValue));
|
|
15312
|
-
if (original !== newSelection)
|
|
15313
|
-
emitUpdate();
|
|
15314
15369
|
},
|
|
15315
15370
|
{ deep: true }
|
|
15316
15371
|
);
|
|
@@ -15323,7 +15378,7 @@ const _sfc_main$h = /* @__PURE__ */ vue.defineComponent({
|
|
|
15323
15378
|
class: "bagel-input selectinput"
|
|
15324
15379
|
}, {
|
|
15325
15380
|
popper: vue.withCtx(({ hide: hide2 }) => [
|
|
15326
|
-
vue.createVNode(vue.unref(_sfc_main$
|
|
15381
|
+
vue.createVNode(vue.unref(_sfc_main$v), {
|
|
15327
15382
|
class: "selectinput-options p-05",
|
|
15328
15383
|
style: vue.normalizeStyle({ width: _ctx.fullWidth ? "100%" : "auto" })
|
|
15329
15384
|
}, {
|
|
@@ -15344,11 +15399,11 @@ const _sfc_main$h = /* @__PURE__ */ vue.defineComponent({
|
|
|
15344
15399
|
key: `${option2}${i2}`,
|
|
15345
15400
|
onClick: ($event) => select2(option2)
|
|
15346
15401
|
}, [
|
|
15347
|
-
isSelected(option2) ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$
|
|
15402
|
+
isSelected(option2) ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$I), {
|
|
15348
15403
|
key: 0,
|
|
15349
15404
|
icon: "check"
|
|
15350
15405
|
})) : vue.createCommentVNode("", true),
|
|
15351
|
-
!isSelected(option2) ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$
|
|
15406
|
+
!isSelected(option2) ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$I), {
|
|
15352
15407
|
key: 1,
|
|
15353
15408
|
class: "opacity-3",
|
|
15354
15409
|
icon: "fiber_manual_record"
|
|
@@ -15372,7 +15427,7 @@ const _sfc_main$h = /* @__PURE__ */ vue.defineComponent({
|
|
|
15372
15427
|
class: vue.normalizeClass(["selectinput-btn", { isEmpty: selectedItems.value.length === 0 }])
|
|
15373
15428
|
}, [
|
|
15374
15429
|
vue.createElementVNode("p", null, vue.toDisplayString(selectedLabel.value), 1),
|
|
15375
|
-
vue.createVNode(vue.unref(_sfc_main$
|
|
15430
|
+
vue.createVNode(vue.unref(_sfc_main$I), vue.normalizeProps(vue.guardReactiveProps({ icon: vue.unref(open) ? "unfold_less" : "unfold_more" })), null, 16)
|
|
15376
15431
|
], 42, _hoisted_1$m),
|
|
15377
15432
|
_ctx.required ? (vue.openBlock(), vue.createElementBlock("input", {
|
|
15378
15433
|
key: 0,
|
|
@@ -15389,7 +15444,7 @@ const _sfc_main$h = /* @__PURE__ */ vue.defineComponent({
|
|
|
15389
15444
|
};
|
|
15390
15445
|
}
|
|
15391
15446
|
});
|
|
15392
|
-
const SelectInput = /* @__PURE__ */ _export_sfc(_sfc_main$h, [["__scopeId", "data-v-
|
|
15447
|
+
const SelectInput = /* @__PURE__ */ _export_sfc(_sfc_main$h, [["__scopeId", "data-v-fdfda40b"]]);
|
|
15393
15448
|
/*!
|
|
15394
15449
|
* vue-draggable-next v2.2.0
|
|
15395
15450
|
* (c) 2023 Anish George
|
|
@@ -18015,7 +18070,7 @@ const _sfc_main$g = /* @__PURE__ */ vue.defineComponent({
|
|
|
18015
18070
|
key: row.id
|
|
18016
18071
|
}, [
|
|
18017
18072
|
vue.createElementVNode("div", _hoisted_5$8, [
|
|
18018
|
-
vue.createVNode(vue.unref(_sfc_main$
|
|
18073
|
+
vue.createVNode(vue.unref(_sfc_main$I), { icon: "more_vert" })
|
|
18019
18074
|
]),
|
|
18020
18075
|
(vue.openBlock(true), vue.createElementBlock(vue.Fragment, null, vue.renderList((_a3 = vue.unref(entityMeta)) == null ? void 0 : _a3.fields, (field) => {
|
|
18021
18076
|
return vue.openBlock(), vue.createElementBlock("div", {
|
|
@@ -18032,7 +18087,7 @@ const _sfc_main$g = /* @__PURE__ */ vue.defineComponent({
|
|
|
18032
18087
|
], 2);
|
|
18033
18088
|
}), 128)),
|
|
18034
18089
|
vue.createElementVNode("div", _hoisted_6$4, [
|
|
18035
|
-
vue.createVNode(vue.unref(_sfc_main$
|
|
18090
|
+
vue.createVNode(vue.unref(_sfc_main$I), {
|
|
18036
18091
|
icon: "delete",
|
|
18037
18092
|
onClick: ($event) => removeRow2(index2)
|
|
18038
18093
|
}, null, 8, ["onClick"])
|
|
@@ -18202,12 +18257,12 @@ const _sfc_main$f = /* @__PURE__ */ vue.defineComponent({
|
|
|
18202
18257
|
]),
|
|
18203
18258
|
_ctx.helptext ? (vue.openBlock(), vue.createElementBlock("p", _hoisted_5$7, vue.toDisplayString(_ctx.helptext), 1)) : vue.createCommentVNode("", true)
|
|
18204
18259
|
], 8, _hoisted_2$g),
|
|
18205
|
-
_ctx.iconStart ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$
|
|
18260
|
+
_ctx.iconStart ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$I), {
|
|
18206
18261
|
key: 0,
|
|
18207
18262
|
class: "iconStart",
|
|
18208
18263
|
icon: _ctx.iconStart
|
|
18209
18264
|
}, null, 8, ["icon"])) : vue.createCommentVNode("", true),
|
|
18210
|
-
_ctx.icon ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$
|
|
18265
|
+
_ctx.icon ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$I), {
|
|
18211
18266
|
key: 1,
|
|
18212
18267
|
icon: _ctx.icon
|
|
18213
18268
|
}, null, 8, ["icon"])) : vue.createCommentVNode("", true),
|
|
@@ -18246,7 +18301,7 @@ const _sfc_main$e = /* @__PURE__ */ vue.defineComponent({
|
|
|
18246
18301
|
[vue.vModelCheckbox, val.value]
|
|
18247
18302
|
]),
|
|
18248
18303
|
vue.createElementVNode("span", null, [
|
|
18249
|
-
vue.createVNode(vue.unref(_sfc_main$
|
|
18304
|
+
vue.createVNode(vue.unref(_sfc_main$I), { icon: "check" })
|
|
18250
18305
|
])
|
|
18251
18306
|
]);
|
|
18252
18307
|
};
|
|
@@ -18638,7 +18693,7 @@ const _sfc_main$a = /* @__PURE__ */ vue.defineComponent({
|
|
|
18638
18693
|
style: vue.normalizeStyle([`--p:${fileQ.progress}`, { "--b": "2px" }])
|
|
18639
18694
|
}, [
|
|
18640
18695
|
fileQ.progress < 100 ? (vue.openBlock(), vue.createElementBlock("span", _hoisted_12, vue.toDisplayString(`${fileQ.progress.toFixed(0)}`), 1)) : vue.createCommentVNode("", true),
|
|
18641
|
-
vue.createVNode(vue.unref(_sfc_main$
|
|
18696
|
+
vue.createVNode(vue.unref(_sfc_main$I), {
|
|
18642
18697
|
class: "success",
|
|
18643
18698
|
icon: "check"
|
|
18644
18699
|
})
|
|
@@ -42242,6 +42297,11 @@ const _sfc_main$8 = /* @__PURE__ */ vue.defineComponent({
|
|
|
42242
42297
|
command: () => focus2().setHardBreak().run(),
|
|
42243
42298
|
icon: "keyboard_return"
|
|
42244
42299
|
},
|
|
42300
|
+
{
|
|
42301
|
+
name: "Table",
|
|
42302
|
+
command: () => editor.value.chain().focus().insertTable({ rows: 3, cols: 3, withHeaderRow: true }).run(),
|
|
42303
|
+
icon: "table_chart"
|
|
42304
|
+
},
|
|
42245
42305
|
{
|
|
42246
42306
|
name: "Undo",
|
|
42247
42307
|
command: () => focus2().undo().run(),
|
|
@@ -42259,11 +42319,6 @@ const _sfc_main$8 = /* @__PURE__ */ vue.defineComponent({
|
|
|
42259
42319
|
var _a2;
|
|
42260
42320
|
return !((_a2 = editor.value) == null ? void 0 : _a2.can().chain().focus().redo().run());
|
|
42261
42321
|
}
|
|
42262
|
-
},
|
|
42263
|
-
{
|
|
42264
|
-
name: "Table",
|
|
42265
|
-
command: () => editor.value.chain().focus().insertTable({ rows: 3, cols: 3, withHeaderRow: true }).run(),
|
|
42266
|
-
icon: "table"
|
|
42267
42322
|
}
|
|
42268
42323
|
];
|
|
42269
42324
|
const emit2 = __emit;
|
|
@@ -48738,7 +48793,7 @@ const _sfc_main$5 = /* @__PURE__ */ vue.defineComponent({
|
|
|
48738
48793
|
}
|
|
48739
48794
|
return (_ctx, _cache) => {
|
|
48740
48795
|
const _directive_tooltip = vue.resolveDirective("tooltip");
|
|
48741
|
-
return vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$
|
|
48796
|
+
return vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$v), {
|
|
48742
48797
|
class: vue.normalizeClass(["flex column gap-05 pt-1 bgl_sidebar", { wideNav: vue.unref(isOpen) }])
|
|
48743
48798
|
}, {
|
|
48744
48799
|
default: vue.withCtx(() => [
|
|
@@ -48761,7 +48816,7 @@ const _sfc_main$5 = /* @__PURE__ */ vue.defineComponent({
|
|
|
48761
48816
|
class: "nav-button px-075"
|
|
48762
48817
|
}, {
|
|
48763
48818
|
default: vue.withCtx(() => [
|
|
48764
|
-
vue.createVNode(vue.unref(_sfc_main$
|
|
48819
|
+
vue.createVNode(vue.unref(_sfc_main$I), {
|
|
48765
48820
|
icon: nav2.icon,
|
|
48766
48821
|
size: 1.4
|
|
48767
48822
|
}, null, 8, ["icon"]),
|
|
@@ -48798,7 +48853,7 @@ const _sfc_main$4 = /* @__PURE__ */ vue.defineComponent({
|
|
|
48798
48853
|
},
|
|
48799
48854
|
setup(__props) {
|
|
48800
48855
|
return (_ctx, _cache) => {
|
|
48801
|
-
return vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$
|
|
48856
|
+
return vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$v), { class: "hide m_grid gap-05 bgl_bottombar px-1 txt14 justify-content-start align-items-center overflow-x" }, {
|
|
48802
48857
|
default: vue.withCtx(() => [
|
|
48803
48858
|
vue.renderSlot(_ctx.$slots, "brand", {}, void 0, true),
|
|
48804
48859
|
(vue.openBlock(true), vue.createElementBlock(vue.Fragment, null, vue.renderList(_ctx.navLinks, (nav2, i2) => {
|
|
@@ -48809,7 +48864,7 @@ const _sfc_main$4 = /* @__PURE__ */ vue.defineComponent({
|
|
|
48809
48864
|
class: "m_h-auto"
|
|
48810
48865
|
}, {
|
|
48811
48866
|
default: vue.withCtx(() => [
|
|
48812
|
-
vue.createVNode(vue.unref(_sfc_main$
|
|
48867
|
+
vue.createVNode(vue.unref(_sfc_main$I), {
|
|
48813
48868
|
icon: nav2.icon,
|
|
48814
48869
|
size: 1.4,
|
|
48815
48870
|
class: "m-0"
|
|
@@ -48913,7 +48968,7 @@ const _sfc_main$2 = /* @__PURE__ */ vue.defineComponent({
|
|
|
48913
48968
|
onClick: ($event) => selectTab(tab),
|
|
48914
48969
|
key: i2
|
|
48915
48970
|
}, [
|
|
48916
|
-
typeof tab !== "string" && tab.icon ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$
|
|
48971
|
+
typeof tab !== "string" && tab.icon ? (vue.openBlock(), vue.createBlock(vue.unref(_sfc_main$I), {
|
|
48917
48972
|
key: 0,
|
|
48918
48973
|
icon: tab.icon
|
|
48919
48974
|
}, null, 8, ["icon"])) : vue.createCommentVNode("", true),
|
|
@@ -49007,7 +49062,7 @@ const _sfc_main = /* @__PURE__ */ vue.defineComponent({
|
|
|
49007
49062
|
}
|
|
49008
49063
|
});
|
|
49009
49064
|
const TabbedLayout = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-fd61196d"]]);
|
|
49010
|
-
exports.Accordion = _sfc_main$
|
|
49065
|
+
exports.Accordion = _sfc_main$s;
|
|
49011
49066
|
exports.AccordionItem = AccordionItem;
|
|
49012
49067
|
exports.Alert = Alert;
|
|
49013
49068
|
exports.Avatar = Avatar;
|
|
@@ -49019,7 +49074,7 @@ exports.BglForm = _sfc_main$m;
|
|
|
49019
49074
|
exports.BglVideo = BglVideo;
|
|
49020
49075
|
exports.BottomMenu = BottomMenu;
|
|
49021
49076
|
exports.Btn = Btn;
|
|
49022
|
-
exports.Card = _sfc_main$
|
|
49077
|
+
exports.Card = _sfc_main$v;
|
|
49023
49078
|
exports.Carousel = Carousel;
|
|
49024
49079
|
exports.CheckInput = CheckInput;
|
|
49025
49080
|
exports.Checkbox = Checkbox;
|
|
@@ -49029,18 +49084,19 @@ exports.DateInput = _sfc_main$j;
|
|
|
49029
49084
|
exports.DatePicker = _sfc_main$c;
|
|
49030
49085
|
exports.Dropdown = kt$1;
|
|
49031
49086
|
exports.FileUpload = $el;
|
|
49032
|
-
exports.Icon = _sfc_main$
|
|
49087
|
+
exports.Icon = _sfc_main$I;
|
|
49033
49088
|
exports.JSONInput = JSONInput;
|
|
49034
49089
|
exports.Layout = Layout;
|
|
49035
49090
|
exports.Lineart = _sfc_main$7;
|
|
49036
|
-
exports.ListItem = _sfc_main$
|
|
49037
|
-
exports.ListView = _sfc_main$
|
|
49038
|
-
exports.MaterialIcon = _sfc_main$
|
|
49039
|
-
exports.Modal = _sfc_main$
|
|
49091
|
+
exports.ListItem = _sfc_main$B;
|
|
49092
|
+
exports.ListView = _sfc_main$C;
|
|
49093
|
+
exports.MaterialIcon = _sfc_main$I;
|
|
49094
|
+
exports.Modal = _sfc_main$F;
|
|
49095
|
+
exports.ModalConfirm = _sfc_main$n;
|
|
49040
49096
|
exports.ModalForm = ModalForm;
|
|
49041
49097
|
exports.ModalPlugin = ModalPlugin;
|
|
49042
49098
|
exports.NavBar = NavBar;
|
|
49043
|
-
exports.PageTitle = _sfc_main$
|
|
49099
|
+
exports.PageTitle = _sfc_main$A;
|
|
49044
49100
|
exports.RadioPillsInput = RadioPillsInput;
|
|
49045
49101
|
exports.RichText = _sfc_main$8;
|
|
49046
49102
|
exports.RouterWrapper = RouterWrapper;
|
|
@@ -49053,7 +49109,7 @@ exports.Tabs = _sfc_main$3;
|
|
|
49053
49109
|
exports.TabsBody = _sfc_main$1;
|
|
49054
49110
|
exports.TabsNav = TabsNav;
|
|
49055
49111
|
exports.TextInput = TextInput;
|
|
49056
|
-
exports.Title = _sfc_main$
|
|
49112
|
+
exports.Title = _sfc_main$t;
|
|
49057
49113
|
exports.ToggleInput = ToggleInput;
|
|
49058
49114
|
exports.TopBar = TopBar;
|
|
49059
49115
|
exports.bagelFormUtils = bagelFormUtils;
|