@hulkapps/app-manager-vue 2.5.5 → 2.5.9
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/app-manager-vue.esm.js +178 -128
- package/dist/app-manager-vue.min.js +2 -2
- package/dist/app-manager-vue.ssr.js +132 -92
- package/dist/hulkapps-app-manager.css +1 -1
- package/dist/hulkapps-app-manager.min.css +1 -1
- package/package.json +1 -1
- package/src/components/Plans/AppManagerGroupPlan.vue +22 -5
- package/src/components/Plans/AppManagerSliderPlan.vue +19 -6
- package/src/components/PolarisNew/AppCard.vue +51 -4
- package/src/components/PolarisNew/PlanShowcaseBanner.vue +3 -2
|
@@ -41633,7 +41633,115 @@ const __vue_component__$9 = /*#__PURE__*/normalizeComponent({
|
|
|
41633
41633
|
var PSkeletonPage = __vue_component__$9;
|
|
41634
41634
|
|
|
41635
41635
|
var script$7 = {
|
|
41636
|
+
name: "VariantButton",
|
|
41637
|
+
props: {
|
|
41638
|
+
variant: {
|
|
41639
|
+
type: String,
|
|
41640
|
+
required: true,
|
|
41641
|
+
|
|
41642
|
+
default() {
|
|
41643
|
+
return "primary";
|
|
41644
|
+
}
|
|
41645
|
+
|
|
41646
|
+
},
|
|
41647
|
+
additionalText: {
|
|
41648
|
+
type: String,
|
|
41649
|
+
required: false
|
|
41650
|
+
},
|
|
41651
|
+
getPlanUrl: {
|
|
41652
|
+
type: Function,
|
|
41653
|
+
required: false
|
|
41654
|
+
},
|
|
41655
|
+
plan: {
|
|
41656
|
+
type: Object,
|
|
41657
|
+
required: false
|
|
41658
|
+
},
|
|
41659
|
+
disabled: {
|
|
41660
|
+
type: Boolean,
|
|
41661
|
+
required: false,
|
|
41662
|
+
default: false
|
|
41663
|
+
}
|
|
41664
|
+
},
|
|
41665
|
+
methods: {
|
|
41666
|
+
handleClick() {
|
|
41667
|
+
event.preventDefault();
|
|
41668
|
+
this.$emit("click", event);
|
|
41669
|
+
},
|
|
41670
|
+
|
|
41671
|
+
handlePlanClick() {
|
|
41672
|
+
event.preventDefault();
|
|
41673
|
+
this.$emit("plan-clicked", event);
|
|
41674
|
+
},
|
|
41675
|
+
|
|
41676
|
+
translateMe(message) {
|
|
41677
|
+
return this.$translations.hasOwnProperty(message) ? this.$translations[message] : message;
|
|
41678
|
+
}
|
|
41679
|
+
|
|
41680
|
+
}
|
|
41681
|
+
};
|
|
41682
|
+
|
|
41683
|
+
/* script */
|
|
41684
|
+
const __vue_script__$7 = script$7;
|
|
41685
|
+
/* template */
|
|
41686
|
+
|
|
41687
|
+
var __vue_render__$7 = function () {
|
|
41688
|
+
var _vm = this;
|
|
41689
|
+
|
|
41690
|
+
var _h = _vm.$createElement;
|
|
41691
|
+
|
|
41692
|
+
var _c = _vm._self._c || _h;
|
|
41693
|
+
|
|
41694
|
+
return _c('a', {
|
|
41695
|
+
staticClass: "button",
|
|
41696
|
+
class: "button-" + _vm.variant + (_vm.disabled ? ' disabled' : ''),
|
|
41697
|
+
attrs: {
|
|
41698
|
+
"href": "#"
|
|
41699
|
+
},
|
|
41700
|
+
on: {
|
|
41701
|
+
"click": _vm.handleClick
|
|
41702
|
+
}
|
|
41703
|
+
}, [_vm._t("default"), _vm._v(" "), _vm.additionalText ? _c('span', {
|
|
41704
|
+
class: "additional-info-" + _vm.variant
|
|
41705
|
+
}, [_vm._v("\n " + _vm._s(_vm.translateMe(_vm.additionalText)) + "\n ")]) : _vm._e()], 2);
|
|
41706
|
+
};
|
|
41707
|
+
|
|
41708
|
+
var __vue_staticRenderFns__$7 = [];
|
|
41709
|
+
/* style */
|
|
41710
|
+
|
|
41711
|
+
const __vue_inject_styles__$7 = function (inject) {
|
|
41712
|
+
if (!inject) return;
|
|
41713
|
+
inject("data-v-5d4b7cdb_0", {
|
|
41714
|
+
source: ".button[data-v-5d4b7cdb]{display:flex;width:fit-content!important;height:28px!important;align-items:center!important;gap:8px!important;padding:4px 12px!important;text-decoration:none!important;font-size:13px!important;font-weight:450!important;color:#4a4a4a!important}.button[data-v-5d4b7cdb]:hover{background-color:#0000000d!important;border-radius:8px!important}.button-primary[data-v-5d4b7cdb]{background-color:rgba(0,0,0,.08)!important;color:#303030!important;border-radius:8px!important}.button-primary[data-v-5d4b7cdb]:hover{background-color:rgba(0,0,0,.05)!important}.button-secondary[data-v-5d4b7cdb]{color:#000!important}.additional-info-primary[data-v-5d4b7cdb]{background-color:rgba(0,0,0,.06)!important;color:#616161!important;padding:0 6px!important;border-radius:8px!important;font-size:13px!important;font-weight:550!important}.additional-info-secondary[data-v-5d4b7cdb]{background-color:rgba(0,0,0,.06)!important;color:#616161!important;padding:0 6px!important;border-radius:8px!important;font-weight:550!important}.disabled[data-v-5d4b7cdb]{background-color:rgba(0,0,0,.08)!important;font-size:13px!important;font-weight:450!important;color:#4a4a4a!important;cursor:not-allowed!important;pointer-events:none!important}",
|
|
41715
|
+
map: undefined,
|
|
41716
|
+
media: undefined
|
|
41717
|
+
});
|
|
41718
|
+
};
|
|
41719
|
+
/* scoped */
|
|
41720
|
+
|
|
41721
|
+
|
|
41722
|
+
const __vue_scope_id__$7 = "data-v-5d4b7cdb";
|
|
41723
|
+
/* module identifier */
|
|
41724
|
+
|
|
41725
|
+
const __vue_module_identifier__$7 = undefined;
|
|
41726
|
+
/* functional template */
|
|
41727
|
+
|
|
41728
|
+
const __vue_is_functional_template__$7 = false;
|
|
41729
|
+
/* style inject SSR */
|
|
41730
|
+
|
|
41731
|
+
/* style inject shadow dom */
|
|
41732
|
+
|
|
41733
|
+
const __vue_component__$8 = /*#__PURE__*/normalizeComponent({
|
|
41734
|
+
render: __vue_render__$7,
|
|
41735
|
+
staticRenderFns: __vue_staticRenderFns__$7
|
|
41736
|
+
}, __vue_inject_styles__$7, __vue_script__$7, __vue_scope_id__$7, __vue_is_functional_template__$7, __vue_module_identifier__$7, false, createInjector, undefined, undefined);
|
|
41737
|
+
|
|
41738
|
+
var VariantButton = __vue_component__$8;
|
|
41739
|
+
|
|
41740
|
+
var script$6 = {
|
|
41636
41741
|
name: "AppCard",
|
|
41742
|
+
components: {
|
|
41743
|
+
VariantButton
|
|
41744
|
+
},
|
|
41637
41745
|
props: {
|
|
41638
41746
|
appData: {
|
|
41639
41747
|
type: Object,
|
|
@@ -41668,10 +41776,10 @@ var script$7 = {
|
|
|
41668
41776
|
};
|
|
41669
41777
|
|
|
41670
41778
|
/* script */
|
|
41671
|
-
const __vue_script__$
|
|
41779
|
+
const __vue_script__$6 = script$6;
|
|
41672
41780
|
/* template */
|
|
41673
41781
|
|
|
41674
|
-
var __vue_render__$
|
|
41782
|
+
var __vue_render__$6 = function () {
|
|
41675
41783
|
var _vm = this;
|
|
41676
41784
|
|
|
41677
41785
|
var _h = _vm.$createElement;
|
|
@@ -41698,7 +41806,7 @@ var __vue_render__$7 = function () {
|
|
|
41698
41806
|
staticClass: "app-name"
|
|
41699
41807
|
}, [_vm._v("\n " + _vm._s(_vm.translateMe(_vm.appData.app_name)) + "\n ")]), _vm._v(" "), _vm.appData.app_bundle_details.built_for_shopify ? _c('div', {
|
|
41700
41808
|
staticClass: "app-tags"
|
|
41701
|
-
}, [_c('
|
|
41809
|
+
}, [_c('span', {
|
|
41702
41810
|
staticClass: "app-tag bfs-tag"
|
|
41703
41811
|
}, [_c('svg', {
|
|
41704
41812
|
attrs: {
|
|
@@ -41757,7 +41865,7 @@ var __vue_render__$7 = function () {
|
|
|
41757
41865
|
}, [_vm._v("\n " + _vm._s(_vm.appData.app_bundle_details.reviews) + "\n " + _vm._s(_vm.translateMe("Reviews")) + "\n ")]), _vm._v(" "), _c('div', {
|
|
41758
41866
|
staticClass: "app-tags"
|
|
41759
41867
|
}, _vm._l(_vm.appData.app_bundle_details.shopify_categories, function (tag) {
|
|
41760
|
-
return _c('
|
|
41868
|
+
return _c('span', {
|
|
41761
41869
|
staticClass: "app-tag"
|
|
41762
41870
|
}, [_c('svg', {
|
|
41763
41871
|
attrs: {
|
|
@@ -41806,112 +41914,15 @@ var __vue_render__$7 = function () {
|
|
|
41806
41914
|
"fill": "black"
|
|
41807
41915
|
}
|
|
41808
41916
|
})]), _vm._v("\n " + _vm._s(_vm.translateMe(option)))]);
|
|
41809
|
-
}), 0)])
|
|
41810
|
-
|
|
41811
|
-
|
|
41812
|
-
|
|
41813
|
-
/* style */
|
|
41814
|
-
|
|
41815
|
-
const __vue_inject_styles__$7 = function (inject) {
|
|
41816
|
-
if (!inject) return;
|
|
41817
|
-
inject("data-v-788b1e46_0", {
|
|
41818
|
-
source: ".app-card[data-v-788b1e46]{display:flex;padding:16px;background-color:#fff;box-shadow:0 4px 6px -1px rgb(0 0 0 / .1),0 2px 4px -2px rgb(0 0 0 / .1);border-radius:12px;gap:16px}.logo[data-v-788b1e46],.logo-image[data-v-788b1e46]{width:40px;height:40px;border-radius:4px}.lower-details[data-v-788b1e46],.upper-details[data-v-788b1e46]{display:flex;flex-wrap:wrap;row-gap:2px;column-gap:8px}.app-name[data-v-788b1e46]{font-size:14px;font-weight:650;line-height:20px}.app-reviews-count[data-v-788b1e46]{font-size:13px;font-weight:400;line-height:20px;color:#5c5c5c}.app-tag[data-v-788b1e46]{background-color:#e0f0ff;width:fit-content;margin-right:12px;padding:3px 4px;border-radius:8px;font-size:12px;color:#00527c;line-height:12px;font-weight:550;text-decoration:none;white-space:nowrap}.app-tag>svg[data-v-788b1e46]{margin-bottom:-5.5px}.bfs-tag[data-v-788b1e46]{margin-right:0;margin-bottom:0!important}.bfs-tag>svg[data-v-788b1e46]{margin-bottom:-3px}.app-option-type-count[data-v-788b1e46],.featured-options[data-v-788b1e46]{display:flex;gap:4px;align-items:center;font-size:13px;font-weight:450;line-height:20px;text-wrap:nowrap;color:#5c5c5c}@media (max-width:767px){.featured-options[data-v-788b1e46]{text-wrap:wrap}.details[data-v-788b1e46]{gap:8px}.app-tags[data-v-788b1e46]{display:flex;flex-direction:column;gap:8px;margin-bottom:8px}.lower-details[data-v-788b1e46],.upper-details[data-v-788b1e46]{flex-direction:column;flex-wrap:wrap;row-gap:2px;column-gap:8px}}",
|
|
41819
|
-
map: undefined,
|
|
41820
|
-
media: undefined
|
|
41821
|
-
});
|
|
41822
|
-
};
|
|
41823
|
-
/* scoped */
|
|
41824
|
-
|
|
41825
|
-
|
|
41826
|
-
const __vue_scope_id__$7 = "data-v-788b1e46";
|
|
41827
|
-
/* module identifier */
|
|
41828
|
-
|
|
41829
|
-
const __vue_module_identifier__$7 = undefined;
|
|
41830
|
-
/* functional template */
|
|
41831
|
-
|
|
41832
|
-
const __vue_is_functional_template__$7 = false;
|
|
41833
|
-
/* style inject SSR */
|
|
41834
|
-
|
|
41835
|
-
/* style inject shadow dom */
|
|
41836
|
-
|
|
41837
|
-
const __vue_component__$8 = /*#__PURE__*/normalizeComponent({
|
|
41838
|
-
render: __vue_render__$7,
|
|
41839
|
-
staticRenderFns: __vue_staticRenderFns__$7
|
|
41840
|
-
}, __vue_inject_styles__$7, __vue_script__$7, __vue_scope_id__$7, __vue_is_functional_template__$7, __vue_module_identifier__$7, false, createInjector, undefined, undefined);
|
|
41841
|
-
|
|
41842
|
-
var AppCard = __vue_component__$8;
|
|
41843
|
-
|
|
41844
|
-
var script$6 = {
|
|
41845
|
-
name: "VariantButton",
|
|
41846
|
-
props: {
|
|
41847
|
-
variant: {
|
|
41848
|
-
type: String,
|
|
41849
|
-
required: true,
|
|
41850
|
-
|
|
41851
|
-
default() {
|
|
41852
|
-
return "primary";
|
|
41853
|
-
}
|
|
41854
|
-
|
|
41855
|
-
},
|
|
41856
|
-
additionalText: {
|
|
41857
|
-
type: String,
|
|
41858
|
-
required: false
|
|
41859
|
-
},
|
|
41860
|
-
getPlanUrl: {
|
|
41861
|
-
type: Function,
|
|
41862
|
-
required: false
|
|
41863
|
-
},
|
|
41864
|
-
plan: {
|
|
41865
|
-
type: Object,
|
|
41866
|
-
required: false
|
|
41867
|
-
},
|
|
41868
|
-
disabled: {
|
|
41869
|
-
type: Boolean,
|
|
41870
|
-
required: false,
|
|
41871
|
-
default: false
|
|
41872
|
-
}
|
|
41873
|
-
},
|
|
41874
|
-
methods: {
|
|
41875
|
-
handleClick() {
|
|
41876
|
-
event.preventDefault();
|
|
41877
|
-
this.$emit("click", event);
|
|
41878
|
-
},
|
|
41879
|
-
|
|
41880
|
-
handlePlanClick() {
|
|
41881
|
-
event.preventDefault();
|
|
41882
|
-
this.$emit("plan-clicked", event);
|
|
41883
|
-
},
|
|
41884
|
-
|
|
41885
|
-
translateMe(message) {
|
|
41886
|
-
return this.$translations.hasOwnProperty(message) ? this.$translations[message] : message;
|
|
41887
|
-
}
|
|
41888
|
-
|
|
41889
|
-
}
|
|
41890
|
-
};
|
|
41891
|
-
|
|
41892
|
-
/* script */
|
|
41893
|
-
const __vue_script__$6 = script$6;
|
|
41894
|
-
/* template */
|
|
41895
|
-
|
|
41896
|
-
var __vue_render__$6 = function () {
|
|
41897
|
-
var _vm = this;
|
|
41898
|
-
|
|
41899
|
-
var _h = _vm.$createElement;
|
|
41900
|
-
|
|
41901
|
-
var _c = _vm._self._c || _h;
|
|
41902
|
-
|
|
41903
|
-
return _c('a', {
|
|
41904
|
-
staticClass: "button",
|
|
41905
|
-
class: "button-" + _vm.variant + (_vm.disabled ? ' disabled' : ''),
|
|
41917
|
+
}), 0)]), _vm._v(" "), _c('div', {
|
|
41918
|
+
staticClass: "install-app-div"
|
|
41919
|
+
}, [_c('a', {
|
|
41920
|
+
staticClass: "button-link install-app-button",
|
|
41906
41921
|
attrs: {
|
|
41907
|
-
"href":
|
|
41908
|
-
|
|
41909
|
-
on: {
|
|
41910
|
-
"click": _vm.handleClick
|
|
41922
|
+
"href": _vm.appData.app_shopify_store_link,
|
|
41923
|
+
"target": "_blank"
|
|
41911
41924
|
}
|
|
41912
|
-
}, [_vm.
|
|
41913
|
-
class: "additional-info-" + _vm.variant
|
|
41914
|
-
}, [_vm._v("\n " + _vm._s(_vm.translateMe(_vm.additionalText)) + "\n ")]) : _vm._e()], 2);
|
|
41925
|
+
}, [_vm._v("\n " + _vm._s(_vm.translateMe('Install App')) + "\n ")])])]), _vm._v(" "), _vm._t("default")], 2);
|
|
41915
41926
|
};
|
|
41916
41927
|
|
|
41917
41928
|
var __vue_staticRenderFns__$6 = [];
|
|
@@ -41919,8 +41930,8 @@ var __vue_staticRenderFns__$6 = [];
|
|
|
41919
41930
|
|
|
41920
41931
|
const __vue_inject_styles__$6 = function (inject) {
|
|
41921
41932
|
if (!inject) return;
|
|
41922
|
-
inject("data-v-
|
|
41923
|
-
source: ".
|
|
41933
|
+
inject("data-v-205e5f18_0", {
|
|
41934
|
+
source: ".app-card[data-v-205e5f18]{display:flex;padding:16px;background-color:#fff;box-shadow:0 4px 6px -1px rgb(0 0 0 / .1),0 2px 4px -2px rgb(0 0 0 / .1);border-radius:12px;gap:16px;align-items:center}.logo[data-v-205e5f18],.logo-image[data-v-205e5f18]{width:40px;height:40px;border-radius:4px}.lower-details[data-v-205e5f18]{margin-top:8px}.lower-details[data-v-205e5f18],.upper-details[data-v-205e5f18]{display:flex;flex-wrap:wrap;row-gap:2px;column-gap:8px}.app-name[data-v-205e5f18]{font-size:14px;font-weight:650;line-height:20px}.app-reviews-count[data-v-205e5f18]{font-size:13px;font-weight:400;line-height:20px;color:#5c5c5c}.app-tag[data-v-205e5f18]{background-color:#e0f0ff;width:fit-content;margin-right:12px;padding:3px 4px;border-radius:8px;font-size:12px;color:#00527c;line-height:12px;font-weight:550;text-decoration:none;white-space:nowrap}.app-tag>svg[data-v-205e5f18]{margin-bottom:-5.5px}.bfs-tag[data-v-205e5f18]{margin-right:0;margin-bottom:0!important}.bfs-tag>svg[data-v-205e5f18]{margin-bottom:-3px}.app-option-type-count[data-v-205e5f18],.featured-options[data-v-205e5f18]{display:flex;gap:4px;align-items:center;font-size:13px;font-weight:450;line-height:20px;text-wrap:nowrap;color:#5c5c5c}.install-app-div[data-v-205e5f18]{margin-left:auto;display:flex;align-items:center;white-space:nowrap}.install-app-button[data-v-205e5f18]{display:flex;width:fit-content!important;height:28px!important;align-items:center!important;gap:8px!important;padding:4px 12px!important;text-decoration:none!important;font-size:13px!important;font-weight:450!important;background-color:rgba(0,0,0,.08)!important;color:#303030!important;border-radius:8px!important;border:none;font-family:-apple-system,BlinkMacSystemFont,San Francisco,Segoe UI,Roboto,Helvetica Neue,sans-serif}.install-app-button[data-v-205e5f18]:hover{background-color:rgba(0,0,0,.05)!important;border-radius:8px!important}.button-link[data-v-205e5f18]{text-decoration:none}@media (max-width:767px){.featured-options[data-v-205e5f18]{text-wrap:wrap}.details[data-v-205e5f18]{gap:8px}.app-tags[data-v-205e5f18]{display:flex;flex-direction:column;gap:8px;margin-bottom:8px}.lower-details[data-v-205e5f18],.upper-details[data-v-205e5f18]{flex-direction:column;flex-wrap:wrap;row-gap:2px;column-gap:8px}.install-app-button[data-v-205e5f18]{margin-right:0;margin-left:auto}}",
|
|
41924
41935
|
map: undefined,
|
|
41925
41936
|
media: undefined
|
|
41926
41937
|
});
|
|
@@ -41928,7 +41939,7 @@ const __vue_inject_styles__$6 = function (inject) {
|
|
|
41928
41939
|
/* scoped */
|
|
41929
41940
|
|
|
41930
41941
|
|
|
41931
|
-
const __vue_scope_id__$6 = "data-v-
|
|
41942
|
+
const __vue_scope_id__$6 = "data-v-205e5f18";
|
|
41932
41943
|
/* module identifier */
|
|
41933
41944
|
|
|
41934
41945
|
const __vue_module_identifier__$6 = undefined;
|
|
@@ -41944,7 +41955,7 @@ const __vue_component__$7 = /*#__PURE__*/normalizeComponent({
|
|
|
41944
41955
|
staticRenderFns: __vue_staticRenderFns__$6
|
|
41945
41956
|
}, __vue_inject_styles__$6, __vue_script__$6, __vue_scope_id__$6, __vue_is_functional_template__$6, __vue_module_identifier__$6, false, createInjector, undefined, undefined);
|
|
41946
41957
|
|
|
41947
|
-
var
|
|
41958
|
+
var AppCard = __vue_component__$7;
|
|
41948
41959
|
|
|
41949
41960
|
var script$5 = {
|
|
41950
41961
|
name: "PlanShowcaseBanner",
|
|
@@ -42017,7 +42028,7 @@ var __vue_render__$5 = function () {
|
|
|
42017
42028
|
var _c = _vm._self._c || _h;
|
|
42018
42029
|
|
|
42019
42030
|
return _c('div', [_c('div', {
|
|
42020
|
-
|
|
42031
|
+
staticClass: "plan-showcase-banner banner-card"
|
|
42021
42032
|
}, [_vm.showDescription ? _c('div', {
|
|
42022
42033
|
staticClass: "plan-left"
|
|
42023
42034
|
}, [_c('p', [_vm._v("\n " + _vm._s(_vm.translateMe("Get 24 Shopify apps and save more than")) + "\n "), _c('strong', [_vm._v(_vm._s(_vm.translateMe("$1000")))]), _vm._v("\n " + _vm._s(_vm.translateMe("per month!")) + "\n ")]), _vm._v(" "), _c('p', [_vm._v("\n " + _vm._s(_vm.translateMe("No hidden costs. Just your store getting supercharged!")) + "\n ")])]) : _vm._e(), _vm._v(" "), _c('div', {
|
|
@@ -42028,10 +42039,11 @@ var __vue_render__$5 = function () {
|
|
|
42028
42039
|
staticClass: "prices"
|
|
42029
42040
|
}, [_c('span', {
|
|
42030
42041
|
staticClass: "discounted-amount"
|
|
42031
|
-
}, [_vm._v("$" + _vm._s(_vm.translateMe(_vm.realPrice)))]), _vm._v(" "), _c('span', {
|
|
42042
|
+
}, [_vm._v("$" + _vm._s(_vm.translateMe(_vm.realPrice)))]), _vm._v(" "), _vm.realPrice < _vm.oldPrice ? _c('span', {
|
|
42032
42043
|
staticClass: "original-amount"
|
|
42033
|
-
}, [_vm._v("$" + _vm._s(_vm.translateMe(_vm.oldPrice)))])]), _vm._v(" "), !_vm.isCurrentPlan ? _c('VariantButton', {
|
|
42044
|
+
}, [_vm._v("$" + _vm._s(_vm.translateMe(_vm.oldPrice)))]) : _vm._e()]), _vm._v(" "), !_vm.isCurrentPlan ? _c('VariantButton', {
|
|
42034
42045
|
attrs: {
|
|
42046
|
+
"id": "choose-bundle",
|
|
42035
42047
|
"buttonData": {
|
|
42036
42048
|
button_url: _vm.showcaseData.button_url
|
|
42037
42049
|
},
|
|
@@ -42059,8 +42071,8 @@ var __vue_staticRenderFns__$5 = [];
|
|
|
42059
42071
|
|
|
42060
42072
|
const __vue_inject_styles__$5 = function (inject) {
|
|
42061
42073
|
if (!inject) return;
|
|
42062
|
-
inject("data-v-
|
|
42063
|
-
source: ".banner-card[data-v-
|
|
42074
|
+
inject("data-v-08ca9ff0_0", {
|
|
42075
|
+
source: ".banner-card[data-v-08ca9ff0]{display:flex;padding:16px;background-color:#fff;box-shadow:0 4px 6px -1px rgb(0 0 0 / .1),0 2px 4px -2px rgb(0 0 0 / .1);border-radius:12px;gap:16px}.plan-showcase-banner[data-v-08ca9ff0]{display:flex;justify-content:space-between;align-items:center}.plan-name[data-v-08ca9ff0]{font-size:14px;font-weight:450;color:#303030}.plan-left[data-v-08ca9ff0]{flex:1}.plan-right[data-v-08ca9ff0]{display:flex;align-items:center;gap:12px}.prices[data-v-08ca9ff0]{display:flex;gap:8px}.discounted-amount[data-v-08ca9ff0]{font-size:30px;font-weight:700;color:#303030}.original-amount[data-v-08ca9ff0]{text-decoration:line-through;color:#616161;font-size:14px;font-weight:650}.choose-button[data-v-08ca9ff0]{padding:6px 12px;background-color:#303030;background-image:linear-gradient(rgba(48,48,48,0) 63.53%,rgba(255,255,255,.15)),none;color:#fff;border-bottom-color:#fff;box-shadow:rgba(0,0,0,.8) 0 -1px 0 1px inset,#303030 0 0 0 1px inset,rgba(255,255,255,.25) 0 .5px 0 1.5px inset;border-radius:8px;text-decoration:none;font-size:13px;font-weight:650}@media (max-width:767px){.plan-showcase-banner[data-v-08ca9ff0]{flex-direction:column;gap:12px}.plan-showcase-banner[data-v-08ca9ff0]{align-items:unset}.choose-button[data-v-08ca9ff0]{margin-right:0;margin-left:auto}}@media (max-width:480px){.plan-right[data-v-08ca9ff0]{flex-direction:column;gap:8px;align-items:unset}.plan-showcase-banner[data-v-08ca9ff0]{flex-direction:column;gap:12px}.plan-showcase-banner[data-v-08ca9ff0]{align-items:unset}.choose-button[data-v-08ca9ff0]{margin-right:auto;margin-left:0}}",
|
|
42064
42076
|
map: undefined,
|
|
42065
42077
|
media: undefined
|
|
42066
42078
|
});
|
|
@@ -42068,7 +42080,7 @@ const __vue_inject_styles__$5 = function (inject) {
|
|
|
42068
42080
|
/* scoped */
|
|
42069
42081
|
|
|
42070
42082
|
|
|
42071
|
-
const __vue_scope_id__$5 = "data-v-
|
|
42083
|
+
const __vue_scope_id__$5 = "data-v-08ca9ff0";
|
|
42072
42084
|
/* module identifier */
|
|
42073
42085
|
|
|
42074
42086
|
const __vue_module_identifier__$5 = undefined;
|
|
@@ -42458,6 +42470,7 @@ var script$2 = {
|
|
|
42458
42470
|
onboard: true,
|
|
42459
42471
|
choose_later: false,
|
|
42460
42472
|
has_active_charge: false,
|
|
42473
|
+
global_plan_charge: false,
|
|
42461
42474
|
planLoading: false,
|
|
42462
42475
|
subtitleContent: '',
|
|
42463
42476
|
checkList: ["60 days free trial"],
|
|
@@ -42576,6 +42589,14 @@ var script$2 = {
|
|
|
42576
42589
|
return this.shop.plan && plan.id === this.shop.plan.id;
|
|
42577
42590
|
},
|
|
42578
42591
|
|
|
42592
|
+
isActivePlanGlobal() {
|
|
42593
|
+
return this.shop.plan.is_global;
|
|
42594
|
+
},
|
|
42595
|
+
|
|
42596
|
+
isActiveGlobalCharge() {
|
|
42597
|
+
return this.global_plan_charge;
|
|
42598
|
+
},
|
|
42599
|
+
|
|
42579
42600
|
isSamePlanInOtherInterval(plan) {
|
|
42580
42601
|
return this.shop.plan && plan.shopify_plans === this.shop.plan.shopify_plans;
|
|
42581
42602
|
},
|
|
@@ -42756,7 +42777,7 @@ var script$2 = {
|
|
|
42756
42777
|
});
|
|
42757
42778
|
|
|
42758
42779
|
if (data.plans.length) {
|
|
42759
|
-
var _this$plans, _this$plan;
|
|
42780
|
+
var _this$plans, _this$plan, _this$plan2;
|
|
42760
42781
|
|
|
42761
42782
|
for (let i = 0; i < data.plans.length; i++) {
|
|
42762
42783
|
if (data.plans[i].interval === 'ANNUAL') {
|
|
@@ -42777,11 +42798,16 @@ var script$2 = {
|
|
|
42777
42798
|
this.selectedPlan = 'annually';
|
|
42778
42799
|
}
|
|
42779
42800
|
|
|
42801
|
+
if ((_this$plan2 = this.plan) !== null && _this$plan2 !== void 0 && _this$plan2.is_global) {
|
|
42802
|
+
this.selectedPlan = 'bundle';
|
|
42803
|
+
}
|
|
42804
|
+
|
|
42780
42805
|
this.shopify_plan = data.shopify_plan;
|
|
42781
42806
|
this.default_plan_id = data.default_plan_id;
|
|
42782
42807
|
this.choose_later = data.choose_later;
|
|
42783
42808
|
this.onboard = this.default_plan_id && this.choose_later;
|
|
42784
42809
|
this.has_active_charge = data.has_active_charge;
|
|
42810
|
+
this.global_plan_charge = data.global_plan_charge;
|
|
42785
42811
|
this.promotional_discount = data.promotional_discount !== undefined ? data.promotional_discount : [];
|
|
42786
42812
|
|
|
42787
42813
|
if (data.bundle_plan) {
|
|
@@ -42842,6 +42868,9 @@ var script$2 = {
|
|
|
42842
42868
|
await this.fetchFeatures();
|
|
42843
42869
|
await this.fetchPlans();
|
|
42844
42870
|
this.planLoading = false;
|
|
42871
|
+
this.$nextTick(() => {
|
|
42872
|
+
this.selectPlan(this.selectedPlan);
|
|
42873
|
+
});
|
|
42845
42874
|
}
|
|
42846
42875
|
|
|
42847
42876
|
};
|
|
@@ -42872,7 +42901,7 @@ var __vue_render__$2 = function () {
|
|
|
42872
42901
|
}), _vm._v(" "), _c('PPage', {
|
|
42873
42902
|
staticClass: "app-manager-plan-page custom-title",
|
|
42874
42903
|
attrs: {
|
|
42875
|
-
"title": _vm.translateMe('Plans'),
|
|
42904
|
+
"title": _vm.selectedPlan === 'bundle' ? '' : _vm.translateMe('Plans'),
|
|
42876
42905
|
"subtitle": _vm.subtitleContent
|
|
42877
42906
|
}
|
|
42878
42907
|
}, [_c('PStack', {
|
|
@@ -42888,6 +42917,7 @@ var __vue_render__$2 = function () {
|
|
|
42888
42917
|
staticClass: "button-group-new"
|
|
42889
42918
|
}, [_c('VariantButton', {
|
|
42890
42919
|
attrs: {
|
|
42920
|
+
"id": "pricing-tab",
|
|
42891
42921
|
"variant": _vm.selectedPlan === 'monthly' ? 'primary' : 'secondary',
|
|
42892
42922
|
"additionalText": '1 App'
|
|
42893
42923
|
},
|
|
@@ -42898,6 +42928,7 @@ var __vue_render__$2 = function () {
|
|
|
42898
42928
|
}
|
|
42899
42929
|
}, [_vm._v("\n " + _vm._s(_vm.translateMe('Monthly')) + "\n ")]), _vm._v(" "), _vm.valid_annual_plans.length > 0 ? _c('VariantButton', {
|
|
42900
42930
|
attrs: {
|
|
42931
|
+
"id": "pricing-tab",
|
|
42901
42932
|
"variant": _vm.selectedPlan === 'annually' ? 'primary' : 'secondary'
|
|
42902
42933
|
},
|
|
42903
42934
|
on: {
|
|
@@ -42907,8 +42938,9 @@ var __vue_render__$2 = function () {
|
|
|
42907
42938
|
}
|
|
42908
42939
|
}, [_vm._v("\n " + _vm._s(_vm.translateMe('Annually')) + "\n ")]) : _vm._e(), _vm._v(" "), _vm.bundle_plan !== null ? _c('VariantButton', {
|
|
42909
42940
|
attrs: {
|
|
42941
|
+
"id": "pricing-tab",
|
|
42910
42942
|
"variant": _vm.selectedPlan === 'bundle' ? 'primary' : 'secondary',
|
|
42911
|
-
"additionalText": '
|
|
42943
|
+
"additionalText": '25 Apps'
|
|
42912
42944
|
},
|
|
42913
42945
|
on: {
|
|
42914
42946
|
"click": function ($event) {
|
|
@@ -43263,7 +43295,7 @@ var __vue_render__$2 = function () {
|
|
|
43263
43295
|
"full-width": "",
|
|
43264
43296
|
"pressed": _vm.isCurrentPlan(plan)
|
|
43265
43297
|
}
|
|
43266
|
-
}, [_vm._v("\n " + _vm._s(_vm.translateMe('Current Plan')) + "\n ")]) : !plan.store_base_plan || plan.shopify_plans.includes(_vm.shop.shopify_plan) ? _c('PButton', {
|
|
43298
|
+
}, [_vm._v("\n " + _vm._s(_vm.translateMe('Current Plan')) + "\n ")]) : (_vm.isActivePlanGlobal() ? _vm.isActiveGlobalCharge() : !plan.store_base_plan || plan.shopify_plans.includes(_vm.shop.shopify_plan)) ? _c('PButton', {
|
|
43267
43299
|
staticClass: "custom-choose-button",
|
|
43268
43300
|
attrs: {
|
|
43269
43301
|
"full-width": ""
|
|
@@ -43370,7 +43402,7 @@ var __vue_staticRenderFns__$2 = [];
|
|
|
43370
43402
|
|
|
43371
43403
|
const __vue_inject_styles__$2 = function (inject) {
|
|
43372
43404
|
if (!inject) return;
|
|
43373
|
-
inject("data-v-
|
|
43405
|
+
inject("data-v-2f2df163_0", {
|
|
43374
43406
|
source: "@import url(https://fonts.googleapis.com/css2?family=Satisfy&display=swap);.app-manager .app-manager-plan-page .plan-table td:last-child>[data-v-5a078dbb],.app-manager .app-manager-plan-page .plan-table td:last-child>[data-v-7d902277]{float:none}.app-manager .app-manager-plan-page .active{background:#f0f8f5}.app-manager .app-manager-plan-page .plan-table td:last-child>[data-v-0d1b0d63]{float:none}.app-manager .app-manager-plan-page .plan-table td{border:.01px solid #ececee!important;border-collapse:collapse!important}.app-manager .app-manager-plan-page .plan-table .Polaris-DataTable__ScrollContainer{border-radius:12px;overflow:visible}.app-manager .app-manager-plan-page .plan-table table{border-collapse:collapse!important}.app-manager .app-manager-plan-page .custom-plan table{border-collapse:collapse!important}.app-manager .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 .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 .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 .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 .app-manager-plan-page .custom-plan table tbody tr:not(:first-child:last-child){background-color:#fff;overflow:hidden}.app-manager .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 .app-manager-plan-page .custom-plan table tbody tr:not(:nth-last-child(2)){background-color:#fff;overflow:hidden}.app-manager .app-manager-plan-page .custom-plan table tbody tr:not(:nth-last-child(2)){border-bottom:0}.app-manager .app-manager-plan-page .custom-plan table tbody tr:last-child{border-bottom:0;background-color:transparent!important;box-shadow:none!important}.app-manager .app-manager-plan-page .custom-plan table tbody tr:not(:last-child){pointer-events:none}.app-manager .app-manager-plan-page .custom-plan table thead tr td{pointer-events:none}.app-manager .app-manager-plan-page .custom-plan table tbody tr:first-child td:first-child{overflow:hidden;border-radius:12px 0 0 0}.app-manager .app-manager-plan-page .custom-plan table tbody tr:nth-last-child(2){overflow:hidden;border-bottom-right-radius:0;border-bottom-left-radius:12px}.app-manager .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 .app-manager-plan-page .custom-plan table tbody tr:nth-last-child(2) td:last-child{overflow:hidden;border-radius:0 0 0}.app-manager .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 .app-manager-plan-page .custom-plan table tbody tr td:last-child{text-align:center!important}.app-manager .app-manager-plan-page .custom-plan table thead tr td:last-child{text-align:center!important}.app-manager .app-manager-plan-page .custom-plan table tbody td:not(:first-child){text-align:center!important}.app-manager .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 .app-manager-plan-page .custom-plan table tbody tr:last-child td:nth-child(2){border-radius:0 0 0 12px!important}.app-manager .app-manager-plan-page .custom-plan table tbody tr:last-child td{background:0 0}.app-manager .app-manager-plan-page .custom-plan table tbody tr:last-child td:hover{border:0!important;background:0 0}.app-manager .app-manager-plan-page .custom-plan tbody tr:last-child td.Polaris-DataTable__Cell--verticalAlignTop{background:0 0!important}.app-manager .app-manager-plan-page .custom-plan table tbody tr:last-child{background:#fff!important;opacity:1}.app-manager .app-manager-plan-page .custom-plan table tbody tr:last-child td:first-child{visibility:hidden;border-bottom:none!important}.app-manager .app-manager-plan-page .plan-heading{padding-top:30px}.app-manager .app-manager-plan-page .custom-plan .Polaris-Layout__Section{max-width:calc(100% - 2rem)!important}.app-manager .app-manager-plan-page .later-link{text-align:center;clear:both;padding-top:15px}.app-manager .app-manager-plan-page .plan-badge ul{text-align:center;padding-top:2rem;border-top:.1rem solid #e1e3e5}.app-manager .app-manager-plan-page .plan-badge ul li{list-style:none;display:inline-block;padding-right:25px}.app-manager .app-manager-plan-page .plan-badge ul li img{max-width:133px}.app-manager .app-manager-plan-page .btn-group .Polaris-ButtonGroup__Item{margin-left:0!important;z-index:unset!important}.app-manager .Polaris-Button::after{box-shadow:none!important}.app-manager .Polaris-Button:focus{box-shadow:none!important;border-color:#000!important}.app-manager .app-manager-plan-page.custom-title .Polaris-HorizontalDivider{background-color:#e2e3e4}.app-manager .app-manager-plan-page .Polaris-Page__Content hr{border:1px solid #e2e3e4}.app-manager .app-manager-plan-page .app-manager-group-row{background:0 0!important;padding:16px 16px 16px 20px!important}.app-manager .app-manager-plan-page .feature__type__array{vertical-align:middle!important;word-spacing:999px;white-space:pre-line!important}.app-manager .app-manager-plan-page .Polaris-DataTable__Table{table-layout:fixed!important}.app-manager .app-manager-plan-page td{vertical-align:middle!important}.app-manager .app-manager-plan-page td.feature__class{word-wrap:break-word!important;white-space:normal!important}.app-manager .app-manager-plan-page .light-green-cell{background-color:#f0f8f5;color:#257f60}.app-manager .app-manager-plan-page .plan-heading b{overflow-wrap:break-word;word-wrap:break-word;white-space:initial}.bundle-plan{display:none;flex-direction:column;gap:20px}.bundle-category{display:flex;flex-direction:column;gap:20px;margin-bottom:10px}.bundle-category-apps{display:flex;flex-direction:column;gap:10px}.light-divider{border-top:1px solid #e3e3e3;margin-top:10px;margin-bottom:10px}.app-manager .Polaris-Icon--colorSuccess svg{fill:#000!important}.button-group-new{display:flex;align-items:center;justify-content:center;gap:4px}@media (min-width:0px) and (max-width:576px){.app-manager .app-manager,.app-manager .app-manager-body{overflow-x:scroll}}@media (max-width:700px){.app-manager .Polaris-DataTable__Table{width:auto!important}}",
|
|
43375
43407
|
map: undefined,
|
|
43376
43408
|
media: undefined
|
|
@@ -43459,6 +43491,7 @@ var script$1 = {
|
|
|
43459
43491
|
onboard: true,
|
|
43460
43492
|
choose_later: false,
|
|
43461
43493
|
has_active_charge: false,
|
|
43494
|
+
global_plan_charge: false,
|
|
43462
43495
|
subtitleContent: '',
|
|
43463
43496
|
checkList: ["60 days free trial"],
|
|
43464
43497
|
selectedPlan: 'monthly',
|
|
@@ -43617,6 +43650,14 @@ var script$1 = {
|
|
|
43617
43650
|
return this.has_active_charge && this.shop.plan && (plan.id === this.shop.plan.id || !plan.is_custom && plan.base_plan === this.shop.plan.id);
|
|
43618
43651
|
},
|
|
43619
43652
|
|
|
43653
|
+
isActivePlanGlobal() {
|
|
43654
|
+
return this.shop.plan.is_global;
|
|
43655
|
+
},
|
|
43656
|
+
|
|
43657
|
+
isActiveGlobalCharge() {
|
|
43658
|
+
return this.global_plan_charge;
|
|
43659
|
+
},
|
|
43660
|
+
|
|
43620
43661
|
isSamePlanInOtherInterval(plan) {
|
|
43621
43662
|
return this.shop.plan && plan.shopify_plans === this.shop.plan.shopify_plans;
|
|
43622
43663
|
},
|
|
@@ -43839,7 +43880,7 @@ var script$1 = {
|
|
|
43839
43880
|
});
|
|
43840
43881
|
|
|
43841
43882
|
if (data.plans.length) {
|
|
43842
|
-
var _this$plans, _this$plan;
|
|
43883
|
+
var _this$plans, _this$plan, _this$plan2;
|
|
43843
43884
|
|
|
43844
43885
|
for (let i = 0; i < data.plans.length; i++) {
|
|
43845
43886
|
if (data.plans[i].interval === 'ANNUAL') {
|
|
@@ -43860,11 +43901,16 @@ var script$1 = {
|
|
|
43860
43901
|
this.selectedPlan = 'annually';
|
|
43861
43902
|
}
|
|
43862
43903
|
|
|
43904
|
+
if ((_this$plan2 = this.plan) !== null && _this$plan2 !== void 0 && _this$plan2.is_global) {
|
|
43905
|
+
this.selectedPlan = 'bundle';
|
|
43906
|
+
}
|
|
43907
|
+
|
|
43863
43908
|
this.shopify_plan = data.shopify_plan;
|
|
43864
43909
|
this.default_plan_id = data.default_plan_id;
|
|
43865
43910
|
this.choose_later = data.choose_later;
|
|
43866
43911
|
this.onboard = this.default_plan_id && this.choose_later;
|
|
43867
43912
|
this.has_active_charge = data.has_active_charge;
|
|
43913
|
+
this.global_plan_charge = data.global_plan_charge;
|
|
43868
43914
|
this.promotional_discount = data.promotional_discount !== undefined ? data.promotional_discount : [];
|
|
43869
43915
|
|
|
43870
43916
|
if (data.bundle_plan) {
|
|
@@ -43980,6 +44026,7 @@ var script$1 = {
|
|
|
43980
44026
|
}
|
|
43981
44027
|
}
|
|
43982
44028
|
}, 100);
|
|
44029
|
+
this.selectPlan(this.selectedPlan);
|
|
43983
44030
|
});
|
|
43984
44031
|
}
|
|
43985
44032
|
|
|
@@ -44013,7 +44060,7 @@ var __vue_render__$1 = function () {
|
|
|
44013
44060
|
}), _vm._v(" "), _c('PPage', {
|
|
44014
44061
|
staticClass: "app-manager-plan-page-slider custom-title",
|
|
44015
44062
|
attrs: {
|
|
44016
|
-
"title": _vm.translateMe('Plans'),
|
|
44063
|
+
"title": _vm.selectedPlan === 'bundle' ? '' : _vm.translateMe('Plans'),
|
|
44017
44064
|
"subtitle": _vm.subtitleContent
|
|
44018
44065
|
}
|
|
44019
44066
|
}, [_c('PStack', {
|
|
@@ -44029,6 +44076,7 @@ var __vue_render__$1 = function () {
|
|
|
44029
44076
|
staticClass: "button-group-new"
|
|
44030
44077
|
}, [_c('VariantButton', {
|
|
44031
44078
|
attrs: {
|
|
44079
|
+
"id": "pricing-tab",
|
|
44032
44080
|
"variant": _vm.selectedPlan === 'monthly' ? 'primary' : 'secondary',
|
|
44033
44081
|
"additionalText": '1 App'
|
|
44034
44082
|
},
|
|
@@ -44039,6 +44087,7 @@ var __vue_render__$1 = function () {
|
|
|
44039
44087
|
}
|
|
44040
44088
|
}, [_vm._v("\n " + _vm._s(_vm.translateMe('Monthly')) + "\n ")]), _vm._v(" "), _vm.valid_annual_plans.length > 0 ? _c('VariantButton', {
|
|
44041
44089
|
attrs: {
|
|
44090
|
+
"id": "pricing-tab",
|
|
44042
44091
|
"variant": _vm.selectedPlan === 'annually' ? 'primary' : 'secondary'
|
|
44043
44092
|
},
|
|
44044
44093
|
on: {
|
|
@@ -44048,8 +44097,9 @@ var __vue_render__$1 = function () {
|
|
|
44048
44097
|
}
|
|
44049
44098
|
}, [_vm._v("\n " + _vm._s(_vm.translateMe('Annually')) + "\n ")]) : _vm._e(), _vm._v(" "), _vm.bundle_plan !== null ? _c('VariantButton', {
|
|
44050
44099
|
attrs: {
|
|
44100
|
+
"id": "pricing-tab",
|
|
44051
44101
|
"variant": _vm.selectedPlan === 'bundle' ? 'primary' : 'secondary',
|
|
44052
|
-
"additionalText": '
|
|
44102
|
+
"additionalText": '25 Apps'
|
|
44053
44103
|
},
|
|
44054
44104
|
on: {
|
|
44055
44105
|
"click": function ($event) {
|
|
@@ -44287,7 +44337,7 @@ var __vue_render__$1 = function () {
|
|
|
44287
44337
|
"full-width": "",
|
|
44288
44338
|
"pressed": _vm.isCurrentPlan(plan)
|
|
44289
44339
|
}
|
|
44290
|
-
}, [_vm._v("\n " + _vm._s(_vm.translateMe('Current Plan')) + "\n ")]) : !plan.store_base_plan || plan.shopify_plans.includes(_vm.shop.shopify_plan) ? _c('PButton', {
|
|
44340
|
+
}, [_vm._v("\n " + _vm._s(_vm.translateMe('Current Plan')) + "\n ")]) : (_vm.isActivePlanGlobal() ? _vm.isActiveGlobalCharge() : !plan.store_base_plan || plan.shopify_plans.includes(_vm.shop.shopify_plan)) ? _c('PButton', {
|
|
44291
44341
|
staticClass: "custom-choose-button",
|
|
44292
44342
|
attrs: {
|
|
44293
44343
|
"full-width": ""
|
|
@@ -44390,7 +44440,7 @@ var __vue_staticRenderFns__$1 = [];
|
|
|
44390
44440
|
|
|
44391
44441
|
const __vue_inject_styles__$1 = function (inject) {
|
|
44392
44442
|
if (!inject) return;
|
|
44393
|
-
inject("data-v-
|
|
44443
|
+
inject("data-v-0aac6342_0", {
|
|
44394
44444
|
source: "@import url(https://fonts.googleapis.com/css2?family=Satisfy&display=swap);.app-manager .app-manager-plan-page-slider ul{list-style:none;margin:0;padding:0}.app-manager .app-manager-plan-page-slider .Polaris-Layout__Section .VueCarousel-slide li,.app-manager .app-manager-plan-page-slider .Polaris-ResourceList__ResourceListWrapper.features li,.app-manager .app-manager-plan-page-slider .plan__price{padding:16px 16px 16px 20px}.app-manager .app-manager-plan-page-slider .Polaris-Layout.custom-plan .VueCarousel .plan__price,.app-manager .app-manager-plan-page-slider .Polaris-Layout__Section .VueCarousel-slide li:not(:last-child),.app-manager .app-manager-plan-page-slider .Polaris-ResourceList__ResourceListWrapper.features li{border-top:1px solid #ddd;border-right:1px solid #ddd;background:#fff}.app-manager .app-manager-plan-page-slider .Polaris-ResourceList__ResourceListWrapper.features li{border-right:none;border-left:1px solid #ddd}.app-manager .app-manager-plan-page-slider .Polaris-Layout__Section .VueCarousel-slide li:nth-last-child(2),.app-manager .app-manager-plan-page-slider .Polaris-ResourceList__ResourceListWrapper.features li:last-child{border-bottom:1px solid #ddd}.app-manager .app-manager-plan-page-slider .Polaris-ResourceList__ResourceListWrapper.features li:first-child{border-top-left-radius:12px}.app-manager .app-manager-plan-page-slider .Polaris-ResourceList__ResourceListWrapper.features li:last-child{border-bottom-left-radius:12px}.app-manager .app-manager-plan-page-slider .VueCarousel-inner .VueCarousel-slide.first-slide ul li:not(:last-child){border-left:1px solid #ddd}.app-manager .app-manager-plan-page-slider .VueCarousel-inner .VueCarousel-slide.first-slide .plan__price{border-left:1px solid #ddd;box-shadow:none;border-top-left-radius:12px;overflow:hidden}.app-manager .app-manager-plan-page-slider .VueCarousel-inner .VueCarousel-slide.last-slide ul li:nth-last-child(2){border-bottom-right-radius:12px}.app-manager .app-manager-plan-page-slider .VueCarousel-inner .VueCarousel-slide.first-slide ul li:nth-last-child(2){border-bottom-left-radius:12px}.app-manager .app-manager-plan-page-slider .VueCarousel-inner .VueCarousel-slide.last-slide .plan__price{border-right:1px solid #ddd;box-shadow:none;border-top-right-radius:12px;overflow:hidden}.app-manager .app-manager-plan-page-slider .VueCarousel-inner .VueCarousel-slide.last-slide{border-top-right-radius:12px}.app-manager .app-manager-plan-page-slider .VueCarousel-inner .VueCarousel-slide.first-slide{border-top-left-radius:12px}.app-manager .app-manager-plan-page-slider .VueCarousel .VueCarousel-inner li{text-align:center}.app-manager .app-manager-plan-page-slider .VueCarousel-navigation-button{color:#257f60}.app-manager .app-manager-plan-page-slider .btn-group .Polaris-ButtonGroup__Item{margin-left:0!important;z-index:unset!important}.app-manager .Polaris-Button::after{box-shadow:none!important}.app-manager .Polaris-Button:focus{box-shadow:none!important;border-color:#000!important}.app-manager .app-manager-plan-page-slider .feature__list,.app-manager .app-manager-plan-page-slider .feature__type__array{display:flex;align-items:center;word-spacing:999px;justify-content:center}.app-manager .app-manager-plan-page-slider .feature__type__array.feature__class{justify-content:left}.app-manager .app-manager-plan-page-slider .plan-heading b{overflow-wrap:break-word;word-wrap:break-word;white-space:initial}.app-manager-plan-banner{margin-right:30px;margin-left:30px}.bundle-plan{display:none;flex-direction:column;gap:20px}.bundle-category{display:flex;flex-direction:column;gap:20px;margin-bottom:10px}.bundle-category-apps{display:flex;flex-direction:column;gap:10px}.light-divider{border-top:1px solid #e3e3e3;margin-top:10px;margin-bottom:10px}.app-manager .Polaris-Icon--colorSuccess svg{fill:#000!important}.button-group-new{display:flex;align-items:center;justify-content:center;gap:4px}@media (min-width:0px) and (max-width:576px){.custom-plan>.Polaris-Layout__Section>.VueCarousel>.VueCarousel-wrapper>.VueCarousel-inner{overflow-x:scroll}}@media (max-width:700px){.Polaris-ButtonGroup__Item{width:auto!important}.app-manager .Polaris-Button{padding:7px 8px!important}}@media (min-width:0px) and (max-width:467px){.app-manager .Polaris-Page-Header__RightAlign{margin-left:-34px!important}#app_manager>div>div.Polaris-Page-Header.Polaris-Page-Header--hasNavigation.Polaris-Page-Header--mediumTitle.Polaris-Page-Header--mobileView>div>div.Polaris-Page-Header__RightAlign>div>div>div>div>div>div:nth-child(2)>button>span>span>div>div>div>span>span>div{width:222px!important}.app-manager .app-manager-plan-page-slider .Polaris-Layout__Section .VueCarousel-slide li:nth-last-child(2){min-height:100px!important}.app-manager .app-manager-plan-page-slider .Polaris-ResourceList__ResourceListWrapper.features li{padding:16px 16px 16px 5px}.app-manager .Polaris-Button{padding:7px 8px!important}.VueCarousel-slide{flex-basis:auto!important}.Polaris-ResourceList__ResourceListWrapper.features{width:30%!important}}@media (min-width:467px) and (max-width:1003px){#app_manager>div>div.Polaris-Page-Header.Polaris-Page-Header--hasNavigation.Polaris-Page-Header--mediumTitle.Polaris-Page-Header--mobileView>div>div.Polaris-Page-Header__RightAlign>div>div>div>div>div>div:nth-child(2)>button>span>span>div>div>div>span>span>div{width:222px!important}.app-manager .app-manager-plan-page-slider .Polaris-Layout__Section .VueCarousel-slide li:nth-last-child(2){min-height:100px!important}.app-manager .Polaris-Button{padding:7px 8px!important}}",
|
|
44395
44445
|
map: undefined,
|
|
44396
44446
|
media: undefined
|