@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
|
@@ -113,12 +113,14 @@ function ThemeProvider({ children }) {
|
|
|
113
113
|
},
|
|
114
114
|
};
|
|
115
115
|
const tempTheme = (0, material_1.createTheme)({
|
|
116
|
-
typography: Object.assign({ fontFamily: bodyFontFamily }, Object.fromEntries(new Array(5).fill(0).map((_, index) => [
|
|
116
|
+
typography: Object.assign(Object.assign({ fontFamily: bodyFontFamily }, Object.fromEntries(new Array(5).fill(0).map((_, index) => [
|
|
117
117
|
`h${index + 1}`,
|
|
118
118
|
{
|
|
119
119
|
fontFamily: headingFontFamily,
|
|
120
120
|
},
|
|
121
|
-
]))),
|
|
121
|
+
]))), { button: {
|
|
122
|
+
textTransform: 'none',
|
|
123
|
+
} }),
|
|
122
124
|
palette: {
|
|
123
125
|
primary,
|
|
124
126
|
secondary: {
|