@dao42/d42paas-front 0.9.13 → 0.9.16
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/dist/DaoPaaS.cjs +1271 -0
- package/dist/DaoPaaS.d.ts +4 -0
- package/dist/sdk/docs/assets/search.js +1 -1
- package/dist/sdk/docs/interfaces/BrowserProps.html +5 -5
- package/dist/sdk/docs/interfaces/Component.html +2 -2
- package/dist/sdk/docs/interfaces/ConsoleOrShellProps.html +8 -8
- package/dist/sdk/docs/interfaces/DiffPatternInfo.html +1 -1
- package/dist/sdk/docs/interfaces/EditorProps.html +4 -4
- package/dist/sdk/docs/interfaces/IDaoPaaS.html +9 -9
- package/dist/sdk/docs/interfaces/MenuTagProps.html +1 -1
- package/dist/sdk/docs/interfaces/PaaSOptions.html +4 -4
- package/dist/sdk/docs/interfaces/TreeProps.html +8 -8
- package/dist/sdk/docs/modules.html +2 -2
- package/dist/style.css +1 -1
- package/package.json +44 -17
- package/dist/DaoPaaS.es.js +0 -82989
- package/dist/DaoPaaS.umd.js +0 -981
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dao42/d42paas-front",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.16",
|
|
4
4
|
"description": "d42paas front",
|
|
5
5
|
"author": "dao42 paas team",
|
|
6
6
|
"homepage": "https://github.com/dao42/d42paas_frontend#readme",
|
|
7
7
|
"license": "UNLICENSED",
|
|
8
|
-
"main": "./dist/DaoPaaS.
|
|
9
|
-
"module": "./dist/DaoPaaS.
|
|
8
|
+
"main": "./dist/DaoPaaS.cjs",
|
|
9
|
+
"module": "./dist/DaoPaaS.cjs",
|
|
10
10
|
"types": "./dist/DaoPaaS.d.ts",
|
|
11
11
|
"scripts": {
|
|
12
12
|
"prebuild": "rimraf dist",
|
|
@@ -16,19 +16,33 @@
|
|
|
16
16
|
"typedoc": "npx typedoc --tsconfig ./doc.tsconfig.json",
|
|
17
17
|
"workNameSpaceToFix": "node ./config/workNameSpaceToFix.js",
|
|
18
18
|
"tsc": "tsc -p ./tsconfig.json --isolatedModules false",
|
|
19
|
-
"test": "jest --coverage"
|
|
19
|
+
"test": "jest --coverage",
|
|
20
|
+
"prepublish": "pnpm build",
|
|
21
|
+
"publish": "npm publish --access public"
|
|
20
22
|
},
|
|
21
23
|
"devDependencies": {
|
|
22
|
-
"@codemirror/
|
|
23
|
-
"@codemirror/
|
|
24
|
-
"@codemirror/
|
|
25
|
-
"@codemirror/
|
|
26
|
-
"
|
|
27
|
-
"
|
|
28
|
-
"
|
|
29
|
-
"
|
|
30
|
-
"
|
|
31
|
-
"
|
|
24
|
+
"@codemirror/autocomplete": "^6.0.0",
|
|
25
|
+
"@codemirror/collab": "^6.0.0",
|
|
26
|
+
"@codemirror/commands": "^6.0.0",
|
|
27
|
+
"@codemirror/lang-cpp": "^6.0.0",
|
|
28
|
+
"@codemirror/lang-css": "^6.0.0",
|
|
29
|
+
"@codemirror/lang-html": "^6.0.0",
|
|
30
|
+
"@codemirror/lang-java": "^6.0.0",
|
|
31
|
+
"@codemirror/lang-javascript": "^6.0.0",
|
|
32
|
+
"@codemirror/lang-json": "^6.0.0",
|
|
33
|
+
"@codemirror/lang-lezer": "^6.0.0",
|
|
34
|
+
"@codemirror/lang-markdown": "^6.0.0",
|
|
35
|
+
"@codemirror/lang-php": "^6.0.0",
|
|
36
|
+
"@codemirror/lang-python": "^6.0.0",
|
|
37
|
+
"@codemirror/lang-rust": "^6.0.0",
|
|
38
|
+
"@codemirror/lang-sql": "^6.0.0",
|
|
39
|
+
"@codemirror/lang-xml": "^6.0.0",
|
|
40
|
+
"@codemirror/language": "^6.0.0",
|
|
41
|
+
"@codemirror/legacy-modes": "^6.0.0",
|
|
42
|
+
"@codemirror/search": "^6.0.0",
|
|
43
|
+
"@codemirror/state": "^6.0.0",
|
|
44
|
+
"@codemirror/theme-one-dark": "^6.0.0",
|
|
45
|
+
"@codemirror/view": "^6.0.0",
|
|
32
46
|
"@emotion/babel-plugin": "^11.3.0",
|
|
33
47
|
"@emotion/babel-preset-css-prop": "^11.2.0",
|
|
34
48
|
"@emotion/core": "^11.0.0",
|
|
@@ -45,6 +59,8 @@
|
|
|
45
59
|
"@types/jest": "^27.0.2",
|
|
46
60
|
"@types/loadable__component": "^5.13.4",
|
|
47
61
|
"@types/lodash": "^4.14.175",
|
|
62
|
+
"@types/lodash.clonedeep": "^4.5.7",
|
|
63
|
+
"@types/lodash.isequal": "^4.5.6",
|
|
48
64
|
"@types/node": "^16.11.1",
|
|
49
65
|
"@types/ot": "^0.0.5",
|
|
50
66
|
"@types/react": "^17.0.24",
|
|
@@ -52,13 +68,14 @@
|
|
|
52
68
|
"@types/uuid": "^8.3.1",
|
|
53
69
|
"@typescript-eslint/eslint-plugin": "^4.28.2",
|
|
54
70
|
"@typescript-eslint/parser": "^4.28.2",
|
|
55
|
-
"@uiw/react-codemirror": "^4.7.0",
|
|
56
71
|
"@udecode/zustood": "^1.1.1",
|
|
72
|
+
"@uiw/react-codemirror": "^4.7.0",
|
|
57
73
|
"@vitejs/plugin-react": "^1.0.7",
|
|
58
74
|
"ahooks": "^3.3.10",
|
|
59
75
|
"babel-loader": "^8.2.2",
|
|
60
76
|
"bufferutil": "^4.0.6",
|
|
61
77
|
"classnames": "^2.3.1",
|
|
78
|
+
"codemirror": "^6.0.0",
|
|
62
79
|
"concurrently": "^6.3.0",
|
|
63
80
|
"cross-env": "^7.0.3",
|
|
64
81
|
"devicon": "^2.14.0",
|
|
@@ -66,8 +83,8 @@
|
|
|
66
83
|
"file-icons-js": "^1.1.0",
|
|
67
84
|
"file-loader": "^6.2.0",
|
|
68
85
|
"fs-extra": "^10.0.0",
|
|
69
|
-
"immer": "^9.0.14",
|
|
70
86
|
"glob-all": "^3.2.1",
|
|
87
|
+
"immer": "^9.0.14",
|
|
71
88
|
"jest": "27.0.6",
|
|
72
89
|
"lodash": "^4.17.21",
|
|
73
90
|
"msw": "^0.39.2",
|
|
@@ -97,9 +114,15 @@
|
|
|
97
114
|
"ts-node": "^10.0.0",
|
|
98
115
|
"typedoc": "^0.22.12",
|
|
99
116
|
"use-immer": "^0.7.0",
|
|
117
|
+
"utf-8-validate": "^5.0.9",
|
|
118
|
+
"uuid": "^8.3.2",
|
|
100
119
|
"vite": "^2.7.2",
|
|
101
120
|
"vite-plugin-html": "^3.0.6",
|
|
102
|
-
"whatwg-fetch": "^3.6.2"
|
|
121
|
+
"whatwg-fetch": "^3.6.2",
|
|
122
|
+
"xterm": "^4.13.0",
|
|
123
|
+
"xterm-addon-attach": "^0.6.0",
|
|
124
|
+
"xterm-addon-fit": "^0.5.0",
|
|
125
|
+
"zustand": "^4.0.0-rc.1"
|
|
103
126
|
},
|
|
104
127
|
"files": [
|
|
105
128
|
"dist"
|
|
@@ -113,5 +136,9 @@
|
|
|
113
136
|
},
|
|
114
137
|
"msw": {
|
|
115
138
|
"workerDirectory": "src"
|
|
139
|
+
},
|
|
140
|
+
"dependencies": {
|
|
141
|
+
"lodash.clonedeep": "^4.5.0",
|
|
142
|
+
"lodash.isequal": "^4.5.0"
|
|
116
143
|
}
|
|
117
144
|
}
|