@versini/ui-types 6.0.1 → 7.0.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.
Files changed (2) hide show
  1. package/dist/index.d.ts +6 -1
  2. package/package.json +2 -6
package/dist/index.d.ts CHANGED
@@ -387,9 +387,14 @@ declare namespace TooltipTypes {
387
387
  */
388
388
  mode?: "dark" | "light" | "system" | "alt-system";
389
389
  /**
390
- * The delay in milliseconds before showing the tooltip.
390
+ * The duration in milliseconds of the tooltip fade-in animation.
391
391
  * @default 300
392
392
  */
393
+ animationDuration?: number;
394
+ /**
395
+ * The delay in milliseconds before showing the tooltip after hovering.
396
+ * @default 0
397
+ */
393
398
  delay?: number;
394
399
  };
395
400
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@versini/ui-types",
3
- "version": "6.0.1",
3
+ "version": "7.0.0",
4
4
  "license": "MIT",
5
5
  "author": "Arno Versini",
6
6
  "publishConfig": {
@@ -32,12 +32,8 @@
32
32
  "test:watch": "vitest",
33
33
  "test": "vitest run"
34
34
  },
35
- "peerDependencies": {
36
- "react": "^19.1.0",
37
- "react-dom": "^19.1.0"
38
- },
39
35
  "devDependencies": {
40
36
  "@floating-ui/react": "0.27.16"
41
37
  },
42
- "gitHead": "dcc216644c8c3e7d43a49ea655a22aed21fa4b83"
38
+ "gitHead": "4795cf3239cceaf83dde13addc5254caa12dee6f"
43
39
  }