@turtleclub/earn-widget 0.2.0-beta.3 → 0.2.0-beta.4

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/styles.css CHANGED
@@ -44,6 +44,7 @@
44
44
  --font-weight-semibold: 600;
45
45
  --font-weight-bold: 700;
46
46
  --tracking-tight: -0.025em;
47
+ --tracking-wider: 0.05em;
47
48
  --radius-md: 0.375rem;
48
49
  --radius-lg: 0.5rem;
49
50
  --radius-xl: 0.75rem;
@@ -201,20 +202,29 @@
201
202
  }
202
203
  }
203
204
  @layer utilities {
205
+ .turtle-widget-root .pointer-events-none {
206
+ pointer-events: none;
207
+ }
204
208
  .turtle-widget-root .absolute {
205
209
  position: absolute;
206
210
  }
207
211
  .turtle-widget-root .relative {
208
212
  position: relative;
209
213
  }
214
+ .turtle-widget-root .sticky {
215
+ position: sticky;
216
+ }
210
217
  .turtle-widget-root .top-1\/2 {
211
218
  top: calc(1/2 * 100%);
212
219
  }
220
+ .turtle-widget-root .right-1 {
221
+ right: calc(var(--spacing) * 1);
222
+ }
213
223
  .turtle-widget-root .right-2 {
214
224
  right: calc(var(--spacing) * 2);
215
225
  }
216
- .turtle-widget-root .right-4 {
217
- right: calc(var(--spacing) * 4);
226
+ .turtle-widget-root .bottom-0 {
227
+ bottom: calc(var(--spacing) * 0);
218
228
  }
219
229
  .turtle-widget-root .bottom-2 {
220
230
  bottom: calc(var(--spacing) * 2);
@@ -264,9 +274,6 @@
264
274
  .turtle-widget-root .mt-2 {
265
275
  margin-top: calc(var(--spacing) * 2);
266
276
  }
267
- .turtle-widget-root .mt-5 {
268
- margin-top: calc(var(--spacing) * 5);
269
- }
270
277
  .turtle-widget-root .mr-2 {
271
278
  margin-right: calc(var(--spacing) * 2);
272
279
  }
@@ -303,6 +310,9 @@
303
310
  .turtle-widget-root .h-8 {
304
311
  height: calc(var(--spacing) * 8);
305
312
  }
313
+ .turtle-widget-root .h-9 {
314
+ height: calc(var(--spacing) * 9);
315
+ }
306
316
  .turtle-widget-root .h-10 {
307
317
  height: calc(var(--spacing) * 10);
308
318
  }
@@ -360,9 +370,6 @@
360
370
  .turtle-widget-root .w-full {
361
371
  width: 100%;
362
372
  }
363
- .turtle-widget-root .max-w-\[600px\] {
364
- max-width: 600px;
365
- }
366
373
  .turtle-widget-root .max-w-lg {
367
374
  max-width: var(--container-lg);
368
375
  }
@@ -421,6 +428,9 @@
421
428
  .turtle-widget-root .justify-start {
422
429
  justify-content: flex-start;
423
430
  }
431
+ .turtle-widget-root .gap-1\.5 {
432
+ gap: calc(var(--spacing) * 1.5);
433
+ }
424
434
  .turtle-widget-root .gap-2 {
425
435
  gap: calc(var(--spacing) * 2);
426
436
  }
@@ -451,19 +461,16 @@
451
461
  margin-block-end: calc(calc(var(--spacing) * 4) * calc(1 - var(--tw-space-y-reverse)));
452
462
  }
453
463
  }
454
- .turtle-widget-root .-space-x-1 {
464
+ .turtle-widget-root .-space-x-1\.5 {
455
465
  .turtle-widget-root :where(& > :not(:last-child)) {
456
466
  --tw-space-x-reverse: 0;
457
- margin-inline-start: calc(calc(var(--spacing) * -1) * var(--tw-space-x-reverse));
458
- margin-inline-end: calc(calc(var(--spacing) * -1) * calc(1 - var(--tw-space-x-reverse)));
467
+ margin-inline-start: calc(calc(var(--spacing) * -1.5) * var(--tw-space-x-reverse));
468
+ margin-inline-end: calc(calc(var(--spacing) * -1.5) * calc(1 - var(--tw-space-x-reverse)));
459
469
  }
460
470
  }
461
471
  .turtle-widget-root .overflow-hidden {
462
472
  overflow: hidden;
463
473
  }
464
- .turtle-widget-root .overflow-x-auto {
465
- overflow-x: auto;
466
- }
467
474
  .turtle-widget-root .overflow-y-auto {
468
475
  overflow-y: auto;
469
476
  }
@@ -479,10 +486,6 @@
479
486
  .turtle-widget-root .rounded-md {
480
487
  border-radius: var(--radius-md);
481
488
  }
482
- .turtle-widget-root .\!border {
483
- border-style: var(--tw-border-style) !important;
484
- border-width: 1px !important;
485
- }
486
489
  .turtle-widget-root .border {
487
490
  border-style: var(--tw-border-style);
488
491
  border-width: 1px;
@@ -491,9 +494,8 @@
491
494
  border-style: var(--tw-border-style);
492
495
  border-width: 2px;
493
496
  }
494
- .turtle-widget-root .border-b {
495
- border-bottom-style: var(--tw-border-style);
496
- border-bottom-width: 1px;
497
+ .turtle-widget-root .bg-transparent {
498
+ background-color: transparent;
497
499
  }
498
500
  .turtle-widget-root .object-contain {
499
501
  object-fit: contain;
@@ -510,6 +512,9 @@
510
512
  .turtle-widget-root .p-2 {
511
513
  padding: calc(var(--spacing) * 2);
512
514
  }
515
+ .turtle-widget-root .p-3 {
516
+ padding: calc(var(--spacing) * 3);
517
+ }
513
518
  .turtle-widget-root .p-4 {
514
519
  padding: calc(var(--spacing) * 4);
515
520
  }
@@ -519,11 +524,14 @@
519
524
  .turtle-widget-root .px-2 {
520
525
  padding-inline: calc(var(--spacing) * 2);
521
526
  }
527
+ .turtle-widget-root .px-3 {
528
+ padding-inline: calc(var(--spacing) * 3);
529
+ }
522
530
  .turtle-widget-root .px-4 {
523
531
  padding-inline: calc(var(--spacing) * 4);
524
532
  }
525
- .turtle-widget-root .px-6 {
526
- padding-inline: calc(var(--spacing) * 6);
533
+ .turtle-widget-root .py-1\.5 {
534
+ padding-block: calc(var(--spacing) * 1.5);
527
535
  }
528
536
  .turtle-widget-root .py-2 {
529
537
  padding-block: calc(var(--spacing) * 2);
@@ -537,14 +545,23 @@
537
545
  .turtle-widget-root .py-8 {
538
546
  padding-block: calc(var(--spacing) * 8);
539
547
  }
548
+ .turtle-widget-root .pt-6 {
549
+ padding-top: calc(var(--spacing) * 6);
550
+ }
540
551
  .turtle-widget-root .pr-3 {
541
552
  padding-right: calc(var(--spacing) * 3);
542
553
  }
543
554
  .turtle-widget-root .pr-12 {
544
555
  padding-right: calc(var(--spacing) * 12);
545
556
  }
546
- .turtle-widget-root .pl-4 {
547
- padding-left: calc(var(--spacing) * 4);
557
+ .turtle-widget-root .pb-0 {
558
+ padding-bottom: calc(var(--spacing) * 0);
559
+ }
560
+ .turtle-widget-root .pb-2 {
561
+ padding-bottom: calc(var(--spacing) * 2);
562
+ }
563
+ .turtle-widget-root .pl-3 {
564
+ padding-left: calc(var(--spacing) * 3);
548
565
  }
549
566
  .turtle-widget-root .pl-14 {
550
567
  padding-left: calc(var(--spacing) * 14);
@@ -584,6 +601,9 @@
584
601
  font-size: var(--text-xs);
585
602
  line-height: var(--tw-leading, var(--text-xs--line-height));
586
603
  }
604
+ .turtle-widget-root .text-\[10px\] {
605
+ font-size: 10px;
606
+ }
587
607
  .turtle-widget-root .font-bold {
588
608
  --tw-font-weight: var(--font-weight-bold);
589
609
  font-weight: var(--font-weight-bold);
@@ -596,12 +616,16 @@
596
616
  --tw-font-weight: var(--font-weight-semibold);
597
617
  font-weight: var(--font-weight-semibold);
598
618
  }
599
- .turtle-widget-root .whitespace-nowrap {
600
- white-space: nowrap;
619
+ .turtle-widget-root .tracking-wider {
620
+ --tw-tracking: var(--tracking-wider);
621
+ letter-spacing: var(--tracking-wider);
601
622
  }
602
623
  .turtle-widget-root .capitalize {
603
624
  text-transform: capitalize;
604
625
  }
626
+ .turtle-widget-root .uppercase {
627
+ text-transform: uppercase;
628
+ }
605
629
  .turtle-widget-root .antialiased {
606
630
  -webkit-font-smoothing: antialiased;
607
631
  -moz-osx-font-smoothing: grayscale;
@@ -654,12 +678,9 @@
654
678
  --tw-ease: linear;
655
679
  transition-timing-function: linear;
656
680
  }
657
- .turtle-widget-root .hover\:shadow-sm {
658
- .turtle-widget-root &:hover {
659
- @media (hover: hover) {
660
- --tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 1px 2px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
661
- box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
662
- }
681
+ .turtle-widget-root .focus\:border-transparent {
682
+ .turtle-widget-root &:focus {
683
+ border-color: transparent;
663
684
  }
664
685
  }
665
686
  .turtle-widget-root .focus\:ring-0 {
@@ -1120,10 +1141,6 @@
1120
1141
  width: calc(var(--spacing)*9);
1121
1142
  height: calc(var(--spacing)*9);
1122
1143
  }
1123
- .turtle-widget-root .size-full {
1124
- width: 100%;
1125
- height: 100%;
1126
- }
1127
1144
  .turtle-widget-root .h-2 {
1128
1145
  height: calc(var(--spacing)*2);
1129
1146
  }
@@ -1133,6 +1150,9 @@
1133
1150
  .turtle-widget-root .h-3 {
1134
1151
  height: calc(var(--spacing)*3);
1135
1152
  }
1153
+ .turtle-widget-root .h-3\.5 {
1154
+ height: calc(var(--spacing)*3.5);
1155
+ }
1136
1156
  .turtle-widget-root .h-4 {
1137
1157
  height: calc(var(--spacing)*4);
1138
1158
  }
@@ -1190,6 +1210,9 @@
1190
1210
  .turtle-widget-root .w-3 {
1191
1211
  width: calc(var(--spacing)*3);
1192
1212
  }
1213
+ .turtle-widget-root .w-3\.5 {
1214
+ width: calc(var(--spacing)*3.5);
1215
+ }
1193
1216
  .turtle-widget-root .w-4 {
1194
1217
  width: calc(var(--spacing)*4);
1195
1218
  }
@@ -1238,6 +1261,9 @@
1238
1261
  .turtle-widget-root .min-w-\[8rem\] {
1239
1262
  min-width: 8rem;
1240
1263
  }
1264
+ .turtle-widget-root .min-w-\[75px\] {
1265
+ min-width: 75px;
1266
+ }
1241
1267
  .turtle-widget-root .min-w-\[80px\] {
1242
1268
  min-width: 80px;
1243
1269
  }
@@ -1338,8 +1364,8 @@
1338
1364
  .turtle-widget-root .gap-3 {
1339
1365
  gap: calc(var(--spacing)*3);
1340
1366
  }
1341
- .turtle-widget-root .gap-12 {
1342
- gap: calc(var(--spacing)*12);
1367
+ .turtle-widget-root .gap-4 {
1368
+ gap: calc(var(--spacing)*4);
1343
1369
  }
1344
1370
  .turtle-widget-root :where(.space-y-1>:not(:last-child)) {
1345
1371
  --tw-space-y-reverse: 0;
@@ -1410,7 +1436,7 @@
1410
1436
  .turtle-widget-root .rounded-xl {
1411
1437
  border-radius: calc(var(--radius) + 4px);
1412
1438
  }
1413
- .turtle-widget-root .border {
1439
+ .turtle-widget-root .border, .turtle-widget-root .border-1 {
1414
1440
  border-style: var(--tw-border-style);
1415
1441
  border-width: 1px;
1416
1442
  }
@@ -1433,9 +1459,23 @@
1433
1459
  .turtle-widget-root .border-border {
1434
1460
  border-color: var(--border);
1435
1461
  }
1462
+ .turtle-widget-root .border-foreground\/30 {
1463
+ border-color: var(--foreground);
1464
+ }
1465
+ @supports (color:color-mix(in lab,red,red)) {
1466
+ .turtle-widget-root .border-foreground\/30 {
1467
+ border-color: var(--foreground);
1468
+ @supports (color: color-mix(in lab, red, red)) {
1469
+ border-color: color-mix(in oklab,var(--foreground)30%,transparent);
1470
+ }
1471
+ }
1472
+ }
1436
1473
  .turtle-widget-root .border-input {
1437
1474
  border-color: var(--input);
1438
1475
  }
1476
+ .turtle-widget-root .border-muted {
1477
+ border-color: var(--muted);
1478
+ }
1439
1479
  .turtle-widget-root .border-muted-foreground\/30 {
1440
1480
  border-color: var(--muted-foreground);
1441
1481
  }
@@ -1468,9 +1508,6 @@
1468
1508
  .turtle-widget-root .bg-border {
1469
1509
  background-color: var(--border);
1470
1510
  }
1471
- .turtle-widget-root .bg-card {
1472
- background-color: var(--card);
1473
- }
1474
1511
  .turtle-widget-root .bg-muted {
1475
1512
  background-color: var(--muted);
1476
1513
  }
@@ -1568,7 +1605,7 @@
1568
1605
  .turtle-widget-root .p-8 {
1569
1606
  padding: calc(var(--spacing)*8);
1570
1607
  }
1571
- .turtle-widget-root .p-px {
1608
+ .turtle-widget-root .p-\[1px\], .turtle-widget-root .p-px {
1572
1609
  padding: 1px;
1573
1610
  }
1574
1611
  .turtle-widget-root .px-1\.5 {
@@ -1589,6 +1626,9 @@
1589
1626
  .turtle-widget-root .px-6 {
1590
1627
  padding-inline: calc(var(--spacing)*6);
1591
1628
  }
1629
+ .turtle-widget-root .py-0\.5 {
1630
+ padding-block: calc(var(--spacing)*.5);
1631
+ }
1592
1632
  .turtle-widget-root .py-1 {
1593
1633
  padding-block: calc(var(--spacing)*1);
1594
1634
  }
@@ -1604,6 +1644,9 @@
1604
1644
  .turtle-widget-root .py-4 {
1605
1645
  padding-block: calc(var(--spacing)*4);
1606
1646
  }
1647
+ .turtle-widget-root .py-8 {
1648
+ padding-block: calc(var(--spacing)*8);
1649
+ }
1607
1650
  .turtle-widget-root .pt-0 {
1608
1651
  padding-top: calc(var(--spacing)*0);
1609
1652
  }
@@ -1613,8 +1656,8 @@
1613
1656
  .turtle-widget-root .pr-8 {
1614
1657
  padding-right: calc(var(--spacing)*8);
1615
1658
  }
1616
- .turtle-widget-root .pb-4 {
1617
- padding-bottom: calc(var(--spacing)*4);
1659
+ .turtle-widget-root .pb-3 {
1660
+ padding-bottom: calc(var(--spacing)*3);
1618
1661
  }
1619
1662
  .turtle-widget-root .pl-2 {
1620
1663
  padding-left: calc(var(--spacing)*2);
@@ -1901,42 +1944,65 @@
1901
1944
  content: var(--tw-content);
1902
1945
  inset: calc(var(--spacing)*0);
1903
1946
  }
1904
- .turtle-widget-root .before\:-z-10:before {
1905
- content: var(--tw-content);
1906
- z-index: -10;
1907
- }
1908
1947
  .turtle-widget-root .before\:rounded-\[inherit\]:before {
1909
1948
  content: var(--tw-content);
1910
1949
  border-radius: inherit;
1911
1950
  }
1912
- .turtle-widget-root .before\:bg-gradient-to-b:before {
1951
+ .turtle-widget-root .before\:bg-gradient-to-br:before {
1913
1952
  content: var(--tw-content);
1914
- --tw-gradient-position: to bottom in oklab;
1953
+ --tw-gradient-position: to bottom right in oklab;
1915
1954
  background-image: linear-gradient(var(--tw-gradient-stops));
1916
1955
  }
1917
- .turtle-widget-root .before\:from-\[\#F9F9F9\]:before {
1956
+ .turtle-widget-root .before\:from-\[\#73F36C\]\/60:before {
1918
1957
  content: var(--tw-content);
1919
- --tw-gradient-from: #f9f9f9;
1958
+ --tw-gradient-from: oklab(86.2322% -.16651 .127341/.6);
1920
1959
  --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));
1921
1960
  }
1922
- .turtle-widget-root .before\:from-40\%:before {
1961
+ .turtle-widget-root .before\:from-white\/40:before {
1923
1962
  content: var(--tw-content);
1924
- --tw-gradient-from-position: 40%;
1963
+ --tw-gradient-from: #fff6;
1964
+ }
1965
+ @supports (color:color-mix(in lab,red,red)) {
1966
+ .turtle-widget-root .before\:from-white\/40:before {
1967
+ --tw-gradient-from: color-mix(in srgb,#fff40%,transparent);
1968
+ @supports (color: color-mix(in lab, red, red)) {
1969
+ --tw-gradient-from: color-mix(in oklab,var(--color-white)40%,transparent);
1970
+ }
1971
+ }
1972
+ }
1973
+ .turtle-widget-root .before\:from-white\/40:before {
1974
+ --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));
1925
1975
  }
1926
- .turtle-widget-root .before\:via-white:before {
1976
+ .turtle-widget-root .before\:via-transparent:before {
1927
1977
  content: var(--tw-content);
1928
- --tw-gradient-via: var(--color-white);
1978
+ --tw-gradient-via: transparent;
1929
1979
  --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);
1930
1980
  --tw-gradient-stops: var(--tw-gradient-via-stops);
1931
1981
  }
1932
- .turtle-widget-root .before\:to-white:before {
1982
+ .turtle-widget-root .before\:to-\[\#73F36C\]\/20:before {
1933
1983
  content: var(--tw-content);
1934
- --tw-gradient-to: var(--color-white);
1984
+ --tw-gradient-to: oklab(86.2322% -.16651 .127341/.2);
1935
1985
  --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));
1936
1986
  }
1937
- .turtle-widget-root .before\:to-50\%:before {
1987
+ .turtle-widget-root .before\:to-white\/10:before {
1938
1988
  content: var(--tw-content);
1939
- --tw-gradient-to-position: 50%;
1989
+ --tw-gradient-to: #ffffff1a;
1990
+ }
1991
+ @supports (color:color-mix(in lab,red,red)) {
1992
+ .turtle-widget-root .before\:to-white\/10:before {
1993
+ --tw-gradient-to: color-mix(in srgb,#fff10%,transparent);
1994
+ @supports (color: color-mix(in lab, red, red)) {
1995
+ --tw-gradient-to: color-mix(in oklab,var(--color-white)10%,transparent);
1996
+ }
1997
+ }
1998
+ }
1999
+ .turtle-widget-root .before\:to-white\/10:before {
2000
+ --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));
2001
+ }
2002
+ .turtle-widget-root .before\:\[mask-composite\:exclude\]:before {
2003
+ content: var(--tw-content);
2004
+ -webkit-mask-composite: xor;
2005
+ mask-composite: exclude;
1940
2006
  }
1941
2007
  .turtle-widget-root .before\:p-px:before {
1942
2008
  content: var(--tw-content);
@@ -1946,6 +2012,11 @@
1946
2012
  --tw-content: "";
1947
2013
  content: var(--tw-content);
1948
2014
  }
2015
+ .turtle-widget-root .before\:\[mask\:linear-gradient\(\#fff_0_0\)_content-box\,linear-gradient\(\#fff_0_0\)\]:before {
2016
+ content: var(--tw-content);
2017
+ -webkit-mask: linear-gradient(#fff 0 0) content-box,linear-gradient(#fff 0 0);
2018
+ mask: linear-gradient(#fff 0 0) content-box,linear-gradient(#fff 0 0);
2019
+ }
1949
2020
  .turtle-widget-root .first\:rounded-l-md:first-child {
1950
2021
  border-top-left-radius: calc(var(--radius) - 2px);
1951
2022
  border-bottom-left-radius: calc(var(--radius) - 2px);
@@ -2201,9 +2272,19 @@
2201
2272
  .turtle-widget-root .data-\[size\=default\]\:h-9[data-size=default] {
2202
2273
  height: calc(var(--spacing)*9);
2203
2274
  }
2204
- .turtle-widget-root .data-\[size\=sm\]\:h-8[data-size=sm] {
2275
+ .turtle-widget-root .data-\[size\=sm\]\:h-8[data-size=sm], .turtle-widget-root .data-\[size\=xs\]\:h-8[data-size=xs] {
2205
2276
  height: calc(var(--spacing)*8);
2206
2277
  }
2278
+ .turtle-widget-root .data-\[size\=xs\]\:px-4[data-size=xs] {
2279
+ padding-inline: calc(var(--spacing)*4);
2280
+ }
2281
+ .turtle-widget-root .data-\[size\=xs\]\:py-2[data-size=xs] {
2282
+ padding-block: calc(var(--spacing)*2);
2283
+ }
2284
+ .turtle-widget-root .data-\[size\=xs\]\:text-xs[data-size=xs] {
2285
+ font-size: var(--text-xs);
2286
+ line-height: var(--tw-leading,var(--text-xs--line-height));
2287
+ }
2207
2288
  .turtle-widget-root :is(.\*\:data-\[slot\=select-value\]\:line-clamp-1>*)[data-slot=select-value] {
2208
2289
  -webkit-line-clamp: 1;
2209
2290
  -webkit-box-orient: vertical;
@@ -2269,6 +2350,36 @@
2269
2350
  border-left-style: var(--tw-border-style);
2270
2351
  border-left-width: 1px;
2271
2352
  }
2353
+ .turtle-widget-root .dark\:before\:from-white\/40:is(.dark *):before {
2354
+ content: var(--tw-content);
2355
+ --tw-gradient-from: #fff6;
2356
+ }
2357
+ @supports (color:color-mix(in lab,red,red)) {
2358
+ .turtle-widget-root .dark\:before\:from-white\/40:is(.dark *):before {
2359
+ --tw-gradient-from: color-mix(in srgb,#fff40%,transparent);
2360
+ @supports (color: color-mix(in lab, red, red)) {
2361
+ --tw-gradient-from: color-mix(in oklab,var(--color-white)40%,transparent);
2362
+ }
2363
+ }
2364
+ }
2365
+ .turtle-widget-root .dark\:before\:from-white\/40:is(.dark *):before {
2366
+ --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));
2367
+ }
2368
+ .turtle-widget-root .dark\:before\:to-white\/10:is(.dark *):before {
2369
+ content: var(--tw-content);
2370
+ --tw-gradient-to: #ffffff1a;
2371
+ }
2372
+ @supports (color:color-mix(in lab,red,red)) {
2373
+ .turtle-widget-root .dark\:before\:to-white\/10:is(.dark *):before {
2374
+ --tw-gradient-to: color-mix(in srgb,#fff10%,transparent);
2375
+ @supports (color: color-mix(in lab, red, red)) {
2376
+ --tw-gradient-to: color-mix(in oklab,var(--color-white)10%,transparent);
2377
+ }
2378
+ }
2379
+ }
2380
+ .turtle-widget-root .dark\:before\:to-white\/10:is(.dark *):before {
2381
+ --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));
2382
+ }
2272
2383
  .turtle-widget-root .dark\:aria-invalid\:ring-destructive\/40:is(.dark *)[aria-invalid=true] {
2273
2384
  --tw-ring-color: var(--destructive);
2274
2385
  }
@@ -2631,10 +2742,6 @@
2631
2742
  syntax: "*";
2632
2743
  inherits: false;
2633
2744
  }
2634
- @property --tw-tracking {
2635
- syntax: "*";
2636
- inherits: false;
2637
- }
2638
2745
  @property --tw-outline-style {
2639
2746
  syntax: "*";
2640
2747
  inherits: false;
@@ -2745,6 +2852,10 @@
2745
2852
  syntax: "*";
2746
2853
  inherits: false;
2747
2854
  }
2855
+ @property --tw-tracking {
2856
+ syntax: "*";
2857
+ inherits: false;
2858
+ }
2748
2859
  @property --tw-shadow {
2749
2860
  syntax: "*";
2750
2861
  inherits: false;
@@ -2896,6 +3007,7 @@
2896
3007
  --tw-space-x-reverse: 0;
2897
3008
  --tw-border-style: solid;
2898
3009
  --tw-font-weight: initial;
3010
+ --tw-tracking: initial;
2899
3011
  --tw-shadow: 0 0 #0000;
2900
3012
  --tw-shadow-color: initial;
2901
3013
  --tw-shadow-alpha: 100%;
@@ -2950,7 +3062,6 @@
2950
3062
  --tw-gradient-via-position: 50%;
2951
3063
  --tw-gradient-to-position: 100%;
2952
3064
  --tw-leading: initial;
2953
- --tw-tracking: initial;
2954
3065
  --tw-outline-style: solid;
2955
3066
  --tw-content: "";
2956
3067
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@turtleclub/earn-widget",
3
- "version": "0.2.0-beta.3",
3
+ "version": "0.2.0-beta.4",
4
4
  "description": "Configurable and self-contained Turtle Earn widget for third-party integration",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -42,7 +42,7 @@
42
42
  "dependencies": {
43
43
  "@tailwindcss/postcss": "^4.1.11",
44
44
  "@turtleclub/hooks": "0.2.0-beta.0",
45
- "@turtleclub/ui": "0.2.0-beta.0",
45
+ "@turtleclub/ui": "0.2.0-beta.1",
46
46
  "class-variance-authority": "^0.7.1",
47
47
  "clsx": "^2.1.1",
48
48
  "jotai": "^2.10.5",
@@ -80,5 +80,5 @@
80
80
  "publishConfig": {
81
81
  "access": "public"
82
82
  },
83
- "gitHead": "c6edeb318f069eead35c3ce510be2675be643c43"
83
+ "gitHead": "2f81fd2cc2d44b78067bd8bf719ed61a172e4884"
84
84
  }