@byteluck-fe/model-driven-upgrade 2.9.0-alpha.13 → 2.9.0-alpha.15
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/esm/upgrade/v3_1.js
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* @Autor: SuperLucky-Q
|
|
4
4
|
* @Date: 2023-02-16 14:45:22
|
|
5
5
|
* @LastEditors: SuperLuckyqi
|
|
6
|
-
* @LastEditTime:
|
|
6
|
+
* @LastEditTime: 2024-01-05 15:23:17
|
|
7
7
|
*/ function _define_property(obj, key, value) {
|
|
8
8
|
if (key in obj) {
|
|
9
9
|
Object.defineProperty(obj, key, {
|
|
@@ -160,6 +160,9 @@ function conversion(schema, payload) {
|
|
|
160
160
|
item.props.show_type = "icon";
|
|
161
161
|
}
|
|
162
162
|
}
|
|
163
|
+
if (item.props.flex === undefined) {
|
|
164
|
+
item.props.flex = 1;
|
|
165
|
+
}
|
|
163
166
|
});
|
|
164
167
|
}
|
|
165
168
|
//2023-12-24 qiyu 保证低版本升级上来时,默认是开启的
|
package/dist/esm/upgrade/v3_3.js
CHANGED