profinansy-ui-lib 3.5.88 → 3.5.90
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.typed.d.ts +2 -0
- package/dist/components/blocks/CompanyInfo/components/Avatar.d.ts +12 -0
- package/dist/components/blocks/CompanyInfo/components/Content.d.ts +1 -1
- package/dist/components/blocks/CompanyInfo/components/FirstLine.d.ts +2 -1
- package/dist/components/blocks/CompanyInfo/components/SecondLine.d.ts +6 -0
- package/dist/components/uikit/Input/Input.stories.d.ts +2 -0
- package/dist/components/uikit/Input/Input.typed.d.ts +1 -0
- package/dist/components/uikit/Skeleton/Skeleton.d.ts +1 -1
- package/dist/components/uikit/Skeleton/Skeleton.stories.d.ts +1 -1
- package/dist/components/uikit/Skeleton/Skeleton.typed.d.ts +2 -0
- package/dist/index.js +28 -27
- package/package.json +1 -1
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { ImageSize } from '../../../../utils/getImageFormat';
|
|
2
|
+
interface IProps {
|
|
3
|
+
firstLine: string;
|
|
4
|
+
secondLine: string;
|
|
5
|
+
logo: string | string[];
|
|
6
|
+
logoSize: number;
|
|
7
|
+
compressionImage: ImageSize;
|
|
8
|
+
withoutLogo: boolean;
|
|
9
|
+
isLoading: boolean;
|
|
10
|
+
}
|
|
11
|
+
export declare const Avatar: ({ firstLine, secondLine, logoSize, logo, withoutLogo, isLoading, compressionImage }: IProps) => JSX.Element;
|
|
12
|
+
export {};
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { ICompanyInfo } from '../CompanyInfo.typed';
|
|
2
|
-
declare const Content: ({ firstLine, secondLine, logo, logoSize, compressionImage, withoutLogo, hint }: ICompanyInfo) => JSX.Element;
|
|
2
|
+
declare const Content: ({ firstLine, secondLine, logo, logoSize, compressionImage, withoutLogo, isLoading, hint }: ICompanyInfo) => JSX.Element;
|
|
3
3
|
export { Content };
|
|
@@ -2,6 +2,7 @@ import { ICompanyInfo } from '../CompanyInfo.typed';
|
|
|
2
2
|
interface IProps {
|
|
3
3
|
hint: ICompanyInfo['hint'];
|
|
4
4
|
firstLine: ICompanyInfo['firstLine'];
|
|
5
|
+
isLoading: boolean;
|
|
5
6
|
}
|
|
6
|
-
declare const FirstLine: ({ firstLine, hint }: IProps) => JSX.Element;
|
|
7
|
+
declare const FirstLine: ({ firstLine, hint, isLoading }: IProps) => JSX.Element;
|
|
7
8
|
export { FirstLine };
|
|
@@ -2,6 +2,8 @@ import React from 'react';
|
|
|
2
2
|
declare const _default: {
|
|
3
3
|
title: string;
|
|
4
4
|
component: React.ForwardRefExoticComponent<import("./Input.typed").IInput & React.RefAttributes<HTMLInputElement>>;
|
|
5
|
+
tags: string[];
|
|
5
6
|
};
|
|
6
7
|
export default _default;
|
|
7
8
|
export declare const Input: () => JSX.Element;
|
|
9
|
+
export declare const NegativeInput: () => JSX.Element;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { ISkeleton } from './Skeleton.typed';
|
|
2
|
-
declare const Skeleton: ({ height, maxWidth, bottom, right, radius, className }: ISkeleton) => JSX.Element;
|
|
2
|
+
declare const Skeleton: ({ height, maxWidth, minWidth, bottom, right, radius, className }: ISkeleton) => JSX.Element;
|
|
3
3
|
export { Skeleton };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
declare const _default: {
|
|
2
2
|
title: string;
|
|
3
|
-
component: ({ height, maxWidth, bottom, right, radius, className }: import("./Skeleton.typed").ISkeleton) => JSX.Element;
|
|
3
|
+
component: ({ height, maxWidth, minWidth, bottom, right, radius, className }: import("./Skeleton.typed").ISkeleton) => JSX.Element;
|
|
4
4
|
tags: string[];
|
|
5
5
|
parameters: {
|
|
6
6
|
design: {
|