@cloudbase/cals 0.3.20 → 0.3.22-alpha.2

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.
Files changed (31) hide show
  1. package/README.md +17 -10
  2. package/lib/parser/cals/index.d.ts +21 -67
  3. package/lib/parser/cals/index.d.ts.map +1 -1
  4. package/lib/parser/cals/index.js +137 -100
  5. package/lib/parser/cals/utils/block/index.js +2 -2
  6. package/lib/parser/cals/utils/runtime.d.ts +4 -1
  7. package/lib/parser/cals/utils/runtime.d.ts.map +1 -1
  8. package/lib/parser/cals/utils/runtime.js +7 -0
  9. package/lib/parser/cals/utils/spinoff/index.d.ts.map +1 -1
  10. package/lib/parser/cals/utils/version/utils.d.ts +4 -4
  11. package/lib/parser/cals/utils/version/utils.d.ts.map +1 -1
  12. package/lib/parser/expression/index.d.ts +8 -1
  13. package/lib/parser/expression/index.d.ts.map +1 -1
  14. package/lib/parser/expression/index.js +6 -1
  15. package/lib/tsconfig.tsbuildinfo +1 -1
  16. package/lib/types/platform/app.d.ts +15 -1
  17. package/lib/types/platform/app.d.ts.map +1 -1
  18. package/lib/types/platform/common.d.ts +7 -7
  19. package/lib/types/platform/common.d.ts.map +1 -1
  20. package/lib/types/platform/common.js +4 -5
  21. package/lib/types/platform/component.d.ts +17 -30
  22. package/lib/types/platform/component.d.ts.map +1 -1
  23. package/lib/types/platform/component.js +5 -6
  24. package/lib/types/platform/datasource.d.ts +9 -5
  25. package/lib/types/platform/datasource.d.ts.map +1 -1
  26. package/lib/types/platform/widget/form.js +0 -1
  27. package/package.json +5 -2
  28. package/lib/schema/platform_application.json +0 -2177
  29. package/lib/tests/common-application-specs.test.d.ts +0 -2
  30. package/lib/tests/common-application-specs.test.d.ts.map +0 -1
  31. package/lib/tests/common-application-specs.test.js +0 -45
@@ -1,4 +1,3 @@
1
- "use strict";
2
1
  /**
3
2
  * 表单相关组件通用属性定义
4
3
  */
package/package.json CHANGED
@@ -1,13 +1,16 @@
1
1
  {
2
2
  "name": "@cloudbase/cals",
3
- "version": "0.3.20",
3
+ "version": "0.3.22-alpha.2",
4
4
  "description": "Common application specifications",
5
5
  "main": "lib/utils/index.js",
6
+ "typedocMain": "types/index.ts",
6
7
  "files": [
7
8
  "lib"
8
9
  ],
9
10
  "scripts": {
10
- "build": "tsc && node lib/utils/build.js",
11
+ "build": "tsc",
12
+ "build:schema": "node lib/utils/build.js",
13
+ "develop": "tsc --watch",
11
14
  "docs": "typedoc --options typedoc.json types",
12
15
  "test": "jest"
13
16
  },