@wizishop/angular-components 15.1.103 → 15.1.105

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.
@@ -1090,9 +1090,7 @@ wac-block {
1090
1090
  }
1091
1091
 
1092
1092
  &.width-auto {
1093
- display: inline-block;
1094
- width: auto;
1095
- margin: 0 auto;
1093
+ width: fit-content;
1096
1094
  }
1097
1095
 
1098
1096
  &.white-space-no-wrap {
@@ -4709,6 +4707,59 @@ wac-calendar {
4709
4707
  }
4710
4708
  }
4711
4709
  }
4710
+ .wac-link {
4711
+ position: relative;
4712
+ color: $wac-link-color;
4713
+ display: inline-block;
4714
+ transition: 0.3s ease;
4715
+ font-size: rem(14);
4716
+ line-height: rem(16);
4717
+ &:before {
4718
+ content: '';
4719
+ display: block;
4720
+ position: absolute;
4721
+ width: 100%;
4722
+ max-width: 0;
4723
+ height: 1px;
4724
+ border-radius: 3px;
4725
+ background-color: darken($wac-link-color, 15%);
4726
+ left: 0;
4727
+ bottom: -2px;
4728
+ transition: 0.3s ease;
4729
+ }
4730
+ &:hover,
4731
+ &:focus {
4732
+ color: darken($wac-link-color, 15%);
4733
+ &:before {
4734
+ max-width: 100%;
4735
+ }
4736
+ .wac-link {
4737
+ &__tooltip {
4738
+ opacity: .8;
4739
+ visibility: visible;
4740
+ transition: opacity .3s ease .05s, visibility 0s linear 0s;
4741
+ }
4742
+ }
4743
+ }
4744
+ &__tooltip {
4745
+ position: absolute;
4746
+ bottom: calc(100% + 10px);
4747
+ left: 50%;
4748
+ transform: translateX(-50%);
4749
+ width: auto;
4750
+ max-width: 100vw;
4751
+ padding: 4px;
4752
+ border-radius: 3px;
4753
+ background: $wac-main-text;
4754
+ color: $wac-white;
4755
+ min-width: 100%;
4756
+ visibility: hidden;
4757
+ text-align: center;
4758
+ font-size: 12px;
4759
+ opacity: 0;
4760
+ transition: opacity .3s ease 0s, visibility 0s linear .35s;
4761
+ }
4762
+ }
4712
4763
  .wac-loader {
4713
4764
  &.is-small {
4714
4765
  position: absolute;
@@ -4787,59 +4838,6 @@ wac-calendar {
4787
4838
  font-weight: 500;
4788
4839
  }
4789
4840
  }
4790
- .wac-link {
4791
- position: relative;
4792
- color: $wac-link-color;
4793
- display: inline-block;
4794
- transition: 0.3s ease;
4795
- font-size: rem(14);
4796
- line-height: rem(16);
4797
- &:before {
4798
- content: '';
4799
- display: block;
4800
- position: absolute;
4801
- width: 100%;
4802
- max-width: 0;
4803
- height: 1px;
4804
- border-radius: 3px;
4805
- background-color: darken($wac-link-color, 15%);
4806
- left: 0;
4807
- bottom: -2px;
4808
- transition: 0.3s ease;
4809
- }
4810
- &:hover,
4811
- &:focus {
4812
- color: darken($wac-link-color, 15%);
4813
- &:before {
4814
- max-width: 100%;
4815
- }
4816
- .wac-link {
4817
- &__tooltip {
4818
- opacity: .8;
4819
- visibility: visible;
4820
- transition: opacity .3s ease .05s, visibility 0s linear 0s;
4821
- }
4822
- }
4823
- }
4824
- &__tooltip {
4825
- position: absolute;
4826
- bottom: calc(100% + 10px);
4827
- left: 50%;
4828
- transform: translateX(-50%);
4829
- width: auto;
4830
- max-width: 100vw;
4831
- padding: 4px;
4832
- border-radius: 3px;
4833
- background: $wac-main-text;
4834
- color: $wac-white;
4835
- min-width: 100%;
4836
- visibility: hidden;
4837
- text-align: center;
4838
- font-size: 12px;
4839
- opacity: 0;
4840
- transition: opacity .3s ease 0s, visibility 0s linear .35s;
4841
- }
4842
- }
4843
4841
  .wac-logo {
4844
4842
  &__wrapper {
4845
4843
  svg {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wizishop/angular-components",
3
- "version": "15.1.103",
3
+ "version": "15.1.105",
4
4
  "peerDependencies": {
5
5
  "@angular/animations": "~15.0.2",
6
6
  "@angular/cdk": "^15.0.1",