@ultraviolet/plus 0.23.5 → 0.24.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.
@@ -34,7 +34,9 @@ type ItemProps = {
34
34
  * `@ultraviolet/ui`
35
35
  */
36
36
  badgeSentiment?: ComponentProps<typeof Badge>['sentiment'];
37
- href?: string;
37
+ href?: HTMLAnchorElement['href'];
38
+ target?: HTMLAnchorElement['target'];
39
+ rel?: HTMLAnchorElement['rel'];
38
40
  /**
39
41
  * This function will be triggered on click of the item. If the item is expandable
40
42
  * toggle will be passed with it.
@@ -80,5 +82,5 @@ type ItemProps = {
80
82
  disabled?: boolean;
81
83
  'data-testid'?: string;
82
84
  };
83
- export declare const Item: import("react").MemoExoticComponent<({ children, categoryIcon, categoryIconVariant, label, subLabel, badgeText, badgeSentiment, href, onToggle, onClickPinUnpin, toggle, active, noPinButton, type, hasParents, as, disabled, noExpand, index, id, "data-testid": dataTestId, }: ItemProps) => import("@emotion/react/jsx-runtime").JSX.Element | null>;
85
+ export declare const Item: import("react").MemoExoticComponent<({ children, categoryIcon, categoryIconVariant, label, subLabel, badgeText, badgeSentiment, href, target, rel, onToggle, onClickPinUnpin, toggle, active, noPinButton, type, hasParents, as, disabled, noExpand, index, id, "data-testid": dataTestId, }: ItemProps) => import("@emotion/react/jsx-runtime").JSX.Element | null>;
84
86
  export {};