@liberfi.io/ui 0.1.7 → 0.1.9
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 +141 -4
- package/dist/index.d.ts +141 -4
- 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 +10 -1
- package/package.json +11 -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);
|
|
@@ -204,6 +204,15 @@
|
|
|
204
204
|
--color-orca: 47, 99%, 68%;
|
|
205
205
|
}
|
|
206
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
|
+
|
|
207
216
|
.bg-pump {
|
|
208
217
|
background: hsl(var(--color-pump));
|
|
209
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.9",
|
|
4
4
|
"description": "Base UI library for Liberfi React SDK",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -28,18 +28,26 @@
|
|
|
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",
|
|
34
35
|
"jotai": "^2.15.1",
|
|
36
|
+
"pinata": "^2.5.1",
|
|
35
37
|
"react": "^19.1.1",
|
|
36
38
|
"react-dom": "^19.1.1",
|
|
39
|
+
"react-dropzone": "^14.3.8",
|
|
40
|
+
"react-hook-form": "^7.65.0",
|
|
37
41
|
"react-hot-toast": "^2.6.0",
|
|
42
|
+
"react-virtualized-auto-sizer": "^1.0.26",
|
|
38
43
|
"react-virtuoso": "^4.14.1",
|
|
44
|
+
"react-window": "^2.2.3",
|
|
45
|
+
"react-window-infinite-loader": "^2.0.0",
|
|
39
46
|
"tailwind-variants": "^3.1.1",
|
|
40
47
|
"tailwindcss": "^4.1.13",
|
|
41
|
-
"
|
|
42
|
-
"@liberfi.io/
|
|
48
|
+
"zod": "^4.1.13",
|
|
49
|
+
"@liberfi.io/i18n": "0.1.7",
|
|
50
|
+
"@liberfi.io/utils": "0.1.7"
|
|
43
51
|
},
|
|
44
52
|
"devDependencies": {
|
|
45
53
|
"@tailwindcss/cli": "^4.1.13",
|