@ukpc-lib/react 0.16.11-sandbox.saas-9885.patch-3 → 0.16.12-sandbox.saas-10032.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.
@@ -1,12 +1,8 @@
1
1
  import { OwnMenuItemProps } from './components/MenuItem';
2
- import { MenuItemDto } from './models/MenuItemDto';
3
2
 
4
3
  export type FavoriteMenuProps = {
5
4
  baseUrl: string;
6
5
  menuPath?: string;
7
- isTreeMode?: boolean;
8
- dndMode?: 'multi' | 'html5';
9
- initialFavoriteItems?: MenuItemDto[];
10
6
  } & OwnMenuItemProps;
11
7
  export declare function FavoriteMenu(props: FavoriteMenuProps): import("react/jsx-runtime").JSX.Element;
12
8
  export declare function updateFavoriteItems(id: number, isFavorite: boolean): void;
@@ -1,6 +1,5 @@
1
1
  import { OwnMenuItemProps } from './components/MenuItem';
2
2
  import { MenuItemDto } from './models/MenuItemDto';
3
- import { NodeModel } from '@minoru/react-dnd-treeview';
4
3
 
5
4
  export type GlobalMenuProps = {
6
5
  baseUrl: string;
@@ -9,9 +8,5 @@ export type GlobalMenuProps = {
9
8
  disabledMenuItems?: string[];
10
9
  handleCallback?(data: MenuItemDto[]): void;
11
10
  initOpenIds?: number[];
12
- dndMode?: 'multi' | 'html5';
13
- onDataLoaded?(nodes: NodeModel<MenuItemDto>[]): void;
14
- inlineMode?: boolean;
15
11
  } & OwnMenuItemProps;
16
- export declare function LanguageDropdown(): import("react/jsx-runtime").JSX.Element;
17
12
  export declare function GlobalMenu(props: GlobalMenuProps): import("react/jsx-runtime").JSX.Element;
@@ -10,7 +10,6 @@ type GroupProps = React.PropsWithChildren<{
10
10
  setCurrentTab: (index: string) => void;
11
11
  currentTab: string;
12
12
  brandColors?: ColorsType;
13
- fullWidthTabs?: boolean;
14
13
  }>;
15
14
  declare const Tabs: (props: GroupProps) => import("react/jsx-runtime").JSX.Element;
16
15
  export default Tabs;