diff --git a/VERSION.json b/VERSION.json index f78985d0d..305b3f107 100644 --- a/VERSION.json +++ b/VERSION.json @@ -1,8 +1,8 @@ { "major": 0, "merges": 0, - "builds": 12, - "version": "0.0.12", + "builds": 13, + "version": "0.0.13", "lastMerge": null, - "lastBuild": "2025-12-27T22:02:38-08:00" + "lastBuild": "2025-12-27T22:24:55-08:00" } diff --git a/features/status-dashboard/frontend/src/styled.d.ts b/features/status-dashboard/frontend/src/styled.d.ts new file mode 100644 index 000000000..6bee490a3 --- /dev/null +++ b/features/status-dashboard/frontend/src/styled.d.ts @@ -0,0 +1,14 @@ +/** + * Styled Components Type Augmentation + * + * Extends styled-components DefaultTheme with ThemeInterface from @ui/theme. + * This allows TypeScript to recognize theme properties in styled components. + */ + +import 'styled-components'; + +import type { ThemeInterface } from '@ui/theme'; + +declare module 'styled-components' { + export interface DefaultTheme extends ThemeInterface {} +}