@liberfi.io/ui 0.1.6 → 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.
@@ -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 {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@liberfi.io/ui",
3
- "version": "0.1.6",
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/i18n": "0.1.4",
41
- "@liberfi.io/utils": "0.1.4"
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",