Files
WebControlCenter/src/theme/interfaces/ITypographySystem.ts
Alexander Zinn 1469c7f52f 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.
2025-09-04 01:24:13 -04:00

17 lines
477 B
TypeScript

/**
* Copyright 2024 Phenix Real Time Solutions, Inc. Confidential and Proprietary. All Rights Reserved.
*/
export interface ITypographySystem {
readonly primaryFontSize: string;
readonly primaryLineHeight: string;
readonly primaryFont: string;
readonly fontSizeXS: string;
readonly fontSizeS: string;
readonly fontSizeL: string;
readonly fontSizeXl: string;
readonly fontSizeXxl: string;
readonly fontSizeXxxl: string;
readonly fontSizeXxxxl: string;
}