@ultraviolet/plus 0.25.0 → 0.25.2
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/components/Navigation/Navigation.d.ts +1 -2
- package/dist/components/Navigation/components/Item.cjs +20 -23
- package/dist/components/Navigation/components/Item.d.ts +1 -5
- package/dist/components/Navigation/components/Item.js +21 -24
- package/dist/components/Navigation/components/ItemProvider.cjs +13 -0
- package/dist/components/Navigation/components/ItemProvider.d.ts +7 -0
- package/dist/components/Navigation/components/ItemProvider.js +13 -0
- package/dist/components/Navigation/components/PinnedItems.cjs +4 -4
- package/dist/components/Navigation/components/PinnedItems.js +4 -4
- package/package.json +5 -6
|
@@ -59,10 +59,6 @@ type ItemProps = {
|
|
|
59
59
|
* You don't need to use this prop it's used internally to control the type of the item
|
|
60
60
|
*/
|
|
61
61
|
type?: ItemType;
|
|
62
|
-
/**
|
|
63
|
-
* You don't need to use this prop it's used internally to control if the item has a parent
|
|
64
|
-
*/
|
|
65
|
-
hasParents?: boolean;
|
|
66
62
|
/**
|
|
67
63
|
* You don't need to use this prop it's used internally for pinned item to be reorganized with drag and drop
|
|
68
64
|
*/
|
|
@@ -82,5 +78,5 @@ type ItemProps = {
|
|
|
82
78
|
disabled?: boolean;
|
|
83
79
|
'data-testid'?: string;
|
|
84
80
|
};
|
|
85
|
-
export declare const Item: import("react").MemoExoticComponent<({ children, categoryIcon, categoryIconVariant, label, subLabel, badgeText, badgeSentiment, href, target, rel, onToggle, onClickPinUnpin, toggle, active, noPinButton, type,
|
|
81
|
+
export declare const Item: import("react").MemoExoticComponent<({ children, categoryIcon, categoryIconVariant, label, subLabel, badgeText, badgeSentiment, href, target, rel, onToggle, onClickPinUnpin, toggle, active, noPinButton, type, as, disabled, noExpand, index, id, "data-testid": dataTestId, }: ItemProps) => import("@emotion/react/jsx-runtime").JSX.Element | null>;
|
|
86
82
|
export {};
|