@fixefy/fixefy-ui-utils 0.2.5 → 0.2.7
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.
|
@@ -54,6 +54,7 @@ declare module '@mui/material/styles' {
|
|
|
54
54
|
statistics: StatisticsPalleteColorOptions;
|
|
55
55
|
typography: TypographyPalleteColorOptions;
|
|
56
56
|
priority: PriorityPalleteColorOptions;
|
|
57
|
+
chipPriority: ChipPriorityPalleteColorOptions;
|
|
57
58
|
colors: ColorsPaletteColorOptions;
|
|
58
59
|
values: ValuesPaletteColorOptions;
|
|
59
60
|
}
|
|
@@ -83,6 +84,7 @@ declare module '@mui/material/styles' {
|
|
|
83
84
|
statistics: StatisticsPalleteColorOptions;
|
|
84
85
|
typography: TypographyPalleteColorOptions;
|
|
85
86
|
priority: PriorityPalleteColorOptions;
|
|
87
|
+
chipPriority: ChipPriorityPalleteColorOptions;
|
|
86
88
|
colors: ColorsPaletteColorOptions;
|
|
87
89
|
values: ValuesPaletteColorOptions;
|
|
88
90
|
}
|
|
@@ -130,6 +132,18 @@ declare module '@mui/material/styles' {
|
|
|
130
132
|
medium: string;
|
|
131
133
|
marginal: string;
|
|
132
134
|
}
|
|
135
|
+
interface ChipPriorityColorOption {
|
|
136
|
+
label: string;
|
|
137
|
+
background: string;
|
|
138
|
+
border: string;
|
|
139
|
+
}
|
|
140
|
+
interface ChipPriorityPalleteColorOptions {
|
|
141
|
+
critical: ChipPriorityColorOption;
|
|
142
|
+
high: ChipPriorityColorOption;
|
|
143
|
+
low: ChipPriorityColorOption;
|
|
144
|
+
medium: ChipPriorityColorOption;
|
|
145
|
+
marginal: ChipPriorityColorOption;
|
|
146
|
+
}
|
|
133
147
|
interface UploaderPaletteColorOptions {
|
|
134
148
|
processing: {
|
|
135
149
|
border: string;
|
|
@@ -189,6 +189,33 @@ const theme = (0, _styles.createTheme)({
|
|
|
189
189
|
medium: '#88C00D',
|
|
190
190
|
marginal: '#56CCF2'
|
|
191
191
|
},
|
|
192
|
+
chipPriority: {
|
|
193
|
+
critical: {
|
|
194
|
+
label: '#EB5757',
|
|
195
|
+
background: '#FEF6F6',
|
|
196
|
+
border: '#EB5757'
|
|
197
|
+
},
|
|
198
|
+
high: {
|
|
199
|
+
label: '#F2994A',
|
|
200
|
+
background: '#FEF7F1',
|
|
201
|
+
border: '#F2994A'
|
|
202
|
+
},
|
|
203
|
+
low: {
|
|
204
|
+
label: '#2D9CDB',
|
|
205
|
+
background: '#F1FBFE',
|
|
206
|
+
border: '#2D9CDB'
|
|
207
|
+
},
|
|
208
|
+
medium: {
|
|
209
|
+
label: '#88C00D',
|
|
210
|
+
background: '#F6FAEC',
|
|
211
|
+
border: '#88C00D'
|
|
212
|
+
},
|
|
213
|
+
marginal: {
|
|
214
|
+
label: '#56CCF2',
|
|
215
|
+
background: '#F1FBFE',
|
|
216
|
+
border: '#56CCF2'
|
|
217
|
+
}
|
|
218
|
+
},
|
|
192
219
|
typography: {
|
|
193
220
|
title: '#172326',
|
|
194
221
|
delete: '#EB5757'
|
package/package.json
CHANGED