@tomaszjarosz/react-visualizers 0.4.19 → 0.4.21
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 +7 -1
- package/dist/index.cjs +3817 -299
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +58 -0
- package/dist/index.js +3817 -299
- package/dist/index.js.map +1 -1
- package/dist/react-visualizers.css +96 -0
- package/package.json +2 -2
|
@@ -47,6 +47,19 @@
|
|
|
47
47
|
--tw-ring-offset-width: 0px;
|
|
48
48
|
--tw-ring-offset-color: #fff;
|
|
49
49
|
--tw-ring-offset-shadow: 0 0 #0000;
|
|
50
|
+
--tw-blur: initial;
|
|
51
|
+
--tw-brightness: initial;
|
|
52
|
+
--tw-contrast: initial;
|
|
53
|
+
--tw-grayscale: initial;
|
|
54
|
+
--tw-hue-rotate: initial;
|
|
55
|
+
--tw-invert: initial;
|
|
56
|
+
--tw-opacity: initial;
|
|
57
|
+
--tw-saturate: initial;
|
|
58
|
+
--tw-sepia: initial;
|
|
59
|
+
--tw-drop-shadow: initial;
|
|
60
|
+
--tw-drop-shadow-color: initial;
|
|
61
|
+
--tw-drop-shadow-alpha: 100%;
|
|
62
|
+
--tw-drop-shadow-size: initial;
|
|
50
63
|
--tw-duration: initial;
|
|
51
64
|
--tw-ease: initial;
|
|
52
65
|
}
|
|
@@ -784,6 +797,10 @@
|
|
|
784
797
|
height: 100%;
|
|
785
798
|
}
|
|
786
799
|
|
|
800
|
+
.max-h-32 {
|
|
801
|
+
max-height: calc(var(--spacing) * 32);
|
|
802
|
+
}
|
|
803
|
+
|
|
787
804
|
.max-h-40 {
|
|
788
805
|
max-height: calc(var(--spacing) * 40);
|
|
789
806
|
}
|
|
@@ -2009,6 +2026,11 @@
|
|
|
2009
2026
|
--tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
|
|
2010
2027
|
}
|
|
2011
2028
|
|
|
2029
|
+
.to-violet-50 {
|
|
2030
|
+
--tw-gradient-to: var(--color-violet-50);
|
|
2031
|
+
--tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
|
|
2032
|
+
}
|
|
2033
|
+
|
|
2012
2034
|
.to-white {
|
|
2013
2035
|
--tw-gradient-to: var(--color-white);
|
|
2014
2036
|
--tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
|
|
@@ -2943,6 +2965,10 @@
|
|
|
2943
2965
|
--tw-ring-offset-shadow: var(--tw-ring-inset, ) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
2944
2966
|
}
|
|
2945
2967
|
|
|
2968
|
+
.filter {
|
|
2969
|
+
filter: var(--tw-blur, ) var(--tw-brightness, ) var(--tw-contrast, ) var(--tw-grayscale, ) var(--tw-hue-rotate, ) var(--tw-invert, ) var(--tw-saturate, ) var(--tw-sepia, ) var(--tw-drop-shadow, );
|
|
2970
|
+
}
|
|
2971
|
+
|
|
2946
2972
|
.transition {
|
|
2947
2973
|
transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to, opacity, box-shadow, transform, translate, scale, rotate, filter, -webkit-backdrop-filter, backdrop-filter, display, content-visibility, overlay, pointer-events;
|
|
2948
2974
|
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
@@ -3135,6 +3161,10 @@
|
|
|
3135
3161
|
background-color: var(--color-purple-100);
|
|
3136
3162
|
}
|
|
3137
3163
|
|
|
3164
|
+
.hover\:bg-purple-200:hover {
|
|
3165
|
+
background-color: var(--color-purple-200);
|
|
3166
|
+
}
|
|
3167
|
+
|
|
3138
3168
|
.hover\:bg-purple-600:hover {
|
|
3139
3169
|
background-color: var(--color-purple-600);
|
|
3140
3170
|
}
|
|
@@ -3631,6 +3661,72 @@
|
|
|
3631
3661
|
initial-value: 0 0 #0000;
|
|
3632
3662
|
}
|
|
3633
3663
|
|
|
3664
|
+
@property --tw-blur {
|
|
3665
|
+
syntax: "*";
|
|
3666
|
+
inherits: false
|
|
3667
|
+
}
|
|
3668
|
+
|
|
3669
|
+
@property --tw-brightness {
|
|
3670
|
+
syntax: "*";
|
|
3671
|
+
inherits: false
|
|
3672
|
+
}
|
|
3673
|
+
|
|
3674
|
+
@property --tw-contrast {
|
|
3675
|
+
syntax: "*";
|
|
3676
|
+
inherits: false
|
|
3677
|
+
}
|
|
3678
|
+
|
|
3679
|
+
@property --tw-grayscale {
|
|
3680
|
+
syntax: "*";
|
|
3681
|
+
inherits: false
|
|
3682
|
+
}
|
|
3683
|
+
|
|
3684
|
+
@property --tw-hue-rotate {
|
|
3685
|
+
syntax: "*";
|
|
3686
|
+
inherits: false
|
|
3687
|
+
}
|
|
3688
|
+
|
|
3689
|
+
@property --tw-invert {
|
|
3690
|
+
syntax: "*";
|
|
3691
|
+
inherits: false
|
|
3692
|
+
}
|
|
3693
|
+
|
|
3694
|
+
@property --tw-opacity {
|
|
3695
|
+
syntax: "*";
|
|
3696
|
+
inherits: false
|
|
3697
|
+
}
|
|
3698
|
+
|
|
3699
|
+
@property --tw-saturate {
|
|
3700
|
+
syntax: "*";
|
|
3701
|
+
inherits: false
|
|
3702
|
+
}
|
|
3703
|
+
|
|
3704
|
+
@property --tw-sepia {
|
|
3705
|
+
syntax: "*";
|
|
3706
|
+
inherits: false
|
|
3707
|
+
}
|
|
3708
|
+
|
|
3709
|
+
@property --tw-drop-shadow {
|
|
3710
|
+
syntax: "*";
|
|
3711
|
+
inherits: false
|
|
3712
|
+
}
|
|
3713
|
+
|
|
3714
|
+
@property --tw-drop-shadow-color {
|
|
3715
|
+
syntax: "*";
|
|
3716
|
+
inherits: false
|
|
3717
|
+
}
|
|
3718
|
+
|
|
3719
|
+
@property --tw-drop-shadow-alpha {
|
|
3720
|
+
syntax: "<percentage>";
|
|
3721
|
+
inherits: false;
|
|
3722
|
+
initial-value: 100%;
|
|
3723
|
+
}
|
|
3724
|
+
|
|
3725
|
+
@property --tw-drop-shadow-size {
|
|
3726
|
+
syntax: "*";
|
|
3727
|
+
inherits: false
|
|
3728
|
+
}
|
|
3729
|
+
|
|
3634
3730
|
@property --tw-duration {
|
|
3635
3731
|
syntax: "*";
|
|
3636
3732
|
inherits: false
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tomaszjarosz/react-visualizers",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.21",
|
|
4
4
|
"description": "Interactive algorithm and data structure visualizers for React",
|
|
5
5
|
"author": "Tomasz Jarosz <tomaszjarosz1994@gmail.com>",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"repository": {
|
|
8
8
|
"type": "git",
|
|
9
|
-
"url": "https://github.com/tomaszjarosz/tomaszjarosz-ui.git",
|
|
9
|
+
"url": "git+https://github.com/tomaszjarosz/tomaszjarosz-ui.git",
|
|
10
10
|
"directory": "packages/react-visualizers"
|
|
11
11
|
},
|
|
12
12
|
"keywords": [
|