sevago-sso-fe 1.0.33 → 1.0.34

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,4 +1,3 @@
1
- export { AuthPage } from './auth.page';
2
1
  export * from './auth.constant';
3
2
  export * from './auth.enum';
4
3
  export * from './auth.interface';
@@ -1,2 +1,5 @@
1
1
  import { default as React } from 'react';
2
- export declare const SystemMonitorScreen: React.FC;
2
+ export interface SystemMonitorScreenProps {
3
+ blacklist?: string[];
4
+ }
5
+ export declare const SystemMonitorScreen: React.FC<SystemMonitorScreenProps>;
@@ -1,9 +1,9 @@
1
- import { AppModule } from '../../../common/enums/app-category.enum';
1
+ import { AppInfo } from '../../../common/constant/apps.data';
2
2
  interface SidebarContextType {
3
3
  isCollapsed: boolean;
4
4
  setIsCollapsed: (collapsed: boolean) => void;
5
- activeExpandMenu: AppModule[] | null;
6
- setActiveExpandMenu: (menu: AppModule[] | null) => void;
5
+ activeExpandMenu: AppInfo[] | null;
6
+ setActiveExpandMenu: (menu: AppInfo[] | null) => void;
7
7
  sidebarWidth: string;
8
8
  }
9
9
  export declare const SidebarContext: import('react').Context<SidebarContextType | undefined>;
@@ -1,4 +1,3 @@
1
- export { AuthPage } from './auth/auth.page';
2
1
  export { DashboardPage } from './dashboard/dashboard.page';
3
2
  export { ErrorPage } from './error/error.page';
4
3
  export { NotFoundPage } from './not-found/not-found.page';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sevago-sso-fe",
3
- "version": "1.0.33",
3
+ "version": "1.0.34",
4
4
  "description": "Sevago SSO Frontend Library - A comprehensive SSO solution with React components",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.esm.js",
@@ -1,2 +0,0 @@
1
- import { AppCategory } from '../../enums/app-category.enum';
2
- export declare const getAppColor: (app: AppCategory) => string;
@@ -1,4 +0,0 @@
1
- import { default as React } from 'react';
2
- export interface AuthPageProps {
3
- }
4
- export declare const AuthPage: React.FC<AuthPageProps>;