@rabex-kit/rabex-ui 0.1.54 → 0.1.55
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/Theme/getDesignTokens.d.ts +11 -0
- package/dist/rabex-ui.cjs.development.js +12 -1
- package/dist/rabex-ui.cjs.development.js.map +1 -1
- package/dist/rabex-ui.cjs.production.min.js +1 -1
- package/dist/rabex-ui.cjs.production.min.js.map +1 -1
- package/dist/rabex-ui.esm.js +12 -1
- package/dist/rabex-ui.esm.js.map +1 -1
- package/package.json +1 -1
@@ -4,5 +4,16 @@ export declare type themeTypes = {
|
|
4
4
|
direction?: Direction;
|
5
5
|
deviceType?: 'mobile' | 'desktop';
|
6
6
|
};
|
7
|
+
declare module '@mui/material/styles' {
|
8
|
+
interface BreakpointOverrides {
|
9
|
+
xs: true;
|
10
|
+
sm: true;
|
11
|
+
md: true;
|
12
|
+
lg: true;
|
13
|
+
xl: true;
|
14
|
+
xxl: true;
|
15
|
+
xxxl: true;
|
16
|
+
}
|
17
|
+
}
|
7
18
|
declare const getDesignTokens: ({ deviceType, mode, direction }: themeTypes) => ThemeOptions;
|
8
19
|
export default getDesignTokens;
|
@@ -4909,7 +4909,18 @@ var getDesignTokens = function getDesignTokens(_ref) {
|
|
4909
4909
|
MuiLoadingButton: RabexLoadingButton.components
|
4910
4910
|
}),
|
4911
4911
|
palette: _extends({}, mode === 'light' ? createPalette(RabexLightPalette) : createPalette(RabexDarkPalette)),
|
4912
|
-
typography: RabexTypography.typography
|
4912
|
+
typography: RabexTypography.typography,
|
4913
|
+
breakpoints: {
|
4914
|
+
values: {
|
4915
|
+
xs: 0,
|
4916
|
+
sm: 600,
|
4917
|
+
md: 900,
|
4918
|
+
lg: 1200,
|
4919
|
+
xl: 1440,
|
4920
|
+
xxl: 1536,
|
4921
|
+
xxxl: 1920
|
4922
|
+
}
|
4923
|
+
}
|
4913
4924
|
};
|
4914
4925
|
};
|
4915
4926
|
|