@pisell/lowcode-renderer 1.0.85 → 1.0.87
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/es/appHelper/index.js +3 -2
- package/lib/appHelper/index.js +2 -1
- package/package.json +2 -2
package/es/appHelper/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { isMobile, isIos, isAndroid, EscPosPrinter, ALIGN_LEFT, ALIGN_CENTER, ALIGN_RIGHT, columnWidthWithAlignment, preparing, formatAmount, webPrint, dataManager } from
|
|
1
|
+
import { isMobile, isIos, isAndroid, EscPosPrinter, ALIGN_LEFT, ALIGN_CENTER, ALIGN_RIGHT, columnWidthWithAlignment, preparing, formatAmount, webPrint, dataManager, webPayment } from '@pisell/utils';
|
|
2
2
|
import { getTimezone } from "./others";
|
|
3
3
|
import api from "../api";
|
|
4
4
|
var printerApi = {
|
|
@@ -19,7 +19,8 @@ var appHelper = {
|
|
|
19
19
|
printerApi: printerApi,
|
|
20
20
|
formatAmount: formatAmount,
|
|
21
21
|
webPrint: webPrint,
|
|
22
|
-
dataManager: dataManager
|
|
22
|
+
dataManager: dataManager,
|
|
23
|
+
webPayment: webPayment
|
|
23
24
|
}
|
|
24
25
|
};
|
|
25
26
|
export default appHelper;
|
package/lib/appHelper/index.js
CHANGED
|
@@ -53,7 +53,8 @@ var appHelper = {
|
|
|
53
53
|
printerApi,
|
|
54
54
|
formatAmount: import_utils.formatAmount,
|
|
55
55
|
webPrint: import_utils.webPrint,
|
|
56
|
-
dataManager: import_utils.dataManager
|
|
56
|
+
dataManager: import_utils.dataManager,
|
|
57
|
+
webPayment: import_utils.webPayment
|
|
57
58
|
}
|
|
58
59
|
};
|
|
59
60
|
var appHelper_default = appHelper;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pisell/lowcode-renderer",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.87",
|
|
4
4
|
"sideEffects": false,
|
|
5
5
|
"main": "./lib/index.js",
|
|
6
6
|
"module": "./es/index.js",
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"@alifd/next": "^1.25.44",
|
|
19
19
|
"lodash-es": "^4.17.21",
|
|
20
20
|
"dayjs": "^1.11.9",
|
|
21
|
-
"@pisell/utils": "1.0.
|
|
21
|
+
"@pisell/utils": "1.0.51"
|
|
22
22
|
},
|
|
23
23
|
"peerDependencies": {
|
|
24
24
|
"react": ">=16.9.0",
|