@ibiz-template/mob-vue3-components 0.0.13 → 0.0.15

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.
@@ -33,6 +33,7 @@ export declare const IBizPickerSelectView: import("vue").DefineComponent<{
33
33
  [x: symbol]: any;
34
34
  srfsessionid: string;
35
35
  srfappid: string;
36
+ srfsimple?: boolean | undefined;
36
37
  }>;
37
38
  params: Ref<IParams>;
38
39
  editorRef: Ref<any>;
@@ -1,4 +1,5 @@
1
1
  import { registerEditorProvider } from '@ibiz-template/runtime';
2
+ import { defineAsyncComponent } from 'vue';
2
3
  import { NotSupportedEditor } from './not-supported-editor/not-supported-editor.mjs';
3
4
  import './span/index.mjs';
4
5
  import './text-box/index.mjs';
@@ -17,7 +18,6 @@ import './date-range/index.mjs';
17
18
  import './cascader/index.mjs';
18
19
  import './color-picker/index.mjs';
19
20
  import './markdown/index.mjs';
20
- import IBizMarkDown from './markdown/ibiz-markdown-editor/ibiz-markdown-editor.mjs';
21
21
  import { IBizDropdownList } from './dropdown-list/ibiz-dropdown-list/ibiz-dropdown-list.mjs';
22
22
  import './check-box/index.mjs';
23
23
  import './common/index.mjs';
@@ -110,8 +110,13 @@ const IBizEditor = {
110
110
  v.component(IBizCascader.name, IBizCascader);
111
111
  v.component(IBizColorPicker.name, IBizColorPicker);
112
112
  v.component(IBizPickerSelectView.name, IBizPickerSelectView);
113
- v.component(IBizMarkDown.name, IBizMarkDown);
114
113
  v.component(IBizEditorCarousel.name, IBizEditorCarousel);
114
+ v.component(
115
+ "IBizMarkDown",
116
+ defineAsyncComponent(
117
+ () => import('./markdown/ibiz-markdown-editor/ibiz-markdown-editor.mjs')
118
+ )
119
+ );
115
120
  registerEditorProvider("SPAN", () => new SpanEditorProvider());
116
121
  const textBoxEditorProvider = new TextBoxEditorProvider();
117
122
  registerEditorProvider("MOBTEXT", () => textBoxEditorProvider);