@sonic-equipment/ui 168.0.0 → 170.0.0
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/dist/algolia/algolia-active-categories.js +2 -2
- package/dist/breadcrumbs/breadcrumb.js +4 -4
- package/dist/buttons/button/button.d.ts +5 -2
- package/dist/buttons/button/button.js +22 -11
- package/dist/buttons/icon-button/icon-button.d.ts +6 -3
- package/dist/buttons/icon-button/icon-button.js +12 -5
- package/dist/buttons/link/link.d.ts +2 -0
- package/dist/buttons/link/link.js +13 -9
- package/dist/cards/category-card/category-card.d.ts +3 -1
- package/dist/cards/category-card/category-card.js +4 -4
- package/dist/cards/orderline-card/orderline-card.js +2 -2
- package/dist/cards/product-card/connected-product-card.d.ts +2 -0
- package/dist/cards/product-card/product-card.d.ts +3 -1
- package/dist/cards/product-card/product-card.js +3 -3
- package/dist/collapsables/show-all/show-all.js +2 -2
- package/dist/country-selector/connected-country-selector.d.ts +6 -6
- package/dist/exports.d.ts +2 -3
- package/dist/filters/active-filters/active-filters.js +2 -2
- package/dist/footer/connected-footer.d.ts +3 -1
- package/dist/footer/connected-footer.js +2 -2
- package/dist/footer/footer.js +6 -6
- package/dist/global-search/search-result-panel/sections/no-search.js +2 -2
- package/dist/global-search/search-result-panel/sections/with-results.js +2 -2
- package/dist/header/buttons/account/connected-account-button.js +2 -2
- package/dist/header/buttons/cart/connected-cart-button.js +2 -2
- package/dist/header/buttons/favorites/connected-favorites-button.js +2 -2
- package/dist/header/buttons/search/search-button.js +2 -2
- package/dist/header/connected-header.d.ts +2 -1
- package/dist/header/connected-header.js +3 -4
- package/dist/header/header.d.ts +2 -1
- package/dist/header/header.js +2 -2
- package/dist/header/link-list/navigation-link-list.js +3 -3
- package/dist/header/sonic-logo/sonic-logo.js +2 -3
- package/dist/index.js +2 -3
- package/dist/lists/menu-list/menu-list-header.js +2 -2
- package/dist/lists/menu-list/menu-list-item.js +2 -2
- package/dist/modals/signin/sign-in-dialog.js +2 -2
- package/dist/navigation/cart-icon/cart-icon.js +1 -1
- package/dist/notifications/announcements/announcement.js +2 -2
- package/dist/notifications/announcements/connected-announcement-list.d.ts +3 -1
- package/dist/notifications/announcements/connected-announcement-list.js +2 -2
- package/dist/pages/account/components/sign-in-form/sign-in-form.js +1 -2
- package/dist/pages/account/create-account-page/create-account-page.js +2 -2
- package/dist/pages/checkout/cart-page/cart-page.js +4 -6
- package/dist/pages/checkout/layouts/checkout-page-layout/checkout-page-layout.js +1 -1
- package/dist/pages/checkout/order-confirmation-page/order-confirmation-page-content.js +3 -3
- package/dist/pages/checkout/shipping-page/components/currency-change-dialog.js +2 -2
- package/dist/pages/checkout/shipping-page/components/readonly-address.js +3 -3
- package/dist/pages/product/components/product-overview.d.ts +2 -0
- package/dist/pages/product/components/product-overview.js +1 -1
- package/dist/pages/product/product-listing-page/no-results/no-results.js +2 -2
- package/dist/pages/product/product-listing-page/product-listing-page-category-carousel/product-listing-page-category-carousel.js +1 -1
- package/dist/pages/product/product-listing-page/product-listing-product-overview/product-listing-product-overview.js +1 -1
- package/dist/promos/promo-banner/promo-banner.js +2 -2
- package/dist/promos/promo-card/promo-card.js +2 -2
- package/dist/shared/hooks/use-watch-css-property.js +1 -1
- package/dist/shared/routing/route-provider.d.ts +4 -3
- package/dist/shared/routing/route-provider.js +4 -2
- package/dist/shared/routing/route-utils.d.ts +4 -0
- package/dist/shared/routing/route-utils.js +8 -0
- package/dist/shared/routing/types.d.ts +7 -0
- package/dist/shared/routing/use-route-link-element.d.ts +1 -0
- package/dist/shared/routing/use-route-link-element.js +11 -0
- package/dist/shared/routing/with-routing.d.ts +3 -6
- package/dist/shared/routing/with-routing.js +6 -6
- package/dist/shared/utils/css.js +53 -0
- package/dist/shared/utils/price.d.ts +1 -1
- package/dist/styles.css +190 -188
- package/package.json +1 -1
- package/dist/shared/routing/route-button.d.ts +0 -1
- package/dist/shared/routing/route-button.js +0 -7
- package/dist/shared/routing/route-icon-button.d.ts +0 -1
- package/dist/shared/routing/route-icon-button.js +0 -7
- package/dist/shared/routing/route-link.d.ts +0 -1
- package/dist/shared/routing/route-link.js +0 -7
package/dist/styles.css
CHANGED
|
@@ -5522,7 +5522,7 @@ button.swiper-pagination-bullet {
|
|
|
5522
5522
|
.search-result-panel-module-KBrc9 {
|
|
5523
5523
|
overflow: auto;
|
|
5524
5524
|
width: 100%;
|
|
5525
|
-
height: calc(100dvh - var(--header-
|
|
5525
|
+
height: calc(100dvh - var(--header-bottom) - var(--search-input-height));
|
|
5526
5526
|
box-sizing: border-box;
|
|
5527
5527
|
background-color: var(--color-white);
|
|
5528
5528
|
box-shadow: var(--box-shadow-heavy);
|
|
@@ -5654,187 +5654,6 @@ button.swiper-pagination-bullet {
|
|
|
5654
5654
|
}
|
|
5655
5655
|
}
|
|
5656
5656
|
|
|
5657
|
-
.announcement-module-Xi0L5 {
|
|
5658
|
-
--z: 1;
|
|
5659
|
-
--icon-color: currentcolor;
|
|
5660
|
-
--close-button-size: var(--space-48);
|
|
5661
|
-
--background-color: var(--color-white);
|
|
5662
|
-
--text-color: var(--color-brand-dark-gray);
|
|
5663
|
-
--border-color: var(--color-brand-light-gray);
|
|
5664
|
-
}
|
|
5665
|
-
|
|
5666
|
-
.announcement-module-Xi0L5,
|
|
5667
|
-
.announcement-module-Xi0L5 * {
|
|
5668
|
-
box-sizing: border-box;
|
|
5669
|
-
}
|
|
5670
|
-
|
|
5671
|
-
.announcement-module-Xi0L5 {
|
|
5672
|
-
|
|
5673
|
-
position: relative;
|
|
5674
|
-
z-index: var(--z);
|
|
5675
|
-
display: flex;
|
|
5676
|
-
overflow: hidden;
|
|
5677
|
-
align-items: flex-end;
|
|
5678
|
-
justify-content: stretch;
|
|
5679
|
-
background-color: var(--background-color);
|
|
5680
|
-
border-block: 1px solid var(--border-color);
|
|
5681
|
-
color: var(--text-color);
|
|
5682
|
-
font-family: var(--font-family-sonic);
|
|
5683
|
-
font-size: var(--font-size-base);
|
|
5684
|
-
font-style: italic;
|
|
5685
|
-
line-height: 1;
|
|
5686
|
-
}
|
|
5687
|
-
|
|
5688
|
-
.announcement-module-Xi0L5 .announcement-module-4XVjD {
|
|
5689
|
-
display: grid;
|
|
5690
|
-
align-items: center;
|
|
5691
|
-
grid-template: 'icon content close';
|
|
5692
|
-
grid-template-columns: var(--close-button-size) 1fr var(--close-button-size);
|
|
5693
|
-
grid-template-rows: minmax(var(--close-button-size), min-content);
|
|
5694
|
-
inline-size: 100%;
|
|
5695
|
-
}
|
|
5696
|
-
|
|
5697
|
-
@media (width >= 576px) {
|
|
5698
|
-
|
|
5699
|
-
.announcement-module-Xi0L5 .announcement-module-4XVjD {
|
|
5700
|
-
grid-template: '. . icon . content . close';
|
|
5701
|
-
grid-template-columns:
|
|
5702
|
-
var(--close-button-size) 1fr var(--space-24) var(--space-8)
|
|
5703
|
-
minmax(0, max-content) 1fr var(--close-button-size)
|
|
5704
|
-
}
|
|
5705
|
-
}
|
|
5706
|
-
|
|
5707
|
-
.announcement-module-Xi0L5 .announcement-module-4XVjD svg {
|
|
5708
|
-
display: block;
|
|
5709
|
-
}
|
|
5710
|
-
|
|
5711
|
-
.announcement-module-Xi0L5 .announcement-module-4XVjD .announcement-module-lxmA2 {
|
|
5712
|
-
color: var(--icon-color);
|
|
5713
|
-
grid-area: icon;
|
|
5714
|
-
justify-self: center;
|
|
5715
|
-
}
|
|
5716
|
-
|
|
5717
|
-
.announcement-module-Xi0L5 .announcement-module-4XVjD .announcement-module-1Jn7y {
|
|
5718
|
-
padding: var(--space-8) 0;
|
|
5719
|
-
grid-area: content;
|
|
5720
|
-
}
|
|
5721
|
-
|
|
5722
|
-
@media (width >= 576px) {
|
|
5723
|
-
|
|
5724
|
-
.announcement-module-Xi0L5 .announcement-module-4XVjD .announcement-module-1Jn7y {
|
|
5725
|
-
display: flex;
|
|
5726
|
-
flex-flow: row wrap
|
|
5727
|
-
}
|
|
5728
|
-
}
|
|
5729
|
-
|
|
5730
|
-
.announcement-module-Xi0L5 .announcement-module-4XVjD .announcement-module-1Jn7y .announcement-module-8k2rK {
|
|
5731
|
-
flex-shrink: 1;
|
|
5732
|
-
margin: 0;
|
|
5733
|
-
font-size: var(--font-size-base);
|
|
5734
|
-
font-weight: var(--font-weight-black);
|
|
5735
|
-
text-transform: uppercase;
|
|
5736
|
-
}
|
|
5737
|
-
|
|
5738
|
-
@media (width >= 576px) {
|
|
5739
|
-
|
|
5740
|
-
.announcement-module-Xi0L5 .announcement-module-4XVjD .announcement-module-1Jn7y .announcement-module-8k2rK:has(+ .announcement-module--Bhqj, + .announcement-module-yXGsN)::after {
|
|
5741
|
-
content: '-';
|
|
5742
|
-
font-weight: var(--font-weight-normal);
|
|
5743
|
-
margin-inline: var(--space-4)
|
|
5744
|
-
}
|
|
5745
|
-
}
|
|
5746
|
-
|
|
5747
|
-
.announcement-module-Xi0L5 .announcement-module-4XVjD .announcement-module-1Jn7y .announcement-module-yXGsN {
|
|
5748
|
-
flex-shrink: 1;
|
|
5749
|
-
margin: 0;
|
|
5750
|
-
}
|
|
5751
|
-
|
|
5752
|
-
.announcement-module-Xi0L5 .announcement-module-4XVjD .announcement-module-1Jn7y .announcement-module--Bhqj {
|
|
5753
|
-
position: static;
|
|
5754
|
-
flex-shrink: 1;
|
|
5755
|
-
color: currentcolor;
|
|
5756
|
-
}
|
|
5757
|
-
|
|
5758
|
-
.announcement-module-Xi0L5 .announcement-module-4XVjD .announcement-module-1Jn7y .announcement-module--Bhqj:hover {
|
|
5759
|
-
text-decoration: underline;
|
|
5760
|
-
}
|
|
5761
|
-
|
|
5762
|
-
.announcement-module-Xi0L5 .announcement-module-4XVjD .announcement-module-1Jn7y .announcement-module--Bhqj::after {
|
|
5763
|
-
position: absolute;
|
|
5764
|
-
background: transparent;
|
|
5765
|
-
content: '';
|
|
5766
|
-
inset: 0;
|
|
5767
|
-
}
|
|
5768
|
-
|
|
5769
|
-
.announcement-module-Xi0L5 .announcement-module-4XVjD .announcement-module-gZ9ae {
|
|
5770
|
-
z-index: 1;
|
|
5771
|
-
grid-area: close;
|
|
5772
|
-
justify-self: center;
|
|
5773
|
-
}
|
|
5774
|
-
|
|
5775
|
-
.announcement-module-Xi0L5:where(.announcement-module-0LTWL) {
|
|
5776
|
-
--icon-color: var(--color-semantic-information);
|
|
5777
|
-
}
|
|
5778
|
-
|
|
5779
|
-
.announcement-module-Xi0L5:where(.announcement-module-Ga3lN) {
|
|
5780
|
-
--icon-color: var(--color-semantic-notify);
|
|
5781
|
-
}
|
|
5782
|
-
|
|
5783
|
-
.announcement-module-Xi0L5:where(.announcement-module-S3nSW) {
|
|
5784
|
-
--icon-color: var(--color-semantic-stop);
|
|
5785
|
-
}
|
|
5786
|
-
|
|
5787
|
-
.announcement-module-Xi0L5:where(.announcement-module-E6DqW) {
|
|
5788
|
-
--z: 2;
|
|
5789
|
-
--background-color: var(--color-brand-red);
|
|
5790
|
-
--text-color: var(--color-white);
|
|
5791
|
-
--icon-color: var(--color-white);
|
|
5792
|
-
--border-color: var(--color-white);
|
|
5793
|
-
}
|
|
5794
|
-
|
|
5795
|
-
.announcement-module-Xi0L5:where(.announcement-module-E6DqW):has([href]):hover {
|
|
5796
|
-
--background-color: var(--color-brand-dark-red);
|
|
5797
|
-
}
|
|
5798
|
-
|
|
5799
|
-
:root {
|
|
5800
|
-
--announcements-bottom: var(--announcements-height);
|
|
5801
|
-
}
|
|
5802
|
-
|
|
5803
|
-
.announcement-list-module-Nn6HC {
|
|
5804
|
-
position: relative;
|
|
5805
|
-
z-index: var(--announcements-layer);
|
|
5806
|
-
}
|
|
5807
|
-
|
|
5808
|
-
.announcement-list-module-Nn6HC.announcement-list-module-icXq8 {
|
|
5809
|
-
position: sticky;
|
|
5810
|
-
top: 0;
|
|
5811
|
-
}
|
|
5812
|
-
|
|
5813
|
-
.announcement-list-module-Nn6HC .announcement-list-module-cgFNU {
|
|
5814
|
-
display: flex;
|
|
5815
|
-
flex-direction: column;
|
|
5816
|
-
}
|
|
5817
|
-
|
|
5818
|
-
.announcement-list-module-Nn6HC .announcement-list-module-fUupi {
|
|
5819
|
-
margin-block: -1px;
|
|
5820
|
-
}
|
|
5821
|
-
|
|
5822
|
-
.announcement-list-module-Nn6HC .announcement-list-module-fUupi.announcement-list-module-W10mi,
|
|
5823
|
-
.announcement-list-module-Nn6HC .announcement-list-module-fUupi.announcement-list-module-tyqE0 {
|
|
5824
|
-
transition: all var(--transition-duration-short) linear;
|
|
5825
|
-
}
|
|
5826
|
-
|
|
5827
|
-
.announcement-list-module-Nn6HC .announcement-list-module-fUupi.announcement-list-module-W10mi,
|
|
5828
|
-
.announcement-list-module-Nn6HC .announcement-list-module-fUupi.announcement-list-module-tyqE0.announcement-list-module-dUOEB {
|
|
5829
|
-
z-index: -1;
|
|
5830
|
-
height: 0;
|
|
5831
|
-
}
|
|
5832
|
-
|
|
5833
|
-
.announcement-list-module-Nn6HC .announcement-list-module-fUupi.announcement-list-module-W10mi.announcement-list-module-1Rfn0,
|
|
5834
|
-
.announcement-list-module-Nn6HC .announcement-list-module-fUupi.announcement-list-module-tyqE0 {
|
|
5835
|
-
height: auto;
|
|
5836
|
-
}
|
|
5837
|
-
|
|
5838
5657
|
.menu-list-module-TloB9 {
|
|
5839
5658
|
--ml-font-size: var(--font-size-16);
|
|
5840
5659
|
--ml-font-weight: var(--font-weight-normal);
|
|
@@ -6242,10 +6061,12 @@ button.swiper-pagination-bullet {
|
|
|
6242
6061
|
}
|
|
6243
6062
|
|
|
6244
6063
|
.desktop-navigation-drawer-module-rXWPO {
|
|
6064
|
+
--drawer-bottom-margin: var(--header-height);
|
|
6065
|
+
|
|
6245
6066
|
/* TODO: wish I could get this to height auto with a max height */
|
|
6246
6067
|
block-size: min(
|
|
6247
6068
|
100%,
|
|
6248
|
-
calc(100svh - var(--header-
|
|
6069
|
+
calc(100svh - var(--header-bottom) - var(--drawer-bottom-margin))
|
|
6249
6070
|
);
|
|
6250
6071
|
}
|
|
6251
6072
|
|
|
@@ -6633,7 +6454,7 @@ button.swiper-pagination-bullet {
|
|
|
6633
6454
|
.blank-page-spacer-module-lXxle {
|
|
6634
6455
|
display: grid;
|
|
6635
6456
|
width: 100%;
|
|
6636
|
-
height: calc(100dvh - var(--header-
|
|
6457
|
+
height: calc(100dvh - var(--header-bottom));
|
|
6637
6458
|
background-color: var(--color-white);
|
|
6638
6459
|
place-items: center;
|
|
6639
6460
|
}
|
|
@@ -6861,6 +6682,187 @@ button.swiper-pagination-bullet {
|
|
|
6861
6682
|
gap: 1rem;
|
|
6862
6683
|
}
|
|
6863
6684
|
|
|
6685
|
+
.announcement-module-Xi0L5 {
|
|
6686
|
+
--z: 1;
|
|
6687
|
+
--icon-color: currentcolor;
|
|
6688
|
+
--close-button-size: var(--space-48);
|
|
6689
|
+
--background-color: var(--color-white);
|
|
6690
|
+
--text-color: var(--color-brand-dark-gray);
|
|
6691
|
+
--border-color: var(--color-brand-light-gray);
|
|
6692
|
+
}
|
|
6693
|
+
|
|
6694
|
+
.announcement-module-Xi0L5,
|
|
6695
|
+
.announcement-module-Xi0L5 * {
|
|
6696
|
+
box-sizing: border-box;
|
|
6697
|
+
}
|
|
6698
|
+
|
|
6699
|
+
.announcement-module-Xi0L5 {
|
|
6700
|
+
|
|
6701
|
+
position: relative;
|
|
6702
|
+
z-index: var(--z);
|
|
6703
|
+
display: flex;
|
|
6704
|
+
overflow: hidden;
|
|
6705
|
+
align-items: flex-end;
|
|
6706
|
+
justify-content: stretch;
|
|
6707
|
+
background-color: var(--background-color);
|
|
6708
|
+
border-block: 1px solid var(--border-color);
|
|
6709
|
+
color: var(--text-color);
|
|
6710
|
+
font-family: var(--font-family-sonic);
|
|
6711
|
+
font-size: var(--font-size-base);
|
|
6712
|
+
font-style: italic;
|
|
6713
|
+
line-height: 1;
|
|
6714
|
+
}
|
|
6715
|
+
|
|
6716
|
+
.announcement-module-Xi0L5 .announcement-module-4XVjD {
|
|
6717
|
+
display: grid;
|
|
6718
|
+
align-items: center;
|
|
6719
|
+
grid-template: 'icon content close';
|
|
6720
|
+
grid-template-columns: var(--close-button-size) 1fr var(--close-button-size);
|
|
6721
|
+
grid-template-rows: minmax(var(--close-button-size), min-content);
|
|
6722
|
+
inline-size: 100%;
|
|
6723
|
+
}
|
|
6724
|
+
|
|
6725
|
+
@media (width >= 576px) {
|
|
6726
|
+
|
|
6727
|
+
.announcement-module-Xi0L5 .announcement-module-4XVjD {
|
|
6728
|
+
grid-template: '. . icon . content . close';
|
|
6729
|
+
grid-template-columns:
|
|
6730
|
+
var(--close-button-size) 1fr var(--space-24) var(--space-8)
|
|
6731
|
+
minmax(0, max-content) 1fr var(--close-button-size)
|
|
6732
|
+
}
|
|
6733
|
+
}
|
|
6734
|
+
|
|
6735
|
+
.announcement-module-Xi0L5 .announcement-module-4XVjD svg {
|
|
6736
|
+
display: block;
|
|
6737
|
+
}
|
|
6738
|
+
|
|
6739
|
+
.announcement-module-Xi0L5 .announcement-module-4XVjD .announcement-module-lxmA2 {
|
|
6740
|
+
color: var(--icon-color);
|
|
6741
|
+
grid-area: icon;
|
|
6742
|
+
justify-self: center;
|
|
6743
|
+
}
|
|
6744
|
+
|
|
6745
|
+
.announcement-module-Xi0L5 .announcement-module-4XVjD .announcement-module-1Jn7y {
|
|
6746
|
+
padding: var(--space-8) 0;
|
|
6747
|
+
grid-area: content;
|
|
6748
|
+
}
|
|
6749
|
+
|
|
6750
|
+
@media (width >= 576px) {
|
|
6751
|
+
|
|
6752
|
+
.announcement-module-Xi0L5 .announcement-module-4XVjD .announcement-module-1Jn7y {
|
|
6753
|
+
display: flex;
|
|
6754
|
+
flex-flow: row wrap
|
|
6755
|
+
}
|
|
6756
|
+
}
|
|
6757
|
+
|
|
6758
|
+
.announcement-module-Xi0L5 .announcement-module-4XVjD .announcement-module-1Jn7y .announcement-module-8k2rK {
|
|
6759
|
+
flex-shrink: 1;
|
|
6760
|
+
margin: 0;
|
|
6761
|
+
font-size: var(--font-size-base);
|
|
6762
|
+
font-weight: var(--font-weight-black);
|
|
6763
|
+
text-transform: uppercase;
|
|
6764
|
+
}
|
|
6765
|
+
|
|
6766
|
+
@media (width >= 576px) {
|
|
6767
|
+
|
|
6768
|
+
.announcement-module-Xi0L5 .announcement-module-4XVjD .announcement-module-1Jn7y .announcement-module-8k2rK:has(+ .announcement-module--Bhqj, + .announcement-module-yXGsN)::after {
|
|
6769
|
+
content: '-';
|
|
6770
|
+
font-weight: var(--font-weight-normal);
|
|
6771
|
+
margin-inline: var(--space-4)
|
|
6772
|
+
}
|
|
6773
|
+
}
|
|
6774
|
+
|
|
6775
|
+
.announcement-module-Xi0L5 .announcement-module-4XVjD .announcement-module-1Jn7y .announcement-module-yXGsN {
|
|
6776
|
+
flex-shrink: 1;
|
|
6777
|
+
margin: 0;
|
|
6778
|
+
}
|
|
6779
|
+
|
|
6780
|
+
.announcement-module-Xi0L5 .announcement-module-4XVjD .announcement-module-1Jn7y .announcement-module--Bhqj {
|
|
6781
|
+
position: static;
|
|
6782
|
+
flex-shrink: 1;
|
|
6783
|
+
color: currentcolor;
|
|
6784
|
+
}
|
|
6785
|
+
|
|
6786
|
+
.announcement-module-Xi0L5 .announcement-module-4XVjD .announcement-module-1Jn7y .announcement-module--Bhqj:hover {
|
|
6787
|
+
text-decoration: underline;
|
|
6788
|
+
}
|
|
6789
|
+
|
|
6790
|
+
.announcement-module-Xi0L5 .announcement-module-4XVjD .announcement-module-1Jn7y .announcement-module--Bhqj::after {
|
|
6791
|
+
position: absolute;
|
|
6792
|
+
background: transparent;
|
|
6793
|
+
content: '';
|
|
6794
|
+
inset: 0;
|
|
6795
|
+
}
|
|
6796
|
+
|
|
6797
|
+
.announcement-module-Xi0L5 .announcement-module-4XVjD .announcement-module-gZ9ae {
|
|
6798
|
+
z-index: 1;
|
|
6799
|
+
grid-area: close;
|
|
6800
|
+
justify-self: center;
|
|
6801
|
+
}
|
|
6802
|
+
|
|
6803
|
+
.announcement-module-Xi0L5:where(.announcement-module-0LTWL) {
|
|
6804
|
+
--icon-color: var(--color-semantic-information);
|
|
6805
|
+
}
|
|
6806
|
+
|
|
6807
|
+
.announcement-module-Xi0L5:where(.announcement-module-Ga3lN) {
|
|
6808
|
+
--icon-color: var(--color-semantic-notify);
|
|
6809
|
+
}
|
|
6810
|
+
|
|
6811
|
+
.announcement-module-Xi0L5:where(.announcement-module-S3nSW) {
|
|
6812
|
+
--icon-color: var(--color-semantic-stop);
|
|
6813
|
+
}
|
|
6814
|
+
|
|
6815
|
+
.announcement-module-Xi0L5:where(.announcement-module-E6DqW) {
|
|
6816
|
+
--z: 2;
|
|
6817
|
+
--background-color: var(--color-brand-red);
|
|
6818
|
+
--text-color: var(--color-white);
|
|
6819
|
+
--icon-color: var(--color-white);
|
|
6820
|
+
--border-color: var(--color-white);
|
|
6821
|
+
}
|
|
6822
|
+
|
|
6823
|
+
.announcement-module-Xi0L5:where(.announcement-module-E6DqW):has([href]):hover {
|
|
6824
|
+
--background-color: var(--color-brand-dark-red);
|
|
6825
|
+
}
|
|
6826
|
+
|
|
6827
|
+
:root {
|
|
6828
|
+
--announcements-bottom: var(--announcements-height);
|
|
6829
|
+
}
|
|
6830
|
+
|
|
6831
|
+
.announcement-list-module-Nn6HC {
|
|
6832
|
+
position: relative;
|
|
6833
|
+
z-index: var(--announcements-layer);
|
|
6834
|
+
}
|
|
6835
|
+
|
|
6836
|
+
.announcement-list-module-Nn6HC.announcement-list-module-icXq8 {
|
|
6837
|
+
position: sticky;
|
|
6838
|
+
top: 0;
|
|
6839
|
+
}
|
|
6840
|
+
|
|
6841
|
+
.announcement-list-module-Nn6HC .announcement-list-module-cgFNU {
|
|
6842
|
+
display: flex;
|
|
6843
|
+
flex-direction: column;
|
|
6844
|
+
}
|
|
6845
|
+
|
|
6846
|
+
.announcement-list-module-Nn6HC .announcement-list-module-fUupi {
|
|
6847
|
+
margin-block: -1px;
|
|
6848
|
+
}
|
|
6849
|
+
|
|
6850
|
+
.announcement-list-module-Nn6HC .announcement-list-module-fUupi.announcement-list-module-W10mi,
|
|
6851
|
+
.announcement-list-module-Nn6HC .announcement-list-module-fUupi.announcement-list-module-tyqE0 {
|
|
6852
|
+
transition: all var(--transition-duration-short) linear;
|
|
6853
|
+
}
|
|
6854
|
+
|
|
6855
|
+
.announcement-list-module-Nn6HC .announcement-list-module-fUupi.announcement-list-module-W10mi,
|
|
6856
|
+
.announcement-list-module-Nn6HC .announcement-list-module-fUupi.announcement-list-module-tyqE0.announcement-list-module-dUOEB {
|
|
6857
|
+
z-index: -1;
|
|
6858
|
+
height: 0;
|
|
6859
|
+
}
|
|
6860
|
+
|
|
6861
|
+
.announcement-list-module-Nn6HC .announcement-list-module-fUupi.announcement-list-module-W10mi.announcement-list-module-1Rfn0,
|
|
6862
|
+
.announcement-list-module-Nn6HC .announcement-list-module-fUupi.announcement-list-module-tyqE0 {
|
|
6863
|
+
height: auto;
|
|
6864
|
+
}
|
|
6865
|
+
|
|
6864
6866
|
.create-account-form-module-TMU8F {
|
|
6865
6867
|
min-inline-size: 270px;
|
|
6866
6868
|
}
|
|
@@ -7112,7 +7114,7 @@ button.swiper-pagination-bullet {
|
|
|
7112
7114
|
.checkout-page-layout-module-lULV3 .checkout-page-layout-module-wGAXb {
|
|
7113
7115
|
position: fixed;
|
|
7114
7116
|
z-index: var(--top-actions-sticky-layer);
|
|
7115
|
-
top: var(--header-
|
|
7117
|
+
top: var(--header-bottom);
|
|
7116
7118
|
right: 0;
|
|
7117
7119
|
left: 0;
|
|
7118
7120
|
width: 100%;
|
|
@@ -7351,7 +7353,7 @@ button.swiper-pagination-bullet {
|
|
|
7351
7353
|
|
|
7352
7354
|
.product-details-page-layout-module-pPtZX .product-details-page-layout-module-KCKLZ .product-details-page-layout-module-3-19O {
|
|
7353
7355
|
position: sticky;
|
|
7354
|
-
top: calc(var(--header-
|
|
7356
|
+
top: calc(var(--header-bottom) + var(--space-8));
|
|
7355
7357
|
height: -moz-fit-content;
|
|
7356
7358
|
height: fit-content;
|
|
7357
7359
|
}
|
|
@@ -8539,7 +8541,7 @@ button.swiper-pagination-bullet {
|
|
|
8539
8541
|
}
|
|
8540
8542
|
}
|
|
8541
8543
|
.toast-provider-module-EoPKW {
|
|
8542
|
-
top: calc(var(--header-
|
|
8544
|
+
top: calc(var(--header-bottom) + var(--space-12));
|
|
8543
8545
|
right: auto;
|
|
8544
8546
|
left: auto;
|
|
8545
8547
|
display: flex;
|
|
@@ -8550,7 +8552,7 @@ button.swiper-pagination-bullet {
|
|
|
8550
8552
|
}
|
|
8551
8553
|
|
|
8552
8554
|
@media (width >= 1024px) {.toast-provider-module-EoPKW {
|
|
8553
|
-
top: calc(var(--header-
|
|
8555
|
+
top: calc(var(--header-bottom) + var(--space-12));
|
|
8554
8556
|
right: var(--toastify-toast-right);
|
|
8555
8557
|
width: -moz-fit-content;
|
|
8556
8558
|
width: fit-content;
|
package/package.json
CHANGED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare const RouteButton: React.ForwardRefExoticComponent<import("../../buttons/button/button").ButtonProps & import("./with-routing").WithRoutingProps & React.RefAttributes<HTMLElement>>;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare const RouteIconButton: React.ForwardRefExoticComponent<import("../../buttons/icon-button/icon-button").IconButtonProps & import("./with-routing").WithRoutingProps & React.RefAttributes<HTMLElement>>;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare const RouteLink: React.ForwardRefExoticComponent<Omit<import("../../buttons/link/link").LinkProps & React.RefAttributes<HTMLElement> & import("./with-routing").WithRoutingProps, "ref"> & React.RefAttributes<HTMLElement>>;
|