@ibiz-template/vue3-util 0.7.38-alpha.23 → 0.7.38-alpha.45
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 +1 -1
- package/es/common/code-list/code-list.mjs +1 -1
- package/es/common/control-base/control-base.css +1 -1
- package/es/common/control-base/control-base.d.ts.map +1 -1
- package/es/common/control-base/control-base.mjs +67 -2
- package/es/common/icon/icon.d.ts.map +1 -1
- package/es/common/icon/icon.mjs +5 -0
- package/es/common/view-shell/view-shell.d.ts.map +1 -1
- package/es/common/view-shell/view-shell.mjs +79 -56
- package/es/index.mjs +1 -0
- package/es/locale/en/index.d.ts +2 -0
- package/es/locale/en/index.d.ts.map +1 -1
- package/es/locale/en/index.mjs +3 -1
- package/es/locale/zh-CN/index.d.ts +2 -0
- package/es/locale/zh-CN/index.d.ts.map +1 -1
- package/es/locale/zh-CN/index.mjs +3 -1
- package/es/panel-component/auth-wxmp-qrcode/auth-wxmp-qrcode.controller.d.ts +111 -0
- package/es/panel-component/auth-wxmp-qrcode/auth-wxmp-qrcode.controller.d.ts.map +1 -0
- package/es/panel-component/auth-wxmp-qrcode/auth-wxmp-qrcode.controller.mjs +176 -0
- package/es/panel-component/auth-wxmp-qrcode/auth-wxmp-qrcode.css +1 -0
- package/es/panel-component/auth-wxmp-qrcode/auth-wxmp-qrcode.d.ts +27 -0
- package/es/panel-component/auth-wxmp-qrcode/auth-wxmp-qrcode.d.ts.map +1 -0
- package/es/panel-component/auth-wxmp-qrcode/auth-wxmp-qrcode.mjs +54 -0
- package/es/panel-component/auth-wxmp-qrcode/auth-wxmp-qrcode.provider.d.ts +15 -0
- package/es/panel-component/auth-wxmp-qrcode/auth-wxmp-qrcode.provider.d.ts.map +1 -0
- package/es/panel-component/auth-wxmp-qrcode/auth-wxmp-qrcode.provider.mjs +15 -0
- package/es/panel-component/auth-wxmp-qrcode/auth-wxmp-qrcode.state.d.ts +54 -0
- package/es/panel-component/auth-wxmp-qrcode/auth-wxmp-qrcode.state.d.ts.map +1 -0
- package/es/panel-component/auth-wxmp-qrcode/auth-wxmp-qrcode.state.mjs +7 -0
- package/es/panel-component/auth-wxmp-qrcode/index.d.ts +24 -0
- package/es/panel-component/auth-wxmp-qrcode/index.d.ts.map +1 -0
- package/es/panel-component/auth-wxmp-qrcode/index.mjs +19 -0
- package/es/panel-component/index.d.ts +1 -0
- package/es/panel-component/index.d.ts.map +1 -1
- package/es/panel-component/index.mjs +1 -0
- package/es/panel-component/multi-data-container/multi-data-container.controller.d.ts +9 -0
- package/es/panel-component/multi-data-container/multi-data-container.controller.d.ts.map +1 -1
- package/es/panel-component/multi-data-container/multi-data-container.controller.mjs +15 -2
- package/es/panel-component/multi-data-container-raw/multi-data-container-raw.controller.d.ts +8 -0
- package/es/panel-component/multi-data-container-raw/multi-data-container-raw.controller.d.ts.map +1 -1
- package/es/panel-component/multi-data-container-raw/multi-data-container-raw.controller.mjs +14 -2
- package/es/panel-component/panel-container/panel-container.css +1 -1
- package/es/panel-component/single-data-container/single-data-container.controller.d.ts +8 -0
- package/es/panel-component/single-data-container/single-data-container.controller.d.ts.map +1 -1
- package/es/panel-component/single-data-container/single-data-container.controller.mjs +14 -2
- package/es/view/common/index.d.ts +1 -1
- package/es/view/common/view.d.ts +1 -1
- package/es/view/common/view.d.ts.map +1 -1
- package/es/view/common/view.mjs +1 -1
- package/lib/common/code-list/code-list.cjs +1 -1
- package/lib/common/control-base/control-base.cjs +66 -1
- package/lib/common/control-base/control-base.css +1 -1
- package/lib/common/icon/icon.cjs +5 -0
- package/lib/common/view-shell/view-shell.cjs +78 -55
- package/lib/index.cjs +25 -23
- package/lib/locale/en/index.cjs +3 -1
- package/lib/locale/zh-CN/index.cjs +3 -1
- package/lib/panel-component/auth-wxmp-qrcode/auth-wxmp-qrcode.cjs +56 -0
- package/lib/panel-component/auth-wxmp-qrcode/auth-wxmp-qrcode.controller.cjs +178 -0
- package/lib/panel-component/auth-wxmp-qrcode/auth-wxmp-qrcode.css +1 -0
- package/lib/panel-component/auth-wxmp-qrcode/auth-wxmp-qrcode.provider.cjs +17 -0
- package/lib/panel-component/auth-wxmp-qrcode/auth-wxmp-qrcode.state.cjs +9 -0
- package/lib/panel-component/auth-wxmp-qrcode/index.cjs +24 -0
- package/lib/panel-component/index.cjs +2 -0
- package/lib/panel-component/multi-data-container/multi-data-container.controller.cjs +14 -1
- package/lib/panel-component/multi-data-container-raw/multi-data-container-raw.controller.cjs +13 -1
- package/lib/panel-component/panel-container/panel-container.css +1 -1
- package/lib/panel-component/single-data-container/single-data-container.controller.cjs +13 -1
- package/lib/view/common/view.cjs +1 -1
- package/package.json +5 -5
|
@@ -1 +1 @@
|
|
|
1
|
-
.ibiz-panel-container{width:100%;height:100%}.ibiz-panel-container>.ibiz-row{height:100%;overflow
|
|
1
|
+
.ibiz-panel-container{--ibiz-panel-scroll:auto;width:100%;height:100%}.ibiz-panel-container>.ibiz-row{height:100%;overflow:hidden var(--ibiz-panel-scroll)}.ibiz-panel-container.is-hidden{display:none}
|
|
@@ -43,7 +43,19 @@ class SingleDataContainerController extends runtime.PanelItemController {
|
|
|
43
43
|
async onInit() {
|
|
44
44
|
await super.onInit();
|
|
45
45
|
await this.initPanelItemControllers();
|
|
46
|
-
|
|
46
|
+
}
|
|
47
|
+
/**
|
|
48
|
+
* 面板状态变更通知
|
|
49
|
+
*
|
|
50
|
+
* @param {PanelNotifyState} _state
|
|
51
|
+
* @return {*} {Promise<void>}
|
|
52
|
+
* @memberof SingleDataContainerController
|
|
53
|
+
*/
|
|
54
|
+
async panelStateNotify(_state) {
|
|
55
|
+
super.panelStateNotify(_state);
|
|
56
|
+
if (_state === runtime.PanelNotifyState.LOAD) {
|
|
57
|
+
this.initContainerData();
|
|
58
|
+
}
|
|
47
59
|
}
|
|
48
60
|
/**
|
|
49
61
|
* 初始化面板成员控制器
|
package/lib/view/common/view.cjs
CHANGED
|
@@ -72,7 +72,7 @@ const View = /* @__PURE__ */ vue.defineComponent({
|
|
|
72
72
|
} = c.model;
|
|
73
73
|
const typeClass = viewType.toLowerCase();
|
|
74
74
|
const sysCssName = sysCss == null ? void 0 : sysCss.cssName;
|
|
75
|
-
const viewClassNames = vue.computed(() => [ns.b(), ns.b(typeClass), ns.m(codeName), sysCssName, c.state.viewMessages.TOP ? "has-top-message" : "", c.state.viewMessages.BOTTOM ? "has-bottom-message" : ""]);
|
|
75
|
+
const viewClassNames = vue.computed(() => [ns.b(), ns.b(typeClass), ns.m(codeName), sysCssName, c.state.viewMessages.TOP ? "has-top-message" : "", c.state.viewMessages.BOTTOM ? "has-bottom-message" : "", c.state.presetClassList]);
|
|
76
76
|
const onLayoutPanelCreated = (controller) => {
|
|
77
77
|
c.setLayoutPanel(controller);
|
|
78
78
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ibiz-template/vue3-util",
|
|
3
|
-
"version": "0.7.38-alpha.
|
|
3
|
+
"version": "0.7.38-alpha.45",
|
|
4
4
|
"description": "vue3 工具包",
|
|
5
5
|
"main": "lib/index.cjs",
|
|
6
6
|
"types": "es/index.d.ts",
|
|
@@ -40,10 +40,10 @@
|
|
|
40
40
|
"license": "MIT",
|
|
41
41
|
"devDependencies": {
|
|
42
42
|
"@ibiz-template/cli": "^0.3.10",
|
|
43
|
-
"@ibiz-template/core": "^0.7.38-alpha.
|
|
44
|
-
"@ibiz-template/runtime": "^0.7.38-alpha.
|
|
43
|
+
"@ibiz-template/core": "^0.7.38-alpha.43",
|
|
44
|
+
"@ibiz-template/runtime": "^0.7.38-alpha.45",
|
|
45
45
|
"@ibiz-template/theme": "^0.7.32",
|
|
46
|
-
"@ibiz/model-core": "^0.1.
|
|
46
|
+
"@ibiz/model-core": "^0.1.64",
|
|
47
47
|
"@types/path-browserify": "^1.0.2",
|
|
48
48
|
"@types/qs": "^6.9.11",
|
|
49
49
|
"@types/systemjs": "^6.13.5",
|
|
@@ -60,7 +60,7 @@
|
|
|
60
60
|
"peerDependencies": {
|
|
61
61
|
"@ibiz-template/core": "^0.6.0",
|
|
62
62
|
"@ibiz-template/runtime": "^0.6.0",
|
|
63
|
-
"@ibiz/model-core": "^0.1.
|
|
63
|
+
"@ibiz/model-core": "^0.1.64",
|
|
64
64
|
"dayjs": "^1.11.10",
|
|
65
65
|
"path-browserify": "^1.0.1",
|
|
66
66
|
"pinia": "^2.1.7",
|