profinansy-ui-lib 3.1.83 → 3.1.84
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 +4 -1
- package/dist/components/uikit/Card/Card.typed.d.ts +2 -0
- package/dist/components/uikit/FilterButton/Drop/Drop.d.ts +1 -1
- package/dist/components/uikit/Hint/Hint.d.ts +1 -1
- package/dist/components/uikit/Popup/Popup.d.ts +1 -1
- package/dist/index.js +17 -6
- package/package.json +1 -1
|
@@ -7,9 +7,12 @@ declare const Container: import("styled-components").StyledComponent<"div", impo
|
|
|
7
7
|
declare const Header: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {
|
|
8
8
|
isMarginBottom: boolean;
|
|
9
9
|
}, never>;
|
|
10
|
-
declare const FirstLine: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {
|
|
10
|
+
declare const FirstLine: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {
|
|
11
|
+
adaptiveRightContent: number;
|
|
12
|
+
}, never>;
|
|
11
13
|
declare const TitleContainer: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {
|
|
12
14
|
isTitleWrap: boolean;
|
|
15
|
+
adaptiveRightContent: number;
|
|
13
16
|
}, never>;
|
|
14
17
|
declare const Title: import("styled-components").StyledComponent<"h4", import("styled-components").DefaultTheme, {
|
|
15
18
|
isTitleWrap: boolean;
|
|
@@ -25,6 +25,8 @@ export interface ICard {
|
|
|
25
25
|
hint?: IPopup;
|
|
26
26
|
/**Контент справа от заголовка*/
|
|
27
27
|
rightContent?: React.ReactElement;
|
|
28
|
+
/**Разрешение, на котором переносить контент справа от заголовка на вторую строку*/
|
|
29
|
+
adaptiveRightContent?: number;
|
|
28
30
|
/**Подзаголовок*/
|
|
29
31
|
subtitle?: string;
|
|
30
32
|
/**Карточка кликабельна, добавляет тень при наведении*/
|
|
@@ -24,9 +24,9 @@ export declare function useDrop({ placement }: {
|
|
|
24
24
|
} & import("@floating-ui/react").ExtendedElements<import("@floating-ui/react").ReferenceType>;
|
|
25
25
|
context: {
|
|
26
26
|
placement: Placement;
|
|
27
|
+
strategy: import("@floating-ui/utils").Strategy;
|
|
27
28
|
x: number;
|
|
28
29
|
y: number;
|
|
29
|
-
strategy: import("@floating-ui/utils").Strategy;
|
|
30
30
|
middlewareData: import("@floating-ui/core").MiddlewareData;
|
|
31
31
|
isPositioned: boolean;
|
|
32
32
|
update: () => void;
|
|
@@ -25,9 +25,9 @@ export declare function useHint({ placement }?: HintOptions): {
|
|
|
25
25
|
} & import("@floating-ui/react").ExtendedElements<import("@floating-ui/react").ReferenceType>;
|
|
26
26
|
context: {
|
|
27
27
|
placement: Placement;
|
|
28
|
+
strategy: import("@floating-ui/utils").Strategy;
|
|
28
29
|
x: number;
|
|
29
30
|
y: number;
|
|
30
|
-
strategy: import("@floating-ui/utils").Strategy;
|
|
31
31
|
middlewareData: import("@floating-ui/core").MiddlewareData;
|
|
32
32
|
isPositioned: boolean;
|
|
33
33
|
update: () => void;
|
|
@@ -29,9 +29,9 @@ export declare function usePopup({ placement, isHover }: {
|
|
|
29
29
|
} & import("@floating-ui/react").ExtendedElements<import("@floating-ui/react").ReferenceType>;
|
|
30
30
|
context: {
|
|
31
31
|
placement: Placement;
|
|
32
|
+
strategy: import("@floating-ui/utils").Strategy;
|
|
32
33
|
x: number;
|
|
33
34
|
y: number;
|
|
34
|
-
strategy: import("@floating-ui/utils").Strategy;
|
|
35
35
|
middlewareData: import("@floating-ui/core").MiddlewareData;
|
|
36
36
|
isPositioned: boolean;
|
|
37
37
|
update: () => void;
|