@fixefy/fixefy-ui-utils 0.2.23 → 0.2.24
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 +50 -3
- package/package.json +1 -1
|
@@ -178,6 +178,7 @@ const theme = (0, _styles.createTheme)({
|
|
|
178
178
|
main: '#365c65',
|
|
179
179
|
'100': '#C6DDE2',
|
|
180
180
|
'300': '#87ACB6',
|
|
181
|
+
'400': '#749da8',
|
|
181
182
|
'500': '#568793',
|
|
182
183
|
'700': '#3C636C',
|
|
183
184
|
'800': '#2F4F57'
|
|
@@ -625,18 +626,64 @@ const theme = (0, _styles.createTheme)({
|
|
|
625
626
|
style: ({ theme })=>({
|
|
626
627
|
color: theme.palette.primary[500],
|
|
627
628
|
'&:hover': {
|
|
628
|
-
color: theme.palette.primary[
|
|
629
|
+
color: theme.palette.primary[700],
|
|
629
630
|
background: 'transparent'
|
|
630
631
|
},
|
|
631
632
|
'&:focus': {
|
|
632
|
-
color: theme.palette.primary[
|
|
633
|
-
borderColor: theme.palette.primary[
|
|
633
|
+
color: theme.palette.primary[800],
|
|
634
|
+
borderColor: theme.palette.primary[800],
|
|
635
|
+
background: 'transparent'
|
|
636
|
+
},
|
|
637
|
+
'&:disabled': {
|
|
638
|
+
color: theme.palette.primary[500]
|
|
639
|
+
}
|
|
640
|
+
})
|
|
641
|
+
},
|
|
642
|
+
{
|
|
643
|
+
props: {
|
|
644
|
+
variant: 'text',
|
|
645
|
+
color: 'secondary'
|
|
646
|
+
},
|
|
647
|
+
style: ({ theme })=>({
|
|
648
|
+
color: theme.palette.primary[500],
|
|
649
|
+
'&:hover': {
|
|
650
|
+
color: theme.palette.primary[400],
|
|
651
|
+
background: 'transparent'
|
|
652
|
+
},
|
|
653
|
+
'&:focus': {
|
|
654
|
+
color: theme.palette.primary[300],
|
|
655
|
+
borderColor: theme.palette.primary[300],
|
|
634
656
|
background: 'transparent'
|
|
635
657
|
},
|
|
636
658
|
'&:disabled': {
|
|
637
659
|
color: theme.palette.primary[500]
|
|
638
660
|
}
|
|
639
661
|
})
|
|
662
|
+
},
|
|
663
|
+
{
|
|
664
|
+
props: {
|
|
665
|
+
variant: 'outlined',
|
|
666
|
+
color: 'secondary'
|
|
667
|
+
},
|
|
668
|
+
style: ({ theme })=>({
|
|
669
|
+
borderRadius: 100,
|
|
670
|
+
color: theme.palette.primary[500],
|
|
671
|
+
borderColor: theme.palette.primary[500],
|
|
672
|
+
'&:hover': {
|
|
673
|
+
color: theme.palette.primary[400],
|
|
674
|
+
borderColor: theme.palette.primary[400],
|
|
675
|
+
background: 'transparent'
|
|
676
|
+
},
|
|
677
|
+
'&:focus': {
|
|
678
|
+
color: theme.palette.primary[300],
|
|
679
|
+
borderColor: theme.palette.primary[300],
|
|
680
|
+
background: 'transparent'
|
|
681
|
+
},
|
|
682
|
+
'&:disabled': {
|
|
683
|
+
color: theme.palette.primary[500],
|
|
684
|
+
border: `1px solid ${theme.palette.primary[500]}`
|
|
685
|
+
}
|
|
686
|
+
})
|
|
640
687
|
}
|
|
641
688
|
],
|
|
642
689
|
styleOverrides: {
|
package/package.json
CHANGED