@m4l/styles 0.0.5 → 0.0.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/index.js +7 -2
- package/package.json +1 -1
- package/types/augmentations.d.ts +8 -1
package/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { alpha as t, useTheme as m } from "@mui/material/styles";
|
|
2
|
-
import {
|
|
2
|
+
import { StyledEngineProvider as yr, Theme as fr, ThemeOptions as hr, ThemeProvider as Mr, createTheme as vr, styled as Br } from "@mui/material/styles";
|
|
3
3
|
import { alpha as n } from "@mui/system";
|
|
4
4
|
import { alpha as F } from "@mui/material";
|
|
5
5
|
import { useResponsive as w } from "@m4l/graphics";
|
|
@@ -2323,10 +2323,15 @@ const cr = {
|
|
|
2323
2323
|
};
|
|
2324
2324
|
export {
|
|
2325
2325
|
r as PATRONUSCOLORS,
|
|
2326
|
+
yr as StyledEngineProvider,
|
|
2327
|
+
fr as Theme,
|
|
2328
|
+
hr as ThemeOptions,
|
|
2329
|
+
Mr as ThemeProvider,
|
|
2326
2330
|
N as blaze,
|
|
2327
2331
|
_ as candy,
|
|
2328
2332
|
g as colorPresets,
|
|
2329
2333
|
sr as createCustomShadows,
|
|
2334
|
+
vr as createTheme,
|
|
2330
2335
|
P as defaultPreset,
|
|
2331
2336
|
lr as defaultThemeOptions,
|
|
2332
2337
|
ur as fnComponentsOverrides,
|
|
@@ -2341,7 +2346,7 @@ export {
|
|
|
2341
2346
|
Y as remToPx,
|
|
2342
2347
|
p as responsiveFontSizes,
|
|
2343
2348
|
dr as shadows,
|
|
2344
|
-
|
|
2349
|
+
Br as styled,
|
|
2345
2350
|
W as turqui,
|
|
2346
2351
|
U as typography
|
|
2347
2352
|
};
|
package/package.json
CHANGED
package/types/augmentations.d.ts
CHANGED
|
@@ -2,7 +2,14 @@ import { PatronusConstantColors } from '../theme/palette';
|
|
|
2
2
|
import { CustomShadowOptions } from '../theme';
|
|
3
3
|
import { ChartPaletteOptions, GradientsPaletteOptions, GridPaletteOptions } from './types';
|
|
4
4
|
import { ColorStateOptions } from '../utils/getColorState';
|
|
5
|
-
export {
|
|
5
|
+
export {
|
|
6
|
+
styled,
|
|
7
|
+
Theme,
|
|
8
|
+
ThemeOptions,
|
|
9
|
+
createTheme,
|
|
10
|
+
ThemeProvider,
|
|
11
|
+
StyledEngineProvider,
|
|
12
|
+
} from '@mui/material/styles';
|
|
6
13
|
|
|
7
14
|
declare module '@mui/material' {
|
|
8
15
|
interface Color {
|