@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.
- package/dist/ibiz-markdown-editor-AtZNv2th.js +2 -0
- package/dist/ibiz-markdown-editor-AtZNv2th.js.map +1 -0
- package/dist/index.min.css +1 -1
- package/dist/index.system.min.js +5 -5
- package/dist/index.system.min.js.map +1 -1
- package/es/editor/data-picker/ibiz-picker-select-view/ibiz-picker-select-view.d.ts +1 -0
- package/es/editor/index.mjs +7 -2
- package/es/mob-app/components/router-shell/router-shell.d.ts +9 -3843
- package/es/mob-app/components/router-shell/router-shell.mjs +3 -3
- package/es/mob-app/main.mjs +2 -2
- package/es/mob-app/router/index.mjs +7 -3
- package/es/panel-component/panel-button/index.d.ts +1 -1
- package/es/panel-component/panel-button/panel-button.d.ts +1 -1
- package/es/util/app-modal/app-modal-component.d.ts +1 -0
- package/es/util/notification-util/notification-util.d.ts +1 -0
- package/es/util/notification-util/notification-util.mjs +3 -0
- package/es/util/store/view-stack/view-stack.mjs +5 -1
- package/lib/editor/index.cjs +7 -2
- package/lib/mob-app/components/router-shell/router-shell.cjs +3 -3
- package/lib/mob-app/main.cjs +2 -2
- package/lib/mob-app/router/index.cjs +7 -3
- package/lib/util/notification-util/notification-util.cjs +3 -0
- package/lib/util/store/view-stack/view-stack.cjs +5 -1
- package/package.json +6 -6
package/es/editor/index.mjs
CHANGED
|
@@ -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);
|