@hulkapps/app-manager-vue 3.0.10 → 3.0.11

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.0.10",
3
+ "version": "3.0.11",
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",
@@ -934,7 +934,7 @@
934
934
 
935
935
  @media (min-width: 0px) and (max-width: 576px) {
936
936
  .app-manager .app-manager, .app-manager .app-manager-body {
937
- overflow-x: scroll;
937
+ //overflow-x: scroll;
938
938
  }
939
939
  }
940
940
 
@@ -630,26 +630,37 @@ export default {
630
630
  width: 100%;
631
631
  }
632
632
 
633
- @media (max-width: 700px) {
634
- .Polaris-ButtonGroup__Item {
635
- width: auto !important;
633
+ @media (max-width: 1023px) {
634
+ .customization-bundle-section {
635
+ flex-direction: column;
636
+ gap: 20px;
636
637
  }
637
- .app-manager .Polaris-Button {
638
- padding: 7px 8px !important;
638
+ }
639
+
640
+ @media (max-width: 992px) {
641
+ .bill-cycle-select-group.full-width,
642
+ .app-manager .Polaris-Page--fullWidth {
643
+ max-width: calc(100% - 64px) !important;
639
644
  }
640
645
  }
641
646
 
642
647
  @media (max-width: 767px) {
648
+ .bill-cycle-select-group.full-width,
649
+ .app-manager .Polaris-Page--fullWidth {
650
+ max-width: 100% !important;
651
+ }
643
652
  .bill-cycle-select-group {
644
- flex-direction: column-reverse;
653
+ flex-direction: column;
645
654
  gap: 10px;
646
655
  }
647
656
  }
648
657
 
649
- @media (max-width: 1023px) {
650
- .customization-bundle-section {
651
- flex-direction: column;
652
- gap: 20px;
658
+ @media (max-width: 700px) {
659
+ .Polaris-ButtonGroup__Item {
660
+ width: auto !important;
661
+ }
662
+ .app-manager .Polaris-Button {
663
+ padding: 7px 8px !important;
653
664
  }
654
665
  }
655
666
  </style>
@@ -201,7 +201,7 @@ export default {
201
201
  background-color: #e0f0ff;
202
202
  width: fit-content;
203
203
  margin-right: 12px;
204
- padding: 3px 4px;
204
+ padding: 3px 6px 3px 3px;
205
205
  border-radius: 8px;
206
206
  font-size: 12px;
207
207
  color: #00527c;
@@ -261,14 +261,13 @@ export default {
261
261
  text-decoration: none;
262
262
  }
263
263
 
264
-
265
-
266
264
  @media (max-width: 767px) {
267
265
  .featured-options {
268
266
  text-wrap: wrap;
269
267
  }
270
268
  .details {
271
269
  gap: 8px;
270
+ width: 100%;
272
271
  }
273
272
  .app-tags {
274
273
  display: flex;
@@ -276,6 +275,11 @@ export default {
276
275
  gap: 8px;
277
276
  margin-bottom: 8px;
278
277
  }
278
+
279
+ .app-tag {
280
+ padding: 1px 6px 5px 3px;
281
+ }
282
+
279
283
  .upper-details,
280
284
  .lower-details {
281
285
  flex-direction: column;
@@ -145,9 +145,14 @@ export default {
145
145
  font-weight: 700;
146
146
  color: black;
147
147
  }
148
- @media (max-width: 640px) {
148
+ @media (max-width: 767px) {
149
149
  .apps-list .app {
150
150
  flex-basis: calc(50% - 8px);
151
151
  }
152
152
  }
153
+ @media (max-width: 540px) {
154
+ .apps-list .app {
155
+ flex-basis: 100%;
156
+ }
157
+ }
153
158
  </style>
@@ -92,12 +92,14 @@ export default {
92
92
  </p>
93
93
  </div>
94
94
  <div class="plan-right">
95
- <h3 class="plan-name">{{ translateMe("Monthly Bundle:") }}</h3>
96
- <div class="prices">
97
- <span class="discounted-amount">${{ translateMe(realPrice) }}</span>
98
- <span class="original-amount" v-if="realPrice < oldPrice"
95
+ <div class="plan-content">
96
+ <h3 class="plan-name">{{ translateMe("Monthly Bundle:") }}</h3>
97
+ <div class="prices">
98
+ <span class="discounted-amount">${{ translateMe(realPrice) }}</span>
99
+ <span class="original-amount" v-if="realPrice < oldPrice"
99
100
  >${{ translateMe(oldPrice) }}</span
100
- >
101
+ >
102
+ </div>
101
103
  </div>
102
104
  <VariantButton
103
105
  id="choose-bundle"
@@ -169,7 +171,7 @@ export default {
169
171
  .plan-right {
170
172
  display: flex;
171
173
  align-items: center;
172
- gap: 12px;
174
+ gap: 16px;
173
175
  }
174
176
 
175
177
  .prices {
@@ -203,6 +205,13 @@ export default {
203
205
  font-weight: 650;
204
206
  }
205
207
 
208
+ .plan-content {
209
+ display: flex;
210
+ justify-content: center;
211
+ align-items: center;
212
+ gap: 12px;
213
+ }
214
+
206
215
  .choose-button {
207
216
  padding: 6px 12px;
208
217
  background-color: rgb(48, 48, 48);
@@ -222,7 +231,29 @@ export default {
222
231
  font-weight: 650;
223
232
  }
224
233
 
234
+ @media (max-width: 992px) {
235
+
236
+ .banner__inner.full-width {
237
+ max-width: calc(100% - 64px);
238
+ }
239
+
240
+ .banner__inner {
241
+ flex-direction: column;
242
+ gap: 32px;
243
+ align-items: flex-start;
244
+ padding: 0;
245
+ }
246
+
247
+ .plan-right {
248
+ justify-content: space-between;
249
+ width: 100%;
250
+ }
251
+ }
252
+
225
253
  @media (max-width: 767px) {
254
+ .banner__inner.full-width {
255
+ max-width: 100%;
256
+ }
226
257
  .bundle-plan-showcase-banner {
227
258
  flex-direction: column;
228
259
  gap: 12px;
@@ -236,10 +267,14 @@ export default {
236
267
  }
237
268
  }
238
269
  @media (max-width: 480px) {
270
+ .plan-content {
271
+ flex-direction: column;
272
+ align-items: flex-start;
273
+ }
239
274
  .plan-right {
240
275
  flex-direction: column;
241
- gap: 8px;
242
- align-items: unset;
276
+ gap: 16px;
277
+ align-items: flex-start;
243
278
  }
244
279
  .bundle-plan-showcase-banner {
245
280
  flex-direction: column;
@@ -345,7 +345,7 @@ export default {
345
345
  },
346
346
  breakpoints: {
347
347
  0: {
348
- slidesPerView: 1,
348
+ slidesPerView: 1.2,
349
349
  },
350
350
  768: {
351
351
  slidesPerView: 2,
@@ -376,7 +376,7 @@ export default {
376
376
  },
377
377
  breakpoints: {
378
378
  0: {
379
- slidesPerView: 1,
379
+ slidesPerView: 1.2,
380
380
  },
381
381
  768: {
382
382
  slidesPerView: 2,
@@ -760,6 +760,11 @@ export default {
760
760
  height: 100%;
761
761
  }
762
762
 
763
+ .pricing-table.annually-table .swiper-wrapper,
764
+ .pricing-table.monthly-table .swiper-wrapper {
765
+ height: auto !important;
766
+ }
767
+
763
768
  .table-header {
764
769
  display: flex;
765
770
  align-items: center;
@@ -806,6 +811,7 @@ export default {
806
811
  height: 20px;
807
812
  visibility: visible;
808
813
  display: inline-block;
814
+ margin-top: 4px;
809
815
  }
810
816
  .plan-header-wrapper {
811
817
  display: flex;