@fixefy/fixefy-ui-utils 0.0.20 → 0.0.22

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.
@@ -227,6 +227,7 @@ declare module '@mui/material/styles' {
227
227
  interface StatusColorOption {
228
228
  border: string;
229
229
  background: string;
230
+ light?: string;
230
231
  }
231
232
  interface SnackbarColorOption {
232
233
  border: string;
@@ -312,7 +312,8 @@ const theme = (0, _styles.createTheme)({
312
312
  invoiceState: {
313
313
  approved: {
314
314
  border: '#27AE60',
315
- background: '#27AE60'
315
+ background: '#27AE60',
316
+ light: '#D4EFDF'
316
317
  },
317
318
  created: {
318
319
  border: '#87ACB6',
@@ -323,8 +324,9 @@ const theme = (0, _styles.createTheme)({
323
324
  background: '#EB5757'
324
325
  },
325
326
  in_dispute: {
326
- border: '#56CCF2',
327
- background: '#56CCF2'
327
+ border: '#F2994A',
328
+ background: '#F2994A',
329
+ light: '#FCEBDB'
328
330
  },
329
331
  in_progress: {
330
332
  border: '#56CCF2',
package/package.json CHANGED
@@ -63,5 +63,5 @@
63
63
  "require": "./dist/index.js"
64
64
  }
65
65
  },
66
- "version": "0.0.20"
66
+ "version": "0.0.22"
67
67
  }