profinansy-ui-lib 3.7.2 → 3.7.3
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
|
+
/// <reference types="react" />
|
|
1
2
|
import { DefaultTheme } from 'styled-components';
|
|
2
3
|
import { TScrollTabs } from './Tabs.typed';
|
|
3
4
|
export declare const Wrapper: import("styled-components").StyledComponent<"div", DefaultTheme, {}, never>;
|
|
@@ -18,3 +19,4 @@ export declare const Mute: import("styled-components").StyledComponent<"div", De
|
|
|
18
19
|
export declare const LeftButton: import("styled-components").StyledComponent<({ direction, className, style, size, onClick, disabled }: import("../ArrowButton/ArrowButton.typed").IArrowButton) => JSX.Element, DefaultTheme, {}, never>;
|
|
19
20
|
export declare const RightButton: import("styled-components").StyledComponent<({ direction, className, style, size, onClick, disabled }: import("../ArrowButton/ArrowButton.typed").IArrowButton) => JSX.Element, DefaultTheme, {}, never>;
|
|
20
21
|
export declare const NewTabCircle: import("styled-components").StyledComponent<"span", DefaultTheme, {}, never>;
|
|
22
|
+
export declare const NewLabel: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("../Typography/Typography.typed").ITypographyProps & import("react").CSSProperties & import("react").RefAttributes<HTMLElement>>, DefaultTheme, {}, never>;
|
|
@@ -12,8 +12,10 @@ export type TabOption = {
|
|
|
12
12
|
onMouseEnter?: () => void;
|
|
13
13
|
/** TRUE - таб скрыт. FALSE - показан **/
|
|
14
14
|
hidden?: boolean;
|
|
15
|
-
/** Пометить таб как новый
|
|
16
|
-
|
|
15
|
+
/** Пометить таб как новый **/
|
|
16
|
+
isNew?: boolean;
|
|
17
|
+
/** Пометить, что у таба новый контент **/
|
|
18
|
+
hasNewContent?: boolean;
|
|
17
19
|
};
|
|
18
20
|
export type TScrollTabs = 'base' | 'content';
|
|
19
21
|
export type TTabProps = {
|