@fixefy/fixefy-ui-utils 0.2.6 → 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
|
}
|
|
@@ -124,31 +126,23 @@ declare module '@mui/material/styles' {
|
|
|
124
126
|
lightPurple: string;
|
|
125
127
|
}
|
|
126
128
|
interface PriorityPalleteColorOptions {
|
|
127
|
-
critical:
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
medium:
|
|
143
|
-
|
|
144
|
-
background: string;
|
|
145
|
-
label: string;
|
|
146
|
-
};
|
|
147
|
-
marginal: {
|
|
148
|
-
border: string;
|
|
149
|
-
background: string;
|
|
150
|
-
label: string;
|
|
151
|
-
};
|
|
129
|
+
critical: string;
|
|
130
|
+
high: string;
|
|
131
|
+
low: string;
|
|
132
|
+
medium: string;
|
|
133
|
+
marginal: string;
|
|
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;
|
|
152
146
|
}
|
|
153
147
|
interface UploaderPaletteColorOptions {
|
|
154
148
|
processing: {
|
|
@@ -183,6 +183,13 @@ const theme = (0, _styles.createTheme)({
|
|
|
183
183
|
'800': '#2F4F57'
|
|
184
184
|
},
|
|
185
185
|
priority: {
|
|
186
|
+
critical: '#EB5757',
|
|
187
|
+
high: '#F2994A',
|
|
188
|
+
low: '#2D9CDB',
|
|
189
|
+
medium: '#88C00D',
|
|
190
|
+
marginal: '#56CCF2'
|
|
191
|
+
},
|
|
192
|
+
chipPriority: {
|
|
186
193
|
critical: {
|
|
187
194
|
label: '#EB5757',
|
|
188
195
|
background: '#FEF6F6',
|
package/package.json
CHANGED