@liberfi.io/ui 0.1.6 → 0.1.8
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.d.mts +31 -2
- package/dist/index.d.ts +31 -2
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -2
- package/dist/index.mjs.map +1 -1
- package/dist/tailwind/tailwind.css +26 -1
- package/package.json +7 -3
|
@@ -109,7 +109,7 @@
|
|
|
109
109
|
--color-focus: hsl(var(--heroui-focus));
|
|
110
110
|
--color-overlay: hsl(var(--heroui-overlay));
|
|
111
111
|
--color-divider: hsl(var(--heroui-divider));
|
|
112
|
-
--color-border: hsl(var(--heroui-divider) / 0.
|
|
112
|
+
--color-border: hsl(var(--heroui-divider) / 0.8);
|
|
113
113
|
|
|
114
114
|
/* misc */
|
|
115
115
|
--opacity-disabled: var(--heroui-disabled-opacity);
|
|
@@ -117,6 +117,22 @@
|
|
|
117
117
|
--radius-sm: var(--heroui-radius-small);
|
|
118
118
|
--radius-md: var(--heroui-radius-medium);
|
|
119
119
|
--radius-lg: var(--heroui-radius-large);
|
|
120
|
+
|
|
121
|
+
/* animations */
|
|
122
|
+
--animate-modal-shrink: modal-shrink 375ms cubic-bezier(0.32, 0.72, 0.35, 1);
|
|
123
|
+
|
|
124
|
+
@keyframes modal-shrink {
|
|
125
|
+
0% {
|
|
126
|
+
transform: scale(1);
|
|
127
|
+
filter: blur(0px);
|
|
128
|
+
opacity: 1;
|
|
129
|
+
}
|
|
130
|
+
100% {
|
|
131
|
+
transform: scale(0.965);
|
|
132
|
+
filter: blur(3px);
|
|
133
|
+
opacity: 0.35;
|
|
134
|
+
}
|
|
135
|
+
}
|
|
120
136
|
}
|
|
121
137
|
|
|
122
138
|
@layer base {
|
|
@@ -188,6 +204,15 @@
|
|
|
188
204
|
--color-orca: 47, 99%, 68%;
|
|
189
205
|
}
|
|
190
206
|
|
|
207
|
+
.no-scrollbar {
|
|
208
|
+
-ms-overflow-style: none;
|
|
209
|
+
scrollbar-width: none;
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
.no-scrollbar::-webkit-scrollbar {
|
|
213
|
+
display: none;
|
|
214
|
+
}
|
|
215
|
+
|
|
191
216
|
.bg-pump {
|
|
192
217
|
background: hsl(var(--color-pump));
|
|
193
218
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@liberfi.io/ui",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.8",
|
|
4
4
|
"description": "Base UI library for Liberfi React SDK",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -28,17 +28,21 @@
|
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
30
|
"@heroui/react": "^2.8.4",
|
|
31
|
+
"@hookform/resolvers": "^5.2.2",
|
|
31
32
|
"clsx": "^2.1.1",
|
|
32
33
|
"copy-to-clipboard": "^3.3.3",
|
|
33
34
|
"framer-motion": "^12.23.13",
|
|
35
|
+
"jotai": "^2.15.1",
|
|
34
36
|
"react": "^19.1.1",
|
|
35
37
|
"react-dom": "^19.1.1",
|
|
38
|
+
"react-hook-form": "^7.65.0",
|
|
36
39
|
"react-hot-toast": "^2.6.0",
|
|
37
40
|
"react-virtuoso": "^4.14.1",
|
|
38
41
|
"tailwind-variants": "^3.1.1",
|
|
39
42
|
"tailwindcss": "^4.1.13",
|
|
40
|
-
"
|
|
41
|
-
"@liberfi.io/utils": "0.1.
|
|
43
|
+
"zod": "^4.1.13",
|
|
44
|
+
"@liberfi.io/utils": "0.1.6",
|
|
45
|
+
"@liberfi.io/i18n": "0.1.6"
|
|
42
46
|
},
|
|
43
47
|
"devDependencies": {
|
|
44
48
|
"@tailwindcss/cli": "^4.1.13",
|