@g1cloud/bluesea 5.0.0-alpha.78 → 5.0.0-alpha.79

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 (27) hide show
  1. package/dist/{BSAlertModal-A8azyqZG.js → BSAlertModal-B1_qtEW8.js} +1 -1
  2. package/dist/{BSGridColumnSettingModal-PB3FoKd9.js → BSGridColumnSettingModal-JCGgfgYe.js} +1 -1
  3. package/dist/{BSYesNoModal-BdLq0R5t.js → BSYesNoModal-Cm9ctHx3.js} +1 -1
  4. package/dist/BSYoutubeInputModal-rh10wDza.js +76 -0
  5. package/dist/{ImageInsertModal-CEkt1iO6.js → ImageInsertModal-BrdHBKsJ.js} +1 -1
  6. package/dist/{ImagePropertiesModal-CPypgqwE.js → ImagePropertiesModal-CU66aoH3.js} +1 -1
  7. package/dist/{LinkPropertiesModal-B0RGqhmk.js → LinkPropertiesModal-CznkH-ig.js} +1 -1
  8. package/dist/{TableInsertModal-TMPdQREo.js → TableInsertModal-XIlmIrEb.js} +1 -1
  9. package/dist/{YoutubeInsertModal-CskU5Gbz.js → YoutubeInsertModal-viiZPlLT.js} +1 -1
  10. package/dist/{YoutubePropertiesModal-DyrZ1P5k.js → YoutubePropertiesModal-C7p0yRiv.js} +1 -1
  11. package/dist/bluesea.js +183 -177
  12. package/dist/bluesea.umd.cjs +1277 -930
  13. package/dist/component/grid/BSTextFilter.vue.d.ts +4 -4
  14. package/dist/component/grid/GridModel.d.ts +21 -3
  15. package/dist/component/input/BSImageUpload.vue.d.ts +9 -3
  16. package/dist/component/input/BSMediaPreview.vue.d.ts +27 -0
  17. package/dist/component/input/BSMultiImageUpload.vue.d.ts +18 -20
  18. package/dist/component/input/BSPositionedImageUpload.vue.d.ts +91 -0
  19. package/dist/component/input/BSYesNoGroup.vue.d.ts +2 -0
  20. package/dist/component/input/BSYoutubeInputModal.vue.d.ts +6 -0
  21. package/dist/component/input/ImageUploadLib.d.ts +18 -0
  22. package/dist/component/input/ImageUploadModel.d.ts +5 -0
  23. package/dist/{index-BlYa5ZYE.js → index-yhq7o4IG.js} +883 -610
  24. package/dist/index.d.ts +3 -0
  25. package/dist/model/CommonTypes.d.ts +1 -0
  26. package/dist/style.css +131 -14
  27. package/package.json +3 -2
@@ -1,5 +1,5 @@
1
1
  import { defineComponent, openBlock, createBlock, withCtx, createElementVNode, withDirectives, createVNode, unref } from "vue";
2
- import { u as useModalHandle, _ as _sfc_main$1, B as BSButton, v as vFocusOnLoad, h as vT } from "./index-BlYa5ZYE.js";
2
+ import { u as useModalHandle, _ as _sfc_main$1, B as BSButton, v as vFocusOnLoad, i as vT } from "./index-yhq7o4IG.js";
3
3
  const _hoisted_1 = { class: "text-right" };
