@tomaszjarosz/react-visualizers 0.4.15 → 0.4.18
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 +13 -2
- package/dist/index.cjs +7813 -3538
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +77 -0
- package/dist/index.js +7813 -3538
- package/dist/index.js.map +1 -1
- package/dist/react-visualizers.css +12 -0
- package/package.json +1 -1
|
@@ -876,6 +876,10 @@
|
|
|
876
876
|
width: calc(var(--spacing) * .5);
|
|
877
877
|
}
|
|
878
878
|
|
|
879
|
+
.w-1\.5 {
|
|
880
|
+
width: calc(var(--spacing) * 1.5);
|
|
881
|
+
}
|
|
882
|
+
|
|
879
883
|
.w-2 {
|
|
880
884
|
width: calc(var(--spacing) * 2);
|
|
881
885
|
}
|
|
@@ -984,6 +988,14 @@
|
|
|
984
988
|
flex-shrink: 0;
|
|
985
989
|
}
|
|
986
990
|
|
|
991
|
+
.shrink {
|
|
992
|
+
flex-shrink: 1;
|
|
993
|
+
}
|
|
994
|
+
|
|
995
|
+
.grow {
|
|
996
|
+
flex-grow: 1;
|
|
997
|
+
}
|
|
998
|
+
|
|
987
999
|
.border-collapse {
|
|
988
1000
|
border-collapse: collapse;
|
|
989
1001
|
}
|
package/package.json
CHANGED