@gct-paas/schema 0.1.5-dev.0 → 0.1.5-dev.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.
@@ -15,3 +15,4 @@ export declare namespace LowCodeModal {
15
15
  /** 模态框属性接口 */
16
16
  type ModalProps = IModalProps;
17
17
  }
18
+ export type { IModal, IModalBody, IModalFooter, IModalBottomButton, IModalProps, };
@@ -333,7 +333,7 @@ export interface ApprovalProcess extends LowCodeWidget.BasicSchema {
333
333
  }
334
334
  export interface CardList extends LowCodeWidget.BasicSchema {
335
335
  props: CardListProps;
336
- children: CardHeaderLeft[] | CardHeaderRight[] | CardContent[] | CardOpeBtn[];
336
+ children: [CardHeaderLeft, CardHeaderRight, CardContent, CardOpeBtn];
337
337
  }
338
338
  export interface CardHeaderLeft extends LowCodeWidget.BasicSchema {
339
339
  props: CardHeaderLeftProps;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gct-paas/schema",
3
- "version": "0.1.5-dev.0",
3
+ "version": "0.1.5-dev.10",
4
4
  "type": "module",
5
5
  "description": "paas 平台 schema 架构包",
6
6
  "loader": "dist/index.esm.min.js",
@@ -30,10 +30,21 @@
30
30
  },
31
31
  "license": "MIT",
32
32
  "author": "gct",
33
+ "dependencies": {
34
+ "@gct-paas/api": "^0.1.4-dev.4",
35
+ "lodash-es": "^4.17.23",
36
+ "vue": "^3.5.30",
37
+ "@gct-paas/core": "0.1.5-dev.10"
38
+ },
39
+ "peerDependencies": {
40
+ "@gct-paas/api": "^0.1.4-dev.4",
41
+ "vue": ">=3",
42
+ "@gct-paas/core": "0.1.5-dev.10"
43
+ },
33
44
  "scripts": {
34
45
  "dev": "cross-env NODE_ENV=development vite build --watch --config vite.dev.config.ts",
35
46
  "es:build": "vite build --config vite.dev.config.ts",
36
- "build": "npm run lint && vite build --config vite.dev.config.ts && vite build --config vite.config.ts",
47
+ "build": "npm run lint && vue-tsc --noEmit && vite build --config vite.dev.config.ts && vite build --config vite.config.ts",
37
48
  "lint": "eslint src/",
38
49
  "test": "vitest",
39
50
  "test:run": "vitest run",
@@ -46,17 +57,5 @@
46
57
  "gen-api": "npm run gen-api:apaas && npm run gen-api:platform",
47
58
  "gen-api:apaas": "gct-paas gen-api --url=http://paas.paasdev.gct-paas.com --tag=apaas -t ../cli/hbs-temp -o ./src/service/gct-apaas && prettier './src/service/gct-apaas' --write",
48
59
  "gen-api:platform": "gct-paas gen-api --url=http://paas.paasdev.gct-paas.com --tag=platform -t ../cli/hbs-temp -o ./src/service/gct-platform && prettier './src/service/gct-platform' --write"
49
- },
50
- "dependencies": {
51
- "@gct-paas/api": "^0.1.2-dev.3",
52
- "@gct-paas/core": "0.1.5-dev.0",
53
- "lodash-es": "^4.17.23",
54
- "vue": "^3.5.30"
55
- },
56
- "peerDependencies": {
57
- "@gct-paas/api": "*",
58
- "@gct-paas/core": "*",
59
- "vue": ">=3"
60
- },
61
- "gitHead": "d5a1badfd34c55ceefd2cf33f2ee659454076e37"
62
- }
60
+ }
61
+ }