@tomaszjarosz/react-visualizers 0.4.12 → 0.4.13
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.cjs +616 -167
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +8 -0
- package/dist/index.js +616 -167
- package/dist/index.js.map +1 -1
- package/dist/react-visualizers.css +20 -0
- package/package.json +1 -1
|
@@ -2007,6 +2007,10 @@
|
|
|
2007
2007
|
fill: var(--color-blue-100);
|
|
2008
2008
|
}
|
|
2009
2009
|
|
|
2010
|
+
.fill-blue-200 {
|
|
2011
|
+
fill: var(--color-blue-200);
|
|
2012
|
+
}
|
|
2013
|
+
|
|
2010
2014
|
.fill-blue-400 {
|
|
2011
2015
|
fill: var(--color-blue-400);
|
|
2012
2016
|
}
|
|
@@ -2031,6 +2035,10 @@
|
|
|
2031
2035
|
fill: var(--color-gray-200);
|
|
2032
2036
|
}
|
|
2033
2037
|
|
|
2038
|
+
.fill-gray-300 {
|
|
2039
|
+
fill: var(--color-gray-300);
|
|
2040
|
+
}
|
|
2041
|
+
|
|
2034
2042
|
.fill-gray-400 {
|
|
2035
2043
|
fill: var(--color-gray-400);
|
|
2036
2044
|
}
|
|
@@ -2075,6 +2083,10 @@
|
|
|
2075
2083
|
fill: var(--color-orange-200);
|
|
2076
2084
|
}
|
|
2077
2085
|
|
|
2086
|
+
.fill-orange-500 {
|
|
2087
|
+
fill: var(--color-orange-500);
|
|
2088
|
+
}
|
|
2089
|
+
|
|
2078
2090
|
.fill-purple-100 {
|
|
2079
2091
|
fill: var(--color-purple-100);
|
|
2080
2092
|
}
|
|
@@ -2115,6 +2127,10 @@
|
|
|
2115
2127
|
fill: var(--color-yellow-900);
|
|
2116
2128
|
}
|
|
2117
2129
|
|
|
2130
|
+
.stroke-amber-500 {
|
|
2131
|
+
stroke: var(--color-amber-500);
|
|
2132
|
+
}
|
|
2133
|
+
|
|
2118
2134
|
.stroke-amber-600 {
|
|
2119
2135
|
stroke: var(--color-amber-600);
|
|
2120
2136
|
}
|
|
@@ -2151,6 +2167,10 @@
|
|
|
2151
2167
|
stroke: var(--color-orange-400);
|
|
2152
2168
|
}
|
|
2153
2169
|
|
|
2170
|
+
.stroke-orange-600 {
|
|
2171
|
+
stroke: var(--color-orange-600);
|
|
2172
|
+
}
|
|
2173
|
+
|
|
2154
2174
|
.stroke-purple-300 {
|
|
2155
2175
|
stroke: var(--color-purple-300);
|
|
2156
2176
|
}
|
package/package.json
CHANGED