Update dependencies, refactor authentication, and enhance UI components
- Upgraded @reduxjs/toolkit to version 2.9.0 and added new dependencies including @techniker-me/pcast-api and moment. - Refactored authentication logic and added middleware for improved request handling. - Introduced new UI components such as buttons, loaders, and forms, along with a theme system following SOLID principles. - Updated routing to include protected routes and improved the login form with better error handling. - Removed unused CSS and organized the project structure for better maintainability.
This commit is contained in:
13
src/theme/interfaces/IScreenSystem.ts
Normal file
13
src/theme/interfaces/IScreenSystem.ts
Normal file
@@ -0,0 +1,13 @@
|
||||
/**
|
||||
* Copyright 2024 Phenix Real Time Solutions, Inc. Confidential and Proprietary. All Rights Reserved.
|
||||
*/
|
||||
|
||||
export interface IScreenSystem {
|
||||
readonly large: number;
|
||||
readonly desktop: number;
|
||||
readonly tablet: number;
|
||||
readonly phone: number;
|
||||
readonly smallPhone: number;
|
||||
readonly mediaPhone: string;
|
||||
readonly mediaLargeScreen: string;
|
||||
}
|
||||
Reference in New Issue
Block a user