@steedos/schemas 3.0.14 → 3.0.15-beta.10
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/field/schema.json +4 -0
- package/listview/schema.json +4 -0
- package/object/schema.json +8 -0
- package/package.json +2 -2
package/field/schema.json
CHANGED
|
@@ -417,6 +417,10 @@
|
|
|
417
417
|
"type": ["object"],
|
|
418
418
|
"description": "搜索表单默认值"
|
|
419
419
|
},
|
|
420
|
+
"auto_open_filter": {
|
|
421
|
+
"type": "boolean",
|
|
422
|
+
"description": "lookup 字段:弹出选择列表时是否自动展开搜索栏。默认 false。"
|
|
423
|
+
},
|
|
420
424
|
"write_requires_master_read": {
|
|
421
425
|
"type": "boolean",
|
|
422
426
|
"description": "设置主记录上创建、编辑或删除子记录所需的最低访问级别。此字段仅适用于master_detail字段类型。true--允许具有'读取'访问权限的用户创建、编辑或删除子记录。false = 允许具有'读取/写入'访问权限的用户创建、编辑或删除子记录的权限。此设置比 true 更严格,并且是默认值。"
|
package/listview/schema.json
CHANGED
|
@@ -115,6 +115,10 @@
|
|
|
115
115
|
"type": "boolean",
|
|
116
116
|
"description": "是否要求用户先设置过滤条件后才进行数据请求"
|
|
117
117
|
},
|
|
118
|
+
"auto_open_filter": {
|
|
119
|
+
"type": "boolean",
|
|
120
|
+
"description": "进入列表视图时是否自动展开搜索栏。默认 false。不影响 filter_required 的强制约束;在分栏(split)模式下不生效。"
|
|
121
|
+
},
|
|
118
122
|
"scrolling_mode": {
|
|
119
123
|
"type": "string",
|
|
120
124
|
"description": "滚动条样式",
|
package/object/schema.json
CHANGED
|
@@ -742,6 +742,10 @@
|
|
|
742
742
|
"type": ["object"],
|
|
743
743
|
"description": "搜索表单默认值"
|
|
744
744
|
},
|
|
745
|
+
"auto_open_filter": {
|
|
746
|
+
"type": "boolean",
|
|
747
|
+
"description": "lookup 字段:弹出选择列表时是否自动展开搜索栏。默认 false。"
|
|
748
|
+
},
|
|
745
749
|
"relatedList": {
|
|
746
750
|
"type": "boolean",
|
|
747
751
|
"description": "用于表示是否在相关表的详细页面中作为子表显示"
|
|
@@ -825,6 +829,10 @@
|
|
|
825
829
|
"type": ["object"],
|
|
826
830
|
"description": "搜索表单默认值"
|
|
827
831
|
},
|
|
832
|
+
"auto_open_filter": {
|
|
833
|
+
"type": "boolean",
|
|
834
|
+
"description": "进入列表视图时是否自动展开搜索栏。默认 false。不影响 filter_required 的强制约束;在分栏(split)模式下不生效。"
|
|
835
|
+
},
|
|
828
836
|
"sort": {
|
|
829
837
|
"type": "array",
|
|
830
838
|
"description": "排序"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@steedos/schemas",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.15-beta.10",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"repository": "https://github.com/steedos/schemas.git",
|
|
6
6
|
"author": "sunhaolin <sunhaolin@hotoa.com>",
|
|
@@ -8,5 +8,5 @@
|
|
|
8
8
|
"publishConfig": {
|
|
9
9
|
"access": "public"
|
|
10
10
|
},
|
|
11
|
-
"gitHead": "
|
|
11
|
+
"gitHead": "0cf0bb85e2363c5b1e3df7f7ae59af14543e74c8"
|
|
12
12
|
}
|