@club-employes/utopia 4.401.0 → 4.403.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.
@@ -1,7 +1,7 @@
1
1
  import { TextSize, TextWeight } from '../Text/types';
2
2
  export interface LinkProps {
3
3
  label: string;
4
- to: string;
4
+ to?: string;
5
5
  target?: '_self' | '_blank';
6
6
  iconLeft?: string;
7
7
  iconRight?: string;
@@ -9,6 +9,7 @@ export interface DeliveryMethodCardProps {
9
9
  * summary layout (icon box + title + right-aligned price). The component
10
10
  * never formats the value itself. */
11
11
  price?: string;
12
+ oldPrice?: string;
12
13
  /** Icon name shown in the summary-layout icon box. Defaults to an envelope. */
13
14
  icon?: string;
14
15
  /** Selected state for the summary layout (blue border + tint). */