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.
@@ -17,4 +17,6 @@ export interface ICompanyInfo {
17
17
  compressionImage?: ImageSize;
18
18
  /**Добавить подсказку к полю*/
19
19
  hint?: IPopup;
20
+ /**Контент загружается*/
21
+ isLoading?: boolean;
20
22
  }
@@ -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 };
@@ -0,0 +1,6 @@
1
+ interface IProps {
2
+ secondLine: string;
3
+ isLoading: boolean;
4
+ }
5
+ declare const SecondLine: ({ secondLine, isLoading }: IProps) => JSX.Element;
6
+ export { SecondLine };
@@ -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;
@@ -10,6 +10,7 @@ export interface IInput {
10
10
  autoFocus?: boolean;
11
11
  maxLength?: number;
12
12
  numAfterDot?: number;
13
+ numBeforeDot?: number;
13
14
  icon?: ReactNode;
14
15
  positionIcon?: 'right' | 'left';
15
16
  rightText?: string;
@@ -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: {
@@ -7,6 +7,8 @@ export interface ISkeleton {
7
7
  right?: number;
8
8
  /**Максимальная ширина*/
9
9
  maxWidth?: number;
10
+ /**Минимальная ширина*/
11
+ minWidth?: number;
10
12
  /**Радиус закругления*/
11
13
  radius?: number;
12
14
  /**Кастомный класс для блока*/