@hexdspace/react 0.1.20 → 0.1.21

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.
Files changed (2) hide show
  1. package/dist/index.js +2 -4
  2. package/package.json +2 -2
package/dist/index.js CHANGED
@@ -1640,8 +1640,7 @@ function AutoHeight({
1640
1640
  transition: { duration: durationSeconds, ease: "easeOut" },
1641
1641
  style: {
1642
1642
  maxHeight: "calc(100vh - 4rem)",
1643
- overflow: "auto",
1644
- willChange: "height"
1643
+ overflow: "auto"
1645
1644
  },
1646
1645
  children: /* @__PURE__ */ jsx7("div", { ref, style: { boxSizing: "border-box" }, children })
1647
1646
  }
@@ -1777,7 +1776,6 @@ function Dialog({
1777
1776
  motion.div,
1778
1777
  {
1779
1778
  className: surfaceClassName,
1780
- style: { willChange: "transform" },
1781
1779
  variants: {
1782
1780
  open: { opacity: 1, y: 0, transition: { duration: motionDuration, ease: "easeOut" } },
1783
1781
  closed: { opacity: 0, y: 20, transition: { duration: motionDuration, ease: "easeIn" } }
@@ -2511,7 +2509,7 @@ import { Tooltip as TooltipPrimitive } from "radix-ui";
2511
2509
  import { jsx as jsx17, jsxs as jsxs9 } from "react/jsx-runtime";
2512
2510
  var tooltipContentBase = cn(
2513
2511
  "panel shadow-none px-4 py-2.5 text-xs z-5000 select-none",
2514
- "origin-center will-change-[transform,opacity]",
2512
+ "origin-center",
2515
2513
  "[--tooltip-x:0px] [--tooltip-y:4px]",
2516
2514
  "data-[side=bottom]:[--tooltip-y:-4px]",
2517
2515
  "data-[side=left]:[--tooltip-x:4px] data-[side=left]:[--tooltip-y:0px]",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hexdspace/react",
3
- "version": "0.1.20",
3
+ "version": "0.1.21",
4
4
  "type": "module",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -38,7 +38,7 @@
38
38
  "@tanstack/react-query": "^5.90.11",
39
39
  "lucide-react": "^0.555.0",
40
40
  "radix-ui": "^1.4.3",
41
- "react": "^20.2.3",
41
+ "react": "^19.2.3",
42
42
  "react-dom": "^19.2.3",
43
43
  "react-router-dom": "^7.10.1",
44
44
  "react-toastify": "^11.0.5"