@innoways/utils 6.2.8 → 6.2.9
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/CHANGELOG.md +6 -0
- package/dist/cjs/index.js +1 -1
- package/dist/esm/index.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/dist/cjs/index.js
CHANGED
|
@@ -3188,7 +3188,7 @@ function initParse(_ref) {
|
|
|
3188
3188
|
|
|
3189
3189
|
var isUiProp = function isUiProp(key) {
|
|
3190
3190
|
// 需要丢到uiSchema中的属性
|
|
3191
|
-
var uiSchemaKeys = ['footer', 'theme', 'containerStyle', 'formMode', 'ui'];
|
|
3191
|
+
var uiSchemaKeys = ['footer', 'theme', 'containerStyle', 'formMode', 'ui', 'token', 'themeColor'];
|
|
3192
3192
|
return uiSchemaKeys.includes(key) || uiReg.test(key);
|
|
3193
3193
|
};
|
|
3194
3194
|
|
package/dist/esm/index.js
CHANGED
|
@@ -3173,7 +3173,7 @@ function initParse(_ref) {
|
|
|
3173
3173
|
|
|
3174
3174
|
var isUiProp = function isUiProp(key) {
|
|
3175
3175
|
// 需要丢到uiSchema中的属性
|
|
3176
|
-
var uiSchemaKeys = ['footer', 'theme', 'containerStyle', 'formMode', 'ui'];
|
|
3176
|
+
var uiSchemaKeys = ['footer', 'theme', 'containerStyle', 'formMode', 'ui', 'token', 'themeColor'];
|
|
3177
3177
|
return uiSchemaKeys.includes(key) || uiReg.test(key);
|
|
3178
3178
|
};
|
|
3179
3179
|
|