profinansy-ui-lib 3.3.2 → 3.3.4
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/uikit/Card/Card.styled.d.ts +3 -1
- package/dist/components/uikit/FilterButton/Button/Button.d.ts +1 -0
- package/dist/components/uikit/FilterButton/Button/Button.styled.d.ts +1 -0
- package/dist/components/uikit/FilterButton/FilterButton.d.ts +1 -1
- package/dist/components/uikit/FilterButton/FilterButton.stories.d.ts +1 -1
- package/dist/components/uikit/FilterButton/FilterButton.typed.d.ts +2 -0
- package/dist/components/uikit/Popup/Popup.styled.d.ts +2 -1
- package/dist/index.js +56 -29
- package/dist/urls/products/education/educationLinks.d.ts +15 -0
- package/package.json +1 -1
|
@@ -15,7 +15,9 @@ declare const TitleContainer: import("styled-components").StyledComponent<"div",
|
|
|
15
15
|
}, never>;
|
|
16
16
|
declare const Title: import("styled-components").StyledComponent<"h4", import("styled-components").DefaultTheme, {}, never>;
|
|
17
17
|
export declare const TitleLinkContainer: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
18
|
-
export declare const HintContainer: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {
|
|
18
|
+
export declare const HintContainer: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {
|
|
19
|
+
isText: boolean;
|
|
20
|
+
}, never>;
|
|
19
21
|
declare const TitleLink: import("styled-components").StyledComponent<"h4", import("styled-components").DefaultTheme, {}, never>;
|
|
20
22
|
declare const Subtitle: import("styled-components").StyledComponent<"p", import("styled-components").DefaultTheme, {}, never>;
|
|
21
23
|
export { Container, Header, TitleContainer, Title, TitleLink, Subtitle, FirstLine };
|
|
@@ -5,6 +5,7 @@ interface IProps {
|
|
|
5
5
|
isStroke: IFilterButton['isStroke'];
|
|
6
6
|
text?: IFilterButton['text'];
|
|
7
7
|
size: IFilterButton['size'];
|
|
8
|
+
withoutTextOnMobile?: IFilterButton['withoutTextOnMobile'];
|
|
8
9
|
onClick?: () => void;
|
|
9
10
|
}
|
|
10
11
|
declare const Button: React.ForwardRefExoticComponent<IProps & React.RefAttributes<HTMLButtonElement>>;
|
|
@@ -3,6 +3,7 @@ export declare const Button: import("styled-components").StyledComponent<"button
|
|
|
3
3
|
activeElements: number;
|
|
4
4
|
isStroke: IFilterButton['isStroke'];
|
|
5
5
|
size: IFilterButton['size'];
|
|
6
|
+
withoutTextOnMobile: IFilterButton['withoutTextOnMobile'];
|
|
6
7
|
isText: boolean;
|
|
7
8
|
}, never>;
|
|
8
9
|
export declare const Counter: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { IFilterButton } from './FilterButton.typed';
|
|
2
|
-
declare const FilterButton: ({ text, activeElements, isStroke, children, resetFilter, handleConfirm, size, isConfirmWithoutClose, isCancelWithoutClose, handleCustomOpen, padding }: IFilterButton) => JSX.Element;
|
|
2
|
+
declare const FilterButton: ({ text, activeElements, isStroke, children, resetFilter, handleConfirm, size, isConfirmWithoutClose, isCancelWithoutClose, handleCustomOpen, padding, withoutTextOnMobile }: IFilterButton) => JSX.Element;
|
|
3
3
|
export { FilterButton };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
declare const _default: {
|
|
2
2
|
title: string;
|
|
3
|
-
component: ({ text, activeElements, isStroke, children, resetFilter, handleConfirm, size, isConfirmWithoutClose, isCancelWithoutClose, handleCustomOpen, padding }: import("./FilterButton.typed").IFilterButton) => JSX.Element;
|
|
3
|
+
component: ({ text, activeElements, isStroke, children, resetFilter, handleConfirm, size, isConfirmWithoutClose, isCancelWithoutClose, handleCustomOpen, padding, withoutTextOnMobile }: import("./FilterButton.typed").IFilterButton) => JSX.Element;
|
|
4
4
|
tags: string[];
|
|
5
5
|
parameters: {
|
|
6
6
|
design: {
|
|
@@ -21,6 +21,8 @@ export interface IFilterButton {
|
|
|
21
21
|
isCancelWithoutClose?: boolean;
|
|
22
22
|
/** Кастомное действие при клике на кнопку. Нужно, когда требуется открывать фильтры не под кнопкой, а иным способом. */
|
|
23
23
|
handleCustomOpen?: () => void;
|
|
24
|
+
/** Если у вас кнопка с текстом, но его надо убрать на мобилке, можно использовать это свойство. */
|
|
25
|
+
withoutTextOnMobile?: boolean;
|
|
24
26
|
/** Контент*/
|
|
25
27
|
children: ReactNode;
|
|
26
28
|
}
|
|
@@ -10,5 +10,6 @@ declare const Description: import("styled-components").StyledComponent<"div", im
|
|
|
10
10
|
declare const PlayBtn: import("styled-components").StyledComponent<"button", import("styled-components").DefaultTheme, {}, never>;
|
|
11
11
|
declare const Ifram: import("styled-components").StyledComponent<"iframe", import("styled-components").DefaultTheme, {}, never>;
|
|
12
12
|
declare const Text: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
13
|
+
declare const TextHintOnMobile: import("styled-components").StyledComponent<any, import("styled-components").DefaultTheme, object, string | number | symbol>;
|
|
13
14
|
declare const Hint: import("styled-components").StyledComponent<any, import("styled-components").DefaultTheme, object, string | number | symbol>;
|
|
14
|
-
export { Title, Content, PlayBtn, Link, Description, Ifram, Text, Hint };
|
|
15
|
+
export { Title, Content, PlayBtn, Link, Description, Ifram, Text, Hint, TextHintOnMobile };
|