@tomaszjarosz/react-visualizers 0.4.13 → 0.4.15
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/README.md +6 -3
- package/dist/index.cjs +4021 -3094
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +14 -0
- package/dist/index.js +4021 -3094
- package/dist/index.js.map +1 -1
- package/dist/react-visualizers.css +16 -0
- package/package.json +1 -1
|
@@ -788,6 +788,10 @@
|
|
|
788
788
|
max-height: calc(var(--spacing) * 40);
|
|
789
789
|
}
|
|
790
790
|
|
|
791
|
+
.min-h-\[16px\] {
|
|
792
|
+
min-height: 16px;
|
|
793
|
+
}
|
|
794
|
+
|
|
791
795
|
.min-h-\[20px\] {
|
|
792
796
|
min-height: 20px;
|
|
793
797
|
}
|
|
@@ -860,6 +864,10 @@
|
|
|
860
864
|
min-height: 150px;
|
|
861
865
|
}
|
|
862
866
|
|
|
867
|
+
.min-h-\[160px\] {
|
|
868
|
+
min-height: 160px;
|
|
869
|
+
}
|
|
870
|
+
|
|
863
871
|
.min-h-\[180px\] {
|
|
864
872
|
min-height: 180px;
|
|
865
873
|
}
|
|
@@ -2063,6 +2071,10 @@
|
|
|
2063
2071
|
fill: var(--color-gray-900);
|
|
2064
2072
|
}
|
|
2065
2073
|
|
|
2074
|
+
.fill-green-50 {
|
|
2075
|
+
fill: var(--color-green-50);
|
|
2076
|
+
}
|
|
2077
|
+
|
|
2066
2078
|
.fill-green-100 {
|
|
2067
2079
|
fill: var(--color-green-100);
|
|
2068
2080
|
}
|
|
@@ -2151,6 +2163,10 @@
|
|
|
2151
2163
|
stroke: var(--color-gray-400);
|
|
2152
2164
|
}
|
|
2153
2165
|
|
|
2166
|
+
.stroke-green-300 {
|
|
2167
|
+
stroke: var(--color-green-300);
|
|
2168
|
+
}
|
|
2169
|
+
|
|
2154
2170
|
.stroke-green-400 {
|
|
2155
2171
|
stroke: var(--color-green-400);
|
|
2156
2172
|
}
|
package/package.json
CHANGED