@blocklet/pages-kit 0.2.330 → 0.2.331
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/lib/cjs/builtin/async/ai-runtime/components/ThemeProvider.js +4 -2
- package/lib/cjs/tsconfig.tsbuildinfo +1 -1
- package/lib/esm/builtin/async/ai-runtime/components/ThemeProvider.js +4 -2
- package/lib/esm/tsconfig.tsbuildinfo +1 -1
- package/lib/types/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
|
@@ -108,12 +108,14 @@ export default function ThemeProvider({ children }) {
|
|
|
108
108
|
},
|
|
109
109
|
};
|
|
110
110
|
const tempTheme = createTheme({
|
|
111
|
-
typography: Object.assign({ fontFamily: bodyFontFamily }, Object.fromEntries(new Array(5).fill(0).map((_, index) => [
|
|
111
|
+
typography: Object.assign(Object.assign({ fontFamily: bodyFontFamily }, Object.fromEntries(new Array(5).fill(0).map((_, index) => [
|
|
112
112
|
`h${index + 1}`,
|
|
113
113
|
{
|
|
114
114
|
fontFamily: headingFontFamily,
|
|
115
115
|
},
|
|
116
|
-
]))),
|
|
116
|
+
]))), { button: {
|
|
117
|
+
textTransform: 'none',
|
|
118
|
+
} }),
|
|
117
119
|
palette: {
|
|
118
120
|
primary,
|
|
119
121
|
secondary: {
|