@bytebrand/fe-ui-core 4.8.34 → 4.8.35

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bytebrand/fe-ui-core",
3
- "version": "4.8.34",
3
+ "version": "4.8.35",
4
4
  "description": "UI components for the auto.de project",
5
5
  "main": "index.ts",
6
6
  "module": "dist/common.js",
@@ -1,4 +1,7 @@
1
- import { styled, createTheme } from '@mui/material/styles';
1
+ import { styled as muiStyled, createTheme } from '@mui/material/styles';
2
+
3
+ // Cast to any to bypass MUI 5.9 styled() overload mismatch with strict TS in consumers (fe-landing).
4
+ const styled: any = muiStyled;
2
5
 
3
6
  export const AccordionSummaryContent = styled('div')({
4
7
  display: 'flex',