@mxenabled/mxui 1.0.3-alpha.JB0 → 1.0.3
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.es.js +605 -638
- package/dist/index.es.js.map +1 -1
- package/dist/themes/Colors.d.ts +107 -72
- package/dist/themes/MXTheme.d.ts +1 -2
- package/dist/themes/Palette.d.ts +1 -2
- package/package.json +1 -1
package/dist/themes/Colors.d.ts
CHANGED
|
@@ -32,77 +32,112 @@ interface ColorsTypes {
|
|
|
32
32
|
Warning500: '#C33E01';
|
|
33
33
|
White: '#FFFFFF';
|
|
34
34
|
}
|
|
35
|
-
export declare const
|
|
36
|
-
export
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
}
|
|
74
|
-
export declare const
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
35
|
+
export declare const COLORS: ColorsTypes;
|
|
36
|
+
export declare const gray: {
|
|
37
|
+
White: string;
|
|
38
|
+
50: string;
|
|
39
|
+
100: string;
|
|
40
|
+
200: string;
|
|
41
|
+
300: string;
|
|
42
|
+
400: string;
|
|
43
|
+
500: string;
|
|
44
|
+
600: string;
|
|
45
|
+
700: string;
|
|
46
|
+
800: string;
|
|
47
|
+
900: string;
|
|
48
|
+
Black: string;
|
|
49
|
+
};
|
|
50
|
+
export declare const red: {
|
|
51
|
+
50: string;
|
|
52
|
+
100: string;
|
|
53
|
+
200: string;
|
|
54
|
+
300: string;
|
|
55
|
+
400: string;
|
|
56
|
+
500: string;
|
|
57
|
+
600: string;
|
|
58
|
+
700: string;
|
|
59
|
+
800: string;
|
|
60
|
+
900: string;
|
|
61
|
+
};
|
|
62
|
+
export declare const orange: {
|
|
63
|
+
50: string;
|
|
64
|
+
100: string;
|
|
65
|
+
200: string;
|
|
66
|
+
300: string;
|
|
67
|
+
400: string;
|
|
68
|
+
500: string;
|
|
69
|
+
600: string;
|
|
70
|
+
700: string;
|
|
71
|
+
800: string;
|
|
72
|
+
900: string;
|
|
73
|
+
};
|
|
74
|
+
export declare const yellow: {
|
|
75
|
+
50: string;
|
|
76
|
+
100: string;
|
|
77
|
+
200: string;
|
|
78
|
+
300: string;
|
|
79
|
+
400: string;
|
|
80
|
+
500: string;
|
|
81
|
+
600: string;
|
|
82
|
+
700: string;
|
|
83
|
+
800: string;
|
|
84
|
+
900: string;
|
|
85
|
+
};
|
|
86
|
+
export declare const green: {
|
|
87
|
+
50: string;
|
|
88
|
+
100: string;
|
|
89
|
+
200: string;
|
|
90
|
+
300: string;
|
|
91
|
+
400: string;
|
|
92
|
+
500: string;
|
|
93
|
+
600: string;
|
|
94
|
+
700: string;
|
|
95
|
+
800: string;
|
|
96
|
+
900: string;
|
|
97
|
+
};
|
|
98
|
+
export declare const blue: {
|
|
99
|
+
50: string;
|
|
100
|
+
100: string;
|
|
101
|
+
200: string;
|
|
102
|
+
300: string;
|
|
103
|
+
400: string;
|
|
104
|
+
500: string;
|
|
105
|
+
600: string;
|
|
106
|
+
700: string;
|
|
107
|
+
800: string;
|
|
108
|
+
900: string;
|
|
109
|
+
};
|
|
110
|
+
export declare const purple: {
|
|
111
|
+
50: string;
|
|
112
|
+
100: string;
|
|
113
|
+
200: string;
|
|
114
|
+
300: string;
|
|
115
|
+
400: string;
|
|
116
|
+
500: string;
|
|
117
|
+
600: string;
|
|
118
|
+
700: string;
|
|
119
|
+
800: string;
|
|
120
|
+
900: string;
|
|
121
|
+
};
|
|
122
|
+
export declare const pink: {
|
|
123
|
+
50: string;
|
|
124
|
+
100: string;
|
|
125
|
+
200: string;
|
|
126
|
+
300: string;
|
|
127
|
+
400: string;
|
|
128
|
+
500: string;
|
|
129
|
+
600: string;
|
|
130
|
+
700: string;
|
|
131
|
+
800: string;
|
|
132
|
+
900: string;
|
|
133
|
+
};
|
|
134
|
+
export declare const chart: {
|
|
135
|
+
1: string;
|
|
136
|
+
2: string;
|
|
137
|
+
3: string;
|
|
138
|
+
4: string;
|
|
139
|
+
5: string;
|
|
140
|
+
6: string;
|
|
141
|
+
7: string;
|
|
107
142
|
};
|
|
108
143
|
export {};
|
package/dist/themes/MXTheme.d.ts
CHANGED
|
@@ -1,3 +1,2 @@
|
|
|
1
1
|
import { PaletteMode } from '@mui/material';
|
|
2
|
-
|
|
3
|
-
export declare const createMXTheme: (mode: PaletteMode, clientColorProfile?: Partial<ClientColorProfile>) => import('@mui/material').Theme;
|
|
2
|
+
export declare const createMXTheme: (mode: PaletteMode) => import('@mui/material').Theme;
|
package/dist/themes/Palette.d.ts
CHANGED
|
@@ -1,3 +1,2 @@
|
|
|
1
1
|
import { PaletteMode } from '@mui/material';
|
|
2
|
-
|
|
3
|
-
export declare const getPalette: (mode: PaletteMode, clientColorProfile?: Partial<ClientColorProfile>) => import('@mui/material').Palette;
|
|
2
|
+
export declare const getPalette: (mode: PaletteMode) => import('@mui/material').Palette;
|