@feedmepos/mf-payment 1.4.21 → 1.4.23

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.
Files changed (35) hide show
  1. package/dist/{Actions.vue_vue_type_script_setup_true_lang-CXzcR3lA.js → Actions.vue_vue_type_script_setup_true_lang-ClTndbYh.js} +1 -1
  2. package/dist/AutoCopyCell.vue_vue_type_script_setup_true_lang-DP8STuAT.js +47 -0
  3. package/dist/Chargeback-B0gRIpiJ.js +413 -0
  4. package/dist/{OnboardForm-DRTeMI32.js → OnboardForm-Bhqt-Q6k.js} +2 -2
  5. package/dist/{OnboardForm-BHT2IaUt.js → OnboardForm-BvrKiqP1.js} +2 -2
  6. package/dist/{OnboardSubmission-D_T1RJQH.js → OnboardSubmission-B-0uJv51.js} +1 -1
  7. package/dist/{OnboardSubmission-LNBKTrDd.js → OnboardSubmission-DFreyD4V.js} +1 -1
  8. package/dist/{PayoutAccount-DqLL0Lc0.js → PayoutAccount-BsxNx86g.js} +3 -3
  9. package/dist/{PayoutAccount-t-t5ndKZ.js → PayoutAccount-DrwnZPIB.js} +1 -1
  10. package/dist/{Restaurant-ZTbhEMio.js → Restaurant-CCaYPuWH.js} +1 -1
  11. package/dist/{Settlement-CqZSTDvu.js → Settlement-BQNJSUCM.js} +1 -1
  12. package/dist/{Settlement-CR8qyWus.js → Settlement-BU-jCEbB.js} +1 -1
  13. package/dist/{SettlementTransactions-C9jYK2Ne.js → SettlementTransactions-CqELsVFS.js} +6 -5
  14. package/dist/{SettlementTransactions-BX1D315E.js → SettlementTransactions-T6k6cAin.js} +4 -3
  15. package/dist/{Transaction-NaM-tip2.js → Transaction-B85QLk-_.js} +5 -4
  16. package/dist/{Transaction-8hEjSIV1.js → Transaction-CgFaGqHr.js} +9 -8
  17. package/dist/{TransactionOld-Qhbe5ao8.js → TransactionOld-BlSmbndR.js} +23 -22
  18. package/dist/api/transaction/index.d.ts +17 -0
  19. package/dist/{app-CDr59oLf.js → app-DlAaBxih.js} +73 -65
  20. package/dist/app.js +1 -1
  21. package/dist/{assets-BGs9zWOF.js → assets-B8TAgjHY.js} +90 -201
  22. package/dist/components/AutoCopyCell.vue.d.ts +4 -0
  23. package/dist/index-CYHO6usZ.js +145 -0
  24. package/dist/{index-DhUIX6ww.js → index-JNhw7LUy.js} +1 -1
  25. package/dist/model/chargeback.d.ts +24 -0
  26. package/dist/package.json +1 -1
  27. package/dist/{payout-account-D91l85XC.js → payout-account-B8gx9H3E.js} +2 -2
  28. package/dist/{plugins-Cyj2wAwo.js → plugins-Cp96IRMs.js} +1 -1
  29. package/dist/tsconfig.app.tsbuildinfo +1 -1
  30. package/dist/views/admin/chargeback/Chargeback.vue.d.ts +2 -0
  31. package/dist/views/admin/chargeback/CreateChargebackDialog.vue.d.ts +2 -0
  32. package/dist/views/admin/chargeback/UpdateChargebackDialog.vue.d.ts +6 -0
  33. package/dist/views/admin/chargeback/cell/Actions.vue.d.ts +8 -0
  34. package/package.json +1 -1
  35. package/dist/AutoCopyCell.vue_vue_type_script_setup_true_lang-XC4V0tsX.js +0 -40
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ export default _default;
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
2
+ export default _default;
@@ -0,0 +1,6 @@
1
+ type __VLS_Props = {
2
+ chargebackId: string;
3
+ currentDate: string;
4
+ };
5
+ declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
6
+ export default _default;
@@ -0,0 +1,8 @@
1
+ import type { PortalChargebackTransaction } from '@/model/chargeback';
2
+ export type emitAction = "update";
3
+ type __VLS_Props = {
4
+ onAction: (event: emitAction) => void;
5
+ chargeback: PortalChargebackTransaction;
6
+ };
7
+ declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, HTMLDivElement>;
8
+ export default _default;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@feedmepos/mf-payment",
3
- "version": "1.4.21",
3
+ "version": "1.4.23",
4
4
  "type": "module",
5
5
  "files": [
6
6
  "dist"
@@ -1,40 +0,0 @@
1
- import { defineComponent as i, resolveComponent as l, openBlock as m, createElementBlock as d, createVNode as f, createTextVNode as C, toDisplayString as n } from "vue";
2
- import { c as u } from "./clipboard-4jh1WteU.js";
3
- import { useSnackbar as b } from "@feedmepos/ui-library";
4
- const x = /* @__PURE__ */ i({
5
- __name: "AutoCopyCell",
6
- props: {
7
- data: {},
8
- extra: {}
9
- },
10
- setup(r) {
11
- const a = r, e = b();
12
- function p() {
13
- try {
14
- u(a.data), e.open({ title: "Text copied to clipboard." }, 1e3);
15
- } catch {
16
- e.open({ title: "Clipboard API incompatible." }, 1e3);
17
- }
18
- }
19
- return (o, t) => {
20
- const c = l("FmIcon");
21
- return m(), d("div", {
22
- class: "flex",
23
- onClick: t[0] || (t[0] = (s) => {
24
- s.stopPropagation(), p();
25
- })
26
- }, [
27
- f(c, {
28
- class: "mr-4 self-center",
29
- name: "content_copy",
30
- size: "sm",
31
- outline: ""
32
- }),
33
- C(" " + n(o.data) + " " + n(o.extra), 1)
34
- ]);
35
- };
36
- }
37
- });
38
- export {
39
- x as _
40
- };