barook-ui-library 0.1.5 → 0.1.6
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/dist/index.js +19 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +19 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -36370,6 +36370,7 @@ var IconButton3 = IconButton_default;
|
|
|
36370
36370
|
// src/shared/ui/typography/Typography.tsx
|
|
36371
36371
|
var import_react10 = require("react");
|
|
36372
36372
|
var import_jsx_runtime105 = require("react/jsx-runtime");
|
|
36373
|
+
console.log("MuiTypography version", Typography_default);
|
|
36373
36374
|
var Typography3 = (0, import_react10.forwardRef)(
|
|
36374
36375
|
(props, ref) => {
|
|
36375
36376
|
return /* @__PURE__ */ (0, import_jsx_runtime105.jsx)(Typography_default, { ref, ...props });
|
|
@@ -38913,12 +38914,29 @@ var createTheme3 = (overrides) => {
|
|
|
38913
38914
|
MuiSlider: MuiSlider(mergedTheme),
|
|
38914
38915
|
MuiAvatar: MuiAvatar(mergedTheme),
|
|
38915
38916
|
MuiDialog: MuiDialog(mergedTheme),
|
|
38916
|
-
MuiCheckbox: MuiCheckbox(mergedTheme)
|
|
38917
|
+
MuiCheckbox: MuiCheckbox(mergedTheme),
|
|
38918
|
+
MuiTypography: {
|
|
38919
|
+
defaultProps: {
|
|
38920
|
+
variantMapping: {
|
|
38921
|
+
xxs: "p",
|
|
38922
|
+
xs: "p",
|
|
38923
|
+
sm: "p",
|
|
38924
|
+
base: "p",
|
|
38925
|
+
lg: "p",
|
|
38926
|
+
xl: "h6",
|
|
38927
|
+
"2xl": "h5",
|
|
38928
|
+
"3xl": "h4",
|
|
38929
|
+
"4xl": "h3",
|
|
38930
|
+
"5xl": "h2"
|
|
38931
|
+
}
|
|
38932
|
+
}
|
|
38933
|
+
}
|
|
38917
38934
|
});
|
|
38918
38935
|
const mainMuiTheme = createTheme2({
|
|
38919
38936
|
...mergedTheme,
|
|
38920
38937
|
components
|
|
38921
38938
|
});
|
|
38939
|
+
console.log("mainMuiTheme", mainMuiTheme.typography);
|
|
38922
38940
|
return mainMuiTheme;
|
|
38923
38941
|
};
|
|
38924
38942
|
|