@hulkapps/app-manager-vue 2.0.0 → 2.0.3
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/README.md +14 -0
- package/dist/app-manager-vue.esm.js +75 -25
- package/dist/app-manager-vue.min.js +2 -2
- package/dist/app-manager-vue.ssr.js +78 -29
- package/dist/hulkapps-app-manager.css +1 -1
- package/dist/hulkapps-app-manager.min.css +1 -1
- package/package.json +4 -3
- package/src/components/Marketing/Banners.vue +1 -0
- package/src/components/Plans/AppManagerPlan.vue +39 -18
- package/src/components/Plans/YearlyPlanPromotion.vue +3 -0
package/README.md
CHANGED
|
@@ -25,6 +25,20 @@ Vue.use(AppManager);
|
|
|
25
25
|
```vue
|
|
26
26
|
<Banners type="header" />
|
|
27
27
|
<Banners type="footer" />
|
|
28
|
+
<AppManagerPlan @handlePlanSelect="handlePlanSelectListener" :shop_domain="shop_domain" />
|
|
29
|
+
```
|
|
30
|
+
The AppManagerPlan component requires a Shop Domain
|
|
31
|
+
|
|
32
|
+
A `handlePlanSelect` event is emitted when the user continues without selecting a plan.
|
|
33
|
+
|
|
34
|
+
```javascript
|
|
35
|
+
handlePlanSelectListener(payload) {
|
|
36
|
+
|
|
37
|
+
if (payload.chose_later && payload.chose_later === true) {
|
|
38
|
+
//handle chose_later
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
}
|
|
28
42
|
```
|
|
29
43
|
|
|
30
44
|
## License
|
|
@@ -23043,7 +23043,8 @@ var __vue_render__$K = function () {
|
|
|
23043
23043
|
key: key,
|
|
23044
23044
|
attrs: {
|
|
23045
23045
|
"id": "static-content-header-" + key,
|
|
23046
|
-
"status": header.status
|
|
23046
|
+
"status": header.status,
|
|
23047
|
+
"title": header.title
|
|
23047
23048
|
},
|
|
23048
23049
|
on: {
|
|
23049
23050
|
"dismiss": function () {
|
|
@@ -23064,7 +23065,7 @@ var __vue_staticRenderFns__$K = [];
|
|
|
23064
23065
|
const __vue_inject_styles__$M = undefined;
|
|
23065
23066
|
/* scoped */
|
|
23066
23067
|
|
|
23067
|
-
const __vue_scope_id__$M = "data-v-
|
|
23068
|
+
const __vue_scope_id__$M = "data-v-567642a6";
|
|
23068
23069
|
/* module identifier */
|
|
23069
23070
|
|
|
23070
23071
|
const __vue_module_identifier__$M = undefined;
|
|
@@ -23232,7 +23233,16 @@ var __vue_render__$I = function () {
|
|
|
23232
23233
|
"innerHTML": _vm._s(staticContent.content)
|
|
23233
23234
|
}
|
|
23234
23235
|
})]);
|
|
23235
|
-
}), 0) :
|
|
23236
|
+
}), 0) : _c('span', [_c('p', {
|
|
23237
|
+
staticStyle: {
|
|
23238
|
+
"font-size": "17px",
|
|
23239
|
+
"font-weight": "500"
|
|
23240
|
+
},
|
|
23241
|
+
attrs: {
|
|
23242
|
+
"slot": "default"
|
|
23243
|
+
},
|
|
23244
|
+
slot: "default"
|
|
23245
|
+
}, [_vm._v(_vm._s('Annually'))])]);
|
|
23236
23246
|
};
|
|
23237
23247
|
|
|
23238
23248
|
var __vue_staticRenderFns__$I = [];
|
|
@@ -23241,7 +23251,7 @@ var __vue_staticRenderFns__$I = [];
|
|
|
23241
23251
|
const __vue_inject_styles__$K = undefined;
|
|
23242
23252
|
/* scoped */
|
|
23243
23253
|
|
|
23244
|
-
const __vue_scope_id__$K = "data-v-
|
|
23254
|
+
const __vue_scope_id__$K = "data-v-b2c54672";
|
|
23245
23255
|
/* module identifier */
|
|
23246
23256
|
|
|
23247
23257
|
const __vue_module_identifier__$K = undefined;
|
|
@@ -41336,6 +41346,14 @@ var script = {
|
|
|
41336
41346
|
}
|
|
41337
41347
|
},
|
|
41338
41348
|
|
|
41349
|
+
calculateDiscountedPrice(plan) {
|
|
41350
|
+
if (plan.discount_type === 'percentage') {
|
|
41351
|
+
return plan.price - plan.price * plan.discount / 100;
|
|
41352
|
+
} else if (plan.discount_type === 'amount') {
|
|
41353
|
+
return plan.price - plan.discount;
|
|
41354
|
+
}
|
|
41355
|
+
},
|
|
41356
|
+
|
|
41339
41357
|
async getPlanUrl(plan) {
|
|
41340
41358
|
let shopName = this.shop.name;
|
|
41341
41359
|
const response = await axios.get(`${this.app_manager_config.baseUrl}/api/app-manager/plan/process/${plan.id}?shop=${shopName}`).catch(error => {
|
|
@@ -41344,7 +41362,7 @@ var script = {
|
|
|
41344
41362
|
let redirectUrl = response.data.redirect_url;
|
|
41345
41363
|
|
|
41346
41364
|
if (redirectUrl) {
|
|
41347
|
-
window.location.
|
|
41365
|
+
window.top.location.href = redirectUrl;
|
|
41348
41366
|
}
|
|
41349
41367
|
},
|
|
41350
41368
|
|
|
@@ -41353,7 +41371,9 @@ var script = {
|
|
|
41353
41371
|
|
|
41354
41372
|
if (response.data.status === true && this.onboard) {
|
|
41355
41373
|
// Create the event
|
|
41356
|
-
this.$emit('
|
|
41374
|
+
this.$emit('handlePlanSelect', {
|
|
41375
|
+
chose_later: true
|
|
41376
|
+
});
|
|
41357
41377
|
this.onboard = false;
|
|
41358
41378
|
}
|
|
41359
41379
|
},
|
|
@@ -41383,6 +41403,8 @@ var script = {
|
|
|
41383
41403
|
},
|
|
41384
41404
|
|
|
41385
41405
|
async mounted() {
|
|
41406
|
+
var _this$plan;
|
|
41407
|
+
|
|
41386
41408
|
const featuresData = await axios.get(`${this.app_manager_config.baseUrl}/api/app-manager/plan-features`).catch(error => {
|
|
41387
41409
|
console.error(error);
|
|
41388
41410
|
});
|
|
@@ -41404,6 +41426,11 @@ var script = {
|
|
|
41404
41426
|
|
|
41405
41427
|
this.shopify_plan = plansData.data.shopify_plan;
|
|
41406
41428
|
this.plan = plansData.data.plan;
|
|
41429
|
+
|
|
41430
|
+
if (((_this$plan = this.plan) === null || _this$plan === void 0 ? void 0 : _this$plan.interval) === 'ANNUAL') {
|
|
41431
|
+
this.selectedPlan = 'annually';
|
|
41432
|
+
}
|
|
41433
|
+
|
|
41407
41434
|
this.default_plan_id = plansData.data.default_plan_id;
|
|
41408
41435
|
this.onboard = !this.plan;
|
|
41409
41436
|
}
|
|
@@ -41441,7 +41468,7 @@ var __vue_render__ = function () {
|
|
|
41441
41468
|
attrs: {
|
|
41442
41469
|
"segmented": ""
|
|
41443
41470
|
}
|
|
41444
|
-
}, [_vm.monthlyPlan.length ? _c('PButton', {
|
|
41471
|
+
}, [_vm.monthlyPlan.length && _vm.yearlyPlan.length ? _c('PButton', {
|
|
41445
41472
|
style: _vm.selectedPlan === 'monthly' ? _vm.monthlySelectedStyle : _vm.monthlyStyle,
|
|
41446
41473
|
on: {
|
|
41447
41474
|
"click": function ($event) {
|
|
@@ -41457,7 +41484,7 @@ var __vue_render__ = function () {
|
|
|
41457
41484
|
"slot": "default"
|
|
41458
41485
|
},
|
|
41459
41486
|
slot: "default"
|
|
41460
|
-
}, [_vm._v(_vm._s('Monthly'))])]) : _vm._e(), _vm._v(" "), _vm.yearlyPlan.length ? _c('PButton', {
|
|
41487
|
+
}, [_vm._v(_vm._s('Monthly'))])]) : _vm._e(), _vm._v(" "), _vm.yearlyPlan.length && _vm.monthlyPlan.length ? _c('PButton', {
|
|
41461
41488
|
style: _vm.selectedPlan === 'annually' ? _vm.yearlySelectedStyle : _vm.yearlyStyle,
|
|
41462
41489
|
attrs: {
|
|
41463
41490
|
"primary": _vm.selectedPlan === 'annually'
|
|
@@ -41503,7 +41530,38 @@ var __vue_render__ = function () {
|
|
|
41503
41530
|
staticStyle: {
|
|
41504
41531
|
"font-size": "16px"
|
|
41505
41532
|
}
|
|
41506
|
-
}, [_vm._v(_vm._s(plan.name))]), _vm._v(" "), _c('p', {
|
|
41533
|
+
}, [_vm._v(_vm._s(plan.name))]), _vm._v(" "), plan.discount && plan.discount > 0 ? _c('div', [_c('p', {
|
|
41534
|
+
staticStyle: {
|
|
41535
|
+
"display": "flex",
|
|
41536
|
+
"margin-top": "10px"
|
|
41537
|
+
}
|
|
41538
|
+
}, [_c('PHeading', {
|
|
41539
|
+
staticStyle: {
|
|
41540
|
+
"font-size": "25px",
|
|
41541
|
+
"font-weight": "700"
|
|
41542
|
+
}
|
|
41543
|
+
}, [_vm._v("$" + _vm._s(parseFloat(_vm.calculateDiscountedPrice(plan)).toFixed(2)))]), _vm._v(" "), _c('b', {
|
|
41544
|
+
staticStyle: {
|
|
41545
|
+
"margin-top": "5px",
|
|
41546
|
+
"font-size": "17px"
|
|
41547
|
+
}
|
|
41548
|
+
}, [_vm._v("/" + _vm._s("mo"))])], 1), _vm._v(" "), _c('p', {
|
|
41549
|
+
staticStyle: {
|
|
41550
|
+
"display": "flex",
|
|
41551
|
+
"margin-top": "7px"
|
|
41552
|
+
}
|
|
41553
|
+
}, [_c('PHeading', {
|
|
41554
|
+
staticStyle: {
|
|
41555
|
+
"font-size": "18px",
|
|
41556
|
+
"font-weight": "500",
|
|
41557
|
+
"text-decoration": "line-through"
|
|
41558
|
+
}
|
|
41559
|
+
}, [_vm._v("$" + _vm._s(parseFloat(plan.price).toFixed(2)))]), _vm._v(" "), _c('b', {
|
|
41560
|
+
staticStyle: {
|
|
41561
|
+
"margin-top": "3px",
|
|
41562
|
+
"font-size": "14px"
|
|
41563
|
+
}
|
|
41564
|
+
}, [_vm._v("/" + _vm._s("mo"))])], 1)]) : _c('div', [_c('p', {
|
|
41507
41565
|
staticStyle: {
|
|
41508
41566
|
"display": "flex",
|
|
41509
41567
|
"margin-top": "10px"
|
|
@@ -41518,7 +41576,7 @@ var __vue_render__ = function () {
|
|
|
41518
41576
|
"margin-top": "5px",
|
|
41519
41577
|
"font-size": "17px"
|
|
41520
41578
|
}
|
|
41521
|
-
}, [_vm._v("/" + _vm._s("mo"))])], 1)])];
|
|
41579
|
+
}, [_vm._v("/" + _vm._s("mo"))])], 1)])])];
|
|
41522
41580
|
})], 2) : _c('PDataTableRow', [_c('PDataTableCol', {
|
|
41523
41581
|
staticClass: "plan-heading",
|
|
41524
41582
|
staticStyle: {
|
|
@@ -41593,31 +41651,23 @@ var __vue_render__ = function () {
|
|
|
41593
41651
|
staticStyle: {
|
|
41594
41652
|
"max-width": "0"
|
|
41595
41653
|
}
|
|
41596
|
-
}, [
|
|
41654
|
+
}, [_vm.isCurrentPlan(plan) ? _c('PButton', {
|
|
41597
41655
|
attrs: {
|
|
41598
41656
|
"disabled": _vm.isCurrentPlan(plan),
|
|
41599
41657
|
"full-width": "",
|
|
41600
|
-
"pressed": _vm.isCurrentPlan(plan)
|
|
41601
|
-
"primary": !_vm.isCurrentPlan(plan)
|
|
41602
|
-
},
|
|
41603
|
-
on: {
|
|
41604
|
-
"click": function ($event) {
|
|
41605
|
-
plan ? _vm.getPlanUrl(plan) : 'javascript:void';
|
|
41606
|
-
}
|
|
41658
|
+
"pressed": _vm.isCurrentPlan(plan)
|
|
41607
41659
|
}
|
|
41608
|
-
}, [_vm._v("\n " + _vm._s(
|
|
41660
|
+
}, [_vm._v("\n " + _vm._s('Current Plan') + "\n ")]) : !plan.store_base_plan || plan.shopify_plans.includes(_vm.shop.shopify_plan) ? _c('PButton', {
|
|
41609
41661
|
attrs: {
|
|
41610
|
-
"disabled": _vm.isCurrentPlan(plan),
|
|
41611
41662
|
"full-width": "",
|
|
41612
|
-
"
|
|
41613
|
-
"primary": !_vm.isCurrentPlan(plan)
|
|
41663
|
+
"primary": true
|
|
41614
41664
|
},
|
|
41615
41665
|
on: {
|
|
41616
41666
|
"click": function ($event) {
|
|
41617
41667
|
plan ? _vm.getPlanUrl(plan) : 'javascript:void';
|
|
41618
41668
|
}
|
|
41619
41669
|
}
|
|
41620
|
-
}, [_vm._v("\n " + _vm._s(
|
|
41670
|
+
}, [_vm._v("\n " + _vm._s('Choose Plan') + "\n ")]) : _c('PButton', {
|
|
41621
41671
|
attrs: {
|
|
41622
41672
|
"disabled": true,
|
|
41623
41673
|
"full-width": "",
|
|
@@ -41654,8 +41704,8 @@ var __vue_staticRenderFns__ = [];
|
|
|
41654
41704
|
|
|
41655
41705
|
const __vue_inject_styles__ = function (inject) {
|
|
41656
41706
|
if (!inject) return;
|
|
41657
|
-
inject("data-v-
|
|
41658
|
-
source: "@import url(https://fonts.googleapis.com/css2?family=Satisfy&display=swap);.app-manager-plan-page .plan-table td:last-child>[data-v-5a078dbb],.app-manager-plan-page .plan-table td:last-child>[data-v-7d902277]{float:none}.app-manager-plan-page .active{background:#f0f8f5}.app-manager-plan-page .plan-table td:last-child>[data-v-0d1b0d63]{float:none}.app-manager-plan-page .plan-table td{border:.01px solid #ececee!important;border-collapse:collapse!important}.app-manager-plan-page .plan-table .Polaris-DataTable__ScrollContainer{border-radius:12px;overflow:visible}.app-manager-plan-page .plan-table table{border-collapse:collapse!important}.app-manager-plan-page .custom-plan table{border-collapse:collapse!important}.app-manager-plan-page .custom-plan table thead .first-column{border-radius:12px 0 0 0;border-top:0!important;border-left:0!important}.app-manager-plan-page .custom-plan table thead .plan-heading.last-column{text-align:left!important;border-radius:0 12px 0 0;border-top:0!important}.app-manager-plan-page .custom-plan table thead .plan-heading{background-color:#fff;box-shadow:rgba(23,24,24,.05) 1px 0 8px,rgba(0,0,0,.15) 0 0 2px}.app-manager-plan-page .custom-plan table tbody tr:first-child{background-color:#fff;box-shadow:0 0 5px rgba(23,24,24,.05),0 1px 2px rgba(0,0,0,.15);border-radius:12px 0 0 0;overflow:hidden}.app-manager-plan-page .custom-plan table tbody tr:not(:first-child:last-child){background-color:#fff;overflow:hidden}.app-manager-plan-page .custom-plan table tbody tr:not(:first-child:last-child){background-color:#fff;box-shadow:0 0 5px rgba(23,24,24,.05),0 1px 2px rgba(0,0,0,.15);overflow:hidden}.app-manager-plan-page .custom-plan table tbody tr:not(:nth-last-child(2)){background-color:#fff;overflow:hidden}.app-manager-plan-page .custom-plan table tbody tr:not(:nth-last-child(2)){border-bottom:0}.app-manager-plan-page .custom-plan table tbody tr:last-child{border-bottom:0;background-color:transparent}.app-manager-plan-page .custom-plan table tbody tr:not(:last-child){pointer-events:none}.app-manager-plan-page .custom-plan table thead tr td{pointer-events:none}.app-manager-plan-page .custom-plan table tbody tr:first-child td:first-child{overflow:hidden;border-radius:12px 0 0 0}.app-manager-plan-page .custom-plan table tbody tr:nth-last-child(2){overflow:hidden;border-bottom-right-radius:12px;border-bottom-left-radius:12px}.app-manager-plan-page .custom-plan table tbody tr:nth-last-child(2) td:first-child{overflow:hidden;border-bottom:0!important;border-radius:0 0 0 12px}.app-manager-plan-page .custom-plan table tbody tr:nth-last-child(2) td:last-child{overflow:hidden;border-radius:0 0 12px}.app-manager-plan-page .custom-plan table tbody tr td:first-child{border-left:0!important;border-top:0!important;padding-left:20px}.app-manager-plan-page .custom-plan table tbody tr td:last-child{border-right:0!important;border-bottom:0!important;text-align:center!important}.app-manager-plan-page .custom-plan table thead tr td:last-child{border-right:0!important;border-bottom:0!important;text-align:center!important}.app-manager-plan-page .custom-plan table tbody td:not(:first-child){text-align:center!important}.app-manager-plan-page .custom-plan table tbody tr:last-child td:last-child{background:0 0;border-radius:0 0 12px 0}.app-manager-plan-page .custom-plan table tbody tr:last-child td{border:0!important;background:0 0}.app-manager-plan-page .custom-plan table tbody tr:last-child td:hover{border:0!important;background:0 0}.app-manager-plan-page .custom-plan tbody tr:last-child td.Polaris-DataTable__Cell--verticalAlignTop{background:0 0!important}.app-manager-plan-page .custom-plan table tbody tr:last-child{background:0 0;opacity:1}.app-manager-plan-page .custom-plan table tbody tr:last-child td:first-child{visibility:hidden}.app-manager-plan-page .plan-heading{padding-top:30px}.app-manager-plan-page .custom-plan .Polaris-Layout__Section{max-width:calc(100% - 2rem)!important}.app-manager-plan-page .later-link{text-align:center;clear:both;padding-top:15px}.app-manager-plan-page .plan-badge ul{text-align:center;padding-top:2rem;border-top:.1rem solid #e1e3e5}.app-manager-plan-page .plan-badge ul li{list-style:none;display:inline-block;padding-right:25px}.app-manager-plan-page .plan-badge ul li img{max-width:133px}.app-manager-plan-page .btn-group .Polaris-ButtonGroup__Item{margin-left:0!important;z-index:unset!important}.app-manager-plan-page.custom-title .Polaris-HorizontalDivider{background-color:#e2e3e4}.app-manager-plan-page .Polaris-Page__Content hr{border:1px solid #e2e3e4}",
|
|
41707
|
+
inject("data-v-9d87510a_0", {
|
|
41708
|
+
source: "@import url(https://fonts.googleapis.com/css2?family=Satisfy&display=swap);.app-manager-plan-page .plan-table td:last-child>[data-v-5a078dbb],.app-manager-plan-page .plan-table td:last-child>[data-v-7d902277]{float:none}.app-manager-plan-page .active{background:#f0f8f5}.app-manager-plan-page .plan-table td:last-child>[data-v-0d1b0d63]{float:none}.app-manager-plan-page .plan-table td{border:.01px solid #ececee!important;border-collapse:collapse!important}.app-manager-plan-page .plan-table .Polaris-DataTable__ScrollContainer{border-radius:12px;overflow:visible}.app-manager-plan-page .plan-table table{border-collapse:collapse!important}.app-manager-plan-page .custom-plan table{border-collapse:collapse!important}.app-manager-plan-page .custom-plan table thead .first-column{border-radius:12px 0 0 0;border-top:0!important;border-left:0!important}.app-manager-plan-page .custom-plan table thead .plan-heading.last-column{text-align:left!important;border-radius:0 12px 0 0;border-top:0!important}.app-manager-plan-page .custom-plan table thead .plan-heading{background-color:#fff;box-shadow:rgba(23,24,24,.05) 1px 0 8px,rgba(0,0,0,.15) 0 0 2px}.app-manager-plan-page .custom-plan table tbody tr:first-child{background-color:#fff;box-shadow:0 0 5px rgba(23,24,24,.05),0 1px 2px rgba(0,0,0,.15);border-radius:12px 0 0 0;overflow:hidden}.app-manager-plan-page .custom-plan table tbody tr:not(:first-child:last-child){background-color:#fff;overflow:hidden}.app-manager-plan-page .custom-plan table tbody tr:not(:first-child:last-child){background-color:#fff;box-shadow:0 0 5px rgba(23,24,24,.05),0 1px 2px rgba(0,0,0,.15);overflow:hidden}.app-manager-plan-page .custom-plan table tbody tr:not(:nth-last-child(2)){background-color:#fff;overflow:hidden}.app-manager-plan-page .custom-plan table tbody tr:not(:nth-last-child(2)){border-bottom:0}.app-manager-plan-page .custom-plan table tbody tr:last-child{border-bottom:0;background-color:transparent!important;box-shadow:none!important}.app-manager-plan-page .custom-plan table tbody tr:not(:last-child){pointer-events:none}.app-manager-plan-page .custom-plan table thead tr td{pointer-events:none}.app-manager-plan-page .custom-plan table tbody tr:first-child td:first-child{overflow:hidden;border-radius:12px 0 0 0}.app-manager-plan-page .custom-plan table tbody tr:nth-last-child(2){overflow:hidden;border-bottom-right-radius:12px;border-bottom-left-radius:12px}.app-manager-plan-page .custom-plan table tbody tr:nth-last-child(2) td:first-child{overflow:hidden;border-bottom:0!important;border-radius:0 0 0 12px}.app-manager-plan-page .custom-plan table tbody tr:nth-last-child(2) td:last-child{overflow:hidden;border-radius:0 0 12px}.app-manager-plan-page .custom-plan table tbody tr td:first-child{border-left:0!important;border-top:0!important;padding-left:20px}.app-manager-plan-page .custom-plan table tbody tr td:last-child{border-right:0!important;border-bottom:0!important;text-align:center!important}.app-manager-plan-page .custom-plan table thead tr td:last-child{border-right:0!important;border-bottom:0!important;text-align:center!important}.app-manager-plan-page .custom-plan table tbody td:not(:first-child){text-align:center!important}.app-manager-plan-page .custom-plan table tbody tr:last-child td:last-child{background:0 0;border-radius:0 0 12px 0}.app-manager-plan-page .custom-plan table tbody tr:last-child td{border:0!important;background:0 0}.app-manager-plan-page .custom-plan table tbody tr:last-child td:hover{border:0!important;background:0 0}.app-manager-plan-page .custom-plan tbody tr:last-child td.Polaris-DataTable__Cell--verticalAlignTop{background:0 0!important}.app-manager-plan-page .custom-plan table tbody tr:last-child{background:0 0;opacity:1}.app-manager-plan-page .custom-plan table tbody tr:last-child td:first-child{visibility:hidden}.app-manager-plan-page .plan-heading{padding-top:30px}.app-manager-plan-page .custom-plan .Polaris-Layout__Section{max-width:calc(100% - 2rem)!important}.app-manager-plan-page .later-link{text-align:center;clear:both;padding-top:15px}.app-manager-plan-page .plan-badge ul{text-align:center;padding-top:2rem;border-top:.1rem solid #e1e3e5}.app-manager-plan-page .plan-badge ul li{list-style:none;display:inline-block;padding-right:25px}.app-manager-plan-page .plan-badge ul li img{max-width:133px}.app-manager-plan-page .btn-group .Polaris-ButtonGroup__Item{margin-left:0!important;z-index:unset!important}.app-manager-plan-page.custom-title .Polaris-HorizontalDivider{background-color:#e2e3e4}.app-manager-plan-page .Polaris-Page__Content hr{border:1px solid #e2e3e4}",
|
|
41659
41709
|
map: undefined,
|
|
41660
41710
|
media: undefined
|
|
41661
41711
|
});
|