profinansy-ui-lib 4.0.84 → 4.0.86

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.
@@ -14,7 +14,9 @@ export declare const Content: import("styled-components/dist/types").IStyledComp
14
14
  export declare const ContentInside: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {
15
15
  $isOverflowAuto: boolean;
16
16
  }>> & string;
17
- export declare const Header: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
17
+ export declare const Header: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {
18
+ $hideMobile?: boolean;
19
+ }>> & string;
18
20
  export declare const FirstLineHeader: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {
19
21
  $adaptiveRightContent: number;
20
22
  }>> & string;
@@ -27,4 +29,7 @@ export declare const Subtitle: import("styled-components/dist/types").IStyledCom
27
29
  ref?: import("react").Ref<HTMLElement>;
28
30
  }, never>> & string & Omit<import("react").ForwardRefExoticComponent<import("../Typography/Typography.typed").ITypographyProps & import("react").CSSProperties & import("react").RefAttributes<HTMLElement>>, keyof import("react").Component<any, {}, any>>;
29
31
  export declare const BottomContent: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
32
+ export declare const MobileHeader: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
33
+ export declare const MobileTitle: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement>, never>> & string;
34
+ export declare const MobileCloseButton: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
30
35
  export declare const CloseButton: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, never>> & string;
@@ -47,4 +47,14 @@ export interface IModal {
47
47
  className?: string;
48
48
  /** Пропс для работы модалки через стэк */
49
49
  withStack?: boolean;
50
+ /** Текст левой кнопки в хедере (только мобильная версия) */
51
+ mobileLeftButtonText?: string;
52
+ /** Действие при клике на левую кнопку (только мобильная версия) */
53
+ onMobileLeftButton?: () => void;
54
+ /** Текст правой кнопки в хедере (только мобильная версия) */
55
+ mobileRightButtonText?: string;
56
+ /** Действие при клике на правую кнопку (только мобильная версия) */
57
+ onMobileRightButton?: () => void;
58
+ /** Показывать иконку закрытия в хедере (только мобильная версия) */
59
+ mobileCloseVisible?: boolean;
50
60
  }