@abhishekzambare/mui 0.0.13 → 0.0.15

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.
Files changed (3) hide show
  1. package/dist/mui.d.ts +9 -2
  2. package/dist/mui.js +16803 -1585
  3. package/package.json +3 -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 interface ThemeSliceType {
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,8 @@ 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 const useThemeSlice: () => ThemeSliceType;
29
+ export declare function useMUIThemeContext(): ThemeSliceType;
30
+
31
+ export declare const YinYangThemesMenu: () => JSX.Element;
25
32
 
26
33
  export { }