@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.
Files changed (61) hide show
  1. package/dist/algolia/algolia-active-categories.js +2 -2
  2. package/dist/breadcrumbs/breadcrumb.js +4 -4
  3. package/dist/buttons/button/button.d.ts +5 -2
  4. package/dist/buttons/button/button.js +22 -11
  5. package/dist/buttons/icon-button/icon-button.d.ts +6 -3
  6. package/dist/buttons/icon-button/icon-button.js +12 -5
  7. package/dist/buttons/link/link.d.ts +2 -0
  8. package/dist/buttons/link/link.js +13 -9
  9. package/dist/cards/category-card/category-card.d.ts +3 -1
  10. package/dist/cards/category-card/category-card.js +4 -4
  11. package/dist/cards/orderline-card/orderline-card.js +2 -2
  12. package/dist/cards/product-card/connected-product-card.d.ts +2 -0
  13. package/dist/cards/product-card/product-card.d.ts +3 -1
  14. package/dist/cards/product-card/product-card.js +3 -3
  15. package/dist/collapsables/show-all/show-all.js +2 -2
  16. package/dist/exports.d.ts +2 -3
  17. package/dist/filters/active-filters/active-filters.js +2 -2
  18. package/dist/footer/footer.js +6 -6
  19. package/dist/global-search/search-result-panel/sections/no-search.js +2 -2
  20. package/dist/global-search/search-result-panel/sections/with-results.js +2 -2
  21. package/dist/header/buttons/account/connected-account-button.js +2 -2
  22. package/dist/header/buttons/cart/connected-cart-button.js +2 -2
  23. package/dist/header/buttons/favorites/connected-favorites-button.js +2 -2
  24. package/dist/header/buttons/search/search-button.js +2 -2
  25. package/dist/header/link-list/navigation-link-list.js +3 -3
  26. package/dist/header/sonic-logo/sonic-logo.js +2 -3
  27. package/dist/index.js +2 -3
  28. package/dist/lists/menu-list/menu-list-header.js +2 -2
  29. package/dist/lists/menu-list/menu-list-item.js +2 -2
  30. package/dist/modals/signin/sign-in-dialog.js +2 -2
  31. package/dist/notifications/announcements/announcement.js +2 -2
  32. package/dist/pages/account/components/sign-in-form/sign-in-form.js +1 -2
  33. package/dist/pages/account/create-account-page/create-account-page.js +2 -2
  34. package/dist/pages/checkout/cart-page/cart-page.js +4 -6
  35. package/dist/pages/checkout/order-confirmation-page/order-confirmation-page-content.js +3 -3
  36. package/dist/pages/checkout/shipping-page/components/currency-change-dialog.js +2 -2
  37. package/dist/pages/checkout/shipping-page/components/readonly-address.js +3 -3
  38. package/dist/pages/product/components/product-overview.d.ts +2 -0
  39. package/dist/pages/product/components/product-overview.js +1 -1
  40. package/dist/pages/product/product-listing-page/no-results/no-results.js +2 -2
  41. package/dist/pages/product/product-listing-page/product-listing-page-category-carousel/product-listing-page-category-carousel.js +1 -1
  42. package/dist/pages/product/product-listing-page/product-listing-product-overview/product-listing-product-overview.js +1 -1
  43. package/dist/promos/promo-banner/promo-banner.js +2 -2
  44. package/dist/promos/promo-card/promo-card.js +2 -2
  45. package/dist/shared/routing/route-provider.d.ts +4 -3
  46. package/dist/shared/routing/route-provider.js +4 -2
  47. package/dist/shared/routing/route-utils.d.ts +4 -0
  48. package/dist/shared/routing/route-utils.js +8 -0
  49. package/dist/shared/routing/types.d.ts +7 -0
  50. package/dist/shared/routing/use-route-link-element.d.ts +1 -0
  51. package/dist/shared/routing/use-route-link-element.js +11 -0
  52. package/dist/shared/routing/with-routing.d.ts +3 -6
  53. package/dist/shared/routing/with-routing.js +6 -6
  54. package/dist/shared/utils/price.d.ts +1 -1
  55. package/package.json +1 -1
  56. package/dist/shared/routing/route-button.d.ts +0 -1
  57. package/dist/shared/routing/route-button.js +0 -7
  58. package/dist/shared/routing/route-icon-button.d.ts +0 -1
  59. package/dist/shared/routing/route-icon-button.js +0 -7
  60. package/dist/shared/routing/route-link.d.ts +0 -1
  61. package/dist/shared/routing/route-link.js +0 -7
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sonic-equipment/ui",
3
- "version": "169.0.0",
3
+ "version": "170.0.0",
4
4
  "type": "module",
5
5
  "license": "MIT",
6
6
  "engines": {
@@ -1 +0,0 @@
1
- export declare const RouteButton: React.ForwardRefExoticComponent<import("../../buttons/button/button").ButtonProps & import("./with-routing").WithRoutingProps & React.RefAttributes<HTMLElement>>;
@@ -1,7 +0,0 @@
1
- "use client";
2
- import { Button } from '../../buttons/button/button.js';
3
- import { withRouting } from './with-routing.js';
4
-
5
- const RouteButton = withRouting(Button);
6
-
7
- export { RouteButton };
@@ -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,7 +0,0 @@
1
- "use client";
2
- import { IconButton } from '../../buttons/icon-button/icon-button.js';
3
- import { withRouting } from './with-routing.js';
4
-
5
- const RouteIconButton = withRouting(IconButton);
6
-
7
- export { RouteIconButton };
@@ -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>>;
@@ -1,7 +0,0 @@
1
- "use client";
2
- import { Link } from '../../buttons/link/link.js';
3
- import { withRouting } from './with-routing.js';
4
-
5
- const RouteLink = withRouting(Link);
6
-
7
- export { RouteLink };