profinansy-ui-lib 3.1.93 → 3.1.95

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.
@@ -1,3 +1,4 @@
1
+ import React from 'react';
1
2
  import { IControlButton } from './ControlButton.typed';
2
- declare const ControlButton: ({ isStroke, size, text, onClick, icon }: IControlButton) => JSX.Element;
3
+ declare const ControlButton: React.ForwardRefExoticComponent<IControlButton & React.RefAttributes<HTMLButtonElement>>;
3
4
  export { ControlButton };
@@ -1,6 +1,7 @@
1
+ import React from 'react';
1
2
  declare const _default: {
2
3
  title: string;
3
- component: ({ isStroke, size, text, onClick, icon }: import("./ControlButton.typed").IControlButton) => JSX.Element;
4
+ component: React.ForwardRefExoticComponent<import("./ControlButton.typed").IControlButton & React.RefAttributes<HTMLButtonElement>>;
4
5
  tags: string[];
5
6
  };
6
7
  export default _default;
@@ -7,6 +7,7 @@ export declare const Sidebar: import("styled-components").StyledComponent<"div",
7
7
  headerHeight: number;
8
8
  isOpen: boolean;
9
9
  size?: ISideModal['size'];
10
+ withoutAnimation: boolean;
10
11
  }, never>;
11
12
  export declare const Header: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
12
13
  export declare const LeftWrapper: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
@@ -34,4 +34,6 @@ export interface ISideModal {
34
34
  alert?: IAlert;
35
35
  /** Использовать ли внутренний механизм закрытия. */
36
36
  isCloseInside?: boolean;
37
+ /** Отключить анимацию выезда из-за экрана при открытии. */
38
+ withoutAnimation?: boolean;
37
39
  }
@@ -1,3 +1,4 @@
1
+ import React from 'react';
1
2
  import { ISortedButton } from './SortingButton.typed';
2
- declare const SortingButton: ({ isStroke, text, isIconRight, onClick, isASC }: ISortedButton) => JSX.Element;
3
+ declare const SortingButton: React.ForwardRefExoticComponent<ISortedButton & React.RefAttributes<HTMLButtonElement>>;
3
4
  export { SortingButton };
@@ -1,6 +1,7 @@
1
+ import React from 'react';
1
2
  declare const _default: {
2
3
  title: string;
3
- component: ({ isStroke, text, isIconRight, onClick, isASC }: import("./SortingButton.typed").ISortedButton) => JSX.Element;
4
+ component: React.ForwardRefExoticComponent<import("./SortingButton.typed").ISortedButton & React.RefAttributes<HTMLButtonElement>>;
4
5
  tags: string[];
5
6
  parameters: {
6
7
  design: {