@apolitical/component-library 6.0.2 → 6.0.3
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/cards/card/card.d.ts +1 -1
- package/cards/cards.types.d.ts +7 -2
- package/cards/carousel/components/carousel/carousel.helpers.d.ts +4 -1
- package/hooks/use-tooltips.d.ts +0 -2
- package/index.js +25 -25
- package/index.mjs +1346 -1343
- package/package.json +1 -1
- package/text/pill/pill.d.ts +4 -1
package/package.json
CHANGED
package/text/pill/pill.d.ts
CHANGED
|
@@ -13,7 +13,10 @@ interface Props {
|
|
|
13
13
|
/** The icon to display in the pill */
|
|
14
14
|
icon?: string;
|
|
15
15
|
/** The tooltip to display on hover/focus. */
|
|
16
|
-
tooltip?: string
|
|
16
|
+
tooltip?: string | {
|
|
17
|
+
id: string;
|
|
18
|
+
text: string;
|
|
19
|
+
};
|
|
17
20
|
/** Optional test ID */
|
|
18
21
|
'data-testid'?: string;
|
|
19
22
|
}
|