@feedmepos/mf-transaction 0.0.47 → 0.0.49
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/{App-DmPPLdl_.js → App-Bd2Vg00Y.js} +1 -1
- package/dist/{Receipt-Ds_HA4S7.js → Receipt-CbB43FcI.js} +52838 -47974
- package/dist/{app-0XHkec23.js → app-BOGbEdwR.js} +2 -2
- package/dist/app.js +1 -1
- package/dist/apps/mf-transaction/src/helpers/canvas.d.ts +1 -4
- package/dist/apps/mf-transaction/src/views/receipt/receipt.d.ts +1 -1
- package/dist/apps/mf-transaction/tsconfig.app.tsbuildinfo +1 -1
- package/dist/{config-DE7pQCH8.js → config-h_h_CICV.js} +518 -550
- package/dist/{index.es-eUApfrNe.js → index.es-C6q0jT4J.js} +298 -298
- package/package.json +3 -3
- package/dist/html2canvas.esm-DgRhIRvu.js +0 -4870
|
@@ -330,14 +330,14 @@ const S = /* @__PURE__ */ f({
|
|
|
330
330
|
{
|
|
331
331
|
path: "/receipt",
|
|
332
332
|
name: p,
|
|
333
|
-
component: u(() => import("./Receipt-
|
|
333
|
+
component: u(() => import("./Receipt-CbB43FcI.js").then((e) => e.R))
|
|
334
334
|
}
|
|
335
335
|
], U = {
|
|
336
336
|
"en-US": k,
|
|
337
337
|
"zh-CN": $,
|
|
338
338
|
"th-TH": A,
|
|
339
339
|
"zh-Hant": O
|
|
340
|
-
}, V = u(() => import("./App-
|
|
340
|
+
}, V = u(() => import("./App-Bd2Vg00Y.js"));
|
|
341
341
|
export {
|
|
342
342
|
V as F,
|
|
343
343
|
S as _,
|
package/dist/app.js
CHANGED
|
@@ -8,7 +8,4 @@ export interface CompressionOptions {
|
|
|
8
8
|
* @param options - Compression options
|
|
9
9
|
* @returns Compressed image data URL
|
|
10
10
|
*/
|
|
11
|
-
export declare function compressCanvas(
|
|
12
|
-
canvas: HTMLCanvasElement;
|
|
13
|
-
imgData: string;
|
|
14
|
-
};
|
|
11
|
+
export declare function compressCanvas(originalCanvas: HTMLCanvasElement, options?: CompressionOptions): string;
|
|
@@ -28,7 +28,7 @@ export interface Receipt extends Bill {
|
|
|
28
28
|
feedmeDelivery: ReceiptInfo[];
|
|
29
29
|
_delivery: ReceiptInfo[];
|
|
30
30
|
_pickup: ReceiptInfo[];
|
|
31
|
-
toCanvas: () => Promise<
|
|
31
|
+
toCanvas: () => Promise<HTMLCanvasElement>;
|
|
32
32
|
getActivities: (receipt: Receipt) => ReceiptActivity[];
|
|
33
33
|
groupItems: GroupItemsByUser;
|
|
34
34
|
}
|