profinansy-ui-lib 2.0.89 → 2.0.91
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/header/components/HeaderCenter/HeaderCenter.d.ts +1 -1
- package/dist/components/header/components/PartnerButton/PartnerButton.styled.d.ts +1 -0
- package/dist/components/header/components/header-link-item/header-link-item.d.ts +2 -1
- package/dist/components/header/components/premium-dropdown-list/constants.d.ts +4 -0
- package/dist/components/header/components/premium-dropdown-list/premium-dropdown-list.d.ts +8 -0
- package/dist/components/header/components/premium-dropdown-list/premium-dropdown-list.styled.d.ts +8 -0
- package/dist/index.js +73 -13
- package/package.json +1 -1
|
@@ -7,7 +7,7 @@ interface IProps {
|
|
|
7
7
|
isPartner: boolean;
|
|
8
8
|
isConfirmPartner: boolean;
|
|
9
9
|
burgerOpened: boolean;
|
|
10
|
-
handleRouteChange: (val: string) => void;
|
|
10
|
+
handleRouteChange: (val: string, target?: boolean) => void;
|
|
11
11
|
setBurgerOpened: (val: boolean) => void;
|
|
12
12
|
onLogout: () => void;
|
|
13
13
|
onCloseBurger: () => void;
|
|
@@ -1 +1,2 @@
|
|
|
1
1
|
export declare const PartnerButton: import("styled-components").StyledComponent<"button", import("styled-components").DefaultTheme, {}, never>;
|
|
2
|
+
export declare const Icon: import("styled-components").StyledComponent<any, import("styled-components").DefaultTheme, object, string | number | symbol>;
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { FC } from 'react';
|
|
2
2
|
import { HeaderLinkType } from '../../../../common.types';
|
|
3
3
|
type Props = HeaderLinkType & {
|
|
4
|
-
onRouteChange: (path: string) => void;
|
|
4
|
+
onRouteChange: (path: string, target?: boolean) => void;
|
|
5
|
+
target?: boolean;
|
|
5
6
|
closeBurger: () => void;
|
|
6
7
|
burgerOpened: boolean;
|
|
7
8
|
activeColor?: string;
|
package/dist/components/header/components/premium-dropdown-list/premium-dropdown-list.styled.d.ts
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
export declare const PremiumDropdownRoot: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
|
2
|
+
export declare const PremiumListWrapper: import("styled-components").StyledComponent<"nav", import("styled-components").DefaultTheme, {}, never>;
|
|
3
|
+
export declare const PremiumList: import("styled-components").StyledComponent<"nav", import("styled-components").DefaultTheme, {}, never>;
|
|
4
|
+
export declare const PremiumListItem: import("styled-components").StyledComponent<"li", import("styled-components").DefaultTheme, {
|
|
5
|
+
active?: boolean;
|
|
6
|
+
}, never>;
|
|
7
|
+
export declare const PremiumListTitle: import("styled-components").StyledComponent<"span", import("styled-components").DefaultTheme, {}, never>;
|
|
8
|
+
export declare const PremiumListText: import("styled-components").StyledComponent<"p", import("styled-components").DefaultTheme, {}, never>;
|