@pelcro/react-pelcro-js 3.2.0-beta.13 → 3.2.0-beta.16
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/index.cjs.js +25 -8
- package/dist/index.esm.js +25 -8
- package/dist/pelcro.css +4 -3
- package/package.json +1 -1
package/dist/index.cjs.js
CHANGED
|
@@ -2574,7 +2574,7 @@ var voidElements = {
|
|
|
2574
2574
|
"wbr": true
|
|
2575
2575
|
};
|
|
2576
2576
|
|
|
2577
|
-
var t$
|
|
2577
|
+
var t$1=/\s([^'"/\s><]+?)[\s/>]|([^\s=]+)=\s?(".*?"|'.*?')/g;function n$1(n){var r={type:"tag",name:"",voidElement:!1,attrs:{},children:[]},i=n.match(/<\/?([^\s]+?)[/\s>]/);if(i&&(r.name=i[1],(voidElements[i[1]]||"/"===n.charAt(n.length-2))&&(r.voidElement=!0),r.name.startsWith("!--"))){var s=n.indexOf("--\x3e");return {type:"comment",comment:-1!==s?n.slice(4,s):""}}for(var a=new RegExp(t$1),c=null;null!==(c=a.exec(n));)if(c[0].trim())if(c[1]){var o=c[1].trim(),l=[o,""];o.indexOf("=")>-1&&(l=o.split("=")),r.attrs[l[0]]=l[1],a.lastIndex--;}else c[2]&&(r.attrs[c[2]]=c[3].trim().substring(1,c[3].length-1));return r}var r=/<[a-zA-Z0-9\-\!\/](?:"[^"]*"|'[^']*'|[^'">])*>/g,i$1=/^\s*$/,s$1=Object.create(null);function a$1(e,t){switch(t.type){case"text":return e+t.content;case"tag":return e+="<"+t.name+(t.attrs?function(e){var t=[];for(var n in e)t.push(n+'="'+e[n]+'"');return t.length?" "+t.join(" "):""}(t.attrs):"")+(t.voidElement?"/>":">"),t.voidElement?e:e+t.children.reduce(a$1,"")+"</"+t.name+">";case"comment":return e+"\x3c!--"+t.comment+"--\x3e"}}var c$2={parse:function(e,t){t||(t={}),t.components||(t.components=s$1);var a,c=[],o=[],l=-1,m=!1;if(0!==e.indexOf("<")){var u=e.indexOf("<");c.push({type:"text",content:-1===u?e:e.substring(0,u)});}return e.replace(r,function(r,s){if(m){if(r!=="</"+a.name+">")return;m=!1;}var u,f="/"!==r.charAt(1),h=r.startsWith("\x3c!--"),p=s+r.length,d=e.charAt(p);if(h){var v=n$1(r);return l<0?(c.push(v),c):((u=o[l]).children.push(v),c)}if(f&&(l++,"tag"===(a=n$1(r)).type&&t.components[a.name]&&(a.type="component",m=!0),a.voidElement||m||!d||"<"===d||a.children.push({type:"text",content:e.slice(p,e.indexOf("<",p))}),0===l&&c.push(a),(u=o[l-1])&&u.children.push(a),o[l]=a),(!f||a.voidElement)&&(l>-1&&(a.voidElement||a.name===r.slice(2,-1))&&(l--,a=-1===l?c:o[l]),!m&&"<"!==d&&d)){u=-1===l?c:o[l].children;var x=e.indexOf("<",p),g=e.slice(p,-1===x?void 0:x);i$1.test(g)&&(g=" "),(x>-1&&l+u.length>=0||" "!==g)&&u.push({type:"text",content:g});}}),c},stringify:function(e){return e.reduce(function(e,t){return e+a$1("",t)},"")}};
|
|
2578
2578
|
|
|
2579
2579
|
var classCallCheck = createCommonjsModule(function (module) {
|
|
2580
2580
|
function _classCallCheck(instance, Constructor) {
|
|
@@ -6438,6 +6438,19 @@ if (process.env.NODE_ENV === "development") {
|
|
|
6438
6438
|
c$1("Pelcro Store", usePelcro);
|
|
6439
6439
|
}
|
|
6440
6440
|
|
|
6441
|
+
/**
|
|
6442
|
+
* List of zero-decimal currencies.
|
|
6443
|
+
* @see https://stripe.com/docs/currencies#zero-decimal
|
|
6444
|
+
*
|
|
6445
|
+
*/
|
|
6446
|
+
|
|
6447
|
+
const ZERO_DECIMAL_CURRENCIES = ['BIF', 'CLP', 'DJF', 'GNF', 'JPY', 'KMF', 'KRW', 'MGA', 'PYG', 'RWF', 'UGX', 'VND', 'VUV', 'XAF', 'XOF', 'XPF'];
|
|
6448
|
+
/**
|
|
6449
|
+
* @param {string}
|
|
6450
|
+
* @return {boolean}
|
|
6451
|
+
*/
|
|
6452
|
+
|
|
6453
|
+
const isCurrencyZeroDecimal = currency => ZERO_DECIMAL_CURRENCIES.includes(currency);
|
|
6441
6454
|
const sortCountries = countries => {
|
|
6442
6455
|
const sortable = [];
|
|
6443
6456
|
delete countries.CA;
|
|
@@ -6524,7 +6537,7 @@ const getFormattedPriceByLocal = (amount, currency = "USD", locale = "en") => {
|
|
|
6524
6537
|
style: "currency",
|
|
6525
6538
|
currency
|
|
6526
6539
|
});
|
|
6527
|
-
return formatter.format(amount / 100);
|
|
6540
|
+
return isCurrencyZeroDecimal(currency) ? formatter.format(amount) : formatter.format(amount / 100);
|
|
6528
6541
|
};
|
|
6529
6542
|
/** check wether or not the user have any addresses
|
|
6530
6543
|
* @return {boolean} true if the user have at least one address, false otherwise
|
|
@@ -6541,7 +6554,7 @@ const calcAndFormatItemsTotal = (items, currency) => {
|
|
|
6541
6554
|
let totalWithoutDividingBy100 = 0;
|
|
6542
6555
|
|
|
6543
6556
|
for (const item of items) {
|
|
6544
|
-
totalWithoutDividingBy100 += parseFloat(item.price ? (item.price * item.quantity).toFixed(2) : item.amount.toFixed(2));
|
|
6557
|
+
totalWithoutDividingBy100 += parseFloat(item.price ? isCurrencyZeroDecimal(currency) ? item.price * item.quantity : (item.price * item.quantity).toFixed(2) : isCurrencyZeroDecimal(currency) ? item.amount : item.amount.toFixed(2));
|
|
6545
6558
|
}
|
|
6546
6559
|
|
|
6547
6560
|
return getFormattedPriceByLocal(totalWithoutDividingBy100, currency, getPageOrDefaultLanguage());
|
|
@@ -6621,7 +6634,7 @@ const disableScroll = () => {
|
|
|
6621
6634
|
}
|
|
6622
6635
|
};
|
|
6623
6636
|
const trackSubscriptionOnGA = () => {
|
|
6624
|
-
var
|
|
6637
|
+
var _window$Pelcro$user$r5, _window$Pelcro$user$r6, _ReactGA$set, _ReactGA$plugin, _ReactGA$plugin$execu, _ReactGA$plugin2, _ReactGA$plugin2$exec, _ReactGA$plugin3, _ReactGA$plugin3$exec, _ReactGA$event;
|
|
6625
6638
|
|
|
6626
6639
|
const {
|
|
6627
6640
|
product,
|
|
@@ -6642,13 +6655,14 @@ const trackSubscriptionOnGA = () => {
|
|
|
6642
6655
|
return;
|
|
6643
6656
|
}
|
|
6644
6657
|
|
|
6658
|
+
const currencyCode = (_window$Pelcro$user$r5 = (_window$Pelcro$user$r6 = window.Pelcro.user.read()) === null || _window$Pelcro$user$r6 === void 0 ? void 0 : _window$Pelcro$user$r6.currency) !== null && _window$Pelcro$user$r5 !== void 0 ? _window$Pelcro$user$r5 : plan.currency;
|
|
6645
6659
|
ReactGA === null || ReactGA === void 0 ? void 0 : (_ReactGA$set = ReactGA.set) === null || _ReactGA$set === void 0 ? void 0 : _ReactGA$set.call(ReactGA, {
|
|
6646
|
-
currencyCode:
|
|
6660
|
+
currencyCode: currencyCode
|
|
6647
6661
|
});
|
|
6648
6662
|
ReactGA === null || ReactGA === void 0 ? void 0 : (_ReactGA$plugin = ReactGA.plugin) === null || _ReactGA$plugin === void 0 ? void 0 : (_ReactGA$plugin$execu = _ReactGA$plugin.execute) === null || _ReactGA$plugin$execu === void 0 ? void 0 : _ReactGA$plugin$execu.call(_ReactGA$plugin, "ecommerce", "addTransaction", {
|
|
6649
6663
|
id: lastSubscriptionId,
|
|
6650
6664
|
affiliation: "Pelcro",
|
|
6651
|
-
revenue: plan !== null && plan !== void 0 && plan.amount ? plan.amount / 100 : 0,
|
|
6665
|
+
revenue: plan !== null && plan !== void 0 && plan.amount ? isCurrencyZeroDecimal(currencyCode) ? plan.amount : plan.amount / 100 : 0,
|
|
6652
6666
|
coupon: couponCode
|
|
6653
6667
|
});
|
|
6654
6668
|
ReactGA === null || ReactGA === void 0 ? void 0 : (_ReactGA$plugin2 = ReactGA.plugin) === null || _ReactGA$plugin2 === void 0 ? void 0 : (_ReactGA$plugin2$exec = _ReactGA$plugin2.execute) === null || _ReactGA$plugin2$exec === void 0 ? void 0 : _ReactGA$plugin2$exec.call(_ReactGA$plugin2, "ecommerce", "addItem", {
|
|
@@ -6656,7 +6670,7 @@ const trackSubscriptionOnGA = () => {
|
|
|
6656
6670
|
name: product.name,
|
|
6657
6671
|
category: product.description,
|
|
6658
6672
|
variant: plan.nickname,
|
|
6659
|
-
price: plan !== null && plan !== void 0 && plan.amount ? plan.amount / 100 : 0,
|
|
6673
|
+
price: plan !== null && plan !== void 0 && plan.amount ? isCurrencyZeroDecimal(currencyCode) ? plan.amount : plan.amount / 100 : 0,
|
|
6660
6674
|
quantity: 1
|
|
6661
6675
|
});
|
|
6662
6676
|
ReactGA === null || ReactGA === void 0 ? void 0 : (_ReactGA$plugin3 = ReactGA.plugin) === null || _ReactGA$plugin3 === void 0 ? void 0 : (_ReactGA$plugin3$exec = _ReactGA$plugin3.execute) === null || _ReactGA$plugin3$exec === void 0 ? void 0 : _ReactGA$plugin3$exec.call(_ReactGA$plugin3, "ecommerce", "send");
|
|
@@ -7094,7 +7108,7 @@ class SaveToMetadataButtonClass {
|
|
|
7094
7108
|
|
|
7095
7109
|
const saveToMetadataButton = new SaveToMetadataButtonClass();
|
|
7096
7110
|
|
|
7097
|
-
let e={data:""},t
|
|
7111
|
+
let e={data:""},t=t=>"undefined"!=typeof window?((t?t.querySelector("#_goober"):window._goober)||Object.assign((t||document.head).appendChild(document.createElement("style")),{innerHTML:" ",id:"_goober"})).firstChild:t||e,l=/(?:([\u0080-\uFFFF\w-%@]+) *:? *([^{;]+?);|([^;}{]*?) *{)|(})/g,a=/\/\*[^]*?\*\/|\s\s+|\n/g,n=(e,t)=>{let r,l="",a="",o="";for(let c in e){let s=e[c];"object"==typeof s?(r=t?t.replace(/([^,])+/g,e=>c.replace(/([^,])+/g,t=>/&/.test(t)?t.replace(/&/g,e):e?e+" "+t:t)):c,a+="@"==c[0]?"f"==c[1]?n(s,c):c+"{"+n(s,"k"==c[1]?"":t)+"}":n(s,r)):"@"==c[0]&&"i"==c[1]?l=c+" "+s+";":(c=c.replace(/[A-Z]/g,"-$&").toLowerCase(),o+=n.p?n.p(c,s):c+":"+s+";");}return o[0]?(r=t?t+"{"+o+"}":o,l+r+a):l+a},o={},c=e=>{let t="";for(let r in e)t+=r+("object"==typeof e[r]?c(e[r]):e[r]);return t},s=(e,t,r,s,i)=>{let p="object"==typeof e?c(e):e,u=o[p]||(o[p]=(e=>{let t=0,r=11;for(;t<e.length;)r=101*r+e.charCodeAt(t++)>>>0;return "go"+r})(p));if(!o[u]){let t="object"==typeof e?e:(e=>{let t,r=[{}];for(;t=l.exec(e.replace(a,""));)t[4]&&r.shift(),t[3]?r.unshift(r[0][t[3]]=r[0][t[3]]||{}):t[4]||(r[0][t[1]]=t[2]);return r[0]})(e);o[u]=n(i?{["@keyframes "+u]:t}:t,r?"":"."+u);}return ((e,t,r)=>{-1==t.data.indexOf(e)&&(t.data=r?e+t.data:t.data+e);})(o[u],t,s),u},i=(e,t,r)=>e.reduce((e,l,a)=>{let o=t[a];if(o&&o.call){let e=o(r),t=e&&e.props&&e.props.className||/^go/.test(e)&&e;o=t?"."+t:e&&"object"==typeof e?e.props?"":n(e,""):e;}return e+l+(null==o?"":o)},"");function p(e){let r=this||{},l=e.call?e(r.p):e;return s(l.unshift?l.raw?i(l,[].slice.call(arguments,1),r.p):l.reduce((e,t)=>t?Object.assign(e,t.call?t(r.p):t):e,{}):l,t(r.target),r.g,r.o,r.k)}let u,f,d;p.bind({g:1});let b=p.bind({k:1});function h(e,t,r,l){n.p=t,u=e,f=r,d=l;}function y(e,t){let r=this||{};return function(){let l=arguments;function a(n,o){let c=Object.assign({},n),s=c.className||a.className;r.p=Object.assign({theme:f&&f()},c),r.o=/ *go\d+/.test(s),c.className=p.apply(r,l)+(s?" "+s:""),t&&(c.ref=o);let i=c.as||e;return d&&i[0]&&d(c),u(i,c)}return t?t(a):a}}
|
|
7098
7112
|
|
|
7099
7113
|
function _extends$z() {
|
|
7100
7114
|
_extends$z = Object.assign || function (target) {
|
|
@@ -9847,6 +9861,9 @@ function ConfirmPassword({
|
|
|
9847
9861
|
store,
|
|
9848
9862
|
...otherProps
|
|
9849
9863
|
}) {
|
|
9864
|
+
const {
|
|
9865
|
+
t
|
|
9866
|
+
} = useTranslation("common");
|
|
9850
9867
|
const {
|
|
9851
9868
|
dispatch,
|
|
9852
9869
|
state: {
|
package/dist/index.esm.js
CHANGED
|
@@ -2544,7 +2544,7 @@ var voidElements = {
|
|
|
2544
2544
|
"wbr": true
|
|
2545
2545
|
};
|
|
2546
2546
|
|
|
2547
|
-
var t$
|
|
2547
|
+
var t$1=/\s([^'"/\s><]+?)[\s/>]|([^\s=]+)=\s?(".*?"|'.*?')/g;function n$1(n){var r={type:"tag",name:"",voidElement:!1,attrs:{},children:[]},i=n.match(/<\/?([^\s]+?)[/\s>]/);if(i&&(r.name=i[1],(voidElements[i[1]]||"/"===n.charAt(n.length-2))&&(r.voidElement=!0),r.name.startsWith("!--"))){var s=n.indexOf("--\x3e");return {type:"comment",comment:-1!==s?n.slice(4,s):""}}for(var a=new RegExp(t$1),c=null;null!==(c=a.exec(n));)if(c[0].trim())if(c[1]){var o=c[1].trim(),l=[o,""];o.indexOf("=")>-1&&(l=o.split("=")),r.attrs[l[0]]=l[1],a.lastIndex--;}else c[2]&&(r.attrs[c[2]]=c[3].trim().substring(1,c[3].length-1));return r}var r=/<[a-zA-Z0-9\-\!\/](?:"[^"]*"|'[^']*'|[^'">])*>/g,i$1=/^\s*$/,s$1=Object.create(null);function a$1(e,t){switch(t.type){case"text":return e+t.content;case"tag":return e+="<"+t.name+(t.attrs?function(e){var t=[];for(var n in e)t.push(n+'="'+e[n]+'"');return t.length?" "+t.join(" "):""}(t.attrs):"")+(t.voidElement?"/>":">"),t.voidElement?e:e+t.children.reduce(a$1,"")+"</"+t.name+">";case"comment":return e+"\x3c!--"+t.comment+"--\x3e"}}var c$2={parse:function(e,t){t||(t={}),t.components||(t.components=s$1);var a,c=[],o=[],l=-1,m=!1;if(0!==e.indexOf("<")){var u=e.indexOf("<");c.push({type:"text",content:-1===u?e:e.substring(0,u)});}return e.replace(r,function(r,s){if(m){if(r!=="</"+a.name+">")return;m=!1;}var u,f="/"!==r.charAt(1),h=r.startsWith("\x3c!--"),p=s+r.length,d=e.charAt(p);if(h){var v=n$1(r);return l<0?(c.push(v),c):((u=o[l]).children.push(v),c)}if(f&&(l++,"tag"===(a=n$1(r)).type&&t.components[a.name]&&(a.type="component",m=!0),a.voidElement||m||!d||"<"===d||a.children.push({type:"text",content:e.slice(p,e.indexOf("<",p))}),0===l&&c.push(a),(u=o[l-1])&&u.children.push(a),o[l]=a),(!f||a.voidElement)&&(l>-1&&(a.voidElement||a.name===r.slice(2,-1))&&(l--,a=-1===l?c:o[l]),!m&&"<"!==d&&d)){u=-1===l?c:o[l].children;var x=e.indexOf("<",p),g=e.slice(p,-1===x?void 0:x);i$1.test(g)&&(g=" "),(x>-1&&l+u.length>=0||" "!==g)&&u.push({type:"text",content:g});}}),c},stringify:function(e){return e.reduce(function(e,t){return e+a$1("",t)},"")}};
|
|
2548
2548
|
|
|
2549
2549
|
var classCallCheck = createCommonjsModule(function (module) {
|
|
2550
2550
|
function _classCallCheck(instance, Constructor) {
|
|
@@ -6408,6 +6408,19 @@ if (process.env.NODE_ENV === "development") {
|
|
|
6408
6408
|
c$1("Pelcro Store", usePelcro);
|
|
6409
6409
|
}
|
|
6410
6410
|
|
|
6411
|
+
/**
|
|
6412
|
+
* List of zero-decimal currencies.
|
|
6413
|
+
* @see https://stripe.com/docs/currencies#zero-decimal
|
|
6414
|
+
*
|
|
6415
|
+
*/
|
|
6416
|
+
|
|
6417
|
+
const ZERO_DECIMAL_CURRENCIES = ['BIF', 'CLP', 'DJF', 'GNF', 'JPY', 'KMF', 'KRW', 'MGA', 'PYG', 'RWF', 'UGX', 'VND', 'VUV', 'XAF', 'XOF', 'XPF'];
|
|
6418
|
+
/**
|
|
6419
|
+
* @param {string}
|
|
6420
|
+
* @return {boolean}
|
|
6421
|
+
*/
|
|
6422
|
+
|
|
6423
|
+
const isCurrencyZeroDecimal = currency => ZERO_DECIMAL_CURRENCIES.includes(currency);
|
|
6411
6424
|
const sortCountries = countries => {
|
|
6412
6425
|
const sortable = [];
|
|
6413
6426
|
delete countries.CA;
|
|
@@ -6494,7 +6507,7 @@ const getFormattedPriceByLocal = (amount, currency = "USD", locale = "en") => {
|
|
|
6494
6507
|
style: "currency",
|
|
6495
6508
|
currency
|
|
6496
6509
|
});
|
|
6497
|
-
return formatter.format(amount / 100);
|
|
6510
|
+
return isCurrencyZeroDecimal(currency) ? formatter.format(amount) : formatter.format(amount / 100);
|
|
6498
6511
|
};
|
|
6499
6512
|
/** check wether or not the user have any addresses
|
|
6500
6513
|
* @return {boolean} true if the user have at least one address, false otherwise
|
|
@@ -6511,7 +6524,7 @@ const calcAndFormatItemsTotal = (items, currency) => {
|
|
|
6511
6524
|
let totalWithoutDividingBy100 = 0;
|
|
6512
6525
|
|
|
6513
6526
|
for (const item of items) {
|
|
6514
|
-
totalWithoutDividingBy100 += parseFloat(item.price ? (item.price * item.quantity).toFixed(2) : item.amount.toFixed(2));
|
|
6527
|
+
totalWithoutDividingBy100 += parseFloat(item.price ? isCurrencyZeroDecimal(currency) ? item.price * item.quantity : (item.price * item.quantity).toFixed(2) : isCurrencyZeroDecimal(currency) ? item.amount : item.amount.toFixed(2));
|
|
6515
6528
|
}
|
|
6516
6529
|
|
|
6517
6530
|
return getFormattedPriceByLocal(totalWithoutDividingBy100, currency, getPageOrDefaultLanguage());
|
|
@@ -6591,7 +6604,7 @@ const disableScroll = () => {
|
|
|
6591
6604
|
}
|
|
6592
6605
|
};
|
|
6593
6606
|
const trackSubscriptionOnGA = () => {
|
|
6594
|
-
var
|
|
6607
|
+
var _window$Pelcro$user$r5, _window$Pelcro$user$r6, _ReactGA$set, _ReactGA$plugin, _ReactGA$plugin$execu, _ReactGA$plugin2, _ReactGA$plugin2$exec, _ReactGA$plugin3, _ReactGA$plugin3$exec, _ReactGA$event;
|
|
6595
6608
|
|
|
6596
6609
|
const {
|
|
6597
6610
|
product,
|
|
@@ -6612,13 +6625,14 @@ const trackSubscriptionOnGA = () => {
|
|
|
6612
6625
|
return;
|
|
6613
6626
|
}
|
|
6614
6627
|
|
|
6628
|
+
const currencyCode = (_window$Pelcro$user$r5 = (_window$Pelcro$user$r6 = window.Pelcro.user.read()) === null || _window$Pelcro$user$r6 === void 0 ? void 0 : _window$Pelcro$user$r6.currency) !== null && _window$Pelcro$user$r5 !== void 0 ? _window$Pelcro$user$r5 : plan.currency;
|
|
6615
6629
|
ReactGA === null || ReactGA === void 0 ? void 0 : (_ReactGA$set = ReactGA.set) === null || _ReactGA$set === void 0 ? void 0 : _ReactGA$set.call(ReactGA, {
|
|
6616
|
-
currencyCode:
|
|
6630
|
+
currencyCode: currencyCode
|
|
6617
6631
|
});
|
|
6618
6632
|
ReactGA === null || ReactGA === void 0 ? void 0 : (_ReactGA$plugin = ReactGA.plugin) === null || _ReactGA$plugin === void 0 ? void 0 : (_ReactGA$plugin$execu = _ReactGA$plugin.execute) === null || _ReactGA$plugin$execu === void 0 ? void 0 : _ReactGA$plugin$execu.call(_ReactGA$plugin, "ecommerce", "addTransaction", {
|
|
6619
6633
|
id: lastSubscriptionId,
|
|
6620
6634
|
affiliation: "Pelcro",
|
|
6621
|
-
revenue: plan !== null && plan !== void 0 && plan.amount ? plan.amount / 100 : 0,
|
|
6635
|
+
revenue: plan !== null && plan !== void 0 && plan.amount ? isCurrencyZeroDecimal(currencyCode) ? plan.amount : plan.amount / 100 : 0,
|
|
6622
6636
|
coupon: couponCode
|
|
6623
6637
|
});
|
|
6624
6638
|
ReactGA === null || ReactGA === void 0 ? void 0 : (_ReactGA$plugin2 = ReactGA.plugin) === null || _ReactGA$plugin2 === void 0 ? void 0 : (_ReactGA$plugin2$exec = _ReactGA$plugin2.execute) === null || _ReactGA$plugin2$exec === void 0 ? void 0 : _ReactGA$plugin2$exec.call(_ReactGA$plugin2, "ecommerce", "addItem", {
|
|
@@ -6626,7 +6640,7 @@ const trackSubscriptionOnGA = () => {
|
|
|
6626
6640
|
name: product.name,
|
|
6627
6641
|
category: product.description,
|
|
6628
6642
|
variant: plan.nickname,
|
|
6629
|
-
price: plan !== null && plan !== void 0 && plan.amount ? plan.amount / 100 : 0,
|
|
6643
|
+
price: plan !== null && plan !== void 0 && plan.amount ? isCurrencyZeroDecimal(currencyCode) ? plan.amount : plan.amount / 100 : 0,
|
|
6630
6644
|
quantity: 1
|
|
6631
6645
|
});
|
|
6632
6646
|
ReactGA === null || ReactGA === void 0 ? void 0 : (_ReactGA$plugin3 = ReactGA.plugin) === null || _ReactGA$plugin3 === void 0 ? void 0 : (_ReactGA$plugin3$exec = _ReactGA$plugin3.execute) === null || _ReactGA$plugin3$exec === void 0 ? void 0 : _ReactGA$plugin3$exec.call(_ReactGA$plugin3, "ecommerce", "send");
|
|
@@ -7064,7 +7078,7 @@ class SaveToMetadataButtonClass {
|
|
|
7064
7078
|
|
|
7065
7079
|
const saveToMetadataButton = new SaveToMetadataButtonClass();
|
|
7066
7080
|
|
|
7067
|
-
let e={data:""},t
|
|
7081
|
+
let e={data:""},t=t=>"undefined"!=typeof window?((t?t.querySelector("#_goober"):window._goober)||Object.assign((t||document.head).appendChild(document.createElement("style")),{innerHTML:" ",id:"_goober"})).firstChild:t||e,l=/(?:([\u0080-\uFFFF\w-%@]+) *:? *([^{;]+?);|([^;}{]*?) *{)|(})/g,a=/\/\*[^]*?\*\/|\s\s+|\n/g,n=(e,t)=>{let r,l="",a="",o="";for(let c in e){let s=e[c];"object"==typeof s?(r=t?t.replace(/([^,])+/g,e=>c.replace(/([^,])+/g,t=>/&/.test(t)?t.replace(/&/g,e):e?e+" "+t:t)):c,a+="@"==c[0]?"f"==c[1]?n(s,c):c+"{"+n(s,"k"==c[1]?"":t)+"}":n(s,r)):"@"==c[0]&&"i"==c[1]?l=c+" "+s+";":(c=c.replace(/[A-Z]/g,"-$&").toLowerCase(),o+=n.p?n.p(c,s):c+":"+s+";");}return o[0]?(r=t?t+"{"+o+"}":o,l+r+a):l+a},o={},c=e=>{let t="";for(let r in e)t+=r+("object"==typeof e[r]?c(e[r]):e[r]);return t},s=(e,t,r,s,i)=>{let p="object"==typeof e?c(e):e,u=o[p]||(o[p]=(e=>{let t=0,r=11;for(;t<e.length;)r=101*r+e.charCodeAt(t++)>>>0;return "go"+r})(p));if(!o[u]){let t="object"==typeof e?e:(e=>{let t,r=[{}];for(;t=l.exec(e.replace(a,""));)t[4]&&r.shift(),t[3]?r.unshift(r[0][t[3]]=r[0][t[3]]||{}):t[4]||(r[0][t[1]]=t[2]);return r[0]})(e);o[u]=n(i?{["@keyframes "+u]:t}:t,r?"":"."+u);}return ((e,t,r)=>{-1==t.data.indexOf(e)&&(t.data=r?e+t.data:t.data+e);})(o[u],t,s),u},i=(e,t,r)=>e.reduce((e,l,a)=>{let o=t[a];if(o&&o.call){let e=o(r),t=e&&e.props&&e.props.className||/^go/.test(e)&&e;o=t?"."+t:e&&"object"==typeof e?e.props?"":n(e,""):e;}return e+l+(null==o?"":o)},"");function p(e){let r=this||{},l=e.call?e(r.p):e;return s(l.unshift?l.raw?i(l,[].slice.call(arguments,1),r.p):l.reduce((e,t)=>t?Object.assign(e,t.call?t(r.p):t):e,{}):l,t(r.target),r.g,r.o,r.k)}let u,f,d;p.bind({g:1});let b=p.bind({k:1});function h(e,t,r,l){n.p=t,u=e,f=r,d=l;}function y(e,t){let r=this||{};return function(){let l=arguments;function a(n,o){let c=Object.assign({},n),s=c.className||a.className;r.p=Object.assign({theme:f&&f()},c),r.o=/ *go\d+/.test(s),c.className=p.apply(r,l)+(s?" "+s:""),t&&(c.ref=o);let i=c.as||e;return d&&i[0]&&d(c),u(i,c)}return t?t(a):a}}
|
|
7068
7082
|
|
|
7069
7083
|
function _extends$z() {
|
|
7070
7084
|
_extends$z = Object.assign || function (target) {
|
|
@@ -9817,6 +9831,9 @@ function ConfirmPassword({
|
|
|
9817
9831
|
store,
|
|
9818
9832
|
...otherProps
|
|
9819
9833
|
}) {
|
|
9834
|
+
const {
|
|
9835
|
+
t
|
|
9836
|
+
} = useTranslation("common");
|
|
9820
9837
|
const {
|
|
9821
9838
|
dispatch,
|
|
9822
9839
|
state: {
|
package/dist/pelcro.css
CHANGED
|
@@ -827,7 +827,7 @@ Add the correct display in Chrome and Safari.
|
|
|
827
827
|
}
|
|
828
828
|
|
|
829
829
|
.pelcro-root .pelcro-input-wrapper {
|
|
830
|
-
margin-bottom:
|
|
830
|
+
margin-bottom: 1.5rem;
|
|
831
831
|
width: 100%;
|
|
832
832
|
}
|
|
833
833
|
|
|
@@ -838,10 +838,11 @@ Add the correct display in Chrome and Safari.
|
|
|
838
838
|
}
|
|
839
839
|
|
|
840
840
|
.pelcro-root .pelcro-input-error {
|
|
841
|
-
height:
|
|
841
|
+
height: auto;
|
|
842
842
|
font-size: 0.875rem;
|
|
843
843
|
line-height: 1.25rem;
|
|
844
|
-
margin-top: 0.
|
|
844
|
+
margin-top: 0.125rem;
|
|
845
|
+
position: absolute;
|
|
845
846
|
--tw-text-opacity: 1;
|
|
846
847
|
color: rgba(180, 48, 43, var(--tw-text-opacity));
|
|
847
848
|
text-transform: none;
|