@mxenabled/mxui 1.3.1-alpha.bb1 → 1.5.0
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/components/selectionbox/SelectionBox.d.ts +14 -0
- package/dist/components/selectionbox/index.d.ts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.es.js +804 -680
- package/dist/index.es.js.map +1 -1
- package/dist/themes/Palette.d.ts +194 -1
- package/dist/themes/Typography.d.ts +34 -2
- package/package.json +1 -1
package/dist/themes/Palette.d.ts
CHANGED
|
@@ -1,3 +1,196 @@
|
|
|
1
1
|
import { PaletteMode } from '@mui/material';
|
|
2
2
|
import { ClientCustomizations } from '../types/ClientCustomizations';
|
|
3
|
-
export declare const getPalette: (mode: PaletteMode, paletteCustomizations?: ClientCustomizations["paletteOptions"]) =>
|
|
3
|
+
export declare const getPalette: (mode: PaletteMode, paletteCustomizations?: ClientCustomizations["paletteOptions"]) => {
|
|
4
|
+
mode: PaletteMode;
|
|
5
|
+
border: {
|
|
6
|
+
lighter: string;
|
|
7
|
+
light: string;
|
|
8
|
+
main: string;
|
|
9
|
+
dark: string;
|
|
10
|
+
darker: string;
|
|
11
|
+
};
|
|
12
|
+
common: {
|
|
13
|
+
white: string;
|
|
14
|
+
black: string;
|
|
15
|
+
};
|
|
16
|
+
primary: {
|
|
17
|
+
lighter: string;
|
|
18
|
+
light: string;
|
|
19
|
+
main: string;
|
|
20
|
+
dark: string;
|
|
21
|
+
darker: string;
|
|
22
|
+
50: string;
|
|
23
|
+
100: string;
|
|
24
|
+
200: string;
|
|
25
|
+
300: string;
|
|
26
|
+
400: string;
|
|
27
|
+
500: string;
|
|
28
|
+
600: string;
|
|
29
|
+
700: string;
|
|
30
|
+
800: string;
|
|
31
|
+
900: string;
|
|
32
|
+
};
|
|
33
|
+
secondary: {
|
|
34
|
+
lighter: string;
|
|
35
|
+
light: string;
|
|
36
|
+
main: string;
|
|
37
|
+
dark: string;
|
|
38
|
+
darker: string;
|
|
39
|
+
50: string;
|
|
40
|
+
100: string;
|
|
41
|
+
200: string;
|
|
42
|
+
300: string;
|
|
43
|
+
400: string;
|
|
44
|
+
500: string;
|
|
45
|
+
600: string;
|
|
46
|
+
700: string;
|
|
47
|
+
800: string;
|
|
48
|
+
900: string;
|
|
49
|
+
};
|
|
50
|
+
neutral: {
|
|
51
|
+
lighter: string;
|
|
52
|
+
light: string;
|
|
53
|
+
main: string;
|
|
54
|
+
dark: string;
|
|
55
|
+
darker: string;
|
|
56
|
+
contrastText: string;
|
|
57
|
+
50: string;
|
|
58
|
+
100: string;
|
|
59
|
+
200: string;
|
|
60
|
+
300: string;
|
|
61
|
+
400: string;
|
|
62
|
+
500: string;
|
|
63
|
+
600: string;
|
|
64
|
+
700: string;
|
|
65
|
+
800: string;
|
|
66
|
+
900: string;
|
|
67
|
+
};
|
|
68
|
+
text: {
|
|
69
|
+
primary: string;
|
|
70
|
+
secondary: string;
|
|
71
|
+
disabled: string;
|
|
72
|
+
};
|
|
73
|
+
error: {
|
|
74
|
+
lighter: string;
|
|
75
|
+
light: string;
|
|
76
|
+
main: string;
|
|
77
|
+
dark: string;
|
|
78
|
+
darker: string;
|
|
79
|
+
50: string;
|
|
80
|
+
100: string;
|
|
81
|
+
200: string;
|
|
82
|
+
300: string;
|
|
83
|
+
400: string;
|
|
84
|
+
500: string;
|
|
85
|
+
600: string;
|
|
86
|
+
700: string;
|
|
87
|
+
800: string;
|
|
88
|
+
900: string;
|
|
89
|
+
};
|
|
90
|
+
warning: {
|
|
91
|
+
lighter: string;
|
|
92
|
+
light: string;
|
|
93
|
+
main: string;
|
|
94
|
+
dark: string;
|
|
95
|
+
darker: string;
|
|
96
|
+
50: string;
|
|
97
|
+
100: string;
|
|
98
|
+
200: string;
|
|
99
|
+
300: string;
|
|
100
|
+
400: string;
|
|
101
|
+
500: string;
|
|
102
|
+
600: string;
|
|
103
|
+
700: string;
|
|
104
|
+
800: string;
|
|
105
|
+
900: string;
|
|
106
|
+
};
|
|
107
|
+
info: {
|
|
108
|
+
lighter: string;
|
|
109
|
+
light: string;
|
|
110
|
+
main: string;
|
|
111
|
+
dark: string;
|
|
112
|
+
darker: string;
|
|
113
|
+
50: string;
|
|
114
|
+
100: string;
|
|
115
|
+
200: string;
|
|
116
|
+
300: string;
|
|
117
|
+
400: string;
|
|
118
|
+
500: string;
|
|
119
|
+
600: string;
|
|
120
|
+
700: string;
|
|
121
|
+
800: string;
|
|
122
|
+
900: string;
|
|
123
|
+
};
|
|
124
|
+
success: {
|
|
125
|
+
lighter: string;
|
|
126
|
+
light: string;
|
|
127
|
+
main: string;
|
|
128
|
+
dark: string;
|
|
129
|
+
darker: string;
|
|
130
|
+
50: string;
|
|
131
|
+
100: string;
|
|
132
|
+
200: string;
|
|
133
|
+
300: string;
|
|
134
|
+
400: string;
|
|
135
|
+
500: string;
|
|
136
|
+
600: string;
|
|
137
|
+
700: string;
|
|
138
|
+
800: string;
|
|
139
|
+
900: string;
|
|
140
|
+
};
|
|
141
|
+
grey: import('../types/GeneratedPalette').GeneratedPalette;
|
|
142
|
+
action: {
|
|
143
|
+
active: string;
|
|
144
|
+
hoverOpacity: number;
|
|
145
|
+
selectedOpacity: number;
|
|
146
|
+
focusOpacity: number;
|
|
147
|
+
};
|
|
148
|
+
background: {
|
|
149
|
+
default: string;
|
|
150
|
+
paper: string;
|
|
151
|
+
highlight: string;
|
|
152
|
+
highlightPrimary: string;
|
|
153
|
+
};
|
|
154
|
+
divider: string;
|
|
155
|
+
categories: {
|
|
156
|
+
autoTransport: string;
|
|
157
|
+
billsUtilities: string;
|
|
158
|
+
businessServices: string;
|
|
159
|
+
education: string;
|
|
160
|
+
entertainment: string;
|
|
161
|
+
feesCharges: string;
|
|
162
|
+
financial: string;
|
|
163
|
+
foodDining: string;
|
|
164
|
+
giftsDonations: string;
|
|
165
|
+
healthFitness: string;
|
|
166
|
+
home: string;
|
|
167
|
+
income: string;
|
|
168
|
+
investments: string;
|
|
169
|
+
kids: string;
|
|
170
|
+
others: string;
|
|
171
|
+
personalCare: string;
|
|
172
|
+
pets: string;
|
|
173
|
+
shopping: string;
|
|
174
|
+
taxes: string;
|
|
175
|
+
transfer: string;
|
|
176
|
+
travel: string;
|
|
177
|
+
uncategorized: string;
|
|
178
|
+
};
|
|
179
|
+
chart: {
|
|
180
|
+
chart1: string;
|
|
181
|
+
chart2: string;
|
|
182
|
+
chart3: string;
|
|
183
|
+
chart4: string;
|
|
184
|
+
chart5: string;
|
|
185
|
+
chart6: string;
|
|
186
|
+
chart7: string;
|
|
187
|
+
};
|
|
188
|
+
chartMono: {
|
|
189
|
+
chartMono1: string;
|
|
190
|
+
chartMono2: string;
|
|
191
|
+
chartMono3: string;
|
|
192
|
+
chartMono4: string;
|
|
193
|
+
chartMono5: string;
|
|
194
|
+
chartMono6: string;
|
|
195
|
+
};
|
|
196
|
+
};
|
|
@@ -1,4 +1,36 @@
|
|
|
1
|
-
import { Palette } from '@mui/material';
|
|
2
1
|
import { TypographyOptions } from '@mui/material/styles/createTypography';
|
|
3
2
|
export declare const INTER = "Inter, Helvetica, Arial, sans-serif";
|
|
4
|
-
export declare const getTypography: (
|
|
3
|
+
export declare const getTypography: (typographyOptions?: TypographyOptions) => {
|
|
4
|
+
Body: import('react').CSSProperties;
|
|
5
|
+
Button: import('react').CSSProperties;
|
|
6
|
+
H1: import('react').CSSProperties;
|
|
7
|
+
H2: import('react').CSSProperties;
|
|
8
|
+
H3: import('react').CSSProperties;
|
|
9
|
+
Paragraph: import('react').CSSProperties;
|
|
10
|
+
ParagraphSmall: import('react').CSSProperties;
|
|
11
|
+
Small: import('react').CSSProperties;
|
|
12
|
+
Tiny: import('react').CSSProperties;
|
|
13
|
+
tiny: import('react').CSSProperties;
|
|
14
|
+
XSmall: import('react').CSSProperties;
|
|
15
|
+
button: import('@mui/material/styles/createTypography').TypographyStyleOptions;
|
|
16
|
+
caption: import('@mui/material/styles/createTypography').TypographyStyleOptions;
|
|
17
|
+
h1: import('@mui/material/styles/createTypography').TypographyStyleOptions;
|
|
18
|
+
h2: import('@mui/material/styles/createTypography').TypographyStyleOptions;
|
|
19
|
+
h3: import('@mui/material/styles/createTypography').TypographyStyleOptions;
|
|
20
|
+
h4?: import('@mui/material/styles/createTypography').TypographyStyleOptions | undefined;
|
|
21
|
+
h5?: import('@mui/material/styles/createTypography').TypographyStyleOptions | undefined;
|
|
22
|
+
h6?: import('@mui/material/styles/createTypography').TypographyStyleOptions | undefined;
|
|
23
|
+
overline?: import('@mui/material/styles/createTypography').TypographyStyleOptions | undefined;
|
|
24
|
+
body2: import('@mui/material/styles/createTypography').TypographyStyleOptions;
|
|
25
|
+
body1: import('@mui/material/styles/createTypography').TypographyStyleOptions;
|
|
26
|
+
subtitle1: import('@mui/material/styles/createTypography').TypographyStyleOptions;
|
|
27
|
+
subtitle2: import('@mui/material/styles/createTypography').TypographyStyleOptions;
|
|
28
|
+
allVariants?: React.CSSProperties;
|
|
29
|
+
fontFamily: string;
|
|
30
|
+
fontSize: number;
|
|
31
|
+
fontWeightLight?: React.CSSProperties["fontWeight"];
|
|
32
|
+
fontWeightRegular?: React.CSSProperties["fontWeight"];
|
|
33
|
+
fontWeightMedium?: React.CSSProperties["fontWeight"];
|
|
34
|
+
fontWeightBold?: React.CSSProperties["fontWeight"];
|
|
35
|
+
htmlFontSize?: number | undefined;
|
|
36
|
+
};
|