profinansy-ui-lib 4.0.86 → 4.0.87

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "profinansy-ui-lib",
3
- "version": "4.0.86",
3
+ "version": "4.0.87",
4
4
  "main": "./dist/profinansy-ui-lib.cjs",
5
5
  "module": "./dist/profinansy-ui-lib.es.js",
6
6
  "types": "./dist/index.d.ts",
@@ -1,3 +0,0 @@
1
- import { IModalMobile } from './ModalMobile.typed';
2
- declare const ModalMobile: (props: IModalMobile) => import("react/jsx-runtime").JSX.Element;
3
- export { ModalMobile };
@@ -1,12 +0,0 @@
1
- /// <reference types="react" />
2
- declare const Wrapper: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {
3
- $isOpen: boolean;
4
- }>> & string;
5
- declare const Layout: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
6
- declare const Content: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {
7
- $isOpen: boolean;
8
- }>> & string;
9
- declare const Header: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
10
- declare const Title: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement>, never>> & string;
11
- declare const CloseButton: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
12
- export { Wrapper, Layout, Content, Header, Title, CloseButton };
@@ -1,13 +0,0 @@
1
- import { ReactNode } from 'react';
2
- export interface IModalMobile {
3
- title: string;
4
- rightButtonText?: string;
5
- leftButtonText?: string;
6
- /** Контент попапа. */
7
- children: ReactNode;
8
- isOpen: boolean;
9
- onClose?: () => void;
10
- onLeftButton?: () => void;
11
- onRightButton?: () => void;
12
- closeIconVisible?: boolean;
13
- }
@@ -1 +0,0 @@
1
- export { ModalMobile } from './ModalMobile';