@bigbinary/neeto-payments-frontend 6.2.1 → 6.3.0
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/app/javascript/src/translations/en.json +7 -0
- package/dist/RazorpayWebsiteNotice.js +70 -0
- package/dist/RazorpayWebsiteNotice.js.map +1 -0
- package/dist/cjs/RazorpayWebsiteNotice.js +72 -0
- package/dist/cjs/RazorpayWebsiteNotice.js.map +1 -0
- package/dist/cjs/index.js +3 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/index.js +2 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -606,6 +606,13 @@
|
|
|
606
606
|
"title": "Connect your Razorpay account",
|
|
607
607
|
"failedButton": "Try again"
|
|
608
608
|
},
|
|
609
|
+
"razorpayWebsiteNotice": {
|
|
610
|
+
"addUrlTitle": "Add your {{product, anyCase}} domain to Razorpay",
|
|
611
|
+
"addUrlBody": "Razorpay may require the website that hosts checkout to be listed on your account. Add the following under Account & Settings → Website and app settings → Business website details:",
|
|
612
|
+
"crossProductTitle": "This Razorpay account is connected on another site",
|
|
613
|
+
"crossProductBody": "This account is also connected on {{hosts}}. Razorpay enforces its website list per account, so add this product's URL above to your Razorpay account for payments to work here.",
|
|
614
|
+
"ignoreNote": "Ignore if you've already done this."
|
|
615
|
+
},
|
|
609
616
|
"stripeManage": {
|
|
610
617
|
"viewStripeDashboard": "View Stripe dashboard",
|
|
611
618
|
"checkoutSettings": {
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
import { isPresent } from 'neetocist';
|
|
2
|
+
import { globalProps } from 'neetocommons/initializers';
|
|
3
|
+
import { uniq, pluck } from 'ramda';
|
|
4
|
+
import { useTranslation } from 'react-i18next';
|
|
5
|
+
import { Callout, Typography } from '@bigbinary/neetoui';
|
|
6
|
+
import { jsxs, Fragment, jsx } from 'react/jsx-runtime';
|
|
7
|
+
|
|
8
|
+
const RazorpayWebsiteNotice = ({
|
|
9
|
+
websiteHosts = [],
|
|
10
|
+
crossProductRazorpayUsage = null
|
|
11
|
+
}) => {
|
|
12
|
+
const {
|
|
13
|
+
t
|
|
14
|
+
} = useTranslation();
|
|
15
|
+
const usages = crossProductRazorpayUsage?.usages ?? [];
|
|
16
|
+
const usageHosts = uniq(pluck("host", usages)).join(", ");
|
|
17
|
+
return /*#__PURE__*/jsxs(Fragment, {
|
|
18
|
+
children: [isPresent(websiteHosts) && /*#__PURE__*/jsx(Callout, {
|
|
19
|
+
className: "my-2",
|
|
20
|
+
style: "info",
|
|
21
|
+
children: /*#__PURE__*/jsxs("div", {
|
|
22
|
+
className: "flex flex-col gap-1",
|
|
23
|
+
children: [/*#__PURE__*/jsx(Typography, {
|
|
24
|
+
style: "h5",
|
|
25
|
+
children: t("neetoPayments.razorpayWebsiteNotice.addUrlTitle", {
|
|
26
|
+
product: globalProps.appName
|
|
27
|
+
})
|
|
28
|
+
}), /*#__PURE__*/jsx(Typography, {
|
|
29
|
+
style: "body2",
|
|
30
|
+
children: t("neetoPayments.razorpayWebsiteNotice.addUrlBody")
|
|
31
|
+
}), /*#__PURE__*/jsx("ul", {
|
|
32
|
+
className: "list-disc pl-5",
|
|
33
|
+
children: websiteHosts.map(host => /*#__PURE__*/jsx("li", {
|
|
34
|
+
children: /*#__PURE__*/jsx(Typography, {
|
|
35
|
+
style: "body2",
|
|
36
|
+
weight: "semibold",
|
|
37
|
+
children: host
|
|
38
|
+
})
|
|
39
|
+
}, host))
|
|
40
|
+
}), /*#__PURE__*/jsx(Typography, {
|
|
41
|
+
className: "neeto-ui-text-gray-500",
|
|
42
|
+
style: "body3",
|
|
43
|
+
children: t("neetoPayments.razorpayWebsiteNotice.ignoreNote")
|
|
44
|
+
})]
|
|
45
|
+
})
|
|
46
|
+
}), isPresent(usages) && /*#__PURE__*/jsx(Callout, {
|
|
47
|
+
className: "my-2",
|
|
48
|
+
style: "warning",
|
|
49
|
+
children: /*#__PURE__*/jsxs("div", {
|
|
50
|
+
className: "flex flex-col gap-1",
|
|
51
|
+
children: [/*#__PURE__*/jsx(Typography, {
|
|
52
|
+
style: "h5",
|
|
53
|
+
children: t("neetoPayments.razorpayWebsiteNotice.crossProductTitle")
|
|
54
|
+
}), /*#__PURE__*/jsx(Typography, {
|
|
55
|
+
style: "body2",
|
|
56
|
+
children: t("neetoPayments.razorpayWebsiteNotice.crossProductBody", {
|
|
57
|
+
hosts: usageHosts
|
|
58
|
+
})
|
|
59
|
+
}), /*#__PURE__*/jsx(Typography, {
|
|
60
|
+
className: "neeto-ui-text-gray-500",
|
|
61
|
+
style: "body3",
|
|
62
|
+
children: t("neetoPayments.razorpayWebsiteNotice.ignoreNote")
|
|
63
|
+
})]
|
|
64
|
+
})
|
|
65
|
+
})]
|
|
66
|
+
});
|
|
67
|
+
};
|
|
68
|
+
|
|
69
|
+
export { RazorpayWebsiteNotice as default };
|
|
70
|
+
//# sourceMappingURL=RazorpayWebsiteNotice.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"RazorpayWebsiteNotice.js","sources":["../app/javascript/src/components/RazorpayWebsiteNotice.jsx"],"sourcesContent":["import { isPresent } from \"neetocist\";\nimport { globalProps } from \"neetocommons/initializers\";\nimport { pluck, uniq } from \"ramda\";\nimport { useTranslation } from \"react-i18next\";\n\nimport { Callout, Typography } from \"neetoui\";\n\nconst RazorpayWebsiteNotice = ({\n websiteHosts = [],\n crossProductRazorpayUsage = null,\n}) => {\n const { t } = useTranslation();\n\n const usages = crossProductRazorpayUsage?.usages ?? [];\n const usageHosts = uniq(pluck(\"host\", usages)).join(\", \");\n\n return (\n <>\n {isPresent(websiteHosts) && (\n <Callout className=\"my-2\" style=\"info\">\n <div className=\"flex flex-col gap-1\">\n <Typography style=\"h5\">\n {t(\"neetoPayments.razorpayWebsiteNotice.addUrlTitle\", {\n product: globalProps.appName,\n })}\n </Typography>\n <Typography style=\"body2\">\n {t(\"neetoPayments.razorpayWebsiteNotice.addUrlBody\")}\n </Typography>\n <ul className=\"list-disc pl-5\">\n {websiteHosts.map(host => (\n <li key={host}>\n <Typography style=\"body2\" weight=\"semibold\">\n {host}\n </Typography>\n </li>\n ))}\n </ul>\n <Typography className=\"neeto-ui-text-gray-500\" style=\"body3\">\n {t(\"neetoPayments.razorpayWebsiteNotice.ignoreNote\")}\n </Typography>\n </div>\n </Callout>\n )}\n {isPresent(usages) && (\n <Callout className=\"my-2\" style=\"warning\">\n <div className=\"flex flex-col gap-1\">\n <Typography style=\"h5\">\n {t(\"neetoPayments.razorpayWebsiteNotice.crossProductTitle\")}\n </Typography>\n <Typography style=\"body2\">\n {t(\"neetoPayments.razorpayWebsiteNotice.crossProductBody\", {\n hosts: usageHosts,\n })}\n </Typography>\n <Typography className=\"neeto-ui-text-gray-500\" style=\"body3\">\n {t(\"neetoPayments.razorpayWebsiteNotice.ignoreNote\")}\n </Typography>\n </div>\n </Callout>\n )}\n </>\n );\n};\n\nexport default RazorpayWebsiteNotice;\n"],"names":["RazorpayWebsiteNotice","websiteHosts","crossProductRazorpayUsage","t","useTranslation","usages","usageHosts","uniq","pluck","join","_jsxs","_Fragment","children","isPresent","_jsx","Callout","className","style","Typography","product","globalProps","appName","map","host","weight","hosts"],"mappings":";;;;;;;AAOA,MAAMA,qBAAqB,GAAGA,CAAC;AAC7BC,EAAAA,YAAY,GAAG,EAAE;AACjBC,EAAAA,yBAAyB,GAAG;AAC9B,CAAC,KAAK;EACJ,MAAM;AAAEC,IAAAA;GAAG,GAAGC,cAAc,EAAE;AAE9B,EAAA,MAAMC,MAAM,GAAGH,yBAAyB,EAAEG,MAAM,IAAI,EAAE;AACtD,EAAA,MAAMC,UAAU,GAAGC,IAAI,CAACC,KAAK,CAAC,MAAM,EAAEH,MAAM,CAAC,CAAC,CAACI,IAAI,CAAC,IAAI,CAAC;EAEzD,oBACEC,IAAA,CAAAC,QAAA,EAAA;IAAAC,QAAA,EAAA,CACGC,SAAS,CAACZ,YAAY,CAAC,iBACtBa,GAAA,CAACC,OAAO,EAAA;AAACC,MAAAA,SAAS,EAAC,MAAM;AAACC,MAAAA,KAAK,EAAC,MAAM;AAAAL,MAAAA,QAAA,eACpCF,IAAA,CAAA,KAAA,EAAA;AAAKM,QAAAA,SAAS,EAAC,qBAAqB;QAAAJ,QAAA,EAAA,cAClCE,GAAA,CAACI,UAAU,EAAA;AAACD,UAAAA,KAAK,EAAC,IAAI;AAAAL,UAAAA,QAAA,EACnBT,CAAC,CAAC,iDAAiD,EAAE;YACpDgB,OAAO,EAAEC,WAAW,CAACC;WACtB;AAAC,SACQ,CAAC,eACbP,GAAA,CAACI,UAAU,EAAA;AAACD,UAAAA,KAAK,EAAC,OAAO;UAAAL,QAAA,EACtBT,CAAC,CAAC,gDAAgD;SACzC,CAAC,eACbW,GAAA,CAAA,IAAA,EAAA;AAAIE,UAAAA,SAAS,EAAC,gBAAgB;AAAAJ,UAAAA,QAAA,EAC3BX,YAAY,CAACqB,GAAG,CAACC,IAAI,iBACpBT,GAAA,CAAA,IAAA,EAAA;YAAAF,QAAA,eACEE,GAAA,CAACI,UAAU,EAAA;AAACD,cAAAA,KAAK,EAAC,OAAO;AAACO,cAAAA,MAAM,EAAC,UAAU;AAAAZ,cAAAA,QAAA,EACxCW;aACS;AAAC,WAAA,EAHNA,IAIL,CACL;AAAC,SACA,CAAC,eACLT,GAAA,CAACI,UAAU,EAAA;AAACF,UAAAA,SAAS,EAAC,wBAAwB;AAACC,UAAAA,KAAK,EAAC,OAAO;UAAAL,QAAA,EACzDT,CAAC,CAAC,gDAAgD;AAAC,SAC1C,CAAC;OACV;KACE,CACV,EACAU,SAAS,CAACR,MAAM,CAAC,iBAChBS,GAAA,CAACC,OAAO,EAAA;AAACC,MAAAA,SAAS,EAAC,MAAM;AAACC,MAAAA,KAAK,EAAC,SAAS;AAAAL,MAAAA,QAAA,eACvCF,IAAA,CAAA,KAAA,EAAA;AAAKM,QAAAA,SAAS,EAAC,qBAAqB;QAAAJ,QAAA,EAAA,cAClCE,GAAA,CAACI,UAAU,EAAA;AAACD,UAAAA,KAAK,EAAC,IAAI;UAAAL,QAAA,EACnBT,CAAC,CAAC,uDAAuD;AAAC,SACjD,CAAC,eACbW,GAAA,CAACI,UAAU,EAAA;AAACD,UAAAA,KAAK,EAAC,OAAO;AAAAL,UAAAA,QAAA,EACtBT,CAAC,CAAC,sDAAsD,EAAE;AACzDsB,YAAAA,KAAK,EAAEnB;WACR;AAAC,SACQ,CAAC,eACbQ,GAAA,CAACI,UAAU,EAAA;AAACF,UAAAA,SAAS,EAAC,wBAAwB;AAACC,UAAAA,KAAK,EAAC,OAAO;UAAAL,QAAA,EACzDT,CAAC,CAAC,gDAAgD;AAAC,SAC1C,CAAC;OACV;AAAC,KACC,CACV;AAAA,GACD,CAAC;AAEP;;;;"}
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var neetocist = require('neetocist');
|
|
4
|
+
var initializers = require('neetocommons/initializers');
|
|
5
|
+
var ramda = require('ramda');
|
|
6
|
+
var reactI18next = require('react-i18next');
|
|
7
|
+
var neetoui = require('@bigbinary/neetoui');
|
|
8
|
+
var jsxRuntime = require('react/jsx-runtime');
|
|
9
|
+
|
|
10
|
+
const RazorpayWebsiteNotice = ({
|
|
11
|
+
websiteHosts = [],
|
|
12
|
+
crossProductRazorpayUsage = null
|
|
13
|
+
}) => {
|
|
14
|
+
const {
|
|
15
|
+
t
|
|
16
|
+
} = reactI18next.useTranslation();
|
|
17
|
+
const usages = crossProductRazorpayUsage?.usages ?? [];
|
|
18
|
+
const usageHosts = ramda.uniq(ramda.pluck("host", usages)).join(", ");
|
|
19
|
+
return /*#__PURE__*/jsxRuntime.jsxs(jsxRuntime.Fragment, {
|
|
20
|
+
children: [neetocist.isPresent(websiteHosts) && /*#__PURE__*/jsxRuntime.jsx(neetoui.Callout, {
|
|
21
|
+
className: "my-2",
|
|
22
|
+
style: "info",
|
|
23
|
+
children: /*#__PURE__*/jsxRuntime.jsxs("div", {
|
|
24
|
+
className: "flex flex-col gap-1",
|
|
25
|
+
children: [/*#__PURE__*/jsxRuntime.jsx(neetoui.Typography, {
|
|
26
|
+
style: "h5",
|
|
27
|
+
children: t("neetoPayments.razorpayWebsiteNotice.addUrlTitle", {
|
|
28
|
+
product: initializers.globalProps.appName
|
|
29
|
+
})
|
|
30
|
+
}), /*#__PURE__*/jsxRuntime.jsx(neetoui.Typography, {
|
|
31
|
+
style: "body2",
|
|
32
|
+
children: t("neetoPayments.razorpayWebsiteNotice.addUrlBody")
|
|
33
|
+
}), /*#__PURE__*/jsxRuntime.jsx("ul", {
|
|
34
|
+
className: "list-disc pl-5",
|
|
35
|
+
children: websiteHosts.map(host => /*#__PURE__*/jsxRuntime.jsx("li", {
|
|
36
|
+
children: /*#__PURE__*/jsxRuntime.jsx(neetoui.Typography, {
|
|
37
|
+
style: "body2",
|
|
38
|
+
weight: "semibold",
|
|
39
|
+
children: host
|
|
40
|
+
})
|
|
41
|
+
}, host))
|
|
42
|
+
}), /*#__PURE__*/jsxRuntime.jsx(neetoui.Typography, {
|
|
43
|
+
className: "neeto-ui-text-gray-500",
|
|
44
|
+
style: "body3",
|
|
45
|
+
children: t("neetoPayments.razorpayWebsiteNotice.ignoreNote")
|
|
46
|
+
})]
|
|
47
|
+
})
|
|
48
|
+
}), neetocist.isPresent(usages) && /*#__PURE__*/jsxRuntime.jsx(neetoui.Callout, {
|
|
49
|
+
className: "my-2",
|
|
50
|
+
style: "warning",
|
|
51
|
+
children: /*#__PURE__*/jsxRuntime.jsxs("div", {
|
|
52
|
+
className: "flex flex-col gap-1",
|
|
53
|
+
children: [/*#__PURE__*/jsxRuntime.jsx(neetoui.Typography, {
|
|
54
|
+
style: "h5",
|
|
55
|
+
children: t("neetoPayments.razorpayWebsiteNotice.crossProductTitle")
|
|
56
|
+
}), /*#__PURE__*/jsxRuntime.jsx(neetoui.Typography, {
|
|
57
|
+
style: "body2",
|
|
58
|
+
children: t("neetoPayments.razorpayWebsiteNotice.crossProductBody", {
|
|
59
|
+
hosts: usageHosts
|
|
60
|
+
})
|
|
61
|
+
}), /*#__PURE__*/jsxRuntime.jsx(neetoui.Typography, {
|
|
62
|
+
className: "neeto-ui-text-gray-500",
|
|
63
|
+
style: "body3",
|
|
64
|
+
children: t("neetoPayments.razorpayWebsiteNotice.ignoreNote")
|
|
65
|
+
})]
|
|
66
|
+
})
|
|
67
|
+
})]
|
|
68
|
+
});
|
|
69
|
+
};
|
|
70
|
+
|
|
71
|
+
module.exports = RazorpayWebsiteNotice;
|
|
72
|
+
//# sourceMappingURL=RazorpayWebsiteNotice.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"RazorpayWebsiteNotice.js","sources":["../../app/javascript/src/components/RazorpayWebsiteNotice.jsx"],"sourcesContent":["import { isPresent } from \"neetocist\";\nimport { globalProps } from \"neetocommons/initializers\";\nimport { pluck, uniq } from \"ramda\";\nimport { useTranslation } from \"react-i18next\";\n\nimport { Callout, Typography } from \"neetoui\";\n\nconst RazorpayWebsiteNotice = ({\n websiteHosts = [],\n crossProductRazorpayUsage = null,\n}) => {\n const { t } = useTranslation();\n\n const usages = crossProductRazorpayUsage?.usages ?? [];\n const usageHosts = uniq(pluck(\"host\", usages)).join(\", \");\n\n return (\n <>\n {isPresent(websiteHosts) && (\n <Callout className=\"my-2\" style=\"info\">\n <div className=\"flex flex-col gap-1\">\n <Typography style=\"h5\">\n {t(\"neetoPayments.razorpayWebsiteNotice.addUrlTitle\", {\n product: globalProps.appName,\n })}\n </Typography>\n <Typography style=\"body2\">\n {t(\"neetoPayments.razorpayWebsiteNotice.addUrlBody\")}\n </Typography>\n <ul className=\"list-disc pl-5\">\n {websiteHosts.map(host => (\n <li key={host}>\n <Typography style=\"body2\" weight=\"semibold\">\n {host}\n </Typography>\n </li>\n ))}\n </ul>\n <Typography className=\"neeto-ui-text-gray-500\" style=\"body3\">\n {t(\"neetoPayments.razorpayWebsiteNotice.ignoreNote\")}\n </Typography>\n </div>\n </Callout>\n )}\n {isPresent(usages) && (\n <Callout className=\"my-2\" style=\"warning\">\n <div className=\"flex flex-col gap-1\">\n <Typography style=\"h5\">\n {t(\"neetoPayments.razorpayWebsiteNotice.crossProductTitle\")}\n </Typography>\n <Typography style=\"body2\">\n {t(\"neetoPayments.razorpayWebsiteNotice.crossProductBody\", {\n hosts: usageHosts,\n })}\n </Typography>\n <Typography className=\"neeto-ui-text-gray-500\" style=\"body3\">\n {t(\"neetoPayments.razorpayWebsiteNotice.ignoreNote\")}\n </Typography>\n </div>\n </Callout>\n )}\n </>\n );\n};\n\nexport default RazorpayWebsiteNotice;\n"],"names":["RazorpayWebsiteNotice","websiteHosts","crossProductRazorpayUsage","t","useTranslation","usages","usageHosts","uniq","pluck","join","_jsxs","_Fragment","children","isPresent","_jsx","Callout","className","style","Typography","product","globalProps","appName","map","host","weight","hosts"],"mappings":";;;;;;;;;AAOA,MAAMA,qBAAqB,GAAGA,CAAC;AAC7BC,EAAAA,YAAY,GAAG,EAAE;AACjBC,EAAAA,yBAAyB,GAAG;AAC9B,CAAC,KAAK;EACJ,MAAM;AAAEC,IAAAA;GAAG,GAAGC,2BAAc,EAAE;AAE9B,EAAA,MAAMC,MAAM,GAAGH,yBAAyB,EAAEG,MAAM,IAAI,EAAE;AACtD,EAAA,MAAMC,UAAU,GAAGC,UAAI,CAACC,WAAK,CAAC,MAAM,EAAEH,MAAM,CAAC,CAAC,CAACI,IAAI,CAAC,IAAI,CAAC;EAEzD,oBACEC,eAAA,CAAAC,mBAAA,EAAA;IAAAC,QAAA,EAAA,CACGC,mBAAS,CAACZ,YAAY,CAAC,iBACtBa,cAAA,CAACC,eAAO,EAAA;AAACC,MAAAA,SAAS,EAAC,MAAM;AAACC,MAAAA,KAAK,EAAC,MAAM;AAAAL,MAAAA,QAAA,eACpCF,eAAA,CAAA,KAAA,EAAA;AAAKM,QAAAA,SAAS,EAAC,qBAAqB;QAAAJ,QAAA,EAAA,cAClCE,cAAA,CAACI,kBAAU,EAAA;AAACD,UAAAA,KAAK,EAAC,IAAI;AAAAL,UAAAA,QAAA,EACnBT,CAAC,CAAC,iDAAiD,EAAE;YACpDgB,OAAO,EAAEC,wBAAW,CAACC;WACtB;AAAC,SACQ,CAAC,eACbP,cAAA,CAACI,kBAAU,EAAA;AAACD,UAAAA,KAAK,EAAC,OAAO;UAAAL,QAAA,EACtBT,CAAC,CAAC,gDAAgD;SACzC,CAAC,eACbW,cAAA,CAAA,IAAA,EAAA;AAAIE,UAAAA,SAAS,EAAC,gBAAgB;AAAAJ,UAAAA,QAAA,EAC3BX,YAAY,CAACqB,GAAG,CAACC,IAAI,iBACpBT,cAAA,CAAA,IAAA,EAAA;YAAAF,QAAA,eACEE,cAAA,CAACI,kBAAU,EAAA;AAACD,cAAAA,KAAK,EAAC,OAAO;AAACO,cAAAA,MAAM,EAAC,UAAU;AAAAZ,cAAAA,QAAA,EACxCW;aACS;AAAC,WAAA,EAHNA,IAIL,CACL;AAAC,SACA,CAAC,eACLT,cAAA,CAACI,kBAAU,EAAA;AAACF,UAAAA,SAAS,EAAC,wBAAwB;AAACC,UAAAA,KAAK,EAAC,OAAO;UAAAL,QAAA,EACzDT,CAAC,CAAC,gDAAgD;AAAC,SAC1C,CAAC;OACV;KACE,CACV,EACAU,mBAAS,CAACR,MAAM,CAAC,iBAChBS,cAAA,CAACC,eAAO,EAAA;AAACC,MAAAA,SAAS,EAAC,MAAM;AAACC,MAAAA,KAAK,EAAC,SAAS;AAAAL,MAAAA,QAAA,eACvCF,eAAA,CAAA,KAAA,EAAA;AAAKM,QAAAA,SAAS,EAAC,qBAAqB;QAAAJ,QAAA,EAAA,cAClCE,cAAA,CAACI,kBAAU,EAAA;AAACD,UAAAA,KAAK,EAAC,IAAI;UAAAL,QAAA,EACnBT,CAAC,CAAC,uDAAuD;AAAC,SACjD,CAAC,eACbW,cAAA,CAACI,kBAAU,EAAA;AAACD,UAAAA,KAAK,EAAC,OAAO;AAAAL,UAAAA,QAAA,EACtBT,CAAC,CAAC,sDAAsD,EAAE;AACzDsB,YAAAA,KAAK,EAAEnB;WACR;AAAC,SACQ,CAAC,eACbQ,cAAA,CAACI,kBAAU,EAAA;AAACF,UAAAA,SAAS,EAAC,wBAAwB;AAACC,UAAAA,KAAK,EAAC,OAAO;UAAAL,QAAA,EACzDT,CAAC,CAAC,gDAAgD;AAAC,SAC1C,CAAC;OACV;AAAC,KACC,CACV;AAAA,GACD,CAAC;AAEP;;;;"}
|
package/dist/cjs/index.js
CHANGED
|
@@ -16,6 +16,7 @@ var PayoutsPage = require('./PayoutsPage.js');
|
|
|
16
16
|
var RazorpayConnect = require('./RazorpayConnect.js');
|
|
17
17
|
var RazorpayLinkedAccountForm = require('./RazorpayLinkedAccountForm.js');
|
|
18
18
|
var RazorpayPaymentButton = require('./RazorpayPaymentButton.js');
|
|
19
|
+
var RazorpayWebsiteNotice = require('./RazorpayWebsiteNotice.js');
|
|
19
20
|
var RecurringPaymentSettings = require('./RecurringPaymentSettings.js');
|
|
20
21
|
var RefundsDashboard = require('./RefundsDashboard.js');
|
|
21
22
|
var SplitTransfersDashboard = require('./SplitTransfersDashboard.js');
|
|
@@ -81,6 +82,7 @@ require('./useIntegrationsApi-CNrrE2OH.js');
|
|
|
81
82
|
require('@bigbinary/neeto-molecules/PhoneNumber');
|
|
82
83
|
require('./useBusinessTypesApi-D_td8mux.js');
|
|
83
84
|
require('./usePaymentApi-B198Hd_a.js');
|
|
85
|
+
require('neetocommons/initializers');
|
|
84
86
|
require('./useRecurringSettingsApi-CDA5wZnB.js');
|
|
85
87
|
require('./useRefundsApi-enBsXWAk.js');
|
|
86
88
|
require('./useSplitTransfersApi-BcCKsPCE.js');
|
|
@@ -89,7 +91,6 @@ require('./useCheckoutSettingsApi-fGVkfRBQ.js');
|
|
|
89
91
|
require('dompurify');
|
|
90
92
|
require('./useCountriesApi-CWsN_NIT.js');
|
|
91
93
|
require('./useTaxesApi-BBinhUYT.js');
|
|
92
|
-
require('neetocommons/initializers');
|
|
93
94
|
require('decimal.js');
|
|
94
95
|
|
|
95
96
|
|
|
@@ -110,6 +111,7 @@ exports.PayoutsPage = PayoutsPage;
|
|
|
110
111
|
exports.RazorpayConnect = RazorpayConnect;
|
|
111
112
|
exports.RazorpayLinkedAccountForm = RazorpayLinkedAccountForm;
|
|
112
113
|
exports.RazorpayPaymentButton = RazorpayPaymentButton;
|
|
114
|
+
exports.RazorpayWebsiteNotice = RazorpayWebsiteNotice;
|
|
113
115
|
exports.RecurringPaymentSettings = RecurringPaymentSettings;
|
|
114
116
|
exports.RefundsDashboard = RefundsDashboard;
|
|
115
117
|
exports.SplitTransfersDashboard = SplitTransfersDashboard;
|
package/dist/cjs/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
package/dist/index.js
CHANGED
|
@@ -14,6 +14,7 @@ export { default as PayoutsPage } from './PayoutsPage.js';
|
|
|
14
14
|
export { default as RazorpayConnect } from './RazorpayConnect.js';
|
|
15
15
|
export { default as RazorpayLinkedAccountForm } from './RazorpayLinkedAccountForm.js';
|
|
16
16
|
export { default as RazorpayPaymentButton } from './RazorpayPaymentButton.js';
|
|
17
|
+
export { default as RazorpayWebsiteNotice } from './RazorpayWebsiteNotice.js';
|
|
17
18
|
export { default as RecurringPaymentSettings } from './RecurringPaymentSettings.js';
|
|
18
19
|
export { default as RefundsDashboard } from './RefundsDashboard.js';
|
|
19
20
|
export { default as SplitTransfersDashboard } from './SplitTransfersDashboard.js';
|
|
@@ -79,6 +80,7 @@ import './useIntegrationsApi-BqU-lJql.js';
|
|
|
79
80
|
import '@bigbinary/neeto-molecules/PhoneNumber';
|
|
80
81
|
import './useBusinessTypesApi-CS2aPq7Y.js';
|
|
81
82
|
import './usePaymentApi-BzB3rzNe.js';
|
|
83
|
+
import 'neetocommons/initializers';
|
|
82
84
|
import './useRecurringSettingsApi-B_kTDES9.js';
|
|
83
85
|
import './useRefundsApi-DSMKTWIQ.js';
|
|
84
86
|
import './useSplitTransfersApi-DlRs4wYh.js';
|
|
@@ -87,6 +89,5 @@ import './useCheckoutSettingsApi-D1ZvMA4B.js';
|
|
|
87
89
|
import 'dompurify';
|
|
88
90
|
import './useCountriesApi-ClXgwNgC.js';
|
|
89
91
|
import './useTaxesApi-BuPeVUxI.js';
|
|
90
|
-
import 'neetocommons/initializers';
|
|
91
92
|
import 'decimal.js';
|
|
92
93
|
//# sourceMappingURL=index.js.map
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
package/package.json
CHANGED