gantri-components 3.0.0-beta.28 → 3.0.0-beta.29

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.
@@ -2,6 +2,7 @@ import { CSSProperties, ReactNode } from 'react';
2
2
  export interface OverlayProps {
3
3
  /** Trigger event interactions with this component causes `content` to render, as appropriate. */
4
4
  children?: ReactNode;
5
+ className?: string;
5
6
  /** Applied as inline styles to the `children` wrapper. */
6
7
  containerStyles?: CSSProperties;
7
8
  /** The component to show/hide. */
@@ -7,6 +7,7 @@ type TooltipBaseProps = Partial<TooltipDefaultProps> & {
7
7
  * If specified, it will take preference over title/description
8
8
  * */
9
9
  Component?: ReactNode;
10
+ className?: string;
10
11
  description?: string;
11
12
  descriptionTx?: string;
12
13
  title?: string;