@steedos/schemas 2.6.2-beta.8 → 2.6.3

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
@@ -60,6 +60,7 @@
60
60
  "textarea",
61
61
  "html",
62
62
  "select",
63
+ "color",
63
64
  "boolean",
64
65
  "toggle",
65
66
  "date",
@@ -313,6 +313,15 @@
313
313
  "version":{
314
314
  "type": "number",
315
315
  "description": "对象版本, 默认1.0"
316
+ },
317
+ "pages": {
318
+ "type": "object",
319
+ "additionalProperties": false,
320
+ "patternProperties": {
321
+ "^[a-zA-Z_]\\w*(\\.\\$\\.\\w+)?[a-zA-Z0-9]*$": {
322
+ "$ref": "#/definitions/page"
323
+ }
324
+ }
316
325
  }
317
326
  },
318
327
  "definitions": {
@@ -351,6 +360,7 @@
351
360
  "textarea",
352
361
  "html",
353
362
  "select",
363
+ "color",
354
364
  "boolean",
355
365
  "toggle",
356
366
  "date",
@@ -1068,6 +1078,28 @@
1068
1078
  "description": "删除后事件"
1069
1079
  }
1070
1080
  }
1081
+ },
1082
+ "page": {
1083
+ "type": "object",
1084
+ "description": "微页面",
1085
+ "additionalProperties": false,
1086
+ "properties": {
1087
+ "lookup": {
1088
+ "type": "object",
1089
+ "additionalProperties": false,
1090
+ "description": "lookup类型微页面",
1091
+ "properties": {
1092
+ "is_enable": {
1093
+ "type": "boolean",
1094
+ "description": "是否启用"
1095
+ },
1096
+ "amis_schema": {
1097
+ "type": "object",
1098
+ "description": "amis schema"
1099
+ }
1100
+ }
1101
+ }
1102
+ }
1071
1103
  }
1072
1104
  }
1073
1105
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@steedos/schemas",
3
- "version": "2.6.2-beta.8",
3
+ "version": "2.6.3",
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": "a2907bfa27bfdc58d65dc756c5b0de6ae456a954"
12
+ "gitHead": "2b56101256aa6fa0069d86bd373e4e368bd7d073"
13
13
  }