@wizishop/angular-components 15.1.103 → 15.1.104

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,8 +1090,7 @@ wac-block {
1090
1090
  }
1091
1091
 
1092
1092
  &.width-auto {
1093
- display: inline-block;
1094
- width: auto;
1093
+ width: fit-content;
1095
1094
  margin: 0 auto;
1096
1095
  }
1097
1096
 
@@ -4709,6 +4708,59 @@ wac-calendar {
4709
4708
  }
4710
4709
  }
4711
4710
  }
4711
+ .wac-link {
4712
+ position: relative;
4713
+ color: $wac-link-color;
4714
+ display: inline-block;
4715
+ transition: 0.3s ease;
4716
+ font-size: rem(14);
4717
+ line-height: rem(16);
4718
+ &:before {
4719
+ content: '';
4720
+ display: block;
4721
+ position: absolute;
4722
+ width: 100%;
4723
+ max-width: 0;
4724
+ height: 1px;
4725
+ border-radius: 3px;
4726
+ background-color: darken($wac-link-color, 15%);
4727
+ left: 0;
4728
+ bottom: -2px;
4729
+ transition: 0.3s ease;
4730
+ }
4731
+ &:hover,
4732
+ &:focus {
4733
+ color: darken($wac-link-color, 15%);
4734
+ &:before {
4735
+ max-width: 100%;
4736
+ }
4737
+ .wac-link {
4738
+ &__tooltip {
4739
+ opacity: .8;
4740
+ visibility: visible;
4741
+ transition: opacity .3s ease .05s, visibility 0s linear 0s;
4742
+ }
4743
+ }
4744
+ }
4745
+ &__tooltip {
4746
+ position: absolute;
4747
+ bottom: calc(100% + 10px);
4748
+ left: 50%;
4749
+ transform: translateX(-50%);
4750
+ width: auto;
4751
+ max-width: 100vw;
4752
+ padding: 4px;
4753
+ border-radius: 3px;
4754
+ background: $wac-main-text;
4755
+ color: $wac-white;
4756
+ min-width: 100%;
4757
+ visibility: hidden;
4758
+ text-align: center;
4759
+ font-size: 12px;
4760
+ opacity: 0;
4761
+ transition: opacity .3s ease 0s, visibility 0s linear .35s;
4762
+ }
4763
+ }
4712
4764
  .wac-loader {
4713
4765
  &.is-small {
4714
4766
  position: absolute;
@@ -4787,59 +4839,6 @@ wac-calendar {
4787
4839
  font-weight: 500;
4788
4840
  }
4789
4841
  }
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
4842
  .wac-logo {
4844
4843
  &__wrapper {
4845
4844
  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.104",
4
4
  "peerDependencies": {
5
5
  "@angular/animations": "~15.0.2",
6
6
  "@angular/cdk": "^15.0.1",