@sonic-equipment/ui 169.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/exports.d.ts +2 -3
- package/dist/filters/active-filters/active-filters.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/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/notifications/announcements/announcement.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/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/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/price.d.ts +1 -1
- 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/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>>;
|