@fixefy/fixefy-ui-utils 0.2.11 → 0.2.13

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.
@@ -202,6 +202,7 @@ declare module '@mui/material/styles' {
202
202
  in_review: StatusColorOption;
203
203
  no_pricing: StatusColorOption;
204
204
  pending: StatusColorOption;
205
+ resolved: StatusColorOption;
205
206
  }
206
207
  interface TagPaletteColorOptions {
207
208
  approved: StatusColorOption;
@@ -232,6 +233,7 @@ declare module '@mui/material/styles' {
232
233
  refunded: StatusColorOption;
233
234
  closed: StatusColorOption;
234
235
  pending: StatusColorOption;
236
+ resolved: StatusColorOption;
235
237
  }
236
238
  interface SnackbarPaletteColorOptions {
237
239
  info: SnackbarColorOption;
@@ -310,6 +310,10 @@ const theme = (0, _styles.createTheme)({
310
310
  pending: {
311
311
  border: '#ECC631',
312
312
  background: '#FEFDF3'
313
+ },
314
+ resolved: {
315
+ border: '#BB6BD9',
316
+ background: '#BB6BD9'
313
317
  }
314
318
  },
315
319
  tag: {
@@ -422,6 +426,11 @@ const theme = (0, _styles.createTheme)({
422
426
  closed: {
423
427
  border: '#8B9092',
424
428
  background: '#8B9092'
429
+ },
430
+ resolved: {
431
+ border: '#BB6BD9',
432
+ background: '#BB6BD9',
433
+ light: '#FBF6FD'
425
434
  }
426
435
  },
427
436
  trends: {
package/package.json CHANGED
@@ -56,5 +56,5 @@
56
56
  "require": "./dist/index.js"
57
57
  }
58
58
  },
59
- "version": "0.2.11"
59
+ "version": "0.2.13"
60
60
  }