@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.
Files changed (23) hide show
  1. package/dist/{BSAlertModal-bXdRoQ4g.js → BSAlertModal-wZOms7hW.js} +1 -1
  2. package/dist/{BSGridColumnSettingModal-CnqefrIo.js → BSGridColumnSettingModal-QPbpMQD6.js} +1 -1
  3. package/dist/{BSRichTextMaximizedModal-Dc9sFpvh.js → BSRichTextMaximizedModal-zAuDLWZd.js} +1 -1
  4. package/dist/{BSYesNoModal-nTiw15vA.js → BSYesNoModal-sAn7m746.js} +1 -1
  5. package/dist/{BSYoutubeInputModal-DN55K-10.js → BSYoutubeInputModal-D2QX8vj7.js} +7 -2
  6. package/dist/{ImageInsertModal-999e_ass.js → ImageInsertModal-BI_tnz7L.js} +2 -2
  7. package/dist/{ImageProperties.vue_vue_type_script_setup_true_lang-Dk8Skxl0.js → ImageProperties.vue_vue_type_script_setup_true_lang-DV4Vgrxv.js} +1 -1
  8. package/dist/{ImagePropertiesModal-D6g2ZYpb.js → ImagePropertiesModal-3uMlK2_q.js} +2 -2
  9. package/dist/{LinkPropertiesModal-DUAsPJ5g.js → LinkPropertiesModal-qGuRtYdw.js} +1 -1
  10. package/dist/{TableInsertModal-DuK1nGxQ.js → TableInsertModal-DC5_KXTz.js} +1 -1
  11. package/dist/{TablePropertiesModal-Dn_ozHTt.js → TablePropertiesModal-CdyjtqBn.js} +1 -1
  12. package/dist/{VideoInsertModal-CjB8Vfny.js → VideoInsertModal-Cy7RPYNi.js} +2 -2
  13. package/dist/{VideoProperties.vue_vue_type_script_setup_true_lang-C41jIi69.js → VideoProperties.vue_vue_type_script_setup_true_lang-VdRfL7XC.js} +1 -1
  14. package/dist/{VideoPropertiesModal-CZyluT1C.js → VideoPropertiesModal-hhs0LT1m.js} +2 -2
  15. package/dist/{YoutubeInsertModal-C3VKZ3MM.js → YoutubeInsertModal-e5QVFl-I.js} +2 -2
  16. 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
  17. package/dist/{YoutubePropertiesModal-VGbyMXuR.js → YoutubePropertiesModal-CtMeo1sr.js} +2 -2
  18. package/dist/bluesea.js +218 -216
  19. package/dist/bluesea.umd.cjs +29 -9
  20. package/dist/component/input/BSPriceInput.vue.d.ts +2 -0
  21. package/dist/component/input/ImageUploadModel.d.ts +2 -0
  22. package/dist/{index-uI4FYMrx.js → index-C0RkF03d.js} +261 -246
  23. 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-999e_ass.js")),
