@g1cloud/bluesea 5.0.0-beta.26 → 5.0.0-beta.28
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/README.md +21 -0
- package/bin/install-claude-skill.mjs +74 -0
- package/css/bluesea.css +61 -7
- package/dist/{BSAlertModal-CCdaoT-g.js → BSAlertModal-BpbJuAe1.js} +1 -1
- package/dist/{BSGridColumnSettingModal-CMJqpWzY.js → BSGridColumnSettingModal-8MqhRWkU.js} +1 -1
- package/dist/{BSRichTextMaximizedModal-Byrr_L8I.js → BSRichTextMaximizedModal-C86Skc5v.js} +1 -1
- package/dist/{BSYesNoModal-BljzNd5_.js → BSYesNoModal-CHbktVAj.js} +1 -1
- package/dist/{BSYoutubeInputModal-BZR0jJvt.js → BSYoutubeInputModal-JKnr4hGE.js} +1 -1
- package/dist/{ImageInsertModal-wdRGMEHH.js → ImageInsertModal-DQwkQJ8b.js} +2 -2
- package/dist/{ImageProperties.vue_vue_type_script_setup_true_lang-DNqql2HK.js → ImageProperties.vue_vue_type_script_setup_true_lang-BsMcsXdh.js} +1 -1
- package/dist/{ImagePropertiesModal-BumfiYFu.js → ImagePropertiesModal-X7blKqTy.js} +2 -2
- package/dist/{LinkPropertiesModal-C-cq00aG.js → LinkPropertiesModal-DGiiTivW.js} +1 -1
- package/dist/{TableInsertModal-DWy7cSQz.js → TableInsertModal-CupFfnOG.js} +1 -1
- package/dist/{TablePropertiesModal-BDir2XM5.js → TablePropertiesModal-CfK9i7Q5.js} +1 -1
- package/dist/{VideoInsertModal-s4eT3Ofx.js → VideoInsertModal-BwRRgibx.js} +2 -2
- package/dist/{VideoProperties.vue_vue_type_script_setup_true_lang-B2SQASHh.js → VideoProperties.vue_vue_type_script_setup_true_lang-zEMpmzTZ.js} +1 -1
- package/dist/{VideoPropertiesModal-zHc0vcQs.js → VideoPropertiesModal-Dn6AzhPy.js} +2 -2
- package/dist/{YoutubeInsertModal-CdcIzmFl.js → YoutubeInsertModal-DCn5bhN5.js} +2 -2
- package/dist/{YoutubeProperties.vue_vue_type_script_setup_true_lang-CWqGTFe5.js → YoutubeProperties.vue_vue_type_script_setup_true_lang-B-YVlp4Y.js} +1 -1
- package/dist/{YoutubePropertiesModal-CAd6dZ6E.js → YoutubePropertiesModal-Dg-n8cTv.js} +2 -2
- package/dist/bluesea.css +53 -7
- package/dist/bluesea.js +1 -1
- package/dist/bluesea.umd.cjs +623 -454
- package/dist/component/input/BSImageUpload.vue.d.ts +4 -0
- package/dist/component/input/BSMediaPreview.vue.d.ts +2 -0
- package/dist/component/input/BSMediaPreviewOverlay.vue.d.ts +44 -0
- package/dist/component/input/BSMultiImageUpload.vue.d.ts +2 -0
- package/dist/component/input/BSPositionedImageUpload.vue.d.ts +2 -0
- package/dist/{index-pO-xtezx.js → index-e3O4IL4V.js} +557 -388
- package/dist/text/i18n.d.ts +2 -1
- package/package.json +6 -1
- package/skills/bluesea-ui/SKILL.md +312 -0
- package/skills/bluesea-ui/references/components.md +189 -0
- package/skills/bluesea-ui/references/grid.md +159 -0
- package/skills/bluesea-ui/references/i18n.md +126 -0
- package/skills/bluesea-ui/references/validation.md +176 -0
- package/text/bluesea_text_en.json +248 -964
- package/text/bluesea_text_fr.json +248 -964
- package/text/bluesea_text_ja.json +248 -964
- package/text/bluesea_text_ko.json +248 -964
- package/text/bluesea_text_zh.json +248 -964
package/dist/bluesea.umd.cjs
CHANGED
|
@@ -528,9 +528,16 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
528
528
|
constructor() {
|
|
529
529
|
__publicField(this, "localeTexts", {});
|
|
530
530
|
}
|
|
531
|
-
addTexts(locale,
|
|
531
|
+
addTexts(locale, input) {
|
|
532
532
|
const text = this.ensureAddLocale(locale);
|
|
533
|
-
|
|
533
|
+
if (Array.isArray(input)) {
|
|
534
|
+
input.forEach((t2) => text[t2.key] = t2);
|
|
535
|
+
} else {
|
|
536
|
+
for (const key in input) {
|
|
537
|
+
const v = input[key];
|
|
538
|
+
text[key] = Array.isArray(v) ? { key, text: String(v[0]), html: !!v[1] } : { key, text: v };
|
|
539
|
+
}
|
|
540
|
+
}
|
|
534
541
|
}
|
|
535
542
|
/**
|
|
536
543
|
* 현재 언어코드에서 `key` 에 해당하는 `TextRecord` 를 리턴한다.
|
|
@@ -790,7 +797,7 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
790
797
|
hideTooltip$1();
|
|
791
798
|
}
|
|
792
799
|
};
|
|
793
|
-
const _sfc_main$
|
|
800
|
+
const _sfc_main$22 = /* @__PURE__ */ vue.defineComponent({
|
|
794
801
|
__name: "BSButton",
|
|
795
802
|
props: {
|
|
796
803
|
caption: {},
|
|
@@ -839,8 +846,8 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
839
846
|
}
|
|
840
847
|
return target;
|
|
841
848
|
};
|
|
842
|
-
const BSButton = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
843
|
-
const _sfc_main$
|
|
849
|
+
const BSButton = /* @__PURE__ */ _export_sfc(_sfc_main$22, [["__scopeId", "data-v-b7ae95cb"]]);
|
|
850
|
+
const _sfc_main$21 = /* @__PURE__ */ vue.defineComponent({
|
|
844
851
|
__name: "BSFormLabel",
|
|
845
852
|
props: {
|
|
846
853
|
label: {},
|
|
@@ -883,9 +890,9 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
883
890
|
waitDuring,
|
|
884
891
|
tryUntil
|
|
885
892
|
};
|
|
886
|
-
const _hoisted_1$
|
|
893
|
+
const _hoisted_1$1I = ["data-popup-id"];
|
|
887
894
|
const ADJUST_OFFSET = 8;
|
|
888
|
-
const _sfc_main$
|
|
895
|
+
const _sfc_main$20 = /* @__PURE__ */ vue.defineComponent({
|
|
889
896
|
__name: "BSPopup",
|
|
890
897
|
props: {
|
|
891
898
|
popupId: {},
|
|
@@ -1068,7 +1075,7 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
1068
1075
|
onKeydown: _cache[1] || (_cache[1] = ($event) => emit("keydown", $event))
|
|
1069
1076
|
}, [
|
|
1070
1077
|
vue.renderSlot(_ctx.$slots, "default")
|
|
1071
|
-
], 46, _hoisted_1$
|
|
1078
|
+
], 46, _hoisted_1$1I)
|
|
1072
1079
|
]),
|
|
1073
1080
|
_: 3
|
|
1074
1081
|
})
|
|
@@ -1110,11 +1117,11 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
1110
1117
|
});
|
|
1111
1118
|
};
|
|
1112
1119
|
};
|
|
1113
|
-
const _hoisted_1$
|
|
1120
|
+
const _hoisted_1$1H = {
|
|
1114
1121
|
key: 0,
|
|
1115
1122
|
class: "popup-search pa-4"
|
|
1116
1123
|
};
|
|
1117
|
-
const _hoisted_2$
|
|
1124
|
+
const _hoisted_2$1l = ["data-value", "onMouseover", "onClick"];
|
|
1118
1125
|
const _hoisted_3$U = {
|
|
1119
1126
|
key: 0,
|
|
1120
1127
|
class: "label"
|
|
@@ -1123,7 +1130,7 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
1123
1130
|
key: 1,
|
|
1124
1131
|
class: "label null-label"
|
|
1125
1132
|
};
|
|
1126
|
-
const _sfc_main$
|
|
1133
|
+
const _sfc_main$1$ = /* @__PURE__ */ vue.defineComponent({
|
|
1127
1134
|
__name: "BSSelectPopup",
|
|
1128
1135
|
props: {
|
|
1129
1136
|
items: {},
|
|
@@ -1270,7 +1277,7 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
1270
1277
|
handleKeyboard
|
|
1271
1278
|
});
|
|
1272
1279
|
return (_ctx, _cache) => {
|
|
1273
|
-
return vue.openBlock(), vue.createBlock(_sfc_main$
|
|
1280
|
+
return vue.openBlock(), vue.createBlock(_sfc_main$20, {
|
|
1274
1281
|
"base-element": _ctx.baseElement,
|
|
1275
1282
|
"max-height": _ctx.maxHeight,
|
|
1276
1283
|
"offset-from-base-element": 4,
|
|
@@ -1281,7 +1288,7 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
1281
1288
|
onKeydown: vue.withKeys(vue.withModifiers(handleKeyboard, ["stop", "prevent"]), ["enter", "down", "up"])
|
|
1282
1289
|
}, {
|
|
1283
1290
|
default: vue.withCtx(() => [
|
|
1284
|
-
actualShowSearch.value ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_1$
|
|
1291
|
+
actualShowSearch.value ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_1$1H, [
|
|
1285
1292
|
vue.withDirectives(vue.createElementVNode("input", {
|
|
1286
1293
|
type: "text",
|
|
1287
1294
|
onInput: setSearchKeyword,
|
|
@@ -1316,7 +1323,7 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
1316
1323
|
]) : vue.withDirectives((vue.openBlock(), vue.createElementBlock("label", _hoisted_4$z, null, 512)), [
|
|
1317
1324
|
[vue.unref(vT), _ctx.nullLabel]
|
|
1318
1325
|
])
|
|
1319
|
-
], 42, _hoisted_2$
|
|
1326
|
+
], 42, _hoisted_2$1l);
|
|
1320
1327
|
}), 128))
|
|
1321
1328
|
], 512)
|
|
1322
1329
|
]),
|
|
@@ -1677,8 +1684,8 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
1677
1684
|
return this.isModified(this.valueProvider.getCurrentValue());
|
|
1678
1685
|
}
|
|
1679
1686
|
}
|
|
1680
|
-
const _hoisted_1$
|
|
1681
|
-
const _sfc_main$
|
|
1687
|
+
const _hoisted_1$1G = { key: 0 };
|
|
1688
|
+
const _sfc_main$1_ = /* @__PURE__ */ vue.defineComponent({
|
|
1682
1689
|
__name: "ValidationErrors",
|
|
1683
1690
|
props: {
|
|
1684
1691
|
errors: {},
|
|
@@ -1686,7 +1693,7 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
1686
1693
|
},
|
|
1687
1694
|
setup(__props) {
|
|
1688
1695
|
return (_ctx, _cache) => {
|
|
1689
|
-
return !_ctx.hideErrorMessage && _ctx.errors && _ctx.errors.length > 0 ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_1$
|
|
1696
|
+
return !_ctx.hideErrorMessage && _ctx.errors && _ctx.errors.length > 0 ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_1$1G, [
|
|
1690
1697
|
(vue.openBlock(true), vue.createElementBlock(vue.Fragment, null, vue.renderList(_ctx.errors, (error) => {
|
|
1691
1698
|
return vue.withDirectives((vue.openBlock(), vue.createElementBlock("div", {
|
|
1692
1699
|
key: error.code,
|
|
@@ -1733,8 +1740,8 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
1733
1740
|
}
|
|
1734
1741
|
return defaultKey(item);
|
|
1735
1742
|
};
|
|
1736
|
-
const _hoisted_1$
|
|
1737
|
-
const _hoisted_2$
|
|
1743
|
+
const _hoisted_1$1F = ["tabindex", "onKeydown"];
|
|
1744
|
+
const _hoisted_2$1k = { key: 0 };
|
|
1738
1745
|
const _hoisted_3$T = ["data-field-name"];
|
|
1739
1746
|
const _hoisted_4$y = {
|
|
1740
1747
|
key: 0,
|
|
@@ -1748,7 +1755,7 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
1748
1755
|
key: 2,
|
|
1749
1756
|
class: "small-progress"
|
|
1750
1757
|
};
|
|
1751
|
-
const _sfc_main$
|
|
1758
|
+
const _sfc_main$1Z = /* @__PURE__ */ vue.defineComponent({
|
|
1752
1759
|
__name: "BSSelect",
|
|
1753
1760
|
props: {
|
|
1754
1761
|
modelValue: {},
|
|
@@ -1890,7 +1897,7 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
1890
1897
|
vue.withKeys(handleTabKey, ["tab"])
|
|
1891
1898
|
]
|
|
1892
1899
|
}, [
|
|
1893
|
-
_ctx.viewMode ? vue.withDirectives((vue.openBlock(), vue.createElementBlock("div", _hoisted_2$
|
|
1900
|
+
_ctx.viewMode ? vue.withDirectives((vue.openBlock(), vue.createElementBlock("div", _hoisted_2$1k, null, 512)), [
|
|
1894
1901
|
[vue.unref(vT), selectedItemLabel.value]
|
|
1895
1902
|
]) : (vue.openBlock(), vue.createElementBlock(vue.Fragment, { key: 1 }, [
|
|
1896
1903
|
vue.createElementVNode("div", {
|
|
@@ -1908,7 +1915,7 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
1908
1915
|
_cache[4] || (_cache[4] = vue.createElementVNode("span", { class: "dropdown-btn" }, "expand_more", -1)),
|
|
1909
1916
|
loadingItems.value ? (vue.openBlock(), vue.createElementBlock("span", _hoisted_6$d, "progress_activity")) : vue.createCommentVNode("", true)
|
|
1910
1917
|
], 8, _hoisted_3$T),
|
|
1911
|
-
!_ctx.disabled && showPopup.value ? (vue.openBlock(), vue.createBlock(_sfc_main$
|
|
1918
|
+
!_ctx.disabled && showPopup.value ? (vue.openBlock(), vue.createBlock(_sfc_main$1$, {
|
|
1912
1919
|
key: 0,
|
|
1913
1920
|
ref_key: "selectPopup",
|
|
1914
1921
|
ref: selectPopup,
|
|
@@ -1931,19 +1938,19 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
1931
1938
|
focusToRoot();
|
|
1932
1939
|
})
|
|
1933
1940
|
}, null, 8, ["allow-null", "base-element", "initial-item", "items", "label-provider", "max-height", "null-label", "popup-align", "popup-direction", "selected-items", "show-search", "enabled-item-provider", "value-provider"])) : vue.createCommentVNode("", true),
|
|
1934
|
-
!_ctx.viewMode ? (vue.openBlock(), vue.createBlock(_sfc_main$
|
|
1941
|
+
!_ctx.viewMode ? (vue.openBlock(), vue.createBlock(_sfc_main$1_, {
|
|
1935
1942
|
key: 1,
|
|
1936
1943
|
errors: vue.unref(errors),
|
|
1937
1944
|
"hide-error-message": _ctx.hideErrorMessage || _ctx.disabled && !_ctx.showErrorMessageOnDisabled
|
|
1938
1945
|
}, null, 8, ["errors", "hide-error-message"])) : vue.createCommentVNode("", true)
|
|
1939
1946
|
], 64))
|
|
1940
|
-
], 42, _hoisted_1$
|
|
1947
|
+
], 42, _hoisted_1$1F)), [
|
|
1941
1948
|
[vue.unref(vClickOutside), () => togglePopup(false)]
|
|
1942
1949
|
]);
|
|
1943
1950
|
};
|
|
1944
1951
|
}
|
|
1945
1952
|
});
|
|
1946
|
-
const _sfc_main$
|
|
1953
|
+
const _sfc_main$1Y = /* @__PURE__ */ vue.defineComponent({
|
|
1947
1954
|
__name: "BSYesNoSelect",
|
|
1948
1955
|
props: {
|
|
1949
1956
|
name: {},
|
|
@@ -1978,7 +1985,7 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
1978
1985
|
emit("update:modelValue", value2 === void 0 ? void 0 : value2 === "Y");
|
|
1979
1986
|
};
|
|
1980
1987
|
return (_ctx, _cache) => {
|
|
1981
|
-
return vue.openBlock(), vue.createBlock(_sfc_main$
|
|
1988
|
+
return vue.openBlock(), vue.createBlock(_sfc_main$1Z, {
|
|
1982
1989
|
"allow-null": _ctx.allowNull,
|
|
1983
1990
|
disabled: _ctx.disabled,
|
|
1984
1991
|
"hide-error-message": _ctx.hideErrorMessage,
|
|
@@ -2044,11 +2051,11 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
2044
2051
|
const createContextMenuPlugin = () => {
|
|
2045
2052
|
return new BSContextMenuPlugin();
|
|
2046
2053
|
};
|
|
2047
|
-
const _hoisted_1$
|
|
2048
|
-
const _hoisted_2$
|
|
2054
|
+
const _hoisted_1$1E = ["data-menu-id"];
|
|
2055
|
+
const _hoisted_2$1j = ["href", "target"];
|
|
2049
2056
|
const _hoisted_3$S = ["data-menu-id"];
|
|
2050
2057
|
const _hoisted_4$x = ["data-menu-id", "onMouseenter", "onClick"];
|
|
2051
|
-
const _sfc_main$
|
|
2058
|
+
const _sfc_main$1X = /* @__PURE__ */ vue.defineComponent({
|
|
2052
2059
|
__name: "BSContextMenu",
|
|
2053
2060
|
props: {
|
|
2054
2061
|
menuItems: {},
|
|
@@ -2093,7 +2100,7 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
2093
2100
|
return (_ctx, _cache) => {
|
|
2094
2101
|
const _component_router_link = vue.resolveComponent("router-link");
|
|
2095
2102
|
const _component_BSContextMenu = vue.resolveComponent("BSContextMenu", true);
|
|
2096
|
-
return vue.openBlock(), vue.createBlock(_sfc_main$
|
|
2103
|
+
return vue.openBlock(), vue.createBlock(_sfc_main$20, {
|
|
2097
2104
|
ref: "root",
|
|
2098
2105
|
"base-element": _ctx.baseElement || { left: _ctx.left || 0, top: _ctx.top || 0 },
|
|
2099
2106
|
"popup-direction": _ctx.direction,
|
|
@@ -2127,10 +2134,10 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
2127
2134
|
href: menu.href,
|
|
2128
2135
|
target: menu.target,
|
|
2129
2136
|
onClick: vue.withModifiers(handleLinkClick, ["stop"])
|
|
2130
|
-
}, null, 8, _hoisted_2$
|
|
2137
|
+
}, null, 8, _hoisted_2$1j), [
|
|
2131
2138
|
[vue.unref(vT), menu.caption]
|
|
2132
2139
|
])
|
|
2133
|
-
], 8, _hoisted_1$
|
|
2140
|
+
], 8, _hoisted_1$1E)) : menu.type === "route" ? (vue.openBlock(), vue.createElementBlock("div", {
|
|
2134
2141
|
key: 3,
|
|
2135
2142
|
"data-menu-id": menu.menuId,
|
|
2136
2143
|
class: "menu no-padding",
|
|
@@ -2423,7 +2430,7 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
2423
2430
|
return trim ? value == null ? void 0 : value.trim() : value;
|
|
2424
2431
|
}
|
|
2425
2432
|
};
|
|
2426
|
-
const _sfc_main$
|
|
2433
|
+
const _sfc_main$1W = /* @__PURE__ */ vue.defineComponent({
|
|
2427
2434
|
__name: "BSPopupButton",
|
|
2428
2435
|
props: {
|
|
2429
2436
|
caption: {},
|
|
@@ -2460,14 +2467,14 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
2460
2467
|
onKeydown: _cache[0] || (_cache[0] = vue.withKeys(() => togglePopup(false), ["esc"]))
|
|
2461
2468
|
}, null, 8, ["button-color", "caption", "class", "disabled", "left-icon", "right-icon"]),
|
|
2462
2469
|
showPopup.value ? (vue.openBlock(), vue.createElementBlock(vue.Fragment, { key: 0 }, [
|
|
2463
|
-
_ctx.menuItems ? (vue.openBlock(), vue.createBlock(_sfc_main$
|
|
2470
|
+
_ctx.menuItems ? (vue.openBlock(), vue.createBlock(_sfc_main$1X, {
|
|
2464
2471
|
key: 0,
|
|
2465
2472
|
"base-element": root.value,
|
|
2466
2473
|
"menu-items": _ctx.menuItems,
|
|
2467
2474
|
"popup-id": vue.unref(popupId),
|
|
2468
2475
|
onRequestClose: _cache[1] || (_cache[1] = ($event) => togglePopup(false)),
|
|
2469
2476
|
onMenuClicked: _cache[2] || (_cache[2] = ($event) => togglePopup(false))
|
|
2470
|
-
}, null, 8, ["base-element", "menu-items", "popup-id"])) : (vue.openBlock(), vue.createBlock(_sfc_main$
|
|
2477
|
+
}, null, 8, ["base-element", "menu-items", "popup-id"])) : (vue.openBlock(), vue.createBlock(_sfc_main$20, {
|
|
2471
2478
|
key: 1,
|
|
2472
2479
|
"base-element": root.value,
|
|
2473
2480
|
"popup-align": _ctx.popupAlign,
|
|
@@ -2487,11 +2494,11 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
2487
2494
|
};
|
|
2488
2495
|
}
|
|
2489
2496
|
});
|
|
2490
|
-
const _hoisted_1$
|
|
2497
|
+
const _hoisted_1$1D = {
|
|
2491
2498
|
key: 0,
|
|
2492
2499
|
class: "view-mode"
|
|
2493
2500
|
};
|
|
2494
|
-
const _hoisted_2$
|
|
2501
|
+
const _hoisted_2$1i = {
|
|
2495
2502
|
key: 1,
|
|
2496
2503
|
class: "prefix"
|
|
2497
2504
|
};
|
|
@@ -2537,7 +2544,7 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
2537
2544
|
class: "suffix"
|
|
2538
2545
|
};
|
|
2539
2546
|
const _hoisted_20 = ["src"];
|
|
2540
|
-
const _sfc_main$
|
|
2547
|
+
const _sfc_main$1V = /* @__PURE__ */ vue.defineComponent({
|
|
2541
2548
|
__name: "BSTextInput",
|
|
2542
2549
|
props: {
|
|
2543
2550
|
id: {},
|
|
@@ -2653,7 +2660,7 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
2653
2660
|
class: vue.normalizeClass([{ required: _ctx.required, disabled: _ctx.disabled, modified: modified.value, error: vue.unref(errors).length > 0 }, "bs-text-input"]),
|
|
2654
2661
|
style: vue.normalizeStyle({ width: _ctx.width })
|
|
2655
2662
|
}, [
|
|
2656
|
-
_ctx.viewMode ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_1$
|
|
2663
|
+
_ctx.viewMode ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_1$1D, [
|
|
2657
2664
|
(vue.openBlock(true), vue.createElementBlock(vue.Fragment, null, vue.renderList(getPrefixSuffixList(_ctx.prefix), (item) => {
|
|
2658
2665
|
return vue.openBlock(), vue.createElementBlock(vue.Fragment, null, [
|
|
2659
2666
|
item.type === "text" ? vue.withDirectives((vue.openBlock(), vue.createElementBlock("span", {
|
|
@@ -2661,7 +2668,7 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
2661
2668
|
class: "prefix"
|
|
2662
2669
|
})), [
|
|
2663
2670
|
[vue.unref(vT), item.value]
|
|
2664
|
-
]) : item.type === "font-icon" ? (vue.openBlock(), vue.createElementBlock("span", _hoisted_2$
|
|
2671
|
+
]) : item.type === "font-icon" ? (vue.openBlock(), vue.createElementBlock("span", _hoisted_2$1i, [
|
|
2665
2672
|
vue.createElementVNode("span", _hoisted_3$R, vue.toDisplayString(item.value), 1)
|
|
2666
2673
|
])) : item.type === "image-url" ? (vue.openBlock(), vue.createElementBlock("span", _hoisted_4$w, [
|
|
2667
2674
|
vue.createElementVNode("img", {
|
|
@@ -2747,7 +2754,7 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
2747
2754
|
], 64);
|
|
2748
2755
|
}), 256))
|
|
2749
2756
|
])),
|
|
2750
|
-
!_ctx.viewMode ? (vue.openBlock(), vue.createBlock(_sfc_main$
|
|
2757
|
+
!_ctx.viewMode ? (vue.openBlock(), vue.createBlock(_sfc_main$1_, {
|
|
2751
2758
|
key: 2,
|
|
2752
2759
|
errors: vue.unref(errors),
|
|
2753
2760
|
"hide-error-message": _ctx.hideErrorMessage || _ctx.disabled && !_ctx.showErrorMessageOnDisabled
|
|
@@ -2756,9 +2763,9 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
2756
2763
|
};
|
|
2757
2764
|
}
|
|
2758
2765
|
});
|
|
2759
|
-
const _hoisted_1$
|
|
2760
|
-
const _hoisted_2$
|
|
2761
|
-
const _sfc_main$
|
|
2766
|
+
const _hoisted_1$1C = { class: "bs-link bs-layout-horizontal-inline flex-align-center" };
|
|
2767
|
+
const _hoisted_2$1h = ["href", "target"];
|
|
2768
|
+
const _sfc_main$1U = /* @__PURE__ */ vue.defineComponent({
|
|
2762
2769
|
__name: "BSLink",
|
|
2763
2770
|
props: {
|
|
2764
2771
|
path: {},
|
|
@@ -2767,25 +2774,25 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
2767
2774
|
},
|
|
2768
2775
|
setup(__props) {
|
|
2769
2776
|
return (_ctx, _cache) => {
|
|
2770
|
-
return vue.openBlock(), vue.createElementBlock("div", _hoisted_1$
|
|
2777
|
+
return vue.openBlock(), vue.createElementBlock("div", _hoisted_1$1C, [
|
|
2771
2778
|
_cache[0] || (_cache[0] = vue.createElementVNode("span", { class: "font-icon mr-4" }, "link", -1)),
|
|
2772
2779
|
vue.withDirectives(vue.createElementVNode("a", {
|
|
2773
2780
|
href: _ctx.path,
|
|
2774
2781
|
target: _ctx.target
|
|
2775
|
-
}, null, 8, _hoisted_2$
|
|
2782
|
+
}, null, 8, _hoisted_2$1h), [
|
|
2776
2783
|
[vue.unref(vT), _ctx.caption || _ctx.path]
|
|
2777
2784
|
])
|
|
2778
2785
|
]);
|
|
2779
2786
|
};
|
|
2780
2787
|
}
|
|
2781
2788
|
});
|
|
2782
|
-
const BSLink = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
2783
|
-
const _hoisted_1$
|
|
2789
|
+
const BSLink = /* @__PURE__ */ _export_sfc(_sfc_main$1U, [["__scopeId", "data-v-29df56e5"]]);
|
|
2790
|
+
const _hoisted_1$1B = {
|
|
2784
2791
|
key: 0,
|
|
2785
2792
|
class: "show-percent",
|
|
2786
2793
|
style: { "left": "100%" }
|
|
2787
2794
|
};
|
|
2788
|
-
const _hoisted_2$
|
|
2795
|
+
const _hoisted_2$1g = {
|
|
2789
2796
|
key: 1,
|
|
2790
2797
|
class: "show-percent right-0 text-white"
|
|
2791
2798
|
};
|
|
@@ -2793,7 +2800,7 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
2793
2800
|
key: 1,
|
|
2794
2801
|
class: "indeterminate"
|
|
2795
2802
|
};
|
|
2796
|
-
const _sfc_main$
|
|
2803
|
+
const _sfc_main$1T = /* @__PURE__ */ vue.defineComponent({
|
|
2797
2804
|
__name: "BSProgressBar",
|
|
2798
2805
|
props: {
|
|
2799
2806
|
width: { default: "200px" },
|
|
@@ -2819,7 +2826,7 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
2819
2826
|
style: vue.normalizeStyle({ width: calculateProgress.value + "%" }),
|
|
2820
2827
|
class: "inner-progressbar"
|
|
2821
2828
|
}, [
|
|
2822
|
-
calculateProgress.value !== void 0 && calculateProgress.value < 50 ? (vue.openBlock(), vue.createElementBlock("span", _hoisted_1$
|
|
2829
|
+
calculateProgress.value !== void 0 && calculateProgress.value < 50 ? (vue.openBlock(), vue.createElementBlock("span", _hoisted_1$1B, vue.toDisplayString(calculatePercent.value) + "% ", 1)) : (vue.openBlock(), vue.createElementBlock("span", _hoisted_2$1g, vue.toDisplayString(calculatePercent.value) + "% ", 1))
|
|
2823
2830
|
], 4)) : (vue.openBlock(), vue.createElementBlock("div", _hoisted_3$Q, _cache[0] || (_cache[0] = [
|
|
2824
2831
|
vue.createElementVNode("div", { class: "in-box" }, null, -1)
|
|
2825
2832
|
])))
|
|
@@ -2827,7 +2834,7 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
2827
2834
|
};
|
|
2828
2835
|
}
|
|
2829
2836
|
});
|
|
2830
|
-
const _sfc_main$
|
|
2837
|
+
const _sfc_main$1S = /* @__PURE__ */ vue.defineComponent({
|
|
2831
2838
|
__name: "BSConsole",
|
|
2832
2839
|
props: {
|
|
2833
2840
|
texts: {},
|
|
@@ -2847,17 +2854,17 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
2847
2854
|
};
|
|
2848
2855
|
}
|
|
2849
2856
|
});
|
|
2850
|
-
const BSConsole = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
2851
|
-
const _sfc_main$
|
|
2852
|
-
const _hoisted_1$
|
|
2857
|
+
const BSConsole = /* @__PURE__ */ _export_sfc(_sfc_main$1S, [["__scopeId", "data-v-f33a4477"]]);
|
|
2858
|
+
const _sfc_main$1R = {};
|
|
2859
|
+
const _hoisted_1$1A = { class: "bs-loading-icon" };
|
|
2853
2860
|
function _sfc_render$1(_ctx, _cache) {
|
|
2854
|
-
return vue.openBlock(), vue.createElementBlock("div", _hoisted_1$
|
|
2861
|
+
return vue.openBlock(), vue.createElementBlock("div", _hoisted_1$1A, _cache[0] || (_cache[0] = [
|
|
2855
2862
|
vue.createElementVNode("span", { class: "font-icon" }, "progress_activity", -1)
|
|
2856
2863
|
]));
|
|
2857
2864
|
}
|
|
2858
|
-
const BSLoadingIcon = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
2859
|
-
const _hoisted_1$
|
|
2860
|
-
const _sfc_main$
|
|
2865
|
+
const BSLoadingIcon = /* @__PURE__ */ _export_sfc(_sfc_main$1R, [["render", _sfc_render$1]]);
|
|
2866
|
+
const _hoisted_1$1z = { class: "bs-date" };
|
|
2867
|
+
const _sfc_main$1Q = /* @__PURE__ */ vue.defineComponent({
|
|
2861
2868
|
__name: "BSDate",
|
|
2862
2869
|
props: {
|
|
2863
2870
|
value: {},
|
|
@@ -2868,13 +2875,13 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
2868
2875
|
const props = __props;
|
|
2869
2876
|
const formatted = vue.computed(() => formatUtil.formatDateString(props.value, props.format, props.timeZone));
|
|
2870
2877
|
return (_ctx, _cache) => {
|
|
2871
|
-
return vue.openBlock(), vue.createElementBlock("span", _hoisted_1$
|
|
2878
|
+
return vue.openBlock(), vue.createElementBlock("span", _hoisted_1$1z, vue.toDisplayString(formatted.value), 1);
|
|
2872
2879
|
};
|
|
2873
2880
|
}
|
|
2874
2881
|
});
|
|
2875
|
-
const _hoisted_1$
|
|
2876
|
-
const _hoisted_2$
|
|
2877
|
-
const _sfc_main$
|
|
2882
|
+
const _hoisted_1$1y = { class: "page-navigation" };
|
|
2883
|
+
const _hoisted_2$1f = ["data-page", "onClick"];
|
|
2884
|
+
const _sfc_main$1P = /* @__PURE__ */ vue.defineComponent({
|
|
2878
2885
|
__name: "BSPageNavigation",
|
|
2879
2886
|
props: {
|
|
2880
2887
|
totalCount: { default: 0 },
|
|
@@ -2934,7 +2941,7 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
2934
2941
|
}
|
|
2935
2942
|
};
|
|
2936
2943
|
return (_ctx, _cache) => {
|
|
2937
|
-
return vue.openBlock(), vue.createElementBlock("div", _hoisted_1$
|
|
2944
|
+
return vue.openBlock(), vue.createElementBlock("div", _hoisted_1$1y, [
|
|
2938
2945
|
vue.createElementVNode("span", {
|
|
2939
2946
|
class: vue.normalizeClass([{ "disabled": isFirstSet.value }, "font-icon first"]),
|
|
2940
2947
|
onClick: _cache[0] || (_cache[0] = vue.withModifiers(($event) => !isFirstSet.value && goToPage(1), ["prevent"]))
|
|
@@ -2949,7 +2956,7 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
2949
2956
|
class: vue.normalizeClass([{ on: page === currentPage.value }, "page"]),
|
|
2950
2957
|
"data-page": page,
|
|
2951
2958
|
onClick: vue.withModifiers(($event) => goToPage(page), ["prevent"])
|
|
2952
|
-
}, vue.toDisplayString(page), 11, _hoisted_2$
|
|
2959
|
+
}, vue.toDisplayString(page), 11, _hoisted_2$1f);
|
|
2953
2960
|
}), 128)),
|
|
2954
2961
|
vue.createElementVNode("span", {
|
|
2955
2962
|
class: vue.normalizeClass([{ "disabled": isLastSet.value }, "font-icon next"]),
|
|
@@ -2963,8 +2970,8 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
2963
2970
|
};
|
|
2964
2971
|
}
|
|
2965
2972
|
});
|
|
2966
|
-
const _hoisted_1$
|
|
2967
|
-
const _hoisted_2$
|
|
2973
|
+
const _hoisted_1$1x = { class: "bs-calendar bs-layout-vertical-inline" };
|
|
2974
|
+
const _hoisted_2$1e = { class: "bs-layout-horizontal justify-content-between align-items-center gap-8" };
|
|
2968
2975
|
const _hoisted_3$P = { class: "year-month bs-layout-horizontal gap-4" };
|
|
2969
2976
|
const _hoisted_4$v = { class: "timezone" };
|
|
2970
2977
|
const _hoisted_5$i = { class: "weekdays" };
|
|
@@ -2978,7 +2985,7 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
2978
2985
|
key: 1,
|
|
2979
2986
|
class: "extra-dates bs-layout-vertical gap-2 mt-8"
|
|
2980
2987
|
};
|
|
2981
|
-
const _sfc_main$
|
|
2988
|
+
const _sfc_main$1O = /* @__PURE__ */ vue.defineComponent({
|
|
2982
2989
|
__name: "BSCalendar",
|
|
2983
2990
|
props: {
|
|
2984
2991
|
modelValue: {},
|
|
@@ -3156,21 +3163,21 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
3156
3163
|
}
|
|
3157
3164
|
};
|
|
3158
3165
|
return (_ctx, _cache) => {
|
|
3159
|
-
return vue.openBlock(), vue.createElementBlock("div", _hoisted_1$
|
|
3160
|
-
vue.createElementVNode("div", _hoisted_2$
|
|
3166
|
+
return vue.openBlock(), vue.createElementBlock("div", _hoisted_1$1x, [
|
|
3167
|
+
vue.createElementVNode("div", _hoisted_2$1e, [
|
|
3161
3168
|
vue.createElementVNode("div", _hoisted_3$P, [
|
|
3162
3169
|
vue.createVNode(BSButton, {
|
|
3163
3170
|
class: "border-0 pa-0",
|
|
3164
3171
|
"left-icon": "chevron_left",
|
|
3165
3172
|
onClick: prevMonth
|
|
3166
3173
|
}),
|
|
3167
|
-
vue.createVNode(_sfc_main$
|
|
3174
|
+
vue.createVNode(_sfc_main$1Z, {
|
|
3168
3175
|
modelValue: year.value,
|
|
3169
3176
|
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => year.value = $event),
|
|
3170
3177
|
disabled: _ctx.disabled,
|
|
3171
3178
|
items: years.value
|
|
3172
3179
|
}, null, 8, ["modelValue", "disabled", "items"]),
|
|
3173
|
-
vue.createVNode(_sfc_main$
|
|
3180
|
+
vue.createVNode(_sfc_main$1Z, {
|
|
3174
3181
|
modelValue: month.value,
|
|
3175
3182
|
"onUpdate:modelValue": _cache[1] || (_cache[1] = ($event) => month.value = $event),
|
|
3176
3183
|
disabled: _ctx.disabled,
|
|
@@ -3215,7 +3222,7 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
3215
3222
|
], 2),
|
|
3216
3223
|
["HOUR", "MINUTE_10", "MINUTE_30", "MINUTE", "SECOND"].includes(_ctx.resolution) ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_7$6, [
|
|
3217
3224
|
vue.createElementVNode("div", _hoisted_8$4, [
|
|
3218
|
-
vue.createVNode(_sfc_main$
|
|
3225
|
+
vue.createVNode(_sfc_main$1Z, {
|
|
3219
3226
|
disabled: _ctx.disabled,
|
|
3220
3227
|
items: hours,
|
|
3221
3228
|
"label-provider": (item) => item < 10 ? "0" + item : item.toString(),
|
|
@@ -3224,7 +3231,7 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
3224
3231
|
"onUpdate:modelValue": updateHour
|
|
3225
3232
|
}, null, 8, ["disabled", "label-provider", "model-value"]),
|
|
3226
3233
|
_cache[2] || (_cache[2] = vue.createElementVNode("span", { class: "px-4" }, ":", -1)),
|
|
3227
|
-
vue.createVNode(_sfc_main$
|
|
3234
|
+
vue.createVNode(_sfc_main$1Z, {
|
|
3228
3235
|
disabled: _ctx.disabled || _ctx.resolution === "HOUR",
|
|
3229
3236
|
items: minutes.value,
|
|
3230
3237
|
"label-provider": (item) => item < 10 ? "0" + item : item.toString(),
|
|
@@ -3248,8 +3255,8 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
3248
3255
|
};
|
|
3249
3256
|
}
|
|
3250
3257
|
});
|
|
3251
|
-
const _hoisted_1$
|
|
3252
|
-
const _hoisted_2$
|
|
3258
|
+
const _hoisted_1$1w = { class: "bs-calendar-range bs-layout-horizontal" };
|
|
3259
|
+
const _hoisted_2$1d = { class: "bs-layout-vertical" };
|
|
3253
3260
|
const _hoisted_3$O = { class: "bs-layout-horizontal align-items-center" };
|
|
3254
3261
|
const _hoisted_4$u = {
|
|
3255
3262
|
key: 0,
|
|
@@ -3257,7 +3264,7 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
3257
3264
|
};
|
|
3258
3265
|
const _hoisted_5$h = { key: 0 };
|
|
3259
3266
|
const _hoisted_6$a = { key: 1 };
|
|
3260
|
-
const _sfc_main$
|
|
3267
|
+
const _sfc_main$1N = /* @__PURE__ */ vue.defineComponent({
|
|
3261
3268
|
__name: "BSCalendarRange",
|
|
3262
3269
|
props: {
|
|
3263
3270
|
from: {},
|
|
@@ -3296,10 +3303,10 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
3296
3303
|
};
|
|
3297
3304
|
const displayTimeZones = vue.computed(() => [actualTimeZone.value, ...blueseaConfig.getValidDisplayTimeZones()]);
|
|
3298
3305
|
return (_ctx, _cache) => {
|
|
3299
|
-
return vue.openBlock(), vue.createElementBlock("div", _hoisted_1$
|
|
3300
|
-
vue.createElementVNode("div", _hoisted_2$
|
|
3306
|
+
return vue.openBlock(), vue.createElementBlock("div", _hoisted_1$1w, [
|
|
3307
|
+
vue.createElementVNode("div", _hoisted_2$1d, [
|
|
3301
3308
|
vue.createElementVNode("div", _hoisted_3$O, [
|
|
3302
|
-
vue.createVNode(_sfc_main$
|
|
3309
|
+
vue.createVNode(_sfc_main$1O, {
|
|
3303
3310
|
modelValue: fromValue.value,
|
|
3304
3311
|
"onUpdate:modelValue": [
|
|
3305
3312
|
_cache[0] || (_cache[0] = ($event) => fromValue.value = $event),
|
|
@@ -3317,7 +3324,7 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
3317
3324
|
"range-type": "from"
|
|
3318
3325
|
}, null, 8, ["modelValue", "disabled", "display-format", "end-year", "first-day", "range-value", "resolution", "start-year", "time-zone"]),
|
|
3319
3326
|
_cache[2] || (_cache[2] = vue.createElementVNode("span", { class: "tilde" }, "~", -1)),
|
|
3320
|
-
vue.createVNode(_sfc_main$
|
|
3327
|
+
vue.createVNode(_sfc_main$1O, {
|
|
3321
3328
|
modelValue: toValue.value,
|
|
3322
3329
|
"onUpdate:modelValue": [
|
|
3323
3330
|
_cache[1] || (_cache[1] = ($event) => toValue.value = $event),
|
|
@@ -3354,17 +3361,17 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
3354
3361
|
};
|
|
3355
3362
|
}
|
|
3356
3363
|
});
|
|
3357
|
-
const _hoisted_1$
|
|
3364
|
+
const _hoisted_1$1v = {
|
|
3358
3365
|
key: 0,
|
|
3359
3366
|
class: "view-mode"
|
|
3360
3367
|
};
|
|
3361
|
-
const _hoisted_2$
|
|
3368
|
+
const _hoisted_2$1c = ["textContent"];
|
|
3362
3369
|
const _hoisted_3$N = {
|
|
3363
3370
|
key: 1,
|
|
3364
3371
|
class: "input-area"
|
|
3365
3372
|
};
|
|
3366
3373
|
const _hoisted_4$t = ["id", "autocomplete", "disabled", "maxlength", "name", "tabindex", "value"];
|
|
3367
|
-
const _sfc_main$
|
|
3374
|
+
const _sfc_main$1M = /* @__PURE__ */ vue.defineComponent({
|
|
3368
3375
|
__name: "BSNumberInput",
|
|
3369
3376
|
props: {
|
|
3370
3377
|
id: {},
|
|
@@ -3479,7 +3486,7 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
3479
3486
|
class: vue.normalizeClass([{ required: _ctx.required, disabled: _ctx.disabled, modified: modified.value, error: vue.unref(errors).length > 0 }, "bs-number-input"]),
|
|
3480
3487
|
style: vue.normalizeStyle({ width: _ctx.width })
|
|
3481
3488
|
}, [
|
|
3482
|
-
_ctx.viewMode ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_1$
|
|
3489
|
+
_ctx.viewMode ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_1$1v, [
|
|
3483
3490
|
(vue.openBlock(true), vue.createElementBlock(vue.Fragment, null, vue.renderList(vue.unref(componentUtil).toMultiLangTextArray(_ctx.prefix), (text) => {
|
|
3484
3491
|
return vue.withDirectives((vue.openBlock(), vue.createElementBlock("span", {
|
|
3485
3492
|
key: JSON.stringify(text),
|
|
@@ -3490,7 +3497,7 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
3490
3497
|
}), 128)),
|
|
3491
3498
|
vue.createElementVNode("span", {
|
|
3492
3499
|
textContent: vue.toDisplayString(_ctx.formatInViewMode ? formattedStringValue.value : vue.unref(stringValue))
|
|
3493
|
-
}, null, 8, _hoisted_2$
|
|
3500
|
+
}, null, 8, _hoisted_2$1c),
|
|
3494
3501
|
(vue.openBlock(true), vue.createElementBlock(vue.Fragment, null, vue.renderList(vue.unref(componentUtil).toMultiLangTextArray(_ctx.suffix), (text) => {
|
|
3495
3502
|
return vue.withDirectives((vue.openBlock(), vue.createElementBlock("span", {
|
|
3496
3503
|
key: JSON.stringify(text),
|
|
@@ -3536,7 +3543,7 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
3536
3543
|
]);
|
|
3537
3544
|
}), 128))
|
|
3538
3545
|
])),
|
|
3539
|
-
!_ctx.viewMode ? (vue.openBlock(), vue.createBlock(_sfc_main$
|
|
3546
|
+
!_ctx.viewMode ? (vue.openBlock(), vue.createBlock(_sfc_main$1_, {
|
|
3540
3547
|
key: 2,
|
|
3541
3548
|
errors: vue.unref(errors),
|
|
3542
3549
|
"hide-error-message": _ctx.hideErrorMessage || _ctx.disabled && !_ctx.showErrorMessageOnDisabled
|
|
@@ -3545,11 +3552,11 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
3545
3552
|
};
|
|
3546
3553
|
}
|
|
3547
3554
|
});
|
|
3548
|
-
const _hoisted_1$
|
|
3555
|
+
const _hoisted_1$1u = {
|
|
3549
3556
|
key: 0,
|
|
3550
3557
|
class: "view-mode"
|
|
3551
3558
|
};
|
|
3552
|
-
const _hoisted_2$
|
|
3559
|
+
const _hoisted_2$1b = ["textContent"];
|
|
3553
3560
|
const _hoisted_3$M = ["textContent"];
|
|
3554
3561
|
const _hoisted_4$s = {
|
|
3555
3562
|
key: 1,
|
|
@@ -3557,7 +3564,7 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
3557
3564
|
};
|
|
3558
3565
|
const _hoisted_5$g = ["id", "autocomplete", "disabled", "maxlength", "name", "tabindex", "value"];
|
|
3559
3566
|
const _hoisted_6$9 = ["textContent"];
|
|
3560
|
-
const _sfc_main$
|
|
3567
|
+
const _sfc_main$1L = /* @__PURE__ */ vue.defineComponent({
|
|
3561
3568
|
__name: "BSPriceInput",
|
|
3562
3569
|
props: {
|
|
3563
3570
|
id: {},
|
|
@@ -3681,11 +3688,11 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
3681
3688
|
class: vue.normalizeClass([{ required: _ctx.required, disabled: _ctx.disabled, modified: modified.value, error: vue.unref(errors).length > 0 }, "bs-price-input"]),
|
|
3682
3689
|
style: vue.normalizeStyle({ width: _ctx.width })
|
|
3683
3690
|
}, [
|
|
3684
|
-
_ctx.viewMode ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_1$
|
|
3691
|
+
_ctx.viewMode ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_1$1u, [
|
|
3685
3692
|
vue.createElementVNode("span", {
|
|
3686
3693
|
class: "price mr-4",
|
|
3687
3694
|
textContent: vue.toDisplayString(_ctx.formatInViewMode ? formattedStringValue.value : vue.unref(stringValue))
|
|
3688
|
-
}, null, 8, _hoisted_2$
|
|
3695
|
+
}, null, 8, _hoisted_2$1b),
|
|
3689
3696
|
suffixText.value ? (vue.openBlock(), vue.createElementBlock("span", {
|
|
3690
3697
|
key: 0,
|
|
3691
3698
|
class: "currency-code",
|
|
@@ -3717,7 +3724,7 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
3717
3724
|
textContent: vue.toDisplayString(suffixText.value)
|
|
3718
3725
|
}, null, 8, _hoisted_6$9)) : vue.createCommentVNode("", true)
|
|
3719
3726
|
])),
|
|
3720
|
-
!_ctx.viewMode ? (vue.openBlock(), vue.createBlock(_sfc_main$
|
|
3727
|
+
!_ctx.viewMode ? (vue.openBlock(), vue.createBlock(_sfc_main$1_, {
|
|
3721
3728
|
key: 2,
|
|
3722
3729
|
errors: vue.unref(errors),
|
|
3723
3730
|
"hide-error-message": _ctx.hideErrorMessage || _ctx.disabled && !_ctx.showErrorMessageOnDisabled
|
|
@@ -3726,7 +3733,7 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
3726
3733
|
};
|
|
3727
3734
|
}
|
|
3728
3735
|
});
|
|
3729
|
-
const _sfc_main$
|
|
3736
|
+
const _sfc_main$1K = /* @__PURE__ */ vue.defineComponent({
|
|
3730
3737
|
__name: "BSPercentInput",
|
|
3731
3738
|
props: /* @__PURE__ */ vue.mergeModels({
|
|
3732
3739
|
id: {},
|
|
@@ -3774,7 +3781,7 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
3774
3781
|
const percentMaxValue = vue.computed(() => props.maxValue !== void 0 ? Number((props.maxValue * 100).toFixed(props.maxDecimalPlaces)) : void 0);
|
|
3775
3782
|
const percentMinValue = vue.computed(() => props.minValue !== void 0 ? Number((props.minValue * 100).toFixed(props.maxDecimalPlaces)) : void 0);
|
|
3776
3783
|
return (_ctx, _cache) => {
|
|
3777
|
-
return vue.openBlock(), vue.createBlock(_sfc_main$
|
|
3784
|
+
return vue.openBlock(), vue.createBlock(_sfc_main$1M, {
|
|
3778
3785
|
id: _ctx.id,
|
|
3779
3786
|
autocomplete: _ctx.autocomplete,
|
|
3780
3787
|
disabled: _ctx.disabled,
|
|
@@ -3987,16 +3994,16 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
3987
3994
|
yellow: "#FFFF00",
|
|
3988
3995
|
yellowgreen: "#9ACD32"
|
|
3989
3996
|
};
|
|
3990
|
-
const _hoisted_1$
|
|
3997
|
+
const _hoisted_1$1t = {
|
|
3991
3998
|
key: 0,
|
|
3992
3999
|
class: "bs-layout-horizontal gap-4 align-items-center view-mode"
|
|
3993
4000
|
};
|
|
3994
|
-
const _hoisted_2$
|
|
4001
|
+
const _hoisted_2$1a = {
|
|
3995
4002
|
key: 1,
|
|
3996
4003
|
class: "bs-layout-horizontal-inline"
|
|
3997
4004
|
};
|
|
3998
4005
|
const _hoisted_3$L = ["data-field-name", "disabled", "tabindex", "value"];
|
|
3999
|
-
const _sfc_main$
|
|
4006
|
+
const _sfc_main$1J = /* @__PURE__ */ vue.defineComponent({
|
|
4000
4007
|
__name: "BSColorInput",
|
|
4001
4008
|
props: {
|
|
4002
4009
|
id: {},
|
|
@@ -4089,13 +4096,13 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
4089
4096
|
return vue.openBlock(), vue.createElementBlock("div", {
|
|
4090
4097
|
class: vue.normalizeClass([{ required: _ctx.required, disabled: _ctx.disabled, modified: modified.value, error: vue.unref(errors).length > 0 }, "bs-color-input bs-layout-vertical-inline"])
|
|
4091
4098
|
}, [
|
|
4092
|
-
_ctx.viewMode ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_1$
|
|
4099
|
+
_ctx.viewMode ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_1$1t, [
|
|
4093
4100
|
vue.createElementVNode("span", {
|
|
4094
4101
|
style: vue.normalizeStyle({ "background-color": vue.unref(stringValue) }),
|
|
4095
4102
|
class: "color-preview"
|
|
4096
4103
|
}, null, 4),
|
|
4097
4104
|
vue.createElementVNode("span", null, vue.toDisplayString(vue.unref(stringValue)), 1)
|
|
4098
|
-
])) : (vue.openBlock(), vue.createElementBlock("div", _hoisted_2$
|
|
4105
|
+
])) : (vue.openBlock(), vue.createElementBlock("div", _hoisted_2$1a, [
|
|
4099
4106
|
vue.createElementVNode("input", {
|
|
4100
4107
|
ref_key: "field",
|
|
4101
4108
|
ref: field,
|
|
@@ -4107,7 +4114,7 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
4107
4114
|
onChange: updateColorValue,
|
|
4108
4115
|
onInput: normalizeColorValue
|
|
4109
4116
|
}, null, 40, _hoisted_3$L),
|
|
4110
|
-
vue.createVNode(_sfc_main$
|
|
4117
|
+
vue.createVNode(_sfc_main$1V, {
|
|
4111
4118
|
modelValue: vue.unref(stringValue),
|
|
4112
4119
|
"onUpdate:modelValue": [
|
|
4113
4120
|
_cache[0] || (_cache[0] = ($event) => vue.isRef(stringValue) ? stringValue.value = $event : null),
|
|
@@ -4122,7 +4129,7 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
4122
4129
|
"ignore-save-point": ""
|
|
4123
4130
|
}, null, 8, ["modelValue", "autocomplete", "disabled", "name", "tabindex", "view-mode", "width"])
|
|
4124
4131
|
])),
|
|
4125
|
-
!_ctx.viewMode ? (vue.openBlock(), vue.createBlock(_sfc_main$
|
|
4132
|
+
!_ctx.viewMode ? (vue.openBlock(), vue.createBlock(_sfc_main$1_, {
|
|
4126
4133
|
key: 2,
|
|
4127
4134
|
errors: vue.unref(errors),
|
|
4128
4135
|
"hide-error-message": _ctx.hideErrorMessage || _ctx.disabled && !_ctx.showErrorMessageOnDisabled
|
|
@@ -4189,9 +4196,9 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
4189
4196
|
const normalizeDateInput = (value) => {
|
|
4190
4197
|
return value.replace(/[^\d-]/g, "");
|
|
4191
4198
|
};
|
|
4192
|
-
const _hoisted_1$
|
|
4193
|
-
const _hoisted_2$
|
|
4194
|
-
const _sfc_main$
|
|
4199
|
+
const _hoisted_1$1s = { class: "bs-layout-vertical px-16 py-8" };
|
|
4200
|
+
const _hoisted_2$19 = { class: "bs-layout-horizontal justify-content-center align-items-center gap-8 mt-8 mb-8" };
|
|
4201
|
+
const _sfc_main$1I = /* @__PURE__ */ vue.defineComponent({
|
|
4195
4202
|
__name: "BSDateInputPopup",
|
|
4196
4203
|
props: {
|
|
4197
4204
|
modelValue: {},
|
|
@@ -4218,7 +4225,7 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
4218
4225
|
emit("close");
|
|
4219
4226
|
};
|
|
4220
4227
|
return (_ctx, _cache) => {
|
|
4221
|
-
return vue.openBlock(), vue.createBlock(_sfc_main$
|
|
4228
|
+
return vue.openBlock(), vue.createBlock(_sfc_main$20, {
|
|
4222
4229
|
"base-element": _ctx.baseElement,
|
|
4223
4230
|
"popup-align": _ctx.popupAlign,
|
|
4224
4231
|
"popup-direction": _ctx.popupDirection,
|
|
@@ -4228,8 +4235,8 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
4228
4235
|
}, ["stop"]))
|
|
4229
4236
|
}, {
|
|
4230
4237
|
default: vue.withCtx(() => [
|
|
4231
|
-
vue.createElementVNode("div", _hoisted_1$
|
|
4232
|
-
vue.createVNode(_sfc_main$
|
|
4238
|
+
vue.createElementVNode("div", _hoisted_1$1s, [
|
|
4239
|
+
vue.createVNode(_sfc_main$1O, {
|
|
4233
4240
|
modelValue: date.value,
|
|
4234
4241
|
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => date.value = $event),
|
|
4235
4242
|
"display-format": _ctx.displayFormat,
|
|
@@ -4239,7 +4246,7 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
4239
4246
|
"start-year": _ctx.selectStartYear,
|
|
4240
4247
|
"time-zone": _ctx.timeZone
|
|
4241
4248
|
}, null, 8, ["modelValue", "display-format", "end-year", "hide-extra-date", "resolution", "start-year", "time-zone"]),
|
|
4242
|
-
vue.createElementVNode("div", _hoisted_2$
|
|
4249
|
+
vue.createElementVNode("div", _hoisted_2$19, [
|
|
4243
4250
|
vue.createVNode(BSButton, {
|
|
4244
4251
|
caption: { key: "bs.ok" },
|
|
4245
4252
|
"button-color": "blue",
|
|
@@ -4259,16 +4266,16 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
4259
4266
|
};
|
|
4260
4267
|
}
|
|
4261
4268
|
});
|
|
4262
|
-
const _hoisted_1$
|
|
4269
|
+
const _hoisted_1$1r = {
|
|
4263
4270
|
key: 0,
|
|
4264
4271
|
class: "view-mode"
|
|
4265
4272
|
};
|
|
4266
|
-
const _hoisted_2$
|
|
4273
|
+
const _hoisted_2$18 = {
|
|
4267
4274
|
key: 1,
|
|
4268
4275
|
class: "input-area"
|
|
4269
4276
|
};
|
|
4270
4277
|
const _hoisted_3$K = ["id", "disabled", "maxlength", "name", "tabindex", "value"];
|
|
4271
|
-
const _sfc_main$
|
|
4278
|
+
const _sfc_main$1H = /* @__PURE__ */ vue.defineComponent({
|
|
4272
4279
|
__name: "BSDateInput",
|
|
4273
4280
|
props: {
|
|
4274
4281
|
id: {},
|
|
@@ -4435,9 +4442,9 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
4435
4442
|
style: vue.normalizeStyle({ width: _ctx.width }),
|
|
4436
4443
|
onKeydown: _cache[2] || (_cache[2] = vue.withKeys(vue.withModifiers(() => togglePopup(false), ["stop", "prevent"]), ["esc"]))
|
|
4437
4444
|
}, [
|
|
4438
|
-
_ctx.viewMode ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_1$
|
|
4445
|
+
_ctx.viewMode ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_1$1r, [
|
|
4439
4446
|
vue.createElementVNode("span", null, vue.toDisplayString(viewModeValue.value), 1)
|
|
4440
|
-
])) : (vue.openBlock(), vue.createElementBlock("div", _hoisted_2$
|
|
4447
|
+
])) : (vue.openBlock(), vue.createElementBlock("div", _hoisted_2$18, [
|
|
4441
4448
|
vue.createElementVNode("span", {
|
|
4442
4449
|
class: vue.normalizeClass([{ "bs-clickable": !_ctx.disabled }, "font-icon"]),
|
|
4443
4450
|
onClick: _cache[0] || (_cache[0] = ($event) => togglePopup())
|
|
@@ -4474,12 +4481,12 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
4474
4481
|
]);
|
|
4475
4482
|
}), 128))
|
|
4476
4483
|
], 2)) : vue.createCommentVNode("", true),
|
|
4477
|
-
!_ctx.viewMode ? (vue.openBlock(), vue.createBlock(_sfc_main$
|
|
4484
|
+
!_ctx.viewMode ? (vue.openBlock(), vue.createBlock(_sfc_main$1_, {
|
|
4478
4485
|
key: 3,
|
|
4479
4486
|
errors: vue.unref(errors),
|
|
4480
4487
|
"hide-error-message": _ctx.hideErrorMessage || _ctx.disabled && !_ctx.showErrorMessageOnDisabled
|
|
4481
4488
|
}, null, 8, ["errors", "hide-error-message"])) : vue.createCommentVNode("", true),
|
|
4482
|
-
showPopup.value ? (vue.openBlock(), vue.createBlock(_sfc_main$
|
|
4489
|
+
showPopup.value ? (vue.openBlock(), vue.createBlock(_sfc_main$1I, {
|
|
4483
4490
|
key: 4,
|
|
4484
4491
|
"base-element": vue.unref(rootRef),
|
|
4485
4492
|
"display-format": _ctx.displayFormat,
|
|
@@ -4500,9 +4507,9 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
4500
4507
|
};
|
|
4501
4508
|
}
|
|
4502
4509
|
});
|
|
4503
|
-
const _hoisted_1$
|
|
4504
|
-
const _hoisted_2$
|
|
4505
|
-
const _sfc_main$
|
|
4510
|
+
const _hoisted_1$1q = { class: "bs-layout-vertical px-16 py-8" };
|
|
4511
|
+
const _hoisted_2$17 = { class: "bs-layout-horizontal justify-content-end align-items-center gap-8 mt-16 mb-8" };
|
|
4512
|
+
const _sfc_main$1G = /* @__PURE__ */ vue.defineComponent({
|
|
4506
4513
|
__name: "BSDateRangeInputPopup",
|
|
4507
4514
|
props: {
|
|
4508
4515
|
from: {},
|
|
@@ -4532,7 +4539,7 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
4532
4539
|
emit("close");
|
|
4533
4540
|
};
|
|
4534
4541
|
return (_ctx, _cache) => {
|
|
4535
|
-
return vue.openBlock(), vue.createBlock(_sfc_main$
|
|
4542
|
+
return vue.openBlock(), vue.createBlock(_sfc_main$20, {
|
|
4536
4543
|
"base-element": _ctx.baseElement,
|
|
4537
4544
|
"max-height": "auto",
|
|
4538
4545
|
onRequestClose: close2,
|
|
@@ -4540,8 +4547,8 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
4540
4547
|
}, ["stop"]))
|
|
4541
4548
|
}, {
|
|
4542
4549
|
default: vue.withCtx(() => [
|
|
4543
|
-
vue.createElementVNode("div", _hoisted_1$
|
|
4544
|
-
vue.createVNode(_sfc_main$
|
|
4550
|
+
vue.createElementVNode("div", _hoisted_1$1q, [
|
|
4551
|
+
vue.createVNode(_sfc_main$1N, {
|
|
4545
4552
|
from: fromValue.value,
|
|
4546
4553
|
"onUpdate:from": _cache[0] || (_cache[0] = ($event) => fromValue.value = $event),
|
|
4547
4554
|
to: toValue.value,
|
|
@@ -4555,7 +4562,7 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
4555
4562
|
"start-year": _ctx.selectStartYear,
|
|
4556
4563
|
"time-zone": _ctx.timeZone
|
|
4557
4564
|
}, null, 8, ["from", "to", "disabled-from", "disabled-to", "display-format", "end-year", "hide-extra-date", "resolution", "start-year", "time-zone"]),
|
|
4558
|
-
vue.createElementVNode("div", _hoisted_2$
|
|
4565
|
+
vue.createElementVNode("div", _hoisted_2$17, [
|
|
4559
4566
|
vue.createVNode(BSButton, {
|
|
4560
4567
|
caption: { key: "bs.ok" },
|
|
4561
4568
|
"button-color": "blue",
|
|
@@ -4575,17 +4582,17 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
4575
4582
|
};
|
|
4576
4583
|
}
|
|
4577
4584
|
});
|
|
4578
|
-
const _hoisted_1$
|
|
4585
|
+
const _hoisted_1$1p = {
|
|
4579
4586
|
key: 0,
|
|
4580
4587
|
class: "view-mode"
|
|
4581
4588
|
};
|
|
4582
|
-
const _hoisted_2$
|
|
4589
|
+
const _hoisted_2$16 = {
|
|
4583
4590
|
key: 1,
|
|
4584
4591
|
class: "input-area"
|
|
4585
4592
|
};
|
|
4586
4593
|
const _hoisted_3$J = ["id", "disabled", "maxlength", "name", "tabindex", "value"];
|
|
4587
4594
|
const _hoisted_4$r = ["id", "disabled", "maxlength", "name", "tabindex", "value"];
|
|
4588
|
-
const _sfc_main$
|
|
4595
|
+
const _sfc_main$1F = /* @__PURE__ */ vue.defineComponent({
|
|
4589
4596
|
__name: "BSDateRange",
|
|
4590
4597
|
props: {
|
|
4591
4598
|
idFrom: {},
|
|
@@ -4885,9 +4892,9 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
4885
4892
|
style: vue.normalizeStyle({ width: _ctx.width }),
|
|
4886
4893
|
onKeydown: _cache[2] || (_cache[2] = vue.withKeys(vue.withModifiers(() => togglePopup(false), ["stop", "prevent"]), ["esc"]))
|
|
4887
4894
|
}, [
|
|
4888
|
-
_ctx.viewMode ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_1$
|
|
4895
|
+
_ctx.viewMode ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_1$1p, [
|
|
4889
4896
|
vue.createElementVNode("span", null, vue.toDisplayString(formattedDateRange.value), 1)
|
|
4890
|
-
])) : (vue.openBlock(), vue.createElementBlock("div", _hoisted_2$
|
|
4897
|
+
])) : (vue.openBlock(), vue.createElementBlock("div", _hoisted_2$16, [
|
|
4891
4898
|
vue.createElementVNode("span", {
|
|
4892
4899
|
class: vue.normalizeClass([{ "bs-clickable": !disabled.value }, "font-icon"]),
|
|
4893
4900
|
onClick: _cache[0] || (_cache[0] = () => togglePopup())
|
|
@@ -4943,12 +4950,12 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
4943
4950
|
]);
|
|
4944
4951
|
}), 128))
|
|
4945
4952
|
], 2)) : vue.createCommentVNode("", true),
|
|
4946
|
-
!_ctx.viewMode ? (vue.openBlock(), vue.createBlock(_sfc_main$
|
|
4953
|
+
!_ctx.viewMode ? (vue.openBlock(), vue.createBlock(_sfc_main$1_, {
|
|
4947
4954
|
key: 3,
|
|
4948
4955
|
errors: errors.value,
|
|
4949
4956
|
"hide-error-message": _ctx.hideErrorMessage || disabled.value && !_ctx.showErrorMessageOnDisabled
|
|
4950
4957
|
}, null, 8, ["errors", "hide-error-message"])) : vue.createCommentVNode("", true),
|
|
4951
|
-
showPopup.value ? (vue.openBlock(), vue.createBlock(_sfc_main$
|
|
4958
|
+
showPopup.value ? (vue.openBlock(), vue.createBlock(_sfc_main$1G, {
|
|
4952
4959
|
key: 4,
|
|
4953
4960
|
"base-element": vue.unref(rootRef),
|
|
4954
4961
|
"disabled-from": _ctx.disabledFrom,
|
|
@@ -5044,8 +5051,8 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
5044
5051
|
const today = dayjs().tz(timeZone);
|
|
5045
5052
|
return from ? today.add(-years, "year").startOf("year") : today.add(-years, "year").endOf("year");
|
|
5046
5053
|
};
|
|
5047
|
-
const _hoisted_1$
|
|
5048
|
-
const _hoisted_2$
|
|
5054
|
+
const _hoisted_1$1o = ["id", "checked", "disabled", "name", "tabindex"];
|
|
5055
|
+
const _hoisted_2$15 = ["for"];
|
|
5049
5056
|
const _hoisted_3$I = {
|
|
5050
5057
|
key: 0,
|
|
5051
5058
|
class: "font-icon"
|
|
@@ -5055,7 +5062,7 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
5055
5062
|
class: "text-label"
|
|
5056
5063
|
};
|
|
5057
5064
|
const _hoisted_5$f = ["for"];
|
|
5058
|
-
const _sfc_main$
|
|
5065
|
+
const _sfc_main$1E = /* @__PURE__ */ vue.defineComponent({
|
|
5059
5066
|
__name: "BSRadioButton",
|
|
5060
5067
|
props: {
|
|
5061
5068
|
id: { default: () => componentUtil.generateNextId("radio") },
|
|
@@ -5098,13 +5105,13 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
5098
5105
|
class: "",
|
|
5099
5106
|
role: "radio",
|
|
5100
5107
|
type: "radio"
|
|
5101
|
-
}, vue.toHandlers(handlers2, true)), null, 16, _hoisted_1$
|
|
5108
|
+
}, vue.toHandlers(handlers2, true)), null, 16, _hoisted_1$1o),
|
|
5102
5109
|
vue.createElementVNode("label", { for: _ctx.id }, [
|
|
5103
5110
|
_ctx.icon ? (vue.openBlock(), vue.createElementBlock("span", _hoisted_3$I, vue.toDisplayString(_ctx.icon), 1)) : vue.createCommentVNode("", true),
|
|
5104
5111
|
_ctx.label ? vue.withDirectives((vue.openBlock(), vue.createElementBlock("span", _hoisted_4$q, null, 512)), [
|
|
5105
5112
|
[vue.unref(vT), _ctx.label]
|
|
5106
5113
|
]) : vue.createCommentVNode("", true)
|
|
5107
|
-
], 8, _hoisted_2$
|
|
5114
|
+
], 8, _hoisted_2$15),
|
|
5108
5115
|
hasLabelSlot.value ? (vue.openBlock(), vue.createElementBlock("label", {
|
|
5109
5116
|
key: 0,
|
|
5110
5117
|
for: _ctx.id,
|
|
@@ -5116,14 +5123,14 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
5116
5123
|
};
|
|
5117
5124
|
}
|
|
5118
5125
|
});
|
|
5119
|
-
const _hoisted_1$
|
|
5120
|
-
const _hoisted_2$
|
|
5126
|
+
const _hoisted_1$1n = ["data-field-name"];
|
|
5127
|
+
const _hoisted_2$14 = { key: 0 };
|
|
5121
5128
|
const _hoisted_3$H = {
|
|
5122
5129
|
key: 1,
|
|
5123
5130
|
class: "radio-button-group",
|
|
5124
5131
|
role: "radiogroup"
|
|
5125
5132
|
};
|
|
5126
|
-
const _sfc_main$
|
|
5133
|
+
const _sfc_main$1D = /* @__PURE__ */ vue.defineComponent({
|
|
5127
5134
|
__name: "BSRadioButtonGroup",
|
|
5128
5135
|
props: {
|
|
5129
5136
|
name: { default: () => componentUtil.generateNextName("radioGroup") },
|
|
@@ -5203,12 +5210,12 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
5203
5210
|
class: vue.normalizeClass([{ required: _ctx.required, disabled: _ctx.disabled, modified: modified.value, error: vue.unref(errors).length > 0 }, "bs-radio-button-group"]),
|
|
5204
5211
|
"data-field-name": _ctx.name
|
|
5205
5212
|
}, [
|
|
5206
|
-
_ctx.viewMode ? vue.withDirectives((vue.openBlock(), vue.createElementBlock("div", _hoisted_2$
|
|
5213
|
+
_ctx.viewMode ? vue.withDirectives((vue.openBlock(), vue.createElementBlock("div", _hoisted_2$14, null, 512)), [
|
|
5207
5214
|
[vue.unref(vT), modelValueLabel.value]
|
|
5208
5215
|
]) : (vue.openBlock(), vue.createElementBlock("div", _hoisted_3$H, [
|
|
5209
5216
|
(vue.openBlock(true), vue.createElementBlock(vue.Fragment, null, vue.renderList(_ctx.items, (item) => {
|
|
5210
5217
|
var _a2, _b;
|
|
5211
|
-
return vue.withDirectives((vue.openBlock(), vue.createBlock(_sfc_main$
|
|
5218
|
+
return vue.withDirectives((vue.openBlock(), vue.createBlock(_sfc_main$1E, {
|
|
5212
5219
|
key: itemKey(item),
|
|
5213
5220
|
disabled: _ctx.disabled || isDisabledItem(item),
|
|
5214
5221
|
icon: (_a2 = _ctx.iconProvider) == null ? void 0 : _a2.call(_ctx, item),
|
|
@@ -5223,16 +5230,16 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
5223
5230
|
]);
|
|
5224
5231
|
}), 128))
|
|
5225
5232
|
])),
|
|
5226
|
-
!_ctx.viewMode ? (vue.openBlock(), vue.createBlock(_sfc_main$
|
|
5233
|
+
!_ctx.viewMode ? (vue.openBlock(), vue.createBlock(_sfc_main$1_, {
|
|
5227
5234
|
key: 2,
|
|
5228
5235
|
errors: vue.unref(errors),
|
|
5229
5236
|
"hide-error-message": _ctx.hideErrorMessage || _ctx.disabled && !_ctx.showErrorMessageOnDisabled
|
|
5230
5237
|
}, null, 8, ["errors", "hide-error-message"])) : vue.createCommentVNode("", true)
|
|
5231
|
-
], 10, _hoisted_1$
|
|
5238
|
+
], 10, _hoisted_1$1n);
|
|
5232
5239
|
};
|
|
5233
5240
|
}
|
|
5234
5241
|
});
|
|
5235
|
-
const _sfc_main$
|
|
5242
|
+
const _sfc_main$1C = /* @__PURE__ */ vue.defineComponent({
|
|
5236
5243
|
__name: "BSDateRangePresets",
|
|
5237
5244
|
props: {
|
|
5238
5245
|
modelValue: {},
|
|
@@ -5266,7 +5273,7 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
5266
5273
|
{ immediate: true }
|
|
5267
5274
|
);
|
|
5268
5275
|
return (_ctx, _cache) => {
|
|
5269
|
-
return _ctx.presets && _ctx.presets.length > 0 ? (vue.openBlock(), vue.createBlock(_sfc_main$
|
|
5276
|
+
return _ctx.presets && _ctx.presets.length > 0 ? (vue.openBlock(), vue.createBlock(_sfc_main$1D, {
|
|
5270
5277
|
key: 0,
|
|
5271
5278
|
modelValue: currentPreset.value,
|
|
5272
5279
|
"onUpdate:modelValue": [
|
|
@@ -5281,10 +5288,10 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
5281
5288
|
};
|
|
5282
5289
|
}
|
|
5283
5290
|
});
|
|
5284
|
-
const _hoisted_1$
|
|
5285
|
-
const _hoisted_2$
|
|
5291
|
+
const _hoisted_1$1m = ["id", "checked", "disabled", "name", "tabindex"];
|
|
5292
|
+
const _hoisted_2$13 = ["for"];
|
|
5286
5293
|
const _hoisted_3$G = ["for"];
|
|
5287
|
-
const _sfc_main$
|
|
5294
|
+
const _sfc_main$1B = /* @__PURE__ */ vue.defineComponent({
|
|
5288
5295
|
__name: "BSCheckbox",
|
|
5289
5296
|
props: {
|
|
5290
5297
|
id: { default: () => componentUtil.generateNextId("checkbox") },
|
|
@@ -5340,12 +5347,12 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
5340
5347
|
tabindex: _ctx.tabindex,
|
|
5341
5348
|
class: "",
|
|
5342
5349
|
type: "checkbox"
|
|
5343
|
-
}, vue.toHandlers(handlers2, true)), null, 16, _hoisted_1$
|
|
5350
|
+
}, vue.toHandlers(handlers2, true)), null, 16, _hoisted_1$1m),
|
|
5344
5351
|
_ctx.label ? vue.withDirectives((vue.openBlock(), vue.createElementBlock("label", {
|
|
5345
5352
|
key: 0,
|
|
5346
5353
|
for: _ctx.id,
|
|
5347
5354
|
class: "text-label"
|
|
5348
|
-
}, null, 8, _hoisted_2$
|
|
5355
|
+
}, null, 8, _hoisted_2$13)), [
|
|
5349
5356
|
[vue.unref(vT), _ctx.label]
|
|
5350
5357
|
]) : vue.createCommentVNode("", true),
|
|
5351
5358
|
hasLabelSlot.value ? (vue.openBlock(), vue.createElementBlock("label", {
|
|
@@ -5359,10 +5366,10 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
5359
5366
|
};
|
|
5360
5367
|
}
|
|
5361
5368
|
});
|
|
5362
|
-
const _hoisted_1$
|
|
5363
|
-
const _hoisted_2$
|
|
5369
|
+
const _hoisted_1$1l = ["data-field-name"];
|
|
5370
|
+
const _hoisted_2$12 = { class: "items" };
|
|
5364
5371
|
const _hoisted_3$F = ["textContent"];
|
|
5365
|
-
const _sfc_main$
|
|
5372
|
+
const _sfc_main$1A = /* @__PURE__ */ vue.defineComponent({
|
|
5366
5373
|
__name: "BSCheckboxGroup",
|
|
5367
5374
|
props: {
|
|
5368
5375
|
name: {},
|
|
@@ -5468,13 +5475,13 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
5468
5475
|
"data-field-name": _ctx.name,
|
|
5469
5476
|
role: "group"
|
|
5470
5477
|
}, [
|
|
5471
|
-
vue.createElementVNode("div", _hoisted_2$
|
|
5478
|
+
vue.createElementVNode("div", _hoisted_2$12, [
|
|
5472
5479
|
_ctx.viewMode ? (vue.openBlock(), vue.createElementBlock("div", {
|
|
5473
5480
|
key: 0,
|
|
5474
5481
|
class: "view-mode",
|
|
5475
5482
|
textContent: vue.toDisplayString(modelValueLabels.value)
|
|
5476
5483
|
}, null, 8, _hoisted_3$F)) : (vue.openBlock(true), vue.createElementBlock(vue.Fragment, { key: 1 }, vue.renderList(_ctx.items, (item) => {
|
|
5477
|
-
return vue.openBlock(), vue.createBlock(_sfc_main$
|
|
5484
|
+
return vue.openBlock(), vue.createBlock(_sfc_main$1B, {
|
|
5478
5485
|
key: itemKey(item),
|
|
5479
5486
|
disabled: _ctx.disabled || isDisabledItem(item),
|
|
5480
5487
|
label: itemLabel(item),
|
|
@@ -5486,16 +5493,16 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
5486
5493
|
}, null, 8, ["disabled", "label", "model-value", "name", "tabindex", "onUpdate:modelValue"]);
|
|
5487
5494
|
}), 128))
|
|
5488
5495
|
]),
|
|
5489
|
-
!_ctx.viewMode ? (vue.openBlock(), vue.createBlock(_sfc_main$
|
|
5496
|
+
!_ctx.viewMode ? (vue.openBlock(), vue.createBlock(_sfc_main$1_, {
|
|
5490
5497
|
key: 0,
|
|
5491
5498
|
errors: vue.unref(errors),
|
|
5492
5499
|
"hide-error-message": _ctx.hideErrorMessage || _ctx.disabled && !_ctx.showErrorMessageOnDisabled
|
|
5493
5500
|
}, null, 8, ["errors", "hide-error-message"])) : vue.createCommentVNode("", true)
|
|
5494
|
-
], 10, _hoisted_1$
|
|
5501
|
+
], 10, _hoisted_1$1l);
|
|
5495
5502
|
};
|
|
5496
5503
|
}
|
|
5497
5504
|
});
|
|
5498
|
-
const _sfc_main$
|
|
5505
|
+
const _sfc_main$1z = /* @__PURE__ */ vue.defineComponent({
|
|
5499
5506
|
__name: "BSYesNoGroup",
|
|
5500
5507
|
props: {
|
|
5501
5508
|
name: { default: () => componentUtil.generateNextName("yesNoGroup") },
|
|
@@ -5528,7 +5535,7 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
5528
5535
|
emit("update:modelValue", value2 === void 0 ? void 0 : value2 === "Y");
|
|
5529
5536
|
};
|
|
5530
5537
|
return (_ctx, _cache) => {
|
|
5531
|
-
return vue.openBlock(), vue.createBlock(_sfc_main$
|
|
5538
|
+
return vue.openBlock(), vue.createBlock(_sfc_main$1D, {
|
|
5532
5539
|
disabled: _ctx.disabled,
|
|
5533
5540
|
"hide-error-message": _ctx.hideErrorMessage,
|
|
5534
5541
|
"ignore-save-point": _ctx.ignoreSavePoint,
|
|
@@ -5545,8 +5552,8 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
5545
5552
|
};
|
|
5546
5553
|
}
|
|
5547
5554
|
});
|
|
5548
|
-
const _hoisted_1$
|
|
5549
|
-
const _hoisted_2$
|
|
5555
|
+
const _hoisted_1$1k = ["tabindex", "onKeydown"];
|
|
5556
|
+
const _hoisted_2$11 = { key: 0 };
|
|
5550
5557
|
const _hoisted_3$E = {
|
|
5551
5558
|
key: 0,
|
|
5552
5559
|
class: "label"
|
|
@@ -5568,7 +5575,7 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
5568
5575
|
key: 2,
|
|
5569
5576
|
class: "small-progress"
|
|
5570
5577
|
};
|
|
5571
|
-
const _sfc_main$
|
|
5578
|
+
const _sfc_main$1y = /* @__PURE__ */ vue.defineComponent({
|
|
5572
5579
|
__name: "BSMultiSelect",
|
|
5573
5580
|
props: {
|
|
5574
5581
|
modelValue: { default: () => [] },
|
|
@@ -5693,7 +5700,7 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
5693
5700
|
_cache[4] || (_cache[4] = vue.withKeys(($event) => togglePopup(false), ["tab"]))
|
|
5694
5701
|
]
|
|
5695
5702
|
}, [
|
|
5696
|
-
_ctx.viewMode ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_2$
|
|
5703
|
+
_ctx.viewMode ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_2$11, [
|
|
5697
5704
|
_ctx.selectedLabelProvider ? vue.withDirectives((vue.openBlock(), vue.createElementBlock("span", _hoisted_3$E, null, 512)), [
|
|
5698
5705
|
[vue.unref(vT), _ctx.selectedLabelProvider(selectedItems.value)]
|
|
5699
5706
|
]) : (vue.openBlock(true), vue.createElementBlock(vue.Fragment, { key: 1 }, vue.renderList(selectedItems.value, (item) => {
|
|
@@ -5729,7 +5736,7 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
5729
5736
|
_cache[5] || (_cache[5] = vue.createElementVNode("span", { class: "dropdown-btn" }, "expand_more", -1)),
|
|
5730
5737
|
loadingItems.value ? (vue.openBlock(), vue.createElementBlock("span", _hoisted_8$3, "progress_activity")) : vue.createCommentVNode("", true)
|
|
5731
5738
|
], 8, _hoisted_4$p),
|
|
5732
|
-
!_ctx.disabled && showPopup.value ? (vue.openBlock(), vue.createBlock(_sfc_main$
|
|
5739
|
+
!_ctx.disabled && showPopup.value ? (vue.openBlock(), vue.createBlock(_sfc_main$1$, {
|
|
5733
5740
|
key: 0,
|
|
5734
5741
|
ref_key: "selectPopup",
|
|
5735
5742
|
ref: selectPopup,
|
|
@@ -5748,12 +5755,12 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
5748
5755
|
onRequestClose: _cache[0] || (_cache[0] = ($event) => togglePopup(false))
|
|
5749
5756
|
}, null, 8, ["base-element", "initial-item", "items", "label-provider", "max-height", "popup-align", "popup-direction", "selected-items", "show-search", "enabled-item-provider", "value-provider"])) : vue.createCommentVNode("", true)
|
|
5750
5757
|
], 64)),
|
|
5751
|
-
!_ctx.viewMode ? (vue.openBlock(), vue.createBlock(_sfc_main$
|
|
5758
|
+
!_ctx.viewMode ? (vue.openBlock(), vue.createBlock(_sfc_main$1_, {
|
|
5752
5759
|
key: 2,
|
|
5753
5760
|
errors: vue.unref(errors),
|
|
5754
5761
|
"hide-error-message": _ctx.hideErrorMessage || _ctx.disabled && !_ctx.showErrorMessageOnDisabled
|
|
5755
5762
|
}, null, 8, ["errors", "hide-error-message"])) : vue.createCommentVNode("", true)
|
|
5756
|
-
], 42, _hoisted_1$
|
|
5763
|
+
], 42, _hoisted_1$1k)), [
|
|
5757
5764
|
[vue.unref(vClickOutside), () => togglePopup(false)]
|
|
5758
5765
|
]);
|
|
5759
5766
|
};
|
|
@@ -5914,8 +5921,8 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
5914
5921
|
}
|
|
5915
5922
|
}
|
|
5916
5923
|
};
|
|
5917
|
-
const _hoisted_1$
|
|
5918
|
-
const _hoisted_2
|
|
5924
|
+
const _hoisted_1$1j = ["textContent"];
|
|
5925
|
+
const _hoisted_2$10 = {
|
|
5919
5926
|
key: 1,
|
|
5920
5927
|
class: "font-icon w-16 text-gray-400"
|
|
5921
5928
|
};
|
|
@@ -5927,7 +5934,7 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
5927
5934
|
key: 0,
|
|
5928
5935
|
class: "child-rows"
|
|
5929
5936
|
};
|
|
5930
|
-
const _sfc_main$
|
|
5937
|
+
const _sfc_main$1x = /* @__PURE__ */ vue.defineComponent({
|
|
5931
5938
|
__name: "BSTreeRow",
|
|
5932
5939
|
props: {
|
|
5933
5940
|
row: {},
|
|
@@ -6038,8 +6045,8 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
6038
6045
|
class: "bs-clickable font-icon",
|
|
6039
6046
|
onClick: _cache[0] || (_cache[0] = ($event) => selectRow($event, true)),
|
|
6040
6047
|
textContent: vue.toDisplayString(isSelected.value ? "check_box" : "check_box_outline_blank")
|
|
6041
|
-
}, null, 8, _hoisted_1$
|
|
6042
|
-
_ctx.iconProvider ? (vue.openBlock(), vue.createElementBlock("span", _hoisted_2
|
|
6048
|
+
}, null, 8, _hoisted_1$1j)) : vue.createCommentVNode("", true),
|
|
6049
|
+
_ctx.iconProvider ? (vue.openBlock(), vue.createElementBlock("span", _hoisted_2$10, vue.toDisplayString(icon.value || ""), 1)) : vue.createCommentVNode("", true),
|
|
6043
6050
|
vue.withDirectives(vue.createElementVNode("span", {
|
|
6044
6051
|
class: "caption",
|
|
6045
6052
|
onClick: _cache[1] || (_cache[1] = ($event) => selectRow($event, $event.shiftKey)),
|
|
@@ -6091,7 +6098,7 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
6091
6098
|
};
|
|
6092
6099
|
}
|
|
6093
6100
|
});
|
|
6094
|
-
const _sfc_main$
|
|
6101
|
+
const _sfc_main$1w = /* @__PURE__ */ vue.defineComponent({
|
|
6095
6102
|
__name: "BSTree",
|
|
6096
6103
|
props: {
|
|
6097
6104
|
data: {},
|
|
@@ -6247,7 +6254,7 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
6247
6254
|
class: "tree-wrap"
|
|
6248
6255
|
}, [
|
|
6249
6256
|
(vue.openBlock(true), vue.createElementBlock(vue.Fragment, null, vue.renderList(_ctx.data, (item) => {
|
|
6250
|
-
return vue.openBlock(), vue.createBlock(_sfc_main$
|
|
6257
|
+
return vue.openBlock(), vue.createBlock(_sfc_main$1x, {
|
|
6251
6258
|
key: _ctx.keyProvider(item),
|
|
6252
6259
|
"children-provider": _ctx.childrenProvider,
|
|
6253
6260
|
"disabled-provider": _ctx.rowDisabledProvider,
|
|
@@ -6764,8 +6771,8 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
6764
6771
|
});
|
|
6765
6772
|
}
|
|
6766
6773
|
}
|
|
6767
|
-
const _hoisted_1$
|
|
6768
|
-
const _hoisted_2
|
|
6774
|
+
const _hoisted_1$1i = ["tabindex", "onKeydown"];
|
|
6775
|
+
const _hoisted_2$$ = { key: 0 };
|
|
6769
6776
|
const _hoisted_3$C = ["data-field-name"];
|
|
6770
6777
|
const _hoisted_4$n = {
|
|
6771
6778
|
key: 0,
|
|
@@ -6779,7 +6786,7 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
6779
6786
|
key: 2,
|
|
6780
6787
|
class: "small-progress"
|
|
6781
6788
|
};
|
|
6782
|
-
const _sfc_main$
|
|
6789
|
+
const _sfc_main$1v = /* @__PURE__ */ vue.defineComponent({
|
|
6783
6790
|
__name: "BSTreeSelect",
|
|
6784
6791
|
props: {
|
|
6785
6792
|
modelValue: {},
|
|
@@ -6916,7 +6923,7 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
6916
6923
|
_cache[5] || (_cache[5] = vue.withKeys(($event) => togglePopup(false), ["tab"]))
|
|
6917
6924
|
]
|
|
6918
6925
|
}, [
|
|
6919
|
-
_ctx.viewMode ? vue.withDirectives((vue.openBlock(), vue.createElementBlock("div", _hoisted_2
|
|
6926
|
+
_ctx.viewMode ? vue.withDirectives((vue.openBlock(), vue.createElementBlock("div", _hoisted_2$$, null, 512)), [
|
|
6920
6927
|
[vue.unref(vT), selectedItemLabel.value]
|
|
6921
6928
|
]) : (vue.openBlock(), vue.createElementBlock(vue.Fragment, { key: 1 }, [
|
|
6922
6929
|
vue.createElementVNode("div", {
|
|
@@ -6934,7 +6941,7 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
6934
6941
|
_cache[6] || (_cache[6] = vue.createElementVNode("span", { class: "dropdown-btn" }, "expand_more", -1)),
|
|
6935
6942
|
loadingItems.value ? (vue.openBlock(), vue.createElementBlock("span", _hoisted_6$7, "progress_activity")) : vue.createCommentVNode("", true)
|
|
6936
6943
|
], 8, _hoisted_3$C),
|
|
6937
|
-
showPopup.value ? (vue.openBlock(), vue.createBlock(_sfc_main$
|
|
6944
|
+
showPopup.value ? (vue.openBlock(), vue.createBlock(_sfc_main$20, {
|
|
6938
6945
|
key: 0,
|
|
6939
6946
|
"base-element": vue.unref(rootRef),
|
|
6940
6947
|
"max-height": _ctx.popupMaxHeight,
|
|
@@ -6946,24 +6953,24 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
6946
6953
|
}, ["stop"]))
|
|
6947
6954
|
}, {
|
|
6948
6955
|
default: vue.withCtx(() => [
|
|
6949
|
-
vue.createVNode(_sfc_main$
|
|
6956
|
+
vue.createVNode(_sfc_main$1w, vue.mergeProps({ "bottom-padding": "0" }, vue.unref(treeHandler).tree, vue.toHandlers(vue.unref(treeHandler).treeEventListener)), null, 16)
|
|
6950
6957
|
]),
|
|
6951
6958
|
_: 1
|
|
6952
6959
|
}, 8, ["base-element", "max-height", "popup-align", "popup-direction"])) : vue.createCommentVNode("", true),
|
|
6953
|
-
!_ctx.viewMode ? (vue.openBlock(), vue.createBlock(_sfc_main$
|
|
6960
|
+
!_ctx.viewMode ? (vue.openBlock(), vue.createBlock(_sfc_main$1_, {
|
|
6954
6961
|
key: 1,
|
|
6955
6962
|
errors: vue.unref(errors),
|
|
6956
6963
|
"hide-error-message": _ctx.hideErrorMessage || _ctx.disabled && !_ctx.showErrorMessageOnDisabled
|
|
6957
6964
|
}, null, 8, ["errors", "hide-error-message"])) : vue.createCommentVNode("", true)
|
|
6958
6965
|
], 64))
|
|
6959
|
-
], 42, _hoisted_1$
|
|
6966
|
+
], 42, _hoisted_1$1i)), [
|
|
6960
6967
|
[vue.unref(vClickOutside), () => togglePopup(false)]
|
|
6961
6968
|
]);
|
|
6962
6969
|
};
|
|
6963
6970
|
}
|
|
6964
6971
|
});
|
|
6965
|
-
const _hoisted_1$
|
|
6966
|
-
const _hoisted_2$
|
|
6972
|
+
const _hoisted_1$1h = ["tabindex", "onKeydown"];
|
|
6973
|
+
const _hoisted_2$_ = { key: 0 };
|
|
6967
6974
|
const _hoisted_3$B = ["data-field-name"];
|
|
6968
6975
|
const _hoisted_4$m = {
|
|
6969
6976
|
key: 0,
|
|
@@ -6977,7 +6984,7 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
6977
6984
|
key: 2,
|
|
6978
6985
|
class: "small-progress"
|
|
6979
6986
|
};
|
|
6980
|
-
const _sfc_main$
|
|
6987
|
+
const _sfc_main$1u = /* @__PURE__ */ vue.defineComponent({
|
|
6981
6988
|
__name: "BSTreeMultiSelect",
|
|
6982
6989
|
props: {
|
|
6983
6990
|
modelValue: {},
|
|
@@ -7110,7 +7117,7 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
7110
7117
|
_cache[6] || (_cache[6] = vue.withKeys(($event) => togglePopup(false), ["tab"]))
|
|
7111
7118
|
]
|
|
7112
7119
|
}, [
|
|
7113
|
-
_ctx.viewMode ? vue.withDirectives((vue.openBlock(), vue.createElementBlock("div", _hoisted_2$
|
|
7120
|
+
_ctx.viewMode ? vue.withDirectives((vue.openBlock(), vue.createElementBlock("div", _hoisted_2$_, null, 512)), [
|
|
7114
7121
|
[vue.unref(vT), selectedItemLabel.value]
|
|
7115
7122
|
]) : (vue.openBlock(), vue.createElementBlock(vue.Fragment, { key: 1 }, [
|
|
7116
7123
|
vue.createElementVNode("div", {
|
|
@@ -7128,7 +7135,7 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
7128
7135
|
_cache[7] || (_cache[7] = vue.createElementVNode("span", { class: "dropdown-btn" }, "expand_more", -1)),
|
|
7129
7136
|
loadingItems.value ? (vue.openBlock(), vue.createElementBlock("span", _hoisted_6$6, "progress_activity")) : vue.createCommentVNode("", true)
|
|
7130
7137
|
], 8, _hoisted_3$B),
|
|
7131
|
-
showPopup.value ? (vue.openBlock(), vue.createBlock(_sfc_main$
|
|
7138
|
+
showPopup.value ? (vue.openBlock(), vue.createBlock(_sfc_main$20, {
|
|
7132
7139
|
key: 0,
|
|
7133
7140
|
"base-element": vue.unref(rootRef),
|
|
7134
7141
|
"max-height": _ctx.popupMaxHeight,
|
|
@@ -7140,7 +7147,7 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
7140
7147
|
}, ["stop"]))
|
|
7141
7148
|
}, {
|
|
7142
7149
|
default: vue.withCtx(() => [
|
|
7143
|
-
vue.createVNode(_sfc_main$
|
|
7150
|
+
vue.createVNode(_sfc_main$1w, vue.mergeProps({
|
|
7144
7151
|
"bottom-padding": "0",
|
|
7145
7152
|
"multi-select": "",
|
|
7146
7153
|
"show-checkbox": ""
|
|
@@ -7151,21 +7158,21 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
7151
7158
|
]),
|
|
7152
7159
|
_: 1
|
|
7153
7160
|
}, 8, ["base-element", "max-height", "popup-align", "popup-direction"])) : vue.createCommentVNode("", true),
|
|
7154
|
-
!_ctx.viewMode ? (vue.openBlock(), vue.createBlock(_sfc_main$
|
|
7161
|
+
!_ctx.viewMode ? (vue.openBlock(), vue.createBlock(_sfc_main$1_, {
|
|
7155
7162
|
key: 1,
|
|
7156
7163
|
errors: vue.unref(errors),
|
|
7157
7164
|
"hide-error-message": _ctx.hideErrorMessage || _ctx.disabled && !_ctx.showErrorMessageOnDisabled
|
|
7158
7165
|
}, null, 8, ["errors", "hide-error-message"])) : vue.createCommentVNode("", true)
|
|
7159
7166
|
], 64))
|
|
7160
|
-
], 42, _hoisted_1$
|
|
7167
|
+
], 42, _hoisted_1$1h)), [
|
|
7161
7168
|
[vue.unref(vClickOutside), () => togglePopup(false)]
|
|
7162
7169
|
]);
|
|
7163
7170
|
};
|
|
7164
7171
|
}
|
|
7165
7172
|
});
|
|
7166
|
-
const _hoisted_1$
|
|
7167
|
-
const _hoisted_2$
|
|
7168
|
-
const _sfc_main$
|
|
7173
|
+
const _hoisted_1$1g = { class: "bs-popup-select bs-layout-horizontal" };
|
|
7174
|
+
const _hoisted_2$Z = ["textContent"];
|
|
7175
|
+
const _sfc_main$1t = /* @__PURE__ */ vue.defineComponent({
|
|
7169
7176
|
__name: "BSPopupSelect",
|
|
7170
7177
|
props: {
|
|
7171
7178
|
name: {},
|
|
@@ -7188,13 +7195,13 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
7188
7195
|
emit("click");
|
|
7189
7196
|
};
|
|
7190
7197
|
return (_ctx, _cache) => {
|
|
7191
|
-
return vue.openBlock(), vue.createElementBlock("div", _hoisted_1$
|
|
7198
|
+
return vue.openBlock(), vue.createElementBlock("div", _hoisted_1$1g, [
|
|
7192
7199
|
_ctx.viewMode ? (vue.openBlock(), vue.createElementBlock("div", {
|
|
7193
7200
|
key: 0,
|
|
7194
7201
|
class: "view-mode",
|
|
7195
7202
|
textContent: vue.toDisplayString(label.value)
|
|
7196
|
-
}, null, 8, _hoisted_2$
|
|
7197
|
-
vue.createVNode(_sfc_main$
|
|
7203
|
+
}, null, 8, _hoisted_2$Z)) : (vue.openBlock(), vue.createElementBlock(vue.Fragment, { key: 1 }, [
|
|
7204
|
+
vue.createVNode(_sfc_main$1V, {
|
|
7198
7205
|
"model-value": label.value,
|
|
7199
7206
|
name: _ctx.name || "",
|
|
7200
7207
|
disabled: "",
|
|
@@ -7211,18 +7218,18 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
7211
7218
|
};
|
|
7212
7219
|
}
|
|
7213
7220
|
});
|
|
7214
|
-
const BSPopupSelect = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
7215
|
-
const _hoisted_1$
|
|
7221
|
+
const BSPopupSelect = /* @__PURE__ */ _export_sfc(_sfc_main$1t, [["__scopeId", "data-v-d74fd89c"]]);
|
|
7222
|
+
const _hoisted_1$1f = {
|
|
7216
7223
|
key: 0,
|
|
7217
7224
|
class: "view-mode bs-layout-horizontal gap-8 align-items-start"
|
|
7218
7225
|
};
|
|
7219
|
-
const _hoisted_2$
|
|
7226
|
+
const _hoisted_2$Y = ["textContent"];
|
|
7220
7227
|
const _hoisted_3$A = {
|
|
7221
7228
|
key: 1,
|
|
7222
7229
|
class: "input-area bs-layout-horizontal align-items-start"
|
|
7223
7230
|
};
|
|
7224
7231
|
const _hoisted_4$l = ["disabled", "maxlength", "name", "tabindex"];
|
|
7225
|
-
const _sfc_main$
|
|
7232
|
+
const _sfc_main$1s = /* @__PURE__ */ vue.defineComponent({
|
|
7226
7233
|
__name: "BSTextArea",
|
|
7227
7234
|
props: {
|
|
7228
7235
|
id: {},
|
|
@@ -7337,7 +7344,7 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
7337
7344
|
class: vue.normalizeClass([{ disabled: _ctx.disabled, modified: modified.value, error: vue.unref(errors).length > 0 }, "bs-text-area"]),
|
|
7338
7345
|
style: vue.normalizeStyle({ width: outerWidth.value, height: outerHeight.value })
|
|
7339
7346
|
}, [
|
|
7340
|
-
_ctx.viewMode ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_1$
|
|
7347
|
+
_ctx.viewMode ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_1$1f, [
|
|
7341
7348
|
(vue.openBlock(true), vue.createElementBlock(vue.Fragment, null, vue.renderList(vue.unref(componentUtil).toMultiLangTextArray(_ctx.prefix), (text) => {
|
|
7342
7349
|
return vue.withDirectives((vue.openBlock(), vue.createElementBlock("span", {
|
|
7343
7350
|
key: JSON.stringify(text),
|
|
@@ -7348,7 +7355,7 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
7348
7355
|
}), 128)),
|
|
7349
7356
|
vue.createElementVNode("div", {
|
|
7350
7357
|
textContent: vue.toDisplayString(vue.unref(stringValue))
|
|
7351
|
-
}, null, 8, _hoisted_2$
|
|
7358
|
+
}, null, 8, _hoisted_2$Y),
|
|
7352
7359
|
(vue.openBlock(true), vue.createElementBlock(vue.Fragment, null, vue.renderList(vue.unref(componentUtil).toMultiLangTextArray(_ctx.suffix), (text) => {
|
|
7353
7360
|
return vue.withDirectives((vue.openBlock(), vue.createElementBlock("span", {
|
|
7354
7361
|
key: JSON.stringify(text),
|
|
@@ -7396,7 +7403,7 @@ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "sy
|
|
|
7396
7403
|
]);
|
|
7397
7404
|
}), 128))
|
|
7398
7405
|
])),
|
|
7399
|
-
!_ctx.viewMode ? (vue.openBlock(), vue.createBlock(_sfc_main$
|
|
7406
|
+
!_ctx.viewMode ? (vue.openBlock(), vue.createBlock(_sfc_main$1_, {
|
|
7400
7407
|
key: 2,
|
|
7401
7408
|
errors: vue.unref(errors),
|
|
7402
7409
|
"hide-error-message": _ctx.hideErrorMessage || _ctx.disabled && !_ctx.showErrorMessageOnDisabled
|
|
@@ -28742,9 +28749,9 @@ img.ProseMirror-separator {
|
|
|
28742
28749
|
return ["tr", mergeAttributes(this.options.HTMLAttributes, HTMLAttributes), 0];
|
|
28743
28750
|
}
|
|
28744
28751
|
});
|
|
28745
|
-
const _hoisted_1$
|
|
28746
|
-
const _hoisted_2$
|
|
28747
|
-
const _sfc_main$
|
|
28752
|
+
const _hoisted_1$1e = { class: "tool-button-font-size bs-layout-horizontal align-items-center" };
|
|
28753
|
+
const _hoisted_2$X = ["disabled", "value"];
|
|
28754
|
+
const _sfc_main$1r = /* @__PURE__ */ vue.defineComponent({
|
|
28748
28755
|
__name: "ToolButtonFontSize",
|
|
28749
28756
|
props: {
|
|
28750
28757
|
editor: {},
|
|
@@ -28811,7 +28818,7 @@ img.ProseMirror-separator {
|
|
|
28811
28818
|
props.editor.on("selectionUpdate", refreshFontSize);
|
|
28812
28819
|
});
|
|
28813
28820
|
return (_ctx, _cache) => {
|
|
28814
|
-
return vue.openBlock(), vue.createElementBlock("div", _hoisted_1$
|
|
28821
|
+
return vue.openBlock(), vue.createElementBlock("div", _hoisted_1$1e, [
|
|
28815
28822
|
vue.withDirectives((vue.openBlock(), vue.createElementBlock("span", {
|
|
28816
28823
|
class: vue.normalizeClass([{ "bs-clickable": !_ctx.disabled }, "font-icon"]),
|
|
28817
28824
|
onClick: decrease
|
|
@@ -28830,7 +28837,7 @@ img.ProseMirror-separator {
|
|
|
28830
28837
|
value: fontSize.value,
|
|
28831
28838
|
type: "text",
|
|
28832
28839
|
onChange: setFontSize
|
|
28833
|
-
}, null, 40, _hoisted_2$
|
|
28840
|
+
}, null, 40, _hoisted_2$X),
|
|
28834
28841
|
vue.withDirectives((vue.openBlock(), vue.createElementBlock("span", {
|
|
28835
28842
|
class: vue.normalizeClass([{ "bs-clickable": !_ctx.disabled }, "font-icon"]),
|
|
28836
28843
|
onClick: increase
|
|
@@ -28848,10 +28855,10 @@ img.ProseMirror-separator {
|
|
|
28848
28855
|
};
|
|
28849
28856
|
}
|
|
28850
28857
|
});
|
|
28851
|
-
const ToolButtonFontSize = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
28852
|
-
const _hoisted_1$
|
|
28853
|
-
const _hoisted_2$
|
|
28854
|
-
const _sfc_main$
|
|
28858
|
+
const ToolButtonFontSize = /* @__PURE__ */ _export_sfc(_sfc_main$1r, [["__scopeId", "data-v-ef5774f0"]]);
|
|
28859
|
+
const _hoisted_1$1d = ["title"];
|
|
28860
|
+
const _hoisted_2$W = ["disabled", "value"];
|
|
28861
|
+
const _sfc_main$1q = /* @__PURE__ */ vue.defineComponent({
|
|
28855
28862
|
__name: "ToolButtonFontColor",
|
|
28856
28863
|
props: {
|
|
28857
28864
|
editor: {},
|
|
@@ -28883,12 +28890,12 @@ img.ProseMirror-separator {
|
|
|
28883
28890
|
value: color.value,
|
|
28884
28891
|
type: "color",
|
|
28885
28892
|
onChange: setColor
|
|
28886
|
-
}, null, 40, _hoisted_2$
|
|
28887
|
-
], 8, _hoisted_1$
|
|
28893
|
+
}, null, 40, _hoisted_2$W)
|
|
28894
|
+
], 8, _hoisted_1$1d);
|
|
28888
28895
|
};
|
|
28889
28896
|
}
|
|
28890
28897
|
});
|
|
28891
|
-
const ToolButtonFontColor = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
28898
|
+
const ToolButtonFontColor = /* @__PURE__ */ _export_sfc(_sfc_main$1q, [["__scopeId", "data-v-d556d8eb"]]);
|
|
28892
28899
|
var readFromCache;
|
|
28893
28900
|
var addToCache;
|
|
28894
28901
|
if (typeof WeakMap != "undefined") {
|
|
@@ -31493,9 +31500,9 @@ img.ProseMirror-separator {
|
|
|
31493
31500
|
bind: { editor }
|
|
31494
31501
|
});
|
|
31495
31502
|
};
|
|
31496
|
-
const _hoisted_1$
|
|
31497
|
-
const _hoisted_2$
|
|
31498
|
-
const _sfc_main$
|
|
31503
|
+
const _hoisted_1$1c = { class: "bs-layout-horizontal align-items-center" };
|
|
31504
|
+
const _hoisted_2$V = ["title"];
|
|
31505
|
+
const _sfc_main$1p = /* @__PURE__ */ vue.defineComponent({
|
|
31499
31506
|
__name: "ToolButtonTable",
|
|
31500
31507
|
props: {
|
|
31501
31508
|
editor: {},
|
|
@@ -31517,17 +31524,17 @@ img.ProseMirror-separator {
|
|
|
31517
31524
|
props.editor.on("selectionUpdate", refreshTable);
|
|
31518
31525
|
});
|
|
31519
31526
|
return (_ctx, _cache) => {
|
|
31520
|
-
return vue.openBlock(), vue.createElementBlock("div", _hoisted_1$
|
|
31527
|
+
return vue.openBlock(), vue.createElementBlock("div", _hoisted_1$1c, [
|
|
31521
31528
|
vue.createElementVNode("span", {
|
|
31522
31529
|
class: vue.normalizeClass([{ "bs-clickable": !_ctx.disabled }, "font-icon"]),
|
|
31523
31530
|
title: vue.unref(t$1)({ key: "bs.richtext.insertTable" }),
|
|
31524
31531
|
onClick: doInsertTable
|
|
31525
|
-
}, "table", 10, _hoisted_2$
|
|
31532
|
+
}, "table", 10, _hoisted_2$V)
|
|
31526
31533
|
]);
|
|
31527
31534
|
};
|
|
31528
31535
|
}
|
|
31529
31536
|
});
|
|
31530
|
-
const ToolButtonTable = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
31537
|
+
const ToolButtonTable = /* @__PURE__ */ _export_sfc(_sfc_main$1p, [["__scopeId", "data-v-537f70be"]]);
|
|
31531
31538
|
const inputRegex = /(?:^|\s)(!\[(.+|:?)]\((\S+)(?:(?:\s+)["'](\S+)["'])?\))$/;
|
|
31532
31539
|
const Image$1 = Node.create({
|
|
31533
31540
|
name: "image",
|
|
@@ -31676,9 +31683,9 @@ img.ProseMirror-separator {
|
|
|
31676
31683
|
bind: { editor }
|
|
31677
31684
|
});
|
|
31678
31685
|
};
|
|
31679
|
-
const _hoisted_1$
|
|
31680
|
-
const _hoisted_2$
|
|
31681
|
-
const _sfc_main$
|
|
31686
|
+
const _hoisted_1$1b = { class: "bs-layout-horizontal align-items-center" };
|
|
31687
|
+
const _hoisted_2$U = ["title"];
|
|
31688
|
+
const _sfc_main$1o = /* @__PURE__ */ vue.defineComponent({
|
|
31682
31689
|
__name: "ToolButtonImage",
|
|
31683
31690
|
props: {
|
|
31684
31691
|
editor: {},
|
|
@@ -31693,12 +31700,12 @@ img.ProseMirror-separator {
|
|
|
31693
31700
|
}
|
|
31694
31701
|
};
|
|
31695
31702
|
return (_ctx, _cache) => {
|
|
31696
|
-
return vue.openBlock(), vue.createElementBlock("div", _hoisted_1$
|
|
31703
|
+
return vue.openBlock(), vue.createElementBlock("div", _hoisted_1$1b, [
|
|
31697
31704
|
vue.createElementVNode("span", {
|
|
31698
31705
|
class: vue.normalizeClass([{ "bs-clickable": !_ctx.disabled }, "font-icon"]),
|
|
31699
31706
|
title: vue.unref(t$1)({ key: "bs.richtext.insertImage" }),
|
|
31700
31707
|
onClick: doInsertImage
|
|
31701
|
-
}, "image", 10, _hoisted_2$
|
|
31708
|
+
}, "image", 10, _hoisted_2$U)
|
|
31702
31709
|
]);
|
|
31703
31710
|
};
|
|
31704
31711
|
}
|
|
@@ -32043,9 +32050,9 @@ img.ProseMirror-separator {
|
|
|
32043
32050
|
bind: { editor }
|
|
32044
32051
|
});
|
|
32045
32052
|
};
|
|
32046
|
-
const _hoisted_1$
|
|
32047
|
-
const _hoisted_2$
|
|
32048
|
-
const _sfc_main$
|
|
32053
|
+
const _hoisted_1$1a = { class: "bs-layout-horizontal align-items-center" };
|
|
32054
|
+
const _hoisted_2$T = ["title"];
|
|
32055
|
+
const _sfc_main$1n = /* @__PURE__ */ vue.defineComponent({
|
|
32049
32056
|
__name: "ToolButtonYoutube",
|
|
32050
32057
|
props: {
|
|
32051
32058
|
editor: {},
|
|
@@ -32060,18 +32067,18 @@ img.ProseMirror-separator {
|
|
|
32060
32067
|
}
|
|
32061
32068
|
};
|
|
32062
32069
|
return (_ctx, _cache) => {
|
|
32063
|
-
return vue.openBlock(), vue.createElementBlock("div", _hoisted_1$
|
|
32070
|
+
return vue.openBlock(), vue.createElementBlock("div", _hoisted_1$1a, [
|
|
32064
32071
|
vue.createElementVNode("span", {
|
|
32065
32072
|
class: vue.normalizeClass([{ "bs-clickable": !_ctx.disabled }, "font-icon"]),
|
|
32066
32073
|
title: vue.unref(t$1)({ key: "bs.richtext.insertYoutube" }),
|
|
32067
32074
|
onClick: doInsertImage
|
|
32068
|
-
}, "youtube_activity", 10, _hoisted_2$
|
|
32075
|
+
}, "youtube_activity", 10, _hoisted_2$T)
|
|
32069
32076
|
]);
|
|
32070
32077
|
};
|
|
32071
32078
|
}
|
|
32072
32079
|
});
|
|
32073
|
-
const _hoisted_1$
|
|
32074
|
-
const _sfc_main$
|
|
32080
|
+
const _hoisted_1$19 = ["title"];
|
|
32081
|
+
const _sfc_main$1m = /* @__PURE__ */ vue.defineComponent({
|
|
32075
32082
|
__name: "ToolButtonLink",
|
|
32076
32083
|
props: {
|
|
32077
32084
|
editor: {},
|
|
@@ -32095,11 +32102,11 @@ img.ProseMirror-separator {
|
|
|
32095
32102
|
class: vue.normalizeClass([{ "bs-clickable": !_ctx.disabled }, "font-icon"]),
|
|
32096
32103
|
title: vue.unref(t$1)({ key: "bs.link" }),
|
|
32097
32104
|
onClick: showLinkProperties
|
|
32098
|
-
}, " link ", 10, _hoisted_1$
|
|
32105
|
+
}, " link ", 10, _hoisted_1$19);
|
|
32099
32106
|
};
|
|
32100
32107
|
}
|
|
32101
32108
|
});
|
|
32102
|
-
const _sfc_main$
|
|
32109
|
+
const _sfc_main$1l = /* @__PURE__ */ vue.defineComponent({
|
|
32103
32110
|
__name: "ToolButtonMaximize",
|
|
32104
32111
|
props: {
|
|
32105
32112
|
maximized: { type: Boolean }
|
|
@@ -32127,8 +32134,8 @@ img.ProseMirror-separator {
|
|
|
32127
32134
|
};
|
|
32128
32135
|
}
|
|
32129
32136
|
});
|
|
32130
|
-
const ToolButtonMaximize = /* @__PURE__ */ _export_sfc(_sfc_main$
|
|
32131
|
-
const _sfc_main$
|
|
32137
|
+
const ToolButtonMaximize = /* @__PURE__ */ _export_sfc(_sfc_main$1l, [["__scopeId", "data-v-c1655c12"]]);
|
|
32138
|
+
const _sfc_main$1k = /* @__PURE__ */ vue.defineComponent({
|
|
32132
32139
|
__name: "ToolButtonHeading",
|
|
32133
32140
|
props: {
|
|
32134
32141
|
disabled: { type: Boolean },
|
|
@@ -32156,7 +32163,7 @@ img.ProseMirror-separator {
|
|
|
32156
32163
|
}
|
|
32157
32164
|
};
|
|
32158
32165
|
return (_ctx, _cache) => {
|
|
32159
|
-
return vue.openBlock(), vue.createBlock(_sfc_main$
|
|
32166
|
+
return vue.openBlock(), vue.createBlock(_sfc_main$1Z, {
|
|
32160
32167
|
disabled: _ctx.disabled,
|
|
32161
32168
|
items,
|
|
32162
32169
|
"label-provider": (item) => item.caption,
|
|
@@ -32168,8 +32175,8 @@ img.ProseMirror-separator {
|
|
|
32168
32175
|
};
|
|
32169
32176
|
}
|
|
32170
32177
|
});
|
|
32171
|
-
const _hoisted_1$
|
|
32172
|
-
const _sfc_main$
|
|
32178
|
+
const _hoisted_1$18 = { class: "text-align tool-button-group bs-layout-horizontal" };
|
|
32179
|
+
const _sfc_main$1j = /* @__PURE__ */ vue.defineComponent({
|
|
32173
32180
|
__name: "ToolButtonTextAlign",
|
|
32174
32181
|
props: {
|
|
32175
32182
|
disabled: { type: Boolean },
|
|
@@ -32177,7 +32184,7 @@ img.ProseMirror-separator {
|
|
|
32177
32184
|
},
|
|
32178
32185
|
setup(__props) {
|
|
32179
32186
|
return (_ctx, _cache) => {
|
|
32180
|
-
return vue.openBlock(), vue.createElementBlock("div", _hoisted_1$
|
|
32187
|
+
return vue.openBlock(), vue.createElementBlock("div", _hoisted_1$18, [
|
|
32181
32188
|
vue.withDirectives((vue.openBlock(), vue.createElementBlock("div", {
|
|
32182
32189
|
class: vue.normalizeClass([{ active: _ctx.editor.isActive({ textAlign: "left" }), "bs-clickable": !_ctx.disabled }, "font-icon"]),
|
|
32183
32190
|
onClick: _cache[0] || (_cache[0] = ($event) => !_ctx.disabled && _ctx.editor.chain().focus().setTextAlign("left").run())
|
|
@@ -32221,8 +32228,8 @@ img.ProseMirror-separator {
|
|
|
32221
32228
|
};
|
|
32222
32229
|
}
|
|
32223
32230
|
});
|
|
32224
|
-
const _hoisted_1$
|
|
32225
|
-
const _sfc_main$
|
|
32231
|
+
const _hoisted_1$17 = { class: "font-style tool-button-group bs-layout-horizontal" };
|
|
32232
|
+
const _sfc_main$1i = /* @__PURE__ */ vue.defineComponent({
|
|
32226
32233
|
__name: "ToolButtonFontStyle",
|
|
32227
32234
|
props: {
|
|
32228
32235
|
disabled: { type: Boolean },
|
|
@@ -32230,7 +32237,7 @@ img.ProseMirror-separator {
|
|
|
32230
32237
|
},
|
|
32231
32238
|
setup(__props) {
|
|
32232
32239
|
return (_ctx, _cache) => {
|
|
32233
|
-
return vue.openBlock(), vue.createElementBlock("div", _hoisted_1$
|
|
32240
|
+
return vue.openBlock(), vue.createElementBlock("div", _hoisted_1$17, [
|
|
32234
32241
|
vue.withDirectives((vue.openBlock(), vue.createElementBlock("div", {
|
|
32235
32242
|
class: vue.normalizeClass([{ active: _ctx.editor.isActive("bold"), "bs-clickable": !_ctx.disabled }, "font-icon"]),
|
|
32236
32243
|
onClick: _cache[0] || (_cache[0] = ($event) => !_ctx.disabled && _ctx.editor.chain().focus().toggleBold().removeEmptyTextStyle().run())
|
|
@@ -32274,8 +32281,8 @@ img.ProseMirror-separator {
|
|
|
32274
32281
|
};
|
|
32275
32282
|
}
|
|
32276
32283
|
});
|
|
32277
|
-
const _hoisted_1$
|
|
32278
|
-
const _sfc_main$
|
|
32284
|
+
const _hoisted_1$16 = { class: "list-item tool-button-group bs-layout-horizontal" };
|
|
32285
|
+
const _sfc_main$1h = /* @__PURE__ */ vue.defineComponent({
|
|
32279
32286
|
__name: "ToolButtonListItem",
|
|
32280
32287
|
props: {
|
|
32281
32288
|
disabled: { type: Boolean },
|
|
@@ -32283,7 +32290,7 @@ img.ProseMirror-separator {
|
|
|
32283
32290
|
},
|
|
32284
32291
|
setup(__props) {
|
|
32285
32292
|
return (_ctx, _cache) => {
|
|
32286
|
-
return vue.openBlock(), vue.createElementBlock("div", _hoisted_1$
|
|
32293
|
+
return vue.openBlock(), vue.createElementBlock("div", _hoisted_1$16, [
|
|
32287
32294
|
vue.withDirectives((vue.openBlock(), vue.createElementBlock("div", {
|
|
32288
32295
|
class: vue.normalizeClass([{ active: _ctx.editor.isActive("bulletList"), "bs-clickable": !_ctx.disabled }, "font-icon"]),
|
|
32289
32296
|
onClick: _cache[0] || (_cache[0] = ($event) => !_ctx.disabled && _ctx.editor.chain().focus().toggleBulletList().run())
|
|
@@ -32470,9 +32477,9 @@ img.ProseMirror-separator {
|
|
|
32470
32477
|
bind: { editor }
|
|
32471
32478
|
});
|
|
32472
32479
|
};
|
|
32473
|
-
const _hoisted_1$
|
|
32474
|
-
const _hoisted_2$
|
|
32475
|
-
const _sfc_main$
|
|
32480
|
+
const _hoisted_1$15 = { class: "bs-layout-horizontal align-items-center" };
|
|
32481
|
+
const _hoisted_2$S = ["title"];
|
|
32482
|
+
const _sfc_main$1g = /* @__PURE__ */ vue.defineComponent({
|
|
32476
32483
|
__name: "ToolButtonVideo",
|
|
32477
32484
|
props: {
|
|
32478
32485
|
editor: {},
|
|
@@ -32487,20 +32494,20 @@ img.ProseMirror-separator {
|
|
|
32487
32494
|
}
|
|
32488
32495
|
};
|
|
32489
32496
|
return (_ctx, _cache) => {
|
|
32490
|
-
return vue.openBlock(), vue.createElementBlock("div", _hoisted_1$
|
|
32497
|
+
return vue.openBlock(), vue.createElementBlock("div", _hoisted_1$15, [
|
|
32491
32498
|
vue.createElementVNode("span", {
|
|
32492
32499
|
class: vue.normalizeClass([{ "bs-clickable": !_ctx.disabled }, "font-icon"]),
|
|
32493
32500
|
title: vue.unref(t$1)({ key: "bs.richtext.insertVideo" }),
|
|
32494
32501
|
onClick: doInsertVideo
|
|
32495
|
-
}, "movie", 10, _hoisted_2$
|
|
32502
|
+
}, "movie", 10, _hoisted_2$S)
|
|
32496
32503
|
]);
|
|
32497
32504
|
};
|
|
32498
32505
|
}
|
|
32499
32506
|
});
|
|
32500
|
-
const _hoisted_1$
|
|
32501
|
-
const _hoisted_2$
|
|
32507
|
+
const _hoisted_1$14 = { class: "rich-text-toolbar bs-layout-horizontal align-items-center min-w-512" };
|
|
32508
|
+
const _hoisted_2$R = { class: "bs-layout-horizontal flex-grow-1 h-full gap-4 left-buttons" };
|
|
32502
32509
|
const _hoisted_3$z = { class: "bs-layout-horizontal right-buttons" };
|
|
32503
|
-
const _sfc_main$
|
|
32510
|
+
const _sfc_main$1f = /* @__PURE__ */ vue.defineComponent({
|
|
32504
32511
|
__name: "RichTextToolbar",
|
|
32505
32512
|
props: {
|
|
32506
32513
|
editor: {},
|
|
@@ -32515,27 +32522,27 @@ img.ProseMirror-separator {
|
|
|
32515
32522
|
return props.toolButtons.map((toolButton) => {
|
|
32516
32523
|
switch (toolButton) {
|
|
32517
32524
|
case "Heading":
|
|
32518
|
-
return _sfc_main$
|
|
32525
|
+
return _sfc_main$1k;
|
|
32519
32526
|
case "FontSize":
|
|
32520
32527
|
return ToolButtonFontSize;
|
|
32521
32528
|
case "FontColor":
|
|
32522
32529
|
return ToolButtonFontColor;
|
|
32523
32530
|
case "FontStyle":
|
|
32524
|
-
return _sfc_main$1h;
|
|
32525
|
-
case "TextAlign":
|
|
32526
32531
|
return _sfc_main$1i;
|
|
32532
|
+
case "TextAlign":
|
|
32533
|
+
return _sfc_main$1j;
|
|
32527
32534
|
case "ListItem":
|
|
32528
|
-
return _sfc_main$
|
|
32535
|
+
return _sfc_main$1h;
|
|
32529
32536
|
case "Link":
|
|
32530
|
-
return _sfc_main$
|
|
32537
|
+
return _sfc_main$1m;
|
|
32531
32538
|
case "Table":
|
|
32532
32539
|
return ToolButtonTable;
|
|
32533
32540
|
case "Image":
|
|
32534
|
-
return _sfc_main$
|
|
32541
|
+
return _sfc_main$1o;
|
|
32535
32542
|
case "Video":
|
|
32536
|
-
return _sfc_main$
|
|
32543
|
+
return _sfc_main$1g;
|
|
32537
32544
|
case "Youtube":
|
|
32538
|
-
return _sfc_main$
|
|
32545
|
+
return _sfc_main$1n;
|
|
32539
32546
|
default:
|
|
32540
32547
|
return toolButton;
|
|
32541
32548
|
}
|
|
@@ -32543,8 +32550,8 @@ img.ProseMirror-separator {
|
|
|
32543
32550
|
});
|
|
32544
32551
|
const emit = __emit;
|
|
32545
32552
|
return (_ctx, _cache) => {
|
|
32546
|
-
return vue.openBlock(), vue.createElementBlock("div", _hoisted_1$
|
|
32547
|
-
vue.createElementVNode("div", _hoisted_2$
|
|
32553
|
+
return vue.openBlock(), vue.createElementBlock("div", _hoisted_1$14, [
|
|
32554
|
+
vue.createElementVNode("div", _hoisted_2$R, [
|
|
32548
32555
|
vue.renderSlot(_ctx.$slots, "toolbarPrefix"),
|
|
32549
32556
|
(vue.openBlock(true), vue.createElementBlock(vue.Fragment, null, vue.renderList(toolComponents.value, (toolButton) => {
|
|
32550
32557
|
return vue.openBlock(), vue.createBlock(vue.resolveDynamicComponent(toolButton), {
|
|
@@ -34436,11 +34443,11 @@ img.ProseMirror-separator {
|
|
|
34436
34443
|
};
|
|
34437
34444
|
}
|
|
34438
34445
|
});
|
|
34439
|
-
const _hoisted_1$
|
|
34440
|
-
const _hoisted_2$
|
|
34446
|
+
const _hoisted_1$13 = ["innerHTML"];
|
|
34447
|
+
const _hoisted_2$Q = { class: "editor-container" };
|
|
34441
34448
|
const WRAP_BEGIN = '<div class="rich-text-content">';
|
|
34442
34449
|
const WRAP_END = "</div>";
|
|
34443
|
-
const _sfc_main$
|
|
34450
|
+
const _sfc_main$1e = /* @__PURE__ */ vue.defineComponent({
|
|
34444
34451
|
__name: "BSRichText",
|
|
34445
34452
|
props: {
|
|
34446
34453
|
modelValue: { default: "" },
|
|
@@ -34678,7 +34685,7 @@ img.ProseMirror-separator {
|
|
|
34678
34685
|
key: 0,
|
|
34679
34686
|
class: "view-mode user-text",
|
|
34680
34687
|
innerHTML: _ctx.modelValue
|
|
34681
|
-
}, null, 8, _hoisted_1$
|
|
34688
|
+
}, null, 8, _hoisted_1$13)) : (vue.openBlock(), vue.createElementBlock(vue.Fragment, { key: 1 }, [
|
|
34682
34689
|
vue.createElementVNode("div", {
|
|
34683
34690
|
ref_key: "field",
|
|
34684
34691
|
ref: field,
|
|
@@ -34686,7 +34693,7 @@ img.ProseMirror-separator {
|
|
|
34686
34693
|
class: "input-area bs-layout-vertical",
|
|
34687
34694
|
role: "textbox"
|
|
34688
34695
|
}, [
|
|
34689
|
-
vue.unref(editor) ? (vue.openBlock(), vue.createBlock(_sfc_main$
|
|
34696
|
+
vue.unref(editor) ? (vue.openBlock(), vue.createBlock(_sfc_main$1f, {
|
|
34690
34697
|
key: 0,
|
|
34691
34698
|
disabled: _ctx.disabled,
|
|
34692
34699
|
editor: vue.unref(editor),
|
|
@@ -34699,7 +34706,7 @@ img.ProseMirror-separator {
|
|
|
34699
34706
|
]),
|
|
34700
34707
|
_: 3
|
|
34701
34708
|
}, 8, ["disabled", "editor", "maximized", "tool-buttons"])) : vue.createCommentVNode("", true),
|
|
34702
|
-
vue.createElementVNode("div", _hoisted_2$
|
|
34709
|
+
vue.createElementVNode("div", _hoisted_2$Q, [
|
|
34703
34710
|
vue.createElementVNode("iframe", {
|
|
34704
34711
|
ref_key: "iframeRef",
|
|
34705
34712
|
ref: iframeRef,
|
|
@@ -34719,7 +34726,7 @@ img.ProseMirror-separator {
|
|
|
34719
34726
|
], 8, ["to"])) : vue.createCommentVNode("", true)
|
|
34720
34727
|
])
|
|
34721
34728
|
], 4),
|
|
34722
|
-
!_ctx.viewMode ? (vue.openBlock(), vue.createBlock(_sfc_main$
|
|
34729
|
+
!_ctx.viewMode ? (vue.openBlock(), vue.createBlock(_sfc_main$1_, {
|
|
34723
34730
|
key: 0,
|
|
34724
34731
|
errors: vue.unref(errors),
|
|
34725
34732
|
"hide-error-message": _ctx.hideErrorMessage
|
|
@@ -34854,8 +34861,8 @@ img.ProseMirror-separator {
|
|
|
34854
34861
|
const kb = size / 1024;
|
|
34855
34862
|
return mb < 1 ? `${kb.toFixed(kb % 1 === 0 ? 0 : 1)}KB` : `${mb.toFixed(mb % 1 === 0 ? 0 : 1)}MB`;
|
|
34856
34863
|
};
|
|
34857
|
-
const _hoisted_1$
|
|
34858
|
-
const _hoisted_2$
|
|
34864
|
+
const _hoisted_1$12 = ["poster"];
|
|
34865
|
+
const _hoisted_2$P = ["src"];
|
|
34859
34866
|
const _hoisted_3$y = ["alt", "src"];
|
|
34860
34867
|
const _hoisted_4$k = ["alt", "src"];
|
|
34861
34868
|
const _hoisted_5$b = ["href"];
|
|
@@ -34863,7 +34870,7 @@ img.ProseMirror-separator {
|
|
|
34863
34870
|
key: 7,
|
|
34864
34871
|
class: "font-icon bottom-2 left-2 button"
|
|
34865
34872
|
};
|
|
34866
|
-
const _sfc_main$
|
|
34873
|
+
const _sfc_main$1d = /* @__PURE__ */ vue.defineComponent({
|
|
34867
34874
|
__name: "BSMediaPreview",
|
|
34868
34875
|
props: {
|
|
34869
34876
|
file: {},
|
|
@@ -34875,7 +34882,7 @@ img.ProseMirror-separator {
|
|
|
34875
34882
|
maxWidth: {},
|
|
34876
34883
|
mediaObjectUrlStore: {}
|
|
34877
34884
|
},
|
|
34878
|
-
emits: ["removeImage", "thumbnailUploaded"],
|
|
34885
|
+
emits: ["removeImage", "thumbnailUploaded", "preview"],
|
|
34879
34886
|
setup(__props, { emit: __emit }) {
|
|
34880
34887
|
const props = __props;
|
|
34881
34888
|
const emit = __emit;
|
|
@@ -34946,7 +34953,16 @@ img.ProseMirror-separator {
|
|
|
34946
34953
|
}
|
|
34947
34954
|
}
|
|
34948
34955
|
};
|
|
34949
|
-
|
|
34956
|
+
const preview = () => {
|
|
34957
|
+
if (props.file.mediaType === "Youtube") {
|
|
34958
|
+
window.open(props.file.fileUrl, "_blank");
|
|
34959
|
+
return;
|
|
34960
|
+
}
|
|
34961
|
+
emit("preview");
|
|
34962
|
+
};
|
|
34963
|
+
vue.onUnmounted(() => {
|
|
34964
|
+
internalMediaObjectUrlStore.revokeAll();
|
|
34965
|
+
});
|
|
34950
34966
|
return (_ctx, _cache) => {
|
|
34951
34967
|
return fileUrl.value ? (vue.openBlock(), vue.createElementBlock("div", {
|
|
34952
34968
|
key: 0,
|
|
@@ -34960,8 +34976,8 @@ img.ProseMirror-separator {
|
|
|
34960
34976
|
poster: thumbnailUrl.value,
|
|
34961
34977
|
style: vue.normalizeStyle({ width: _ctx.width, height: _ctx.height, maxWidth: _ctx.maxWidth })
|
|
34962
34978
|
}, [
|
|
34963
|
-
vue.createElementVNode("source", { src: fileUrl.value }, null, 8, _hoisted_2$
|
|
34964
|
-
], 12, _hoisted_1$
|
|
34979
|
+
vue.createElementVNode("source", { src: fileUrl.value }, null, 8, _hoisted_2$P)
|
|
34980
|
+
], 12, _hoisted_1$12)) : _ctx.file.mediaType === "Youtube" ? (vue.openBlock(), vue.createElementBlock("img", {
|
|
34965
34981
|
key: 1,
|
|
34966
34982
|
alt: _ctx.file.altText,
|
|
34967
34983
|
src: youtubePreviewImage.value,
|
|
@@ -35014,7 +35030,8 @@ img.ProseMirror-separator {
|
|
|
35014
35030
|
key: 5,
|
|
35015
35031
|
href: fileUrl.value,
|
|
35016
35032
|
class: "bs-clickable font-icon button show-on-hover bottom-2 right-2",
|
|
35017
|
-
target: "_blank"
|
|
35033
|
+
target: "_blank",
|
|
35034
|
+
onClick: vue.withModifiers(preview, ["prevent"])
|
|
35018
35035
|
}, _cache[2] || (_cache[2] = [
|
|
35019
35036
|
vue.createTextVNode("zoom_in")
|
|
35020
35037
|
]), 8, _hoisted_5$b)), [
|
|
@@ -35043,6 +35060,96 @@ img.ProseMirror-separator {
|
|
|
35043
35060
|
};
|
|
35044
35061
|
}
|
|
35045
35062
|
});
|
|
35063
|
+
const _hoisted_1$11 = ["src"];
|
|
35064
|
+
const _hoisted_2$O = ["alt", "src"];
|
|
35065
|
+
const _sfc_main$1c = /* @__PURE__ */ vue.defineComponent({
|
|
35066
|
+
__name: "BSMediaPreviewOverlay",
|
|
35067
|
+
props: {
|
|
35068
|
+
files: {},
|
|
35069
|
+
startIndex: { default: 0 },
|
|
35070
|
+
preload: { type: Boolean, default: false },
|
|
35071
|
+
visible: { type: Boolean }
|
|
35072
|
+
},
|
|
35073
|
+
emits: ["close"],
|
|
35074
|
+
setup(__props, { emit: __emit }) {
|
|
35075
|
+
const props = __props;
|
|
35076
|
+
const emit = __emit;
|
|
35077
|
+
const resolveUrl = (url) => blueseaConfig.fileUrlResolver ? blueseaConfig.fileUrlResolver(url) : url;
|
|
35078
|
+
const currentIndex = vue.ref(props.startIndex);
|
|
35079
|
+
const imageIndices = vue.computed(
|
|
35080
|
+
() => props.files.map((_, i2) => i2).filter((i2) => props.files[i2].mediaType === "Image")
|
|
35081
|
+
);
|
|
35082
|
+
const currentImagePosition = vue.computed(() => imageIndices.value.indexOf(currentIndex.value));
|
|
35083
|
+
const hasPrevImage = vue.computed(() => currentImagePosition.value > 0);
|
|
35084
|
+
const hasNextImage = vue.computed(() => currentImagePosition.value < imageIndices.value.length - 1);
|
|
35085
|
+
const prevImage = () => {
|
|
35086
|
+
const pos = currentImagePosition.value;
|
|
35087
|
+
if (pos > 0) currentIndex.value = imageIndices.value[pos - 1];
|
|
35088
|
+
};
|
|
35089
|
+
const nextImage = () => {
|
|
35090
|
+
const pos = currentImagePosition.value;
|
|
35091
|
+
if (pos < imageIndices.value.length - 1) currentIndex.value = imageIndices.value[pos + 1];
|
|
35092
|
+
};
|
|
35093
|
+
const onKeydown = (e) => {
|
|
35094
|
+
if (e.key === "Escape") emit("close");
|
|
35095
|
+
else if (e.key === "ArrowLeft") prevImage();
|
|
35096
|
+
else if (e.key === "ArrowRight") nextImage();
|
|
35097
|
+
};
|
|
35098
|
+
vue.watch(() => props.visible, (v) => {
|
|
35099
|
+
if (v) {
|
|
35100
|
+
currentIndex.value = props.startIndex;
|
|
35101
|
+
document.addEventListener("keydown", onKeydown);
|
|
35102
|
+
} else {
|
|
35103
|
+
document.removeEventListener("keydown", onKeydown);
|
|
35104
|
+
}
|
|
35105
|
+
}, { immediate: true });
|
|
35106
|
+
vue.onUnmounted(() => document.removeEventListener("keydown", onKeydown));
|
|
35107
|
+
return (_ctx, _cache) => {
|
|
35108
|
+
return vue.openBlock(), vue.createBlock(vue.Teleport, { to: "body" }, [
|
|
35109
|
+
_ctx.preload || _ctx.visible ? vue.withDirectives((vue.openBlock(), vue.createElementBlock("div", {
|
|
35110
|
+
key: 0,
|
|
35111
|
+
class: "bs-media-overlay",
|
|
35112
|
+
onClick: _cache[3] || (_cache[3] = vue.withModifiers(($event) => emit("close"), ["self"]))
|
|
35113
|
+
}, [
|
|
35114
|
+
vue.createElementVNode("span", {
|
|
35115
|
+
class: "font-icon bs-media-overlay-close bs-clickable",
|
|
35116
|
+
onClick: _cache[0] || (_cache[0] = ($event) => emit("close"))
|
|
35117
|
+
}, "close"),
|
|
35118
|
+
imageIndices.value.length > 1 ? (vue.openBlock(), vue.createElementBlock("span", {
|
|
35119
|
+
key: 0,
|
|
35120
|
+
class: vue.normalizeClass([{ "bs-media-overlay-nav-disabled": !hasPrevImage.value }, "font-icon bs-media-overlay-nav bs-media-overlay-prev bs-clickable"]),
|
|
35121
|
+
onClick: _cache[1] || (_cache[1] = vue.withModifiers(($event) => hasPrevImage.value && prevImage(), ["stop"]))
|
|
35122
|
+
}, "chevron_left", 2)) : vue.createCommentVNode("", true),
|
|
35123
|
+
(vue.openBlock(true), vue.createElementBlock(vue.Fragment, null, vue.renderList(_ctx.files, (file, idx) => {
|
|
35124
|
+
return vue.openBlock(), vue.createElementBlock(vue.Fragment, { key: idx }, [
|
|
35125
|
+
file.mediaType === "Video" && idx === currentIndex.value ? (vue.openBlock(), vue.createElementBlock("video", {
|
|
35126
|
+
key: 0,
|
|
35127
|
+
src: resolveUrl(file.fileUrl),
|
|
35128
|
+
autoplay: "",
|
|
35129
|
+
class: "bs-media-overlay-media",
|
|
35130
|
+
controls: ""
|
|
35131
|
+
}, null, 8, _hoisted_1$11)) : file.mediaType === "Image" ? vue.withDirectives((vue.openBlock(), vue.createElementBlock("img", {
|
|
35132
|
+
key: 1,
|
|
35133
|
+
alt: file.altText,
|
|
35134
|
+
src: resolveUrl(file.fileUrl),
|
|
35135
|
+
class: "bs-media-overlay-media"
|
|
35136
|
+
}, null, 8, _hoisted_2$O)), [
|
|
35137
|
+
[vue.vShow, idx === currentIndex.value]
|
|
35138
|
+
]) : vue.createCommentVNode("", true)
|
|
35139
|
+
], 64);
|
|
35140
|
+
}), 128)),
|
|
35141
|
+
imageIndices.value.length > 1 ? (vue.openBlock(), vue.createElementBlock("span", {
|
|
35142
|
+
key: 1,
|
|
35143
|
+
class: vue.normalizeClass([{ "bs-media-overlay-nav-disabled": !hasNextImage.value }, "font-icon bs-media-overlay-nav bs-media-overlay-next bs-clickable"]),
|
|
35144
|
+
onClick: _cache[2] || (_cache[2] = vue.withModifiers(($event) => hasNextImage.value && nextImage(), ["stop"]))
|
|
35145
|
+
}, "chevron_right", 2)) : vue.createCommentVNode("", true)
|
|
35146
|
+
], 512)), [
|
|
35147
|
+
[vue.vShow, _ctx.visible]
|
|
35148
|
+
]) : vue.createCommentVNode("", true)
|
|
35149
|
+
]);
|
|
35150
|
+
};
|
|
35151
|
+
}
|
|
35152
|
+
});
|
|
35046
35153
|
const _hoisted_1$10 = ["data-field-name"];
|
|
35047
35154
|
const _hoisted_2$N = {
|
|
35048
35155
|
key: 1,
|
|
@@ -35067,6 +35174,7 @@ img.ProseMirror-separator {
|
|
|
35067
35174
|
supportTypes: { default: () => ["Image"] },
|
|
35068
35175
|
showPreviewButton: { type: Boolean, default: true },
|
|
35069
35176
|
disableRightClick: { type: Boolean },
|
|
35177
|
+
preloadOverlay: { type: Boolean },
|
|
35070
35178
|
multiple: { type: Boolean },
|
|
35071
35179
|
validationMessageRequired: {},
|
|
35072
35180
|
validationMessageMaxFileSize: {},
|
|
@@ -35076,7 +35184,8 @@ img.ProseMirror-separator {
|
|
|
35076
35184
|
hideErrorMessage: { type: Boolean },
|
|
35077
35185
|
showErrorMessageOnDisabled: { type: Boolean },
|
|
35078
35186
|
imageNo: { default: 0 },
|
|
35079
|
-
mediaObjectUrlStore: {}
|
|
35187
|
+
mediaObjectUrlStore: {},
|
|
35188
|
+
onOpenPreview: {}
|
|
35080
35189
|
},
|
|
35081
35190
|
emits: ["update:modelValue", "multipleFiles", "multipleUris"],
|
|
35082
35191
|
setup(__props, { emit: __emit }) {
|
|
@@ -35089,6 +35198,14 @@ img.ProseMirror-separator {
|
|
|
35089
35198
|
return result.join("|");
|
|
35090
35199
|
});
|
|
35091
35200
|
const field = vue.ref();
|
|
35201
|
+
const overlayOpen = vue.ref(false);
|
|
35202
|
+
const handlePreview = () => {
|
|
35203
|
+
if (props.onOpenPreview) {
|
|
35204
|
+
props.onOpenPreview();
|
|
35205
|
+
} else {
|
|
35206
|
+
overlayOpen.value = true;
|
|
35207
|
+
}
|
|
35208
|
+
};
|
|
35092
35209
|
const chooseImage = () => {
|
|
35093
35210
|
var _a2;
|
|
35094
35211
|
if (validationDisabled.value) {
|
|
@@ -35254,20 +35371,29 @@ img.ProseMirror-separator {
|
|
|
35254
35371
|
[vue.unref(vT), _ctx.caption]
|
|
35255
35372
|
])
|
|
35256
35373
|
], 4),
|
|
35257
|
-
_ctx.modelValue && _ctx.modelValue.fileUrl ? (vue.openBlock(), vue.
|
|
35258
|
-
|
|
35259
|
-
|
|
35260
|
-
|
|
35261
|
-
|
|
35262
|
-
|
|
35263
|
-
|
|
35264
|
-
|
|
35265
|
-
|
|
35266
|
-
|
|
35267
|
-
|
|
35268
|
-
|
|
35269
|
-
|
|
35270
|
-
|
|
35374
|
+
_ctx.modelValue && _ctx.modelValue.fileUrl ? (vue.openBlock(), vue.createElementBlock(vue.Fragment, { key: 0 }, [
|
|
35375
|
+
vue.createVNode(_sfc_main$1d, {
|
|
35376
|
+
"disable-right-click": _ctx.disableRightClick,
|
|
35377
|
+
file: _ctx.modelValue,
|
|
35378
|
+
height: _ctx.imageHeight,
|
|
35379
|
+
"max-width": _ctx.maxImageWidth,
|
|
35380
|
+
"media-object-url-store": _ctx.mediaObjectUrlStore,
|
|
35381
|
+
"show-delete-button": !validationDisabled.value,
|
|
35382
|
+
"show-preview-button": _ctx.showPreviewButton,
|
|
35383
|
+
width: _ctx.imageWidth,
|
|
35384
|
+
class: "image-box",
|
|
35385
|
+
onPreview: handlePreview,
|
|
35386
|
+
onRemoveImage: removeImage,
|
|
35387
|
+
onThumbnailUploaded: changeThumbnail
|
|
35388
|
+
}, null, 8, ["disable-right-click", "file", "height", "max-width", "media-object-url-store", "show-delete-button", "show-preview-button", "width"]),
|
|
35389
|
+
!_ctx.onOpenPreview && (_ctx.preloadOverlay || overlayOpen.value) ? (vue.openBlock(), vue.createBlock(_sfc_main$1c, {
|
|
35390
|
+
key: 0,
|
|
35391
|
+
files: _ctx.modelValue ? [_ctx.modelValue] : [],
|
|
35392
|
+
preload: _ctx.preloadOverlay,
|
|
35393
|
+
visible: overlayOpen.value,
|
|
35394
|
+
onClose: _cache[0] || (_cache[0] = ($event) => overlayOpen.value = false)
|
|
35395
|
+
}, null, 8, ["files", "preload", "visible"])) : vue.createCommentVNode("", true)
|
|
35396
|
+
], 64)) : (vue.openBlock(), vue.createElementBlock("div", _hoisted_2$N, [
|
|
35271
35397
|
vue.createElementVNode("div", {
|
|
35272
35398
|
class: vue.normalizeClass([{ dropping: dropping.value }, "upload-btn-wrapper bs-layout-vertical flex-align-center justify-content-center"]),
|
|
35273
35399
|
style: vue.normalizeStyle({ width: _ctx.uploadWidth, height: _ctx.imageHeight }),
|
|
@@ -35280,7 +35406,7 @@ img.ProseMirror-separator {
|
|
|
35280
35406
|
vue.withDirectives((vue.openBlock(), vue.createElementBlock("div", {
|
|
35281
35407
|
class: vue.normalizeClass([{ "bs-clickable": !validationDisabled.value, disabled: _ctx.disabled }, "upload-btn"]),
|
|
35282
35408
|
onClick: chooseImage
|
|
35283
|
-
}, _cache[
|
|
35409
|
+
}, _cache[1] || (_cache[1] = [
|
|
35284
35410
|
vue.createElementVNode("span", { class: "font-icon" }, "upload", -1)
|
|
35285
35411
|
]), 2)), [
|
|
35286
35412
|
[
|
|
@@ -35294,7 +35420,7 @@ img.ProseMirror-separator {
|
|
|
35294
35420
|
key: 0,
|
|
35295
35421
|
class: vue.normalizeClass([{ "bs-clickable": !validationDisabled.value, disabled: _ctx.disabled }, "youtube-btn"]),
|
|
35296
35422
|
onClick: enterYoutubeUrl
|
|
35297
|
-
}, _cache[
|
|
35423
|
+
}, _cache[2] || (_cache[2] = [
|
|
35298
35424
|
vue.createElementVNode("span", { class: "font-icon" }, "youtube_activity", -1)
|
|
35299
35425
|
]), 2)), [
|
|
35300
35426
|
[
|
|
@@ -35320,7 +35446,7 @@ img.ProseMirror-separator {
|
|
|
35320
35446
|
onChange: imageSelected
|
|
35321
35447
|
}, null, 40, _hoisted_3$x)
|
|
35322
35448
|
], 2),
|
|
35323
|
-
!_ctx.viewMode ? (vue.openBlock(), vue.createBlock(_sfc_main$
|
|
35449
|
+
!_ctx.viewMode ? (vue.openBlock(), vue.createBlock(_sfc_main$1_, {
|
|
35324
35450
|
key: 0,
|
|
35325
35451
|
class: vue.normalizeClass({ "text-nowrap": !_ctx.wrapErrorMessage }),
|
|
35326
35452
|
errors: vue.unref(errors),
|
|
@@ -35488,6 +35614,7 @@ img.ProseMirror-separator {
|
|
|
35488
35614
|
supportTypes: { default: () => ["Image"] },
|
|
35489
35615
|
showPreviewButton: { type: Boolean, default: true },
|
|
35490
35616
|
disableRightClick: { type: Boolean },
|
|
35617
|
+
preloadOverlay: { type: Boolean },
|
|
35491
35618
|
validationMessageRequired: {},
|
|
35492
35619
|
validationMessageMaxFileSize: {},
|
|
35493
35620
|
extraValidationRules: {},
|
|
@@ -35597,6 +35724,14 @@ img.ProseMirror-separator {
|
|
|
35597
35724
|
});
|
|
35598
35725
|
const modified = vue.computed(() => !!(savePointHandler == null ? void 0 : savePointHandler.isModified(props.modelValue)));
|
|
35599
35726
|
vue.onBeforeUnmount(() => savePoint == null ? void 0 : savePoint.unregisterField(field));
|
|
35727
|
+
const overlayOpen = vue.ref(false);
|
|
35728
|
+
const previewStartIndex = vue.ref(0);
|
|
35729
|
+
const imageFiles = vue.computed(() => props.modelValue.filter((f) => f.mediaType === "Image"));
|
|
35730
|
+
const openPreview = (index) => {
|
|
35731
|
+
const file = props.modelValue[index];
|
|
35732
|
+
previewStartIndex.value = imageFiles.value.indexOf(file);
|
|
35733
|
+
overlayOpen.value = true;
|
|
35734
|
+
};
|
|
35600
35735
|
const isDroppable = (dndContext2, _target) => {
|
|
35601
35736
|
var _a2;
|
|
35602
35737
|
return ((_a2 = dndContext2.sourceElement.parentElement) == null ? void 0 : _a2.parentElement) === field.value;
|
|
@@ -35636,12 +35771,14 @@ img.ProseMirror-separator {
|
|
|
35636
35771
|
"media-object-url-store": _ctx.mediaObjectUrlStore,
|
|
35637
35772
|
"model-value": image,
|
|
35638
35773
|
name: `${_ctx.name}_${index}`,
|
|
35774
|
+
"on-open-preview": image.mediaType === "Image" ? () => openPreview(index) : void 0,
|
|
35775
|
+
"preload-overlay": _ctx.preloadOverlay,
|
|
35639
35776
|
"show-preview-button": _ctx.showPreviewButton,
|
|
35640
35777
|
"upload-width": _ctx.uploadWidth,
|
|
35641
35778
|
"view-mode": _ctx.viewMode || _ctx.disabled,
|
|
35642
35779
|
"ignore-save-point": "",
|
|
35643
35780
|
"onUpdate:modelValue": ($event) => removeFile(image, index)
|
|
35644
|
-
}, null, 8, ["class", "disable-right-click", "image-height", "image-width", "max-image-width", "media-object-url-store", "model-value", "name", "show-preview-button", "upload-width", "view-mode", "onUpdate:modelValue"])
|
|
35781
|
+
}, null, 8, ["class", "disable-right-click", "image-height", "image-width", "max-image-width", "media-object-url-store", "model-value", "name", "on-open-preview", "preload-overlay", "show-preview-button", "upload-width", "view-mode", "onUpdate:modelValue"])
|
|
35645
35782
|
])), [
|
|
35646
35783
|
[vue.unref(vDragSupport$1), { draggable: _ctx.enableDraggableOrder }],
|
|
35647
35784
|
[vue.unref(vDropSupport$1), {
|
|
@@ -35675,16 +35812,24 @@ img.ProseMirror-separator {
|
|
|
35675
35812
|
])), [
|
|
35676
35813
|
[vue.unref(vParentDropSupport), { droppable: _ctx.enableDraggableOrder, dropHandler }]
|
|
35677
35814
|
]),
|
|
35678
|
-
!_ctx.viewMode ? (vue.openBlock(), vue.createBlock(_sfc_main$
|
|
35815
|
+
!_ctx.viewMode ? (vue.openBlock(), vue.createBlock(_sfc_main$1_, {
|
|
35679
35816
|
key: 0,
|
|
35680
35817
|
errors: vue.unref(errors),
|
|
35681
35818
|
"hide-error-message": _ctx.hideErrorMessage
|
|
35682
|
-
}, null, 8, ["errors", "hide-error-message"])) : vue.createCommentVNode("", true)
|
|
35819
|
+
}, null, 8, ["errors", "hide-error-message"])) : vue.createCommentVNode("", true),
|
|
35820
|
+
_ctx.preloadOverlay && imageFiles.value.length > 0 || overlayOpen.value ? (vue.openBlock(), vue.createBlock(_sfc_main$1c, {
|
|
35821
|
+
key: 1,
|
|
35822
|
+
files: imageFiles.value,
|
|
35823
|
+
preload: _ctx.preloadOverlay,
|
|
35824
|
+
"start-index": previewStartIndex.value,
|
|
35825
|
+
visible: overlayOpen.value,
|
|
35826
|
+
onClose: _cache[0] || (_cache[0] = ($event) => overlayOpen.value = false)
|
|
35827
|
+
}, null, 8, ["files", "preload", "start-index", "visible"])) : vue.createCommentVNode("", true)
|
|
35683
35828
|
], 10, _hoisted_1$$);
|
|
35684
35829
|
};
|
|
35685
35830
|
}
|
|
35686
35831
|
});
|
|
35687
|
-
const BSMultiImageUpload = /* @__PURE__ */ _export_sfc(_sfc_main$1a, [["__scopeId", "data-v-
|
|
35832
|
+
const BSMultiImageUpload = /* @__PURE__ */ _export_sfc(_sfc_main$1a, [["__scopeId", "data-v-e57e268c"]]);
|
|
35688
35833
|
const _hoisted_1$_ = ["data-field-name"];
|
|
35689
35834
|
const _hoisted_2$L = { class: "bs-layout-horizontal-wrap gap-8" };
|
|
35690
35835
|
const _hoisted_3$w = { class: "mr-4" };
|
|
@@ -35706,6 +35851,7 @@ img.ProseMirror-separator {
|
|
|
35706
35851
|
supportTypes: { default: () => ["Image"] },
|
|
35707
35852
|
showPreviewButton: { type: Boolean, default: true },
|
|
35708
35853
|
disableRightClick: { type: Boolean },
|
|
35854
|
+
preloadOverlay: { type: Boolean },
|
|
35709
35855
|
guideMessage: {},
|
|
35710
35856
|
validationMessageRequired: {},
|
|
35711
35857
|
validationMessageMaxFileSize: {},
|
|
@@ -35826,6 +35972,16 @@ img.ProseMirror-separator {
|
|
|
35826
35972
|
((_b = (_a2 = savePointHandler == null ? void 0 : savePointHandler.getSavedValue()) == null ? void 0 : _a2[index]) == null ? void 0 : _b.fileUrl) !== ((_c = props.modelValue[index]) == null ? void 0 : _c.fileUrl);
|
|
35827
35973
|
};
|
|
35828
35974
|
vue.onBeforeUnmount(() => savePoint == null ? void 0 : savePoint.unregisterField(field));
|
|
35975
|
+
const overlayOpen = vue.ref(false);
|
|
35976
|
+
const previewStartIndex = vue.ref(0);
|
|
35977
|
+
const imageFiles = vue.computed(
|
|
35978
|
+
() => Object.values(props.modelValue).filter((f) => !!(f == null ? void 0 : f.fileUrl) && f.mediaType === "Image")
|
|
35979
|
+
);
|
|
35980
|
+
const openPreview = (idx) => {
|
|
35981
|
+
const file = props.modelValue[idx];
|
|
35982
|
+
previewStartIndex.value = imageFiles.value.indexOf(file);
|
|
35983
|
+
overlayOpen.value = true;
|
|
35984
|
+
};
|
|
35829
35985
|
return (_ctx, _cache) => {
|
|
35830
35986
|
return vue.openBlock(), vue.createElementBlock("div", {
|
|
35831
35987
|
ref_key: "field",
|
|
@@ -35836,7 +35992,7 @@ img.ProseMirror-separator {
|
|
|
35836
35992
|
}, [
|
|
35837
35993
|
vue.createElementVNode("div", _hoisted_2$L, [
|
|
35838
35994
|
(vue.openBlock(true), vue.createElementBlock(vue.Fragment, null, vue.renderList(_ctx.count, (idx) => {
|
|
35839
|
-
var _a2;
|
|
35995
|
+
var _a2, _b;
|
|
35840
35996
|
return vue.openBlock(), vue.createBlock(_sfc_main$1b, {
|
|
35841
35997
|
key: idx,
|
|
35842
35998
|
caption: (_a2 = _ctx.guideMessage) == null ? void 0 : _a2[idx],
|
|
@@ -35849,7 +36005,9 @@ img.ProseMirror-separator {
|
|
|
35849
36005
|
"model-value": _ctx.modelValue[idx],
|
|
35850
36006
|
multiple: true,
|
|
35851
36007
|
name: `${_ctx.name}_${idx}`,
|
|
36008
|
+
"on-open-preview": ((_b = _ctx.modelValue[idx]) == null ? void 0 : _b.mediaType) === "Image" ? () => openPreview(idx) : void 0,
|
|
35852
36009
|
required: _ctx.required,
|
|
36010
|
+
"preload-overlay": _ctx.preloadOverlay,
|
|
35853
36011
|
"show-preview-button": _ctx.showPreviewButton,
|
|
35854
36012
|
"support-types": _ctx.supportTypes,
|
|
35855
36013
|
tabindex: _ctx.tabindex,
|
|
@@ -35863,14 +36021,22 @@ img.ProseMirror-separator {
|
|
|
35863
36021
|
vue.createElementVNode("span", _hoisted_3$w, vue.toDisplayString(idx), 1)
|
|
35864
36022
|
]),
|
|
35865
36023
|
_: 2
|
|
35866
|
-
}, 1032, ["caption", "class", "disable-right-click", "disabled", "image-no", "max-file-size", "media-object-url-store", "model-value", "name", "required", "show-preview-button", "support-types", "tabindex", "view-mode", "onUpdate:modelValue"]);
|
|
36024
|
+
}, 1032, ["caption", "class", "disable-right-click", "disabled", "image-no", "max-file-size", "media-object-url-store", "model-value", "name", "on-open-preview", "required", "preload-overlay", "show-preview-button", "support-types", "tabindex", "view-mode", "onUpdate:modelValue"]);
|
|
35867
36025
|
}), 128))
|
|
35868
36026
|
]),
|
|
35869
|
-
!_ctx.viewMode ? (vue.openBlock(), vue.createBlock(_sfc_main$
|
|
36027
|
+
!_ctx.viewMode ? (vue.openBlock(), vue.createBlock(_sfc_main$1_, {
|
|
35870
36028
|
key: 0,
|
|
35871
36029
|
errors: vue.unref(errors),
|
|
35872
36030
|
"hide-error-message": _ctx.hideErrorMessage
|
|
35873
|
-
}, null, 8, ["errors", "hide-error-message"])) : vue.createCommentVNode("", true)
|
|
36031
|
+
}, null, 8, ["errors", "hide-error-message"])) : vue.createCommentVNode("", true),
|
|
36032
|
+
_ctx.preloadOverlay && imageFiles.value.length > 0 || overlayOpen.value ? (vue.openBlock(), vue.createBlock(_sfc_main$1c, {
|
|
36033
|
+
key: 1,
|
|
36034
|
+
files: imageFiles.value,
|
|
36035
|
+
preload: _ctx.preloadOverlay,
|
|
36036
|
+
"start-index": previewStartIndex.value,
|
|
36037
|
+
visible: overlayOpen.value,
|
|
36038
|
+
onClose: _cache[0] || (_cache[0] = ($event) => overlayOpen.value = false)
|
|
36039
|
+
}, null, 8, ["files", "preload", "start-index", "visible"])) : vue.createCommentVNode("", true)
|
|
35874
36040
|
], 12, _hoisted_1$_);
|
|
35875
36041
|
};
|
|
35876
36042
|
}
|
|
@@ -36119,7 +36285,7 @@ img.ProseMirror-separator {
|
|
|
36119
36285
|
onChange: fileSelected
|
|
36120
36286
|
}, null, 40, _hoisted_8$2)
|
|
36121
36287
|
], 2),
|
|
36122
|
-
!_ctx.viewMode ? (vue.openBlock(), vue.createBlock(_sfc_main$
|
|
36288
|
+
!_ctx.viewMode ? (vue.openBlock(), vue.createBlock(_sfc_main$1_, {
|
|
36123
36289
|
key: 0,
|
|
36124
36290
|
class: vue.normalizeClass({ "text-nowrap": !_ctx.wrapErrorMessage }),
|
|
36125
36291
|
errors: vue.unref(errors),
|
|
@@ -38185,7 +38351,7 @@ img.ProseMirror-separator {
|
|
|
38185
38351
|
])
|
|
38186
38352
|
], 512)
|
|
38187
38353
|
]),
|
|
38188
|
-
_ctx.showPageNavigation ? (vue.openBlock(), vue.createBlock(_sfc_main$
|
|
38354
|
+
_ctx.showPageNavigation ? (vue.openBlock(), vue.createBlock(_sfc_main$1P, {
|
|
38189
38355
|
key: 0,
|
|
38190
38356
|
limit: ((_a2 = _ctx.pageInfo) == null ? void 0 : _a2.limit) || 10,
|
|
38191
38357
|
offset: ((_b = _ctx.pageInfo) == null ? void 0 : _b.offset) || 0,
|
|
@@ -38429,7 +38595,7 @@ img.ProseMirror-separator {
|
|
|
38429
38595
|
emit("update:modelValue", value);
|
|
38430
38596
|
};
|
|
38431
38597
|
return (_ctx, _cache) => {
|
|
38432
|
-
return vue.openBlock(), vue.createBlock(_sfc_main$
|
|
38598
|
+
return vue.openBlock(), vue.createBlock(_sfc_main$1F, {
|
|
38433
38599
|
"from-value": fromValue.value,
|
|
38434
38600
|
"onUpdate:fromValue": [
|
|
38435
38601
|
_cache[0] || (_cache[0] = ($event) => fromValue.value = $event),
|
|
@@ -38615,7 +38781,7 @@ img.ProseMirror-separator {
|
|
|
38615
38781
|
"data-id": "removeDateFilterBtn",
|
|
38616
38782
|
onClick: ($event) => removeDateFilter(index)
|
|
38617
38783
|
}, "remove", 8, _hoisted_2$E)),
|
|
38618
|
-
vue.createVNode(_sfc_main$
|
|
38784
|
+
vue.createVNode(_sfc_main$1Z, {
|
|
38619
38785
|
items: _ctx.dateFilter.filterItems,
|
|
38620
38786
|
"label-provider": (filter) => filter.caption,
|
|
38621
38787
|
"model-value": item.propertyId,
|
|
@@ -38640,7 +38806,7 @@ img.ProseMirror-separator {
|
|
|
38640
38806
|
width: filterWidthOfFilterItem(item.propertyId),
|
|
38641
38807
|
"onUpdate:modelValue": ($event) => setDateFilterValue(index, $event)
|
|
38642
38808
|
}, null, 8, ["display-format", "from-id", "model-value", "name-from", "name-to", "popup-display-format", "popup-end-year", "popup-start-year", "resolution", "time-zone", "to-id", "width", "onUpdate:modelValue"]),
|
|
38643
|
-
vue.createVNode(_sfc_main$
|
|
38809
|
+
vue.createVNode(_sfc_main$1C, {
|
|
38644
38810
|
modelValue: item.value,
|
|
38645
38811
|
"onUpdate:modelValue": [($event) => item.value = $event, (value, preset) => setDateFilterValue(index, value, preset)],
|
|
38646
38812
|
presets: _ctx.presets,
|
|
@@ -38922,7 +39088,7 @@ img.ProseMirror-separator {
|
|
|
38922
39088
|
}, null, 8, _hoisted_9$1)
|
|
38923
39089
|
])) : vue.createCommentVNode("", true),
|
|
38924
39090
|
_ctx.showLimit ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_10, [
|
|
38925
|
-
vue.createVNode(_sfc_main$
|
|
39091
|
+
vue.createVNode(_sfc_main$1Z, {
|
|
38926
39092
|
modelValue: limitValue.value,
|
|
38927
39093
|
"onUpdate:modelValue": [
|
|
38928
39094
|
_cache[2] || (_cache[2] = ($event) => limitValue.value = $event),
|
|
@@ -39369,7 +39535,7 @@ img.ProseMirror-separator {
|
|
|
39369
39535
|
class: vue.normalizeClass([{ selected: _ctx.selected, expanded: actualExpanded.value }, "bs-list-layout-item"])
|
|
39370
39536
|
}, [
|
|
39371
39537
|
vue.createElementVNode("div", _hoisted_1$J, [
|
|
39372
|
-
_ctx.showCheckbox ? (vue.openBlock(), vue.createBlock(_sfc_main$
|
|
39538
|
+
_ctx.showCheckbox ? (vue.openBlock(), vue.createBlock(_sfc_main$1B, {
|
|
39373
39539
|
key: 0,
|
|
39374
39540
|
"model-value": _ctx.selected,
|
|
39375
39541
|
class: "mr-8",
|
|
@@ -39731,7 +39897,7 @@ img.ProseMirror-separator {
|
|
|
39731
39897
|
return (_ctx, _cache) => {
|
|
39732
39898
|
return vue.openBlock(), vue.createElementBlock("div", _hoisted_1$G, [
|
|
39733
39899
|
vue.createElementVNode("div", _hoisted_2$w, [
|
|
39734
|
-
_ctx.showAddButton ? (vue.openBlock(), vue.createBlock(_sfc_main$
|
|
39900
|
+
_ctx.showAddButton ? (vue.openBlock(), vue.createBlock(_sfc_main$1W, {
|
|
39735
39901
|
key: 0,
|
|
39736
39902
|
disabled: _ctx.addButtonDisabled === true,
|
|
39737
39903
|
"menu-items": addButtonItems,
|
|
@@ -39866,7 +40032,7 @@ img.ProseMirror-separator {
|
|
|
39866
40032
|
(vue.openBlock(true), vue.createElementBlock(vue.Fragment, null, vue.renderList(actualLocales.value, (locale) => {
|
|
39867
40033
|
return vue.openBlock(), vue.createElementBlock(vue.Fragment, { key: locale }, [
|
|
39868
40034
|
isVisibleLocale(locale) ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_2$v, [
|
|
39869
|
-
vue.createVNode(_sfc_main$
|
|
40035
|
+
vue.createVNode(_sfc_main$1V, {
|
|
39870
40036
|
id: _ctx.id ? `${_ctx.id}_${locale}` : void 0,
|
|
39871
40037
|
autocomplete: _ctx.autocomplete,
|
|
39872
40038
|
class: vue.normalizeClass({ modified: modifiedByLocale(locale), "required-locale": isRequiredLocale(locale) }),
|
|
@@ -39896,7 +40062,7 @@ img.ProseMirror-separator {
|
|
|
39896
40062
|
])) : vue.createCommentVNode("", true)
|
|
39897
40063
|
], 64);
|
|
39898
40064
|
}), 128)),
|
|
39899
|
-
!_ctx.viewMode ? (vue.openBlock(), vue.createBlock(_sfc_main$
|
|
40065
|
+
!_ctx.viewMode ? (vue.openBlock(), vue.createBlock(_sfc_main$1_, {
|
|
39900
40066
|
key: 0,
|
|
39901
40067
|
errors: vue.unref(errors),
|
|
39902
40068
|
"hide-error-message": _ctx.hideErrorMessage || _ctx.disabled && !_ctx.showErrorMessageOnDisabled
|
|
@@ -40001,7 +40167,7 @@ img.ProseMirror-separator {
|
|
|
40001
40167
|
(vue.openBlock(true), vue.createElementBlock(vue.Fragment, null, vue.renderList(actualLocales.value, (locale) => {
|
|
40002
40168
|
return vue.openBlock(), vue.createElementBlock(vue.Fragment, { key: locale }, [
|
|
40003
40169
|
isVisibleLocale(locale) ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_2$u, [
|
|
40004
|
-
vue.createVNode(_sfc_main$
|
|
40170
|
+
vue.createVNode(_sfc_main$1s, {
|
|
40005
40171
|
id: _ctx.id ? `${_ctx.id}_${locale}` : void 0,
|
|
40006
40172
|
autocomplete: _ctx.autocomplete,
|
|
40007
40173
|
class: vue.normalizeClass({ modified: modifiedByLocale(locale), "required-locale": isRequiredLocale(locale) }),
|
|
@@ -40031,7 +40197,7 @@ img.ProseMirror-separator {
|
|
|
40031
40197
|
])) : vue.createCommentVNode("", true)
|
|
40032
40198
|
], 64);
|
|
40033
40199
|
}), 128)),
|
|
40034
|
-
!_ctx.viewMode ? (vue.openBlock(), vue.createBlock(_sfc_main$
|
|
40200
|
+
!_ctx.viewMode ? (vue.openBlock(), vue.createBlock(_sfc_main$1_, {
|
|
40035
40201
|
key: 0,
|
|
40036
40202
|
errors: vue.unref(errors),
|
|
40037
40203
|
"hide-error-message": _ctx.hideErrorMessage || _ctx.disabled && !_ctx.showErrorMessageOnDisabled
|
|
@@ -40136,7 +40302,7 @@ img.ProseMirror-separator {
|
|
|
40136
40302
|
(vue.openBlock(true), vue.createElementBlock(vue.Fragment, null, vue.renderList(actualLocales.value, (locale) => {
|
|
40137
40303
|
return vue.openBlock(), vue.createElementBlock(vue.Fragment, { key: locale }, [
|
|
40138
40304
|
isVisibleLocale(locale) ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_2$t, [
|
|
40139
|
-
vue.createVNode(_sfc_main$
|
|
40305
|
+
vue.createVNode(_sfc_main$1e, {
|
|
40140
40306
|
id: _ctx.id ? `${_ctx.id}_${locale}` : void 0,
|
|
40141
40307
|
autocomplete: _ctx.autocomplete,
|
|
40142
40308
|
class: vue.normalizeClass({ modified: modifiedByLocale(locale) }),
|
|
@@ -40172,7 +40338,7 @@ img.ProseMirror-separator {
|
|
|
40172
40338
|
])) : vue.createCommentVNode("", true)
|
|
40173
40339
|
], 64);
|
|
40174
40340
|
}), 128)),
|
|
40175
|
-
!_ctx.viewMode ? (vue.openBlock(), vue.createBlock(_sfc_main$
|
|
40341
|
+
!_ctx.viewMode ? (vue.openBlock(), vue.createBlock(_sfc_main$1_, {
|
|
40176
40342
|
key: 0,
|
|
40177
40343
|
errors: vue.unref(errors),
|
|
40178
40344
|
"hide-error-message": _ctx.hideErrorMessage
|
|
@@ -40312,7 +40478,7 @@ img.ProseMirror-separator {
|
|
|
40312
40478
|
]);
|
|
40313
40479
|
}), 128))
|
|
40314
40480
|
]),
|
|
40315
|
-
!_ctx.viewMode ? (vue.openBlock(), vue.createBlock(_sfc_main$
|
|
40481
|
+
!_ctx.viewMode ? (vue.openBlock(), vue.createBlock(_sfc_main$1_, {
|
|
40316
40482
|
key: 0,
|
|
40317
40483
|
errors: vue.unref(errors),
|
|
40318
40484
|
"hide-error-message": _ctx.hideErrorMessage
|
|
@@ -67972,7 +68138,7 @@ img.ProseMirror-separator {
|
|
|
67972
68138
|
tabindex: _ctx.tabindex,
|
|
67973
68139
|
class: "flex-grow-1"
|
|
67974
68140
|
}, vue.toHandlers(handlers2)), null, 16, ["disabled", "extensions", "model-value", "name", "style", "tabindex"]),
|
|
67975
|
-
!_ctx.viewMode ? (vue.openBlock(), vue.createBlock(_sfc_main$
|
|
68141
|
+
!_ctx.viewMode ? (vue.openBlock(), vue.createBlock(_sfc_main$1_, {
|
|
67976
68142
|
key: 0,
|
|
67977
68143
|
errors: vue.unref(errors),
|
|
67978
68144
|
"hide-error-message": _ctx.hideErrorMessage
|
|
@@ -68015,12 +68181,15 @@ img.ProseMirror-separator {
|
|
|
68015
68181
|
props.useCss ? { tabId: "css", caption: "CSS" } : void 0
|
|
68016
68182
|
].filter(notNull)
|
|
68017
68183
|
);
|
|
68184
|
+
const updateHtmlCssCode = (value) => {
|
|
68185
|
+
htmlCode.value = (value == null ? void 0 : value.html) || "";
|
|
68186
|
+
cssCode.value = (value == null ? void 0 : value.css) || "";
|
|
68187
|
+
};
|
|
68188
|
+
updateHtmlCssCode(props.modelValue);
|
|
68018
68189
|
vue.watch(
|
|
68019
68190
|
() => props.modelValue,
|
|
68020
68191
|
() => {
|
|
68021
|
-
|
|
68022
|
-
htmlCode.value = ((_a2 = props.modelValue) == null ? void 0 : _a2.html) || "";
|
|
68023
|
-
cssCode.value = ((_b = props.modelValue) == null ? void 0 : _b.css) || "";
|
|
68192
|
+
updateHtmlCssCode(props.modelValue);
|
|
68024
68193
|
validateValue(props.modelValue, "change");
|
|
68025
68194
|
}
|
|
68026
68195
|
);
|
|
@@ -68110,7 +68279,7 @@ img.ProseMirror-separator {
|
|
|
68110
68279
|
}, 8, ["tabs"])
|
|
68111
68280
|
])
|
|
68112
68281
|
]),
|
|
68113
|
-
!_ctx.viewMode ? (vue.openBlock(), vue.createBlock(_sfc_main$
|
|
68282
|
+
!_ctx.viewMode ? (vue.openBlock(), vue.createBlock(_sfc_main$1_, {
|
|
68114
68283
|
key: 0,
|
|
68115
68284
|
errors: vue.unref(errors),
|
|
68116
68285
|
"hide-error-message": _ctx.hideErrorMessage
|
|
@@ -68261,7 +68430,7 @@ img.ProseMirror-separator {
|
|
|
68261
68430
|
])) : vue.createCommentVNode("", true)
|
|
68262
68431
|
], 64);
|
|
68263
68432
|
}), 128)),
|
|
68264
|
-
!_ctx.viewMode ? (vue.openBlock(), vue.createBlock(_sfc_main$
|
|
68433
|
+
!_ctx.viewMode ? (vue.openBlock(), vue.createBlock(_sfc_main$1_, {
|
|
68265
68434
|
key: 0,
|
|
68266
68435
|
errors: vue.unref(errors),
|
|
68267
68436
|
"hide-error-message": _ctx.hideErrorMessage
|
|
@@ -68287,7 +68456,7 @@ img.ProseMirror-separator {
|
|
|
68287
68456
|
emit("changeLocale", locale || blueseaConfig.defaultLocale);
|
|
68288
68457
|
};
|
|
68289
68458
|
return (_ctx, _cache) => {
|
|
68290
|
-
return vue.openBlock(), vue.createBlock(_sfc_main$
|
|
68459
|
+
return vue.openBlock(), vue.createBlock(_sfc_main$1Z, {
|
|
68291
68460
|
items: localeList.value,
|
|
68292
68461
|
"label-provider": (item) => item.displayName || "",
|
|
68293
68462
|
"model-value": vue.unref(blueseaConfig).currentLocale,
|
|
@@ -68386,7 +68555,7 @@ img.ProseMirror-separator {
|
|
|
68386
68555
|
((_a2 = _ctx.config.captions) == null ? void 0 : _a2[index - 1]) ? vue.withDirectives((vue.openBlock(), vue.createElementBlock("span", _hoisted_1$y, null, 512)), [
|
|
68387
68556
|
[vue.unref(vT), (_b = _ctx.config.captions) == null ? void 0 : _b[index - 1]]
|
|
68388
68557
|
]) : vue.createCommentVNode("", true),
|
|
68389
|
-
vue.createVNode(_sfc_main$
|
|
68558
|
+
vue.createVNode(_sfc_main$1V, {
|
|
68390
68559
|
id: `${_ctx.id}${index}`,
|
|
68391
68560
|
modelValue: nameValue.value[`name${index}`],
|
|
68392
68561
|
"onUpdate:modelValue": [($event) => nameValue.value[`name${index}`] = $event, emitValue],
|
|
@@ -68405,7 +68574,7 @@ img.ProseMirror-separator {
|
|
|
68405
68574
|
], 64);
|
|
68406
68575
|
}), 128))
|
|
68407
68576
|
], 512),
|
|
68408
|
-
!_ctx.viewMode ? (vue.openBlock(), vue.createBlock(_sfc_main$
|
|
68577
|
+
!_ctx.viewMode ? (vue.openBlock(), vue.createBlock(_sfc_main$1_, {
|
|
68409
68578
|
key: 0,
|
|
68410
68579
|
errors: vue.unref(errors),
|
|
68411
68580
|
"hide-error-message": _ctx.hideErrorMessage
|
|
@@ -68537,7 +68706,7 @@ img.ProseMirror-separator {
|
|
|
68537
68706
|
class: "bs-layout-horizontal-inline gap-2 align-items-center",
|
|
68538
68707
|
role: "textbox"
|
|
68539
68708
|
}, [
|
|
68540
|
-
showCountryCode.value ? (vue.openBlock(), vue.createBlock(_sfc_main$
|
|
68709
|
+
showCountryCode.value ? (vue.openBlock(), vue.createBlock(_sfc_main$1Z, {
|
|
68541
68710
|
key: 0,
|
|
68542
68711
|
modelValue: countryNo.value,
|
|
68543
68712
|
"onUpdate:modelValue": [
|
|
@@ -68551,7 +68720,7 @@ img.ProseMirror-separator {
|
|
|
68551
68720
|
"label-provider": (countryInfo) => countryInfo.name,
|
|
68552
68721
|
"value-provider": (countryInfo) => countryInfo.code
|
|
68553
68722
|
}, null, 8, ["modelValue", "allow-null", "class", "disabled", "items", "label-provider", "value-provider"])) : vue.createCommentVNode("", true),
|
|
68554
|
-
inputCount.value === 1 ? (vue.openBlock(), vue.createBlock(_sfc_main$
|
|
68723
|
+
inputCount.value === 1 ? (vue.openBlock(), vue.createBlock(_sfc_main$1V, {
|
|
68555
68724
|
key: 1,
|
|
68556
68725
|
id: _ctx.id,
|
|
68557
68726
|
modelValue: phoneNo.value,
|
|
@@ -68565,7 +68734,7 @@ img.ProseMirror-separator {
|
|
|
68565
68734
|
width: "10em",
|
|
68566
68735
|
onChange: emitValue
|
|
68567
68736
|
}, null, 8, ["id", "modelValue", "class", "disabled", "max-length", "maxlength", "name"])) : (vue.openBlock(), vue.createElementBlock(vue.Fragment, { key: 2 }, [
|
|
68568
|
-
vue.createVNode(_sfc_main$
|
|
68737
|
+
vue.createVNode(_sfc_main$1V, {
|
|
68569
68738
|
id: `${_ctx.id}1`,
|
|
68570
68739
|
modelValue: phoneNo1.value,
|
|
68571
68740
|
"onUpdate:modelValue": _cache[2] || (_cache[2] = ($event) => phoneNo1.value = $event),
|
|
@@ -68579,7 +68748,7 @@ img.ProseMirror-separator {
|
|
|
68579
68748
|
onChange: emitValue
|
|
68580
68749
|
}, null, 8, ["id", "modelValue", "class", "disabled", "max-length", "maxlength", "name"]),
|
|
68581
68750
|
_cache[5] || (_cache[5] = vue.createTextVNode(" - ")),
|
|
68582
|
-
vue.createVNode(_sfc_main$
|
|
68751
|
+
vue.createVNode(_sfc_main$1V, {
|
|
68583
68752
|
id: `${_ctx.id}2`,
|
|
68584
68753
|
modelValue: phoneNo2.value,
|
|
68585
68754
|
"onUpdate:modelValue": _cache[3] || (_cache[3] = ($event) => phoneNo2.value = $event),
|
|
@@ -68593,7 +68762,7 @@ img.ProseMirror-separator {
|
|
|
68593
68762
|
onChange: emitValue
|
|
68594
68763
|
}, null, 8, ["id", "modelValue", "class", "disabled", "max-length", "maxlength", "name"]),
|
|
68595
68764
|
_cache[6] || (_cache[6] = vue.createTextVNode(" - ")),
|
|
68596
|
-
vue.createVNode(_sfc_main$
|
|
68765
|
+
vue.createVNode(_sfc_main$1V, {
|
|
68597
68766
|
id: `${_ctx.id}3`,
|
|
68598
68767
|
modelValue: phoneNo3.value,
|
|
68599
68768
|
"onUpdate:modelValue": _cache[4] || (_cache[4] = ($event) => phoneNo3.value = $event),
|
|
@@ -68608,7 +68777,7 @@ img.ProseMirror-separator {
|
|
|
68608
68777
|
}, null, 8, ["id", "modelValue", "class", "disabled", "max-length", "maxlength", "name"])
|
|
68609
68778
|
], 64))
|
|
68610
68779
|
], 512),
|
|
68611
|
-
!_ctx.viewMode ? (vue.openBlock(), vue.createBlock(_sfc_main$
|
|
68780
|
+
!_ctx.viewMode ? (vue.openBlock(), vue.createBlock(_sfc_main$1_, {
|
|
68612
68781
|
key: 0,
|
|
68613
68782
|
errors: vue.unref(errors),
|
|
68614
68783
|
"hide-error-message": _ctx.hideErrorMessage
|
|
@@ -68653,7 +68822,7 @@ img.ProseMirror-separator {
|
|
|
68653
68822
|
_ctx.selectedConfig.zipCodeCaption ? vue.withDirectives((vue.openBlock(), vue.createElementBlock("span", _hoisted_3$i, null, 512)), [
|
|
68654
68823
|
[vue.unref(vT), _ctx.selectedConfig.zipCodeCaption]
|
|
68655
68824
|
]) : vue.createCommentVNode("", true),
|
|
68656
|
-
vue.createVNode(_sfc_main$
|
|
68825
|
+
vue.createVNode(_sfc_main$1V, {
|
|
68657
68826
|
id: `${_ctx.id}ZipCode`,
|
|
68658
68827
|
class: vue.normalizeClass({ error: _ctx.markError }),
|
|
68659
68828
|
disabled: _ctx.disabled || !!_ctx.selectedConfig.zipCodeButtonHandler,
|
|
@@ -68780,7 +68949,7 @@ img.ProseMirror-separator {
|
|
|
68780
68949
|
vue.createTextVNode(vue.toDisplayString(vue.unref(serializeAddress)(_ctx.modelValue)), 1)
|
|
68781
68950
|
], 64)) : (vue.openBlock(), vue.createElementBlock(vue.Fragment, { key: 1 }, [
|
|
68782
68951
|
_ctx.config.countries && _ctx.config.countries.length > 0 || selectedConfig.value.zipCodePosition === "before-input" ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_1$v, [
|
|
68783
|
-
_ctx.config.countries && _ctx.config.countries.length > 0 ? (vue.openBlock(), vue.createBlock(_sfc_main$
|
|
68952
|
+
_ctx.config.countries && _ctx.config.countries.length > 0 ? (vue.openBlock(), vue.createBlock(_sfc_main$1Z, {
|
|
68784
68953
|
key: 0,
|
|
68785
68954
|
modelValue: addrValue.value.countryCode,
|
|
68786
68955
|
"onUpdate:modelValue": [
|
|
@@ -68817,7 +68986,7 @@ img.ProseMirror-separator {
|
|
|
68817
68986
|
((_a2 = selectedConfig.value.captions) == null ? void 0 : _a2[index - 1]) ? vue.withDirectives((vue.openBlock(), vue.createElementBlock("span", _hoisted_3$h, null, 512)), [
|
|
68818
68987
|
[vue.unref(vT), (_b = selectedConfig.value.captions) == null ? void 0 : _b[index - 1]]
|
|
68819
68988
|
]) : vue.createCommentVNode("", true),
|
|
68820
|
-
vue.createVNode(_sfc_main$
|
|
68989
|
+
vue.createVNode(_sfc_main$1V, {
|
|
68821
68990
|
id: `${_ctx.name}_${index}`,
|
|
68822
68991
|
modelValue: addrValue.value[`address${index}`],
|
|
68823
68992
|
"onUpdate:modelValue": [($event) => addrValue.value[`address${index}`] = $event, emitValue],
|
|
@@ -68850,7 +69019,7 @@ img.ProseMirror-separator {
|
|
|
68850
69019
|
"onUpdate:address": updateAddress
|
|
68851
69020
|
}, null, 8, ["id", "modelValue", "disabled", "mark-error", "name", "selected-config", "view-mode"])) : vue.createCommentVNode("", true)
|
|
68852
69021
|
], 64)),
|
|
68853
|
-
!_ctx.viewMode ? (vue.openBlock(), vue.createBlock(_sfc_main$
|
|
69022
|
+
!_ctx.viewMode ? (vue.openBlock(), vue.createBlock(_sfc_main$1_, {
|
|
68854
69023
|
key: 2,
|
|
68855
69024
|
errors: vue.unref(errors),
|
|
68856
69025
|
"hide-error-message": _ctx.hideErrorMessage
|
|
@@ -69468,7 +69637,7 @@ img.ProseMirror-separator {
|
|
|
69468
69637
|
onClick: vue.withModifiers(hideContextMenu, ["prevent"]),
|
|
69469
69638
|
onContextmenu: vue.withModifiers(hideContextMenu, ["prevent"])
|
|
69470
69639
|
}, null, 32)) : vue.createCommentVNode("", true),
|
|
69471
|
-
menuItems.value ? (vue.openBlock(), vue.createBlock(_sfc_main$
|
|
69640
|
+
menuItems.value ? (vue.openBlock(), vue.createBlock(_sfc_main$1X, {
|
|
69472
69641
|
key: 1,
|
|
69473
69642
|
left: position.value.x,
|
|
69474
69643
|
"menu-items": menuItems.value,
|
|
@@ -70446,7 +70615,7 @@ img.ProseMirror-separator {
|
|
|
70446
70615
|
class: "tab-list-button font-icon",
|
|
70447
70616
|
onClick: _cache[0] || (_cache[0] = ($event) => togglePopup())
|
|
70448
70617
|
}, "keyboard_arrow_down"),
|
|
70449
|
-
showPopup.value ? (vue.openBlock(), vue.createBlock(_sfc_main$
|
|
70618
|
+
showPopup.value ? (vue.openBlock(), vue.createBlock(_sfc_main$1$, {
|
|
70450
70619
|
key: 0,
|
|
70451
70620
|
ref_key: "popupRef",
|
|
70452
70621
|
ref: popupRef,
|
|
@@ -70693,10 +70862,10 @@ img.ProseMirror-separator {
|
|
|
70693
70862
|
return vue.openBlock(), vue.createElementBlock(vue.Fragment, null, [
|
|
70694
70863
|
vue.createElementVNode("div", null, [
|
|
70695
70864
|
vue.createElementVNode("div", _hoisted_1$f, [
|
|
70696
|
-
vue.createVNode(_sfc_main$
|
|
70865
|
+
vue.createVNode(_sfc_main$21, { label: { key: "bs.fileupload.alt" } })
|
|
70697
70866
|
]),
|
|
70698
70867
|
vue.createElementVNode("div", null, [
|
|
70699
|
-
vue.createVNode(_sfc_main$
|
|
70868
|
+
vue.createVNode(_sfc_main$1V, {
|
|
70700
70869
|
modelValue: _ctx.imageInfo.alt,
|
|
70701
70870
|
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => _ctx.imageInfo.alt = $event),
|
|
70702
70871
|
disabled: _ctx.disabled,
|
|
@@ -70707,10 +70876,10 @@ img.ProseMirror-separator {
|
|
|
70707
70876
|
]),
|
|
70708
70877
|
vue.createElementVNode("div", null, [
|
|
70709
70878
|
vue.createElementVNode("div", _hoisted_2$d, [
|
|
70710
|
-
vue.createVNode(_sfc_main$
|
|
70879
|
+
vue.createVNode(_sfc_main$21, { label: { key: "bs.size" } })
|
|
70711
70880
|
]),
|
|
70712
70881
|
vue.createElementVNode("div", null, [
|
|
70713
|
-
vue.withDirectives(vue.createVNode(_sfc_main$
|
|
70882
|
+
vue.withDirectives(vue.createVNode(_sfc_main$1V, {
|
|
70714
70883
|
modelValue: _ctx.imageInfo.width,
|
|
70715
70884
|
"onUpdate:modelValue": _cache[1] || (_cache[1] = ($event) => _ctx.imageInfo.width = $event),
|
|
70716
70885
|
disabled: _ctx.disabled,
|
|
@@ -70726,7 +70895,7 @@ img.ProseMirror-separator {
|
|
|
70726
70895
|
]
|
|
70727
70896
|
]),
|
|
70728
70897
|
_cache[9] || (_cache[9] = vue.createTextVNode(" x ")),
|
|
70729
|
-
vue.withDirectives(vue.createVNode(_sfc_main$
|
|
70898
|
+
vue.withDirectives(vue.createVNode(_sfc_main$1V, {
|
|
70730
70899
|
modelValue: _ctx.imageInfo.height,
|
|
70731
70900
|
"onUpdate:modelValue": _cache[2] || (_cache[2] = ($event) => _ctx.imageInfo.height = $event),
|
|
70732
70901
|
disabled: _ctx.disabled,
|
|
@@ -70745,10 +70914,10 @@ img.ProseMirror-separator {
|
|
|
70745
70914
|
]),
|
|
70746
70915
|
vue.createElementVNode("div", null, [
|
|
70747
70916
|
vue.createElementVNode("div", _hoisted_3$b, [
|
|
70748
|
-
vue.createVNode(_sfc_main$
|
|
70917
|
+
vue.createVNode(_sfc_main$21, { label: { key: "bs.maxSize" } })
|
|
70749
70918
|
]),
|
|
70750
70919
|
vue.createElementVNode("div", null, [
|
|
70751
|
-
vue.withDirectives(vue.createVNode(_sfc_main$
|
|
70920
|
+
vue.withDirectives(vue.createVNode(_sfc_main$1V, {
|
|
70752
70921
|
modelValue: _ctx.imageInfo.maxWidth,
|
|
70753
70922
|
"onUpdate:modelValue": _cache[3] || (_cache[3] = ($event) => _ctx.imageInfo.maxWidth = $event),
|
|
70754
70923
|
disabled: _ctx.disabled,
|
|
@@ -70764,7 +70933,7 @@ img.ProseMirror-separator {
|
|
|
70764
70933
|
]
|
|
70765
70934
|
]),
|
|
70766
70935
|
_cache[10] || (_cache[10] = vue.createTextVNode(" x ")),
|
|
70767
|
-
vue.withDirectives(vue.createVNode(_sfc_main$
|
|
70936
|
+
vue.withDirectives(vue.createVNode(_sfc_main$1V, {
|
|
70768
70937
|
modelValue: _ctx.imageInfo.maxHeight,
|
|
70769
70938
|
"onUpdate:modelValue": _cache[4] || (_cache[4] = ($event) => _ctx.imageInfo.maxHeight = $event),
|
|
70770
70939
|
disabled: _ctx.disabled,
|
|
@@ -70783,10 +70952,10 @@ img.ProseMirror-separator {
|
|
|
70783
70952
|
]),
|
|
70784
70953
|
vue.createElementVNode("div", null, [
|
|
70785
70954
|
vue.createElementVNode("div", _hoisted_4$7, [
|
|
70786
|
-
vue.createVNode(_sfc_main$
|
|
70955
|
+
vue.createVNode(_sfc_main$21, { label: { key: "bs.margin" } })
|
|
70787
70956
|
]),
|
|
70788
70957
|
vue.createElementVNode("div", _hoisted_5$4, [
|
|
70789
|
-
vue.withDirectives(vue.createVNode(_sfc_main$
|
|
70958
|
+
vue.withDirectives(vue.createVNode(_sfc_main$1V, {
|
|
70790
70959
|
modelValue: _ctx.imageInfo.marginLeft,
|
|
70791
70960
|
"onUpdate:modelValue": _cache[5] || (_cache[5] = ($event) => _ctx.imageInfo.marginLeft = $event),
|
|
70792
70961
|
disabled: _ctx.disabled,
|
|
@@ -70801,7 +70970,7 @@ img.ProseMirror-separator {
|
|
|
70801
70970
|
{ title: true }
|
|
70802
70971
|
]
|
|
70803
70972
|
]),
|
|
70804
|
-
vue.withDirectives(vue.createVNode(_sfc_main$
|
|
70973
|
+
vue.withDirectives(vue.createVNode(_sfc_main$1V, {
|
|
70805
70974
|
modelValue: _ctx.imageInfo.marginTop,
|
|
70806
70975
|
"onUpdate:modelValue": _cache[6] || (_cache[6] = ($event) => _ctx.imageInfo.marginTop = $event),
|
|
70807
70976
|
disabled: _ctx.disabled,
|
|
@@ -70816,7 +70985,7 @@ img.ProseMirror-separator {
|
|
|
70816
70985
|
{ title: true }
|
|
70817
70986
|
]
|
|
70818
70987
|
]),
|
|
70819
|
-
vue.withDirectives(vue.createVNode(_sfc_main$
|
|
70988
|
+
vue.withDirectives(vue.createVNode(_sfc_main$1V, {
|
|
70820
70989
|
modelValue: _ctx.imageInfo.marginBottom,
|
|
70821
70990
|
"onUpdate:modelValue": _cache[7] || (_cache[7] = ($event) => _ctx.imageInfo.marginBottom = $event),
|
|
70822
70991
|
disabled: _ctx.disabled,
|
|
@@ -70831,7 +71000,7 @@ img.ProseMirror-separator {
|
|
|
70831
71000
|
{ title: true }
|
|
70832
71001
|
]
|
|
70833
71002
|
]),
|
|
70834
|
-
vue.withDirectives(vue.createVNode(_sfc_main$
|
|
71003
|
+
vue.withDirectives(vue.createVNode(_sfc_main$1V, {
|
|
70835
71004
|
modelValue: _ctx.imageInfo.marginRight,
|
|
70836
71005
|
"onUpdate:modelValue": _cache[8] || (_cache[8] = ($event) => _ctx.imageInfo.marginRight = $event),
|
|
70837
71006
|
disabled: _ctx.disabled,
|
|
@@ -70904,13 +71073,13 @@ img.ProseMirror-separator {
|
|
|
70904
71073
|
vue.withDirectives(vue.createElementVNode("div", _hoisted_1$e, [
|
|
70905
71074
|
vue.createElementVNode("div", null, [
|
|
70906
71075
|
vue.createElementVNode("div", _hoisted_2$c, [
|
|
70907
|
-
vue.createVNode(_sfc_main$
|
|
71076
|
+
vue.createVNode(_sfc_main$21, {
|
|
70908
71077
|
label: { key: "bs.url" },
|
|
70909
71078
|
required: ""
|
|
70910
71079
|
})
|
|
70911
71080
|
]),
|
|
70912
71081
|
vue.createElementVNode("div", null, [
|
|
70913
|
-
vue.createVNode(_sfc_main$
|
|
71082
|
+
vue.createVNode(_sfc_main$1V, {
|
|
70914
71083
|
modelValue: data.value.src,
|
|
70915
71084
|
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => data.value.src = $event),
|
|
70916
71085
|
disabled: disabled.value,
|
|
@@ -70972,25 +71141,25 @@ img.ProseMirror-separator {
|
|
|
70972
71141
|
return vue.openBlock(), vue.createElementBlock(vue.Fragment, null, [
|
|
70973
71142
|
vue.createElementVNode("div", null, [
|
|
70974
71143
|
vue.createElementVNode("div", _hoisted_1$d, [
|
|
70975
|
-
vue.createVNode(_sfc_main$
|
|
71144
|
+
vue.createVNode(_sfc_main$1B, {
|
|
70976
71145
|
modelValue: _ctx.videoInfo.controls,
|
|
70977
71146
|
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => _ctx.videoInfo.controls = $event),
|
|
70978
71147
|
disabled: _ctx.disabled,
|
|
70979
71148
|
label: { key: "bs.richtext.showVideoControl" }
|
|
70980
71149
|
}, null, 8, ["modelValue", "disabled"]),
|
|
70981
|
-
vue.createVNode(_sfc_main$
|
|
71150
|
+
vue.createVNode(_sfc_main$1B, {
|
|
70982
71151
|
modelValue: _ctx.videoInfo.autoplay,
|
|
70983
71152
|
"onUpdate:modelValue": _cache[1] || (_cache[1] = ($event) => _ctx.videoInfo.autoplay = $event),
|
|
70984
71153
|
disabled: _ctx.disabled,
|
|
70985
71154
|
label: { key: "bs.richtext.videoAutoplay" }
|
|
70986
71155
|
}, null, 8, ["modelValue", "disabled"]),
|
|
70987
|
-
vue.createVNode(_sfc_main$
|
|
71156
|
+
vue.createVNode(_sfc_main$1B, {
|
|
70988
71157
|
modelValue: _ctx.videoInfo.loop,
|
|
70989
71158
|
"onUpdate:modelValue": _cache[2] || (_cache[2] = ($event) => _ctx.videoInfo.loop = $event),
|
|
70990
71159
|
disabled: _ctx.disabled,
|
|
70991
71160
|
label: { key: "bs.richtext.videoLoop" }
|
|
70992
71161
|
}, null, 8, ["modelValue", "disabled"]),
|
|
70993
|
-
vue.createVNode(_sfc_main$
|
|
71162
|
+
vue.createVNode(_sfc_main$1B, {
|
|
70994
71163
|
modelValue: _ctx.videoInfo.muted,
|
|
70995
71164
|
"onUpdate:modelValue": _cache[3] || (_cache[3] = ($event) => _ctx.videoInfo.muted = $event),
|
|
70996
71165
|
disabled: _ctx.disabled,
|
|
@@ -71000,10 +71169,10 @@ img.ProseMirror-separator {
|
|
|
71000
71169
|
]),
|
|
71001
71170
|
vue.createElementVNode("div", null, [
|
|
71002
71171
|
vue.createElementVNode("div", _hoisted_2$b, [
|
|
71003
|
-
vue.createVNode(_sfc_main$
|
|
71172
|
+
vue.createVNode(_sfc_main$21, { label: { key: "bs.size" } })
|
|
71004
71173
|
]),
|
|
71005
71174
|
vue.createElementVNode("div", null, [
|
|
71006
|
-
vue.withDirectives(vue.createVNode(_sfc_main$
|
|
71175
|
+
vue.withDirectives(vue.createVNode(_sfc_main$1V, {
|
|
71007
71176
|
modelValue: _ctx.videoInfo.width,
|
|
71008
71177
|
"onUpdate:modelValue": _cache[4] || (_cache[4] = ($event) => _ctx.videoInfo.width = $event),
|
|
71009
71178
|
disabled: _ctx.disabled,
|
|
@@ -71019,7 +71188,7 @@ img.ProseMirror-separator {
|
|
|
71019
71188
|
]
|
|
71020
71189
|
]),
|
|
71021
71190
|
_cache[12] || (_cache[12] = vue.createTextVNode(" x ")),
|
|
71022
|
-
vue.withDirectives(vue.createVNode(_sfc_main$
|
|
71191
|
+
vue.withDirectives(vue.createVNode(_sfc_main$1V, {
|
|
71023
71192
|
modelValue: _ctx.videoInfo.height,
|
|
71024
71193
|
"onUpdate:modelValue": _cache[5] || (_cache[5] = ($event) => _ctx.videoInfo.height = $event),
|
|
71025
71194
|
disabled: _ctx.disabled,
|
|
@@ -71038,10 +71207,10 @@ img.ProseMirror-separator {
|
|
|
71038
71207
|
]),
|
|
71039
71208
|
vue.createElementVNode("div", null, [
|
|
71040
71209
|
vue.createElementVNode("div", _hoisted_3$9, [
|
|
71041
|
-
vue.createVNode(_sfc_main$
|
|
71210
|
+
vue.createVNode(_sfc_main$21, { label: { key: "bs.maxSize" } })
|
|
71042
71211
|
]),
|
|
71043
71212
|
vue.createElementVNode("div", null, [
|
|
71044
|
-
vue.withDirectives(vue.createVNode(_sfc_main$
|
|
71213
|
+
vue.withDirectives(vue.createVNode(_sfc_main$1V, {
|
|
71045
71214
|
modelValue: _ctx.videoInfo.maxWidth,
|
|
71046
71215
|
"onUpdate:modelValue": _cache[6] || (_cache[6] = ($event) => _ctx.videoInfo.maxWidth = $event),
|
|
71047
71216
|
disabled: _ctx.disabled,
|
|
@@ -71057,7 +71226,7 @@ img.ProseMirror-separator {
|
|
|
71057
71226
|
]
|
|
71058
71227
|
]),
|
|
71059
71228
|
_cache[13] || (_cache[13] = vue.createTextVNode(" x ")),
|
|
71060
|
-
vue.withDirectives(vue.createVNode(_sfc_main$
|
|
71229
|
+
vue.withDirectives(vue.createVNode(_sfc_main$1V, {
|
|
71061
71230
|
modelValue: _ctx.videoInfo.maxHeight,
|
|
71062
71231
|
"onUpdate:modelValue": _cache[7] || (_cache[7] = ($event) => _ctx.videoInfo.maxHeight = $event),
|
|
71063
71232
|
disabled: _ctx.disabled,
|
|
@@ -71076,10 +71245,10 @@ img.ProseMirror-separator {
|
|
|
71076
71245
|
]),
|
|
71077
71246
|
vue.createElementVNode("div", null, [
|
|
71078
71247
|
vue.createElementVNode("div", _hoisted_4$6, [
|
|
71079
|
-
vue.createVNode(_sfc_main$
|
|
71248
|
+
vue.createVNode(_sfc_main$21, { label: { key: "bs.margin" } })
|
|
71080
71249
|
]),
|
|
71081
71250
|
vue.createElementVNode("div", _hoisted_5$3, [
|
|
71082
|
-
vue.withDirectives(vue.createVNode(_sfc_main$
|
|
71251
|
+
vue.withDirectives(vue.createVNode(_sfc_main$1V, {
|
|
71083
71252
|
modelValue: _ctx.videoInfo.marginLeft,
|
|
71084
71253
|
"onUpdate:modelValue": _cache[8] || (_cache[8] = ($event) => _ctx.videoInfo.marginLeft = $event),
|
|
71085
71254
|
disabled: _ctx.disabled,
|
|
@@ -71094,7 +71263,7 @@ img.ProseMirror-separator {
|
|
|
71094
71263
|
{ title: true }
|
|
71095
71264
|
]
|
|
71096
71265
|
]),
|
|
71097
|
-
vue.withDirectives(vue.createVNode(_sfc_main$
|
|
71266
|
+
vue.withDirectives(vue.createVNode(_sfc_main$1V, {
|
|
71098
71267
|
modelValue: _ctx.videoInfo.marginTop,
|
|
71099
71268
|
"onUpdate:modelValue": _cache[9] || (_cache[9] = ($event) => _ctx.videoInfo.marginTop = $event),
|
|
71100
71269
|
disabled: _ctx.disabled,
|
|
@@ -71109,7 +71278,7 @@ img.ProseMirror-separator {
|
|
|
71109
71278
|
{ title: true }
|
|
71110
71279
|
]
|
|
71111
71280
|
]),
|
|
71112
|
-
vue.withDirectives(vue.createVNode(_sfc_main$
|
|
71281
|
+
vue.withDirectives(vue.createVNode(_sfc_main$1V, {
|
|
71113
71282
|
modelValue: _ctx.videoInfo.marginBottom,
|
|
71114
71283
|
"onUpdate:modelValue": _cache[10] || (_cache[10] = ($event) => _ctx.videoInfo.marginBottom = $event),
|
|
71115
71284
|
disabled: _ctx.disabled,
|
|
@@ -71124,7 +71293,7 @@ img.ProseMirror-separator {
|
|
|
71124
71293
|
{ title: true }
|
|
71125
71294
|
]
|
|
71126
71295
|
]),
|
|
71127
|
-
vue.withDirectives(vue.createVNode(_sfc_main$
|
|
71296
|
+
vue.withDirectives(vue.createVNode(_sfc_main$1V, {
|
|
71128
71297
|
modelValue: _ctx.videoInfo.marginRight,
|
|
71129
71298
|
"onUpdate:modelValue": _cache[11] || (_cache[11] = ($event) => _ctx.videoInfo.marginRight = $event),
|
|
71130
71299
|
disabled: _ctx.disabled,
|
|
@@ -71197,13 +71366,13 @@ img.ProseMirror-separator {
|
|
|
71197
71366
|
vue.withDirectives(vue.createElementVNode("div", _hoisted_1$c, [
|
|
71198
71367
|
vue.createElementVNode("div", null, [
|
|
71199
71368
|
vue.createElementVNode("div", _hoisted_2$a, [
|
|
71200
|
-
vue.createVNode(_sfc_main$
|
|
71369
|
+
vue.createVNode(_sfc_main$21, {
|
|
71201
71370
|
label: { key: "bs.url" },
|
|
71202
71371
|
required: ""
|
|
71203
71372
|
})
|
|
71204
71373
|
]),
|
|
71205
71374
|
vue.createElementVNode("div", null, [
|
|
71206
|
-
vue.createVNode(_sfc_main$
|
|
71375
|
+
vue.createVNode(_sfc_main$1V, {
|
|
71207
71376
|
modelValue: data.value.src,
|
|
71208
71377
|
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => data.value.src = $event),
|
|
71209
71378
|
disabled: disabled.value,
|
|
@@ -71486,10 +71655,10 @@ img.ProseMirror-separator {
|
|
|
71486
71655
|
}, [
|
|
71487
71656
|
vue.createElementVNode("div", null, [
|
|
71488
71657
|
vue.createElementVNode("div", _hoisted_1$9, [
|
|
71489
|
-
vue.createVNode(_sfc_main$
|
|
71658
|
+
vue.createVNode(_sfc_main$21, { label: { key: "bs.size" } })
|
|
71490
71659
|
]),
|
|
71491
71660
|
vue.createElementVNode("div", null, [
|
|
71492
|
-
vue.withDirectives(vue.createVNode(_sfc_main$
|
|
71661
|
+
vue.withDirectives(vue.createVNode(_sfc_main$1V, {
|
|
71493
71662
|
modelValue: data.value.width,
|
|
71494
71663
|
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => data.value.width = $event),
|
|
71495
71664
|
disabled: disabled.value,
|
|
@@ -71505,7 +71674,7 @@ img.ProseMirror-separator {
|
|
|
71505
71674
|
]
|
|
71506
71675
|
]),
|
|
71507
71676
|
_cache[9] || (_cache[9] = vue.createTextVNode(" x ")),
|
|
71508
|
-
vue.withDirectives(vue.createVNode(_sfc_main$
|
|
71677
|
+
vue.withDirectives(vue.createVNode(_sfc_main$1V, {
|
|
71509
71678
|
modelValue: data.value.height,
|
|
71510
71679
|
"onUpdate:modelValue": _cache[1] || (_cache[1] = ($event) => data.value.height = $event),
|
|
71511
71680
|
disabled: disabled.value,
|
|
@@ -71524,10 +71693,10 @@ img.ProseMirror-separator {
|
|
|
71524
71693
|
]),
|
|
71525
71694
|
vue.createElementVNode("div", null, [
|
|
71526
71695
|
vue.createElementVNode("div", _hoisted_2$9, [
|
|
71527
|
-
vue.createVNode(_sfc_main$
|
|
71696
|
+
vue.createVNode(_sfc_main$21, { label: { key: "bs.maxSize" } })
|
|
71528
71697
|
]),
|
|
71529
71698
|
vue.createElementVNode("div", null, [
|
|
71530
|
-
vue.withDirectives(vue.createVNode(_sfc_main$
|
|
71699
|
+
vue.withDirectives(vue.createVNode(_sfc_main$1V, {
|
|
71531
71700
|
modelValue: data.value.maxWidth,
|
|
71532
71701
|
"onUpdate:modelValue": _cache[2] || (_cache[2] = ($event) => data.value.maxWidth = $event),
|
|
71533
71702
|
disabled: disabled.value,
|
|
@@ -71543,7 +71712,7 @@ img.ProseMirror-separator {
|
|
|
71543
71712
|
]
|
|
71544
71713
|
]),
|
|
71545
71714
|
_cache[10] || (_cache[10] = vue.createTextVNode(" x ")),
|
|
71546
|
-
vue.withDirectives(vue.createVNode(_sfc_main$
|
|
71715
|
+
vue.withDirectives(vue.createVNode(_sfc_main$1V, {
|
|
71547
71716
|
modelValue: data.value.maxHeight,
|
|
71548
71717
|
"onUpdate:modelValue": _cache[3] || (_cache[3] = ($event) => data.value.maxHeight = $event),
|
|
71549
71718
|
disabled: disabled.value,
|
|
@@ -71562,10 +71731,10 @@ img.ProseMirror-separator {
|
|
|
71562
71731
|
]),
|
|
71563
71732
|
vue.createElementVNode("div", null, [
|
|
71564
71733
|
vue.createElementVNode("div", _hoisted_3$7, [
|
|
71565
|
-
vue.createVNode(_sfc_main$
|
|
71734
|
+
vue.createVNode(_sfc_main$21, { label: { key: "bs.margin" } })
|
|
71566
71735
|
]),
|
|
71567
71736
|
vue.createElementVNode("div", _hoisted_4$5, [
|
|
71568
|
-
vue.withDirectives(vue.createVNode(_sfc_main$
|
|
71737
|
+
vue.withDirectives(vue.createVNode(_sfc_main$1V, {
|
|
71569
71738
|
modelValue: data.value.marginLeft,
|
|
71570
71739
|
"onUpdate:modelValue": _cache[4] || (_cache[4] = ($event) => data.value.marginLeft = $event),
|
|
71571
71740
|
disabled: disabled.value,
|
|
@@ -71580,7 +71749,7 @@ img.ProseMirror-separator {
|
|
|
71580
71749
|
{ title: true }
|
|
71581
71750
|
]
|
|
71582
71751
|
]),
|
|
71583
|
-
vue.withDirectives(vue.createVNode(_sfc_main$
|
|
71752
|
+
vue.withDirectives(vue.createVNode(_sfc_main$1V, {
|
|
71584
71753
|
modelValue: data.value.marginTop,
|
|
71585
71754
|
"onUpdate:modelValue": _cache[5] || (_cache[5] = ($event) => data.value.marginTop = $event),
|
|
71586
71755
|
disabled: disabled.value,
|
|
@@ -71595,7 +71764,7 @@ img.ProseMirror-separator {
|
|
|
71595
71764
|
{ title: true }
|
|
71596
71765
|
]
|
|
71597
71766
|
]),
|
|
71598
|
-
vue.withDirectives(vue.createVNode(_sfc_main$
|
|
71767
|
+
vue.withDirectives(vue.createVNode(_sfc_main$1V, {
|
|
71599
71768
|
modelValue: data.value.marginBottom,
|
|
71600
71769
|
"onUpdate:modelValue": _cache[6] || (_cache[6] = ($event) => data.value.marginBottom = $event),
|
|
71601
71770
|
disabled: disabled.value,
|
|
@@ -71610,7 +71779,7 @@ img.ProseMirror-separator {
|
|
|
71610
71779
|
{ title: true }
|
|
71611
71780
|
]
|
|
71612
71781
|
]),
|
|
71613
|
-
vue.withDirectives(vue.createVNode(_sfc_main$
|
|
71782
|
+
vue.withDirectives(vue.createVNode(_sfc_main$1V, {
|
|
71614
71783
|
modelValue: data.value.marginRight,
|
|
71615
71784
|
"onUpdate:modelValue": _cache[7] || (_cache[7] = ($event) => data.value.marginRight = $event),
|
|
71616
71785
|
disabled: disabled.value,
|
|
@@ -71629,10 +71798,10 @@ img.ProseMirror-separator {
|
|
|
71629
71798
|
]),
|
|
71630
71799
|
vue.createElementVNode("div", null, [
|
|
71631
71800
|
vue.createElementVNode("div", _hoisted_5$2, [
|
|
71632
|
-
vue.createVNode(_sfc_main$
|
|
71801
|
+
vue.createVNode(_sfc_main$21, { label: { key: "bs.align" } })
|
|
71633
71802
|
]),
|
|
71634
71803
|
vue.createElementVNode("div", null, [
|
|
71635
|
-
vue.createVNode(_sfc_main$
|
|
71804
|
+
vue.createVNode(_sfc_main$1D, {
|
|
71636
71805
|
modelValue: data.value.tableAlign,
|
|
71637
71806
|
"onUpdate:modelValue": _cache[8] || (_cache[8] = ($event) => data.value.tableAlign = $event),
|
|
71638
71807
|
disabled: disabled.value,
|
|
@@ -71648,7 +71817,7 @@ img.ProseMirror-separator {
|
|
|
71648
71817
|
]),
|
|
71649
71818
|
vue.createElementVNode("div", null, [
|
|
71650
71819
|
vue.createElementVNode("div", _hoisted_6, [
|
|
71651
|
-
vue.createVNode(_sfc_main$
|
|
71820
|
+
vue.createVNode(_sfc_main$21, { label: { key: "bs.richtext.tableColumnInfo" } })
|
|
71652
71821
|
]),
|
|
71653
71822
|
vue.createElementVNode("div", null, [
|
|
71654
71823
|
(vue.openBlock(true), vue.createElementBlock(vue.Fragment, null, vue.renderList(columns.value, (column, index) => {
|
|
@@ -71657,7 +71826,7 @@ img.ProseMirror-separator {
|
|
|
71657
71826
|
class: "mb-4"
|
|
71658
71827
|
}, [
|
|
71659
71828
|
vue.createElementVNode("span", _hoisted_7, vue.toDisplayString(index + 1) + ":", 1),
|
|
71660
|
-
vue.withDirectives(vue.createVNode(_sfc_main$
|
|
71829
|
+
vue.withDirectives(vue.createVNode(_sfc_main$1V, {
|
|
71661
71830
|
modelValue: column.width,
|
|
71662
71831
|
"onUpdate:modelValue": ($event) => column.width = $event,
|
|
71663
71832
|
disabled: disabled.value,
|
|
@@ -71733,10 +71902,10 @@ img.ProseMirror-separator {
|
|
|
71733
71902
|
vue.createElementVNode("div", _hoisted_1$8, [
|
|
71734
71903
|
vue.createElementVNode("div", null, [
|
|
71735
71904
|
vue.createElementVNode("div", _hoisted_2$8, [
|
|
71736
|
-
vue.createVNode(_sfc_main$
|
|
71905
|
+
vue.createVNode(_sfc_main$21, { label: { key: "bs.richtext.rows" } })
|
|
71737
71906
|
]),
|
|
71738
71907
|
vue.createElementVNode("div", null, [
|
|
71739
|
-
vue.createVNode(_sfc_main$
|
|
71908
|
+
vue.createVNode(_sfc_main$1M, {
|
|
71740
71909
|
modelValue: rows.value,
|
|
71741
71910
|
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => rows.value = $event),
|
|
71742
71911
|
width: "100px"
|
|
@@ -71745,10 +71914,10 @@ img.ProseMirror-separator {
|
|
|
71745
71914
|
]),
|
|
71746
71915
|
vue.createElementVNode("div", null, [
|
|
71747
71916
|
vue.createElementVNode("div", _hoisted_3$6, [
|
|
71748
|
-
vue.createVNode(_sfc_main$
|
|
71917
|
+
vue.createVNode(_sfc_main$21, { label: { key: "bs.richtext.columns" } })
|
|
71749
71918
|
]),
|
|
71750
71919
|
vue.createElementVNode("div", null, [
|
|
71751
|
-
vue.createVNode(_sfc_main$
|
|
71920
|
+
vue.createVNode(_sfc_main$1M, {
|
|
71752
71921
|
modelValue: columns.value,
|
|
71753
71922
|
"onUpdate:modelValue": _cache[1] || (_cache[1] = ($event) => columns.value = $event),
|
|
71754
71923
|
width: "100px"
|
|
@@ -71834,10 +72003,10 @@ img.ProseMirror-separator {
|
|
|
71834
72003
|
}, [
|
|
71835
72004
|
vue.createElementVNode("div", null, [
|
|
71836
72005
|
vue.createElementVNode("div", _hoisted_1$7, [
|
|
71837
|
-
vue.createVNode(_sfc_main$
|
|
72006
|
+
vue.createVNode(_sfc_main$21, { label: { key: "bs.url" } })
|
|
71838
72007
|
]),
|
|
71839
72008
|
vue.createElementVNode("div", null, [
|
|
71840
|
-
vue.createVNode(_sfc_main$
|
|
72009
|
+
vue.createVNode(_sfc_main$1V, {
|
|
71841
72010
|
modelValue: data.value.src,
|
|
71842
72011
|
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => data.value.src = $event),
|
|
71843
72012
|
disabled: "",
|
|
@@ -71893,10 +72062,10 @@ img.ProseMirror-separator {
|
|
|
71893
72062
|
return vue.openBlock(), vue.createElementBlock(vue.Fragment, null, [
|
|
71894
72063
|
vue.createElementVNode("div", null, [
|
|
71895
72064
|
vue.createElementVNode("div", _hoisted_1$6, [
|
|
71896
|
-
vue.createVNode(_sfc_main$
|
|
72065
|
+
vue.createVNode(_sfc_main$21, { label: { key: "bs.widthHeightRatio" } })
|
|
71897
72066
|
]),
|
|
71898
72067
|
vue.createElementVNode("div", null, [
|
|
71899
|
-
vue.createVNode(_sfc_main$
|
|
72068
|
+
vue.createVNode(_sfc_main$1V, {
|
|
71900
72069
|
modelValue: _ctx.youtubeInfo.aspectRatio,
|
|
71901
72070
|
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => _ctx.youtubeInfo.aspectRatio = $event),
|
|
71902
72071
|
disabled: _ctx.disabled,
|
|
@@ -71908,10 +72077,10 @@ img.ProseMirror-separator {
|
|
|
71908
72077
|
]),
|
|
71909
72078
|
vue.createElementVNode("div", null, [
|
|
71910
72079
|
vue.createElementVNode("div", _hoisted_2$6, [
|
|
71911
|
-
vue.createVNode(_sfc_main$
|
|
72080
|
+
vue.createVNode(_sfc_main$21, { label: { key: "bs.size" } })
|
|
71912
72081
|
]),
|
|
71913
72082
|
vue.createElementVNode("div", null, [
|
|
71914
|
-
vue.withDirectives(vue.createVNode(_sfc_main$
|
|
72083
|
+
vue.withDirectives(vue.createVNode(_sfc_main$1V, {
|
|
71915
72084
|
modelValue: _ctx.youtubeInfo.width,
|
|
71916
72085
|
"onUpdate:modelValue": _cache[1] || (_cache[1] = ($event) => _ctx.youtubeInfo.width = $event),
|
|
71917
72086
|
disabled: _ctx.disabled,
|
|
@@ -71927,7 +72096,7 @@ img.ProseMirror-separator {
|
|
|
71927
72096
|
]
|
|
71928
72097
|
]),
|
|
71929
72098
|
_cache[9] || (_cache[9] = vue.createTextVNode(" x ")),
|
|
71930
|
-
vue.withDirectives(vue.createVNode(_sfc_main$
|
|
72099
|
+
vue.withDirectives(vue.createVNode(_sfc_main$1V, {
|
|
71931
72100
|
modelValue: _ctx.youtubeInfo.height,
|
|
71932
72101
|
"onUpdate:modelValue": _cache[2] || (_cache[2] = ($event) => _ctx.youtubeInfo.height = $event),
|
|
71933
72102
|
disabled: _ctx.disabled,
|
|
@@ -71946,10 +72115,10 @@ img.ProseMirror-separator {
|
|
|
71946
72115
|
]),
|
|
71947
72116
|
vue.createElementVNode("div", null, [
|
|
71948
72117
|
vue.createElementVNode("div", _hoisted_3$5, [
|
|
71949
|
-
vue.createVNode(_sfc_main$
|
|
72118
|
+
vue.createVNode(_sfc_main$21, { label: { key: "bs.maxSize" } })
|
|
71950
72119
|
]),
|
|
71951
72120
|
vue.createElementVNode("div", null, [
|
|
71952
|
-
vue.withDirectives(vue.createVNode(_sfc_main$
|
|
72121
|
+
vue.withDirectives(vue.createVNode(_sfc_main$1V, {
|
|
71953
72122
|
modelValue: _ctx.youtubeInfo.maxWidth,
|
|
71954
72123
|
"onUpdate:modelValue": _cache[3] || (_cache[3] = ($event) => _ctx.youtubeInfo.maxWidth = $event),
|
|
71955
72124
|
disabled: _ctx.disabled,
|
|
@@ -71965,7 +72134,7 @@ img.ProseMirror-separator {
|
|
|
71965
72134
|
]
|
|
71966
72135
|
]),
|
|
71967
72136
|
_cache[10] || (_cache[10] = vue.createTextVNode(" x ")),
|
|
71968
|
-
vue.withDirectives(vue.createVNode(_sfc_main$
|
|
72137
|
+
vue.withDirectives(vue.createVNode(_sfc_main$1V, {
|
|
71969
72138
|
modelValue: _ctx.youtubeInfo.maxHeight,
|
|
71970
72139
|
"onUpdate:modelValue": _cache[4] || (_cache[4] = ($event) => _ctx.youtubeInfo.maxHeight = $event),
|
|
71971
72140
|
disabled: _ctx.disabled,
|
|
@@ -71984,10 +72153,10 @@ img.ProseMirror-separator {
|
|
|
71984
72153
|
]),
|
|
71985
72154
|
vue.createElementVNode("div", null, [
|
|
71986
72155
|
vue.createElementVNode("div", _hoisted_4$3, [
|
|
71987
|
-
vue.createVNode(_sfc_main$
|
|
72156
|
+
vue.createVNode(_sfc_main$21, { label: { key: "bs.margin" } })
|
|
71988
72157
|
]),
|
|
71989
72158
|
vue.createElementVNode("div", _hoisted_5$1, [
|
|
71990
|
-
vue.withDirectives(vue.createVNode(_sfc_main$
|
|
72159
|
+
vue.withDirectives(vue.createVNode(_sfc_main$1V, {
|
|
71991
72160
|
modelValue: _ctx.youtubeInfo.marginLeft,
|
|
71992
72161
|
"onUpdate:modelValue": _cache[5] || (_cache[5] = ($event) => _ctx.youtubeInfo.marginLeft = $event),
|
|
71993
72162
|
disabled: _ctx.disabled,
|
|
@@ -72002,7 +72171,7 @@ img.ProseMirror-separator {
|
|
|
72002
72171
|
{ title: true }
|
|
72003
72172
|
]
|
|
72004
72173
|
]),
|
|
72005
|
-
vue.withDirectives(vue.createVNode(_sfc_main$
|
|
72174
|
+
vue.withDirectives(vue.createVNode(_sfc_main$1V, {
|
|
72006
72175
|
modelValue: _ctx.youtubeInfo.marginTop,
|
|
72007
72176
|
"onUpdate:modelValue": _cache[6] || (_cache[6] = ($event) => _ctx.youtubeInfo.marginTop = $event),
|
|
72008
72177
|
disabled: _ctx.disabled,
|
|
@@ -72017,7 +72186,7 @@ img.ProseMirror-separator {
|
|
|
72017
72186
|
{ title: true }
|
|
72018
72187
|
]
|
|
72019
72188
|
]),
|
|
72020
|
-
vue.withDirectives(vue.createVNode(_sfc_main$
|
|
72189
|
+
vue.withDirectives(vue.createVNode(_sfc_main$1V, {
|
|
72021
72190
|
modelValue: _ctx.youtubeInfo.marginBottom,
|
|
72022
72191
|
"onUpdate:modelValue": _cache[7] || (_cache[7] = ($event) => _ctx.youtubeInfo.marginBottom = $event),
|
|
72023
72192
|
disabled: _ctx.disabled,
|
|
@@ -72032,7 +72201,7 @@ img.ProseMirror-separator {
|
|
|
72032
72201
|
{ title: true }
|
|
72033
72202
|
]
|
|
72034
72203
|
]),
|
|
72035
|
-
vue.withDirectives(vue.createVNode(_sfc_main$
|
|
72204
|
+
vue.withDirectives(vue.createVNode(_sfc_main$1V, {
|
|
72036
72205
|
modelValue: _ctx.youtubeInfo.marginRight,
|
|
72037
72206
|
"onUpdate:modelValue": _cache[8] || (_cache[8] = ($event) => _ctx.youtubeInfo.marginRight = $event),
|
|
72038
72207
|
disabled: _ctx.disabled,
|
|
@@ -72089,13 +72258,13 @@ img.ProseMirror-separator {
|
|
|
72089
72258
|
vue.createElementVNode("div", _hoisted_1$5, [
|
|
72090
72259
|
vue.createElementVNode("div", null, [
|
|
72091
72260
|
vue.createElementVNode("div", _hoisted_2$5, [
|
|
72092
|
-
vue.createVNode(_sfc_main$
|
|
72261
|
+
vue.createVNode(_sfc_main$21, {
|
|
72093
72262
|
label: { key: "bs.richtext.youtubeUrl" },
|
|
72094
72263
|
required: ""
|
|
72095
72264
|
})
|
|
72096
72265
|
]),
|
|
72097
72266
|
vue.createElementVNode("div", null, [
|
|
72098
|
-
vue.createVNode(_sfc_main$
|
|
72267
|
+
vue.createVNode(_sfc_main$1V, {
|
|
72099
72268
|
modelValue: data.value.src,
|
|
72100
72269
|
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => data.value.src = $event),
|
|
72101
72270
|
name: "youtubeUrl",
|
|
@@ -72188,13 +72357,13 @@ img.ProseMirror-separator {
|
|
|
72188
72357
|
data.value ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_1$4, [
|
|
72189
72358
|
vue.createElementVNode("div", null, [
|
|
72190
72359
|
vue.createElementVNode("div", _hoisted_2$4, [
|
|
72191
|
-
vue.createVNode(_sfc_main$
|
|
72360
|
+
vue.createVNode(_sfc_main$21, {
|
|
72192
72361
|
label: { key: "bs.richtext.youtubeUrl" },
|
|
72193
72362
|
required: ""
|
|
72194
72363
|
})
|
|
72195
72364
|
]),
|
|
72196
72365
|
vue.createElementVNode("div", null, [
|
|
72197
|
-
vue.createVNode(_sfc_main$
|
|
72366
|
+
vue.createVNode(_sfc_main$1V, {
|
|
72198
72367
|
modelValue: data.value.src,
|
|
72199
72368
|
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => data.value.src = $event),
|
|
72200
72369
|
disabled: disabled.value,
|
|
@@ -72285,13 +72454,13 @@ img.ProseMirror-separator {
|
|
|
72285
72454
|
vue.createElementVNode("div", _hoisted_1$3, [
|
|
72286
72455
|
vue.createElementVNode("div", null, [
|
|
72287
72456
|
vue.createElementVNode("div", _hoisted_2$3, [
|
|
72288
|
-
vue.createVNode(_sfc_main$
|
|
72457
|
+
vue.createVNode(_sfc_main$21, {
|
|
72289
72458
|
label: { key: "bs.linkUrl" },
|
|
72290
72459
|
required: ""
|
|
72291
72460
|
})
|
|
72292
72461
|
]),
|
|
72293
72462
|
vue.createElementVNode("div", null, [
|
|
72294
|
-
vue.createVNode(_sfc_main$
|
|
72463
|
+
vue.createVNode(_sfc_main$1V, {
|
|
72295
72464
|
modelValue: link.value.url,
|
|
72296
72465
|
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => link.value.url = $event),
|
|
72297
72466
|
name: "url",
|
|
@@ -72302,10 +72471,10 @@ img.ProseMirror-separator {
|
|
|
72302
72471
|
]),
|
|
72303
72472
|
vue.createElementVNode("div", null, [
|
|
72304
72473
|
vue.createElementVNode("div", _hoisted_3$2, [
|
|
72305
|
-
vue.createVNode(_sfc_main$
|
|
72474
|
+
vue.createVNode(_sfc_main$21, { label: { key: "bs.linkTarget" } })
|
|
72306
72475
|
]),
|
|
72307
72476
|
vue.createElementVNode("div", null, [
|
|
72308
|
-
vue.createVNode(_sfc_main$
|
|
72477
|
+
vue.createVNode(_sfc_main$1V, {
|
|
72309
72478
|
modelValue: link.value.target,
|
|
72310
72479
|
"onUpdate:modelValue": _cache[1] || (_cache[1] = ($event) => link.value.target = $event),
|
|
72311
72480
|
name: "target",
|
|
@@ -72406,10 +72575,10 @@ img.ProseMirror-separator {
|
|
|
72406
72575
|
}, [
|
|
72407
72576
|
vue.createElementVNode("div", null, [
|
|
72408
72577
|
vue.createElementVNode("div", _hoisted_1$2, [
|
|
72409
|
-
vue.createVNode(_sfc_main$
|
|
72578
|
+
vue.createVNode(_sfc_main$21, { label: { key: "bs.url" } })
|
|
72410
72579
|
]),
|
|
72411
72580
|
vue.createElementVNode("div", null, [
|
|
72412
|
-
vue.createVNode(_sfc_main$
|
|
72581
|
+
vue.createVNode(_sfc_main$1V, {
|
|
72413
72582
|
modelValue: data.value.src,
|
|
72414
72583
|
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => data.value.src = $event),
|
|
72415
72584
|
disabled: "",
|
|
@@ -72483,7 +72652,7 @@ img.ProseMirror-separator {
|
|
|
72483
72652
|
maxWidth: "1280px"
|
|
72484
72653
|
});
|
|
72485
72654
|
return (_ctx, _cache) => {
|
|
72486
|
-
return vue.openBlock(), vue.createBlock(_sfc_main$
|
|
72655
|
+
return vue.openBlock(), vue.createBlock(_sfc_main$1e, {
|
|
72487
72656
|
ref: "richText",
|
|
72488
72657
|
modelValue: modelValue.value,
|
|
72489
72658
|
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => modelValue.value = $event),
|
|
@@ -72547,8 +72716,8 @@ img.ProseMirror-separator {
|
|
|
72547
72716
|
default: vue.withCtx(() => [
|
|
72548
72717
|
vue.createElementVNode("div", _hoisted_1$1, [
|
|
72549
72718
|
vue.createElementVNode("div", _hoisted_2$1, [
|
|
72550
|
-
vue.createVNode(_sfc_main$
|
|
72551
|
-
vue.createVNode(_sfc_main$
|
|
72719
|
+
vue.createVNode(_sfc_main$21, { label: { key: "bs.youtubeUrl" } }),
|
|
72720
|
+
vue.createVNode(_sfc_main$1V, {
|
|
72552
72721
|
modelValue: url.value,
|
|
72553
72722
|
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => url.value = $event),
|
|
72554
72723
|
class: "flex-grow-1 ml-8",
|
|
@@ -72680,7 +72849,7 @@ img.ProseMirror-separator {
|
|
|
72680
72849
|
}, vue.unref(gridHandler).grid, vue.toHandlers(vue.unref(gridHandler).gridEventListener)), {
|
|
72681
72850
|
visible: vue.withCtx(({ row }) => [
|
|
72682
72851
|
vue.createElementVNode("div", _hoisted_1, [
|
|
72683
|
-
vue.createVNode(_sfc_main$
|
|
72852
|
+
vue.createVNode(_sfc_main$1B, {
|
|
72684
72853
|
"model-value": !row.hidden,
|
|
72685
72854
|
class: "reverted",
|
|
72686
72855
|
"onUpdate:modelValue": (value) => row.hidden = !value
|
|
@@ -72689,7 +72858,7 @@ img.ProseMirror-separator {
|
|
|
72689
72858
|
]),
|
|
72690
72859
|
fixed: vue.withCtx(({ row }) => [
|
|
72691
72860
|
vue.createElementVNode("div", _hoisted_2, [
|
|
72692
|
-
vue.createVNode(_sfc_main$
|
|
72861
|
+
vue.createVNode(_sfc_main$1B, {
|
|
72693
72862
|
modelValue: row.fixed,
|
|
72694
72863
|
"onUpdate:modelValue": [($event) => row.fixed = $event, ($event) => updateFixedColumn($event, row)],
|
|
72695
72864
|
class: "reverted"
|
|
@@ -72697,7 +72866,7 @@ img.ProseMirror-separator {
|
|
|
72697
72866
|
])
|
|
72698
72867
|
]),
|
|
72699
72868
|
width: vue.withCtx(({ row }) => [
|
|
72700
|
-
vue.createVNode(_sfc_main$
|
|
72869
|
+
vue.createVNode(_sfc_main$1M, {
|
|
72701
72870
|
modelValue: row.width,
|
|
72702
72871
|
"onUpdate:modelValue": ($event) => row.width = $event,
|
|
72703
72872
|
width: "100%"
|
|
@@ -72745,26 +72914,26 @@ img.ProseMirror-separator {
|
|
|
72745
72914
|
exports2.BSAddressInput = _sfc_main$y;
|
|
72746
72915
|
exports2.BSAlarmFrame = BSAlarmFrame;
|
|
72747
72916
|
exports2.BSButton = BSButton;
|
|
72748
|
-
exports2.BSCalendar = _sfc_main$
|
|
72749
|
-
exports2.BSCalendarRange = _sfc_main$
|
|
72917
|
+
exports2.BSCalendar = _sfc_main$1O;
|
|
72918
|
+
exports2.BSCalendarRange = _sfc_main$1N;
|
|
72750
72919
|
exports2.BSCardLayout = _sfc_main$S;
|
|
72751
|
-
exports2.BSCheckbox = _sfc_main$
|
|
72752
|
-
exports2.BSCheckboxGroup = _sfc_main$
|
|
72920
|
+
exports2.BSCheckbox = _sfc_main$1B;
|
|
72921
|
+
exports2.BSCheckboxGroup = _sfc_main$1A;
|
|
72753
72922
|
exports2.BSCodeEditor = _sfc_main$F;
|
|
72754
|
-
exports2.BSColorInput = _sfc_main$
|
|
72923
|
+
exports2.BSColorInput = _sfc_main$1J;
|
|
72755
72924
|
exports2.BSConsole = BSConsole;
|
|
72756
72925
|
exports2.BSContextMenuContainer = _sfc_main$q;
|
|
72757
72926
|
exports2.BSContextMenuPlugin = BSContextMenuPlugin;
|
|
72758
|
-
exports2.BSDate = _sfc_main$
|
|
72759
|
-
exports2.BSDateInput = _sfc_main$
|
|
72760
|
-
exports2.BSDateInputPopup = _sfc_main$
|
|
72761
|
-
exports2.BSDateRange = _sfc_main$
|
|
72927
|
+
exports2.BSDate = _sfc_main$1Q;
|
|
72928
|
+
exports2.BSDateInput = _sfc_main$1H;
|
|
72929
|
+
exports2.BSDateInputPopup = _sfc_main$1I;
|
|
72930
|
+
exports2.BSDateRange = _sfc_main$1F;
|
|
72762
72931
|
exports2.BSDateRangeFilter = _sfc_main$X;
|
|
72763
72932
|
exports2.BSDateRangeFilters = _sfc_main$W;
|
|
72764
|
-
exports2.BSDateRangeInputPopup = _sfc_main$
|
|
72765
|
-
exports2.BSDateRangePresets = _sfc_main$
|
|
72933
|
+
exports2.BSDateRangeInputPopup = _sfc_main$1G;
|
|
72934
|
+
exports2.BSDateRangePresets = _sfc_main$1C;
|
|
72766
72935
|
exports2.BSFileUpload = _sfc_main$18;
|
|
72767
|
-
exports2.BSFormLabel = _sfc_main$
|
|
72936
|
+
exports2.BSFormLabel = _sfc_main$21;
|
|
72768
72937
|
exports2.BSGrid = _sfc_main$Z;
|
|
72769
72938
|
exports2.BSGridControl = _sfc_main$U;
|
|
72770
72939
|
exports2.BSGridLookup = _sfc_main$V;
|
|
@@ -72787,35 +72956,35 @@ img.ProseMirror-separator {
|
|
|
72787
72956
|
exports2.BSMultiLangRichText = _sfc_main$I;
|
|
72788
72957
|
exports2.BSMultiLangTextArea = _sfc_main$J;
|
|
72789
72958
|
exports2.BSMultiLangTextInput = _sfc_main$K;
|
|
72790
|
-
exports2.BSMultiSelect = _sfc_main$
|
|
72959
|
+
exports2.BSMultiSelect = _sfc_main$1y;
|
|
72791
72960
|
exports2.BSNameInput = _sfc_main$B;
|
|
72792
72961
|
exports2.BSNotificationContainer = _sfc_main$s;
|
|
72793
|
-
exports2.BSNumberInput = _sfc_main$
|
|
72794
|
-
exports2.BSPageNavigation = _sfc_main$
|
|
72795
|
-
exports2.BSPercentInput = _sfc_main$
|
|
72796
|
-
exports2.BSPopup = _sfc_main$
|
|
72797
|
-
exports2.BSPopupButton = _sfc_main$
|
|
72962
|
+
exports2.BSNumberInput = _sfc_main$1M;
|
|
72963
|
+
exports2.BSPageNavigation = _sfc_main$1P;
|
|
72964
|
+
exports2.BSPercentInput = _sfc_main$1K;
|
|
72965
|
+
exports2.BSPopup = _sfc_main$20;
|
|
72966
|
+
exports2.BSPopupButton = _sfc_main$1W;
|
|
72798
72967
|
exports2.BSPopupSelect = BSPopupSelect;
|
|
72799
72968
|
exports2.BSPositionedImageUpload = _sfc_main$19;
|
|
72800
|
-
exports2.BSPriceInput = _sfc_main$
|
|
72801
|
-
exports2.BSProgressBar = _sfc_main$
|
|
72802
|
-
exports2.BSRadioButton = _sfc_main$
|
|
72803
|
-
exports2.BSRadioButtonGroup = _sfc_main$
|
|
72804
|
-
exports2.BSRichText = _sfc_main$
|
|
72805
|
-
exports2.BSSelect = _sfc_main$
|
|
72806
|
-
exports2.BSSelectPopup = _sfc_main$
|
|
72969
|
+
exports2.BSPriceInput = _sfc_main$1L;
|
|
72970
|
+
exports2.BSProgressBar = _sfc_main$1T;
|
|
72971
|
+
exports2.BSRadioButton = _sfc_main$1E;
|
|
72972
|
+
exports2.BSRadioButtonGroup = _sfc_main$1D;
|
|
72973
|
+
exports2.BSRichText = _sfc_main$1e;
|
|
72974
|
+
exports2.BSSelect = _sfc_main$1Z;
|
|
72975
|
+
exports2.BSSelectPopup = _sfc_main$1$;
|
|
72807
72976
|
exports2.BSTabSheet = _sfc_main$R;
|
|
72808
72977
|
exports2.BSTelInput = _sfc_main$A;
|
|
72809
|
-
exports2.BSTextArea = _sfc_main$
|
|
72978
|
+
exports2.BSTextArea = _sfc_main$1s;
|
|
72810
72979
|
exports2.BSTextFilter = _sfc_main$Y;
|
|
72811
|
-
exports2.BSTextInput = _sfc_main$
|
|
72812
|
-
exports2.BSTree = _sfc_main$
|
|
72980
|
+
exports2.BSTextInput = _sfc_main$1V;
|
|
72981
|
+
exports2.BSTree = _sfc_main$1w;
|
|
72813
72982
|
exports2.BSTreeControl = BSTreeControl;
|
|
72814
|
-
exports2.BSTreeMultiSelect = _sfc_main$
|
|
72815
|
-
exports2.BSTreeSelect = _sfc_main$
|
|
72983
|
+
exports2.BSTreeMultiSelect = _sfc_main$1u;
|
|
72984
|
+
exports2.BSTreeSelect = _sfc_main$1v;
|
|
72816
72985
|
exports2.BSVerticalLayoutResizer = _sfc_main$M;
|
|
72817
|
-
exports2.BSYesNoGroup = _sfc_main$
|
|
72818
|
-
exports2.BSYesNoSelect = _sfc_main$
|
|
72986
|
+
exports2.BSYesNoGroup = _sfc_main$1z;
|
|
72987
|
+
exports2.BSYesNoSelect = _sfc_main$1Y;
|
|
72819
72988
|
exports2.BetweenDateFilter = BetweenDateFilter;
|
|
72820
72989
|
exports2.BetweenDateFilterWithPreset = BetweenDateFilterWithPreset;
|
|
72821
72990
|
exports2.BetweenFilter = BetweenFilter;
|