@steedos-widgets/amis-lib 6.10.1-beta.17 → 6.10.1-beta.19
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/cjs/tsconfig.tsbuildinfo +1 -1
- package/dist/index.cjs.js +6 -3
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +6 -3
- package/dist/index.esm.js.map +1 -1
- package/dist/index.umd.js +3 -3
- package/dist/index.umd.js.map +1 -1
- package/package.json +2 -2
package/dist/index.esm.js
CHANGED
|
@@ -3125,7 +3125,10 @@ async function getTableApi(mainObject, fields, options){
|
|
|
3125
3125
|
console.error("本地存储中crud参数解析异常:", ex);
|
|
3126
3126
|
}
|
|
3127
3127
|
${baseFilters ? `var systemFilters = ${JSON.stringify(baseFilters)};` : 'var systemFilters = [];'}
|
|
3128
|
-
var _ids = []
|
|
3128
|
+
var _ids = [];
|
|
3129
|
+
if(systemFilters && systemFilters.length){
|
|
3130
|
+
SteedosUI.traverseNestedArrayFormula(systemFilters, api.context);
|
|
3131
|
+
}
|
|
3129
3132
|
const filtersFunction = ${filtersFunction};
|
|
3130
3133
|
if(filtersFunction){
|
|
3131
3134
|
const _filters = filtersFunction(systemFilters, api.data.$self);
|
|
@@ -10478,7 +10481,7 @@ async function getObjectRelatedListsMiniSchema(objectApiName){
|
|
|
10478
10481
|
* @Author: baozhoutao@steedos.com
|
|
10479
10482
|
* @Date: 2022-07-05 15:55:39
|
|
10480
10483
|
* @LastEditors: 殷亮辉 yinlianghui@hotoa.com
|
|
10481
|
-
* @LastEditTime: 2025-
|
|
10484
|
+
* @LastEditTime: 2025-05-20 19:29:36
|
|
10482
10485
|
* @Description:
|
|
10483
10486
|
*/
|
|
10484
10487
|
|
|
@@ -10799,7 +10802,7 @@ async function getListSchema(
|
|
|
10799
10802
|
}
|
|
10800
10803
|
|
|
10801
10804
|
if (window.innerWidth > 768) {
|
|
10802
|
-
// 列表视图组件PC端高度自动计算实现满屏效果,手机端不需要满屏效果,所以不用autofillheight
|
|
10805
|
+
// 列表视图组件PC端高度自动计算实现满屏效果,手机端不需要满屏效果,所以不用autofillheight,且允许微页面中重写组件autoFillHeight属性
|
|
10803
10806
|
defaults.listSchema = defaultsDeep$1({}, defaults.listSchema || {}, {
|
|
10804
10807
|
autoFillHeight: true
|
|
10805
10808
|
});
|