@fixefy/fixefy-ui-utils 0.2.72 → 0.2.73
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.
- package/dist/page_context/index.d.ts +23 -1
- package/dist/page_context/index.js +100 -0
- package/dist/types/index.d.ts +20 -0
- package/package.json +1 -1
|
@@ -250,9 +250,14 @@ declare module '@mui/material/styles' {
|
|
|
250
250
|
in_progress: StatusColorOption;
|
|
251
251
|
in_review: StatusColorOption;
|
|
252
252
|
no_pricing: StatusColorOption;
|
|
253
|
+
partially_approved: StatusColorOption;
|
|
254
|
+
partially_credited: StatusColorOption;
|
|
253
255
|
pending: StatusColorOption;
|
|
256
|
+
pending_credit: StatusColorOption;
|
|
257
|
+
pending_resolution: StatusColorOption;
|
|
254
258
|
pending_review: StatusColorOption;
|
|
255
259
|
pending_refund: StatusColorOption;
|
|
260
|
+
rejected: StatusColorOption;
|
|
256
261
|
resolved: StatusColorOption;
|
|
257
262
|
submitted_for_billing: StatusColorOption;
|
|
258
263
|
}
|
|
@@ -266,11 +271,16 @@ declare module '@mui/material/styles' {
|
|
|
266
271
|
in_progress: StatusColorOption;
|
|
267
272
|
paid: StatusColorOption;
|
|
268
273
|
paid_and_refunded: StatusColorOption;
|
|
274
|
+
partially_approved: StatusColorOption;
|
|
275
|
+
partially_credited: StatusColorOption;
|
|
269
276
|
pending: StatusColorOption;
|
|
277
|
+
pending_credit: StatusColorOption;
|
|
278
|
+
pending_resolution: StatusColorOption;
|
|
270
279
|
pending_review: StatusColorOption;
|
|
271
280
|
pending_refund: StatusColorOption;
|
|
272
281
|
closed: StatusColorOption;
|
|
273
282
|
refunded: StatusColorOption;
|
|
283
|
+
rejected: StatusColorOption;
|
|
274
284
|
resolved: StatusColorOption;
|
|
275
285
|
low: StatusColorOption;
|
|
276
286
|
}
|
|
@@ -280,25 +290,37 @@ declare module '@mui/material/styles' {
|
|
|
280
290
|
created: StatusColorOption;
|
|
281
291
|
credited: StatusColorOption;
|
|
282
292
|
credit_invoices: StatusColorOption;
|
|
293
|
+
declined: StatusColorOption;
|
|
283
294
|
in_dispute: StatusColorOption;
|
|
284
295
|
in_progress: StatusColorOption;
|
|
285
296
|
paid: StatusColorOption;
|
|
286
297
|
paid_and_refunded: StatusColorOption;
|
|
298
|
+
partially_approved: StatusColorOption;
|
|
299
|
+
partially_credited: StatusColorOption;
|
|
287
300
|
pending: StatusColorOption;
|
|
301
|
+
pending_credit: StatusColorOption;
|
|
302
|
+
pending_resolution: StatusColorOption;
|
|
288
303
|
pending_review: StatusColorOption;
|
|
289
304
|
pending_refund: StatusColorOption;
|
|
290
305
|
closed: StatusColorOption;
|
|
306
|
+
resolved: StatusColorOption;
|
|
291
307
|
submitted_for_billing: StatusColorOption;
|
|
292
308
|
}
|
|
293
309
|
interface RecosStatesPaletteColorOptions {
|
|
294
310
|
billed: StatusColorOption;
|
|
295
311
|
created: StatusColorOption;
|
|
312
|
+
credited: StatusColorOption;
|
|
296
313
|
in_progress: StatusColorOption;
|
|
297
314
|
approved: StatusColorOption;
|
|
298
315
|
declined: StatusColorOption;
|
|
316
|
+
partially_approved: StatusColorOption;
|
|
317
|
+
partially_credited: StatusColorOption;
|
|
318
|
+
pending: StatusColorOption;
|
|
319
|
+
pending_credit: StatusColorOption;
|
|
320
|
+
pending_resolution: StatusColorOption;
|
|
299
321
|
refunded: StatusColorOption;
|
|
322
|
+
rejected: StatusColorOption;
|
|
300
323
|
closed: StatusColorOption;
|
|
301
|
-
pending: StatusColorOption;
|
|
302
324
|
resolved: StatusColorOption;
|
|
303
325
|
submitted_for_billing: StatusColorOption;
|
|
304
326
|
}
|
|
@@ -360,11 +360,27 @@ const palette = {
|
|
|
360
360
|
border: '#BBBBBB',
|
|
361
361
|
background: '#FAFAFA'
|
|
362
362
|
},
|
|
363
|
+
partially_approved: {
|
|
364
|
+
border: '#88C00D',
|
|
365
|
+
background: '#F6FAEC'
|
|
366
|
+
},
|
|
367
|
+
partially_credited: {
|
|
368
|
+
border: '#EC6AC8',
|
|
369
|
+
background: '#FEF3FB'
|
|
370
|
+
},
|
|
363
371
|
pending: {
|
|
364
372
|
border: '#2D9CDB',
|
|
365
373
|
background: '#F3F9FD',
|
|
366
374
|
light: '#F1FBFE'
|
|
367
375
|
},
|
|
376
|
+
pending_credit: {
|
|
377
|
+
border: '#f9c9eb',
|
|
378
|
+
background: '#FEF3FB'
|
|
379
|
+
},
|
|
380
|
+
pending_resolution: {
|
|
381
|
+
border: '#F7C08F',
|
|
382
|
+
background: '#FEFAF6'
|
|
383
|
+
},
|
|
368
384
|
pending_review: {
|
|
369
385
|
border: '#2D9CDB',
|
|
370
386
|
background: '#F1FBFE'
|
|
@@ -374,6 +390,10 @@ const palette = {
|
|
|
374
390
|
background: '#F1FBFE',
|
|
375
391
|
light: '#F1FBFE'
|
|
376
392
|
},
|
|
393
|
+
rejected: {
|
|
394
|
+
border: '#EB5757',
|
|
395
|
+
background: '#FEF6F6'
|
|
396
|
+
},
|
|
377
397
|
resolved: {
|
|
378
398
|
border: '#BB6BD9',
|
|
379
399
|
background: '#FAF6FE'
|
|
@@ -396,6 +416,14 @@ const palette = {
|
|
|
396
416
|
border: '#ECC631',
|
|
397
417
|
background: '#ECC631'
|
|
398
418
|
},
|
|
419
|
+
pending_credit: {
|
|
420
|
+
border: '#ef8ed4',
|
|
421
|
+
background: '#ef8ed4'
|
|
422
|
+
},
|
|
423
|
+
pending_resolution: {
|
|
424
|
+
border: '#F2994A',
|
|
425
|
+
background: '#F2994A'
|
|
426
|
+
},
|
|
399
427
|
pending_review: {
|
|
400
428
|
border: '#2D9CDB',
|
|
401
429
|
background: '#2D9CDB'
|
|
@@ -432,6 +460,14 @@ const palette = {
|
|
|
432
460
|
border: '#BB6BD9',
|
|
433
461
|
background: '#BB6BD9'
|
|
434
462
|
},
|
|
463
|
+
partially_approved: {
|
|
464
|
+
border: '#88C00D',
|
|
465
|
+
background: '#88C00D'
|
|
466
|
+
},
|
|
467
|
+
partially_credited: {
|
|
468
|
+
border: '#EC6AC8',
|
|
469
|
+
background: '#EC6AC8'
|
|
470
|
+
},
|
|
435
471
|
pending_refund: {
|
|
436
472
|
border: '#2D9CDB',
|
|
437
473
|
background: '#2D9CDB',
|
|
@@ -445,6 +481,10 @@ const palette = {
|
|
|
445
481
|
border: '#BB6BD9',
|
|
446
482
|
background: '#BB6BD9'
|
|
447
483
|
},
|
|
484
|
+
rejected: {
|
|
485
|
+
border: '#EB5757',
|
|
486
|
+
background: '#EB5757'
|
|
487
|
+
},
|
|
448
488
|
resolved: {
|
|
449
489
|
border: '#BB6BD9',
|
|
450
490
|
background: '#BB6BD9'
|
|
@@ -475,6 +515,11 @@ const palette = {
|
|
|
475
515
|
background: '#6D60E8',
|
|
476
516
|
light: '#F0EFFD'
|
|
477
517
|
},
|
|
518
|
+
declined: {
|
|
519
|
+
border: '#EB5757',
|
|
520
|
+
background: '#EB5757',
|
|
521
|
+
light: '#FEF6F6'
|
|
522
|
+
},
|
|
478
523
|
in_dispute: {
|
|
479
524
|
border: '#EB5757',
|
|
480
525
|
background: '#EB5757',
|
|
@@ -495,11 +540,31 @@ const palette = {
|
|
|
495
540
|
background: '#BB6BD9',
|
|
496
541
|
light: '#FBF6FD'
|
|
497
542
|
},
|
|
543
|
+
partially_approved: {
|
|
544
|
+
border: '#88C00D',
|
|
545
|
+
background: '#88C00D',
|
|
546
|
+
light: '#F6FAEC'
|
|
547
|
+
},
|
|
548
|
+
partially_credited: {
|
|
549
|
+
border: '#EC6AC8',
|
|
550
|
+
background: '#EC6AC8',
|
|
551
|
+
light: '#FEF3FB'
|
|
552
|
+
},
|
|
498
553
|
pending: {
|
|
499
554
|
border: '#2D9CDB',
|
|
500
555
|
background: '#2D9CDB',
|
|
501
556
|
light: '#F1FBFE'
|
|
502
557
|
},
|
|
558
|
+
pending_credit: {
|
|
559
|
+
border: '#ef8ed4',
|
|
560
|
+
background: '#ef8ed4',
|
|
561
|
+
light: '#FEF3FB'
|
|
562
|
+
},
|
|
563
|
+
pending_resolution: {
|
|
564
|
+
border: '#F2994A',
|
|
565
|
+
background: '#F2994A',
|
|
566
|
+
light: '#FEF7F1'
|
|
567
|
+
},
|
|
503
568
|
pending_review: {
|
|
504
569
|
border: '#2D9CDB',
|
|
505
570
|
background: '#2D9CDB',
|
|
@@ -515,6 +580,11 @@ const palette = {
|
|
|
515
580
|
background: '#8B9092',
|
|
516
581
|
light: '#FBF6FD'
|
|
517
582
|
},
|
|
583
|
+
resolved: {
|
|
584
|
+
border: '#6FCF97',
|
|
585
|
+
background: '#6FCF97',
|
|
586
|
+
light: '#F0FAF4'
|
|
587
|
+
},
|
|
518
588
|
submitted_for_billing: {
|
|
519
589
|
border: '#88C00D',
|
|
520
590
|
background: '#88C00D',
|
|
@@ -531,6 +601,11 @@ const palette = {
|
|
|
531
601
|
border: '#87ACB6',
|
|
532
602
|
background: '#87ACB6'
|
|
533
603
|
},
|
|
604
|
+
credited: {
|
|
605
|
+
border: '#EC6AC8',
|
|
606
|
+
background: '#EC6AC8',
|
|
607
|
+
light: '#FBF6FD'
|
|
608
|
+
},
|
|
534
609
|
in_progress: {
|
|
535
610
|
border: '#EE6868',
|
|
536
611
|
background: '#EE6868',
|
|
@@ -541,6 +616,16 @@ const palette = {
|
|
|
541
616
|
background: '#2D9CDB',
|
|
542
617
|
light: '#F3F9FD'
|
|
543
618
|
},
|
|
619
|
+
pending_credit: {
|
|
620
|
+
border: '#ef8ed4',
|
|
621
|
+
background: '#ef8ed4',
|
|
622
|
+
light: '#FEF3FB'
|
|
623
|
+
},
|
|
624
|
+
pending_resolution: {
|
|
625
|
+
border: '#F2994A',
|
|
626
|
+
background: '#F2994A',
|
|
627
|
+
light: '#FEF7F1'
|
|
628
|
+
},
|
|
544
629
|
approved: {
|
|
545
630
|
border: '#88C00D',
|
|
546
631
|
background: '#88C00D',
|
|
@@ -551,11 +636,26 @@ const palette = {
|
|
|
551
636
|
background: '#F2994A',
|
|
552
637
|
light: '#FEF7F1'
|
|
553
638
|
},
|
|
639
|
+
partially_approved: {
|
|
640
|
+
border: '#88C00D',
|
|
641
|
+
background: '#88C00D',
|
|
642
|
+
light: '#F6FAEC'
|
|
643
|
+
},
|
|
644
|
+
partially_credited: {
|
|
645
|
+
border: '#EC6AC8',
|
|
646
|
+
background: '#EC6AC8',
|
|
647
|
+
light: '#FEF3FB'
|
|
648
|
+
},
|
|
554
649
|
refunded: {
|
|
555
650
|
border: '#EC6AC8',
|
|
556
651
|
background: '#EC6AC8',
|
|
557
652
|
light: '#FBF6FD'
|
|
558
653
|
},
|
|
654
|
+
rejected: {
|
|
655
|
+
border: '#EB5757',
|
|
656
|
+
background: '#EB5757',
|
|
657
|
+
light: '#FEF6F6'
|
|
658
|
+
},
|
|
559
659
|
closed: {
|
|
560
660
|
border: '#8B9092',
|
|
561
661
|
background: '#8B9092'
|
package/dist/types/index.d.ts
CHANGED
|
@@ -7,28 +7,48 @@ export type ChargeStateType = {
|
|
|
7
7
|
archived: string;
|
|
8
8
|
challenge: string;
|
|
9
9
|
closed: string;
|
|
10
|
+
declined: string;
|
|
10
11
|
discrepancy: string;
|
|
11
12
|
duplicated: string;
|
|
12
13
|
in_dispute: string;
|
|
13
14
|
no_pricing: string;
|
|
15
|
+
partially_approved: string;
|
|
14
16
|
pending: string;
|
|
17
|
+
pending_credit: string;
|
|
18
|
+
pending_resolution: string;
|
|
15
19
|
refunded: string;
|
|
20
|
+
rejected: string;
|
|
16
21
|
};
|
|
17
22
|
export type InvoiceStateType = {
|
|
18
23
|
approved: string;
|
|
19
24
|
created: string;
|
|
25
|
+
credited: string;
|
|
20
26
|
declined: string;
|
|
21
27
|
in_dispute: string;
|
|
22
28
|
in_progress: string;
|
|
23
29
|
paid: string;
|
|
30
|
+
partially_approved: string;
|
|
31
|
+
partially_credited: string;
|
|
32
|
+
pending: string;
|
|
33
|
+
pending_credit: string;
|
|
34
|
+
pending_resolution: string;
|
|
35
|
+
resolved: string;
|
|
24
36
|
};
|
|
25
37
|
export type RecoStateType = {
|
|
26
38
|
approved: string;
|
|
27
39
|
closed: string;
|
|
28
40
|
created: string;
|
|
41
|
+
credited: string;
|
|
29
42
|
declined: string;
|
|
30
43
|
in_progress: string;
|
|
44
|
+
partially_approved: string;
|
|
45
|
+
partially_credited: string;
|
|
46
|
+
pending: string;
|
|
47
|
+
pending_credit: string;
|
|
48
|
+
pending_resolution: string;
|
|
31
49
|
refunded: string;
|
|
50
|
+
rejected: string;
|
|
51
|
+
resolved: string;
|
|
32
52
|
};
|
|
33
53
|
export type ScoreType = {
|
|
34
54
|
excellent: string;
|
package/package.json
CHANGED