@pisell/materials 1.0.173 → 1.0.174
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/build/lowcode/assets-daily.json +11 -11
- package/build/lowcode/assets-dev.json +2 -2
- package/build/lowcode/assets-prod.json +11 -11
- package/build/lowcode/meta.js +1 -1
- package/build/lowcode/render/default/view.css +1 -1
- package/build/lowcode/render/default/view.js +3 -3
- package/build/lowcode/view.css +1 -1
- package/build/lowcode/view.js +3 -3
- package/lowcode/table/meta.ts +10 -3
- package/package.json +1 -1
package/lowcode/table/meta.ts
CHANGED
|
@@ -1014,6 +1014,13 @@ export default {
|
|
|
1014
1014
|
setter: "BoolSetter",
|
|
1015
1015
|
defaultValue: false,
|
|
1016
1016
|
},
|
|
1017
|
+
{
|
|
1018
|
+
name: "filter.sortButtonShow",
|
|
1019
|
+
title: { label: "开启筛选排序按钮", tip: "开启筛选排序按钮" },
|
|
1020
|
+
propType: "object",
|
|
1021
|
+
setter: "BoolSetter",
|
|
1022
|
+
defaultValue: false,
|
|
1023
|
+
},
|
|
1017
1024
|
{
|
|
1018
1025
|
name: "filter.storageMode",
|
|
1019
1026
|
condition: {
|
|
@@ -1151,10 +1158,10 @@ export default {
|
|
|
1151
1158
|
defaultValue: false,
|
|
1152
1159
|
},
|
|
1153
1160
|
{
|
|
1154
|
-
name: "
|
|
1161
|
+
name: "localFilter",
|
|
1155
1162
|
title: {
|
|
1156
|
-
label: "
|
|
1157
|
-
tip: "
|
|
1163
|
+
label: "开启本地筛选",
|
|
1164
|
+
tip: "开启本地筛选时,字段值改变会走本地前端搜索,关闭时是调用接口对数据更新。",
|
|
1158
1165
|
},
|
|
1159
1166
|
propType: "bool",
|
|
1160
1167
|
setter: "BoolSetter",
|