@liberfi.io/ui 0.1.5 → 0.1.7
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 +14 -2
- package/dist/index.d.ts +14 -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 +20 -0
- package/package.json +4 -3
|
@@ -117,9 +117,29 @@
|
|
|
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 {
|
|
139
|
+
* {
|
|
140
|
+
@apply outline-0 outline-solid outline-transparent;
|
|
141
|
+
}
|
|
142
|
+
|
|
123
143
|
body {
|
|
124
144
|
padding-bottom: var(--safe-area-inset-bottom, 0);
|
|
125
145
|
@apply antialiased overscroll-none;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@liberfi.io/ui",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.7",
|
|
4
4
|
"description": "Base UI library for Liberfi React SDK",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -31,14 +31,15 @@
|
|
|
31
31
|
"clsx": "^2.1.1",
|
|
32
32
|
"copy-to-clipboard": "^3.3.3",
|
|
33
33
|
"framer-motion": "^12.23.13",
|
|
34
|
+
"jotai": "^2.15.1",
|
|
34
35
|
"react": "^19.1.1",
|
|
35
36
|
"react-dom": "^19.1.1",
|
|
36
37
|
"react-hot-toast": "^2.6.0",
|
|
37
38
|
"react-virtuoso": "^4.14.1",
|
|
38
39
|
"tailwind-variants": "^3.1.1",
|
|
39
40
|
"tailwindcss": "^4.1.13",
|
|
40
|
-
"@liberfi.io/
|
|
41
|
-
"@liberfi.io/
|
|
41
|
+
"@liberfi.io/i18n": "0.1.5",
|
|
42
|
+
"@liberfi.io/utils": "0.1.5"
|
|
42
43
|
},
|
|
43
44
|
"devDependencies": {
|
|
44
45
|
"@tailwindcss/cli": "^4.1.13",
|