@hulkapps/app-manager-vue 3.1.5 → 3.1.6
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 -8
- package/dist/app-manager-vue.min.js +3 -3
- package/dist/app-manager-vue.ssr.js +32 -25
- 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/PolarisNew/CategoryHeading.vue +6 -1
- package/src/components/PolarisNew/PlanTable.vue +14 -3
package/package.json
CHANGED
|
@@ -43,7 +43,7 @@ export default {
|
|
|
43
43
|
.category-heading {
|
|
44
44
|
display: flex;
|
|
45
45
|
flex-direction: column;
|
|
46
|
-
align-items:
|
|
46
|
+
align-items: flex-start;
|
|
47
47
|
gap: 4px;
|
|
48
48
|
}
|
|
49
49
|
.category-name {
|
|
@@ -58,4 +58,9 @@ export default {
|
|
|
58
58
|
font-variation-settings: "slnt" 0;
|
|
59
59
|
color: #1A1A1A;
|
|
60
60
|
}
|
|
61
|
+
@media (max-width: 640px) {
|
|
62
|
+
.category-heading {
|
|
63
|
+
padding-left: 16px;
|
|
64
|
+
}
|
|
65
|
+
}
|
|
61
66
|
</style>
|
|
@@ -111,6 +111,11 @@ export default {
|
|
|
111
111
|
const planNames = document.querySelectorAll(
|
|
112
112
|
`.plan-header-wrapper${planType}`
|
|
113
113
|
);
|
|
114
|
+
if (planNames) {
|
|
115
|
+
planNames.forEach((el) => {
|
|
116
|
+
el.style.minHeight = `unset`;
|
|
117
|
+
});
|
|
118
|
+
}
|
|
114
119
|
const plansAvailableName = document.querySelector(
|
|
115
120
|
`.plans-available${planType}`
|
|
116
121
|
);
|
|
@@ -514,7 +519,7 @@ export default {
|
|
|
514
519
|
<div class="pricing-table-inner__left" id="table-left">
|
|
515
520
|
<div class="table-header plans-available plans-available-monthly">
|
|
516
521
|
<h3>
|
|
517
|
-
{{ monthlyPlans.length }} {{ translateMe("plans available") }}
|
|
522
|
+
{{ monthlyPlans.length }} {{ monthlyPlans.length > 1 ? translateMe("plans available") : translateMe("plan available") }}
|
|
518
523
|
</h3>
|
|
519
524
|
</div>
|
|
520
525
|
<template v-for="group in monthlyPlansFeatures">
|
|
@@ -628,7 +633,7 @@ export default {
|
|
|
628
633
|
<div class="pricing-table annually-table">
|
|
629
634
|
<div class="pricing-table-inner__left" id="table-left">
|
|
630
635
|
<div class="table-header plans-available plans-available-annually">
|
|
631
|
-
<h3>{{ annualPlans.length }} {{ translateMe("plans available") }}</h3>
|
|
636
|
+
<h3>{{ annualPlans.length }} {{ annualPlans.length > 1 ? translateMe("plans available") : translateMe("plan available") }}</h3>
|
|
632
637
|
</div>
|
|
633
638
|
<template v-for="group in annualPlansFeatures">
|
|
634
639
|
<div v-if="group.name" class="feature-group-header plan-feature-name plan-feature-name-annually">
|
|
@@ -844,7 +849,7 @@ export default {
|
|
|
844
849
|
.plan-header-wrapper {
|
|
845
850
|
display: flex;
|
|
846
851
|
flex-direction: column;
|
|
847
|
-
justify-content:
|
|
852
|
+
justify-content: space-between;
|
|
848
853
|
align-items: center;
|
|
849
854
|
gap: 12px;
|
|
850
855
|
background-color: #f1f1f1;
|
|
@@ -875,6 +880,7 @@ export default {
|
|
|
875
880
|
}
|
|
876
881
|
|
|
877
882
|
.plan-header-wrapper .price-wrapper .strike-price {
|
|
883
|
+
color: #4A4A4A;
|
|
878
884
|
text-decoration: line-through;
|
|
879
885
|
}
|
|
880
886
|
|
|
@@ -991,6 +997,11 @@ export default {
|
|
|
991
997
|
}
|
|
992
998
|
|
|
993
999
|
.feature-group-header.plan-feature-name {
|
|
1000
|
+
font-size: 14px !important;
|
|
1001
|
+
padding-left: 12px !important;
|
|
1002
|
+
}
|
|
1003
|
+
|
|
1004
|
+
.feature-group-header.plan-feature {
|
|
994
1005
|
font-size: 0 !important;
|
|
995
1006
|
}
|
|
996
1007
|
|