@bigbinary/neeto-payments-frontend 6.3.3 → 6.3.4

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.
@@ -0,0 +1,72 @@
1
+ 'use strict';
2
+
3
+ var neetoAtoms = require('@bigbinary/neeto-atoms');
4
+ var neetocist = require('neetocist');
5
+ var initializers = require('neetocommons/initializers');
6
+ var ramda = require('ramda');
7
+ var reactI18next = require('react-i18next');
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(neetoAtoms.Callout, {
21
+ className: "my-2",
22
+ variant: "info",
23
+ children: /*#__PURE__*/jsxRuntime.jsxs("div", {
24
+ className: "flex flex-col gap-1",
25
+ children: [/*#__PURE__*/jsxRuntime.jsx(neetoAtoms.Typography, {
26
+ variant: "h5",
27
+ children: t("neetoPayments.razorpayWebsiteNotice.addUrlTitle", {
28
+ product: initializers.globalProps.appName
29
+ })
30
+ }), /*#__PURE__*/jsxRuntime.jsx(neetoAtoms.Typography, {
31
+ variant: "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(neetoAtoms.Typography, {
37
+ variant: "body2",
38
+ weight: "semibold",
39
+ children: host
40
+ })
41
+ }, host))
42
+ }), /*#__PURE__*/jsxRuntime.jsx(neetoAtoms.Typography, {
43
+ className: "neeto-ui-text-gray-500",
44
+ variant: "body3",
45
+ children: t("neetoPayments.razorpayWebsiteNotice.ignoreNote")
46
+ })]
47
+ })
48
+ }), neetocist.isPresent(usages) && /*#__PURE__*/jsxRuntime.jsx(neetoAtoms.Callout, {
49
+ className: "my-2",
50
+ variant: "warning",
51
+ children: /*#__PURE__*/jsxRuntime.jsxs("div", {
52
+ className: "flex flex-col gap-1",
53
+ children: [/*#__PURE__*/jsxRuntime.jsx(neetoAtoms.Typography, {
54
+ variant: "h5",
55
+ children: t("neetoPayments.razorpayWebsiteNotice.crossProductTitle")
56
+ }), /*#__PURE__*/jsxRuntime.jsx(neetoAtoms.Typography, {
57
+ variant: "body2",
58
+ children: t("neetoPayments.razorpayWebsiteNotice.crossProductBody", {
59
+ hosts: usageHosts
60
+ })
61
+ }), /*#__PURE__*/jsxRuntime.jsx(neetoAtoms.Typography, {
62
+ className: "neeto-ui-text-gray-500",
63
+ variant: "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/v2/components/RazorpayWebsiteNotice.jsx"],"sourcesContent":["import { Callout, Typography } from \"@bigbinary/neeto-atoms\";\nimport { isPresent } from \"neetocist\";\nimport { globalProps } from \"neetocommons/initializers\";\nimport { pluck, uniq } from \"ramda\";\nimport { useTranslation } from \"react-i18next\";\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\" variant=\"info\">\n <div className=\"flex flex-col gap-1\">\n <Typography variant=\"h5\">\n {t(\"neetoPayments.razorpayWebsiteNotice.addUrlTitle\", {\n product: globalProps.appName,\n })}\n </Typography>\n <Typography variant=\"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 variant=\"body2\" weight=\"semibold\">\n {host}\n </Typography>\n </li>\n ))}\n </ul>\n <Typography className=\"neeto-ui-text-gray-500\" variant=\"body3\">\n {t(\"neetoPayments.razorpayWebsiteNotice.ignoreNote\")}\n </Typography>\n </div>\n </Callout>\n )}\n {isPresent(usages) && (\n <Callout className=\"my-2\" variant=\"warning\">\n <div className=\"flex flex-col gap-1\">\n <Typography variant=\"h5\">\n {t(\"neetoPayments.razorpayWebsiteNotice.crossProductTitle\")}\n </Typography>\n <Typography variant=\"body2\">\n {t(\"neetoPayments.razorpayWebsiteNotice.crossProductBody\", {\n hosts: usageHosts,\n })}\n </Typography>\n <Typography className=\"neeto-ui-text-gray-500\" variant=\"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","variant","Typography","product","globalProps","appName","map","host","weight","hosts"],"mappings":";;;;;;;;;AAMA,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,kBAAO,EAAA;AAACC,MAAAA,SAAS,EAAC,MAAM;AAACC,MAAAA,OAAO,EAAC,MAAM;AAAAL,MAAAA,QAAA,eACtCF,eAAA,CAAA,KAAA,EAAA;AAAKM,QAAAA,SAAS,EAAC,qBAAqB;QAAAJ,QAAA,EAAA,cAClCE,cAAA,CAACI,qBAAU,EAAA;AAACD,UAAAA,OAAO,EAAC,IAAI;AAAAL,UAAAA,QAAA,EACrBT,CAAC,CAAC,iDAAiD,EAAE;YACpDgB,OAAO,EAAEC,wBAAW,CAACC;WACtB;AAAC,SACQ,CAAC,eACbP,cAAA,CAACI,qBAAU,EAAA;AAACD,UAAAA,OAAO,EAAC,OAAO;UAAAL,QAAA,EACxBT,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,qBAAU,EAAA;AAACD,cAAAA,OAAO,EAAC,OAAO;AAACO,cAAAA,MAAM,EAAC,UAAU;AAAAZ,cAAAA,QAAA,EAC1CW;aACS;AAAC,WAAA,EAHNA,IAIL,CACL;AAAC,SACA,CAAC,eACLT,cAAA,CAACI,qBAAU,EAAA;AAACF,UAAAA,SAAS,EAAC,wBAAwB;AAACC,UAAAA,OAAO,EAAC,OAAO;UAAAL,QAAA,EAC3DT,CAAC,CAAC,gDAAgD;AAAC,SAC1C,CAAC;OACV;KACE,CACV,EACAU,mBAAS,CAACR,MAAM,CAAC,iBAChBS,cAAA,CAACC,kBAAO,EAAA;AAACC,MAAAA,SAAS,EAAC,MAAM;AAACC,MAAAA,OAAO,EAAC,SAAS;AAAAL,MAAAA,QAAA,eACzCF,eAAA,CAAA,KAAA,EAAA;AAAKM,QAAAA,SAAS,EAAC,qBAAqB;QAAAJ,QAAA,EAAA,cAClCE,cAAA,CAACI,qBAAU,EAAA;AAACD,UAAAA,OAAO,EAAC,IAAI;UAAAL,QAAA,EACrBT,CAAC,CAAC,uDAAuD;AAAC,SACjD,CAAC,eACbW,cAAA,CAACI,qBAAU,EAAA;AAACD,UAAAA,OAAO,EAAC,OAAO;AAAAL,UAAAA,QAAA,EACxBT,CAAC,CAAC,sDAAsD,EAAE;AACzDsB,YAAAA,KAAK,EAAEnB;WACR;AAAC,SACQ,CAAC,eACbQ,cAAA,CAACI,qBAAU,EAAA;AAACF,UAAAA,SAAS,EAAC,wBAAwB;AAACC,UAAAA,OAAO,EAAC,OAAO;UAAAL,QAAA,EAC3DT,CAAC,CAAC,gDAAgD;AAAC,SAC1C,CAAC;OACV;AAAC,KACC,CACV;AAAA,GACD,CAAC;AAEP;;;;"}
@@ -16,6 +16,7 @@ var v2_PayoutsPage = require('./PayoutsPage.js');
16
16
  var v2_RazorpayConnect = require('./RazorpayConnect.js');
17
17
  var v2_RazorpayLinkedAccountForm = require('./RazorpayLinkedAccountForm.js');
18
18
  var v2_RazorpayPaymentButton = require('./RazorpayPaymentButton.js');
19
+ var v2_RazorpayWebsiteNotice = require('./RazorpayWebsiteNotice.js');
19
20
  var v2_RecurringPaymentSettings = require('./RecurringPaymentSettings.js');
20
21
  var v2_RefundsDashboard = require('./RefundsDashboard.js');
21
22
  var v2_SplitTransfersDashboard = require('./SplitTransfersDashboard.js');
@@ -83,6 +84,7 @@ require('../useIntegrationsApi-CNrrE2OH.js');
83
84
  require('@bigbinary/neeto-molecules/v2/PhoneNumber');
84
85
  require('../useBusinessTypesApi-D_td8mux.js');
85
86
  require('../usePaymentApi-B198Hd_a.js');
87
+ require('neetocommons/initializers');
86
88
  require('../useRecurringSettingsApi-CDA5wZnB.js');
87
89
  require('../useRefundsApi-enBsXWAk.js');
88
90
  require('../useSplitTransfersApi-BcCKsPCE.js');
@@ -92,7 +94,6 @@ require('dompurify');
92
94
  require('../useCountriesApi-CWsN_NIT.js');
93
95
  require('../useTaxesApi-BBinhUYT.js');
94
96
  require('decimal.js');
95
- require('neetocommons/initializers');
96
97
 
97
98
 
98
99
 
@@ -112,6 +113,7 @@ exports.PayoutsPage = v2_PayoutsPage;
112
113
  exports.RazorpayConnect = v2_RazorpayConnect;
113
114
  exports.RazorpayLinkedAccountForm = v2_RazorpayLinkedAccountForm;
114
115
  exports.RazorpayPaymentButton = v2_RazorpayPaymentButton;
116
+ exports.RazorpayWebsiteNotice = v2_RazorpayWebsiteNotice;
115
117
  exports.RecurringPaymentSettings = v2_RecurringPaymentSettings;
116
118
  exports.RefundsDashboard = v2_RefundsDashboard;
117
119
  exports.SplitTransfersDashboard = v2_SplitTransfersDashboard;
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
1
+ {"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
@@ -0,0 +1,70 @@
1
+ import { Callout, Typography } from '@bigbinary/neeto-atoms';
2
+ import { isPresent } from 'neetocist';
3
+ import { globalProps } from 'neetocommons/initializers';
4
+ import { uniq, pluck } from 'ramda';
5
+ import { useTranslation } from 'react-i18next';
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
+ variant: "info",
21
+ children: /*#__PURE__*/jsxs("div", {
22
+ className: "flex flex-col gap-1",
23
+ children: [/*#__PURE__*/jsx(Typography, {
24
+ variant: "h5",
25
+ children: t("neetoPayments.razorpayWebsiteNotice.addUrlTitle", {
26
+ product: globalProps.appName
27
+ })
28
+ }), /*#__PURE__*/jsx(Typography, {
29
+ variant: "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
+ variant: "body2",
36
+ weight: "semibold",
37
+ children: host
38
+ })
39
+ }, host))
40
+ }), /*#__PURE__*/jsx(Typography, {
41
+ className: "neeto-ui-text-gray-500",
42
+ variant: "body3",
43
+ children: t("neetoPayments.razorpayWebsiteNotice.ignoreNote")
44
+ })]
45
+ })
46
+ }), isPresent(usages) && /*#__PURE__*/jsx(Callout, {
47
+ className: "my-2",
48
+ variant: "warning",
49
+ children: /*#__PURE__*/jsxs("div", {
50
+ className: "flex flex-col gap-1",
51
+ children: [/*#__PURE__*/jsx(Typography, {
52
+ variant: "h5",
53
+ children: t("neetoPayments.razorpayWebsiteNotice.crossProductTitle")
54
+ }), /*#__PURE__*/jsx(Typography, {
55
+ variant: "body2",
56
+ children: t("neetoPayments.razorpayWebsiteNotice.crossProductBody", {
57
+ hosts: usageHosts
58
+ })
59
+ }), /*#__PURE__*/jsx(Typography, {
60
+ className: "neeto-ui-text-gray-500",
61
+ variant: "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/v2/components/RazorpayWebsiteNotice.jsx"],"sourcesContent":["import { Callout, Typography } from \"@bigbinary/neeto-atoms\";\nimport { isPresent } from \"neetocist\";\nimport { globalProps } from \"neetocommons/initializers\";\nimport { pluck, uniq } from \"ramda\";\nimport { useTranslation } from \"react-i18next\";\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\" variant=\"info\">\n <div className=\"flex flex-col gap-1\">\n <Typography variant=\"h5\">\n {t(\"neetoPayments.razorpayWebsiteNotice.addUrlTitle\", {\n product: globalProps.appName,\n })}\n </Typography>\n <Typography variant=\"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 variant=\"body2\" weight=\"semibold\">\n {host}\n </Typography>\n </li>\n ))}\n </ul>\n <Typography className=\"neeto-ui-text-gray-500\" variant=\"body3\">\n {t(\"neetoPayments.razorpayWebsiteNotice.ignoreNote\")}\n </Typography>\n </div>\n </Callout>\n )}\n {isPresent(usages) && (\n <Callout className=\"my-2\" variant=\"warning\">\n <div className=\"flex flex-col gap-1\">\n <Typography variant=\"h5\">\n {t(\"neetoPayments.razorpayWebsiteNotice.crossProductTitle\")}\n </Typography>\n <Typography variant=\"body2\">\n {t(\"neetoPayments.razorpayWebsiteNotice.crossProductBody\", {\n hosts: usageHosts,\n })}\n </Typography>\n <Typography className=\"neeto-ui-text-gray-500\" variant=\"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","variant","Typography","product","globalProps","appName","map","host","weight","hosts"],"mappings":";;;;;;;AAMA,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,OAAO,EAAC,MAAM;AAAAL,MAAAA,QAAA,eACtCF,IAAA,CAAA,KAAA,EAAA;AAAKM,QAAAA,SAAS,EAAC,qBAAqB;QAAAJ,QAAA,EAAA,cAClCE,GAAA,CAACI,UAAU,EAAA;AAACD,UAAAA,OAAO,EAAC,IAAI;AAAAL,UAAAA,QAAA,EACrBT,CAAC,CAAC,iDAAiD,EAAE;YACpDgB,OAAO,EAAEC,WAAW,CAACC;WACtB;AAAC,SACQ,CAAC,eACbP,GAAA,CAACI,UAAU,EAAA;AAACD,UAAAA,OAAO,EAAC,OAAO;UAAAL,QAAA,EACxBT,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,OAAO,EAAC,OAAO;AAACO,cAAAA,MAAM,EAAC,UAAU;AAAAZ,cAAAA,QAAA,EAC1CW;aACS;AAAC,WAAA,EAHNA,IAIL,CACL;AAAC,SACA,CAAC,eACLT,GAAA,CAACI,UAAU,EAAA;AAACF,UAAAA,SAAS,EAAC,wBAAwB;AAACC,UAAAA,OAAO,EAAC,OAAO;UAAAL,QAAA,EAC3DT,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,OAAO,EAAC,SAAS;AAAAL,MAAAA,QAAA,eACzCF,IAAA,CAAA,KAAA,EAAA;AAAKM,QAAAA,SAAS,EAAC,qBAAqB;QAAAJ,QAAA,EAAA,cAClCE,GAAA,CAACI,UAAU,EAAA;AAACD,UAAAA,OAAO,EAAC,IAAI;UAAAL,QAAA,EACrBT,CAAC,CAAC,uDAAuD;AAAC,SACjD,CAAC,eACbW,GAAA,CAACI,UAAU,EAAA;AAACD,UAAAA,OAAO,EAAC,OAAO;AAAAL,UAAAA,QAAA,EACxBT,CAAC,CAAC,sDAAsD,EAAE;AACzDsB,YAAAA,KAAK,EAAEnB;WACR;AAAC,SACQ,CAAC,eACbQ,GAAA,CAACI,UAAU,EAAA;AAACF,UAAAA,SAAS,EAAC,wBAAwB;AAACC,UAAAA,OAAO,EAAC,OAAO;UAAAL,QAAA,EAC3DT,CAAC,CAAC,gDAAgD;AAAC,SAC1C,CAAC;OACV;AAAC,KACC,CACV;AAAA,GACD,CAAC;AAEP;;;;"}
package/dist/v2/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';
@@ -81,6 +82,7 @@ import '../useIntegrationsApi-BqU-lJql.js';
81
82
  import '@bigbinary/neeto-molecules/v2/PhoneNumber';
82
83
  import '../useBusinessTypesApi-CS2aPq7Y.js';
83
84
  import '../usePaymentApi-BzB3rzNe.js';
85
+ import 'neetocommons/initializers';
84
86
  import '../useRecurringSettingsApi-B_kTDES9.js';
85
87
  import '../useRefundsApi-DSMKTWIQ.js';
86
88
  import '../useSplitTransfersApi-DlRs4wYh.js';
@@ -90,5 +92,4 @@ import 'dompurify';
90
92
  import '../useCountriesApi-ClXgwNgC.js';
91
93
  import '../useTaxesApi-BuPeVUxI.js';
92
94
  import 'decimal.js';
93
- import 'neetocommons/initializers';
94
95
  //# sourceMappingURL=index.js.map
@@ -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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bigbinary/neeto-payments-frontend",
3
- "version": "6.3.3",
3
+ "version": "6.3.4",
4
4
  "description": "To manage payments across the neeto products.",
5
5
  "license": "UNLICENSED",
6
6
  "homepage": "https://github.com/bigbinary/neeto-payments-nano",