design-system-silkhaus 2.8.0 → 2.9.1

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.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
@@ -1060,6 +1068,7 @@ export declare interface TravelListProps extends default_2.PropsWithChildren {
1060
1068
  items?: TravelListItemProps[];
1061
1069
  hideShare?: boolean;
1062
1070
  hideEdit?: boolean;
1071
+ emptyListMessage?: string;
1063
1072
  }
1064
1073
 
1065
1074
  export declare const TriangleDownIcon: FC<{