@hulkapps/app-manager-vue 3.1.16 → 3.1.18
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 +15 -6
- package/dist/app-manager-vue.min.js +3 -3
- package/dist/app-manager-vue.ssr.js +43 -29
- 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/AppManagerSliderPlan.vue +10 -0
- package/src/components/PolarisNew/PlanTable.vue +6 -0
package/package.json
CHANGED
|
@@ -396,6 +396,9 @@ export default {
|
|
|
396
396
|
if (this.discount_code !== null) {
|
|
397
397
|
params['discount_code'] = this.discount_code;
|
|
398
398
|
}
|
|
399
|
+
if (window && window.APP_MANAGER_FRONTEND_SDK_VERSION !== undefined) {
|
|
400
|
+
params['frontend_sdk_version'] = window.APP_MANAGER_FRONTEND_SDK_VERSION
|
|
401
|
+
}
|
|
399
402
|
let {data} = await axios.get(`${this.app_manager_config.baseUrl}/api/app-manager/plans`, {params: params}).catch(error => {
|
|
400
403
|
console.error(error)
|
|
401
404
|
});
|
|
@@ -1122,6 +1125,13 @@ button.swiper-pagination-bullet {
|
|
|
1122
1125
|
overflow: hidden;
|
|
1123
1126
|
}
|
|
1124
1127
|
|
|
1128
|
+
.app-manager-wrapper,
|
|
1129
|
+
.app-manager-wrapper *,
|
|
1130
|
+
.app-manager-wrapper *::before,
|
|
1131
|
+
.app-manager-wrapper *::after {
|
|
1132
|
+
box-sizing: border-box !important;
|
|
1133
|
+
}
|
|
1134
|
+
|
|
1125
1135
|
.app-manager .app-manager-wrapper {
|
|
1126
1136
|
padding-top: 16px;
|
|
1127
1137
|
}
|
|
@@ -1056,6 +1056,12 @@ export default {
|
|
|
1056
1056
|
border-right: 1px solid #e3e3e3;
|
|
1057
1057
|
}
|
|
1058
1058
|
|
|
1059
|
+
#table-left,
|
|
1060
|
+
#plans-table {
|
|
1061
|
+
overflow: auto !important;
|
|
1062
|
+
overscroll-behavior: none !important;
|
|
1063
|
+
}
|
|
1064
|
+
|
|
1059
1065
|
@media (max-width: 1024px) {
|
|
1060
1066
|
.plan-header-wrapper .price-wrapper .mobile-plan-name {
|
|
1061
1067
|
display: inline-block;
|