@fixefy/fixefy-ui-utils 0.2.71 → 0.2.72
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.js +14 -14
- package/package.json +1 -1
|
@@ -532,28 +532,28 @@ const palette = {
|
|
|
532
532
|
background: '#87ACB6'
|
|
533
533
|
},
|
|
534
534
|
in_progress: {
|
|
535
|
-
border: '#
|
|
536
|
-
background: '#
|
|
535
|
+
border: '#EE6868',
|
|
536
|
+
background: '#EE6868',
|
|
537
537
|
light: '#FEF6F6'
|
|
538
538
|
},
|
|
539
539
|
pending: {
|
|
540
|
-
border: '#
|
|
541
|
-
background: '#
|
|
542
|
-
light: '#
|
|
540
|
+
border: '#2D9CDB',
|
|
541
|
+
background: '#2D9CDB',
|
|
542
|
+
light: '#F3F9FD'
|
|
543
543
|
},
|
|
544
544
|
approved: {
|
|
545
545
|
border: '#88C00D',
|
|
546
546
|
background: '#88C00D',
|
|
547
|
-
light: '#
|
|
547
|
+
light: '#F6FAEC'
|
|
548
548
|
},
|
|
549
549
|
declined: {
|
|
550
|
-
border: '#
|
|
551
|
-
background: '#
|
|
552
|
-
light: '#
|
|
550
|
+
border: '#F2994A',
|
|
551
|
+
background: '#F2994A',
|
|
552
|
+
light: '#FEF7F1'
|
|
553
553
|
},
|
|
554
554
|
refunded: {
|
|
555
|
-
border: '#
|
|
556
|
-
background: '#
|
|
555
|
+
border: '#EC6AC8',
|
|
556
|
+
background: '#EC6AC8',
|
|
557
557
|
light: '#FBF6FD'
|
|
558
558
|
},
|
|
559
559
|
closed: {
|
|
@@ -561,9 +561,9 @@ const palette = {
|
|
|
561
561
|
background: '#8B9092'
|
|
562
562
|
},
|
|
563
563
|
resolved: {
|
|
564
|
-
border: '#
|
|
565
|
-
background: '#
|
|
566
|
-
light: '#
|
|
564
|
+
border: '#6FCF97',
|
|
565
|
+
background: '#6FCF97',
|
|
566
|
+
light: '#F0FAF4'
|
|
567
567
|
},
|
|
568
568
|
submitted_for_billing: {
|
|
569
569
|
border: '#88C00D',
|
package/package.json
CHANGED