@wizishop/angular-components 14.4.20 → 14.4.22

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.
@@ -620,135 +620,6 @@ wac-block {
620
620
  margin-right: 0;
621
621
  }
622
622
  }
623
- .wac-breadcrumbs {
624
- width: 100%;
625
- display: flex;
626
- align-items: center;
627
- padding: 0;
628
- margin: 0 0 10px;
629
- border-radius: 3px;
630
-
631
- @include media('<tablet') {
632
- &:not(.no-responsive) {
633
- max-width: 100%;
634
- overflow: hidden;
635
- .wac-breadcrumbs {
636
- &__wrapper {
637
- @include media('<tablet') {
638
- width: auto;
639
- overflow-x: scroll;
640
- }
641
- }
642
- &__item {
643
- @include media('<tablet') {
644
- width: auto;
645
- min-width: unset;
646
- max-width: unset;
647
- .name {
648
- white-space: nowrap;
649
- }
650
- }
651
- }
652
- }
653
- }
654
- }
655
-
656
- &__wrapper {
657
- width: 100%;
658
- display: flex;
659
- align-items: center;
660
- }
661
-
662
- &__item {
663
- width: 100%;
664
- max-width: 50%;
665
- display: flex;
666
- align-items: center;
667
- justify-content: center;
668
- position: relative;
669
- padding: 10px;
670
- cursor: pointer;
671
- &:before {
672
- content: '';
673
- display: block;
674
- position: absolute;
675
- bottom: -5px;
676
- left: 50%;
677
- transform: translateX(-50%);
678
- width: calc(100% - 5px);
679
- height: 3px;
680
- background-color: $wac-round-breadcrumbs;
681
- }
682
- &.current, &.valid {
683
- &:before {
684
- background-color: $wac-wizishop-blue;
685
- }
686
- &:hover, &:focus {
687
- .round {
688
- background-color: $wac-wizishop-blue;
689
- border-color: $wac-wizishop-blue;
690
- > span, > i {
691
- color: $wac-white;
692
- }
693
- }
694
- .name {
695
- color: $wac-wizishop-blue;
696
- }
697
- }
698
- }
699
-
700
-
701
- &.current {
702
- &:before {
703
- height: 5px;
704
- }
705
- }
706
- .round {
707
- min-width: 30px;
708
- height: 30px;
709
- border-radius: 30px;
710
- display: flex;
711
- justify-content: center;
712
- align-items: center;
713
- border: 2px solid $wac-round-breadcrumbs;
714
- background-color: $wac-round-breadcrumbs;
715
- transition: .3s ease;
716
- margin: 0 15px 0 0;
717
- > span {
718
- font-size: rem(12);
719
- font-weight: 500;
720
- color: $wac-second-color;
721
- line-height: 1;
722
- }
723
- > i {
724
- font-size: rem(14);
725
- color: $wac-wizishop-blue;
726
- }
727
- &.valid {
728
- background-color: transparent;
729
- border-color: $wac-wizishop-blue;
730
- color: $wac-wizishop-blue;
731
- }
732
- &.current:not(.valid) {
733
- background-color: $wac-wizishop-blue;
734
- border-color: $wac-wizishop-blue;
735
- > span, > i {
736
- color: $wac-white;
737
- }
738
- }
739
- }
740
- .name {
741
- font-size: rem(14);
742
- font-weight: 500;
743
- color: $wac-second-color;
744
- line-height: 1;
745
- transition: .3s ease;
746
- &.valid, &.current {
747
- color: $wac-wizishop-blue;
748
- }
749
- }
750
- }
751
- }
752
623
  .wac-button {
753
624
  @include flexbox();
754
625
  @include justify-content(center);
@@ -2594,6 +2465,135 @@ wac-calendar {
2594
2465
  .datetimepicker .datetimepicker-footer {
2595
2466
  display: none;
2596
2467
  }
2468
+ .wac-breadcrumbs {
2469
+ width: 100%;
2470
+ display: flex;
2471
+ align-items: center;
2472
+ padding: 0;
2473
+ margin: 0 0 10px;
2474
+ border-radius: 3px;
2475
+
2476
+ @include media('<tablet') {
2477
+ &:not(.no-responsive) {
2478
+ max-width: 100%;
2479
+ overflow: hidden;
2480
+ .wac-breadcrumbs {
2481
+ &__wrapper {
2482
+ @include media('<tablet') {
2483
+ width: auto;
2484
+ overflow-x: scroll;
2485
+ }
2486
+ }
2487
+ &__item {
2488
+ @include media('<tablet') {
2489
+ width: auto;
2490
+ min-width: unset;
2491
+ max-width: unset;
2492
+ .name {
2493
+ white-space: nowrap;
2494
+ }
2495
+ }
2496
+ }
2497
+ }
2498
+ }
2499
+ }
2500
+
2501
+ &__wrapper {
2502
+ width: 100%;
2503
+ display: flex;
2504
+ align-items: center;
2505
+ }
2506
+
2507
+ &__item {
2508
+ width: 100%;
2509
+ max-width: 50%;
2510
+ display: flex;
2511
+ align-items: center;
2512
+ justify-content: center;
2513
+ position: relative;
2514
+ padding: 10px;
2515
+ cursor: pointer;
2516
+ &:before {
2517
+ content: '';
2518
+ display: block;
2519
+ position: absolute;
2520
+ bottom: -5px;
2521
+ left: 50%;
2522
+ transform: translateX(-50%);
2523
+ width: calc(100% - 5px);
2524
+ height: 3px;
2525
+ background-color: $wac-round-breadcrumbs;
2526
+ }
2527
+ &.current, &.valid {
2528
+ &:before {
2529
+ background-color: $wac-wizishop-blue;
2530
+ }
2531
+ &:hover, &:focus {
2532
+ .round {
2533
+ background-color: $wac-wizishop-blue;
2534
+ border-color: $wac-wizishop-blue;
2535
+ > span, > i {
2536
+ color: $wac-white;
2537
+ }
2538
+ }
2539
+ .name {
2540
+ color: $wac-wizishop-blue;
2541
+ }
2542
+ }
2543
+ }
2544
+
2545
+
2546
+ &.current {
2547
+ &:before {
2548
+ height: 5px;
2549
+ }
2550
+ }
2551
+ .round {
2552
+ min-width: 30px;
2553
+ height: 30px;
2554
+ border-radius: 30px;
2555
+ display: flex;
2556
+ justify-content: center;
2557
+ align-items: center;
2558
+ border: 2px solid $wac-round-breadcrumbs;
2559
+ background-color: $wac-round-breadcrumbs;
2560
+ transition: .3s ease;
2561
+ margin: 0 15px 0 0;
2562
+ > span {
2563
+ font-size: rem(12);
2564
+ font-weight: 500;
2565
+ color: $wac-second-color;
2566
+ line-height: 1;
2567
+ }
2568
+ > i {
2569
+ font-size: rem(14);
2570
+ color: $wac-wizishop-blue;
2571
+ }
2572
+ &.valid {
2573
+ background-color: transparent;
2574
+ border-color: $wac-wizishop-blue;
2575
+ color: $wac-wizishop-blue;
2576
+ }
2577
+ &.current:not(.valid) {
2578
+ background-color: $wac-wizishop-blue;
2579
+ border-color: $wac-wizishop-blue;
2580
+ > span, > i {
2581
+ color: $wac-white;
2582
+ }
2583
+ }
2584
+ }
2585
+ .name {
2586
+ font-size: rem(14);
2587
+ font-weight: 500;
2588
+ color: $wac-second-color;
2589
+ line-height: 1;
2590
+ transition: .3s ease;
2591
+ &.valid, &.current {
2592
+ color: $wac-wizishop-blue;
2593
+ }
2594
+ }
2595
+ }
2596
+ }
2597
2597
  .wac-card-price {
2598
2598
  width: 100%;
2599
2599
  padding: 30px;
@@ -6919,7 +6919,10 @@ span.wac-tooltip {
6919
6919
  }wac-block-separator {
6920
6920
  margin-top: 4px;
6921
6921
  display: block;
6922
- }.wac-expansion-panel {
6922
+ }.wac-placeholder {
6923
+ pointer-events: none;
6924
+ }
6925
+ .wac-expansion-panel {
6923
6926
  display: block;
6924
6927
 
6925
6928
  &--disabled {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wizishop/angular-components",
3
- "version": "14.4.20",
3
+ "version": "14.4.22",
4
4
  "peerDependencies": {
5
5
  "@angular/animations": "~14.0.6",
6
6
  "@angular/cdk": "^14.0.5",