feat: Add richer card theme support (#1809)

This commit is contained in:
Dermot Duffy
2025-01-07 19:54:13 -08:00
committed by GitHub
parent f7ecb91578
commit 278560b5ac
65 changed files with 1187 additions and 352 deletions
@@ -38,13 +38,13 @@ describe('HASSManager', () => {
expect(manager.hasHASS()).toBeTruthy();
});
it('should set light or dark mode upon setting hass', () => {
it('should update theme upon setting hass', () => {
const api = createCardAPI();
const manager = new HASSManager(api);
manager.setHASS(createHASS());
expect(api.getStyleManager().setLightOrDarkMode).toBeCalled();
expect(api.getStyleManager().applyTheme).toBeCalled();
});
describe('should set condition manager state', () => {