@ultraviolet/plus 1.0.2 → 1.0.4
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/CodeEditor/CodeEditor.cjs +6 -4
- package/dist/components/CodeEditor/CodeEditor.js +6 -4
- package/dist/components/Navigation/Navigation.d.ts +2 -1
- package/dist/components/Navigation/components/Item.cjs +44 -27
- package/dist/components/Navigation/components/Item.d.ts +5 -1
- package/dist/components/Navigation/components/Item.js +44 -27
- package/dist/components/OfferList/OfferList.d.ts +2 -0
- package/dist/components/OfferList/components/Banner.cjs +48 -29
- package/dist/components/OfferList/components/Banner.d.ts +2 -5
- package/dist/components/OfferList/components/Banner.js +49 -30
- package/dist/components/OfferList/components/Row.cjs +17 -19
- package/dist/components/OfferList/components/Row.js +19 -21
- package/dist/components/Plans/PlanHeader.js +3 -3
- package/dist/components/Plans/index.js +4 -4
- package/dist/components/Plans/locales/en.cjs +2 -2
- package/dist/components/Plans/locales/en.d.ts +2 -2
- package/dist/components/Plans/locales/en.js +2 -2
- package/dist/components/SteppedListCard/SteppedListCard.cjs +7 -4
- package/dist/components/SteppedListCard/SteppedListCard.js +7 -4
- package/dist/components/SteppedListCard/helper.cjs +7 -3
- package/dist/components/SteppedListCard/helper.js +7 -3
- package/package.json +12 -12
|
@@ -13,6 +13,10 @@ type ItemProps = {
|
|
|
13
13
|
* It is also used as the key for pinning.
|
|
14
14
|
*/
|
|
15
15
|
label: string;
|
|
16
|
+
/**
|
|
17
|
+
* It will be added after the label when you want to have complementory information with the label
|
|
18
|
+
*/
|
|
19
|
+
labelDescription?: ReactNode;
|
|
16
20
|
/**
|
|
17
21
|
* It should be a unique id and will be used for pin/unpin feature.
|
|
18
22
|
*/
|
|
@@ -75,5 +79,5 @@ type ItemProps = {
|
|
|
75
79
|
disabled?: boolean;
|
|
76
80
|
'data-testid'?: string;
|
|
77
81
|
};
|
|
78
|
-
export declare const Item: import("react").MemoExoticComponent<({ children, categoryIcon, 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>;
|
|
82
|
+
export declare const Item: import("react").MemoExoticComponent<({ children, categoryIcon, label, labelDescription, 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>;
|
|
79
83
|
export {};
|