@steedos/schemas 2.6.6 → 2.6.7-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 +35 -1
- package/object/schema.json +4 -0
- package/package.json +2 -2
package/field/schema.json
CHANGED
package/listview/schema.json
CHANGED
|
@@ -94,9 +94,43 @@
|
|
|
94
94
|
"type": "boolean",
|
|
95
95
|
"description": "显示条目数"
|
|
96
96
|
},
|
|
97
|
+
"is_enable":{
|
|
98
|
+
"type": "boolean",
|
|
99
|
+
"description": "启用"
|
|
100
|
+
},
|
|
101
|
+
"searchable_fields":{
|
|
102
|
+
"type": "array",
|
|
103
|
+
"description": "可搜索字段"
|
|
104
|
+
},
|
|
105
|
+
"enable_amis_schema":{
|
|
106
|
+
"type": "boolean",
|
|
107
|
+
"description": "是否使用 amis自定义列表"
|
|
108
|
+
},
|
|
109
|
+
"crud_mode":{
|
|
110
|
+
"type": "string",
|
|
111
|
+
"description": "crud组件mode属性,默认为table,可选table、cards 或者 list",
|
|
112
|
+
"enum": [
|
|
113
|
+
"table",
|
|
114
|
+
"cards",
|
|
115
|
+
"list"
|
|
116
|
+
]
|
|
117
|
+
},
|
|
97
118
|
"shared":{
|
|
98
119
|
"type": "boolean",
|
|
99
|
-
"description": "
|
|
120
|
+
"description": "是否共享到工作区"
|
|
121
|
+
},
|
|
122
|
+
"shared_to":{
|
|
123
|
+
"type": "string",
|
|
124
|
+
"description": "谁可以查看此列表视图?",
|
|
125
|
+
"enum": [
|
|
126
|
+
"mine",
|
|
127
|
+
"space",
|
|
128
|
+
"organizations"
|
|
129
|
+
]
|
|
130
|
+
},
|
|
131
|
+
"shared_to_organizations":{
|
|
132
|
+
"type": "array",
|
|
133
|
+
"description": "共享列表视图给哪些组织?"
|
|
100
134
|
},
|
|
101
135
|
"scrolling_mode":{
|
|
102
136
|
"type":"string",
|
package/object/schema.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@steedos/schemas",
|
|
3
|
-
"version": "2.6.
|
|
3
|
+
"version": "2.6.7-beta.10",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"repository": "https://github.com/steedos/schemas.git",
|
|
6
6
|
"author": "sunhaolin <sunhaolin@hotoa.com>",
|
|
@@ -9,5 +9,5 @@
|
|
|
9
9
|
"publishConfig": {
|
|
10
10
|
"access": "public"
|
|
11
11
|
},
|
|
12
|
-
"gitHead": "
|
|
12
|
+
"gitHead": "1361c449164e5a04d38a14295689bbff8eb76e38"
|
|
13
13
|
}
|