@fixefy/fixefy-ui-utils 0.2.13 → 0.2.15
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.
|
@@ -190,6 +190,7 @@ declare module '@mui/material/styles' {
|
|
|
190
190
|
active: StatusColorOption;
|
|
191
191
|
approve: StatusColorOption;
|
|
192
192
|
approved: StatusColorOption;
|
|
193
|
+
billed: StatusColorOption;
|
|
193
194
|
challenge: StatusColorOption;
|
|
194
195
|
challenged: StatusColorOption;
|
|
195
196
|
declined: StatusColorOption;
|
|
@@ -203,6 +204,7 @@ declare module '@mui/material/styles' {
|
|
|
203
204
|
no_pricing: StatusColorOption;
|
|
204
205
|
pending: StatusColorOption;
|
|
205
206
|
resolved: StatusColorOption;
|
|
207
|
+
submitted_for_billing: StatusColorOption;
|
|
206
208
|
}
|
|
207
209
|
interface TagPaletteColorOptions {
|
|
208
210
|
approved: StatusColorOption;
|
|
@@ -218,14 +220,17 @@ declare module '@mui/material/styles' {
|
|
|
218
220
|
}
|
|
219
221
|
interface InvoiceStatesPaletteColorOptions {
|
|
220
222
|
approved: StatusColorOption;
|
|
223
|
+
billed: StatusColorOption;
|
|
221
224
|
created: StatusColorOption;
|
|
222
225
|
declined: StatusColorOption;
|
|
223
226
|
in_dispute: StatusColorOption;
|
|
224
227
|
in_progress: StatusColorOption;
|
|
225
228
|
paid: StatusColorOption;
|
|
226
229
|
closed: StatusColorOption;
|
|
230
|
+
submitted_for_billing: StatusColorOption;
|
|
227
231
|
}
|
|
228
232
|
interface RecosStatesPaletteColorOptions {
|
|
233
|
+
billed: StatusColorOption;
|
|
229
234
|
created: StatusColorOption;
|
|
230
235
|
in_progress: StatusColorOption;
|
|
231
236
|
approved: StatusColorOption;
|
|
@@ -234,6 +239,7 @@ declare module '@mui/material/styles' {
|
|
|
234
239
|
closed: StatusColorOption;
|
|
235
240
|
pending: StatusColorOption;
|
|
236
241
|
resolved: StatusColorOption;
|
|
242
|
+
submitted_for_billing: StatusColorOption;
|
|
237
243
|
}
|
|
238
244
|
interface SnackbarPaletteColorOptions {
|
|
239
245
|
info: SnackbarColorOption;
|
|
@@ -313,7 +313,15 @@ const theme = (0, _styles.createTheme)({
|
|
|
313
313
|
},
|
|
314
314
|
resolved: {
|
|
315
315
|
border: '#BB6BD9',
|
|
316
|
-
background: '#
|
|
316
|
+
background: '#FAF6FE'
|
|
317
|
+
},
|
|
318
|
+
submitted_for_billing: {
|
|
319
|
+
border: '#88C00D',
|
|
320
|
+
background: '#F1FBFE'
|
|
321
|
+
},
|
|
322
|
+
billed: {
|
|
323
|
+
border: '#C4A603',
|
|
324
|
+
background: '#FEFDF3'
|
|
317
325
|
}
|
|
318
326
|
},
|
|
319
327
|
tag: {
|
|
@@ -391,6 +399,16 @@ const theme = (0, _styles.createTheme)({
|
|
|
391
399
|
closed: {
|
|
392
400
|
border: '#8B9092',
|
|
393
401
|
background: '#8B9092'
|
|
402
|
+
},
|
|
403
|
+
submitted_for_billing: {
|
|
404
|
+
border: '#88C00D',
|
|
405
|
+
background: '#88C00D',
|
|
406
|
+
light: '#F1FBFE'
|
|
407
|
+
},
|
|
408
|
+
billed: {
|
|
409
|
+
border: '#C4A603',
|
|
410
|
+
background: '#C4A603',
|
|
411
|
+
light: '#FEFDF3'
|
|
394
412
|
}
|
|
395
413
|
},
|
|
396
414
|
reconcilationState: {
|
|
@@ -431,6 +449,16 @@ const theme = (0, _styles.createTheme)({
|
|
|
431
449
|
border: '#BB6BD9',
|
|
432
450
|
background: '#BB6BD9',
|
|
433
451
|
light: '#FBF6FD'
|
|
452
|
+
},
|
|
453
|
+
submitted_for_billing: {
|
|
454
|
+
border: '#88C00D',
|
|
455
|
+
background: '#88C00D',
|
|
456
|
+
light: '#F1FBFE'
|
|
457
|
+
},
|
|
458
|
+
billed: {
|
|
459
|
+
border: '#C4A603',
|
|
460
|
+
background: '#C4A603',
|
|
461
|
+
light: '#FEFDF3'
|
|
434
462
|
}
|
|
435
463
|
},
|
|
436
464
|
trends: {
|
package/package.json
CHANGED