@mdtl/uikit 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.
|
@@ -0,0 +1,143 @@
|
|
|
1
|
+
import { ThemeOptions } from '@mui/material/styles';
|
|
2
|
+
import { CSSProperties } from 'react';
|
|
3
|
+
export declare const themeOptions: ThemeOptions;
|
|
4
|
+
interface CustomSizes {
|
|
5
|
+
xl: true;
|
|
6
|
+
l: true;
|
|
7
|
+
m: true;
|
|
8
|
+
s: true;
|
|
9
|
+
xs: true;
|
|
10
|
+
large: false;
|
|
11
|
+
medium: false;
|
|
12
|
+
small: false;
|
|
13
|
+
}
|
|
14
|
+
interface CustomCheckColors {
|
|
15
|
+
primary: true;
|
|
16
|
+
error: true;
|
|
17
|
+
}
|
|
18
|
+
interface CustomCheckProps {
|
|
19
|
+
error?: boolean;
|
|
20
|
+
required?: boolean;
|
|
21
|
+
}
|
|
22
|
+
interface CustomTypographyVariants {
|
|
23
|
+
'title-lg': CSSProperties;
|
|
24
|
+
'title-md': CSSProperties;
|
|
25
|
+
'title-sm': CSSProperties;
|
|
26
|
+
'body-lg': CSSProperties;
|
|
27
|
+
'body-md': CSSProperties;
|
|
28
|
+
'body-sm': CSSProperties;
|
|
29
|
+
'body-xs': CSSProperties;
|
|
30
|
+
display1: CSSProperties;
|
|
31
|
+
display2: CSSProperties;
|
|
32
|
+
'h3 bold': CSSProperties;
|
|
33
|
+
'h4 semi bold': CSSProperties;
|
|
34
|
+
h5: CSSProperties;
|
|
35
|
+
h6: CSSProperties;
|
|
36
|
+
body1: CSSProperties;
|
|
37
|
+
'body1 semi bold': CSSProperties;
|
|
38
|
+
body2: CSSProperties;
|
|
39
|
+
'body2 semi bold': CSSProperties;
|
|
40
|
+
body3: CSSProperties;
|
|
41
|
+
'body3 semi bold': CSSProperties;
|
|
42
|
+
body4: CSSProperties;
|
|
43
|
+
body5: CSSProperties;
|
|
44
|
+
'body5 semi bold': CSSProperties;
|
|
45
|
+
}
|
|
46
|
+
declare module '@mui/material/styles' {
|
|
47
|
+
interface TypeBackground {
|
|
48
|
+
defaultHover: CSSProperties;
|
|
49
|
+
secondary: CSSProperties;
|
|
50
|
+
}
|
|
51
|
+
interface TypeAction {
|
|
52
|
+
main?: CSSProperties;
|
|
53
|
+
light?: CSSProperties;
|
|
54
|
+
dark?: CSSProperties;
|
|
55
|
+
}
|
|
56
|
+
interface TypographyVariants extends CustomTypographyVariants {
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
declare module '@mui/material/Typography' {
|
|
60
|
+
interface TypographyPropsVariantOverrides {
|
|
61
|
+
'title-lg': false;
|
|
62
|
+
'title-md': false;
|
|
63
|
+
'title-sm': false;
|
|
64
|
+
'body-lg': false;
|
|
65
|
+
'body-md': false;
|
|
66
|
+
'body-sm': false;
|
|
67
|
+
'body-xs': false;
|
|
68
|
+
display1: true;
|
|
69
|
+
display2: true;
|
|
70
|
+
'h3 bold': true;
|
|
71
|
+
'h4 semi bold': true;
|
|
72
|
+
h5: true;
|
|
73
|
+
h6: true;
|
|
74
|
+
body1: true;
|
|
75
|
+
'body1 semi bold': true;
|
|
76
|
+
body2: true;
|
|
77
|
+
'body2 semi bold': true;
|
|
78
|
+
body3: true;
|
|
79
|
+
'body3 semi bold': true;
|
|
80
|
+
body4: true;
|
|
81
|
+
body5: true;
|
|
82
|
+
'body5 semi bold': true;
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
declare module '@mui/material/SvgIcon' {
|
|
86
|
+
interface SvgIconPropsSizeOverrides {
|
|
87
|
+
xl: true;
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
declare module '@mui/material/Button' {
|
|
91
|
+
interface ButtonPropsSizeOverrides extends CustomSizes {
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
declare module '@mui/material/Fab' {
|
|
95
|
+
interface FabPropsVariantOverrides {
|
|
96
|
+
transparent: true;
|
|
97
|
+
}
|
|
98
|
+
interface FabPropsColorOverrides {
|
|
99
|
+
unaccented: true;
|
|
100
|
+
transparent: true;
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
declare module '@mui/material/IconButton' {
|
|
104
|
+
interface IconButtonPropsSizeOverrides extends CustomSizes {
|
|
105
|
+
}
|
|
106
|
+
interface IconButtonPropsColorOverrides {
|
|
107
|
+
text: true;
|
|
108
|
+
outlined: true;
|
|
109
|
+
}
|
|
110
|
+
}
|
|
111
|
+
declare module '@mui/material/Autocomplete' {
|
|
112
|
+
interface AutocompletePropsSizeOverrides extends CustomSizes {
|
|
113
|
+
}
|
|
114
|
+
}
|
|
115
|
+
declare module '@mui/material/TextField' {
|
|
116
|
+
interface TextFieldPropsSizeOverrides extends CustomSizes {
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
declare module '@mui/material/InputLabel' {
|
|
120
|
+
interface InputLabelPropsSizeOverrides extends CustomSizes {
|
|
121
|
+
}
|
|
122
|
+
}
|
|
123
|
+
declare module '@mui/material/SvgIcon' {
|
|
124
|
+
interface SvgIconPropsSizeOverrides extends CustomSizes {
|
|
125
|
+
}
|
|
126
|
+
}
|
|
127
|
+
declare module '@mui/material/Radio' {
|
|
128
|
+
interface RadioPropsSizeOverrides extends CustomSizes {
|
|
129
|
+
}
|
|
130
|
+
interface RadioPropsColorOverrides extends CustomCheckColors {
|
|
131
|
+
}
|
|
132
|
+
interface RadioProps extends CustomCheckProps {
|
|
133
|
+
}
|
|
134
|
+
}
|
|
135
|
+
declare module '@mui/material/Checkbox' {
|
|
136
|
+
interface CheckboxPropsSizeOverrides extends CustomSizes {
|
|
137
|
+
}
|
|
138
|
+
interface CheckboxPropsColorOverrides extends CustomCheckColors {
|
|
139
|
+
}
|
|
140
|
+
interface CheckboxProps extends CustomCheckProps {
|
|
141
|
+
}
|
|
142
|
+
}
|
|
143
|
+
export {};
|
package/package.json
CHANGED
|
File without changes
|