@playkit-js/playkit-js-ui 0.79.3 → 0.79.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.
@@ -7191,6 +7191,7 @@ declare class Tooltip extends Component<TooltipProps & WithEventManagerProps, an
7191
7191
  static defaultProps: {
7192
7192
  type: ToolTipPosition;
7193
7193
  maxWidth: string;
7194
+ strictPosition: boolean;
7194
7195
  };
7195
7196
  /**
7196
7197
  * clear hover timeout
@@ -7297,6 +7298,7 @@ declare interface TooltipOwnProps {
7297
7298
  type?: ToolTipPosition;
7298
7299
  maxWidth?: string;
7299
7300
  label: string;
7301
+ strictPosition?: boolean;
7300
7302
  }
7301
7303
 
7302
7304
  declare type ToolTipPosition = 'top' | 'bottom' | 'top-right' | 'top-left' | 'bottom-right' | 'bottom-left' | 'left' | 'right';