@hulkapps/app-manager-vue 2.5.4 → 2.5.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hulkapps/app-manager-vue",
3
- "version": "2.5.4",
3
+ "version": "2.5.6",
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",
@@ -65,13 +65,13 @@
65
65
  <YearlyPlanPromotion />
66
66
  </PButton> -->
67
67
  <div class="button-group-new">
68
- <VariantButton :variant="selectedPlan === 'monthly' ? 'primary' : 'secondary'" @click="selectPlan('monthly')" :additionalText="'1 App'">
68
+ <VariantButton id="pricing-tab" :variant="selectedPlan === 'monthly' ? 'primary' : 'secondary'" @click="selectPlan('monthly')" :additionalText="'1 App'">
69
69
  {{ translateMe('Monthly') }}
70
70
  </VariantButton>
71
- <VariantButton v-if="valid_annual_plans.length > 0" :variant="selectedPlan === 'annually' ? 'primary' : 'secondary'" @click="selectPlan('annually')">
71
+ <VariantButton id="pricing-tab" v-if="valid_annual_plans.length > 0" :variant="selectedPlan === 'annually' ? 'primary' : 'secondary'" @click="selectPlan('annually')">
72
72
  {{ translateMe('Annually') }}
73
73
  </VariantButton>
74
- <VariantButton v-if="bundle_plan !== null" :variant="selectedPlan === 'bundle' ? 'primary' : 'secondary'" @click="selectPlan('bundle')" :additionalText="'24 Apps'">
74
+ <VariantButton id="pricing-tab" v-if="bundle_plan !== null" :variant="selectedPlan === 'bundle' ? 'primary' : 'secondary'" @click="selectPlan('bundle')" :additionalText="'24 Apps'">
75
75
  {{ translateMe('Bundle') }}
76
76
  </VariantButton>
77
77
  </div>
@@ -807,6 +807,13 @@
807
807
  margin-left: 0px !important;
808
808
  z-index: unset !important;
809
809
  }
810
+ .app-manager .Polaris-Button::after {
811
+ box-shadow: none !important;
812
+ }
813
+ .app-manager .Polaris-Button:focus {
814
+ box-shadow: none !important;
815
+ border-color: black !important;
816
+ }
810
817
  .app-manager .app-manager-plan-page.custom-title .Polaris-HorizontalDivider{
811
818
  background-color: #e2e3e4;
812
819
  }
@@ -69,13 +69,13 @@
69
69
  <p style="font-size: 17px; font-weight: 500" slot="default">{{translateMe('Bundle')}}</p>
70
70
  </PButton> -->
71
71
  <div class="button-group-new">
72
- <VariantButton :variant="selectedPlan === 'monthly' ? 'primary' : 'secondary'" @click="selectPlan('monthly')" :additionalText="'1 App'">
72
+ <VariantButton id="pricing-tab" :variant="selectedPlan === 'monthly' ? 'primary' : 'secondary'" @click="selectPlan('monthly')" :additionalText="'1 App'">
73
73
  {{ translateMe('Monthly') }}
74
74
  </VariantButton>
75
- <VariantButton v-if="valid_annual_plans.length > 0" :variant="selectedPlan === 'annually' ? 'primary' : 'secondary'" @click="selectPlan('annually')">
75
+ <VariantButton id="pricing-tab" v-if="valid_annual_plans.length > 0" :variant="selectedPlan === 'annually' ? 'primary' : 'secondary'" @click="selectPlan('annually')">
76
76
  {{ translateMe('Annually') }}
77
77
  </VariantButton>
78
- <VariantButton v-if="bundle_plan !== null" :variant="selectedPlan === 'bundle' ? 'primary' : 'secondary'" @click="selectPlan('bundle')" :additionalText="'24 Apps'">
78
+ <VariantButton id="pricing-tab" v-if="bundle_plan !== null" :variant="selectedPlan === 'bundle' ? 'primary' : 'secondary'" @click="selectPlan('bundle')" :additionalText="'24 Apps'">
79
79
  {{ translateMe('Bundle') }}
80
80
  </VariantButton>
81
81
  </div>
@@ -836,6 +836,13 @@
836
836
  margin-left: 0px !important;
837
837
  z-index: unset !important;
838
838
  }
839
+ .app-manager .Polaris-Button::after {
840
+ box-shadow: none !important;
841
+ }
842
+ .app-manager .Polaris-Button:focus {
843
+ box-shadow: none !important;
844
+ border-color: black !important;
845
+ }
839
846
  .app-manager .app-manager-plan-page-slider .feature__list,
840
847
  .app-manager .app-manager-plan-page-slider .feature__type__array
841
848
  {
@@ -934,6 +941,12 @@
934
941
  .app-manager .Polaris-Button {
935
942
  padding: 7px 8px !important;
936
943
  }
944
+ .VueCarousel-slide {
945
+ flex-basis: auto !important;
946
+ }
947
+ .Polaris-ResourceList__ResourceListWrapper.features{
948
+ width: 30% !important;
949
+ }
937
950
  }
938
951
 
939
952
  @media (min-width: 467px) and (max-width: 1003px) {
@@ -85,6 +85,7 @@ export default {
85
85
  <span class="original-amount">${{ translateMe(oldPrice) }}</span>
86
86
  </div>
87
87
  <VariantButton
88
+ id = "choose-bundle"
88
89
  v-if="!isCurrentPlan"
89
90
  :buttonData="{ button_url: showcaseData.button_url }"
90
91
  @click="handlePlanClick"