@fixefy/fixefy-ui-utils 0.2.21 → 0.2.23
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.
|
@@ -205,6 +205,7 @@ declare module '@mui/material/styles' {
|
|
|
205
205
|
in_review: StatusColorOption;
|
|
206
206
|
no_pricing: StatusColorOption;
|
|
207
207
|
pending: StatusColorOption;
|
|
208
|
+
pending_refund: StatusColorOption;
|
|
208
209
|
resolved: StatusColorOption;
|
|
209
210
|
submitted_for_billing: StatusColorOption;
|
|
210
211
|
}
|
|
@@ -217,6 +218,7 @@ declare module '@mui/material/styles' {
|
|
|
217
218
|
in_progress: StatusColorOption;
|
|
218
219
|
paid: StatusColorOption;
|
|
219
220
|
pending: StatusColorOption;
|
|
221
|
+
pending_refund: StatusColorOption;
|
|
220
222
|
closed: StatusColorOption;
|
|
221
223
|
refunded: StatusColorOption;
|
|
222
224
|
resolved: StatusColorOption;
|
|
@@ -231,6 +233,7 @@ declare module '@mui/material/styles' {
|
|
|
231
233
|
in_dispute: StatusColorOption;
|
|
232
234
|
in_progress: StatusColorOption;
|
|
233
235
|
paid: StatusColorOption;
|
|
236
|
+
pending_refund: StatusColorOption;
|
|
234
237
|
closed: StatusColorOption;
|
|
235
238
|
submitted_for_billing: StatusColorOption;
|
|
236
239
|
}
|
|
@@ -319,6 +319,11 @@ const theme = (0, _styles.createTheme)({
|
|
|
319
319
|
border: '#ECC631',
|
|
320
320
|
background: '#FEFDF3'
|
|
321
321
|
},
|
|
322
|
+
pending_refund: {
|
|
323
|
+
border: '#2D9CDB',
|
|
324
|
+
background: '#F1FBFE',
|
|
325
|
+
light: '#F1FBFE'
|
|
326
|
+
},
|
|
322
327
|
resolved: {
|
|
323
328
|
border: '#BB6BD9',
|
|
324
329
|
background: '#FAF6FE'
|
|
@@ -365,6 +370,11 @@ const theme = (0, _styles.createTheme)({
|
|
|
365
370
|
border: '#BB6BD9',
|
|
366
371
|
background: '#BB6BD9'
|
|
367
372
|
},
|
|
373
|
+
pending_refund: {
|
|
374
|
+
border: '#2D9CDB',
|
|
375
|
+
background: '#2D9CDB',
|
|
376
|
+
light: '#F1FBFE'
|
|
377
|
+
},
|
|
368
378
|
closed: {
|
|
369
379
|
border: '#8B9092',
|
|
370
380
|
background: '#8B9092'
|
|
@@ -418,6 +428,11 @@ const theme = (0, _styles.createTheme)({
|
|
|
418
428
|
background: '#BB6BD9',
|
|
419
429
|
light: '#FBF6FD'
|
|
420
430
|
},
|
|
431
|
+
pending_refund: {
|
|
432
|
+
border: '#2D9CDB',
|
|
433
|
+
background: '#2D9CDB',
|
|
434
|
+
light: '#F1FBFE'
|
|
435
|
+
},
|
|
421
436
|
closed: {
|
|
422
437
|
border: '#8B9092',
|
|
423
438
|
background: '#8B9092',
|
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