372
- videoInsertModal: defineAsyncComponent(() => import("./VideoInsertModal-CjB8Vfny.js")),
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
- createElementVNode("span", {
3681
+ suffixText.value ? (openBlock(), createElementBlock("span", {
3682
+ key: 0,
3680
3683
  class: "currency-code",
3681
- textContent: toDisplayString(currencyCode.value)
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
- createElementVNode("div", {
3706
+ suffixText.value ? (openBlock(), createElementBlock("div", {
3707
+ key: 0,
3704
3708
  class: "currency-code",
3705
- textContent: toDisplayString(currencyCode.value)
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-bXdRoQ4g.js")),
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-nTiw15vA.js")),
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-Dn_ozHTt.js")),
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-DuK1nGxQ.js")),
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-999e_ass.js")),
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-D6g2ZYpb.js")),
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-C3VKZ3MM.js")),
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-VGbyMXuR.js")),
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-DUAsPJ5g.js")),
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-CjB8Vfny.js")),
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-CZyluT1C.js")),
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-Dc9sFpvh.js")),
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-DN55K-10.js")),
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-CnqefrIo.js")),
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
- BSMultiImageUpload as $,
70614
- BSLink as A,
70626
+ Editor$1 as $,
70627
+ _sfc_main$1G as A,
70615
70628
  BSButton as B,
70616
- _sfc_main$1B as C,
70617
- BSConsole as D,
70618
- BSLoadingIcon as E,
70619
- _sfc_main$1y as F,
70620
- _sfc_main$1x as G,
70621
- _sfc_main$1w as H,
70622
- _sfc_main$1v as I,
70623
- _sfc_main$1t as J,
70624
- _sfc_main$1s as K,
70625
- _sfc_main$1r as L,
70626
- _sfc_main$1p as M,
70627
- _sfc_main$1n as N,
70628
- _sfc_main$1k as O,
70629
- _sfc_main$1i as P,
70630
- _sfc_main$1m as Q,
70631
- _sfc_main$1h as R,
70632
- _sfc_main$1H as S,
70633
- _sfc_main$1g as T,
70634
- _sfc_main$1d as U,
70635
- _sfc_main$1c as V,
70636
- BSPopupSelect as W,
70637
- _sfc_main$1a as X,
70638
- Editor$1 as Y,
70639
- _sfc_main$W as Z,
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
- InputGridHandlerImpl as a$,
70643
- _sfc_main$U as a0,
70644
- _sfc_main$T as a1,
70645
- _sfc_main$E as a2,
70646
- _sfc_main$D as a3,
70647
- _sfc_main$H as a4,
70648
- _sfc_main$G as a5,
70649
- _sfc_main$F as a6,
70650
- _sfc_main$B as a7,
70651
- _sfc_main$y as a8,
70652
- BSListControl as a9,
70653
- _sfc_main as aA,
70654
- vClickOutside as aB,
70655
- t$1 as aC,
70656
- interpretMultiLangText as aD,
70657
- vTooltip as aE,
70658
- VFocusJump as aF,
70659
- VFocusLoop as aG,
70660
- NAME_INPUT_STYLE_DEFAULT as aH,
70661
- NAME_INPUT_STYLE_2 as aI,
70662
- NAME_INPUT_STYLE_3 as aJ,
70663
- NAME_INPUT_STYLE_JP as aK,
70664
- ADDRESS_COUNTRY_CONFIGS as aL,
70665
- ADDRESS_COUNTRY_CONFIG_DEFAULT as aM,
70666
- defaultAddressInputComponentConfig as aN,
70667
- defaultRichTextComponentConfig as aO,
70668
- defaultUploadComponentConfig as aP,
70669
- defaultTabSheetComponentConfig as aQ,
70670
- blueseaConfig as aR,
70671
- configureBluesea as aS,
70672
- getMediaType as aT,
70673
- MediaObjectUrlStore as aU,
70674
- DEFAULT_GRID_COLUMN_WIDTH as aV,
70675
- nameFilterCreator as aW,
70676
- EditingRows as aX,
70677
- createPageGridHandler as aY,
70678
- PageGridHandlerImpl as aZ,
70679
- EditablePageGridHandlerImpl as a_,
70680
- _sfc_main$w as aa,
70681
- _sfc_main$v as ab,
70682
- _sfc_main$1e as ac,
70683
- BSTreeControl as ad,
70684
- _sfc_main$t as ae,
70685
- _sfc_main$s as af,
70686
- _sfc_main$r as ag,
70687
- BSMultiLangExpandButton as ah,
70688
- _sfc_main$p as ai,
70689
- _sfc_main$m as aj,
70690
- _sfc_main$l as ak,
70691
- _sfc_main$k as al,
70692
- _sfc_main$j as am,
70693
- _sfc_main$h as an,
70694
- _sfc_main$g as ao,
70695
- _sfc_main$o as ap,
70696
- _sfc_main$n as aq,
70697
- _sfc_main$1K as ar,
70698
- _sfc_main$1J as as,
70699
- _sfc_main$1q as at,
70700
- _sfc_main$1o as au,
70701
- _sfc_main$e as av,
70702
- _sfc_main$b as aw,
70703
- BSAlarmFrame as ax,
70704
- _sfc_main$9 as ay,
70705
- _sfc_main$1 as az,
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
- betweenDateFilter as b$,
70708
- EditableInputGridHandlerImpl as b0,
70709
- GridHandlerSelectDeleteSupport as b1,
70710
- GridHandlerEditableSupport as b2,
70711
- LocalStorageGridPreferenceStore as b3,
70712
- mergeSameValueVertical as b4,
70713
- defaultCellFormatter as b5,
70714
- gridExcelDownloadExtension as b6,
70715
- downloadGridDataAsExcel as b7,
70716
- convertDateRangePresetKey as b8,
70717
- BetweenDateFilterWithPreset as b9,
70718
- useSavePoint as bA,
70719
- cancelProvidedSavePoint as bB,
70720
- isMultiLangMessage as bC,
70721
- isNameEmpty as bD,
70722
- serializeName as bE,
70723
- serializeTel as bF,
70724
- serializeAddress as bG,
70725
- IllegalAccessError as bH,
70726
- PaginatedList as bI,
70727
- AbstractFilter as bJ,
70728
- AndFilter as bK,
70729
- OrFilter as bL,
70730
- NotFilter as bM,
70731
- InFilter as bN,
70732
- LikeFilter as bO,
70733
- EqualFilter as bP,
70734
- BetweenFilter as bQ,
70735
- BetweenDateFilter as bR,
70736
- IsNullFilter as bS,
70737
- IsNotNullFilter as bT,
70738
- andFilter as bU,
70739
- orFilter as bV,
70740
- notFilter as bW,
70741
- inFilter as bX,
70742
- likeFilter as bY,
70743
- equalFilter as bZ,
70744
- betweenFilter as b_,
70745
- provideTabManager as ba,
70746
- useTabManager as bb,
70747
- useTabManagerSilently as bc,
70748
- TabStatusManagerImpl as bd,
70749
- provideTabStatusManager as be,
70750
- useTabStatusManager as bf,
70751
- createTreeHandler as bg,
70752
- defaultExpandMultiLang as bh,
70753
- toggleDefaultExpandMultiLang as bi,
70754
- localeBasedExtraItemValidationRules as bj,
70755
- ValidationFailedError as bk,
70756
- isValidationFailedError as bl,
70757
- storeFieldValidator as bm,
70758
- loadFieldValidator as bn,
70759
- findFieldValidatorElements as bo,
70760
- validateField as bp,
70761
- validateFields as bq,
70762
- fieldValidator as br,
70763
- executeFieldValidationRule as bs,
70764
- executeRequiredValidation as bt,
70765
- executeRegExpValidation as bu,
70766
- executeBetweenLengthValidation as bv,
70767
- executeBetweenValueValidation as bw,
70768
- executeDateRangeValidation as bx,
70769
- SavePointImpl as by,
70770
- provideSavePoint as bz,
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
- isNullFilter as c0,
70773
- isNotNullFilter as c1,
70774
- acceptFilter as c2,
70775
- SearchParam as c3,
70776
- provideFieldContext as c4,
70777
- useFieldContext as c5,
70778
- serializeMoney as c6,
70779
- modalPluginKey as c7,
70780
- modalHandleKey as c8,
70781
- BSModal as c9,
70782
- ShortcutKeyHandler as cA,
70783
- I18NTexts as cB,
70784
- i18n as cC,
70785
- formatUtil as cD,
70786
- waitUntil as cE,
70787
- waitDuring as cF,
70788
- tryUntil as cG,
70789
- parsePathParam as cH,
70790
- isBlankMultiLangString as cI,
70791
- isMultiLangStringValidRequired as cJ,
70792
- addPrefixToMultiLangString as cK,
70793
- isBlankMultiLangImageFile as cL,
70794
- isMultiLangImageFileValidRequired as cM,
70795
- localeNameProvider as cN,
70796
- debounce$2 as cO,
70797
- useModal as ca,
70798
- provideModalHandle as cb,
70799
- createModalPlugin as cc,
70800
- notificationEntries as cd,
70801
- showNotification as ce,
70802
- alarmEntries as cf,
70803
- showAlarm as cg,
70804
- closeAlarm as ch,
70805
- tooltipEntry as ci,
70806
- showTooltip$1 as cj,
70807
- hideTooltip$1 as ck,
70808
- isTooltipDisplayed as cl,
70809
- showLoadingIcon as cm,
70810
- showLoading as cn,
70811
- hideLoading as co,
70812
- withLoading as cp,
70813
- contextMenuPluginKey as cq,
70814
- BSContextMenuPlugin as cr,
70815
- useContextMenu as cs,
70816
- useContextMenuOptional as ct,
70817
- createContextMenuPlugin as cu,
70818
- LocalStorageFavoriteMenuHandler as cv,
70819
- DefaultFrameContext as cw,
70820
- createDefaultFrameContext as cx,
70821
- provideDefaultFrameContext as cy,
70822
- useDefaultFrame as cz,
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
- createInputGridHandler as f,
70826
- _sfc_main$I as g,
70827
- _sfc_main$1u as h,
70828
- _sfc_main$1j as i,
70829
- vFocusOnLoad as j,
70830
- componentUtil as k,
70831
- _sfc_main$1l as l,
70832
- formValidator as m,
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
- findImageNode as o,
70835
- imageInfoNumberToPixel as p,
70836
- findYoutubeNode as q,
70837
- normalizeYoutubeInfoData as r,
70838
- findVideoNode as s,
70839
- videoInfoNumberToPixel as t,
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
- BLUESEA_VERSION as w,
70843
- _sfc_main$1G as x,
70857
+ findVideoNode as w,
70858
+ videoInfoNumberToPixel as x,
70844
70859
  youtubeInfoNumberToPixel as y,
70845
- _sfc_main$1E as z
70860
+ BLUESEA_VERSION as z
70846
70861
  };