@ibiz-template/mob-vue3-components 0.0.17 → 0.0.18
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/index.min.css +1 -1
- package/dist/index.system.min.js +2 -2
- 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/panel-component/view-content-panel-container/view-content-panel-container.mjs +2 -1
- package/es/view-engine/mob-edit-view.engine.mjs +1 -1
- package/lib/panel-component/view-content-panel-container/view-content-panel-container.cjs +2 -1
- package/lib/view-engine/mob-edit-view.engine.cjs +1 -1
- package/package.json +7 -7
|
@@ -82,7 +82,8 @@ const ViewContentPanelContainer = /* @__PURE__ */ defineComponent({
|
|
|
82
82
|
"ref": "contentRef"
|
|
83
83
|
}, {
|
|
84
84
|
default: () => [this.isScrollable && this.contentRef && createVNode(resolveComponent("van-back-top"), {
|
|
85
|
-
"teleport": this.contentRef.$el
|
|
85
|
+
"teleport": this.contentRef.$el,
|
|
86
|
+
"bottom": 80
|
|
86
87
|
}, null), defaultSlots.map((slot) => {
|
|
87
88
|
const props = slot.props;
|
|
88
89
|
if (!props || !props.controller) {
|
|
@@ -158,7 +158,7 @@ class MobEditViewEngine extends ViewEngineBase {
|
|
|
158
158
|
*/
|
|
159
159
|
async wfStart() {
|
|
160
160
|
var _a, _b;
|
|
161
|
-
await this.save();
|
|
161
|
+
await this.save({ silent: true });
|
|
162
162
|
const app = ibiz.hub.getApp(this.view.context.srfappid);
|
|
163
163
|
const entityService = await app.deService.getService(
|
|
164
164
|
this.view.context,
|
|
@@ -84,7 +84,8 @@ const ViewContentPanelContainer = /* @__PURE__ */ vue.defineComponent({
|
|
|
84
84
|
"ref": "contentRef"
|
|
85
85
|
}, {
|
|
86
86
|
default: () => [this.isScrollable && this.contentRef && vue.createVNode(vue.resolveComponent("van-back-top"), {
|
|
87
|
-
"teleport": this.contentRef.$el
|
|
87
|
+
"teleport": this.contentRef.$el,
|
|
88
|
+
"bottom": 80
|
|
88
89
|
}, null), defaultSlots.map((slot) => {
|
|
89
90
|
const props = slot.props;
|
|
90
91
|
if (!props || !props.controller) {
|
|
@@ -160,7 +160,7 @@ class MobEditViewEngine extends runtime.ViewEngineBase {
|
|
|
160
160
|
*/
|
|
161
161
|
async wfStart() {
|
|
162
162
|
var _a, _b;
|
|
163
|
-
await this.save();
|
|
163
|
+
await this.save({ silent: true });
|
|
164
164
|
const app = ibiz.hub.getApp(this.view.context.srfappid);
|
|
165
165
|
const entityService = await app.deService.getService(
|
|
166
166
|
this.view.context,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ibiz-template/mob-vue3-components",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.18",
|
|
4
4
|
"description": "使用 rollup 编译 vue 组件或者 jsx",
|
|
5
5
|
"main": "lib/index.cjs",
|
|
6
6
|
"module": "es/index.mjs",
|
|
@@ -24,12 +24,12 @@
|
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
26
|
"@ibiz-template-package/vs-tree-ex": "^0.1.1",
|
|
27
|
-
"@ibiz-template/core": "
|
|
28
|
-
"@ibiz-template/model-helper": "
|
|
29
|
-
"@ibiz-template/runtime": "
|
|
30
|
-
"@ibiz-template/theme": "^0.
|
|
31
|
-
"@ibiz-template/vue3-util": "
|
|
32
|
-
"@ibiz/model-core": "^0.1.
|
|
27
|
+
"@ibiz-template/core": "0.7.3",
|
|
28
|
+
"@ibiz-template/model-helper": "0.7.5",
|
|
29
|
+
"@ibiz-template/runtime": "0.7.5",
|
|
30
|
+
"@ibiz-template/theme": "^0.7.0",
|
|
31
|
+
"@ibiz-template/vue3-util": "0.7.5",
|
|
32
|
+
"@ibiz/model-core": "^0.1.21",
|
|
33
33
|
"@ibiz-template/mob-theme": "^0.2.13",
|
|
34
34
|
"async-validator": "^4.2.5",
|
|
35
35
|
"cherry-markdown": "^0.8.26",
|