@turtleclub/earn-widget 0.3.0-beta.47 → 0.3.0-beta.48
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/index.cjs +2 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/styles.css +16 -10
- package/package.json +3 -3
package/dist/styles.css
CHANGED
|
@@ -1734,9 +1734,17 @@
|
|
|
1734
1734
|
.turtle-widget-root .text-current {
|
|
1735
1735
|
color: currentColor;
|
|
1736
1736
|
}
|
|
1737
|
-
.turtle-widget-root .text-destructive {
|
|
1737
|
+
.turtle-widget-root .text-destructive, .turtle-widget-root .text-destructive\/50 {
|
|
1738
1738
|
color: var(--color-destructive);
|
|
1739
1739
|
}
|
|
1740
|
+
@supports (color:color-mix(in lab,red,red)) {
|
|
1741
|
+
.turtle-widget-root .text-destructive\/50 {
|
|
1742
|
+
color: var(--color-destructive);
|
|
1743
|
+
@supports (color: color-mix(in lab, red, red)) {
|
|
1744
|
+
color: color-mix(in oklab,var(--color-destructive)50%,transparent);
|
|
1745
|
+
}
|
|
1746
|
+
}
|
|
1747
|
+
}
|
|
1740
1748
|
.turtle-widget-root .text-foreground {
|
|
1741
1749
|
color: var(--color-foreground);
|
|
1742
1750
|
}
|
|
@@ -4134,12 +4142,6 @@
|
|
|
4134
4142
|
.turtle-widget-root .bottom-0 {
|
|
4135
4143
|
bottom: calc(var(--spacing) * 0);
|
|
4136
4144
|
}
|
|
4137
|
-
.turtle-widget-root .bottom-3 {
|
|
4138
|
-
bottom: calc(var(--spacing) * 3);
|
|
4139
|
-
}
|
|
4140
|
-
.turtle-widget-root .left-4 {
|
|
4141
|
-
left: calc(var(--spacing) * 4);
|
|
4142
|
-
}
|
|
4143
4145
|
.turtle-widget-root .container {
|
|
4144
4146
|
width: 100%;
|
|
4145
4147
|
@media (width >= 40rem) {
|
|
@@ -4161,6 +4163,9 @@
|
|
|
4161
4163
|
.turtle-widget-root .my-2 {
|
|
4162
4164
|
margin-block: calc(var(--spacing) * 2);
|
|
4163
4165
|
}
|
|
4166
|
+
.turtle-widget-root .-mt-8 {
|
|
4167
|
+
margin-top: calc(var(--spacing) * -8);
|
|
4168
|
+
}
|
|
4164
4169
|
.turtle-widget-root .mt-1 {
|
|
4165
4170
|
margin-top: calc(var(--spacing) * 1);
|
|
4166
4171
|
}
|
|
@@ -4372,6 +4377,10 @@
|
|
|
4372
4377
|
border-style: var(--tw-border-style);
|
|
4373
4378
|
border-width: 1px;
|
|
4374
4379
|
}
|
|
4380
|
+
.turtle-widget-root .border-none {
|
|
4381
|
+
--tw-border-style: none;
|
|
4382
|
+
border-style: none;
|
|
4383
|
+
}
|
|
4375
4384
|
.turtle-widget-root .border-border {
|
|
4376
4385
|
border-color: var(--color-border);
|
|
4377
4386
|
}
|
|
@@ -4492,9 +4501,6 @@
|
|
|
4492
4501
|
--tw-font-weight: var(--font-weight-semibold);
|
|
4493
4502
|
font-weight: var(--font-weight-semibold);
|
|
4494
4503
|
}
|
|
4495
|
-
.turtle-widget-root .text-destructive {
|
|
4496
|
-
color: var(--color-destructive);
|
|
4497
|
-
}
|
|
4498
4504
|
.turtle-widget-root .text-foreground {
|
|
4499
4505
|
color: var(--color-foreground);
|
|
4500
4506
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@turtleclub/earn-widget",
|
|
3
|
-
"version": "0.3.0-beta.
|
|
3
|
+
"version": "0.3.0-beta.48",
|
|
4
4
|
"description": "Configurable and self-contained Turtle Earn widget for third-party integration",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"dependencies": {
|
|
42
42
|
"@tailwindcss/postcss": "^4.1.11",
|
|
43
43
|
"@turtleclub/hooks": "0.3.0-beta.0",
|
|
44
|
-
"@turtleclub/ui": "0.3.0-beta.
|
|
44
|
+
"@turtleclub/ui": "0.3.0-beta.42",
|
|
45
45
|
"class-variance-authority": "^0.7.1",
|
|
46
46
|
"clsx": "^2.1.1",
|
|
47
47
|
"jotai": "^2.10.5",
|
|
@@ -79,5 +79,5 @@
|
|
|
79
79
|
"publishConfig": {
|
|
80
80
|
"access": "public"
|
|
81
81
|
},
|
|
82
|
-
"gitHead": "
|
|
82
|
+
"gitHead": "e062e3946837a602651ebb3aa207ff3893c3a9a8"
|
|
83
83
|
}
|