@ukpc-lib/react 0.16.3-dev.7 → 0.16.3-sandbox.saas-9356.patch-1

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.
@@ -7,7 +7,6 @@ export type OwnMenuItemProps = {
7
7
  replacePath?(path: string): string;
8
8
  ssr?: boolean;
9
9
  brandColors?: ColorsType;
10
- onClickItem?(path: string): void;
11
10
  };
12
11
  type MenuItemProps = {
13
12
  baseUrl: string;
@@ -20,7 +19,7 @@ type MenuItemProps = {
20
19
  nodes?: NodeModel<MenuItemDto>[];
21
20
  isDrop?: boolean;
22
21
  } & OwnMenuItemProps;
23
- export default function FavMenuItem({ ...props }: MenuItemProps): import("react/jsx-runtime").JSX.Element;
22
+ export default function MenuItem({ ...props }: MenuItemProps): import("react/jsx-runtime").JSX.Element;
24
23
  export type FavoriteIconProps = {
25
24
  onClick?(_isFavorite: boolean): void;
26
25
  menuLevel?: number;
@@ -8,7 +8,6 @@ export type OwnMenuItemProps = {
8
8
  ssr?: boolean;
9
9
  brandColors?: ColorsType;
10
10
  isInternalApp?: boolean;
11
- onClickItem?(path: string): void;
12
11
  };
13
12
  type MenuItemProps = {
14
13
  baseUrl: string;
@@ -1,3 +1 @@
1
- import { MenuItemDto } from '../models';
2
-
3
- export declare function getPath(item: MenuItemDto): string;
1
+ declare const checkResponseStatus: (status: number) => boolean;