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.
- package/dist/components/blocks/CompanyInfo/CompanyInfo.styled.d.ts +3 -0
- package/dist/components/blocks/CompanyInfo/CompanyInfo.typed.d.ts +4 -0
- package/dist/components/blocks/CompanyInfo/components/Content.d.ts +1 -1
- package/dist/components/blocks/CompanyInfo/components/FirstLine.d.ts +3 -1
- package/dist/components/blocks/CompanyInfo/components/SecondLine.d.ts +3 -1
- package/dist/profinansy-ui-lib.cjs.js +1030 -1021
- package/dist/profinansy-ui-lib.cjs.js.map +1 -1
- package/dist/profinansy-ui-lib.es.js +8105 -8710
- package/dist/profinansy-ui-lib.es.js.map +1 -1
- package/package.json +1 -1
|
@@ -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;
|
|
@@ -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 };
|