sevago-sso-fe 1.0.8 → 1.0.10

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,5 +7,6 @@ export * from './loading';
7
7
  export * from './logo';
8
8
  export * from './motion';
9
9
  export * from './time-ago';
10
+ export * from './sidebar';
10
11
  export * from './elements';
11
12
  export * from './styles';
@@ -0,0 +1,7 @@
1
+ import { default as React } from 'react';
2
+ interface AppsSidebarProps {
3
+ isOpen: boolean;
4
+ onClose: () => void;
5
+ }
6
+ export declare const AppsSidebar: React.FC<AppsSidebarProps>;
7
+ export {};
@@ -0,0 +1 @@
1
+ export { AppsSidebar } from './apps-sidebar.component';
@@ -1,5 +1,6 @@
1
- export { useApps } from './use-apps.hook';
1
+ export * from './use-apps.hook';
2
2
  export { useSnackbar } from './use-snackbar.hook';
3
3
  export { useTagSelector } from './use-tag-selector.hook';
4
4
  export { useUpdateCurrentAccess } from './use-update-current-access.hook';
5
5
  export { useVersionCheck } from './use-version-check.hook';
6
+ export { useApps, useActiveSidebar, useIsSystemMonitor, useAllApps, useSidebarState, } from './use-apps.hook';
@@ -1,5 +1,5 @@
1
1
  import { AppCategory } from '../common/enums/app-category.enum';
2
- export declare const useApps: (tab: AppCategory) => import('../common/enums/app-category.enum').AppModule[];
2
+ export declare const useApps: (tab?: AppCategory) => import('../common/enums/app-category.enum').AppModule[];
3
3
  export declare const useIsSystemMonitor: () => boolean;
4
4
  export declare const useAllApps: () => import('../common/enums/app-category.enum').AppModule[];
5
5
  export declare const useActiveSidebar: () => import('../common/enums/app-category.enum').AppModule | undefined;
@@ -0,0 +1 @@
1
+ export declare const useSidebar: () => any;