@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 CHANGED
@@ -446,6 +446,10 @@
446
446
  "enable_enhanced_lookup": {
447
447
  "type": "boolean",
448
448
  "description": "启用增强lookup模式,当开启时,该字段会弹出窗口显示可选项!"
449
+ },
450
+ "disable_thousands": {
451
+ "type": "boolean",
452
+ "description": "不显示千分符"
449
453
  }
450
454
  }
451
455
  }
@@ -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",
@@ -773,6 +773,10 @@
773
773
  "enable_enhanced_lookup": {
774
774
  "type": "boolean",
775
775
  "description": "启用增强lookup模式,当开启时,该字段会弹出窗口显示可选项!"
776
+ },
777
+ "disable_thousands": {
778
+ "type": "boolean",
779
+ "description": "不显示千分符"
776
780
  }
777
781
  }
778
782
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@steedos/schemas",
3
- "version": "2.6.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": "781cb961f46ab549821b119ec2da24056cf8c1d4"
12
+ "gitHead": "1361c449164e5a04d38a14295689bbff8eb76e38"
13
13
  }