profinansy-ui-lib 2.0.36 → 2.0.37

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.
@@ -16,6 +16,7 @@ export declare const HeaderDropdown: import("styled-components").StyledComponent
16
16
  export declare const HeaderDropdownItem: import("styled-components").StyledComponent<"li", any, {
17
17
  blackVersion?: boolean;
18
18
  open: boolean;
19
+ isLast: boolean;
19
20
  }, never>;
20
21
  export declare const HeaderDropdownItemLink: import("styled-components").StyledComponent<"button", any, {
21
22
  locked?: boolean;
@@ -11,6 +11,7 @@ type TProps = {
11
11
  href: string;
12
12
  }[];
13
13
  blackVersion: boolean;
14
+ isLast?: boolean;
14
15
  onClick: (href?: string) => void;
15
16
  };
16
17
  export declare const HeaderSubLink: FC<TProps>;
@@ -3,6 +3,6 @@ export declare const getTrial: (rights: Record<string, number | string>, purchas
3
3
  isPossibleTrial: any;
4
4
  };
5
5
  export declare const getMainLinksColor: (isBlack: boolean, isActive: boolean) => "#6553F5" | "#898989" | "#C0C0C0" | "#756CBB";
6
- export declare const getDropdownsLinksColor: (isBlack: boolean, isActive: boolean, isLocked: boolean) => "#FFFFFF" | "#6553F5" | "#9B8EFF" | "#242424" | "#898989";
6
+ export declare const getDropdownsLinksColor: (isBlack: boolean, isActive: boolean, isLocked: boolean) => "#6553F5" | "#9B8EFF" | "#242424" | "#898989" | "#FFFFFF";
7
7
  export declare const getDropdownsIconsColor: (isBlack: boolean, isActive: boolean) => "#6553F5" | "#9B8EFF" | "#A2A1A7";
8
8
  export declare const getDropdownItemBackground: (isBlack: boolean, isOpen: boolean) => "transparent" | "#fff" | "#2B2B2B" | "#f8f8f8";