@pelcro/react-pelcro-js 4.0.0-alpha.36 → 4.0.0-alpha.38
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 +130 -100
- package/dist/index.esm.js +130 -100
- package/dist/pelcro.css +84 -72
- package/package.json +1 -1
package/dist/index.cjs.js
CHANGED
|
@@ -3998,7 +3998,8 @@ var labels$T = {
|
|
|
3998
3998
|
var buttons$g = {
|
|
3999
3999
|
next: "Next",
|
|
4000
4000
|
select: "Select",
|
|
4001
|
-
back: "Back"
|
|
4001
|
+
back: "Back",
|
|
4002
|
+
gift: "Gift"
|
|
4002
4003
|
};
|
|
4003
4004
|
var select_en = {
|
|
4004
4005
|
messages: messages$V,
|
|
@@ -4944,7 +4945,8 @@ var labels$y = {
|
|
|
4944
4945
|
var buttons$b = {
|
|
4945
4946
|
next: "Prochain",
|
|
4946
4947
|
select: "Choisir",
|
|
4947
|
-
back: "Retour"
|
|
4948
|
+
back: "Retour",
|
|
4949
|
+
gift: "cadeau"
|
|
4948
4950
|
};
|
|
4949
4951
|
var select_fr = {
|
|
4950
4952
|
messages: messages$B,
|
|
@@ -5945,7 +5947,8 @@ var labels$j = {
|
|
|
5945
5947
|
var buttons$6 = {
|
|
5946
5948
|
next: "다음",
|
|
5947
5949
|
select: "선택",
|
|
5948
|
-
back: "뒤로"
|
|
5950
|
+
back: "뒤로",
|
|
5951
|
+
gift: "선물"
|
|
5949
5952
|
};
|
|
5950
5953
|
var select_ko = {
|
|
5951
5954
|
messages: messages$k,
|
|
@@ -6767,7 +6770,8 @@ var labels$4 = {
|
|
|
6767
6770
|
var buttons$1 = {
|
|
6768
6771
|
next: "Siguiente",
|
|
6769
6772
|
select: "Seleccionar",
|
|
6770
|
-
back: "Volver"
|
|
6773
|
+
back: "Volver",
|
|
6774
|
+
gift: "regalo"
|
|
6771
6775
|
};
|
|
6772
6776
|
var select_es = {
|
|
6773
6777
|
messages: messages$3,
|
|
@@ -18911,7 +18915,8 @@ function SvgArrowThinLeft(props) {
|
|
|
18911
18915
|
|
|
18912
18916
|
const NextArrow = ({
|
|
18913
18917
|
onClick,
|
|
18914
|
-
className
|
|
18918
|
+
className,
|
|
18919
|
+
size = "normal"
|
|
18915
18920
|
}) => /*#__PURE__*/React__default['default'].createElement("button", {
|
|
18916
18921
|
className: `sm:plc-flex plc-hidden plc-text-gray-500 plc-w-11 plc-h-11 plc-items-center plc-justify-center plc-rounded-full plc-text-sm plc-absolute plc-top-1/2 plc--right-12 plc-transform plc--translate-y-1/2 hover:plc-text-gray-900 ${className}`,
|
|
18917
18922
|
onClick: onClick
|
|
@@ -18919,12 +18924,13 @@ const NextArrow = ({
|
|
|
18919
18924
|
stroke: "currentColor",
|
|
18920
18925
|
"aria-hidden": "true",
|
|
18921
18926
|
focusable: "false",
|
|
18922
|
-
className: "plc-h-7 plc-w-
|
|
18927
|
+
className: `${size === "normal" ? "plc-w-7 plc-h-7" : size === "small" ? "plc-w-4 plc-h-4" : "plc-w-9 plc-h-9"}`
|
|
18923
18928
|
}));
|
|
18924
18929
|
|
|
18925
18930
|
const PrevArrow = ({
|
|
18926
18931
|
onClick,
|
|
18927
|
-
className
|
|
18932
|
+
className,
|
|
18933
|
+
size = "normal"
|
|
18928
18934
|
}) => /*#__PURE__*/React__default['default'].createElement("button", {
|
|
18929
18935
|
className: `sm:plc-flex plc-hidden plc-text-gray-500 plc-w-11 plc-h-11 plc-items-center plc-justify-center plc-rounded-full plc-text-sm plc-absolute plc-top-1/2 plc--left-12 plc-transform plc--translate-y-1/2 hover:plc-text-gray-900 ${className}`,
|
|
18930
18936
|
onClick: onClick
|
|
@@ -18932,28 +18938,40 @@ const PrevArrow = ({
|
|
|
18932
18938
|
stroke: "currentColor",
|
|
18933
18939
|
"aria-hidden": "true",
|
|
18934
18940
|
focusable: "false",
|
|
18935
|
-
className: "plc-h-7 plc-w-
|
|
18941
|
+
className: `${size === "normal" ? "plc-w-7 plc-h-7" : size === "small" ? "plc-w-4 plc-h-4" : "plc-w-9 plc-h-9"}`
|
|
18936
18942
|
}));
|
|
18937
18943
|
|
|
18938
18944
|
function Carousel({
|
|
18939
18945
|
slidesToShow = 3,
|
|
18940
18946
|
slidesToScroll = 1,
|
|
18947
|
+
initialSlide = 0,
|
|
18948
|
+
dots = true,
|
|
18941
18949
|
slidesCount,
|
|
18950
|
+
arrowsSize = "normal",
|
|
18951
|
+
paddingSize = "small",
|
|
18942
18952
|
children,
|
|
18943
18953
|
...otherProps
|
|
18944
18954
|
}) {
|
|
18945
18955
|
const ref = React.useRef(null);
|
|
18956
|
+
React.useEffect(() => {
|
|
18957
|
+
ref.current.slickGoTo(initialSlide, true);
|
|
18958
|
+
}, [initialSlide]);
|
|
18946
18959
|
const settings = {
|
|
18947
18960
|
dots: true,
|
|
18948
18961
|
infinite: false,
|
|
18949
18962
|
speed: 200,
|
|
18950
18963
|
slidesToShow: slidesToShow,
|
|
18951
18964
|
slidesToScroll: slidesToScroll,
|
|
18952
|
-
nextArrow: /*#__PURE__*/React__default['default'].createElement(NextArrow,
|
|
18953
|
-
|
|
18954
|
-
|
|
18965
|
+
nextArrow: /*#__PURE__*/React__default['default'].createElement(NextArrow, {
|
|
18966
|
+
size: arrowsSize
|
|
18967
|
+
}),
|
|
18968
|
+
prevArrow: /*#__PURE__*/React__default['default'].createElement(PrevArrow, {
|
|
18969
|
+
size: arrowsSize
|
|
18970
|
+
}),
|
|
18971
|
+
initialSlide: initialSlide,
|
|
18972
|
+
dots: dots,
|
|
18955
18973
|
customPaging: i => /*#__PURE__*/React__default['default'].createElement("span", {
|
|
18956
|
-
className: "plc-w-3 plc-h-3 plc-rounded-full plc-transition-all plc-bg-gray-400 plc-inline-flex plc-cursor-pointer hover:plc-
|
|
18974
|
+
className: "plc-w-3 plc-h-3 plc-rounded-full plc-transition-all plc-bg-gray-400 plc-inline-flex plc-cursor-pointer hover:plc-bg-primary"
|
|
18957
18975
|
}),
|
|
18958
18976
|
responsive: [{
|
|
18959
18977
|
breakpoint: 1280,
|
|
@@ -18968,7 +18986,7 @@ function Carousel({
|
|
|
18968
18986
|
}]
|
|
18969
18987
|
};
|
|
18970
18988
|
return /*#__PURE__*/React__default['default'].createElement("div", {
|
|
18971
|
-
className:
|
|
18989
|
+
className: `carousel-wrapper plc-relative ${paddingSize === "small" ? "sm:plc-px-8 plc-px-0" : paddingSize === "medium" ? "sm:plc-px-10 plc-px-0" : "sm:plc-px-14 plc-px-0"}`
|
|
18972
18990
|
}, /*#__PURE__*/React__default['default'].createElement(Slider, Object.assign({
|
|
18973
18991
|
ref: ref
|
|
18974
18992
|
}, settings), children));
|
|
@@ -19225,7 +19243,7 @@ class SelectModal extends React.Component {
|
|
|
19225
19243
|
onClick: productButtonCallback,
|
|
19226
19244
|
"data-key": product.id,
|
|
19227
19245
|
id: "pelcro-select-product-back-button",
|
|
19228
|
-
className: `plc-w-full ${options !== null && options !== void 0 && options.emphasize ? "plc-bg-primary-700" : ""}`
|
|
19246
|
+
className: `plc-w-full plc-capitalize plc-border-2 plc-border-primary hover:plc-bg-white hover:plc-text-primary plc-transition-all focus:plc-outline-none ${options !== null && options !== void 0 && options.emphasize ? "plc-bg-primary-700" : ""}`
|
|
19229
19247
|
}, index === 0 && {
|
|
19230
19248
|
autoFocus: true
|
|
19231
19249
|
}), productButtonLabel)));
|
|
@@ -19246,38 +19264,83 @@ class SelectModal extends React.Component {
|
|
|
19246
19264
|
}, items);
|
|
19247
19265
|
});
|
|
19248
19266
|
|
|
19267
|
+
_defineProperty$3(this, "handleScrollLeft", () => {
|
|
19268
|
+
this.productsTabRef.current.scrollLeft -= 100; // Adjust the scroll value as needed
|
|
19269
|
+
});
|
|
19270
|
+
|
|
19271
|
+
_defineProperty$3(this, "handleScrollRight", () => {
|
|
19272
|
+
this.productsTabRef.current.scrollLeft += 100; // Adjust the scroll value as needed
|
|
19273
|
+
});
|
|
19274
|
+
|
|
19275
|
+
_defineProperty$3(this, "toggleProdDescExpanded", () => {
|
|
19276
|
+
this.setState({
|
|
19277
|
+
prodDescExpanded: !this.state.prodDescExpanded
|
|
19278
|
+
});
|
|
19279
|
+
});
|
|
19280
|
+
|
|
19249
19281
|
_defineProperty$3(this, "renderProductTabs", () => {
|
|
19250
|
-
const
|
|
19282
|
+
const {
|
|
19283
|
+
prodDescExpanded
|
|
19284
|
+
} = this.state;
|
|
19285
|
+
|
|
19286
|
+
const productButtonCallback = e => {
|
|
19287
|
+
this.setState({
|
|
19288
|
+
scrollToTab: false
|
|
19289
|
+
});
|
|
19290
|
+
this.selectProduct(e);
|
|
19291
|
+
};
|
|
19292
|
+
|
|
19251
19293
|
const {
|
|
19252
19294
|
image,
|
|
19253
19295
|
description
|
|
19254
19296
|
} = this.state.product;
|
|
19255
|
-
|
|
19256
|
-
|
|
19257
|
-
|
|
19258
|
-
|
|
19259
|
-
|
|
19260
|
-
|
|
19261
|
-
|
|
19262
|
-
|
|
19263
|
-
|
|
19264
|
-
|
|
19265
|
-
|
|
19297
|
+
const tabs = this.state.productList.map((product, index) => {
|
|
19298
|
+
if (product.id === this.state.product.id && this.state.scrollToTab) {
|
|
19299
|
+
this.setState(oldState => {
|
|
19300
|
+
if (+oldState.initialTabSlide !== +index) {
|
|
19301
|
+
return {
|
|
19302
|
+
initialTabSlide: index
|
|
19303
|
+
};
|
|
19304
|
+
}
|
|
19305
|
+
});
|
|
19306
|
+
}
|
|
19307
|
+
|
|
19308
|
+
return /*#__PURE__*/React__default['default'].createElement("div", {
|
|
19309
|
+
key: product.id
|
|
19266
19310
|
}, /*#__PURE__*/React__default['default'].createElement("button", {
|
|
19267
|
-
onClick: productButtonCallback,
|
|
19311
|
+
onClick: e => productButtonCallback(e),
|
|
19268
19312
|
"data-key": product.id,
|
|
19269
|
-
|
|
19313
|
+
"data-index": index,
|
|
19314
|
+
className: `plc-px-4 plc-py-2 focus:plc-outline-none plc-border-b-4 hover:plc-text-primary hover:plc-border-primary plc-transition-all plc-h-full plc-flex ${product.id === this.state.product.id ? "plc-border-primary plc-text-primary" : "plc-border-transparent plc-font-normal plc-text-gray-500"}`
|
|
19270
19315
|
}, product.name));
|
|
19271
|
-
})
|
|
19272
|
-
|
|
19316
|
+
});
|
|
19317
|
+
return /*#__PURE__*/React__default['default'].createElement("div", {
|
|
19318
|
+
className: "plc-flex plc-flex-col"
|
|
19319
|
+
}, /*#__PURE__*/React__default['default'].createElement("div", {
|
|
19320
|
+
className: "productTabs plc-relative plc-max-w-xl plc-mx-auto"
|
|
19321
|
+
}, /*#__PURE__*/React__default['default'].createElement(Carousel, {
|
|
19322
|
+
slidesCount: tabs.length,
|
|
19323
|
+
initialSlide: this.state.initialTabSlide,
|
|
19324
|
+
dots: false,
|
|
19325
|
+
arrowsSize: "small"
|
|
19326
|
+
}, tabs)), /*#__PURE__*/React__default['default'].createElement("div", {
|
|
19327
|
+
className: "selectedProduct plc-flex plc-flex-col plc-items-center plc-justify-center plc-max-w-3xl plc-mx-auto plc-mt-6"
|
|
19273
19328
|
}, image && /*#__PURE__*/React__default['default'].createElement("figure", {
|
|
19274
19329
|
className: "plc-mb-2"
|
|
19275
19330
|
}, /*#__PURE__*/React__default['default'].createElement("img", {
|
|
19276
19331
|
src: image,
|
|
19277
19332
|
alt: "Product Image"
|
|
19278
|
-
})), description && /*#__PURE__*/React__default['default'].createElement("
|
|
19279
|
-
className: "plc-text-center"
|
|
19280
|
-
},
|
|
19333
|
+
})), description && /*#__PURE__*/React__default['default'].createElement("div", {
|
|
19334
|
+
className: "plc-max-w-xl plc-text-center"
|
|
19335
|
+
}, /*#__PURE__*/React__default['default'].createElement("div", {
|
|
19336
|
+
className: `plc-overflow-x-hidden ${prodDescExpanded ? "plc-whitespace-normal" : "plc-whitespace-nowrap"}`
|
|
19337
|
+
}, prodDescExpanded ? /*#__PURE__*/React__default['default'].createElement("span", null, description, " ", /*#__PURE__*/React__default['default'].createElement("button", {
|
|
19338
|
+
onClick: this.toggleProdDescExpanded,
|
|
19339
|
+
className: "plc-text-primary plc-underline plc-cursor-pointer plc-outline-none focus:plc-outline-none hover:plc-no-underline"
|
|
19340
|
+
}, "Read less")) : /*#__PURE__*/React__default['default'].createElement("span", null, description.slice(0, 50), " ", /*#__PURE__*/React__default['default'].createElement("button", {
|
|
19341
|
+
onClick: this.toggleProdDescExpanded,
|
|
19342
|
+
className: "plc-text-primary plc-underline plc-cursor-pointer plc-outline-none focus:plc-outline-none hover:plc-no-underline"
|
|
19343
|
+
}, "Read more"))))));
|
|
19281
19344
|
});
|
|
19282
19345
|
|
|
19283
19346
|
_defineProperty$3(this, "renderMatchingProductsFirst", () => {
|
|
@@ -19305,22 +19368,19 @@ class SelectModal extends React.Component {
|
|
|
19305
19368
|
});
|
|
19306
19369
|
|
|
19307
19370
|
_defineProperty$3(this, "renderPlans", () => {
|
|
19371
|
+
const {
|
|
19372
|
+
disableGifting
|
|
19373
|
+
} = this.props;
|
|
19308
19374
|
const items = this.state.planList.map(plan => {
|
|
19309
|
-
var _this$state
|
|
19375
|
+
var _this$state;
|
|
19310
19376
|
|
|
19311
|
-
|
|
19377
|
+
this.state.plan.id === plan.id ? true : false;
|
|
19312
19378
|
return /*#__PURE__*/React__default['default'].createElement("div", {
|
|
19313
19379
|
key: plan.id,
|
|
19314
19380
|
className: `${((_this$state = this.state) === null || _this$state === void 0 ? void 0 : _this$state.plan.id) === plan.id ? "plc-border-2 plc-border-primary" : "plc-border plc-border-gray-300"} plc-h-full plc-flex plc-flex-col plc-items-start plc-text-gray-900 plc-border-solid plc-rounded-md plc-bg-white pelcro-select-plan-wrapper`
|
|
19315
|
-
}, /*#__PURE__*/React__default['default'].createElement(
|
|
19316
|
-
|
|
19317
|
-
|
|
19318
|
-
labelClassName: "plc-cursor-pointer plc-w-full plc-h-full plc-m-0 plc-flex-1 plc-flex plc-flex-col",
|
|
19319
|
-
id: `pelcro-select-plan-${plan.id}`,
|
|
19320
|
-
name: "plan",
|
|
19321
|
-
checked: isChecked,
|
|
19322
|
-
"data-key": plan.id,
|
|
19323
|
-
onChange: this.selectPlan
|
|
19381
|
+
}, /*#__PURE__*/React__default['default'].createElement("div", {
|
|
19382
|
+
className: "plc-w-full plc-flex plc-flex-col plc-h-full",
|
|
19383
|
+
id: `pelcro-select-plan-${plan.id}`
|
|
19324
19384
|
}, /*#__PURE__*/React__default['default'].createElement("div", {
|
|
19325
19385
|
className: "plc-p-4 plc-text-center plc-flex plc-flex-col plc-justify-center plc-items-center plc-w-full"
|
|
19326
19386
|
}, /*#__PURE__*/React__default['default'].createElement("h4", {
|
|
@@ -19340,8 +19400,16 @@ class SelectModal extends React.Component {
|
|
|
19340
19400
|
}, plan.currency), /*#__PURE__*/React__default['default'].createElement("span", {
|
|
19341
19401
|
className: "plc-capitalize"
|
|
19342
19402
|
}, "/ ", plan.interval))), /*#__PURE__*/React__default['default'].createElement("div", {
|
|
19343
|
-
className:
|
|
19344
|
-
},
|
|
19403
|
+
className: `plc-grid ${disableGifting ? "plc-grid-cols-1" : "plc-grid-cols-2 plc-gap-2"}`
|
|
19404
|
+
}, /*#__PURE__*/React__default['default'].createElement("button", {
|
|
19405
|
+
className: `plc-flex plc-items-center plc-justify-center plc-text-center plc-py-2 plc-px-4 plc-w-full plc-border-2 plc-rounded-md plc-border-primary focus:plc-outline-none plc-text-white plc-bg-primary hover:plc-bg-white hover:plc-text-primary plc-transition-all`,
|
|
19406
|
+
"data-key": plan.id,
|
|
19407
|
+
onClick: e => this.selectPlan(e, false)
|
|
19408
|
+
}, this.locale("buttons.select")), !disableGifting && /*#__PURE__*/React__default['default'].createElement("button", {
|
|
19409
|
+
className: `plc-flex plc-items-center plc-justify-center plc-text-center plc-py-2 plc-px-4 plc-w-full plc-border-2 plc-rounded-md plc-border-primary focus:plc-outline-none plc-text-primary plc-bg-white hover:plc-bg-primary hover:plc-text-white plc-transition-all`,
|
|
19410
|
+
"data-key": plan.id,
|
|
19411
|
+
onClick: e => this.selectPlan(e, true)
|
|
19412
|
+
}, this.locale("buttons.gift"))))));
|
|
19345
19413
|
});
|
|
19346
19414
|
return /*#__PURE__*/React__default['default'].createElement(Carousel, {
|
|
19347
19415
|
slidesCount: items.length
|
|
@@ -19375,39 +19443,30 @@ class SelectModal extends React.Component {
|
|
|
19375
19443
|
}
|
|
19376
19444
|
});
|
|
19377
19445
|
|
|
19378
|
-
_defineProperty$3(this, "selectPlan", e => {
|
|
19446
|
+
_defineProperty$3(this, "selectPlan", (e, isGift) => {
|
|
19379
19447
|
const id = e.target.dataset.key;
|
|
19380
19448
|
|
|
19381
19449
|
for (const plan of this.state.planList) {
|
|
19382
19450
|
if (+plan.id === +id) {
|
|
19383
|
-
plan.isCheked = true;
|
|
19384
|
-
this.setState({
|
|
19385
|
-
plan: plan
|
|
19386
|
-
});
|
|
19387
19451
|
this.setState({
|
|
19388
|
-
|
|
19452
|
+
plan: plan,
|
|
19453
|
+
isGift: isGift
|
|
19389
19454
|
});
|
|
19390
|
-
|
|
19391
|
-
|
|
19455
|
+
this.props.setProductAndPlan(this.state.product, plan, isGift);
|
|
19456
|
+
this.submitOption(this.state.product, isGift);
|
|
19392
19457
|
}
|
|
19393
19458
|
}
|
|
19394
19459
|
});
|
|
19395
19460
|
|
|
19396
19461
|
_defineProperty$3(this, "goBack", () => {
|
|
19397
19462
|
this.setState({
|
|
19398
|
-
disabled: true
|
|
19399
|
-
|
|
19400
|
-
|
|
19401
|
-
mode: "product"
|
|
19463
|
+
disabled: true,
|
|
19464
|
+
mode: "product",
|
|
19465
|
+
scrollToTab: true
|
|
19402
19466
|
});
|
|
19403
19467
|
});
|
|
19404
19468
|
|
|
19405
|
-
_defineProperty$3(this, "submitOption", () => {
|
|
19406
|
-
this.props.setProductAndPlan(this.state.product, this.state.plan, this.state.isGift);
|
|
19407
|
-
const {
|
|
19408
|
-
product,
|
|
19409
|
-
isGift
|
|
19410
|
-
} = this.state;
|
|
19469
|
+
_defineProperty$3(this, "submitOption", (product, isGift) => {
|
|
19411
19470
|
const {
|
|
19412
19471
|
setView
|
|
19413
19472
|
} = this.props;
|
|
@@ -19442,31 +19501,20 @@ class SelectModal extends React.Component {
|
|
|
19442
19501
|
isGift: props.isGift,
|
|
19443
19502
|
disabled: true,
|
|
19444
19503
|
mode: "product",
|
|
19504
|
+
initialTabSlide: 0,
|
|
19505
|
+
scrollToTab: true,
|
|
19506
|
+
prodDescExpanded: false,
|
|
19445
19507
|
productList: props.matchingEntitlements ? window.Pelcro.product.getByEntitlements(props.matchingEntitlements) : window.Pelcro.product.list()
|
|
19446
19508
|
};
|
|
19447
19509
|
this.product = this.props.product || window.Pelcro.paywall.getProduct();
|
|
19448
19510
|
this.locale = this.props.t;
|
|
19449
19511
|
this.closeButton = window.Pelcro.paywall.displayCloseButton();
|
|
19450
|
-
|
|
19451
|
-
|
|
19452
|
-
componentDidUpdate(prevProps, prevState) {
|
|
19453
|
-
//Scroll to active tab
|
|
19454
|
-
const activeElement = document.getElementById("activeTab");
|
|
19455
|
-
|
|
19456
|
-
if (activeElement) {
|
|
19457
|
-
activeElement.parentNode.scrollLeft = activeElement.offsetLeft - 80;
|
|
19458
|
-
} else {
|
|
19459
|
-
console.log(document.getElementById("activeTab"));
|
|
19460
|
-
}
|
|
19512
|
+
this.productsTabRef = /*#__PURE__*/React__default['default'].createRef();
|
|
19461
19513
|
}
|
|
19462
19514
|
|
|
19463
19515
|
render() {
|
|
19464
19516
|
var _window$Pelcro$produc2, _window$Pelcro$produc3, _window$Pelcro$site$r;
|
|
19465
19517
|
|
|
19466
|
-
const {
|
|
19467
|
-
disableGifting
|
|
19468
|
-
} = this.props;
|
|
19469
|
-
|
|
19470
19518
|
if (this.state.mode === "product") {
|
|
19471
19519
|
var _ReactGA$event;
|
|
19472
19520
|
|
|
@@ -19502,27 +19550,9 @@ class SelectModal extends React.Component {
|
|
|
19502
19550
|
id: "pelcro-selection-view"
|
|
19503
19551
|
}, /*#__PURE__*/React__default['default'].createElement("div", {
|
|
19504
19552
|
className: "pelcro-select-products-wrapper"
|
|
19505
|
-
}, (_window$Pelcro$site$r = window.Pelcro.site.read()) !== null && _window$Pelcro$site$r !== void 0 && _window$Pelcro$site$r.restrictive_paywall_metatags_enabled ? this.renderMatchingProductsFirst() : this.renderProducts()), this.state.mode === "plan" && /*#__PURE__*/React__default['default'].createElement(
|
|
19553
|
+
}, (_window$Pelcro$site$r = window.Pelcro.site.read()) !== null && _window$Pelcro$site$r !== void 0 && _window$Pelcro$site$r.restrictive_paywall_metatags_enabled ? this.renderMatchingProductsFirst() : this.renderProducts()), this.state.mode === "plan" && /*#__PURE__*/React__default['default'].createElement("div", {
|
|
19506
19554
|
className: "pelcro-select-plans-wrapper plc-mt-4"
|
|
19507
|
-
}, this.renderPlans()),
|
|
19508
|
-
className: "plc-flex plc-justify-center plc-mt-4"
|
|
19509
|
-
}, /*#__PURE__*/React__default['default'].createElement(Checkbox, {
|
|
19510
|
-
onChange: this.onIsGiftChange,
|
|
19511
|
-
checked: this.state.isGift,
|
|
19512
|
-
id: "pelcro-input-is-gift"
|
|
19513
|
-
}, this.locale("messages.checkbox"))), /*#__PURE__*/React__default['default'].createElement(Button, {
|
|
19514
|
-
disabled: this.state.disabled,
|
|
19515
|
-
onClick: this.submitOption,
|
|
19516
|
-
id: "pelcro-submit",
|
|
19517
|
-
className: "plc-mt-2 plc-w-full plc-max-w-sm plc-ml-auto plc-mr-auto plc-block"
|
|
19518
|
-
}, this.locale("buttons.next"))))), /*#__PURE__*/React__default['default'].createElement(ModalFooter, null, !window.Pelcro.user.isAuthenticated() && /*#__PURE__*/React__default['default'].createElement("p", {
|
|
19519
|
-
className: "plc-mb-9"
|
|
19520
|
-
}, /*#__PURE__*/React__default['default'].createElement("span", {
|
|
19521
|
-
className: "plc-font-medium"
|
|
19522
|
-
}, this.locale("messages.alreadyHaveAccount") + " "), /*#__PURE__*/React__default['default'].createElement(Link, {
|
|
19523
|
-
id: "pelcro-link-login",
|
|
19524
|
-
onClick: this.displayLoginView
|
|
19525
|
-
}, this.locale("messages.loginHere")))));
|
|
19555
|
+
}, this.renderPlans()))), /*#__PURE__*/React__default['default'].createElement(ModalFooter, null));
|
|
19526
19556
|
}
|
|
19527
19557
|
|
|
19528
19558
|
}
|
|
@@ -23975,7 +24005,7 @@ const PaypalSubscribeButton = props => {
|
|
|
23975
24005
|
var _ref, _ref2, _state$updatedPrice, _props$plan, _props$selectedAddres;
|
|
23976
24006
|
|
|
23977
24007
|
// sometimes, price is updated. eg. Coupon codes.
|
|
23978
|
-
const updatedPrice = (_ref = (_ref2 = (_state$updatedPrice = state.updatedPrice) !== null && _state$updatedPrice !== void 0 ? _state$updatedPrice : (_props$plan = props.plan) === null || _props$plan === void 0 ? void 0 : _props$plan.amount) !== null && _ref2 !== void 0 ? _ref2 : plan === null || plan === void 0 ? void 0 : plan.amount) !== null && _ref !== void 0 ? _ref : invoice.amount_remaining;
|
|
24008
|
+
const updatedPrice = (_ref = (_ref2 = (_state$updatedPrice = state.updatedPrice) !== null && _state$updatedPrice !== void 0 ? _state$updatedPrice : (_props$plan = props.plan) === null || _props$plan === void 0 ? void 0 : _props$plan.amount) !== null && _ref2 !== void 0 ? _ref2 : plan === null || plan === void 0 ? void 0 : plan.amount) !== null && _ref !== void 0 ? _ref : invoice === null || invoice === void 0 ? void 0 : invoice.amount_remaining;
|
|
23979
24009
|
const selectedAddress = getAddressById((_props$selectedAddres = props.selectedAddressId) !== null && _props$selectedAddres !== void 0 ? _props$selectedAddres : selectedAddressId); // initialize paypal client, then render paypal button.
|
|
23980
24010
|
|
|
23981
24011
|
const initializePaypal = async () => {
|
package/dist/index.esm.js
CHANGED
|
@@ -3968,7 +3968,8 @@ var labels$T = {
|
|
|
3968
3968
|
var buttons$g = {
|
|
3969
3969
|
next: "Next",
|
|
3970
3970
|
select: "Select",
|
|
3971
|
-
back: "Back"
|
|
3971
|
+
back: "Back",
|
|
3972
|
+
gift: "Gift"
|
|
3972
3973
|
};
|
|
3973
3974
|
var select_en = {
|
|
3974
3975
|
messages: messages$V,
|
|
@@ -4914,7 +4915,8 @@ var labels$y = {
|
|
|
4914
4915
|
var buttons$b = {
|
|
4915
4916
|
next: "Prochain",
|
|
4916
4917
|
select: "Choisir",
|
|
4917
|
-
back: "Retour"
|
|
4918
|
+
back: "Retour",
|
|
4919
|
+
gift: "cadeau"
|
|
4918
4920
|
};
|
|
4919
4921
|
var select_fr = {
|
|
4920
4922
|
messages: messages$B,
|
|
@@ -5915,7 +5917,8 @@ var labels$j = {
|
|
|
5915
5917
|
var buttons$6 = {
|
|
5916
5918
|
next: "다음",
|
|
5917
5919
|
select: "선택",
|
|
5918
|
-
back: "뒤로"
|
|
5920
|
+
back: "뒤로",
|
|
5921
|
+
gift: "선물"
|
|
5919
5922
|
};
|
|
5920
5923
|
var select_ko = {
|
|
5921
5924
|
messages: messages$k,
|
|
@@ -6737,7 +6740,8 @@ var labels$4 = {
|
|
|
6737
6740
|
var buttons$1 = {
|
|
6738
6741
|
next: "Siguiente",
|
|
6739
6742
|
select: "Seleccionar",
|
|
6740
|
-
back: "Volver"
|
|
6743
|
+
back: "Volver",
|
|
6744
|
+
gift: "regalo"
|
|
6741
6745
|
};
|
|
6742
6746
|
var select_es = {
|
|
6743
6747
|
messages: messages$3,
|
|
@@ -18881,7 +18885,8 @@ function SvgArrowThinLeft(props) {
|
|
|
18881
18885
|
|
|
18882
18886
|
const NextArrow = ({
|
|
18883
18887
|
onClick,
|
|
18884
|
-
className
|
|
18888
|
+
className,
|
|
18889
|
+
size = "normal"
|
|
18885
18890
|
}) => /*#__PURE__*/React__default.createElement("button", {
|
|
18886
18891
|
className: `sm:plc-flex plc-hidden plc-text-gray-500 plc-w-11 plc-h-11 plc-items-center plc-justify-center plc-rounded-full plc-text-sm plc-absolute plc-top-1/2 plc--right-12 plc-transform plc--translate-y-1/2 hover:plc-text-gray-900 ${className}`,
|
|
18887
18892
|
onClick: onClick
|
|
@@ -18889,12 +18894,13 @@ const NextArrow = ({
|
|
|
18889
18894
|
stroke: "currentColor",
|
|
18890
18895
|
"aria-hidden": "true",
|
|
18891
18896
|
focusable: "false",
|
|
18892
|
-
className: "plc-h-7 plc-w-
|
|
18897
|
+
className: `${size === "normal" ? "plc-w-7 plc-h-7" : size === "small" ? "plc-w-4 plc-h-4" : "plc-w-9 plc-h-9"}`
|
|
18893
18898
|
}));
|
|
18894
18899
|
|
|
18895
18900
|
const PrevArrow = ({
|
|
18896
18901
|
onClick,
|
|
18897
|
-
className
|
|
18902
|
+
className,
|
|
18903
|
+
size = "normal"
|
|
18898
18904
|
}) => /*#__PURE__*/React__default.createElement("button", {
|
|
18899
18905
|
className: `sm:plc-flex plc-hidden plc-text-gray-500 plc-w-11 plc-h-11 plc-items-center plc-justify-center plc-rounded-full plc-text-sm plc-absolute plc-top-1/2 plc--left-12 plc-transform plc--translate-y-1/2 hover:plc-text-gray-900 ${className}`,
|
|
18900
18906
|
onClick: onClick
|
|
@@ -18902,28 +18908,40 @@ const PrevArrow = ({
|
|
|
18902
18908
|
stroke: "currentColor",
|
|
18903
18909
|
"aria-hidden": "true",
|
|
18904
18910
|
focusable: "false",
|
|
18905
|
-
className: "plc-h-7 plc-w-
|
|
18911
|
+
className: `${size === "normal" ? "plc-w-7 plc-h-7" : size === "small" ? "plc-w-4 plc-h-4" : "plc-w-9 plc-h-9"}`
|
|
18906
18912
|
}));
|
|
18907
18913
|
|
|
18908
18914
|
function Carousel({
|
|
18909
18915
|
slidesToShow = 3,
|
|
18910
18916
|
slidesToScroll = 1,
|
|
18917
|
+
initialSlide = 0,
|
|
18918
|
+
dots = true,
|
|
18911
18919
|
slidesCount,
|
|
18920
|
+
arrowsSize = "normal",
|
|
18921
|
+
paddingSize = "small",
|
|
18912
18922
|
children,
|
|
18913
18923
|
...otherProps
|
|
18914
18924
|
}) {
|
|
18915
18925
|
const ref = useRef(null);
|
|
18926
|
+
useEffect(() => {
|
|
18927
|
+
ref.current.slickGoTo(initialSlide, true);
|
|
18928
|
+
}, [initialSlide]);
|
|
18916
18929
|
const settings = {
|
|
18917
18930
|
dots: true,
|
|
18918
18931
|
infinite: false,
|
|
18919
18932
|
speed: 200,
|
|
18920
18933
|
slidesToShow: slidesToShow,
|
|
18921
18934
|
slidesToScroll: slidesToScroll,
|
|
18922
|
-
nextArrow: /*#__PURE__*/React__default.createElement(NextArrow,
|
|
18923
|
-
|
|
18924
|
-
|
|
18935
|
+
nextArrow: /*#__PURE__*/React__default.createElement(NextArrow, {
|
|
18936
|
+
size: arrowsSize
|
|
18937
|
+
}),
|
|
18938
|
+
prevArrow: /*#__PURE__*/React__default.createElement(PrevArrow, {
|
|
18939
|
+
size: arrowsSize
|
|
18940
|
+
}),
|
|
18941
|
+
initialSlide: initialSlide,
|
|
18942
|
+
dots: dots,
|
|
18925
18943
|
customPaging: i => /*#__PURE__*/React__default.createElement("span", {
|
|
18926
|
-
className: "plc-w-3 plc-h-3 plc-rounded-full plc-transition-all plc-bg-gray-400 plc-inline-flex plc-cursor-pointer hover:plc-
|
|
18944
|
+
className: "plc-w-3 plc-h-3 plc-rounded-full plc-transition-all plc-bg-gray-400 plc-inline-flex plc-cursor-pointer hover:plc-bg-primary"
|
|
18927
18945
|
}),
|
|
18928
18946
|
responsive: [{
|
|
18929
18947
|
breakpoint: 1280,
|
|
@@ -18938,7 +18956,7 @@ function Carousel({
|
|
|
18938
18956
|
}]
|
|
18939
18957
|
};
|
|
18940
18958
|
return /*#__PURE__*/React__default.createElement("div", {
|
|
18941
|
-
className:
|
|
18959
|
+
className: `carousel-wrapper plc-relative ${paddingSize === "small" ? "sm:plc-px-8 plc-px-0" : paddingSize === "medium" ? "sm:plc-px-10 plc-px-0" : "sm:plc-px-14 plc-px-0"}`
|
|
18942
18960
|
}, /*#__PURE__*/React__default.createElement(Slider, Object.assign({
|
|
18943
18961
|
ref: ref
|
|
18944
18962
|
}, settings), children));
|
|
@@ -19195,7 +19213,7 @@ class SelectModal extends Component {
|
|
|
19195
19213
|
onClick: productButtonCallback,
|
|
19196
19214
|
"data-key": product.id,
|
|
19197
19215
|
id: "pelcro-select-product-back-button",
|
|
19198
|
-
className: `plc-w-full ${options !== null && options !== void 0 && options.emphasize ? "plc-bg-primary-700" : ""}`
|
|
19216
|
+
className: `plc-w-full plc-capitalize plc-border-2 plc-border-primary hover:plc-bg-white hover:plc-text-primary plc-transition-all focus:plc-outline-none ${options !== null && options !== void 0 && options.emphasize ? "plc-bg-primary-700" : ""}`
|
|
19199
19217
|
}, index === 0 && {
|
|
19200
19218
|
autoFocus: true
|
|
19201
19219
|
}), productButtonLabel)));
|
|
@@ -19216,38 +19234,83 @@ class SelectModal extends Component {
|
|
|
19216
19234
|
}, items);
|
|
19217
19235
|
});
|
|
19218
19236
|
|
|
19237
|
+
_defineProperty$3(this, "handleScrollLeft", () => {
|
|
19238
|
+
this.productsTabRef.current.scrollLeft -= 100; // Adjust the scroll value as needed
|
|
19239
|
+
});
|
|
19240
|
+
|
|
19241
|
+
_defineProperty$3(this, "handleScrollRight", () => {
|
|
19242
|
+
this.productsTabRef.current.scrollLeft += 100; // Adjust the scroll value as needed
|
|
19243
|
+
});
|
|
19244
|
+
|
|
19245
|
+
_defineProperty$3(this, "toggleProdDescExpanded", () => {
|
|
19246
|
+
this.setState({
|
|
19247
|
+
prodDescExpanded: !this.state.prodDescExpanded
|
|
19248
|
+
});
|
|
19249
|
+
});
|
|
19250
|
+
|
|
19219
19251
|
_defineProperty$3(this, "renderProductTabs", () => {
|
|
19220
|
-
const
|
|
19252
|
+
const {
|
|
19253
|
+
prodDescExpanded
|
|
19254
|
+
} = this.state;
|
|
19255
|
+
|
|
19256
|
+
const productButtonCallback = e => {
|
|
19257
|
+
this.setState({
|
|
19258
|
+
scrollToTab: false
|
|
19259
|
+
});
|
|
19260
|
+
this.selectProduct(e);
|
|
19261
|
+
};
|
|
19262
|
+
|
|
19221
19263
|
const {
|
|
19222
19264
|
image,
|
|
19223
19265
|
description
|
|
19224
19266
|
} = this.state.product;
|
|
19225
|
-
|
|
19226
|
-
|
|
19227
|
-
|
|
19228
|
-
|
|
19229
|
-
|
|
19230
|
-
|
|
19231
|
-
|
|
19232
|
-
|
|
19233
|
-
|
|
19234
|
-
|
|
19235
|
-
|
|
19267
|
+
const tabs = this.state.productList.map((product, index) => {
|
|
19268
|
+
if (product.id === this.state.product.id && this.state.scrollToTab) {
|
|
19269
|
+
this.setState(oldState => {
|
|
19270
|
+
if (+oldState.initialTabSlide !== +index) {
|
|
19271
|
+
return {
|
|
19272
|
+
initialTabSlide: index
|
|
19273
|
+
};
|
|
19274
|
+
}
|
|
19275
|
+
});
|
|
19276
|
+
}
|
|
19277
|
+
|
|
19278
|
+
return /*#__PURE__*/React__default.createElement("div", {
|
|
19279
|
+
key: product.id
|
|
19236
19280
|
}, /*#__PURE__*/React__default.createElement("button", {
|
|
19237
|
-
onClick: productButtonCallback,
|
|
19281
|
+
onClick: e => productButtonCallback(e),
|
|
19238
19282
|
"data-key": product.id,
|
|
19239
|
-
|
|
19283
|
+
"data-index": index,
|
|
19284
|
+
className: `plc-px-4 plc-py-2 focus:plc-outline-none plc-border-b-4 hover:plc-text-primary hover:plc-border-primary plc-transition-all plc-h-full plc-flex ${product.id === this.state.product.id ? "plc-border-primary plc-text-primary" : "plc-border-transparent plc-font-normal plc-text-gray-500"}`
|
|
19240
19285
|
}, product.name));
|
|
19241
|
-
})
|
|
19242
|
-
|
|
19286
|
+
});
|
|
19287
|
+
return /*#__PURE__*/React__default.createElement("div", {
|
|
19288
|
+
className: "plc-flex plc-flex-col"
|
|
19289
|
+
}, /*#__PURE__*/React__default.createElement("div", {
|
|
19290
|
+
className: "productTabs plc-relative plc-max-w-xl plc-mx-auto"
|
|
19291
|
+
}, /*#__PURE__*/React__default.createElement(Carousel, {
|
|
19292
|
+
slidesCount: tabs.length,
|
|
19293
|
+
initialSlide: this.state.initialTabSlide,
|
|
19294
|
+
dots: false,
|
|
19295
|
+
arrowsSize: "small"
|
|
19296
|
+
}, tabs)), /*#__PURE__*/React__default.createElement("div", {
|
|
19297
|
+
className: "selectedProduct plc-flex plc-flex-col plc-items-center plc-justify-center plc-max-w-3xl plc-mx-auto plc-mt-6"
|
|
19243
19298
|
}, image && /*#__PURE__*/React__default.createElement("figure", {
|
|
19244
19299
|
className: "plc-mb-2"
|
|
19245
19300
|
}, /*#__PURE__*/React__default.createElement("img", {
|
|
19246
19301
|
src: image,
|
|
19247
19302
|
alt: "Product Image"
|
|
19248
|
-
})), description && /*#__PURE__*/React__default.createElement("
|
|
19249
|
-
className: "plc-text-center"
|
|
19250
|
-
},
|
|
19303
|
+
})), description && /*#__PURE__*/React__default.createElement("div", {
|
|
19304
|
+
className: "plc-max-w-xl plc-text-center"
|
|
19305
|
+
}, /*#__PURE__*/React__default.createElement("div", {
|
|
19306
|
+
className: `plc-overflow-x-hidden ${prodDescExpanded ? "plc-whitespace-normal" : "plc-whitespace-nowrap"}`
|
|
19307
|
+
}, prodDescExpanded ? /*#__PURE__*/React__default.createElement("span", null, description, " ", /*#__PURE__*/React__default.createElement("button", {
|
|
19308
|
+
onClick: this.toggleProdDescExpanded,
|
|
19309
|
+
className: "plc-text-primary plc-underline plc-cursor-pointer plc-outline-none focus:plc-outline-none hover:plc-no-underline"
|
|
19310
|
+
}, "Read less")) : /*#__PURE__*/React__default.createElement("span", null, description.slice(0, 50), " ", /*#__PURE__*/React__default.createElement("button", {
|
|
19311
|
+
onClick: this.toggleProdDescExpanded,
|
|
19312
|
+
className: "plc-text-primary plc-underline plc-cursor-pointer plc-outline-none focus:plc-outline-none hover:plc-no-underline"
|
|
19313
|
+
}, "Read more"))))));
|
|
19251
19314
|
});
|
|
19252
19315
|
|
|
19253
19316
|
_defineProperty$3(this, "renderMatchingProductsFirst", () => {
|
|
@@ -19275,22 +19338,19 @@ class SelectModal extends Component {
|
|
|
19275
19338
|
});
|
|
19276
19339
|
|
|
19277
19340
|
_defineProperty$3(this, "renderPlans", () => {
|
|
19341
|
+
const {
|
|
19342
|
+
disableGifting
|
|
19343
|
+
} = this.props;
|
|
19278
19344
|
const items = this.state.planList.map(plan => {
|
|
19279
|
-
var _this$state
|
|
19345
|
+
var _this$state;
|
|
19280
19346
|
|
|
19281
|
-
|
|
19347
|
+
this.state.plan.id === plan.id ? true : false;
|
|
19282
19348
|
return /*#__PURE__*/React__default.createElement("div", {
|
|
19283
19349
|
key: plan.id,
|
|
19284
19350
|
className: `${((_this$state = this.state) === null || _this$state === void 0 ? void 0 : _this$state.plan.id) === plan.id ? "plc-border-2 plc-border-primary" : "plc-border plc-border-gray-300"} plc-h-full plc-flex plc-flex-col plc-items-start plc-text-gray-900 plc-border-solid plc-rounded-md plc-bg-white pelcro-select-plan-wrapper`
|
|
19285
|
-
}, /*#__PURE__*/React__default.createElement(
|
|
19286
|
-
|
|
19287
|
-
|
|
19288
|
-
labelClassName: "plc-cursor-pointer plc-w-full plc-h-full plc-m-0 plc-flex-1 plc-flex plc-flex-col",
|
|
19289
|
-
id: `pelcro-select-plan-${plan.id}`,
|
|
19290
|
-
name: "plan",
|
|
19291
|
-
checked: isChecked,
|
|
19292
|
-
"data-key": plan.id,
|
|
19293
|
-
onChange: this.selectPlan
|
|
19351
|
+
}, /*#__PURE__*/React__default.createElement("div", {
|
|
19352
|
+
className: "plc-w-full plc-flex plc-flex-col plc-h-full",
|
|
19353
|
+
id: `pelcro-select-plan-${plan.id}`
|
|
19294
19354
|
}, /*#__PURE__*/React__default.createElement("div", {
|
|
19295
19355
|
className: "plc-p-4 plc-text-center plc-flex plc-flex-col plc-justify-center plc-items-center plc-w-full"
|
|
19296
19356
|
}, /*#__PURE__*/React__default.createElement("h4", {
|
|
@@ -19310,8 +19370,16 @@ class SelectModal extends Component {
|
|
|
19310
19370
|
}, plan.currency), /*#__PURE__*/React__default.createElement("span", {
|
|
19311
19371
|
className: "plc-capitalize"
|
|
19312
19372
|
}, "/ ", plan.interval))), /*#__PURE__*/React__default.createElement("div", {
|
|
19313
|
-
className:
|
|
19314
|
-
},
|
|
19373
|
+
className: `plc-grid ${disableGifting ? "plc-grid-cols-1" : "plc-grid-cols-2 plc-gap-2"}`
|
|
19374
|
+
}, /*#__PURE__*/React__default.createElement("button", {
|
|
19375
|
+
className: `plc-flex plc-items-center plc-justify-center plc-text-center plc-py-2 plc-px-4 plc-w-full plc-border-2 plc-rounded-md plc-border-primary focus:plc-outline-none plc-text-white plc-bg-primary hover:plc-bg-white hover:plc-text-primary plc-transition-all`,
|
|
19376
|
+
"data-key": plan.id,
|
|
19377
|
+
onClick: e => this.selectPlan(e, false)
|
|
19378
|
+
}, this.locale("buttons.select")), !disableGifting && /*#__PURE__*/React__default.createElement("button", {
|
|
19379
|
+
className: `plc-flex plc-items-center plc-justify-center plc-text-center plc-py-2 plc-px-4 plc-w-full plc-border-2 plc-rounded-md plc-border-primary focus:plc-outline-none plc-text-primary plc-bg-white hover:plc-bg-primary hover:plc-text-white plc-transition-all`,
|
|
19380
|
+
"data-key": plan.id,
|
|
19381
|
+
onClick: e => this.selectPlan(e, true)
|
|
19382
|
+
}, this.locale("buttons.gift"))))));
|
|
19315
19383
|
});
|
|
19316
19384
|
return /*#__PURE__*/React__default.createElement(Carousel, {
|
|
19317
19385
|
slidesCount: items.length
|
|
@@ -19345,39 +19413,30 @@ class SelectModal extends Component {
|
|
|
19345
19413
|
}
|
|
19346
19414
|
});
|
|
19347
19415
|
|
|
19348
|
-
_defineProperty$3(this, "selectPlan", e => {
|
|
19416
|
+
_defineProperty$3(this, "selectPlan", (e, isGift) => {
|
|
19349
19417
|
const id = e.target.dataset.key;
|
|
19350
19418
|
|
|
19351
19419
|
for (const plan of this.state.planList) {
|
|
19352
19420
|
if (+plan.id === +id) {
|
|
19353
|
-
plan.isCheked = true;
|
|
19354
|
-
this.setState({
|
|
19355
|
-
plan: plan
|
|
19356
|
-
});
|
|
19357
19421
|
this.setState({
|
|
19358
|
-
|
|
19422
|
+
plan: plan,
|
|
19423
|
+
isGift: isGift
|
|
19359
19424
|
});
|
|
19360
|
-
|
|
19361
|
-
|
|
19425
|
+
this.props.setProductAndPlan(this.state.product, plan, isGift);
|
|
19426
|
+
this.submitOption(this.state.product, isGift);
|
|
19362
19427
|
}
|
|
19363
19428
|
}
|
|
19364
19429
|
});
|
|
19365
19430
|
|
|
19366
19431
|
_defineProperty$3(this, "goBack", () => {
|
|
19367
19432
|
this.setState({
|
|
19368
|
-
disabled: true
|
|
19369
|
-
|
|
19370
|
-
|
|
19371
|
-
mode: "product"
|
|
19433
|
+
disabled: true,
|
|
19434
|
+
mode: "product",
|
|
19435
|
+
scrollToTab: true
|
|
19372
19436
|
});
|
|
19373
19437
|
});
|
|
19374
19438
|
|
|
19375
|
-
_defineProperty$3(this, "submitOption", () => {
|
|
19376
|
-
this.props.setProductAndPlan(this.state.product, this.state.plan, this.state.isGift);
|
|
19377
|
-
const {
|
|
19378
|
-
product,
|
|
19379
|
-
isGift
|
|
19380
|
-
} = this.state;
|
|
19439
|
+
_defineProperty$3(this, "submitOption", (product, isGift) => {
|
|
19381
19440
|
const {
|
|
19382
19441
|
setView
|
|
19383
19442
|
} = this.props;
|
|
@@ -19412,31 +19471,20 @@ class SelectModal extends Component {
|
|
|
19412
19471
|
isGift: props.isGift,
|
|
19413
19472
|
disabled: true,
|
|
19414
19473
|
mode: "product",
|
|
19474
|
+
initialTabSlide: 0,
|
|
19475
|
+
scrollToTab: true,
|
|
19476
|
+
prodDescExpanded: false,
|
|
19415
19477
|
productList: props.matchingEntitlements ? window.Pelcro.product.getByEntitlements(props.matchingEntitlements) : window.Pelcro.product.list()
|
|
19416
19478
|
};
|
|
19417
19479
|
this.product = this.props.product || window.Pelcro.paywall.getProduct();
|
|
19418
19480
|
this.locale = this.props.t;
|
|
19419
19481
|
this.closeButton = window.Pelcro.paywall.displayCloseButton();
|
|
19420
|
-
|
|
19421
|
-
|
|
19422
|
-
componentDidUpdate(prevProps, prevState) {
|
|
19423
|
-
//Scroll to active tab
|
|
19424
|
-
const activeElement = document.getElementById("activeTab");
|
|
19425
|
-
|
|
19426
|
-
if (activeElement) {
|
|
19427
|
-
activeElement.parentNode.scrollLeft = activeElement.offsetLeft - 80;
|
|
19428
|
-
} else {
|
|
19429
|
-
console.log(document.getElementById("activeTab"));
|
|
19430
|
-
}
|
|
19482
|
+
this.productsTabRef = /*#__PURE__*/React__default.createRef();
|
|
19431
19483
|
}
|
|
19432
19484
|
|
|
19433
19485
|
render() {
|
|
19434
19486
|
var _window$Pelcro$produc2, _window$Pelcro$produc3, _window$Pelcro$site$r;
|
|
19435
19487
|
|
|
19436
|
-
const {
|
|
19437
|
-
disableGifting
|
|
19438
|
-
} = this.props;
|
|
19439
|
-
|
|
19440
19488
|
if (this.state.mode === "product") {
|
|
19441
19489
|
var _ReactGA$event;
|
|
19442
19490
|
|
|
@@ -19472,27 +19520,9 @@ class SelectModal extends Component {
|
|
|
19472
19520
|
id: "pelcro-selection-view"
|
|
19473
19521
|
}, /*#__PURE__*/React__default.createElement("div", {
|
|
19474
19522
|
className: "pelcro-select-products-wrapper"
|
|
19475
|
-
}, (_window$Pelcro$site$r = window.Pelcro.site.read()) !== null && _window$Pelcro$site$r !== void 0 && _window$Pelcro$site$r.restrictive_paywall_metatags_enabled ? this.renderMatchingProductsFirst() : this.renderProducts()), this.state.mode === "plan" && /*#__PURE__*/React__default.createElement(
|
|
19523
|
+
}, (_window$Pelcro$site$r = window.Pelcro.site.read()) !== null && _window$Pelcro$site$r !== void 0 && _window$Pelcro$site$r.restrictive_paywall_metatags_enabled ? this.renderMatchingProductsFirst() : this.renderProducts()), this.state.mode === "plan" && /*#__PURE__*/React__default.createElement("div", {
|
|
19476
19524
|
className: "pelcro-select-plans-wrapper plc-mt-4"
|
|
19477
|
-
}, this.renderPlans()),
|
|
19478
|
-
className: "plc-flex plc-justify-center plc-mt-4"
|
|
19479
|
-
}, /*#__PURE__*/React__default.createElement(Checkbox, {
|
|
19480
|
-
onChange: this.onIsGiftChange,
|
|
19481
|
-
checked: this.state.isGift,
|
|
19482
|
-
id: "pelcro-input-is-gift"
|
|
19483
|
-
}, this.locale("messages.checkbox"))), /*#__PURE__*/React__default.createElement(Button, {
|
|
19484
|
-
disabled: this.state.disabled,
|
|
19485
|
-
onClick: this.submitOption,
|
|
19486
|
-
id: "pelcro-submit",
|
|
19487
|
-
className: "plc-mt-2 plc-w-full plc-max-w-sm plc-ml-auto plc-mr-auto plc-block"
|
|
19488
|
-
}, this.locale("buttons.next"))))), /*#__PURE__*/React__default.createElement(ModalFooter, null, !window.Pelcro.user.isAuthenticated() && /*#__PURE__*/React__default.createElement("p", {
|
|
19489
|
-
className: "plc-mb-9"
|
|
19490
|
-
}, /*#__PURE__*/React__default.createElement("span", {
|
|
19491
|
-
className: "plc-font-medium"
|
|
19492
|
-
}, this.locale("messages.alreadyHaveAccount") + " "), /*#__PURE__*/React__default.createElement(Link, {
|
|
19493
|
-
id: "pelcro-link-login",
|
|
19494
|
-
onClick: this.displayLoginView
|
|
19495
|
-
}, this.locale("messages.loginHere")))));
|
|
19525
|
+
}, this.renderPlans()))), /*#__PURE__*/React__default.createElement(ModalFooter, null));
|
|
19496
19526
|
}
|
|
19497
19527
|
|
|
19498
19528
|
}
|
|
@@ -23945,7 +23975,7 @@ const PaypalSubscribeButton = props => {
|
|
|
23945
23975
|
var _ref, _ref2, _state$updatedPrice, _props$plan, _props$selectedAddres;
|
|
23946
23976
|
|
|
23947
23977
|
// sometimes, price is updated. eg. Coupon codes.
|
|
23948
|
-
const updatedPrice = (_ref = (_ref2 = (_state$updatedPrice = state.updatedPrice) !== null && _state$updatedPrice !== void 0 ? _state$updatedPrice : (_props$plan = props.plan) === null || _props$plan === void 0 ? void 0 : _props$plan.amount) !== null && _ref2 !== void 0 ? _ref2 : plan === null || plan === void 0 ? void 0 : plan.amount) !== null && _ref !== void 0 ? _ref : invoice.amount_remaining;
|
|
23978
|
+
const updatedPrice = (_ref = (_ref2 = (_state$updatedPrice = state.updatedPrice) !== null && _state$updatedPrice !== void 0 ? _state$updatedPrice : (_props$plan = props.plan) === null || _props$plan === void 0 ? void 0 : _props$plan.amount) !== null && _ref2 !== void 0 ? _ref2 : plan === null || plan === void 0 ? void 0 : plan.amount) !== null && _ref !== void 0 ? _ref : invoice === null || invoice === void 0 ? void 0 : invoice.amount_remaining;
|
|
23949
23979
|
const selectedAddress = getAddressById((_props$selectedAddres = props.selectedAddressId) !== null && _props$selectedAddres !== void 0 ? _props$selectedAddres : selectedAddressId); // initialize paypal client, then render paypal button.
|
|
23950
23980
|
|
|
23951
23981
|
const initializePaypal = async () => {
|
package/dist/pelcro.css
CHANGED
|
@@ -743,9 +743,17 @@ Add the correct display in Chrome and Safari.
|
|
|
743
743
|
|
|
744
744
|
.pelcro-root .pelcro-modal{
|
|
745
745
|
position: absolute;
|
|
746
|
-
|
|
746
|
+
bottom: 0px;
|
|
747
747
|
display: flex;
|
|
748
748
|
max-width: 32rem;
|
|
749
|
+
--tw-translate-x: 0;
|
|
750
|
+
--tw-translate-y: 0;
|
|
751
|
+
--tw-rotate: 0;
|
|
752
|
+
--tw-skew-x: 0;
|
|
753
|
+
--tw-skew-y: 0;
|
|
754
|
+
--tw-scale-x: 1;
|
|
755
|
+
--tw-scale-y: 1;
|
|
756
|
+
transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
749
757
|
flex-direction: column;
|
|
750
758
|
align-items: center;
|
|
751
759
|
overflow: hidden;
|
|
@@ -756,7 +764,8 @@ Add the correct display in Chrome and Safari.
|
|
|
756
764
|
|
|
757
765
|
@media (min-width: 768px){
|
|
758
766
|
.pelcro-root .pelcro-modal{
|
|
759
|
-
|
|
767
|
+
bottom: 50%;
|
|
768
|
+
--tw-translate-y: 50%;
|
|
760
769
|
}
|
|
761
770
|
}
|
|
762
771
|
|
|
@@ -767,7 +776,7 @@ Add the correct display in Chrome and Safari.
|
|
|
767
776
|
.pelcro-root .pelcro-modal-header {
|
|
768
777
|
position: relative;
|
|
769
778
|
display: flex;
|
|
770
|
-
min-height:
|
|
779
|
+
min-height: 7rem;
|
|
771
780
|
flex-direction: column;
|
|
772
781
|
border-bottom-width: 2px;
|
|
773
782
|
--tw-bg-opacity: 1;
|
|
@@ -838,7 +847,6 @@ Add the correct display in Chrome and Safari.
|
|
|
838
847
|
padding-left: 0.5rem;
|
|
839
848
|
padding-right: 0.5rem;
|
|
840
849
|
padding-top: 0.5rem;
|
|
841
|
-
padding-bottom: 0.5rem;
|
|
842
850
|
}
|
|
843
851
|
|
|
844
852
|
@media (min-width: 768px){
|
|
@@ -855,7 +863,10 @@ Add the correct display in Chrome and Safari.
|
|
|
855
863
|
justify-content: center;
|
|
856
864
|
--tw-bg-opacity: 1;
|
|
857
865
|
background-color: rgba(243, 244, 246, var(--tw-bg-opacity));
|
|
858
|
-
padding: 1rem;
|
|
866
|
+
padding-left: 1rem;
|
|
867
|
+
padding-right: 1rem;
|
|
868
|
+
padding-top: 2.5rem;
|
|
869
|
+
padding-bottom: 2.5rem;
|
|
859
870
|
font-size: 0.875rem;
|
|
860
871
|
line-height: 1.25rem;
|
|
861
872
|
}
|
|
@@ -1646,10 +1657,6 @@ Add the correct display in Chrome and Safari.
|
|
|
1646
1657
|
display: flex !important;
|
|
1647
1658
|
}
|
|
1648
1659
|
|
|
1649
|
-
.pelcro-root .pelcro-select-plan-radio {
|
|
1650
|
-
margin-top: 0.4rem;
|
|
1651
|
-
}
|
|
1652
|
-
|
|
1653
1660
|
.pelcro-root .pelcro-product:before {
|
|
1654
1661
|
content: "";
|
|
1655
1662
|
position: absolute;
|
|
@@ -1660,51 +1667,17 @@ Add the correct display in Chrome and Safari.
|
|
|
1660
1667
|
background-color: hsl(var(--plc-primary-hue), var(--plc-primary-saturation), var(--plc-primary-lightness));
|
|
1661
1668
|
}
|
|
1662
1669
|
|
|
1663
|
-
|
|
1664
|
-
|
|
1665
|
-
|
|
1666
|
-
|
|
1667
|
-
|
|
1668
|
-
|
|
1669
|
-
|
|
1670
|
-
|
|
1671
|
-
|
|
1672
|
-
|
|
1673
|
-
.pelcro-root .productTabs .tabs::-webkit-scrollbar {
|
|
1674
|
-
width: 15px;
|
|
1675
|
-
height: 3px;
|
|
1676
|
-
}
|
|
1677
|
-
|
|
1678
|
-
.pelcro-root .productTabs .tabs::-webkit-scrollbar-track {
|
|
1679
|
-
background: lightGrey;
|
|
1680
|
-
border-radius: 3px;
|
|
1681
|
-
}
|
|
1682
|
-
|
|
1683
|
-
.pelcro-root .productTabs .tabs::-webkit-scrollbar-thumb {
|
|
1684
|
-
background-color: hsl(var(--plc-primary-hue), var(--plc-primary-saturation), var(--plc-primary-lightness));
|
|
1685
|
-
border-radius: 14px;
|
|
1686
|
-
}
|
|
1687
|
-
|
|
1688
|
-
.pelcro-root .productTabs .tabs li:first-child {
|
|
1689
|
-
margin-left: auto;
|
|
1690
|
-
}
|
|
1691
|
-
|
|
1692
|
-
.pelcro-root .productTabs .tabs li:last-child {
|
|
1693
|
-
margin-right: auto;
|
|
1694
|
-
}
|
|
1695
|
-
|
|
1696
|
-
.pelcro-root .productTabs .tabs li#activeTab button {
|
|
1697
|
-
border-color: hsl(var(--plc-primary-hue), var(--plc-primary-saturation), calc(var(--plc-primary-lightness) - 30%));
|
|
1698
|
-
background-color: hsl(var(--plc-primary-hue), var(--plc-primary-saturation), var(--plc-primary-lightness));
|
|
1699
|
-
--tw-text-opacity: 1;
|
|
1700
|
-
color: rgba(255, 255, 255, var(--tw-text-opacity));
|
|
1670
|
+
.pelcro-root .productTabs:before {
|
|
1671
|
+
content: "";
|
|
1672
|
+
width: calc(100% - 5.5rem);
|
|
1673
|
+
left: 2.75rem;
|
|
1674
|
+
position: absolute;
|
|
1675
|
+
bottom: 0.125rem;
|
|
1676
|
+
height: 1px;
|
|
1677
|
+
--tw-bg-opacity: 1;
|
|
1678
|
+
background-color: rgba(209, 213, 219, var(--tw-bg-opacity));
|
|
1701
1679
|
}
|
|
1702
1680
|
|
|
1703
|
-
/* .pelcro-root .productTabs .tabs li#activeTab:after {
|
|
1704
|
-
content: "";
|
|
1705
|
-
@apply plc-h-1 plc-bg-primary-800 plc-w-full plc-absolute plc-bottom-0 plc-left-0 plc-block;
|
|
1706
|
-
} */
|
|
1707
|
-
|
|
1708
1681
|
.pelcro-root .selectedProduct img {
|
|
1709
1682
|
max-width: 150px;
|
|
1710
1683
|
height: auto;
|
|
@@ -1856,19 +1829,16 @@ Add the correct display in Chrome and Safari.
|
|
|
1856
1829
|
}
|
|
1857
1830
|
|
|
1858
1831
|
.pelcro-root .slick-dots li {
|
|
1859
|
-
|
|
1860
|
-
border: solid 1px transparent;
|
|
1861
|
-
border-radius: 9999999px;
|
|
1862
|
-
width: 20px;
|
|
1863
|
-
height: 20px;
|
|
1864
|
-
display: flex;
|
|
1865
|
-
align-items: center;
|
|
1866
|
-
justify-content: center;
|
|
1867
|
-
line-height: 1;
|
|
1832
|
+
margin: 0 2px;
|
|
1868
1833
|
}
|
|
1869
1834
|
|
|
1870
|
-
.pelcro-root .slick-dots li.slick-active {
|
|
1835
|
+
.pelcro-root .slick-dots li.slick-active span {
|
|
1871
1836
|
border-color: grey;
|
|
1837
|
+
background-color: hsl(
|
|
1838
|
+
var(--plc-primary-hue),
|
|
1839
|
+
var(--plc-primary-saturation),
|
|
1840
|
+
var(--plc-primary-lightness)
|
|
1841
|
+
);
|
|
1872
1842
|
}
|
|
1873
1843
|
|
|
1874
1844
|
.pelcro-root .slick-arrow {
|
|
@@ -2165,10 +2135,6 @@ in order to scope selectors under pelcro-root
|
|
|
2165
2135
|
margin-right: 1.5rem;
|
|
2166
2136
|
}
|
|
2167
2137
|
|
|
2168
|
-
.pelcro-root .plc-mr-auto{
|
|
2169
|
-
margin-right: auto;
|
|
2170
|
-
}
|
|
2171
|
-
|
|
2172
2138
|
.pelcro-root .plc-mb-1{
|
|
2173
2139
|
margin-bottom: 0.25rem;
|
|
2174
2140
|
}
|
|
@@ -2213,10 +2179,6 @@ in order to scope selectors under pelcro-root
|
|
|
2213
2179
|
margin-left: 1rem;
|
|
2214
2180
|
}
|
|
2215
2181
|
|
|
2216
|
-
.pelcro-root .plc-ml-auto{
|
|
2217
|
-
margin-left: auto;
|
|
2218
|
-
}
|
|
2219
|
-
|
|
2220
2182
|
.pelcro-root .plc--ml-2{
|
|
2221
2183
|
margin-left: -0.5rem;
|
|
2222
2184
|
}
|
|
@@ -2461,8 +2423,8 @@ in order to scope selectors under pelcro-root
|
|
|
2461
2423
|
width: max-content;
|
|
2462
2424
|
}
|
|
2463
2425
|
|
|
2464
|
-
.pelcro-root .plc-max-w-
|
|
2465
|
-
max-width:
|
|
2426
|
+
.pelcro-root .plc-max-w-lg{
|
|
2427
|
+
max-width: 32rem;
|
|
2466
2428
|
}
|
|
2467
2429
|
|
|
2468
2430
|
.pelcro-root .plc-max-w-xl{
|
|
@@ -2633,6 +2595,14 @@ in order to scope selectors under pelcro-root
|
|
|
2633
2595
|
appearance: none;
|
|
2634
2596
|
}
|
|
2635
2597
|
|
|
2598
|
+
.pelcro-root .plc-grid-cols-1{
|
|
2599
|
+
grid-template-columns: repeat(1, minmax(0, 1fr));
|
|
2600
|
+
}
|
|
2601
|
+
|
|
2602
|
+
.pelcro-root .plc-grid-cols-2{
|
|
2603
|
+
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
2604
|
+
}
|
|
2605
|
+
|
|
2636
2606
|
.pelcro-root .plc-flex-row-reverse{
|
|
2637
2607
|
flex-direction: row-reverse;
|
|
2638
2608
|
}
|
|
@@ -2685,6 +2655,10 @@ in order to scope selectors under pelcro-root
|
|
|
2685
2655
|
justify-items: center;
|
|
2686
2656
|
}
|
|
2687
2657
|
|
|
2658
|
+
.pelcro-root .plc-gap-2{
|
|
2659
|
+
gap: 0.5rem;
|
|
2660
|
+
}
|
|
2661
|
+
|
|
2688
2662
|
.pelcro-root .plc-gap-x-3{
|
|
2689
2663
|
column-gap: 0.75rem;
|
|
2690
2664
|
}
|
|
@@ -2751,6 +2725,10 @@ in order to scope selectors under pelcro-root
|
|
|
2751
2725
|
white-space: nowrap;
|
|
2752
2726
|
}
|
|
2753
2727
|
|
|
2728
|
+
.pelcro-root .plc-whitespace-normal{
|
|
2729
|
+
white-space: normal;
|
|
2730
|
+
}
|
|
2731
|
+
|
|
2754
2732
|
.pelcro-root .plc-whitespace-nowrap{
|
|
2755
2733
|
white-space: nowrap;
|
|
2756
2734
|
}
|
|
@@ -2831,6 +2809,10 @@ in order to scope selectors under pelcro-root
|
|
|
2831
2809
|
border-bottom-width: 2px;
|
|
2832
2810
|
}
|
|
2833
2811
|
|
|
2812
|
+
.pelcro-root .plc-border-b-4{
|
|
2813
|
+
border-bottom-width: 4px;
|
|
2814
|
+
}
|
|
2815
|
+
|
|
2834
2816
|
.pelcro-root .plc-border-b{
|
|
2835
2817
|
border-bottom-width: 1px;
|
|
2836
2818
|
}
|
|
@@ -2896,6 +2878,10 @@ in order to scope selectors under pelcro-root
|
|
|
2896
2878
|
border-color: hsl(var(--plc-primary-hue), var(--plc-primary-saturation), calc(var(--plc-primary-lightness) - 30%));
|
|
2897
2879
|
}
|
|
2898
2880
|
|
|
2881
|
+
.pelcro-root .hover\:plc-border-primary:hover{
|
|
2882
|
+
border-color: hsl(var(--plc-primary-hue), var(--plc-primary-saturation), var(--plc-primary-lightness));
|
|
2883
|
+
}
|
|
2884
|
+
|
|
2899
2885
|
.pelcro-root .plc-bg-transparent{
|
|
2900
2886
|
background-color: transparent;
|
|
2901
2887
|
}
|
|
@@ -3004,6 +2990,10 @@ in order to scope selectors under pelcro-root
|
|
|
3004
2990
|
background-color: hsl(var(--plc-primary-hue), var(--plc-primary-saturation), calc(var(--plc-primary-lightness) - 10%));
|
|
3005
2991
|
}
|
|
3006
2992
|
|
|
2993
|
+
.pelcro-root .hover\:plc-bg-primary:hover{
|
|
2994
|
+
background-color: hsl(var(--plc-primary-hue), var(--plc-primary-saturation), var(--plc-primary-lightness));
|
|
2995
|
+
}
|
|
2996
|
+
|
|
3007
2997
|
.pelcro-root .hover\:plc-bg-white:hover{
|
|
3008
2998
|
--tw-bg-opacity: 1;
|
|
3009
2999
|
background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
|
|
@@ -3282,6 +3272,10 @@ in order to scope selectors under pelcro-root
|
|
|
3282
3272
|
color: hsl(var(--plc-primary-hue), var(--plc-primary-saturation), calc(var(--plc-primary-lightness) - 30%));
|
|
3283
3273
|
}
|
|
3284
3274
|
|
|
3275
|
+
.pelcro-root .plc-text-primary{
|
|
3276
|
+
color: hsl(var(--plc-primary-hue), var(--plc-primary-saturation), var(--plc-primary-lightness));
|
|
3277
|
+
}
|
|
3278
|
+
|
|
3285
3279
|
.pelcro-root .plc-text-white{
|
|
3286
3280
|
--tw-text-opacity: 1;
|
|
3287
3281
|
color: rgba(255, 255, 255, var(--tw-text-opacity));
|
|
@@ -3380,6 +3374,10 @@ in order to scope selectors under pelcro-root
|
|
|
3380
3374
|
color: hsl(var(--plc-primary-hue), var(--plc-primary-saturation), var(--plc-primary-lightness));
|
|
3381
3375
|
}
|
|
3382
3376
|
|
|
3377
|
+
.pelcro-root .hover\:plc-text-primary:hover{
|
|
3378
|
+
color: hsl(var(--plc-primary-hue), var(--plc-primary-saturation), var(--plc-primary-lightness));
|
|
3379
|
+
}
|
|
3380
|
+
|
|
3383
3381
|
.pelcro-root .hover\:plc-text-black:hover{
|
|
3384
3382
|
--tw-text-opacity: 1;
|
|
3385
3383
|
color: rgba(0, 0, 0, var(--tw-text-opacity));
|
|
@@ -3418,6 +3416,10 @@ in order to scope selectors under pelcro-root
|
|
|
3418
3416
|
text-decoration: none;
|
|
3419
3417
|
}
|
|
3420
3418
|
|
|
3419
|
+
.pelcro-root .hover\:plc-no-underline:hover{
|
|
3420
|
+
text-decoration: none;
|
|
3421
|
+
}
|
|
3422
|
+
|
|
3421
3423
|
.pelcro-root .hover\:plc-opacity-30:hover{
|
|
3422
3424
|
opacity: 0.3;
|
|
3423
3425
|
}
|
|
@@ -3646,6 +3648,16 @@ in order to scope selectors under pelcro-root
|
|
|
3646
3648
|
padding-right: 2rem;
|
|
3647
3649
|
}
|
|
3648
3650
|
|
|
3651
|
+
.pelcro-root .sm\:plc-px-10{
|
|
3652
|
+
padding-left: 2.5rem;
|
|
3653
|
+
padding-right: 2.5rem;
|
|
3654
|
+
}
|
|
3655
|
+
|
|
3656
|
+
.pelcro-root .sm\:plc-px-14{
|
|
3657
|
+
padding-left: 3.5rem;
|
|
3658
|
+
padding-right: 3.5rem;
|
|
3659
|
+
}
|
|
3660
|
+
|
|
3649
3661
|
.pelcro-root .sm\:plc-pl-8{
|
|
3650
3662
|
padding-left: 2rem;
|
|
3651
3663
|
}
|