@turtleclub/earn-widget 0.3.0-beta.29 → 0.3.0-beta.30

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 +40 -3
  2. package/package.json +3 -3
package/dist/styles.css CHANGED
@@ -803,6 +803,7 @@
803
803
  --color-primary-alpha-50: var(--color-brand-green-alpha-50);
804
804
  --border-gradient-white: linear-gradient(165deg,var(--color-neutral-alpha-50)0%,var(--color-neutral-alpha-5)20%,var(--color-neutral-alpha-2)75%,var(--color-neutral-alpha-20)100%)border-box;
805
805
  --border-gradient-primary: linear-gradient(165deg,var(--color-primary-alpha-50)0%,var(--color-primary-alpha-20)20%,var(--color-primary-alpha-10)75%,var(--color-primary-alpha-30)100%)border-box;
806
+ --border-gradient-accent: linear-gradient(to bottom,var(--color-primary-alpha-50)0%,var(--color-primary-alpha-30)30%,var(--color-primary-alpha-20)70%,var(--color-primary-alpha-30)100%)border-box;
806
807
  }
807
808
  }
808
809
  @layer base {
@@ -1081,6 +1082,42 @@
1081
1082
  }
1082
1083
  }
1083
1084
  @layer utilities {
1085
+ .turtle-widget-root .border-gradient-accent {
1086
+ border-style: var(--tw-border-style);
1087
+ border-width: 1px;
1088
+ border-color: #0000;
1089
+ position: relative;
1090
+ }
1091
+ .turtle-widget-root .border-gradient-accent:before {
1092
+ content: "";
1093
+ pointer-events: none;
1094
+ border-style: var(--tw-border-style);
1095
+ border-radius: inherit;
1096
+ background: var(--border-gradient-accent);
1097
+ border-width: 1px;
1098
+ border-color: #0000;
1099
+ position: absolute;
1100
+ top: -1px;
1101
+ right: -1px;
1102
+ bottom: -1px;
1103
+ left: -1px;
1104
+ -webkit-mask-image: linear-gradient(#fff 0 0),linear-gradient(#fff 0 0);
1105
+ mask-image: linear-gradient(#fff 0,#fff 0),linear-gradient(#fff 0,#fff 0);
1106
+ -webkit-mask-position: 0 0,0 0;
1107
+ mask-position: 0 0,0 0;
1108
+ -webkit-mask-size: auto,auto;
1109
+ mask-size: auto,auto;
1110
+ -webkit-mask-repeat: repeat,repeat;
1111
+ mask-repeat: repeat,repeat;
1112
+ -webkit-mask-clip: padding-box,border-box;
1113
+ mask-clip: padding-box,border-box;
1114
+ -webkit-mask-origin: padding-box,border-box;
1115
+ mask-origin: padding-box,border-box;
1116
+ -webkit-mask-composite: xor;
1117
+ mask-composite: exclude;
1118
+ -webkit-mask-source-type: auto,auto;
1119
+ mask-mode: match-source,match-source;
1120
+ }
1084
1121
  .turtle-widget-root .border-gradient-primary {
1085
1122
  border-style: var(--tw-border-style);
1086
1123
  border-width: 1px;
@@ -2987,18 +3024,18 @@
2987
3024
  outline-style: var(--tw-outline-style);
2988
3025
  outline-width: 1px;
2989
3026
  }
2990
- .turtle-widget-root .active\:border-gradient-primary:active {
3027
+ .turtle-widget-root .active\:border-gradient-accent:active {
2991
3028
  border-style: var(--tw-border-style);
2992
3029
  border-width: 1px;
2993
3030
  border-color: #0000;
2994
3031
  position: relative;
2995
3032
  }
2996
- .turtle-widget-root .active\:border-gradient-primary:active:before {
3033
+ .turtle-widget-root .active\:border-gradient-accent:active:before {
2997
3034
  content: "";
2998
3035
  pointer-events: none;
2999
3036
  border-style: var(--tw-border-style);
3000
3037
  border-radius: inherit;
3001
- background: var(--border-gradient-primary);
3038
+ background: var(--border-gradient-accent);
3002
3039
  border-width: 1px;
3003
3040
  border-color: #0000;
3004
3041
  position: absolute;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@turtleclub/earn-widget",
3
- "version": "0.3.0-beta.29",
3
+ "version": "0.3.0-beta.30",
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.4",
44
- "@turtleclub/ui": "0.3.0-beta.23",
44
+ "@turtleclub/ui": "0.3.0-beta.24",
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": "e0b62a2744c77878be11568863ada4cbb18af020"
82
+ "gitHead": "24b41292660679cbe9ff236787f327b24c20d3a4"
83
83
  }