@ibiz-template/runtime 0.7.41-alpha.98 → 0.7.41-alpha.99

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
@@ -28234,7 +28234,7 @@ var ViewController = class extends BaseController {
28234
28234
  const LoaddingTextValue = (_a3 = appViewParams == null ? void 0 : appViewParams.find(
28235
28235
  (item) => item.id.toLowerCase() === "srfloadingtext"
28236
28236
  )) == null ? void 0 : _a3.value;
28237
- this.state.loadingText = LoaddingTextValue || ibiz.config.view.loadingText;
28237
+ this.state.loadingText = LoaddingTextValue ? ibiz.appUtil.resolveI18nText(LoaddingTextValue) : ibiz.config.view.loadingText;
28238
28238
  this.state.isLoading = true;
28239
28239
  await super.onCreated();
28240
28240
  this.modal.hooks.beforeDismiss.tapPromise(async (modalData) => {
@@ -28431,7 +28431,7 @@ var ViewController = class extends BaseController {
28431
28431
  const LoaddingTextValue = (_a3 = appViewParams == null ? void 0 : appViewParams.find(
28432
28432
  (item) => item.id.toLowerCase() === "srfloadingtext"
28433
28433
  )) == null ? void 0 : _a3.value;
28434
- this.state.loadingText = LoaddingTextValue || ibiz.config.view.loadingText;
28434
+ this.state.loadingText = LoaddingTextValue ? ibiz.appUtil.resolveI18nText(LoaddingTextValue) : ibiz.config.view.loadingText;
28435
28435
  }
28436
28436
  }
28437
28437
  endLoading() {
@@ -41702,7 +41702,7 @@ var SearchBarController = class extends ControlController {
41702
41702
  */
41703
41703
  get searchPhSeparator() {
41704
41704
  if (this.controlParams.searchphseparator) {
41705
- return this.controlParams.searchphseparator;
41705
+ return ibiz.appUtil.resolveI18nText(this.controlParams.searchphseparator);
41706
41706
  }
41707
41707
  return ibiz.config.common.searchPhSeparator;
41708
41708
  }
@@ -44082,7 +44082,7 @@ var ExpBarControlController = class extends ControlController {
44082
44082
  * 默认通过路由上的srfnav导航
44083
44083
  * @author lxm
44084
44084
  * @date 2023-08-10 04:04:08
44085
- * @protected
44085
+ * @public
44086
44086
  */
44087
44087
  navBySrfnav() {
44088
44088
  if (!this.xDataController)
@@ -44127,7 +44127,7 @@ var ExpBarControlController = class extends ControlController {
44127
44127
  * 对于不同的导航,第一条可导航的数据可能定义不同,可以重写改方法。
44128
44128
  * @author lxm
44129
44129
  * @date 2023-08-10 03:58:15
44130
- * @protected
44130
+ * @public
44131
44131
  */
44132
44132
  navByFirstItem() {
44133
44133
  if (!this.xDataController)
@@ -44140,7 +44140,7 @@ var ExpBarControlController = class extends ControlController {
44140
44140
  }
44141
44141
  /**
44142
44142
  * @description 清空导航
44143
- * @protected
44143
+ * @public
44144
44144
  * @memberof ExpBarControlController
44145
44145
  */
44146
44146
  clearNavigation() {
@@ -44657,7 +44657,7 @@ var ChartExpBarController = class extends ExpBarControlController {
44657
44657
  * 对于不同的导航,第一条可导航的数据可能定义不同,可以重写改方法。
44658
44658
  * @author lxm
44659
44659
  * @date 2023-08-10 03:58:15
44660
- * @protected
44660
+ * @public
44661
44661
  */
44662
44662
  navByFirstItem() {
44663
44663
  if (!this.xDataController)