@ibiz-template/runtime 0.7.41-alpha.62 → 0.7.41-alpha.63

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.esm.js CHANGED
@@ -19486,7 +19486,9 @@ var GlobalConfig = class {
19486
19486
  mobWeChatDebug: false,
19487
19487
  showUploadLoading: false,
19488
19488
  mobShowBackTop: false,
19489
- mobEnableStoredQuery: false
19489
+ mobEnableStoredQuery: false,
19490
+ toolbarShowMode: "IMMEDIATE",
19491
+ toolbarGroupShowMode: "ACTIONSHEET"
19490
19492
  };
19491
19493
  /**
19492
19494
  * @description 图片压缩配置
@@ -43982,7 +43984,21 @@ var ToolbarController = class extends ControlController {
43982
43984
  * @memberof ToolbarController
43983
43985
  */
43984
43986
  get showMode() {
43985
- return this.controlParams.showmode || "IMMEDIATE";
43987
+ if (this.controlParams.showmode) {
43988
+ return this.controlParams.showmode;
43989
+ }
43990
+ return ibiz.config.mob.toolbarShowMode;
43991
+ }
43992
+ /**
43993
+ * @description 移动端工具栏分组与行为组的展示模式
43994
+ * @readonly
43995
+ * @type {('DEFAULT' | 'ACTIONSHEET')}
43996
+ */
43997
+ get groupShowMode() {
43998
+ if (this.controlParams.groupshowmode) {
43999
+ return this.controlParams.groupshowmode;
44000
+ }
44001
+ return ibiz.config.mob.toolbarGroupShowMode;
43986
44002
  }
43987
44003
  /**
43988
44004
  * @description 数据部件控制器