@fixefy/fixefy-ui-utils 0.2.24 → 0.2.25
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.
|
@@ -217,6 +217,7 @@ declare module '@mui/material/styles' {
|
|
|
217
217
|
in_dispute: StatusColorOption;
|
|
218
218
|
in_progress: StatusColorOption;
|
|
219
219
|
paid: StatusColorOption;
|
|
220
|
+
paid_and_refunded: StatusColorOption;
|
|
220
221
|
pending: StatusColorOption;
|
|
221
222
|
pending_refund: StatusColorOption;
|
|
222
223
|
closed: StatusColorOption;
|
|
@@ -233,6 +234,7 @@ declare module '@mui/material/styles' {
|
|
|
233
234
|
in_dispute: StatusColorOption;
|
|
234
235
|
in_progress: StatusColorOption;
|
|
235
236
|
paid: StatusColorOption;
|
|
237
|
+
paid_and_refunded: StatusColorOption;
|
|
236
238
|
pending_refund: StatusColorOption;
|
|
237
239
|
closed: StatusColorOption;
|
|
238
240
|
submitted_for_billing: StatusColorOption;
|
|
@@ -371,6 +371,10 @@ const theme = (0, _styles.createTheme)({
|
|
|
371
371
|
border: '#BB6BD9',
|
|
372
372
|
background: '#BB6BD9'
|
|
373
373
|
},
|
|
374
|
+
paid_and_refunded: {
|
|
375
|
+
border: '#BB6BD9',
|
|
376
|
+
background: '#BB6BD9'
|
|
377
|
+
},
|
|
374
378
|
pending_refund: {
|
|
375
379
|
border: '#2D9CDB',
|
|
376
380
|
background: '#2D9CDB',
|
|
@@ -429,6 +433,11 @@ const theme = (0, _styles.createTheme)({
|
|
|
429
433
|
background: '#BB6BD9',
|
|
430
434
|
light: '#FBF6FD'
|
|
431
435
|
},
|
|
436
|
+
paid_and_refunded: {
|
|
437
|
+
border: '#BB6BD9',
|
|
438
|
+
background: '#BB6BD9',
|
|
439
|
+
light: '#FBF6FD'
|
|
440
|
+
},
|
|
432
441
|
pending_refund: {
|
|
433
442
|
border: '#2D9CDB',
|
|
434
443
|
background: '#2D9CDB',
|
package/package.json
CHANGED