profinansy-ui-lib 3.6.80 → 3.6.82

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.
@@ -20,4 +20,9 @@ export declare const HintContainer: import("styled-components").StyledComponent<
20
20
  }, never>;
21
21
  declare const TitleLink: import("styled-components").StyledComponent<"h4", import("styled-components").DefaultTheme, {}, never>;
22
22
  declare const Subtitle: import("styled-components").StyledComponent<"p", import("styled-components").DefaultTheme, {}, never>;
23
- export { Container, Header, TitleContainer, Title, TitleLink, Subtitle, FirstLine };
23
+ declare const Content: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
24
+ declare const Blocked: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {
25
+ $padding: string;
26
+ }, never>;
27
+ declare const BlockedIcon: import("styled-components").StyledComponent<"button", import("styled-components").DefaultTheme, {}, never>;
28
+ export { Container, Header, TitleContainer, Title, TitleLink, Subtitle, FirstLine, Content, Blocked, BlockedIcon };
@@ -31,4 +31,8 @@ export interface ICard {
31
31
  subtitle?: string;
32
32
  /**Карточка кликабельна, добавляет тень при наведении*/
33
33
  isHover?: boolean;
34
+ /**Контент в карточке заблокирован*/
35
+ isBlocked?: boolean;
36
+ /**Клик по замочку*/
37
+ handleBlockClick?: () => void;
34
38
  }