@turtleclub/earn-widget 0.1.0-beta.0 → 0.1.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
@@ -8,7 +8,6 @@
8
8
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
9
9
  "Courier New", monospace;
10
10
  --spacing: 0.25rem;
11
- --container-md: 28rem;
12
11
  --text-xs: 0.75rem;
13
12
  --text-xs--line-height: calc(1 / 0.75);
14
13
  --text-sm: 0.875rem;
@@ -306,11 +305,8 @@
306
305
  .turtle-widget-root .w-full {
307
306
  width: 100%;
308
307
  }
309
- .turtle-widget-root .max-w-\[450px\] {
310
- max-width: 450px;
311
- }
312
- .turtle-widget-root .max-w-md {
313
- max-width: var(--container-md);
308
+ .turtle-widget-root .max-w-\[600px\] {
309
+ max-width: 600px;
314
310
  }
315
311
  .turtle-widget-root .flex-1 {
316
312
  flex: 1;
@@ -337,6 +333,9 @@
337
333
  .turtle-widget-root .items-start {
338
334
  align-items: flex-start;
339
335
  }
336
+ .turtle-widget-root .items-stretch {
337
+ align-items: stretch;
338
+ }
340
339
  .turtle-widget-root .justify-between {
341
340
  justify-content: space-between;
342
341
  }
@@ -410,6 +409,9 @@
410
409
  border-color: color-mix(in oklab, var(--destructive) 50%, transparent);
411
410
  }
412
411
  }
412
+ .turtle-widget-root .border-muted {
413
+ border-color: var(--muted);
414
+ }
413
415
  .turtle-widget-root .bg-background {
414
416
  background-color: var(--background);
415
417
  }
@@ -419,6 +421,18 @@
419
421
  .turtle-widget-root .bg-muted {
420
422
  background-color: var(--muted);
421
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
+ }
422
436
  .turtle-widget-root .bg-primary\/20 {
423
437
  background-color: var(--primary);
424
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.0",
3
+ "version": "0.1.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.0",
43
+ "@turtleclub/ui": "0.1.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": "32e8c829af48f2dd8998e2552267ebace614cd63"
81
+ "gitHead": "b72f5b367a04a6022701c8515eea79360219331f"
82
82
  }