vg-print 1.0.208 → 1.0.209
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/README.md +117 -209
- package/dist/style.css +1 -1
- package/dist/vg-print.es.js +83881 -0
- package/dist/vg-print.umd.js +5143 -0
- package/package.json +8 -21
- package/dist/hiprint-designer.es.js +0 -80516
- package/dist/hiprint-designer.umd.js +0 -3518
package/package.json
CHANGED
|
@@ -1,19 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vg-print",
|
|
3
3
|
"description": "hiprint for Vue2.x / Vue3.x 支持拖拽(分页(不分页)、表头表脚、样式设置、复制粘贴、缩放、撤销重做)生成打印模板、导出json模板数据、静默打印/获取MAC地址(借助客户端)",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.209",
|
|
5
5
|
"author": "CcSimple",
|
|
6
6
|
"license": "MIT",
|
|
7
|
-
"main": "dist/
|
|
8
|
-
"module": "dist/
|
|
7
|
+
"main": "dist/vg-print.umd.js",
|
|
8
|
+
"module": "dist/vg-print.es.js",
|
|
9
9
|
"exports": {
|
|
10
10
|
".": {
|
|
11
|
-
"import": "./dist/
|
|
12
|
-
"require": "./dist/
|
|
13
|
-
|
|
14
|
-
},
|
|
15
|
-
"./style.css": "./dist/style.css",
|
|
16
|
-
"./dist/style.css": "./dist/style.css"
|
|
11
|
+
"import": "./dist/vg-print.es.js",
|
|
12
|
+
"require": "./dist/vg-print.umd.js"
|
|
13
|
+
}
|
|
17
14
|
},
|
|
18
15
|
"private": false,
|
|
19
16
|
"repository": {
|
|
@@ -35,14 +32,9 @@
|
|
|
35
32
|
"scripts": {
|
|
36
33
|
"dev": "vite",
|
|
37
34
|
"build": "vite build",
|
|
38
|
-
"build:lib": "
|
|
39
|
-
"preview": "vite preview"
|
|
40
|
-
"prepare": "BUILD_LIB=true vite build"
|
|
35
|
+
"build:lib": "vite build --mode lib",
|
|
36
|
+
"preview": "vite preview"
|
|
41
37
|
},
|
|
42
|
-
"sideEffects": [
|
|
43
|
-
"dist/style.css"
|
|
44
|
-
],
|
|
45
|
-
"style": "dist/style.css",
|
|
46
38
|
"engines": {
|
|
47
39
|
"node": ">=18.18.0"
|
|
48
40
|
},
|
|
@@ -86,9 +78,4 @@
|
|
|
86
78
|
"vue-router": "^4.3.0",
|
|
87
79
|
"vuex": "^4.1.0"
|
|
88
80
|
}
|
|
89
|
-
,
|
|
90
|
-
"peerDependencies": {
|
|
91
|
-
"vue": ">=3.2.0",
|
|
92
|
-
"jquery": ">=3.6.0"
|
|
93
|
-
}
|
|
94
81
|
}
|