@wizishop/angular-components 14.3.13 → 14.3.14

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.
@@ -2515,6 +2515,116 @@ wac-block {
2515
2515
  .datetimepicker .datetimepicker-footer {
2516
2516
  display: none;
2517
2517
  }
2518
+ .wac-card-price {
2519
+ width: 100%;
2520
+ padding: 30px;
2521
+ border-radius: 3px;
2522
+ background-color: $wac-white;
2523
+ display: flex;
2524
+ flex-direction: column;
2525
+ border: 1px solid $wac-white;
2526
+
2527
+ box-shadow: 0 rem(2) rem(5) rgba(45, 62, 85, 0.05);
2528
+
2529
+ &.selected {
2530
+ border: 1px solid $wac-tag-success;
2531
+ }
2532
+
2533
+ &:hover {
2534
+ box-shadow: 0 rem(2) rem(5) rgba(45, 62, 85, 0.2);
2535
+ }
2536
+
2537
+ @include media('<desktop') {
2538
+ padding: 30px;
2539
+ }
2540
+
2541
+ @include media('<tablet') {
2542
+ padding: 20px;
2543
+ }
2544
+
2545
+ .cta {
2546
+ min-height: 40px;
2547
+ }
2548
+
2549
+ > strong {
2550
+ font-size: rem(40);
2551
+ line-height: rem(47);
2552
+ text-align: center;
2553
+ display: block;
2554
+ width: 100%;
2555
+ font-weight: 600;
2556
+ margin: 0 0 -5px;
2557
+ }
2558
+
2559
+ > p {
2560
+ font-size: rem(20);
2561
+ text-transform: uppercase;
2562
+ margin: 0 0 20px;
2563
+ text-align: center;
2564
+ display: block;
2565
+ width: 100%;
2566
+ font-weight: 600;
2567
+ }
2568
+
2569
+ .price {
2570
+ display: flex;
2571
+ align-items: flex-end;
2572
+ width: 100%;
2573
+ justify-content: center;
2574
+ position: relative;
2575
+ color: $wac-tag-success;
2576
+ margin: 0 0 5px;
2577
+
2578
+ .amount {
2579
+ font-size: rem(50);
2580
+ font-weight: 600;
2581
+ margin: 0 5px 0 0;
2582
+ position: relative;
2583
+ line-height: 1;
2584
+ span {
2585
+ position: absolute;
2586
+ top: 5px;
2587
+ left: 100%;
2588
+ margin: 0 0 0 3px;
2589
+ display: block;
2590
+ font-size: rem(20);
2591
+ }
2592
+ }
2593
+
2594
+ .month {
2595
+ font-size: rem(20);
2596
+ margin: 0;
2597
+ font-weight: 500;
2598
+ line-height: 1;
2599
+ transform: translateY(-5px);
2600
+ }
2601
+ }
2602
+
2603
+ .subtitle, .package-subtitle {
2604
+ font-size: rem(12);
2605
+ color: $wac-subtitle-color;
2606
+ margin: 0 0 30px;
2607
+ text-align: center;
2608
+ font-style: italic;
2609
+ }
2610
+
2611
+ .subtitle {
2612
+ &:last-child {
2613
+ margin: 0;
2614
+ }
2615
+ }
2616
+
2617
+ .package-subtitle {
2618
+ margin: 10px 0 30px;
2619
+ }
2620
+
2621
+ .link-bottom {
2622
+ margin: 0;
2623
+ display: flex;
2624
+ justify-content: center;
2625
+ width: 100%;
2626
+ }
2627
+ }
2518
2628
  .wac-field-checkbox {
2519
2629
  &.disable-wt {
2520
2630
  .wac-field-checkbox__row {
@@ -2684,116 +2794,6 @@ wac-block {
2684
2794
  }
2685
2795
 
2686
2796
  }
2687
- .wac-card-price {
2688
- width: 100%;
2689
- padding: 30px;
2690
- border-radius: 3px;
2691
- background-color: $wac-white;
2692
- display: flex;
2693
- flex-direction: column;
2694
- border: 1px solid $wac-white;
2695
-
2696
- box-shadow: 0 rem(2) rem(5) rgba(45, 62, 85, 0.05);
2697
-
2698
- &.selected {
2699
- border: 1px solid $wac-tag-success;
2700
- }
2701
-
2702
- &:hover {
2703
- box-shadow: 0 rem(2) rem(5) rgba(45, 62, 85, 0.2);
2704
- }
2705
-
2706
- @include media('<desktop') {
2707
- padding: 30px;
2708
- }
2709
-
2710
- @include media('<tablet') {
2711
- padding: 20px;
2712
- }
2713
-
2714
- .cta {
2715
- min-height: 40px;
2716
- }
2717
-
2718
- > strong {
2719
- font-size: rem(40);
2720
- line-height: rem(47);
2721
- text-align: center;
2722
- display: block;
2723
- width: 100%;
2724
- font-weight: 600;
2725
- margin: 0 0 -5px;
2726
- }
2727
-
2728
- > p {
2729
- font-size: rem(20);
2730
- text-transform: uppercase;
2731
- margin: 0 0 20px;
2732
- text-align: center;
2733
- display: block;
2734
- width: 100%;
2735
- font-weight: 600;
2736
- }
2737
-
2738
- .price {
2739
- display: flex;
2740
- align-items: flex-end;
2741
- width: 100%;
2742
- justify-content: center;
2743
- position: relative;
2744
- color: $wac-tag-success;
2745
- margin: 0 0 5px;
2746
-
2747
- .amount {
2748
- font-size: rem(50);
2749
- font-weight: 600;
2750
- margin: 0 5px 0 0;
2751
- position: relative;
2752
- line-height: 1;
2753
- span {
2754
- position: absolute;
2755
- top: 5px;
2756
- left: 100%;
2757
- margin: 0 0 0 3px;
2758
- display: block;
2759
- font-size: rem(20);
2760
- }
2761
- }
2762
-
2763
- .month {
2764
- font-size: rem(20);
2765
- margin: 0;
2766
- font-weight: 500;
2767
- line-height: 1;
2768
- transform: translateY(-5px);
2769
- }
2770
- }
2771
-
2772
- .subtitle, .package-subtitle {
2773
- font-size: rem(12);
2774
- color: $wac-subtitle-color;
2775
- margin: 0 0 30px;
2776
- text-align: center;
2777
- font-style: italic;
2778
- }
2779
-
2780
- .subtitle {
2781
- &:last-child {
2782
- margin: 0;
2783
- }
2784
- }
2785
-
2786
- .package-subtitle {
2787
- margin: 10px 0 30px;
2788
- }
2789
-
2790
- .link-bottom {
2791
- margin: 0;
2792
- display: flex;
2793
- justify-content: center;
2794
- width: 100%;
2795
- }
2796
- }
2797
2797
  .wac-confirm-delete {
2798
2798
  position: absolute;
2799
2799
  right: 0;
@@ -3555,26 +3555,32 @@ wac-block {
3555
3555
  align-items: flex-start;
3556
3556
  justify-content: flex-start;
3557
3557
  font-family: 'Arial', sans-serif;
3558
+ overflow: hidden;
3558
3559
  &__url {
3559
3560
  width: 100%;
3560
3561
  white-space: nowrap;
3561
3562
  text-overflow: ellipsis;
3563
+ overflow: hidden;
3562
3564
  color: $wac-google-preview-url;
3563
3565
  font-size: rem(14);
3564
3566
  margin: 0 0 10px;
3565
3567
  line-height: rem(16);
3566
3568
  }
3567
3569
  &__title {
3570
+ width: 100%;
3568
3571
  color: $wac-google-preview-title;
3569
3572
  font-size: rem(20);
3570
3573
  line-height: rem(22);
3571
3574
  text-overflow: ellipsis;
3572
3575
  white-space: nowrap;
3576
+ overflow: hidden;
3573
3577
  margin: 0 0 rem(12);
3574
3578
  }
3575
3579
  &__description {
3580
+ width: 100%;
3576
3581
  font-size: rem(14);
3577
3582
  line-height: rem(24);
3583
+ overflow: hidden;
3578
3584
  color: $wac-google-preview-description;
3579
3585
  margin: 0;
3580
3586
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wizishop/angular-components",
3
- "version": "14.3.13",
3
+ "version": "14.3.14",
4
4
  "peerDependencies": {
5
5
  "@angular/animations": "~14.0.6",
6
6
  "@angular/cdk": "^14.0.5",