yh-hiprint 2.6.9 → 2.6.12
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/HiprintDesigner.vue +9 -4
- package/hiprintPreview.vue +19 -42
- package/hooks/useHiprint.js +21 -20
- package/index.js +0 -1
- package/libs/hiprint.bundle.js +2454 -1241
- package/libs/hiprint.config.js +8 -0
- package/package.json +3 -3
- package/designer.vue +0 -741
- package/electron-hiprint.md +0 -799
- package/libs/es62es5.js +0 -42
package/libs/hiprint.config.js
CHANGED
|
@@ -855,6 +855,10 @@
|
|
|
855
855
|
name: 'tableFooterRepeat',
|
|
856
856
|
hidden: false
|
|
857
857
|
},
|
|
858
|
+
{
|
|
859
|
+
name: 'tableFooterScope',
|
|
860
|
+
hidden: false
|
|
861
|
+
},
|
|
858
862
|
{
|
|
859
863
|
name: 'autoCompletion',
|
|
860
864
|
hidden: false
|
|
@@ -1119,6 +1123,10 @@
|
|
|
1119
1123
|
name: 'tableFooterRepeat',
|
|
1120
1124
|
hidden: false
|
|
1121
1125
|
},
|
|
1126
|
+
{
|
|
1127
|
+
name: 'tableFooterScope',
|
|
1128
|
+
hidden: false
|
|
1129
|
+
},
|
|
1122
1130
|
{
|
|
1123
1131
|
name: 'footerFormatter',
|
|
1124
1132
|
hidden: false
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "yh-hiprint",
|
|
3
|
-
"version": "2.6.
|
|
3
|
+
"version": "2.6.12",
|
|
4
4
|
"description": "Hiprint for Vue3 by NoahLiu in ForceCon in Hunan Changesha",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"types": "index.d.ts",
|
|
7
7
|
"scripts": {
|
|
8
8
|
"start": "npm run pub:aliyun && npm run pub:npm",
|
|
9
|
-
"pub:aliyun": "npm publish --registry https://packages.aliyun.com/60765e0161a945067837bb5f/npm/npm-registry/ --no-git-checks",
|
|
10
|
-
"pub:npm": "npm publish --registry https://registry.npmjs.org/ --no-git-checks"
|
|
9
|
+
"pub:aliyun": "npm publish --registry https://packages.aliyun.com/60765e0161a945067837bb5f/npm/npm-registry/ --tag latest --no-git-checks",
|
|
10
|
+
"pub:npm": "npm publish --registry https://registry.npmjs.org/ --tag latest --no-git-checks"
|
|
11
11
|
},
|
|
12
12
|
"dependencies": {
|
|
13
13
|
"@nuintun/qrcode": "^5.0.1",
|