@g1cloud/bluesea 5.0.0-beta.20 → 5.0.0-beta.22
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{BSAlertModal-bXdRoQ4g.js → BSAlertModal-wZOms7hW.js} +1 -1
- package/dist/{BSGridColumnSettingModal-CnqefrIo.js → BSGridColumnSettingModal-QPbpMQD6.js} +1 -1
- package/dist/{BSRichTextMaximizedModal-Dc9sFpvh.js → BSRichTextMaximizedModal-zAuDLWZd.js} +1 -1
- package/dist/{BSYesNoModal-nTiw15vA.js → BSYesNoModal-sAn7m746.js} +1 -1
- package/dist/{BSYoutubeInputModal-DN55K-10.js → BSYoutubeInputModal-D2QX8vj7.js} +7 -2
- package/dist/{ImageInsertModal-999e_ass.js → ImageInsertModal-BI_tnz7L.js} +2 -2
- package/dist/{ImageProperties.vue_vue_type_script_setup_true_lang-Dk8Skxl0.js → ImageProperties.vue_vue_type_script_setup_true_lang-DV4Vgrxv.js} +1 -1
- package/dist/{ImagePropertiesModal-D6g2ZYpb.js → ImagePropertiesModal-3uMlK2_q.js} +2 -2
- package/dist/{LinkPropertiesModal-DUAsPJ5g.js → LinkPropertiesModal-qGuRtYdw.js} +1 -1
- package/dist/{TableInsertModal-DuK1nGxQ.js → TableInsertModal-DC5_KXTz.js} +1 -1
- package/dist/{TablePropertiesModal-Dn_ozHTt.js → TablePropertiesModal-CdyjtqBn.js} +1 -1
- package/dist/{VideoInsertModal-CjB8Vfny.js → VideoInsertModal-Cy7RPYNi.js} +2 -2
- package/dist/{VideoProperties.vue_vue_type_script_setup_true_lang-C41jIi69.js → VideoProperties.vue_vue_type_script_setup_true_lang-VdRfL7XC.js} +1 -1
- package/dist/{VideoPropertiesModal-CZyluT1C.js → VideoPropertiesModal-hhs0LT1m.js} +2 -2
- package/dist/{YoutubeInsertModal-C3VKZ3MM.js → YoutubeInsertModal-e5QVFl-I.js} +2 -2
- package/dist/{YoutubeProperties.vue_vue_type_script_setup_true_lang-D5zcnp25.js → YoutubeProperties.vue_vue_type_script_setup_true_lang-TOzUqs-D.js} +1 -1
- package/dist/{YoutubePropertiesModal-VGbyMXuR.js → YoutubePropertiesModal-CtMeo1sr.js} +2 -2
- package/dist/bluesea.js +218 -216
- package/dist/bluesea.umd.cjs +29 -9
- package/dist/component/input/BSPriceInput.vue.d.ts +2 -0
- package/dist/component/input/ImageUploadModel.d.ts +2 -0
- package/dist/{index-uI4FYMrx.js → index-C0RkF03d.js} +261 -246
- package/package.json +1 -1
|
@@ -368,8 +368,8 @@ const defaultAddressInputComponentConfig = {
|
|
|
368
368
|
countryConfigs: ADDRESS_COUNTRY_CONFIGS
|
|
369
369
|
};
|
|
370
370
|
const defaultRichTextComponentConfig = {
|
|
371
|
-
imageInsertModal: defineAsyncComponent(() => import("./ImageInsertModal-
|
|
372
|
-
videoInsertModal: defineAsyncComponent(() => import("./VideoInsertModal-
|
|
371
|
+
imageInsertModal: defineAsyncComponent(() => import("./ImageInsertModal-BI_tnz7L.js")),
|
|
372
|
+
videoInsertModal: defineAsyncComponent(() => import("./VideoInsertModal-Cy7RPYNi.js")),
|
|
373
373
|
toolButtons: [
|
|
374
374
|
"Heading",
|
|
375
375
|
"FontSize",
|
|
@@ -3558,6 +3558,7 @@ const _sfc_main$1t = /* @__PURE__ */ defineComponent({
|
|
|
3558
3558
|
modelValue: {},
|
|
3559
3559
|
currency: {},
|
|
3560
3560
|
prefix: { type: Boolean },
|
|
3561
|
+
suffix: {},
|
|
3561
3562
|
maxlength: {},
|
|
3562
3563
|
disabled: { type: Boolean },
|
|
3563
3564
|
viewMode: { type: Boolean },
|
|
@@ -3600,6 +3601,7 @@ const _sfc_main$1t = /* @__PURE__ */ defineComponent({
|
|
|
3600
3601
|
var _a2;
|
|
3601
3602
|
return ((_a2 = props.modelValue) == null ? void 0 : _a2.currency) || props.currency || blueseaConfig.defaultCurrencyCode;
|
|
3602
3603
|
});
|
|
3604
|
+
const suffixText = computed(() => props.suffix !== void 0 ? props.suffix : currencyCode.value);
|
|
3603
3605
|
const fieldContext = useFieldContext();
|
|
3604
3606
|
const isValid = async (value, phase) => {
|
|
3605
3607
|
const errors2 = [];
|
|
@@ -3676,10 +3678,11 @@ const _sfc_main$1t = /* @__PURE__ */ defineComponent({
|
|
|
3676
3678
|
class: "price mr-4",
|
|
3677
3679
|
textContent: toDisplayString(_ctx.formatInViewMode ? formattedStringValue.value : unref(stringValue))
|
|
3678
3680
|
}, null, 8, _hoisted_2$Y),
|
|
3679
|
-
|
|
3681
|
+
suffixText.value ? (openBlock(), createElementBlock("span", {
|
|
3682
|
+
key: 0,
|
|
3680
3683
|
class: "currency-code",
|
|
3681
|
-
textContent: toDisplayString(
|
|
3682
|
-
}, null, 8, _hoisted_3$A)
|
|
3684
|
+
textContent: toDisplayString(suffixText.value)
|
|
3685
|
+
}, null, 8, _hoisted_3$A)) : createCommentVNode("", true)
|
|
3683
3686
|
])) : (openBlock(), createElementBlock("div", _hoisted_4$k, [
|
|
3684
3687
|
withDirectives(createElementVNode("input", mergeProps({
|
|
3685
3688
|
id: _ctx.id,
|
|
@@ -3700,10 +3703,11 @@ const _sfc_main$1t = /* @__PURE__ */ defineComponent({
|
|
|
3700
3703
|
{ placeholder: true }
|
|
3701
3704
|
]
|
|
3702
3705
|
]),
|
|
3703
|
-
|
|
3706
|
+
suffixText.value ? (openBlock(), createElementBlock("div", {
|
|
3707
|
+
key: 0,
|
|
3704
3708
|
class: "currency-code",
|
|
3705
|
-
textContent: toDisplayString(
|
|
3706
|
-
}, null, 8, _hoisted_6$8)
|
|
3709
|
+
textContent: toDisplayString(suffixText.value)
|
|
3710
|
+
}, null, 8, _hoisted_6$8)) : createCommentVNode("", true)
|
|
3707
3711
|
])),
|
|
3708
3712
|
!_ctx.viewMode ? (openBlock(), createBlock(_sfc_main$1I, {
|
|
3709
3713
|
key: 2,
|
|
@@ -6322,7 +6326,7 @@ class BSModal {
|
|
|
6322
6326
|
}
|
|
6323
6327
|
openAlert(title, message, clickHandler2) {
|
|
6324
6328
|
const option = {
|
|
6325
|
-
component: defineAsyncComponent(() => import("./BSAlertModal-
|
|
6329
|
+
component: defineAsyncComponent(() => import("./BSAlertModal-wZOms7hW.js")),
|
|
6326
6330
|
bind: {
|
|
6327
6331
|
title,
|
|
6328
6332
|
message
|
|
@@ -6335,7 +6339,7 @@ class BSModal {
|
|
|
6335
6339
|
}
|
|
6336
6340
|
openYesNo(title, message, yesHandler, noHandler) {
|
|
6337
6341
|
const option = {
|
|
6338
|
-
component: defineAsyncComponent(() => import("./BSYesNoModal-
|
|
6342
|
+
component: defineAsyncComponent(() => import("./BSYesNoModal-sAn7m746.js")),
|
|
6339
6343
|
bind: {
|
|
6340
6344
|
title,
|
|
6341
6345
|
message
|
|
@@ -31469,13 +31473,13 @@ const tableContextMenus = (modal, editor) => {
|
|
|
31469
31473
|
};
|
|
31470
31474
|
const showTableProperties = (modal, editor) => {
|
|
31471
31475
|
modal.openModal({
|
|
31472
|
-
component: defineAsyncComponent(() => import("./TablePropertiesModal-
|
|
31476
|
+
component: defineAsyncComponent(() => import("./TablePropertiesModal-CdyjtqBn.js")),
|
|
31473
31477
|
bind: { editor }
|
|
31474
31478
|
});
|
|
31475
31479
|
};
|
|
31476
31480
|
const insertTable = (modal, editor) => {
|
|
31477
31481
|
modal.openModal({
|
|
31478
|
-
component: defineAsyncComponent(() => import("./TableInsertModal-
|
|
31482
|
+
component: defineAsyncComponent(() => import("./TableInsertModal-DC5_KXTz.js")),
|
|
31479
31483
|
bind: { editor }
|
|
31480
31484
|
});
|
|
31481
31485
|
};
|
|
@@ -31640,7 +31644,7 @@ const insertImage = (modal, editor) => {
|
|
|
31640
31644
|
const component = (_a2 = blueseaConfig.componentConfig.richText) == null ? void 0 : _a2.imageInsertModal;
|
|
31641
31645
|
if (component) {
|
|
31642
31646
|
modal.openModal({
|
|
31643
|
-
component: defineAsyncComponent(() => import("./ImageInsertModal-
|
|
31647
|
+
component: defineAsyncComponent(() => import("./ImageInsertModal-BI_tnz7L.js")),
|
|
31644
31648
|
bind: { editor },
|
|
31645
31649
|
on: {
|
|
31646
31650
|
insertImage: (image) => {
|
|
@@ -31658,7 +31662,7 @@ const insertImage = (modal, editor) => {
|
|
|
31658
31662
|
};
|
|
31659
31663
|
const showImageProperties = (modal, editor) => {
|
|
31660
31664
|
modal.openModal({
|
|
31661
|
-
component: defineAsyncComponent(() => import("./ImagePropertiesModal-
|
|
31665
|
+
component: defineAsyncComponent(() => import("./ImagePropertiesModal-3uMlK2_q.js")),
|
|
31662
31666
|
bind: { editor }
|
|
31663
31667
|
});
|
|
31664
31668
|
};
|
|
@@ -32019,13 +32023,13 @@ const youtubeContextMenu = (modal, editor) => {
|
|
|
32019
32023
|
};
|
|
32020
32024
|
const insertYoutube = (modal, editor) => {
|
|
32021
32025
|
modal.openModal({
|
|
32022
|
-
component: defineAsyncComponent(() => import("./YoutubeInsertModal-
|
|
32026
|
+
component: defineAsyncComponent(() => import("./YoutubeInsertModal-e5QVFl-I.js")),
|
|
32023
32027
|
bind: { editor }
|
|
32024
32028
|
});
|
|
32025
32029
|
};
|
|
32026
32030
|
const showYoutubeProperties = (modal, editor) => {
|
|
32027
32031
|
modal.openModal({
|
|
32028
|
-
component: defineAsyncComponent(() => import("./YoutubePropertiesModal-
|
|
32032
|
+
component: defineAsyncComponent(() => import("./YoutubePropertiesModal-CtMeo1sr.js")),
|
|
32029
32033
|
bind: { editor }
|
|
32030
32034
|
});
|
|
32031
32035
|
};
|
|
@@ -32069,7 +32073,7 @@ const _sfc_main$14 = /* @__PURE__ */ defineComponent({
|
|
|
32069
32073
|
const showLinkProperties = () => {
|
|
32070
32074
|
if (!props.disabled) {
|
|
32071
32075
|
modal.openModal({
|
|
32072
|
-
component: defineAsyncComponent(() => import("./LinkPropertiesModal-
|
|
32076
|
+
component: defineAsyncComponent(() => import("./LinkPropertiesModal-qGuRtYdw.js")),
|
|
32073
32077
|
bind: {
|
|
32074
32078
|
editor: props.editor
|
|
32075
32079
|
}
|
|
@@ -32434,7 +32438,7 @@ const insertVideo = (modal, editor) => {
|
|
|
32434
32438
|
const component = (_a2 = blueseaConfig.componentConfig.richText) == null ? void 0 : _a2.videoInsertModal;
|
|
32435
32439
|
if (component) {
|
|
32436
32440
|
modal.openModal({
|
|
32437
|
-
component: defineAsyncComponent(() => import("./VideoInsertModal-
|
|
32441
|
+
component: defineAsyncComponent(() => import("./VideoInsertModal-Cy7RPYNi.js")),
|
|
32438
32442
|
bind: { editor },
|
|
32439
32443
|
on: {
|
|
32440
32444
|
insertVideo: (video) => {
|
|
@@ -32452,7 +32456,7 @@ const insertVideo = (modal, editor) => {
|
|
|
32452
32456
|
};
|
|
32453
32457
|
const showVideoProperties = (modal, editor) => {
|
|
32454
32458
|
modal.openModal({
|
|
32455
|
-
component: defineAsyncComponent(() => import("./VideoPropertiesModal-
|
|
32459
|
+
component: defineAsyncComponent(() => import("./VideoPropertiesModal-hhs0LT1m.js")),
|
|
32456
32460
|
bind: { editor }
|
|
32457
32461
|
});
|
|
32458
32462
|
};
|
|
@@ -34630,7 +34634,7 @@ const _sfc_main$Y = /* @__PURE__ */ defineComponent({
|
|
|
34630
34634
|
emit("maximized");
|
|
34631
34635
|
if (!props.internalMaximized) {
|
|
34632
34636
|
modal.openModal({
|
|
34633
|
-
component: defineAsyncComponent(() => import("./BSRichTextMaximizedModal-
|
|
34637
|
+
component: defineAsyncComponent(() => import("./BSRichTextMaximizedModal-zAuDLWZd.js")),
|
|
34634
34638
|
bind: {
|
|
34635
34639
|
modelValue: getEditorValue(),
|
|
34636
34640
|
contentMaxWidth: props.contentMaxWidth,
|
|
@@ -34722,17 +34726,26 @@ const getMediaType = (url) => {
|
|
|
34722
34726
|
return "Image";
|
|
34723
34727
|
} else if ((_d = (_c = blueseaConfig.componentConfig.upload) == null ? void 0 : _c.videoFileExt) == null ? void 0 : _d.includes(ext)) {
|
|
34724
34728
|
return "Video";
|
|
34725
|
-
} else if (url.includes("youtube.com") || url.includes("youtu.be")) {
|
|
34729
|
+
} else if (url.includes("youtube.com") || url.includes("youtu.be") || url.includes("youtube-nocookie.com")) {
|
|
34726
34730
|
return "Youtube";
|
|
34727
34731
|
} else {
|
|
34728
34732
|
return "Unknown";
|
|
34729
34733
|
}
|
|
34730
34734
|
};
|
|
34731
34735
|
const extractYoutubeVideoId = (url) => {
|
|
34732
|
-
const regex = /(?:youtube\.com\/(?:[^\/\n\s]+\/\S+\/|(?:v|embed|shorts)\/|\S*?[?&]v=)|youtu\.be\/)([a-zA-Z0-9_-]{11})/;
|
|
34736
|
+
const regex = /(?:(?:youtube|youtube-nocookie)\.com\/(?:[^\/\n\s]+\/\S+\/|(?:v|embed|shorts)\/|\S*?[?&]v=)|youtu\.be\/)([a-zA-Z0-9_-]{11})/;
|
|
34733
34737
|
const match = url.match(regex);
|
|
34734
34738
|
return match ? match[1] : void 0;
|
|
34735
34739
|
};
|
|
34740
|
+
const isYoutubeNocookieUrl = (url) => {
|
|
34741
|
+
return url.includes("youtube-nocookie.com");
|
|
34742
|
+
};
|
|
34743
|
+
const buildYoutubeUrl = (videoId, nocookie) => {
|
|
34744
|
+
if (nocookie) {
|
|
34745
|
+
return `https://www.youtube-nocookie.com/embed/${videoId}`;
|
|
34746
|
+
}
|
|
34747
|
+
return `https://youtu.be/${videoId}`;
|
|
34748
|
+
};
|
|
34736
34749
|
class MediaObjectUrlStore {
|
|
34737
34750
|
constructor() {
|
|
34738
34751
|
__publicField(this, "createdObjectUrls", []);
|
|
@@ -35168,7 +35181,7 @@ const _sfc_main$W = /* @__PURE__ */ defineComponent({
|
|
|
35168
35181
|
const modal = useModal();
|
|
35169
35182
|
const enterYoutubeUrl = () => {
|
|
35170
35183
|
modal.openModal({
|
|
35171
|
-
component: defineAsyncComponent(() => import("./BSYoutubeInputModal-
|
|
35184
|
+
component: defineAsyncComponent(() => import("./BSYoutubeInputModal-D2QX8vj7.js")),
|
|
35172
35185
|
on: {
|
|
35173
35186
|
"update:modelValue": (url) => {
|
|
35174
35187
|
emit("update:modelValue", {
|
|
@@ -38824,7 +38837,7 @@ const _sfc_main$D = /* @__PURE__ */ defineComponent({
|
|
|
38824
38837
|
const modal = useModal();
|
|
38825
38838
|
const openSettingModal = () => {
|
|
38826
38839
|
modal.openModal({
|
|
38827
|
-
component: defineAsyncComponent(() => import("./BSGridColumnSettingModal-
|
|
38840
|
+
component: defineAsyncComponent(() => import("./BSGridColumnSettingModal-QPbpMQD6.js")),
|
|
38828
38841
|
bind: {
|
|
38829
38842
|
columns: props.columns,
|
|
38830
38843
|
columnSettings: props.columnSettings,
|
|
@@ -70610,237 +70623,239 @@ const localeNameProvider = (locale) => {
|
|
|
70610
70623
|
};
|
|
70611
70624
|
const BLUESEA_VERSION = "5.0.0";
|
|
70612
70625
|
export {
|
|
70613
|
-
|
|
70614
|
-
|
|
70626
|
+
Editor$1 as $,
|
|
70627
|
+
_sfc_main$1G as A,
|
|
70615
70628
|
BSButton as B,
|
|
70616
|
-
_sfc_main$
|
|
70617
|
-
|
|
70618
|
-
|
|
70619
|
-
|
|
70620
|
-
|
|
70621
|
-
_sfc_main$
|
|
70622
|
-
_sfc_main$
|
|
70623
|
-
_sfc_main$
|
|
70624
|
-
_sfc_main$
|
|
70625
|
-
_sfc_main$
|
|
70626
|
-
_sfc_main$
|
|
70627
|
-
_sfc_main$
|
|
70628
|
-
_sfc_main$
|
|
70629
|
-
_sfc_main$
|
|
70630
|
-
_sfc_main$
|
|
70631
|
-
_sfc_main$
|
|
70632
|
-
_sfc_main$
|
|
70633
|
-
_sfc_main$
|
|
70634
|
-
_sfc_main$
|
|
70635
|
-
_sfc_main$
|
|
70636
|
-
|
|
70637
|
-
_sfc_main$
|
|
70638
|
-
|
|
70639
|
-
_sfc_main$
|
|
70629
|
+
_sfc_main$1E as C,
|
|
70630
|
+
BSLink as D,
|
|
70631
|
+
_sfc_main$1B as E,
|
|
70632
|
+
BSConsole as F,
|
|
70633
|
+
BSLoadingIcon as G,
|
|
70634
|
+
_sfc_main$1y as H,
|
|
70635
|
+
_sfc_main$1x as I,
|
|
70636
|
+
_sfc_main$1w as J,
|
|
70637
|
+
_sfc_main$1v as K,
|
|
70638
|
+
_sfc_main$1t as L,
|
|
70639
|
+
_sfc_main$1s as M,
|
|
70640
|
+
_sfc_main$1r as N,
|
|
70641
|
+
_sfc_main$1p as O,
|
|
70642
|
+
_sfc_main$1n as P,
|
|
70643
|
+
_sfc_main$1k as Q,
|
|
70644
|
+
_sfc_main$1i as R,
|
|
70645
|
+
_sfc_main$1m as S,
|
|
70646
|
+
_sfc_main$1h as T,
|
|
70647
|
+
_sfc_main$1H as U,
|
|
70648
|
+
_sfc_main$1g as V,
|
|
70649
|
+
_sfc_main$1d as W,
|
|
70650
|
+
_sfc_main$1c as X,
|
|
70651
|
+
BSPopupSelect as Y,
|
|
70652
|
+
_sfc_main$1a as Z,
|
|
70640
70653
|
_sfc_main$d as _,
|
|
70641
70654
|
_sfc_main$A as a,
|
|
70642
|
-
|
|
70643
|
-
_sfc_main$
|
|
70644
|
-
|
|
70645
|
-
_sfc_main$
|
|
70646
|
-
_sfc_main$
|
|
70647
|
-
_sfc_main$
|
|
70648
|
-
_sfc_main$
|
|
70649
|
-
_sfc_main$
|
|
70650
|
-
_sfc_main$
|
|
70651
|
-
_sfc_main$
|
|
70652
|
-
|
|
70653
|
-
_sfc_main as aA,
|
|
70654
|
-
|
|
70655
|
-
|
|
70656
|
-
|
|
70657
|
-
|
|
70658
|
-
|
|
70659
|
-
|
|
70660
|
-
|
|
70661
|
-
|
|
70662
|
-
|
|
70663
|
-
|
|
70664
|
-
|
|
70665
|
-
|
|
70666
|
-
|
|
70667
|
-
|
|
70668
|
-
|
|
70669
|
-
|
|
70670
|
-
|
|
70671
|
-
|
|
70672
|
-
|
|
70673
|
-
|
|
70674
|
-
|
|
70675
|
-
|
|
70676
|
-
|
|
70677
|
-
|
|
70678
|
-
|
|
70679
|
-
|
|
70680
|
-
_sfc_main$
|
|
70681
|
-
|
|
70682
|
-
_sfc_main$
|
|
70683
|
-
|
|
70684
|
-
_sfc_main$
|
|
70685
|
-
|
|
70686
|
-
_sfc_main$
|
|
70687
|
-
|
|
70688
|
-
_sfc_main$
|
|
70689
|
-
|
|
70690
|
-
_sfc_main$
|
|
70691
|
-
_sfc_main$
|
|
70692
|
-
_sfc_main$
|
|
70693
|
-
_sfc_main$
|
|
70694
|
-
_sfc_main$
|
|
70695
|
-
_sfc_main$
|
|
70696
|
-
_sfc_main$
|
|
70697
|
-
_sfc_main$
|
|
70698
|
-
_sfc_main$
|
|
70699
|
-
_sfc_main$
|
|
70700
|
-
_sfc_main$
|
|
70701
|
-
_sfc_main$
|
|
70702
|
-
_sfc_main$
|
|
70703
|
-
|
|
70704
|
-
_sfc_main$
|
|
70705
|
-
|
|
70655
|
+
PageGridHandlerImpl as a$,
|
|
70656
|
+
_sfc_main$W as a0,
|
|
70657
|
+
BSMultiImageUpload as a1,
|
|
70658
|
+
_sfc_main$U as a2,
|
|
70659
|
+
_sfc_main$T as a3,
|
|
70660
|
+
_sfc_main$E as a4,
|
|
70661
|
+
_sfc_main$D as a5,
|
|
70662
|
+
_sfc_main$H as a6,
|
|
70663
|
+
_sfc_main$G as a7,
|
|
70664
|
+
_sfc_main$F as a8,
|
|
70665
|
+
_sfc_main$B as a9,
|
|
70666
|
+
_sfc_main$9 as aA,
|
|
70667
|
+
_sfc_main$1 as aB,
|
|
70668
|
+
_sfc_main as aC,
|
|
70669
|
+
vClickOutside as aD,
|
|
70670
|
+
t$1 as aE,
|
|
70671
|
+
interpretMultiLangText as aF,
|
|
70672
|
+
vTooltip as aG,
|
|
70673
|
+
VFocusJump as aH,
|
|
70674
|
+
VFocusLoop as aI,
|
|
70675
|
+
NAME_INPUT_STYLE_DEFAULT as aJ,
|
|
70676
|
+
NAME_INPUT_STYLE_2 as aK,
|
|
70677
|
+
NAME_INPUT_STYLE_3 as aL,
|
|
70678
|
+
NAME_INPUT_STYLE_JP as aM,
|
|
70679
|
+
ADDRESS_COUNTRY_CONFIGS as aN,
|
|
70680
|
+
ADDRESS_COUNTRY_CONFIG_DEFAULT as aO,
|
|
70681
|
+
defaultAddressInputComponentConfig as aP,
|
|
70682
|
+
defaultRichTextComponentConfig as aQ,
|
|
70683
|
+
defaultUploadComponentConfig as aR,
|
|
70684
|
+
defaultTabSheetComponentConfig as aS,
|
|
70685
|
+
blueseaConfig as aT,
|
|
70686
|
+
configureBluesea as aU,
|
|
70687
|
+
getMediaType as aV,
|
|
70688
|
+
MediaObjectUrlStore as aW,
|
|
70689
|
+
DEFAULT_GRID_COLUMN_WIDTH as aX,
|
|
70690
|
+
nameFilterCreator as aY,
|
|
70691
|
+
EditingRows as aZ,
|
|
70692
|
+
createPageGridHandler as a_,
|
|
70693
|
+
_sfc_main$y as aa,
|
|
70694
|
+
BSListControl as ab,
|
|
70695
|
+
_sfc_main$w as ac,
|
|
70696
|
+
_sfc_main$v as ad,
|
|
70697
|
+
_sfc_main$1e as ae,
|
|
70698
|
+
BSTreeControl as af,
|
|
70699
|
+
_sfc_main$t as ag,
|
|
70700
|
+
_sfc_main$s as ah,
|
|
70701
|
+
_sfc_main$r as ai,
|
|
70702
|
+
BSMultiLangExpandButton as aj,
|
|
70703
|
+
_sfc_main$p as ak,
|
|
70704
|
+
_sfc_main$m as al,
|
|
70705
|
+
_sfc_main$l as am,
|
|
70706
|
+
_sfc_main$k as an,
|
|
70707
|
+
_sfc_main$j as ao,
|
|
70708
|
+
_sfc_main$h as ap,
|
|
70709
|
+
_sfc_main$g as aq,
|
|
70710
|
+
_sfc_main$o as ar,
|
|
70711
|
+
_sfc_main$n as as,
|
|
70712
|
+
_sfc_main$1K as at,
|
|
70713
|
+
_sfc_main$1J as au,
|
|
70714
|
+
_sfc_main$1q as av,
|
|
70715
|
+
_sfc_main$1o as aw,
|
|
70716
|
+
_sfc_main$e as ax,
|
|
70717
|
+
_sfc_main$b as ay,
|
|
70718
|
+
BSAlarmFrame as az,
|
|
70706
70719
|
_sfc_main$1L as b,
|
|
70707
|
-
|
|
70708
|
-
|
|
70709
|
-
|
|
70710
|
-
|
|
70711
|
-
|
|
70712
|
-
|
|
70713
|
-
|
|
70714
|
-
|
|
70715
|
-
|
|
70716
|
-
|
|
70717
|
-
|
|
70718
|
-
|
|
70719
|
-
|
|
70720
|
-
|
|
70721
|
-
|
|
70722
|
-
|
|
70723
|
-
|
|
70724
|
-
|
|
70725
|
-
|
|
70726
|
-
|
|
70727
|
-
|
|
70728
|
-
|
|
70729
|
-
|
|
70730
|
-
|
|
70731
|
-
|
|
70732
|
-
|
|
70733
|
-
|
|
70734
|
-
|
|
70735
|
-
|
|
70736
|
-
|
|
70737
|
-
|
|
70738
|
-
|
|
70739
|
-
|
|
70740
|
-
|
|
70741
|
-
|
|
70742
|
-
|
|
70743
|
-
|
|
70744
|
-
|
|
70745
|
-
|
|
70746
|
-
|
|
70747
|
-
|
|
70748
|
-
|
|
70749
|
-
|
|
70750
|
-
|
|
70751
|
-
|
|
70752
|
-
|
|
70753
|
-
|
|
70754
|
-
|
|
70755
|
-
|
|
70756
|
-
|
|
70757
|
-
|
|
70758
|
-
|
|
70759
|
-
|
|
70760
|
-
|
|
70761
|
-
|
|
70762
|
-
|
|
70763
|
-
|
|
70764
|
-
|
|
70765
|
-
|
|
70766
|
-
|
|
70767
|
-
|
|
70768
|
-
|
|
70769
|
-
|
|
70770
|
-
|
|
70720
|
+
equalFilter as b$,
|
|
70721
|
+
EditablePageGridHandlerImpl as b0,
|
|
70722
|
+
InputGridHandlerImpl as b1,
|
|
70723
|
+
EditableInputGridHandlerImpl as b2,
|
|
70724
|
+
GridHandlerSelectDeleteSupport as b3,
|
|
70725
|
+
GridHandlerEditableSupport as b4,
|
|
70726
|
+
LocalStorageGridPreferenceStore as b5,
|
|
70727
|
+
mergeSameValueVertical as b6,
|
|
70728
|
+
defaultCellFormatter as b7,
|
|
70729
|
+
gridExcelDownloadExtension as b8,
|
|
70730
|
+
downloadGridDataAsExcel as b9,
|
|
70731
|
+
SavePointImpl as bA,
|
|
70732
|
+
provideSavePoint as bB,
|
|
70733
|
+
useSavePoint as bC,
|
|
70734
|
+
cancelProvidedSavePoint as bD,
|
|
70735
|
+
isMultiLangMessage as bE,
|
|
70736
|
+
isNameEmpty as bF,
|
|
70737
|
+
serializeName as bG,
|
|
70738
|
+
serializeTel as bH,
|
|
70739
|
+
serializeAddress as bI,
|
|
70740
|
+
IllegalAccessError as bJ,
|
|
70741
|
+
PaginatedList as bK,
|
|
70742
|
+
AbstractFilter as bL,
|
|
70743
|
+
AndFilter as bM,
|
|
70744
|
+
OrFilter as bN,
|
|
70745
|
+
NotFilter as bO,
|
|
70746
|
+
InFilter as bP,
|
|
70747
|
+
LikeFilter as bQ,
|
|
70748
|
+
EqualFilter as bR,
|
|
70749
|
+
BetweenFilter as bS,
|
|
70750
|
+
BetweenDateFilter as bT,
|
|
70751
|
+
IsNullFilter as bU,
|
|
70752
|
+
IsNotNullFilter as bV,
|
|
70753
|
+
andFilter as bW,
|
|
70754
|
+
orFilter as bX,
|
|
70755
|
+
notFilter as bY,
|
|
70756
|
+
inFilter as bZ,
|
|
70757
|
+
likeFilter as b_,
|
|
70758
|
+
convertDateRangePresetKey as ba,
|
|
70759
|
+
BetweenDateFilterWithPreset as bb,
|
|
70760
|
+
provideTabManager as bc,
|
|
70761
|
+
useTabManager as bd,
|
|
70762
|
+
useTabManagerSilently as be,
|
|
70763
|
+
TabStatusManagerImpl as bf,
|
|
70764
|
+
provideTabStatusManager as bg,
|
|
70765
|
+
useTabStatusManager as bh,
|
|
70766
|
+
createTreeHandler as bi,
|
|
70767
|
+
defaultExpandMultiLang as bj,
|
|
70768
|
+
toggleDefaultExpandMultiLang as bk,
|
|
70769
|
+
localeBasedExtraItemValidationRules as bl,
|
|
70770
|
+
ValidationFailedError as bm,
|
|
70771
|
+
isValidationFailedError as bn,
|
|
70772
|
+
storeFieldValidator as bo,
|
|
70773
|
+
loadFieldValidator as bp,
|
|
70774
|
+
findFieldValidatorElements as bq,
|
|
70775
|
+
validateField as br,
|
|
70776
|
+
validateFields as bs,
|
|
70777
|
+
fieldValidator as bt,
|
|
70778
|
+
executeFieldValidationRule as bu,
|
|
70779
|
+
executeRequiredValidation as bv,
|
|
70780
|
+
executeRegExpValidation as bw,
|
|
70781
|
+
executeBetweenLengthValidation as bx,
|
|
70782
|
+
executeBetweenValueValidation as by,
|
|
70783
|
+
executeDateRangeValidation as bz,
|
|
70771
70784
|
_sfc_main$1D as c,
|
|
70772
|
-
|
|
70773
|
-
|
|
70774
|
-
|
|
70775
|
-
|
|
70776
|
-
|
|
70777
|
-
|
|
70778
|
-
|
|
70779
|
-
|
|
70780
|
-
|
|
70781
|
-
|
|
70782
|
-
|
|
70783
|
-
|
|
70784
|
-
|
|
70785
|
-
|
|
70786
|
-
|
|
70787
|
-
|
|
70788
|
-
|
|
70789
|
-
|
|
70790
|
-
|
|
70791
|
-
|
|
70792
|
-
|
|
70793
|
-
|
|
70794
|
-
|
|
70795
|
-
|
|
70796
|
-
|
|
70797
|
-
|
|
70798
|
-
|
|
70799
|
-
|
|
70800
|
-
|
|
70801
|
-
|
|
70802
|
-
|
|
70803
|
-
|
|
70804
|
-
|
|
70805
|
-
|
|
70806
|
-
|
|
70807
|
-
|
|
70808
|
-
|
|
70809
|
-
|
|
70810
|
-
|
|
70811
|
-
|
|
70812
|
-
|
|
70813
|
-
|
|
70814
|
-
|
|
70815
|
-
|
|
70816
|
-
|
|
70817
|
-
|
|
70818
|
-
|
|
70819
|
-
|
|
70820
|
-
|
|
70821
|
-
|
|
70822
|
-
|
|
70785
|
+
betweenFilter as c0,
|
|
70786
|
+
betweenDateFilter as c1,
|
|
70787
|
+
isNullFilter as c2,
|
|
70788
|
+
isNotNullFilter as c3,
|
|
70789
|
+
acceptFilter as c4,
|
|
70790
|
+
SearchParam as c5,
|
|
70791
|
+
provideFieldContext as c6,
|
|
70792
|
+
useFieldContext as c7,
|
|
70793
|
+
serializeMoney as c8,
|
|
70794
|
+
modalPluginKey as c9,
|
|
70795
|
+
provideDefaultFrameContext as cA,
|
|
70796
|
+
useDefaultFrame as cB,
|
|
70797
|
+
ShortcutKeyHandler as cC,
|
|
70798
|
+
I18NTexts as cD,
|
|
70799
|
+
i18n as cE,
|
|
70800
|
+
formatUtil as cF,
|
|
70801
|
+
waitUntil as cG,
|
|
70802
|
+
waitDuring as cH,
|
|
70803
|
+
tryUntil as cI,
|
|
70804
|
+
parsePathParam as cJ,
|
|
70805
|
+
isBlankMultiLangString as cK,
|
|
70806
|
+
isMultiLangStringValidRequired as cL,
|
|
70807
|
+
addPrefixToMultiLangString as cM,
|
|
70808
|
+
isBlankMultiLangImageFile as cN,
|
|
70809
|
+
isMultiLangImageFileValidRequired as cO,
|
|
70810
|
+
localeNameProvider as cP,
|
|
70811
|
+
debounce$2 as cQ,
|
|
70812
|
+
modalHandleKey as ca,
|
|
70813
|
+
BSModal as cb,
|
|
70814
|
+
useModal as cc,
|
|
70815
|
+
provideModalHandle as cd,
|
|
70816
|
+
createModalPlugin as ce,
|
|
70817
|
+
notificationEntries as cf,
|
|
70818
|
+
showNotification as cg,
|
|
70819
|
+
alarmEntries as ch,
|
|
70820
|
+
showAlarm as ci,
|
|
70821
|
+
closeAlarm as cj,
|
|
70822
|
+
tooltipEntry as ck,
|
|
70823
|
+
showTooltip$1 as cl,
|
|
70824
|
+
hideTooltip$1 as cm,
|
|
70825
|
+
isTooltipDisplayed as cn,
|
|
70826
|
+
showLoadingIcon as co,
|
|
70827
|
+
showLoading as cp,
|
|
70828
|
+
hideLoading as cq,
|
|
70829
|
+
withLoading as cr,
|
|
70830
|
+
contextMenuPluginKey as cs,
|
|
70831
|
+
BSContextMenuPlugin as ct,
|
|
70832
|
+
useContextMenu as cu,
|
|
70833
|
+
useContextMenuOptional as cv,
|
|
70834
|
+
createContextMenuPlugin as cw,
|
|
70835
|
+
LocalStorageFavoriteMenuHandler as cx,
|
|
70836
|
+
DefaultFrameContext as cy,
|
|
70837
|
+
createDefaultFrameContext as cz,
|
|
70823
70838
|
_sfc_main$Y as d,
|
|
70824
70839
|
extractYoutubeVideoId as e,
|
|
70825
|
-
|
|
70826
|
-
|
|
70827
|
-
_sfc_main$
|
|
70828
|
-
|
|
70829
|
-
|
|
70830
|
-
|
|
70831
|
-
|
|
70832
|
-
|
|
70840
|
+
buildYoutubeUrl as f,
|
|
70841
|
+
createInputGridHandler as g,
|
|
70842
|
+
_sfc_main$I as h,
|
|
70843
|
+
isYoutubeNocookieUrl as i,
|
|
70844
|
+
_sfc_main$1u as j,
|
|
70845
|
+
_sfc_main$1j as k,
|
|
70846
|
+
vFocusOnLoad as l,
|
|
70847
|
+
componentUtil as m,
|
|
70833
70848
|
notNull as n,
|
|
70834
|
-
|
|
70835
|
-
|
|
70836
|
-
|
|
70837
|
-
|
|
70838
|
-
|
|
70839
|
-
|
|
70849
|
+
_sfc_main$1l as o,
|
|
70850
|
+
formValidator as p,
|
|
70851
|
+
findImageNode as q,
|
|
70852
|
+
imageInfoNumberToPixel as r,
|
|
70853
|
+
findYoutubeNode as s,
|
|
70854
|
+
normalizeYoutubeInfoData as t,
|
|
70840
70855
|
useModalHandle as u,
|
|
70841
70856
|
vT as v,
|
|
70842
|
-
|
|
70843
|
-
|
|
70857
|
+
findVideoNode as w,
|
|
70858
|
+
videoInfoNumberToPixel as x,
|
|
70844
70859
|
youtubeInfoNumberToPixel as y,
|
|
70845
|
-
|
|
70860
|
+
BLUESEA_VERSION as z
|
|
70846
70861
|
};
|