@turtleclub/earn-widget 0.3.0-beta.25 → 0.3.0-beta.27

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.
Files changed (2) hide show
  1. package/dist/styles.css +12 -2
  2. package/package.json +3 -3
package/dist/styles.css CHANGED
@@ -782,6 +782,7 @@
782
782
  --default-transition-timing-function: cubic-bezier(.4,0,.2,1);
783
783
  --default-font-family: var(--font-sans);
784
784
  --default-mono-font-family: var(--font-mono);
785
+ --radius-full: calc(infinity*1px);
785
786
  --radius-turtle: var(--radius-turtle);
786
787
  --radius-info-card: var(--radius-info-card);
787
788
  --color-background: var(--background);
@@ -1067,14 +1068,18 @@
1067
1068
  }
1068
1069
  }
1069
1070
  .turtle-widget-root .managed-table tbody tr>td:first-child {
1070
- padding-left: calc(var(--spacing)*4);
1071
1071
  border-top-left-radius: 3.40282e38px;
1072
1072
  border-bottom-left-radius: 3.40282e38px;
1073
+ border-top-left-radius: var(--radius-full);
1074
+ border-bottom-left-radius: var(--radius-full);
1075
+ padding-left: calc(var(--spacing)*4);
1073
1076
  }
1074
1077
  .turtle-widget-root .managed-table tbody tr>td:last-child {
1075
- padding-right: calc(var(--spacing)*4);
1076
1078
  border-top-right-radius: 3.40282e38px;
1077
1079
  border-bottom-right-radius: 3.40282e38px;
1080
+ border-top-right-radius: var(--radius-full);
1081
+ border-bottom-right-radius: var(--radius-full);
1082
+ padding-right: calc(var(--spacing)*4);
1078
1083
  }
1079
1084
  .turtle-widget-root .managed-table tbody tr:hover>td {
1080
1085
  background-color: var(--color-muted);
@@ -1790,6 +1795,7 @@
1790
1795
  }
1791
1796
  .turtle-widget-root .rounded-full {
1792
1797
  border-radius: 3.40282e38px;
1798
+ border-radius: var(--radius-full);
1793
1799
  }
1794
1800
  .turtle-widget-root .rounded-info-card {
1795
1801
  border-radius: var(--radius-info-card);
@@ -2761,6 +2767,8 @@
2761
2767
  .turtle-widget-root .first\:rounded-l-full:first-child {
2762
2768
  border-top-left-radius: 3.40282e38px;
2763
2769
  border-bottom-left-radius: 3.40282e38px;
2770
+ border-top-left-radius: var(--radius-full);
2771
+ border-bottom-left-radius: var(--radius-full);
2764
2772
  }
2765
2773
  .turtle-widget-root .first\:rounded-l-md:first-child {
2766
2774
  border-top-left-radius: var(--radius-md);
@@ -2772,6 +2780,8 @@
2772
2780
  .turtle-widget-root .last\:rounded-r-full:last-child {
2773
2781
  border-top-right-radius: 3.40282e38px;
2774
2782
  border-bottom-right-radius: 3.40282e38px;
2783
+ border-top-right-radius: var(--radius-full);
2784
+ border-bottom-right-radius: var(--radius-full);
2775
2785
  }
2776
2786
  .turtle-widget-root .last\:rounded-r-md:last-child {
2777
2787
  border-top-right-radius: var(--radius-md);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@turtleclub/earn-widget",
3
- "version": "0.3.0-beta.25",
3
+ "version": "0.3.0-beta.27",
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.2.1-beta.3",
44
- "@turtleclub/ui": "0.3.0-beta.19",
44
+ "@turtleclub/ui": "0.3.0-beta.21",
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": "b8f49dc83bd073af3083ee41976c3041e169845b"
82
+ "gitHead": "50ea664da38f895758d6b2f3267f56a286cd94f1"
83
83
  }