4
4
  const _sfc_main = /* @__PURE__ */ defineComponent({
5
5
  __name: "BSAlertModal",
@@ -1,5 +1,5 @@
1
1
  import { defineComponent, ref, onMounted, openBlock, createBlock, withCtx, createVNode, mergeProps, unref, toHandlers, createElementVNode, nextTick } from "vue";
2
- import { d as createInputGridHandler, u as useModalHandle, _ as _sfc_main$1, e as _sfc_main$2, f as _sfc_main$3, g as _sfc_main$4, B as BSButton, n as notNull } from "./index-BlYa5ZYE.js";
2
+ import { d as createInputGridHandler, u as useModalHandle, _ as _sfc_main$1, f as _sfc_main$2, g as _sfc_main$3, h as _sfc_main$4, B as BSButton, n as notNull } from "./index-yhq7o4IG.js";
3
3
  const _hoisted_1 = { class: "text-center" };
4
4
  const _hoisted_2 = { class: "text-center" };
5
5
  const _hoisted_3 = { class: "bs-layout-horizontal" };
@@ -1,5 +1,5 @@
1
1
  import { defineComponent, openBlock, createBlock, withCtx, createElementVNode, createVNode, withDirectives, unref } from "vue";
2
- import { u as useModalHandle, _ as _sfc_main$1, B as BSButton, h as vT } from "./index-BlYa5ZYE.js";
2
+ import { u as useModalHandle, _ as _sfc_main$1, B as BSButton, i as vT } from "./index-yhq7o4IG.js";
3
3
  const _hoisted_1 = { class: "text-right" };
4
4
  const _sfc_main = /* @__PURE__ */ defineComponent({
5
5
  __name: "BSYesNoModal",
@@ -0,0 +1,76 @@
1
+ import { defineComponent, useModel, ref, openBlock, createBlock, withCtx, createElementVNode, createVNode, unref, createCommentVNode } from "vue";
2
+ import { u as useModalHandle, _ as _sfc_main$1, b as _sfc_main$2, c as _sfc_main$3, B as BSButton, e as extractYoutubeVideoId } from "./index-yhq7o4IG.js";
3
+ import YouTube from "vue3-youtube";
4
+ const _hoisted_1 = { class: "bs-layout-vertical gap-16" };
5
+ const _hoisted_2 = { class: "bs-layout-horizontal align-items-center" };
6
+ const _hoisted_3 = { class: "align-self-center" };
7
+ const _hoisted_4 = { class: "bs-layout-horizontal justify-content-end gap-4" };
8
+ const _sfc_main = /* @__PURE__ */ defineComponent({
9
+ __name: "BSYoutubeInputModal",
10
+ props: {
11
+ "modelValue": {},
12
+ "modelModifiers": {}
13
+ },
14
+ emits: ["update:modelValue"],
15
+ setup(__props) {
16
+ const modelValue = useModel(__props, "modelValue");
17
+ const url = ref(modelValue.value || "");
18
+ const modalHandle = useModalHandle();
19
+ const select = () => {
20
+ const videoId = extractYoutubeVideoId(url.value);
21
+ modelValue.value = videoId ? `https://youtu.be/${videoId}` : void 0;
22
+ modalHandle.close();
23
+ };
24
+ const close = () => {
25
+ modalHandle.close();
26
+ };
27
+ modalHandle.setDefaultStyle({
28
+ width: "600px",
29
+ height: "560px"
30
+ });
31
+ return (_ctx, _cache) => {
32
+ return openBlock(), createBlock(_sfc_main$1, { title: { key: "bs.youtubeInput" } }, {
33
+ default: withCtx(() => [
34
+ createElementVNode("div", _hoisted_1, [
35
+ createElementVNode("div", _hoisted_2, [
36
+ createVNode(_sfc_main$2, { label: { key: "bs.youtubeUrl" } }),
37
+ createVNode(_sfc_main$3, {
38
+ modelValue: url.value,
39
+ "onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => url.value = $event),
40
+ class: "flex-grow-1 ml-8",
41
+ name: "youtubeUrl"
42
+ }, null, 8, ["modelValue"])
43
+ ]),
44
+ createElementVNode("div", _hoisted_3, [
45
+ url.value ? (openBlock(), createBlock(unref(YouTube), {
46
+ key: 0,
47
+ ref: "youtube",
48
+ src: url.value,
49
+ class: "youtube",
50
+ width: "550px"
51
+ }, null, 8, ["src"])) : createCommentVNode("", true)
52
+ ])
53
+ ])
54
+ ]),
55
+ buttons: withCtx(() => [
56
+ createElementVNode("div", _hoisted_4, [
57
+ createVNode(BSButton, {
58
+ caption: { key: "bs.cancel" },
59
+ class: "ml-8",
60
+ onClick: close
61
+ }),
62
+ createVNode(BSButton, {
63
+ caption: { key: "bs.ok" },
64
+ "button-color": "blue",
65
+ onClick: select
66
+ })
67
+ ])
68
+ ]),
69
+ _: 1
70
+ });
71
+ };
72
+ }
73
+ });
74
+ export {
75
+ _sfc_main as default
76
+ };
@@ -1,5 +1,5 @@
1
1
  import { defineComponent, ref, openBlock, createBlock, withCtx, createVNode, withDirectives, createElementVNode, vShow } from "vue";
2
- import { u as useModalHandle, _ as _sfc_main$1, a as _sfc_main$2, b as _sfc_main$3, c as _sfc_main$4, B as BSButton } from "./index-BlYa5ZYE.js";
2
+ import { u as useModalHandle, _ as _sfc_main$1, a as _sfc_main$2, b as _sfc_main$3, c as _sfc_main$4, B as BSButton } from "./index-yhq7o4IG.js";
3
3
  const _hoisted_1 = { class: "bs-layout-form title-w-8" };
4
4
  const _hoisted_2 = { class: "title" };
5
5
  const _hoisted_3 = { class: "title" };
@@ -1,5 +1,5 @@
1
1
  import { defineComponent, ref, onMounted, useTemplateRef, openBlock, createBlock, withCtx, createElementBlock, createElementVNode, createVNode, createCommentVNode } from "vue";
2
- import { i as findImageNode, u as useModalHandle, _ as _sfc_main$1, b as _sfc_main$2, c as _sfc_main$3, B as BSButton, j as numberToPixel, k as formValidator } from "./index-BlYa5ZYE.js";
2
+ import { j as findImageNode, u as useModalHandle, _ as _sfc_main$1, b as _sfc_main$2, c as _sfc_main$3, B as BSButton, k as numberToPixel, l as formValidator } from "./index-yhq7o4IG.js";
3
3
  const _hoisted_1 = { class: "title" };
4
4
  const _hoisted_2 = { class: "title" };
5
5
  const _hoisted_3 = { class: "title" };
@@ -1,5 +1,5 @@
1
1
  import { defineComponent, ref, onMounted, openBlock, createBlock, withCtx, createElementVNode, createVNode } from "vue";
2
- import { u as useModalHandle, _ as _sfc_main$1, b as _sfc_main$2, c as _sfc_main$3, B as BSButton } from "./index-BlYa5ZYE.js";
2
+ import { u as useModalHandle, _ as _sfc_main$1, b as _sfc_main$2, c as _sfc_main$3, B as BSButton } from "./index-yhq7o4IG.js";
3
3
  const _hoisted_1 = { class: "bs-layout-form title-w-8" };
4
4
  const _hoisted_2 = { class: "title" };
5
5
  const _hoisted_3 = { class: "title" };
@@ -1,5 +1,5 @@
1
1
  import { defineComponent, ref, openBlock, createBlock, withCtx, createElementVNode, createVNode } from "vue";
2
- import { u as useModalHandle, _ as _sfc_main$1, b as _sfc_main$2, g as _sfc_main$3, B as BSButton } from "./index-BlYa5ZYE.js";
2
+ import { u as useModalHandle, _ as _sfc_main$1, b as _sfc_main$2, h as _sfc_main$3, B as BSButton } from "./index-yhq7o4IG.js";
3
3
  const _hoisted_1 = { class: "bs-layout-form" };
4
4
  const _hoisted_2 = { class: "bs-form-label" };
5
5
  const _hoisted_3 = { class: "bs-form-label" };
@@ -1,5 +1,5 @@
1
1
  import { defineComponent, ref, openBlock, createBlock, withCtx, createElementVNode, createVNode } from "vue";
2
- import { u as useModalHandle, _ as _sfc_main$1, b as _sfc_main$2, c as _sfc_main$3, g as _sfc_main$4, B as BSButton } from "./index-BlYa5ZYE.js";
2
+ import { u as useModalHandle, _ as _sfc_main$1, b as _sfc_main$2, c as _sfc_main$3, h as _sfc_main$4, B as BSButton } from "./index-yhq7o4IG.js";
3
3
  const _hoisted_1 = { class: "bs-layout-form" };
4
4
  const _hoisted_2 = { class: "title" };
5
5
  const _hoisted_3 = { class: "title" };
@@ -1,5 +1,5 @@
1
1
  import { defineComponent, ref, onMounted, openBlock, createBlock, withCtx, createElementBlock, createElementVNode, createVNode, createCommentVNode } from "vue";
2
- import { N as NodeSelection, u as useModalHandle, _ as _sfc_main$1, b as _sfc_main$2, c as _sfc_main$3, g as _sfc_main$4, B as BSButton } from "./index-BlYa5ZYE.js";
2
+ import { N as NodeSelection, u as useModalHandle, _ as _sfc_main$1, b as _sfc_main$2, c as _sfc_main$3, h as _sfc_main$4, B as BSButton } from "./index-yhq7o4IG.js";
3
3
  const findYoutubeNode = (selection) => {
4
4
  if (selection instanceof NodeSelection) {
5
5
  const node = selection.node;
package/dist/bluesea.js CHANGED
@@ -1,187 +1,193 @@
1
- import { ap, aq, bc, bd, l, aa, af, B, x, y, Y, f, F, ac, A, r, ag, bN, t, C, D, W, X, E, b, e, U, T, ab, R, p, $, Z, s, a7, bx, ad, _, S, a5, a6, a4, a3, a2, K, a8, ae, g, w, o, O, z, q, G, H, Q, J, a, a9, P, V, c, a0, a1, M, L, I, m, bk, bj, av, ai, bR, ah, aB, az, aw, bi, aD, aC, bV, ba, bg, aA, bh, aE, am, an, al, ao, bf, be, ay, bb, b0, bu, aI, aO, bt, c2, bD, bl, bs, br, at, b3, bF, au, bQ, bS, d, bA, ax, aL, ar, aM, as, bq, aZ, a_, a$, aW, aY, aX, aV, aS, k, bX, bL, bI, bW, bo, ak, c3, c0, c4, b4, c1, b6, aP, bp, aR, c5, bn, n, bB, bm, b$, bT, bv, bz, b1, aF, aJ, b9, b5, b7, b8, bE, bK, bJ, bC, bH, aQ, aN, bG, b_, bO, bP, bU, bw, by, u, b2, aG, aH, aK, aj, h, aT, aU, bZ, bY, bM } from "./index-BlYa5ZYE.js";
1
+ import { ar, as, bi, bj, m, ac, ah, B, y, z, $, g, G, ae, C, s, ai, bT, w, D, E, Y, Z, F, b, f, W, V, ad, S, q, a1, a0, t, a9, bD, af, _, T, a7, a8, a6, a5, a4, L, aa, ag, h, x, p, P, U, A, r, H, I, R, K, a, ab, Q, X, c, a2, a3, O, M, J, o, bq, bp, aA, ak, bX, aj, aH, aF, aC, bo, aJ, aI, b$, ax, bg, bm, aG, bn, aK, ao, ap, an, aq, bl, bk, aE, bh, b6, bA, aO, ay, aU, bz, c8, bJ, br, by, bx, av, b9, bL, aw, bW, bY, d, bG, aD, aR, at, aS, au, bw, b3, b4, b5, b0, b2, b1, e, a$, aY, l, c1, az, bR, bO, c0, bu, am, c9, c6, ca, ba, c7, bc, aV, bv, aX, cb, aB, bt, n, bH, bs, c5, bZ, bB, bF, b7, aL, aP, bf, bb, bd, be, bK, bQ, bP, bI, bN, aW, aT, bM, c4, bU, bV, b_, bC, bE, u, b8, aM, aN, aQ, al, i, aZ, a_, c3, c2, bS } from "./index-yhq7o4IG.js";
2
2
  export {
3
- ap as ADDRESS_COUNTRY_CONFIGS,
4
- aq as ADDRESS_COUNTRY_CONFIG_DEFAULT,
5
- bc as AbstractFilter,
6
- bd as AndFilter,
7
- l as BLUESEA_VERSION,
8
- aa as BSAddressInput,
9
- af as BSAlarmFrame,
3
+ ar as ADDRESS_COUNTRY_CONFIGS,
4
+ as as ADDRESS_COUNTRY_CONFIG_DEFAULT,
5
+ bi as AbstractFilter,
6
+ bj as AndFilter,
7
+ m as BLUESEA_VERSION,
8
+ ac as BSAddressInput,
9
+ ah as BSAlarmFrame,
10
10
  B as BSButton,
11
- x as BSCalendar,
12
- y as BSCalendarRange,
13
- Y as BSCardLayout,
14
- f as BSCheckbox,
15
- F as BSCheckboxGroup,
16
- ac as BSCodeEditor,
17
- A as BSColorInput,
18
- r as BSConsole,
19
- ag as BSContextMenuContainer,
20
- bN as BSContextMenuPlugin,
21
- t as BSDate,
22
- C as BSDateInput,
23
- D as BSDateRange,
24
- W as BSDateRangeFilter,
25
- X as BSDateRangeFilters,
26
- E as BSDateRangePresets,
11
+ y as BSCalendar,
12
+ z as BSCalendarRange,
13
+ $ as BSCardLayout,
14
+ g as BSCheckbox,
15
+ G as BSCheckboxGroup,
16
+ ae as BSCodeEditor,
17
+ C as BSColorInput,
18
+ s as BSConsole,
19
+ ai as BSContextMenuContainer,
20
+ bT as BSContextMenuPlugin,
21
+ w as BSDate,
22
+ D as BSDateInput,
23
+ E as BSDateRange,
24
+ Y as BSDateRangeFilter,
25
+ Z as BSDateRangeFilters,
26
+ F as BSDateRangePresets,
27
27
  b as BSFormLabel,
28
- e as BSGrid,
29
- U as BSGridControl,
30
- T as BSGridLookup,
31
- ab as BSImage,
32
- R as BSImageUpload,
33
- p as BSLink,
34
- $ as BSListControl,
35
- Z as BSListLayout,
36
- s as BSLoadingIcon,
37
- a7 as BSLocaleSelect,
38
- bx as BSModal,
39
- ad as BSModalContainer,
28
+ f as BSGrid,
29
+ W as BSGridControl,
30
+ V as BSGridLookup,
31
+ ad as BSImage,
32
+ S as BSImageUpload,
33
+ q as BSLink,
34
+ a1 as BSListControl,
35
+ a0 as BSListLayout,
36
+ t as BSLoadingIcon,
37
+ a9 as BSLocaleSelect,
38
+ bD as BSModal,
39
+ af as BSModalContainer,
40
40
  _ as BSModalFrame,
41
- S as BSMultiImageUpload,
42
- a5 as BSMultiLangExpandButton,
43
- a6 as BSMultiLangImageUpload,
44
- a4 as BSMultiLangRichText,
45
- a3 as BSMultiLangTextArea,
46
- a2 as BSMultiLangTextInput,
47
- K as BSMultiSelect,
48
- a8 as BSNameInput,
49
- ae as BSNotificationContainer,
50
- g as BSNumberInput,
51
- w as BSPageNavigation,
52
- o as BSPopupButton,
53
- O as BSPopupSelect,
54
- z as BSPriceInput,
55
- q as BSProgressBar,
56
- G as BSRadioButton,
57
- H as BSRadioButtonGroup,
58
- Q as BSRichText,
59
- J as BSSelect,
41
+ T as BSMultiImageUpload,
42
+ a7 as BSMultiLangExpandButton,
43
+ a8 as BSMultiLangImageUpload,
44
+ a6 as BSMultiLangRichText,
45
+ a5 as BSMultiLangTextArea,
46
+ a4 as BSMultiLangTextInput,
47
+ L as BSMultiSelect,
48
+ aa as BSNameInput,
49
+ ag as BSNotificationContainer,
50
+ h as BSNumberInput,
51
+ x as BSPageNavigation,
52
+ p as BSPopupButton,
53
+ P as BSPopupSelect,
54
+ U as BSPositionedImageUpload,
55
+ A as BSPriceInput,
56
+ r as BSProgressBar,
57
+ H as BSRadioButton,
58
+ I as BSRadioButtonGroup,
59
+ R as BSRichText,
60
+ K as BSSelect,
60
61
  a as BSTabSheet,
61
- a9 as BSTelInput,
62
- P as BSTextArea,
63
- V as BSTextFilter,
62
+ ab as BSTelInput,
63
+ Q as BSTextArea,
64
+ X as BSTextFilter,
64
65
  c as BSTextInput,
65
- a0 as BSTree,
66
- a1 as BSTreeControl,
67
- M as BSTreeMultiSelect,
68
- L as BSTreeSelect,
69
- I as BSYesNoGroup,
70
- m as BSYesNoSelect,
71
- bk as BetweenDateFilter,
72
- bj as BetweenFilter,
73
- av as DEFAULT_GRID_COLUMN_WIDTH,
74
- ai as DefaultBody,
75
- bR as DefaultFrameContext,
76
- ah as DefaultHeader,
77
- aB as EditableInputGridHandlerImpl,
78
- az as EditablePageGridHandlerImpl,
79
- aw as EditingRows,
80
- bi as EqualFilter,
81
- aD as GridHandlerEditableSupport,
82
- aC as GridHandlerSelectDeleteSupport,
83
- bV as I18NTexts,
84
- ba as IllegalAccessError,
85
- bg as InFilter,
86
- aA as InputGridHandlerImpl,
87
- bh as LikeFilter,
88
- aE as LocalStorageGridPreferenceStore,
89
- am as NAME_INPUT_STYLE_2,
90
- an as NAME_INPUT_STYLE_3,
91
- al as NAME_INPUT_STYLE_DEFAULT,
92
- ao as NAME_INPUT_STYLE_JP,
93
- bf as NotFilter,
94
- be as OrFilter,
95
- ay as PageGridHandlerImpl,
96
- bb as PaginatedList,
97
- b0 as SavePointImpl,
98
- bu as SearchParam,
99
- aI as TabStatusManagerImpl,
100
- aO as ValidationFailedError,
101
- bt as acceptFilter,
102
- c2 as addPrefixToMultiLangString,
103
- bD as alarmEntries,
104
- bl as andFilter,
105
- bs as betweenDateFilter,
106
- br as betweenFilter,
107
- at as blueseaConfig,
108
- b3 as cancelProvidedSavePoint,
109
- bF as closeAlarm,
110
- au as configureBluesea,
111
- bQ as createContextMenuPlugin,
112
- bS as createDefaultFrameContext,
66
+ a2 as BSTree,
67
+ a3 as BSTreeControl,
68
+ O as BSTreeMultiSelect,
69
+ M as BSTreeSelect,
70
+ J as BSYesNoGroup,
71
+ o as BSYesNoSelect,
72
+ bq as BetweenDateFilter,
73
+ bp as BetweenFilter,
74
+ aA as DEFAULT_GRID_COLUMN_WIDTH,
75
+ ak as DefaultBody,
76
+ bX as DefaultFrameContext,
77
+ aj as DefaultHeader,
78
+ aH as EditableInputGridHandlerImpl,
79
+ aF as EditablePageGridHandlerImpl,
80
+ aC as EditingRows,
81
+ bo as EqualFilter,
82
+ aJ as GridHandlerEditableSupport,
83
+ aI as GridHandlerSelectDeleteSupport,
84
+ b$ as I18NTexts,
85
+ ax as IMAGE_TYPE,
86
+ bg as IllegalAccessError,
87
+ bm as InFilter,
88
+ aG as InputGridHandlerImpl,
89
+ bn as LikeFilter,
90
+ aK as LocalStorageGridPreferenceStore,
91
+ ao as NAME_INPUT_STYLE_2,
92
+ ap as NAME_INPUT_STYLE_3,
93
+ an as NAME_INPUT_STYLE_DEFAULT,
94
+ aq as NAME_INPUT_STYLE_JP,
95
+ bl as NotFilter,
96
+ bk as OrFilter,
97
+ aE as PageGridHandlerImpl,
98
+ bh as PaginatedList,
99
+ b6 as SavePointImpl,
100
+ bA as SearchParam,
101
+ aO as TabStatusManagerImpl,
102
+ ay as VIDEO_TYPE,
103
+ aU as ValidationFailedError,
104
+ bz as acceptFilter,
105
+ c8 as addPrefixToMultiLangString,
106
+ bJ as alarmEntries,
107
+ br as andFilter,
108
+ by as betweenDateFilter,
109
+ bx as betweenFilter,
110
+ av as blueseaConfig,
111
+ b9 as cancelProvidedSavePoint,
112
+ bL as closeAlarm,
113
+ aw as configureBluesea,
114
+ bW as createContextMenuPlugin,
115
+ bY as createDefaultFrameContext,
113
116
  d as createInputGridHandler,
114
- bA as createModalPlugin,
115
- ax as createPageGridHandler,
116
- aL as createTreeHandler,
117
- ar as defaultAddressInputComponentConfig,
118
- aM as defaultExpandMultiLang,
119
- as as defaultRichTextComponentConfig,
120
- bq as equalFilter,
121
- aZ as executeBetweenLengthValidation,
122
- a_ as executeBetweenValueValidation,
123
- a$ as executeDateRangeValidation,
124
- aW as executeFieldValidationRule,
125
- aY as executeRegExpValidation,
126
- aX as executeRequiredValidation,
127
- aV as fieldValidator,
128
- aS as findFieldValidatorElements,
129
- k as formValidator,
130
- bX as formatUtil,
131
- bL as hideLoading,
132
- bI as hideTooltip,
133
- bW as i18n,
134
- bo as inFilter,
135
- ak as interpretMultiLangText,
136
- c3 as isBlankMultiLangImageFile,
137
- c0 as isBlankMultiLangString,
138
- c4 as isMultiLangImageFileValidRequired,
139
- b4 as isMultiLangMessage,
140
- c1 as isMultiLangStringValidRequired,
141
- b6 as isNameEmpty,
142
- aP as isValidationFailedError,
143
- bp as likeFilter,
144
- aR as loadFieldValidator,
145
- c5 as localeNameProvider,
146
- bn as notFilter,
117
+ bG as createModalPlugin,
118
+ aD as createPageGridHandler,
119
+ aR as createTreeHandler,
120
+ at as defaultAddressInputComponentConfig,
121
+ aS as defaultExpandMultiLang,
122
+ au as defaultRichTextComponentConfig,
123
+ bw as equalFilter,
124
+ b3 as executeBetweenLengthValidation,
125
+ b4 as executeBetweenValueValidation,
126
+ b5 as executeDateRangeValidation,
127
+ b0 as executeFieldValidationRule,
128
+ b2 as executeRegExpValidation,
129
+ b1 as executeRequiredValidation,
130
+ e as extractYoutubeVideoId,
131
+ a$ as fieldValidator,
132
+ aY as findFieldValidatorElements,
133
+ l as formValidator,
134
+ c1 as formatUtil,
135
+ az as getMediaUrlType,
136
+ bR as hideLoading,
137
+ bO as hideTooltip,
138
+ c0 as i18n,
139
+ bu as inFilter,
140
+ am as interpretMultiLangText,
141
+ c9 as isBlankMultiLangImageFile,
142
+ c6 as isBlankMultiLangString,
143
+ ca as isMultiLangImageFileValidRequired,
144
+ ba as isMultiLangMessage,
145
+ c7 as isMultiLangStringValidRequired,
146
+ bc as isNameEmpty,
147
+ aV as isValidationFailedError,
148
+ bv as likeFilter,
149
+ aX as loadFieldValidator,
150
+ cb as localeNameProvider,
151
+ aB as nameFilterCreator,
152
+ bt as notFilter,
147
153
  n as notNull,
148
- bB as notificationEntries,
149
- bm as orFilter,
150
- b$ as parsePathParam,
151
- bT as provideDefaultFrameContext,
152
- bv as provideFieldContext,
153
- bz as provideModalHandle,
154
- b1 as provideSavePoint,
155
- aF as provideTabManager,
156
- aJ as provideTabStatusManager,
157
- b9 as serializeAddress,
158
- b5 as serializeMoney,
159
- b7 as serializeName,
160
- b8 as serializeTel,
161
- bE as showAlarm,
162
- bK as showLoading,
163
- bJ as showLoadingIcon,
164
- bC as showNotification,
165
- bH as showTooltip,
166
- aQ as storeFieldValidator,
167
- aN as toggleDefaultExpandMultiLang,
168
- bG as tooltipEntry,
169
- b_ as tryUntil,
170
- bO as useContextMenu,
171
- bP as useContextMenuOptional,
172
- bU as useDefaultFrame,
173
- bw as useFieldContext,
174
- by as useModal,
154
+ bH as notificationEntries,
155
+ bs as orFilter,
156
+ c5 as parsePathParam,
157
+ bZ as provideDefaultFrameContext,
158
+ bB as provideFieldContext,
159
+ bF as provideModalHandle,
160
+ b7 as provideSavePoint,
161
+ aL as provideTabManager,
162
+ aP as provideTabStatusManager,
163
+ bf as serializeAddress,
164
+ bb as serializeMoney,
165
+ bd as serializeName,
166
+ be as serializeTel,
167
+ bK as showAlarm,
168
+ bQ as showLoading,
169
+ bP as showLoadingIcon,
170
+ bI as showNotification,
171
+ bN as showTooltip,
172
+ aW as storeFieldValidator,
173
+ aT as toggleDefaultExpandMultiLang,
174
+ bM as tooltipEntry,
175
+ c4 as tryUntil,
176
+ bU as useContextMenu,
177
+ bV as useContextMenuOptional,
178
+ b_ as useDefaultFrame,
179
+ bC as useFieldContext,
180
+ bE as useModal,
175
181
  u as useModalHandle,
176
- b2 as useSavePoint,
177
- aG as useTabManager,
178
- aH as useTabManagerSilently,
179
- aK as useTabStatusManager,
180
- aj as vClickOutside,
181
- h as vT,
182
- aT as validateField,
183
- aU as validateFields,
184
- bZ as waitDuring,
185
- bY as waitUntil,
186
- bM as withLoading
182
+ b8 as useSavePoint,
183
+ aM as useTabManager,
184
+ aN as useTabManagerSilently,
185
+ aQ as useTabStatusManager,
186
+ al as vClickOutside,
187
+ i as vT,
188
+ aZ as validateField,
189
+ a_ as validateFields,
190
+ c3 as waitDuring,
191
+ c2 as waitUntil,
192
+ bS as withLoading
187
193
  };