react-toolkits 2.22.21 → 2.22.22
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/CHANGELOG.md +6 -0
- package/lib/index.css +155 -65
- package/lib/index.js +2 -2
- package/lib/index.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/lib/index.css
CHANGED
|
@@ -7,9 +7,11 @@
|
|
|
7
7
|
"Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
|
8
8
|
--font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
|
|
9
9
|
"Courier New", monospace;
|
|
10
|
+
--color-blue-50: oklch(97% 0.014 254.604);
|
|
10
11
|
--color-blue-500: oklch(62.3% 0.214 259.815);
|
|
11
12
|
--color-blue-600: oklch(54.6% 0.245 262.881);
|
|
12
|
-
--color-
|
|
13
|
+
--color-indigo-50: oklch(96.2% 0.018 272.314);
|
|
14
|
+
--color-purple-50: oklch(97.7% 0.014 308.299);
|
|
13
15
|
--color-gray-50: oklch(98.5% 0.002 247.839);
|
|
14
16
|
--color-gray-200: oklch(92.8% 0.006 264.531);
|
|
15
17
|
--color-gray-500: oklch(55.1% 0.027 264.364);
|
|
@@ -28,6 +30,7 @@
|
|
|
28
30
|
--leading-tight: 1.25;
|
|
29
31
|
--radius-lg: 0.5rem;
|
|
30
32
|
--ease-out: cubic-bezier(0, 0, 0.2, 1);
|
|
33
|
+
--blur-sm: 8px;
|
|
31
34
|
--default-transition-duration: 150ms;
|
|
32
35
|
--default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
|
33
36
|
--default-font-family: var(--font-sans);
|
|
@@ -205,9 +208,6 @@
|
|
|
205
208
|
.relative {
|
|
206
209
|
position: relative;
|
|
207
210
|
}
|
|
208
|
-
.top-0 {
|
|
209
|
-
top: calc(var(--spacing) * 0);
|
|
210
|
-
}
|
|
211
211
|
.top-1\/2 {
|
|
212
212
|
top: calc(1/2 * 100%);
|
|
213
213
|
}
|
|
@@ -223,9 +223,6 @@
|
|
|
223
223
|
.right-16 {
|
|
224
224
|
right: calc(var(--spacing) * 16);
|
|
225
225
|
}
|
|
226
|
-
.bottom-0 {
|
|
227
|
-
bottom: calc(var(--spacing) * 0);
|
|
228
|
-
}
|
|
229
226
|
.left-0 {
|
|
230
227
|
left: calc(var(--spacing) * 0);
|
|
231
228
|
}
|
|
@@ -307,8 +304,8 @@
|
|
|
307
304
|
.w-10\/12 {
|
|
308
305
|
width: calc(10/12 * 100%);
|
|
309
306
|
}
|
|
310
|
-
.w-\[
|
|
311
|
-
width:
|
|
307
|
+
.w-\[500px\] {
|
|
308
|
+
width: 500px;
|
|
312
309
|
}
|
|
313
310
|
.w-full {
|
|
314
311
|
width: 100%;
|
|
@@ -363,16 +360,40 @@
|
|
|
363
360
|
border-top-style: var(--tw-border-style);
|
|
364
361
|
border-top-width: 1px;
|
|
365
362
|
}
|
|
363
|
+
.border-l {
|
|
364
|
+
border-left-style: var(--tw-border-style);
|
|
365
|
+
border-left-width: 1px;
|
|
366
|
+
}
|
|
366
367
|
.border-gray-200 {
|
|
367
368
|
border-color: var(--color-gray-200);
|
|
368
369
|
}
|
|
369
|
-
.
|
|
370
|
-
|
|
370
|
+
.border-gray-200\/50 {
|
|
371
|
+
border-color: color-mix(in srgb, oklch(92.8% 0.006 264.531) 50%, transparent);
|
|
372
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
373
|
+
border-color: color-mix(in oklab, var(--color-gray-200) 50%, transparent);
|
|
374
|
+
}
|
|
375
|
+
}
|
|
376
|
+
.bg-white\/95 {
|
|
377
|
+
background-color: color-mix(in srgb, #fff 95%, transparent);
|
|
378
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
379
|
+
background-color: color-mix(in oklab, var(--color-white) 95%, transparent);
|
|
380
|
+
}
|
|
381
|
+
}
|
|
382
|
+
.bg-gradient-to-br {
|
|
383
|
+
--tw-gradient-position: to bottom right in oklab;
|
|
384
|
+
background-image: linear-gradient(var(--tw-gradient-stops));
|
|
371
385
|
}
|
|
372
386
|
.bg-gradient-to-r {
|
|
373
387
|
--tw-gradient-position: to right in oklab;
|
|
374
388
|
background-image: linear-gradient(var(--tw-gradient-stops));
|
|
375
389
|
}
|
|
390
|
+
.from-blue-50\/30 {
|
|
391
|
+
--tw-gradient-from: color-mix(in srgb, oklch(97% 0.014 254.604) 30%, transparent);
|
|
392
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
393
|
+
--tw-gradient-from: color-mix(in oklab, var(--color-blue-50) 30%, transparent);
|
|
394
|
+
}
|
|
395
|
+
--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));
|
|
396
|
+
}
|
|
376
397
|
.from-gray-800 {
|
|
377
398
|
--tw-gradient-from: var(--color-gray-800);
|
|
378
399
|
--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));
|
|
@@ -381,6 +402,14 @@
|
|
|
381
402
|
--tw-gradient-from: var(--color-white);
|
|
382
403
|
--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));
|
|
383
404
|
}
|
|
405
|
+
.via-indigo-50\/30 {
|
|
406
|
+
--tw-gradient-via: color-mix(in srgb, oklch(96.2% 0.018 272.314) 30%, transparent);
|
|
407
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
408
|
+
--tw-gradient-via: color-mix(in oklab, var(--color-indigo-50) 30%, transparent);
|
|
409
|
+
}
|
|
410
|
+
--tw-gradient-via-stops: var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-via) var(--tw-gradient-via-position), var(--tw-gradient-to) var(--tw-gradient-to-position);
|
|
411
|
+
--tw-gradient-stops: var(--tw-gradient-via-stops);
|
|
412
|
+
}
|
|
384
413
|
.to-gray-50\/30 {
|
|
385
414
|
--tw-gradient-to: color-mix(in srgb, oklch(98.5% 0.002 247.839) 30%, transparent);
|
|
386
415
|
@supports (color: color-mix(in lab, red, red)) {
|
|
@@ -392,6 +421,13 @@
|
|
|
392
421
|
--tw-gradient-to: var(--color-gray-600);
|
|
393
422
|
--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));
|
|
394
423
|
}
|
|
424
|
+
.to-purple-50\/30 {
|
|
425
|
+
--tw-gradient-to: color-mix(in srgb, oklch(97.7% 0.014 308.299) 30%, transparent);
|
|
426
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
427
|
+
--tw-gradient-to: color-mix(in oklab, var(--color-purple-50) 30%, transparent);
|
|
428
|
+
}
|
|
429
|
+
--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));
|
|
430
|
+
}
|
|
395
431
|
.bg-clip-text {
|
|
396
432
|
-webkit-background-clip: text;
|
|
397
433
|
background-clip: text;
|
|
@@ -456,9 +492,18 @@
|
|
|
456
492
|
.text-transparent {
|
|
457
493
|
color: transparent;
|
|
458
494
|
}
|
|
495
|
+
.shadow-2xl {
|
|
496
|
+
--tw-shadow: 0 25px 50px -12px var(--tw-shadow-color, rgb(0 0 0 / 0.25));
|
|
497
|
+
box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
|
|
498
|
+
}
|
|
459
499
|
.filter {
|
|
460
500
|
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,);
|
|
461
501
|
}
|
|
502
|
+
.backdrop-blur-sm {
|
|
503
|
+
--tw-backdrop-blur: blur(var(--blur-sm));
|
|
504
|
+
-webkit-backdrop-filter: var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,);
|
|
505
|
+
backdrop-filter: var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,);
|
|
506
|
+
}
|
|
462
507
|
.transition {
|
|
463
508
|
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, visibility, content-visibility, overlay, pointer-events;
|
|
464
509
|
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
|
@@ -616,6 +661,71 @@
|
|
|
616
661
|
syntax: "*";
|
|
617
662
|
inherits: false;
|
|
618
663
|
}
|
|
664
|
+
@property --tw-shadow {
|
|
665
|
+
syntax: "*";
|
|
666
|
+
inherits: false;
|
|
667
|
+
initial-value: 0 0 #0000;
|
|
668
|
+
}
|
|
669
|
+
@property --tw-shadow-color {
|
|
670
|
+
syntax: "*";
|
|
671
|
+
inherits: false;
|
|
672
|
+
}
|
|
673
|
+
@property --tw-shadow-alpha {
|
|
674
|
+
syntax: "<percentage>";
|
|
675
|
+
inherits: false;
|
|
676
|
+
initial-value: 100%;
|
|
677
|
+
}
|
|
678
|
+
@property --tw-inset-shadow {
|
|
679
|
+
syntax: "*";
|
|
680
|
+
inherits: false;
|
|
681
|
+
initial-value: 0 0 #0000;
|
|
682
|
+
}
|
|
683
|
+
@property --tw-inset-shadow-color {
|
|
684
|
+
syntax: "*";
|
|
685
|
+
inherits: false;
|
|
686
|
+
}
|
|
687
|
+
@property --tw-inset-shadow-alpha {
|
|
688
|
+
syntax: "<percentage>";
|
|
689
|
+
inherits: false;
|
|
690
|
+
initial-value: 100%;
|
|
691
|
+
}
|
|
692
|
+
@property --tw-ring-color {
|
|
693
|
+
syntax: "*";
|
|
694
|
+
inherits: false;
|
|
695
|
+
}
|
|
696
|
+
@property --tw-ring-shadow {
|
|
697
|
+
syntax: "*";
|
|
698
|
+
inherits: false;
|
|
699
|
+
initial-value: 0 0 #0000;
|
|
700
|
+
}
|
|
701
|
+
@property --tw-inset-ring-color {
|
|
702
|
+
syntax: "*";
|
|
703
|
+
inherits: false;
|
|
704
|
+
}
|
|
705
|
+
@property --tw-inset-ring-shadow {
|
|
706
|
+
syntax: "*";
|
|
707
|
+
inherits: false;
|
|
708
|
+
initial-value: 0 0 #0000;
|
|
709
|
+
}
|
|
710
|
+
@property --tw-ring-inset {
|
|
711
|
+
syntax: "*";
|
|
712
|
+
inherits: false;
|
|
713
|
+
}
|
|
714
|
+
@property --tw-ring-offset-width {
|
|
715
|
+
syntax: "<length>";
|
|
716
|
+
inherits: false;
|
|
717
|
+
initial-value: 0px;
|
|
718
|
+
}
|
|
719
|
+
@property --tw-ring-offset-color {
|
|
720
|
+
syntax: "*";
|
|
721
|
+
inherits: false;
|
|
722
|
+
initial-value: #fff;
|
|
723
|
+
}
|
|
724
|
+
@property --tw-ring-offset-shadow {
|
|
725
|
+
syntax: "*";
|
|
726
|
+
inherits: false;
|
|
727
|
+
initial-value: 0 0 #0000;
|
|
728
|
+
}
|
|
619
729
|
@property --tw-blur {
|
|
620
730
|
syntax: "*";
|
|
621
731
|
inherits: false;
|
|
@@ -669,78 +779,49 @@
|
|
|
669
779
|
syntax: "*";
|
|
670
780
|
inherits: false;
|
|
671
781
|
}
|
|
672
|
-
@property --tw-
|
|
673
|
-
syntax: "*";
|
|
674
|
-
inherits: false;
|
|
675
|
-
}
|
|
676
|
-
@property --tw-ease {
|
|
677
|
-
syntax: "*";
|
|
678
|
-
inherits: false;
|
|
679
|
-
}
|
|
680
|
-
@property --tw-shadow {
|
|
782
|
+
@property --tw-backdrop-blur {
|
|
681
783
|
syntax: "*";
|
|
682
784
|
inherits: false;
|
|
683
|
-
initial-value: 0 0 #0000;
|
|
684
785
|
}
|
|
685
|
-
@property --tw-
|
|
786
|
+
@property --tw-backdrop-brightness {
|
|
686
787
|
syntax: "*";
|
|
687
788
|
inherits: false;
|
|
688
789
|
}
|
|
689
|
-
@property --tw-
|
|
690
|
-
syntax: "<percentage>";
|
|
691
|
-
inherits: false;
|
|
692
|
-
initial-value: 100%;
|
|
693
|
-
}
|
|
694
|
-
@property --tw-inset-shadow {
|
|
790
|
+
@property --tw-backdrop-contrast {
|
|
695
791
|
syntax: "*";
|
|
696
792
|
inherits: false;
|
|
697
|
-
initial-value: 0 0 #0000;
|
|
698
793
|
}
|
|
699
|
-
@property --tw-
|
|
794
|
+
@property --tw-backdrop-grayscale {
|
|
700
795
|
syntax: "*";
|
|
701
796
|
inherits: false;
|
|
702
797
|
}
|
|
703
|
-
@property --tw-
|
|
704
|
-
syntax: "<percentage>";
|
|
705
|
-
inherits: false;
|
|
706
|
-
initial-value: 100%;
|
|
707
|
-
}
|
|
708
|
-
@property --tw-ring-color {
|
|
798
|
+
@property --tw-backdrop-hue-rotate {
|
|
709
799
|
syntax: "*";
|
|
710
800
|
inherits: false;
|
|
711
801
|
}
|
|
712
|
-
@property --tw-
|
|
802
|
+
@property --tw-backdrop-invert {
|
|
713
803
|
syntax: "*";
|
|
714
804
|
inherits: false;
|
|
715
|
-
initial-value: 0 0 #0000;
|
|
716
805
|
}
|
|
717
|
-
@property --tw-
|
|
806
|
+
@property --tw-backdrop-opacity {
|
|
718
807
|
syntax: "*";
|
|
719
808
|
inherits: false;
|
|
720
809
|
}
|
|
721
|
-
@property --tw-
|
|
810
|
+
@property --tw-backdrop-saturate {
|
|
722
811
|
syntax: "*";
|
|
723
812
|
inherits: false;
|
|
724
|
-
initial-value: 0 0 #0000;
|
|
725
813
|
}
|
|
726
|
-
@property --tw-
|
|
814
|
+
@property --tw-backdrop-sepia {
|
|
727
815
|
syntax: "*";
|
|
728
816
|
inherits: false;
|
|
729
817
|
}
|
|
730
|
-
@property --tw-
|
|
731
|
-
syntax: "<length>";
|
|
732
|
-
inherits: false;
|
|
733
|
-
initial-value: 0px;
|
|
734
|
-
}
|
|
735
|
-
@property --tw-ring-offset-color {
|
|
818
|
+
@property --tw-duration {
|
|
736
819
|
syntax: "*";
|
|
737
820
|
inherits: false;
|
|
738
|
-
initial-value: #fff;
|
|
739
821
|
}
|
|
740
|
-
@property --tw-
|
|
822
|
+
@property --tw-ease {
|
|
741
823
|
syntax: "*";
|
|
742
824
|
inherits: false;
|
|
743
|
-
initial-value: 0 0 #0000;
|
|
744
825
|
}
|
|
745
826
|
@layer properties {
|
|
746
827
|
@supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
|
|
@@ -765,6 +846,20 @@
|
|
|
765
846
|
--tw-gradient-to-position: 100%;
|
|
766
847
|
--tw-leading: initial;
|
|
767
848
|
--tw-font-weight: initial;
|
|
849
|
+
--tw-shadow: 0 0 #0000;
|
|
850
|
+
--tw-shadow-color: initial;
|
|
851
|
+
--tw-shadow-alpha: 100%;
|
|
852
|
+
--tw-inset-shadow: 0 0 #0000;
|
|
853
|
+
--tw-inset-shadow-color: initial;
|
|
854
|
+
--tw-inset-shadow-alpha: 100%;
|
|
855
|
+
--tw-ring-color: initial;
|
|
856
|
+
--tw-ring-shadow: 0 0 #0000;
|
|
857
|
+
--tw-inset-ring-color: initial;
|
|
858
|
+
--tw-inset-ring-shadow: 0 0 #0000;
|
|
859
|
+
--tw-ring-inset: initial;
|
|
860
|
+
--tw-ring-offset-width: 0px;
|
|
861
|
+
--tw-ring-offset-color: #fff;
|
|
862
|
+
--tw-ring-offset-shadow: 0 0 #0000;
|
|
768
863
|
--tw-blur: initial;
|
|
769
864
|
--tw-brightness: initial;
|
|
770
865
|
--tw-contrast: initial;
|
|
@@ -778,22 +873,17 @@
|
|
|
778
873
|
--tw-drop-shadow-color: initial;
|
|
779
874
|
--tw-drop-shadow-alpha: 100%;
|
|
780
875
|
--tw-drop-shadow-size: initial;
|
|
876
|
+
--tw-backdrop-blur: initial;
|
|
877
|
+
--tw-backdrop-brightness: initial;
|
|
878
|
+
--tw-backdrop-contrast: initial;
|
|
879
|
+
--tw-backdrop-grayscale: initial;
|
|
880
|
+
--tw-backdrop-hue-rotate: initial;
|
|
881
|
+
--tw-backdrop-invert: initial;
|
|
882
|
+
--tw-backdrop-opacity: initial;
|
|
883
|
+
--tw-backdrop-saturate: initial;
|
|
884
|
+
--tw-backdrop-sepia: initial;
|
|
781
885
|
--tw-duration: initial;
|
|
782
886
|
--tw-ease: initial;
|
|
783
|
-
--tw-shadow: 0 0 #0000;
|
|
784
|
-
--tw-shadow-color: initial;
|
|
785
|
-
--tw-shadow-alpha: 100%;
|
|
786
|
-
--tw-inset-shadow: 0 0 #0000;
|
|
787
|
-
--tw-inset-shadow-color: initial;
|
|
788
|
-
--tw-inset-shadow-alpha: 100%;
|
|
789
|
-
--tw-ring-color: initial;
|
|
790
|
-
--tw-ring-shadow: 0 0 #0000;
|
|
791
|
-
--tw-inset-ring-color: initial;
|
|
792
|
-
--tw-inset-ring-shadow: 0 0 #0000;
|
|
793
|
-
--tw-ring-inset: initial;
|
|
794
|
-
--tw-ring-offset-width: 0px;
|
|
795
|
-
--tw-ring-offset-color: #fff;
|
|
796
|
-
--tw-ring-offset-shadow: 0 0 #0000;
|
|
797
887
|
}
|
|
798
888
|
}
|
|
799
889
|
}
|