profinansy-ui-lib 3.1.48 → 3.1.50

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.
@@ -56,9 +56,10 @@ export declare function usePopup({ placement, isHover }: {
56
56
  setOpen: React.Dispatch<React.SetStateAction<boolean>>;
57
57
  };
58
58
  declare const Popup: ({ content, ...restOptions }: IPopup) => JSX.Element;
59
- export declare const PopupTrigger: ({ isText, targetElement }: {
59
+ export declare const PopupTrigger: ({ isText, targetElement, targetClass }: {
60
60
  isText: boolean;
61
61
  targetElement?: React.ReactNode;
62
+ targetClass?: string;
62
63
  }) => JSX.Element;
63
64
  export declare const PopupContent: ({ content }: {
64
65
  content: string[];
@@ -11,4 +11,6 @@ export interface IPopup {
11
11
  targetElement?: React.ReactNode;
12
12
  /**Контент подсказки*/
13
13
  content: string[];
14
+ /**Класс для триггера*/
15
+ targetClass?: string;
14
16
  }