@turtleclub/earn-widget 0.1.0-beta.1 → 0.1.1-beta.0

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
@@ -409,6 +409,9 @@
409
409
  border-color: color-mix(in oklab, var(--destructive) 50%, transparent);
410
410
  }
411
411
  }
412
+ .turtle-widget-root .border-muted {
413
+ border-color: var(--muted);
414
+ }
412
415
  .turtle-widget-root .bg-background {
413
416
  background-color: var(--background);
414
417
  }
@@ -418,6 +421,18 @@
418
421
  .turtle-widget-root .bg-muted {
419
422
  background-color: var(--muted);
420
423
  }
424
+ .turtle-widget-root .bg-muted\/10 {
425
+ background-color: var(--muted);
426
+ @supports (color: color-mix(in lab, red, red)) {
427
+ background-color: color-mix(in oklab, var(--muted) 10%, transparent);
428
+ }
429
+ }
430
+ .turtle-widget-root .bg-muted\/20 {
431
+ background-color: var(--muted);
432
+ @supports (color: color-mix(in lab, red, red)) {
433
+ background-color: color-mix(in oklab, var(--muted) 20%, transparent);
434
+ }
435
+ }
421
436
  .turtle-widget-root .bg-primary\/20 {
422
437
  background-color: var(--primary);
423
438
  @supports (color: color-mix(in lab, red, red)) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@turtleclub/earn-widget",
3
- "version": "0.1.0-beta.1",
3
+ "version": "0.1.1-beta.0",
4
4
  "description": "Configurable and self-contained Turtle Earn widget for third-party integration",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -39,8 +39,8 @@
39
39
  },
40
40
  "dependencies": {
41
41
  "@tailwindcss/postcss": "^4.1.11",
42
- "@turtleclub/hooks": "0.1.0-beta.0",
43
- "@turtleclub/ui": "0.1.0-beta.0",
42
+ "@turtleclub/hooks": "0.1.1-beta.0",
43
+ "@turtleclub/ui": "0.1.1-beta.0",
44
44
  "class-variance-authority": "^0.7.1",
45
45
  "clsx": "^2.1.1",
46
46
  "jotai": "^2.10.5",
@@ -78,5 +78,5 @@
78
78
  "publishConfig": {
79
79
  "access": "public"
80
80
  },
81
- "gitHead": "a68c40cf17ed074e3d0b7bd4f6895cc56eef1be9"
81
+ "gitHead": "0ed860858bb68dbfb87dac79a50990237f05caaa"
82
82
  }