@tactics/lokaal-loket 0.0.508 → 0.0.510

Sign up to get free protection for your applications and to get access to all the features.
package/build/index.d.cts CHANGED
@@ -372,9 +372,10 @@ interface ILink extends PropsWithChildren {
372
372
  withIconBefore?: React__default.ReactElement<IIcon>;
373
373
  withIconAfter?: React__default.ReactElement<IIcon>;
374
374
  target?: React__default.HTMLAttributeAnchorTarget;
375
+ inline?: boolean;
375
376
  }
376
377
 
377
- declare const Link: ({ id, title, href, onClick, ariaLabel, children, context, withIconBefore, withIconAfter, target, }: ILink) => react_jsx_runtime.JSX.Element;
378
+ declare const Link: ({ id, title, href, onClick, ariaLabel, children, context, withIconBefore, withIconAfter, target, inline, }: ILink) => react_jsx_runtime.JSX.Element;
378
379
 
379
380
  interface IBreadcrumb {
380
381
  crumbs: React__default.ReactElement<ILink>[];
@@ -1755,6 +1756,7 @@ interface IActionMenuItem {
1755
1756
  icon: React.ReactElement<IIcon>;
1756
1757
  label: string;
1757
1758
  onClick: () => void;
1759
+ href?: string;
1758
1760
  }
1759
1761
  interface IActionMenuToggleItem {
1760
1762
  toggle: React.ReactElement<IToggle>;
@@ -1762,7 +1764,7 @@ interface IActionMenuToggleItem {
1762
1764
 
1763
1765
  declare const ActionMenu: {
1764
1766
  ({ children }: IActionMenu): react_jsx_runtime.JSX.Element;
1765
- Item: ({ icon, label, onClick }: IActionMenuItem) => react_jsx_runtime.JSX.Element;
1767
+ Item: ({ icon, label, onClick, href }: IActionMenuItem) => react_jsx_runtime.JSX.Element;
1766
1768
  ToggleItem: ({ toggle }: IActionMenuToggleItem) => react_jsx_runtime.JSX.Element;
1767
1769
  };
1768
1770
 
@@ -2195,7 +2197,7 @@ interface ICard {
2195
2197
  application?: React__default.ReactElement<ICardApplication | IButton>;
2196
2198
  onMouseEnter?: (event: React__default.MouseEvent<HTMLDivElement, MouseEvent>) => void;
2197
2199
  onMouseLeave?: (event: React__default.MouseEvent<HTMLDivElement, MouseEvent>) => void;
2198
- onClick?: (event: React__default.MouseEvent<HTMLDivElement, MouseEvent>) => void;
2200
+ onClick?: (event: React__default.MouseEvent<HTMLAnchorElement, MouseEvent>) => void;
2199
2201
  }
2200
2202
  interface ICardFavorite {
2201
2203
  remove: React__default.ReactElement<IFavoured>;
@@ -2209,9 +2211,9 @@ interface ICardApplication {
2209
2211
  modal?: React__default.ReactElement<IConfirm>;
2210
2212
  }
2211
2213
 
2212
- declare const CardFavorite: (props: ICardFavorite) => react_jsx_runtime.JSX.Element;
2214
+ declare const Card: React__default.MemoExoticComponent<(props: ICard) => react_jsx_runtime.JSX.Element>;
2213
2215
 
2214
- declare const Card: (props: ICard) => react_jsx_runtime.JSX.Element;
2216
+ declare const CardFavorite: (props: ICardFavorite) => react_jsx_runtime.JSX.Element;
2215
2217
 
2216
2218
  interface IMinimalCard {
2217
2219
  badge: React__default.ReactElement<IBadge>;
@@ -2249,7 +2251,7 @@ interface IShoppingCartAction {
2249
2251
  modal?: React__default.ReactElement<IConfirmModal>;
2250
2252
  }
2251
2253
 
2252
- declare const ShoppingCartAction: (props: IShoppingCartAction) => react_jsx_runtime.JSX.Element;
2254
+ declare const ShoppingCartAction: React__default.MemoExoticComponent<(props: IShoppingCartAction) => react_jsx_runtime.JSX.Element>;
2253
2255
 
2254
2256
  declare const StyleVarsMbp: () => react_jsx_runtime.JSX.Element;
2255
2257
 
package/build/index.d.ts CHANGED
@@ -372,9 +372,10 @@ interface ILink extends PropsWithChildren {
372
372
  withIconBefore?: React__default.ReactElement<IIcon>;
373
373
  withIconAfter?: React__default.ReactElement<IIcon>;
374
374
  target?: React__default.HTMLAttributeAnchorTarget;
375
+ inline?: boolean;
375
376
  }
376
377
 
377
- declare const Link: ({ id, title, href, onClick, ariaLabel, children, context, withIconBefore, withIconAfter, target, }: ILink) => react_jsx_runtime.JSX.Element;
378
+ declare const Link: ({ id, title, href, onClick, ariaLabel, children, context, withIconBefore, withIconAfter, target, inline, }: ILink) => react_jsx_runtime.JSX.Element;
378
379
 
379
380
  interface IBreadcrumb {
380
381
  crumbs: React__default.ReactElement<ILink>[];
@@ -1755,6 +1756,7 @@ interface IActionMenuItem {
1755
1756
  icon: React.ReactElement<IIcon>;
1756
1757
  label: string;
1757
1758
  onClick: () => void;
1759
+ href?: string;
1758
1760
  }
1759
1761
  interface IActionMenuToggleItem {
1760
1762
  toggle: React.ReactElement<IToggle>;
@@ -1762,7 +1764,7 @@ interface IActionMenuToggleItem {
1762
1764
 
1763
1765
  declare const ActionMenu: {
1764
1766
  ({ children }: IActionMenu): react_jsx_runtime.JSX.Element;
1765
- Item: ({ icon, label, onClick }: IActionMenuItem) => react_jsx_runtime.JSX.Element;
1767
+ Item: ({ icon, label, onClick, href }: IActionMenuItem) => react_jsx_runtime.JSX.Element;
1766
1768
  ToggleItem: ({ toggle }: IActionMenuToggleItem) => react_jsx_runtime.JSX.Element;
1767
1769
  };
1768
1770
 
@@ -2195,7 +2197,7 @@ interface ICard {
2195
2197
  application?: React__default.ReactElement<ICardApplication | IButton>;
2196
2198
  onMouseEnter?: (event: React__default.MouseEvent<HTMLDivElement, MouseEvent>) => void;
2197
2199
  onMouseLeave?: (event: React__default.MouseEvent<HTMLDivElement, MouseEvent>) => void;
2198
- onClick?: (event: React__default.MouseEvent<HTMLDivElement, MouseEvent>) => void;
2200
+ onClick?: (event: React__default.MouseEvent<HTMLAnchorElement, MouseEvent>) => void;
2199
2201
  }
2200
2202
  interface ICardFavorite {
2201
2203
  remove: React__default.ReactElement<IFavoured>;
@@ -2209,9 +2211,9 @@ interface ICardApplication {
2209
2211
  modal?: React__default.ReactElement<IConfirm>;
2210
2212
  }
2211
2213
 
2212
- declare const CardFavorite: (props: ICardFavorite) => react_jsx_runtime.JSX.Element;
2214
+ declare const Card: React__default.MemoExoticComponent<(props: ICard) => react_jsx_runtime.JSX.Element>;
2213
2215
 
2214
- declare const Card: (props: ICard) => react_jsx_runtime.JSX.Element;
2216
+ declare const CardFavorite: (props: ICardFavorite) => react_jsx_runtime.JSX.Element;
2215
2217
 
2216
2218
  interface IMinimalCard {
2217
2219
  badge: React__default.ReactElement<IBadge>;
@@ -2249,7 +2251,7 @@ interface IShoppingCartAction {
2249
2251
  modal?: React__default.ReactElement<IConfirmModal>;
2250
2252
  }
2251
2253
 
2252
- declare const ShoppingCartAction: (props: IShoppingCartAction) => react_jsx_runtime.JSX.Element;
2254
+ declare const ShoppingCartAction: React__default.MemoExoticComponent<(props: IShoppingCartAction) => react_jsx_runtime.JSX.Element>;
2253
2255
 
2254
2256
  declare const StyleVarsMbp: () => react_jsx_runtime.JSX.Element;
2255
2257