profinansy-ui-lib 4.0.28 → 4.0.30

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.
@@ -5,3 +5,6 @@ export declare const Right: import("styled-components/dist/types").IStyledCompon
5
5
  export declare const FirstLineContainer: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
6
6
  export declare const HintContainer: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
7
7
  export declare const Hint: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<any, never>> & string & ({} | Omit<ComponentType<void>, keyof import("react").Component<any, {}, any>>);
8
+ export declare const Highlight: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, {
9
+ $highlightedTextColor?: string;
10
+ }>> & string;
@@ -19,4 +19,8 @@ export interface ICompanyInfo {
19
19
  hint?: IPopup;
20
20
  /**Контент загружается*/
21
21
  isLoading?: boolean;
22
+ /**Текст для подсвечивания */
23
+ highlightedText?: string;
24
+ /**Цвет для подсвечивания текста */
25
+ highlightedTextColor?: string;
22
26
  }
@@ -1,3 +1,3 @@
1
1
  import { ICompanyInfo } from '../CompanyInfo.typed';
2
- declare const Content: ({ firstLine, secondLine, logo, logoSize, compressionImage, withoutLogo, isLoading, hint }: ICompanyInfo) => import("react/jsx-runtime").JSX.Element;
2
+ declare const Content: ({ firstLine, secondLine, logo, logoSize, compressionImage, withoutLogo, isLoading, hint, highlightedText, highlightedTextColor }: ICompanyInfo) => import("react/jsx-runtime").JSX.Element;
3
3
  export { Content };
@@ -3,6 +3,8 @@ interface IProps {
3
3
  hint: ICompanyInfo['hint'];
4
4
  firstLine: ICompanyInfo['firstLine'];
5
5
  isLoading: boolean;
6
+ highlightedText?: string;
7
+ highlightedTextColor?: string;
6
8
  }
7
- declare const FirstLine: ({ firstLine, hint, isLoading }: IProps) => import("react/jsx-runtime").JSX.Element;
9
+ declare const FirstLine: ({ firstLine, hint, isLoading, highlightedText, highlightedTextColor }: IProps) => import("react/jsx-runtime").JSX.Element;
8
10
  export { FirstLine };
@@ -1,6 +1,8 @@
1
1
  interface IProps {
2
2
  secondLine: string;
3
3
  isLoading: boolean;
4
+ highlightedText?: string;
5
+ highlightedTextColor?: string;
4
6
  }
5
- declare const SecondLine: ({ secondLine, isLoading }: IProps) => import("react/jsx-runtime").JSX.Element;
7
+ declare const SecondLine: ({ secondLine, isLoading, highlightedText, highlightedTextColor }: IProps) => import("react/jsx-runtime").JSX.Element;
6
8
  export { SecondLine };