fix(CssManager): Make CssManager a singleton and export the shared instance via getSingleton; update tests and dependencies

This commit is contained in:
2025-11-16 14:53:02 +00:00
parent 217ea3e9d4
commit 8d60911b34
8 changed files with 2734 additions and 1167 deletions

View File

@@ -26,7 +26,7 @@ export { directives };
/**
* a singleton instance of CssManager
*/
export const cssManager = new CssManager();
export const cssManager = CssManager.getSingleton();