@fixefy/fixefy-ui-utils 0.2.5 → 0.2.6
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.
|
@@ -124,11 +124,31 @@ declare module '@mui/material/styles' {
|
|
|
124
124
|
lightPurple: string;
|
|
125
125
|
}
|
|
126
126
|
interface PriorityPalleteColorOptions {
|
|
127
|
-
critical:
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
127
|
+
critical: {
|
|
128
|
+
border: string;
|
|
129
|
+
background: string;
|
|
130
|
+
label: string;
|
|
131
|
+
};
|
|
132
|
+
high: {
|
|
133
|
+
border: string;
|
|
134
|
+
background: string;
|
|
135
|
+
label: string;
|
|
136
|
+
};
|
|
137
|
+
low: {
|
|
138
|
+
border: string;
|
|
139
|
+
background: string;
|
|
140
|
+
label: string;
|
|
141
|
+
};
|
|
142
|
+
medium: {
|
|
143
|
+
border: string;
|
|
144
|
+
background: string;
|
|
145
|
+
label: string;
|
|
146
|
+
};
|
|
147
|
+
marginal: {
|
|
148
|
+
border: string;
|
|
149
|
+
background: string;
|
|
150
|
+
label: string;
|
|
151
|
+
};
|
|
132
152
|
}
|
|
133
153
|
interface UploaderPaletteColorOptions {
|
|
134
154
|
processing: {
|
|
@@ -183,11 +183,31 @@ const theme = (0, _styles.createTheme)({
|
|
|
183
183
|
'800': '#2F4F57'
|
|
184
184
|
},
|
|
185
185
|
priority: {
|
|
186
|
-
critical:
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
186
|
+
critical: {
|
|
187
|
+
label: '#EB5757',
|
|
188
|
+
background: '#FEF6F6',
|
|
189
|
+
border: '#EB5757'
|
|
190
|
+
},
|
|
191
|
+
high: {
|
|
192
|
+
label: '#F2994A',
|
|
193
|
+
background: '#FEF7F1',
|
|
194
|
+
border: '#F2994A'
|
|
195
|
+
},
|
|
196
|
+
low: {
|
|
197
|
+
label: '#2D9CDB',
|
|
198
|
+
background: '#F1FBFE',
|
|
199
|
+
border: '#2D9CDB'
|
|
200
|
+
},
|
|
201
|
+
medium: {
|
|
202
|
+
label: '#88C00D',
|
|
203
|
+
background: '#F6FAEC',
|
|
204
|
+
border: '#88C00D'
|
|
205
|
+
},
|
|
206
|
+
marginal: {
|
|
207
|
+
label: '#56CCF2',
|
|
208
|
+
background: '#F1FBFE',
|
|
209
|
+
border: '#56CCF2'
|
|
210
|
+
}
|
|
191
211
|
},
|
|
192
212
|
typography: {
|
|
193
213
|
title: '#172326',
|
package/package.json
CHANGED