@steedos/schemas 2.6.7-beta.8 → 2.6.7

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
+ "enable_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",
@@ -326,6 +326,14 @@
326
326
  "compactLayouts": {
327
327
  "type": "array",
328
328
  "description": "高亮字段"
329
+ },
330
+ "enable_split": {
331
+ "type": "boolean",
332
+ "description": "是否配置默认分屏"
333
+ },
334
+ "field_groups": {
335
+ "type": "array",
336
+ "description": "字段分组"
329
337
  }
330
338
  },
331
339
  "definitions": {
@@ -773,6 +781,10 @@
773
781
  "enable_enhanced_lookup": {
774
782
  "type": "boolean",
775
783
  "description": "启用增强lookup模式,当开启时,该字段会弹出窗口显示可选项!"
784
+ },
785
+ "enable_thousands": {
786
+ "type": "boolean",
787
+ "description": "显示千分符"
776
788
  }
777
789
  }
778
790
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@steedos/schemas",
3
- "version": "2.6.7-beta.8",
3
+ "version": "2.6.7",
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": "3134b434a236a923da7ed02d4c82db02656fe82c"
12
+ "gitHead": "7852282dc4524d9669457debd787bcd6c8614a3d"
13
13
  }