@abhishekzambare/mui 0.0.13 → 0.0.14
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/mui.d.ts +7 -2
- package/dist/mui.js +725 -706
- package/package.json +1 -1
package/dist/mui.d.ts
CHANGED
|
@@ -1,8 +1,13 @@
|
|
|
1
1
|
import { Dispatch } from 'react';
|
|
2
|
+
import { JSX } from 'react/jsx-runtime';
|
|
2
3
|
import { SetStateAction } from 'react';
|
|
3
4
|
import { Theme } from '@mui/material';
|
|
4
5
|
|
|
5
|
-
export declare
|
|
6
|
+
export declare function MUIThemeContextProvider({ children, }: {
|
|
7
|
+
children: React.ReactNode;
|
|
8
|
+
}): JSX.Element;
|
|
9
|
+
|
|
10
|
+
declare interface ThemeSliceType {
|
|
6
11
|
Theme_WebApp_Theme: Theme;
|
|
7
12
|
setTheme_WebApp_Theme: Dispatch<SetStateAction<Theme>>;
|
|
8
13
|
Theme_LightOrDarkMode: "light" | "dark";
|
|
@@ -21,6 +26,6 @@ export declare interface ThemeSliceType {
|
|
|
21
26
|
|
|
22
27
|
declare type TypeThemeColors = "default" | "slate" | "gray" | "zinc" | "neutral" | "stone" | "red" | "orange" | "amber" | "yellow" | "lime" | "green" | "emerald" | "teal" | "cyan" | "sky" | "blue" | "indigo" | "violet" | "purple" | "fuchsia" | "pink" | "rose";
|
|
23
28
|
|
|
24
|
-
export declare
|
|
29
|
+
export declare function useMUIThemeContext(): ThemeSliceType;
|
|
25
30
|
|
|
26
31
|
export { }
|