@eturnity/eturnity_reusable_components 9.13.6 → 9.16.0
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/index.es3.js +25 -0
- package/package.json +1 -1
- package/src/assets/theme.js +14 -0
package/dist/index.es3.js
CHANGED
|
@@ -788,6 +788,31 @@ const theme = (() => {
|
|
|
788
788
|
iconWidth: "14px"
|
|
789
789
|
}
|
|
790
790
|
}
|
|
791
|
+
},
|
|
792
|
+
chartGradients: {
|
|
793
|
+
simple: {
|
|
794
|
+
from: semanticColors.purple[500],
|
|
795
|
+
to: semanticColors.purple[400]
|
|
796
|
+
},
|
|
797
|
+
stacked: [{
|
|
798
|
+
from: "#F5EDFF",
|
|
799
|
+
to: "#DEC5FF"
|
|
800
|
+
}, {
|
|
801
|
+
from: "#CAA2FF",
|
|
802
|
+
to: "#F2E8FF"
|
|
803
|
+
}, {
|
|
804
|
+
from: "#B987FC",
|
|
805
|
+
to: "#904AEF"
|
|
806
|
+
}, {
|
|
807
|
+
from: "#8B40F2",
|
|
808
|
+
to: "#4A1394"
|
|
809
|
+
}, {
|
|
810
|
+
from: "#6A05F2",
|
|
811
|
+
to: "#4905A5"
|
|
812
|
+
}, {
|
|
813
|
+
from: "#5402C3",
|
|
814
|
+
to: "#2B0362"
|
|
815
|
+
}]
|
|
791
816
|
}
|
|
792
817
|
};
|
|
793
818
|
})();
|
package/package.json
CHANGED
package/src/assets/theme.js
CHANGED
|
@@ -790,6 +790,20 @@ const theme = (() => {
|
|
|
790
790
|
},
|
|
791
791
|
},
|
|
792
792
|
},
|
|
793
|
+
chartGradients: {
|
|
794
|
+
simple: {
|
|
795
|
+
from: semanticColors.purple[500],
|
|
796
|
+
to: semanticColors.purple[400],
|
|
797
|
+
},
|
|
798
|
+
stacked: [
|
|
799
|
+
{ from: '#F5EDFF', to: '#DEC5FF' },
|
|
800
|
+
{ from: '#CAA2FF', to: '#F2E8FF' },
|
|
801
|
+
{ from: '#B987FC', to: '#904AEF' },
|
|
802
|
+
{ from: '#8B40F2', to: '#4A1394' },
|
|
803
|
+
{ from: '#6A05F2', to: '#4905A5' },
|
|
804
|
+
{ from: '#5402C3', to: '#2B0362' },
|
|
805
|
+
],
|
|
806
|
+
},
|
|
793
807
|
}
|
|
794
808
|
})()
|
|
795
809
|
|