@newview/ui 1.1.60 → 1.1.61
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/newview-ui.js +6 -0
- package/dist/newview-ui.umd.cjs +1 -1
- package/package.json +75 -75
package/package.json
CHANGED
|
@@ -1,78 +1,78 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
2
|
+
"name": "@newview/ui",
|
|
3
|
+
"version": "1.1.61",
|
|
4
|
+
"author": "newview",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "./dist/newview-ui.umd.cjs",
|
|
7
|
+
"module": "./dist/newview-ui.js",
|
|
8
|
+
"typings": "types/index.d.ts",
|
|
9
|
+
"files": [
|
|
10
|
+
"dist/*",
|
|
11
|
+
"types/*",
|
|
12
|
+
"package.json",
|
|
13
|
+
"tsconfig.json",
|
|
14
|
+
"tsconfig.node.json",
|
|
15
|
+
"vite.config.ts",
|
|
16
|
+
"README.md"
|
|
17
|
+
],
|
|
18
|
+
"exports": {
|
|
19
|
+
"./dist/style.css": "./dist/style.css",
|
|
20
|
+
"./css": "./dist/style.css",
|
|
21
|
+
".": {
|
|
22
|
+
"import": "./dist/newview-ui.js",
|
|
23
|
+
"require": "./dist/newview-ui.umd.cjs"
|
|
24
|
+
}
|
|
25
|
+
},
|
|
26
|
+
"scripts": {
|
|
27
|
+
"dev": "vite",
|
|
28
|
+
"build": "run-p type-check build-watch",
|
|
29
|
+
"preview": "vite preview",
|
|
30
|
+
"build-only": "vite build",
|
|
31
|
+
"build-watch": "vite build --watch",
|
|
32
|
+
"type-check": "vue-tsc --noEmit",
|
|
33
|
+
"p": "npm publish --access public",
|
|
34
|
+
"build-p": "run-p type-check build-only p"
|
|
35
|
+
},
|
|
36
|
+
"dependencies": {
|
|
37
|
+
"@js-preview/docx": "^1.6.2",
|
|
38
|
+
"@newview/base-vue": "^1.1.0",
|
|
39
|
+
"@newview/infrastructure": "^1.1.0",
|
|
40
|
+
"@newview/tools": "^1.1.0",
|
|
41
|
+
"@microsoft/fetch-event-source": "^2.0.1",
|
|
42
|
+
"md-editor-v3": "^4.20.2",
|
|
43
|
+
"ace-builds": "1.23.1",
|
|
44
|
+
"axios": "1.6.2",
|
|
45
|
+
"bin-editor-next": "1.1.0",
|
|
46
|
+
"dayjs": "1.11.7",
|
|
47
|
+
"docx": "8.2.2",
|
|
48
|
+
"jquery": "3.6.3",
|
|
49
|
+
"jszip": "3.10.1",
|
|
50
|
+
"linq": "4.0.1",
|
|
51
|
+
"monaco-editor": "0.36.1",
|
|
52
|
+
"qrcodejs2": "0.0.2",
|
|
53
|
+
"sass": "1.56.2",
|
|
54
|
+
"sortablejs": "^1.15.0",
|
|
55
|
+
"view-ui-plus": "1.3.1",
|
|
56
|
+
"vue": "3.2.45",
|
|
57
|
+
"vue-draggable-next": "^2.2.1",
|
|
58
|
+
"vue-router": "4.1.6",
|
|
59
|
+
"vuedraggable": "^4.1.0",
|
|
60
|
+
"vxe-table": "4.3.7",
|
|
61
|
+
"x2js": "3.4.4",
|
|
62
|
+
"xe-utils": "3.5.7",
|
|
63
|
+
"xlsx-style-vite": "0.0.2",
|
|
64
|
+
"xlsx": "0.15.6"
|
|
65
|
+
},
|
|
66
|
+
"devDependencies": {
|
|
67
|
+
"@types/file-saver": "2.0.5",
|
|
68
|
+
"@types/jquery": "3.5.16",
|
|
69
|
+
"@types/node": "^18.11.18",
|
|
70
|
+
"@vitejs/plugin-vue": "4.0.0",
|
|
71
|
+
"file-saver": "2.0.5",
|
|
72
|
+
"npm-run-all": "4.1.5",
|
|
73
|
+
"terser": "5.16.8",
|
|
74
|
+
"typescript": "4.9.3",
|
|
75
|
+
"vite": "4.0.0",
|
|
76
|
+
"vue-tsc": "1.0.11"
|
|
24
77
|
}
|
|
25
|
-
},
|
|
26
|
-
"scripts": {
|
|
27
|
-
"dev": "vite",
|
|
28
|
-
"build": "run-p type-check build-watch",
|
|
29
|
-
"preview": "vite preview",
|
|
30
|
-
"build-only": "vite build",
|
|
31
|
-
"build-watch": "vite build --watch",
|
|
32
|
-
"type-check": "vue-tsc --noEmit",
|
|
33
|
-
"p": "npm publish --access public",
|
|
34
|
-
"build-p": "run-p type-check build-only p"
|
|
35
|
-
},
|
|
36
|
-
"dependencies": {
|
|
37
|
-
"@js-preview/docx": "^1.6.2",
|
|
38
|
-
"@newview/base-vue": "^1.1.0",
|
|
39
|
-
"@newview/infrastructure": "^1.1.0",
|
|
40
|
-
"@newview/tools": "^1.1.0",
|
|
41
|
-
"@microsoft/fetch-event-source": "^2.0.1",
|
|
42
|
-
"md-editor-v3": "^4.20.2",
|
|
43
|
-
"ace-builds": "1.23.1",
|
|
44
|
-
"axios": "1.6.2",
|
|
45
|
-
"bin-editor-next": "1.1.0",
|
|
46
|
-
"dayjs": "1.11.7",
|
|
47
|
-
"docx": "8.2.2",
|
|
48
|
-
"jquery": "3.6.3",
|
|
49
|
-
"jszip": "3.10.1",
|
|
50
|
-
"linq": "4.0.1",
|
|
51
|
-
"monaco-editor": "0.36.1",
|
|
52
|
-
"qrcodejs2": "0.0.2",
|
|
53
|
-
"sass": "1.56.2",
|
|
54
|
-
"sortablejs": "^1.15.0",
|
|
55
|
-
"view-ui-plus": "1.3.1",
|
|
56
|
-
"vue": "3.2.45",
|
|
57
|
-
"vue-draggable-next": "^2.2.1",
|
|
58
|
-
"vue-router": "4.1.6",
|
|
59
|
-
"vuedraggable": "^4.1.0",
|
|
60
|
-
"vxe-table": "4.3.7",
|
|
61
|
-
"x2js": "3.4.4",
|
|
62
|
-
"xe-utils": "3.5.7",
|
|
63
|
-
"xlsx-style-vite": "0.0.2",
|
|
64
|
-
"xlsx": "0.15.6"
|
|
65
|
-
},
|
|
66
|
-
"devDependencies": {
|
|
67
|
-
"@types/file-saver": "2.0.5",
|
|
68
|
-
"@types/jquery": "3.5.16",
|
|
69
|
-
"@types/node": "^18.11.18",
|
|
70
|
-
"@vitejs/plugin-vue": "4.0.0",
|
|
71
|
-
"file-saver": "2.0.5",
|
|
72
|
-
"npm-run-all": "4.1.5",
|
|
73
|
-
"terser": "5.16.8",
|
|
74
|
-
"typescript": "4.9.3",
|
|
75
|
-
"vite": "4.0.0",
|
|
76
|
-
"vue-tsc": "1.0.11"
|
|
77
|
-
}
|
|
78
78
|
}
|