@alicloud/alfa-react 1.4.28 → 1.4.29

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.
@@ -99,7 +99,7 @@ export default function createApplication(loader) {
99
99
  beforeUpdate: beforeUpdate,
100
100
  locale: locale,
101
101
  // 用户自定义 manifest 且未传入 dynamicConfig 时,默认值为 false,否则为 true
102
- dynamicConfig: dynamicConfig || !manifest
102
+ dynamicConfig: typeof dynamicConfig === 'boolean' ? dynamicConfig : !manifest
103
103
  };
104
104
  }, []);
105
105
  useEffect(function () {
package/es/version.js CHANGED
@@ -1 +1 @@
1
- export var version = '1.4.28';
1
+ export var version = '1.4.29';
@@ -121,7 +121,7 @@ function createApplication(loader) {
121
121
  beforeUpdate: beforeUpdate,
122
122
  locale: locale,
123
123
  // 用户自定义 manifest 且未传入 dynamicConfig 时,默认值为 false,否则为 true
124
- dynamicConfig: dynamicConfig || !manifest
124
+ dynamicConfig: typeof dynamicConfig === 'boolean' ? dynamicConfig : !manifest
125
125
  };
126
126
  }, []);
127
127
  (0, _react.useEffect)(function () {
package/lib/version.js CHANGED
@@ -4,5 +4,5 @@ Object.defineProperty(exports, "__esModule", {
4
4
  value: true
5
5
  });
6
6
  exports.version = void 0;
7
- var version = '1.4.28';
7
+ var version = '1.4.29';
8
8
  exports.version = version;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alicloud/alfa-react",
3
- "version": "1.4.28",
3
+ "version": "1.4.29",
4
4
  "description": "Alfa Framework (React Version)",
5
5
  "main": "lib/index.js",
6
6
  "module": "es/index.js",
@@ -51,5 +51,5 @@
51
51
  "peerDependencies": {
52
52
  "react": ">=16.0.0"
53
53
  },
54
- "gitHead": "ff9294b1d5e08b14691c8aa2bef098da2857f3df"
54
+ "gitHead": "7ba041c936d2d2738a4675710bbc979b7973ff67"
55
55
  }
@@ -1 +1 @@
1
- export declare const version = "1.4.28";
1
+ export declare const version = "1.4.29";