@hulkapps/app-manager-vue 3.1.15 → 3.1.17

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hulkapps/app-manager-vue",
3
- "version": "3.1.15",
3
+ "version": "3.1.17",
4
4
  "description": "Vue SDK to render app manager contents",
5
5
  "main": "dist/app-manager-vue.ssr.js",
6
6
  "browser": "dist/app-manager-vue.esm.js",
@@ -1122,6 +1122,13 @@ button.swiper-pagination-bullet {
1122
1122
  overflow: hidden;
1123
1123
  }
1124
1124
 
1125
+ .app-manager-wrapper,
1126
+ .app-manager-wrapper *,
1127
+ .app-manager-wrapper *::before,
1128
+ .app-manager-wrapper *::after {
1129
+ box-sizing: border-box !important;
1130
+ }
1131
+
1125
1132
  .app-manager .app-manager-wrapper {
1126
1133
  padding-top: 16px;
1127
1134
  }
@@ -441,6 +441,7 @@ export default {
441
441
  visibility:
442
442
  plan.description
443
443
  && selectedInterval === 'monthly'
444
+ && plan.is_custom === false
444
445
  ? 'visible'
445
446
  : 'hidden',
446
447
  }"
@@ -572,6 +573,7 @@ export default {
572
573
  visibility:
573
574
  plan.description
574
575
  && selectedInterval === 'annually'
576
+ && plan.is_custom === false
575
577
  ? 'visible'
576
578
  : 'hidden',
577
579
  }"
@@ -742,8 +744,10 @@ export default {
742
744
  color: #4A4A4A;
743
745
  }
744
746
 
747
+ .card .trial_days,
745
748
  .card .description {
746
749
  text-align: center;
750
+ text-transform: unset;
747
751
  }
748
752
 
749
753
  .card .plan-note {
@@ -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;
@@ -1077,6 +1083,15 @@ export default {
1077
1083
 
1078
1084
  .pricing-table {
1079
1085
  width: calc(100% + -2px);
1086
+ grid-template-columns: repeat(4, 1fr);
1087
+ }
1088
+
1089
+ .pricing-table-inner__left {
1090
+ grid-column: span 2;
1091
+ }
1092
+
1093
+ .plans {
1094
+ grid-column: span 2;
1080
1095
  }
1081
1096
  }
1082
1097