@infonomic/uikit 2.10.0 → 2.12.0

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.
@@ -2,7 +2,7 @@
2
2
  import { jsx } from "react/jsx-runtime";
3
3
  import { motion } from "motion/react";
4
4
  const FadeInLift = ({ as, children, className, duration = 0.5, delay = 0, ...rest })=>{
5
- const Component = as ? motion(as) : motion.div;
5
+ const Component = as ? motion.create(as) : motion.div;
6
6
  return /*#__PURE__*/ jsx(Component, {
7
7
  className: className,
8
8
  initial: {
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@infonomic/uikit",
3
3
  "private": false,
4
4
  "license": "MIT",
5
- "version": "2.10.0",
5
+ "version": "2.12.0",
6
6
  "type": "module",
7
7
  "description": "Infonomic UI kit is a collection of reusable UI components and utilities for React and Astro.",
8
8
  "keywords": [
@@ -50,7 +50,7 @@
50
50
  }
51
51
  },
52
52
  "dependencies": {
53
- "@mantine/hooks": "^8.2.5",
53
+ "@mantine/hooks": "^8.3.1",
54
54
  "@radix-ui/react-icons": "^1.3.2",
55
55
  "@radix-ui/react-slot": "^1.2.3",
56
56
  "classnames": "^2.5.1",
@@ -61,37 +61,37 @@
61
61
  "prism-react-renderer": "^2.4.1",
62
62
  "radix-ui": "^1.4.3",
63
63
  "react": "19.1.1",
64
- "react-day-picker": "^9.9.0",
64
+ "react-day-picker": "^9.10.0",
65
65
  "react-dom": "19.1.1",
66
- "zod": "^4.0.17",
67
- "zod-form-data": "^3.0.0"
66
+ "zod": "^4.1.8",
67
+ "zod-form-data": "^3.0.1"
68
68
  },
69
69
  "devDependencies": {
70
70
  "@astrojs/check": "0.9.4",
71
- "@astrojs/node": "9.4.2",
72
- "@biomejs/biome": "2.2.0",
73
- "@rsbuild/plugin-react": "^1.3.5",
74
- "@rslib/core": "^0.12.2",
75
- "@storybook/addon-a11y": "^9.1.3",
76
- "@storybook/addon-docs": "^9.1.3",
77
- "@storybook/addon-links": "^9.1.3",
78
- "@storybook/addon-themes": "^9.1.3",
79
- "@storybook/react-vite": "^9.1.3",
71
+ "@astrojs/node": "9.4.3",
72
+ "@biomejs/biome": "2.2.4",
73
+ "@rsbuild/plugin-react": "^1.4.0",
74
+ "@rslib/core": "^0.13.2",
75
+ "@storybook/addon-a11y": "^9.1.6",
76
+ "@storybook/addon-docs": "^9.1.6",
77
+ "@storybook/addon-links": "^9.1.6",
78
+ "@storybook/addon-themes": "^9.1.6",
79
+ "@storybook/react-vite": "^9.1.6",
80
80
  "@types/lodash": "^4.17.20",
81
- "@types/node": "^24.3.0",
82
- "@types/react": "19.1.10",
83
- "@types/react-dom": "19.1.7",
84
- "@vitejs/plugin-react": "^5.0.1",
85
- "astro": "5.13.2",
81
+ "@types/node": "^24.5.0",
82
+ "@types/react": "19.1.13",
83
+ "@types/react-dom": "19.1.9",
84
+ "@vitejs/plugin-react": "^5.0.2",
85
+ "astro": "5.13.7",
86
86
  "chokidar": "^4.0.3",
87
- "eslint-plugin-storybook": "^9.1.3",
87
+ "eslint-plugin-storybook": "^9.1.6",
88
88
  "lightningcss": "^1.30.1",
89
89
  "lightningcss-cli": "^1.30.1",
90
90
  "rimraf": "^6.0.1",
91
- "storybook": "^9.1.3",
91
+ "storybook": "^9.1.6",
92
92
  "typescript": "5.9.2",
93
93
  "typescript-plugin-css-modules": "^5.2.0",
94
- "vite": "^7.1.3",
94
+ "vite": "^7.1.5",
95
95
  "vitest": "^3.2.4"
96
96
  },
97
97
  "publishConfig": {
@@ -22,7 +22,7 @@ export const FadeInLift = <T extends ElementType = 'div'>({
22
22
  delay = 0,
23
23
  ...rest
24
24
  }: FadeInLiftProps<T> & Omit<ComponentPropsWithoutRef<T>, keyof FadeInLiftProps<T>>) => {
25
- const Component = as ? motion(as) : motion.div
25
+ const Component = as ? motion.create(as) : motion.div
26
26
 
27
27
  return (
28
28
  <Component