design-system-silkhaus 2.8.0 → 2.9.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.
- package/dist/index.cjs +37 -37
- package/dist/index.d.ts +8 -0
- package/dist/index.js +5193 -5155
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -957,6 +957,14 @@ export declare interface ToggleCardProps extends HTMLAttributes<HTMLDivElement>
|
|
|
957
957
|
*/
|
|
958
958
|
export declare const Tooltip: FC<PropsWithChildren<TooltipProps>>;
|
|
959
959
|
|
|
960
|
+
export declare const TooltipContentWithImage: FC<TooltipContentWithImageProps>;
|
|
961
|
+
|
|
962
|
+
export declare type TooltipContentWithImageProps = {
|
|
963
|
+
imageUrl: string;
|
|
964
|
+
imageAlt?: string;
|
|
965
|
+
content?: default_2.ReactNode;
|
|
966
|
+
};
|
|
967
|
+
|
|
960
968
|
export declare interface TooltipProps {
|
|
961
969
|
/**
|
|
962
970
|
* Content of the tooltip
|