@fixefy/fixefy-ui-utils 0.2.26 → 0.2.28
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.
|
@@ -235,6 +235,7 @@ declare module '@mui/material/styles' {
|
|
|
235
235
|
in_progress: StatusColorOption;
|
|
236
236
|
paid: StatusColorOption;
|
|
237
237
|
paid_and_refunded: StatusColorOption;
|
|
238
|
+
pending: StatusColorOption;
|
|
238
239
|
pending_refund: StatusColorOption;
|
|
239
240
|
closed: StatusColorOption;
|
|
240
241
|
submitted_for_billing: StatusColorOption;
|
|
@@ -409,8 +409,8 @@ const theme = (0, _styles.createTheme)({
|
|
|
409
409
|
light: '#FBF6FD'
|
|
410
410
|
},
|
|
411
411
|
credited: {
|
|
412
|
-
border: '#
|
|
413
|
-
background: '#
|
|
412
|
+
border: '#EC6AC8',
|
|
413
|
+
background: '#EC6AC8',
|
|
414
414
|
light: '#FBF6FD'
|
|
415
415
|
},
|
|
416
416
|
declined: {
|
|
@@ -424,8 +424,8 @@ const theme = (0, _styles.createTheme)({
|
|
|
424
424
|
light: '#FCEBDB'
|
|
425
425
|
},
|
|
426
426
|
in_progress: {
|
|
427
|
-
border: '#
|
|
428
|
-
background: '#
|
|
427
|
+
border: '#39B8EC',
|
|
428
|
+
background: '#39B8EC',
|
|
429
429
|
light: '#F1FBFE'
|
|
430
430
|
},
|
|
431
431
|
paid: {
|
|
@@ -438,9 +438,14 @@ const theme = (0, _styles.createTheme)({
|
|
|
438
438
|
background: '#BB6BD9',
|
|
439
439
|
light: '#FBF6FD'
|
|
440
440
|
},
|
|
441
|
+
pending: {
|
|
442
|
+
border: '#ECC631',
|
|
443
|
+
background: '#ECC631',
|
|
444
|
+
light: '#FEFCEE'
|
|
445
|
+
},
|
|
441
446
|
pending_refund: {
|
|
442
|
-
border: '#
|
|
443
|
-
background: '#
|
|
447
|
+
border: '#88C00D',
|
|
448
|
+
background: '#88C00D',
|
|
444
449
|
light: '#F1FBFE'
|
|
445
450
|
},
|
|
446
451
|
closed: {
|
|
@@ -465,8 +470,8 @@ const theme = (0, _styles.createTheme)({
|
|
|
465
470
|
background: '#87ACB6'
|
|
466
471
|
},
|
|
467
472
|
in_progress: {
|
|
468
|
-
border: '#
|
|
469
|
-
background: '#
|
|
473
|
+
border: '#EB5757',
|
|
474
|
+
background: '#EB5757',
|
|
470
475
|
light: '#F1FBFE'
|
|
471
476
|
},
|
|
472
477
|
pending: {
|
|
@@ -475,18 +480,18 @@ const theme = (0, _styles.createTheme)({
|
|
|
475
480
|
light: '#FEFCEE'
|
|
476
481
|
},
|
|
477
482
|
approved: {
|
|
478
|
-
border: '#
|
|
479
|
-
background: '#
|
|
483
|
+
border: '#88C00D',
|
|
484
|
+
background: '#88C00D',
|
|
480
485
|
light: '#D4EFDF'
|
|
481
486
|
},
|
|
482
487
|
declined: {
|
|
483
|
-
border: '#
|
|
484
|
-
background: '#
|
|
488
|
+
border: '#C4A603',
|
|
489
|
+
background: '#C4A603',
|
|
485
490
|
light: '#FEF6F6'
|
|
486
491
|
},
|
|
487
492
|
refunded: {
|
|
488
|
-
border: '#
|
|
489
|
-
background: '#
|
|
493
|
+
border: '#27AE60',
|
|
494
|
+
background: '#27AE60',
|
|
490
495
|
light: '#FBF6FD'
|
|
491
496
|
},
|
|
492
497
|
closed: {
|
|
@@ -494,8 +499,8 @@ const theme = (0, _styles.createTheme)({
|
|
|
494
499
|
background: '#8B9092'
|
|
495
500
|
},
|
|
496
501
|
resolved: {
|
|
497
|
-
border: '#
|
|
498
|
-
background: '#
|
|
502
|
+
border: '#EC6AC8',
|
|
503
|
+
background: '#EC6AC8',
|
|
499
504
|
light: '#FBF6FD'
|
|
500
505
|
},
|
|
501
506
|
submitted_for_billing: {
|
package/dist/transform/index.js
CHANGED
|
@@ -53,7 +53,7 @@ const defaultOptions = {
|
|
|
53
53
|
rtrim: true,
|
|
54
54
|
delimiter: ','
|
|
55
55
|
};
|
|
56
|
-
const transform =
|
|
56
|
+
const transform = function() {
|
|
57
57
|
var _ref = _async_to_generator(function*({ data, data_type, options = defaultOptions }) {
|
|
58
58
|
let rv = data;
|
|
59
59
|
data_type = data_type.substring(data_type.lastIndexOf('/') + 1, data_type.length + 1).toLowerCase();
|
|
@@ -79,7 +79,7 @@ const transform = /*#__PURE__*/ function() {
|
|
|
79
79
|
return _ref.apply(this, arguments);
|
|
80
80
|
};
|
|
81
81
|
}();
|
|
82
|
-
const _csvToJson =
|
|
82
|
+
const _csvToJson = function() {
|
|
83
83
|
var _ref = _async_to_generator(function*({ csv, options = defaultOptions }) {
|
|
84
84
|
const rv = yield (0, _csvtojson.default)(options).fromString(csv);
|
|
85
85
|
return rv;
|
package/package.json
CHANGED