@cladd-ui/react 0.8.1 → 0.9.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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.9.0 (2026-05-29)
4
+
5
+ ### Features
6
+
7
+ - popover open duration 400ms -> 300ms (13de1ab)
8
+
3
9
  ## 0.8.1 (2026-05-25)
4
10
 
5
11
  ### Features
@@ -386,7 +386,7 @@ const PopoverInner = (props) => {
386
386
  else if (ref && 'current' in ref)
387
387
  ref.current = el;
388
388
  }, style: popoverStyle, className: cn('pointer-events-auto absolute z-50 flex w-40 max-w-[calc(100vw-16px)] rounded-cladd-popover shadow-cladd-popover transition-[opacity,transform,scale] duration-0', opened && 'scale-100 opacity-100 ease-[cubic-bezier(0,1,0,1.025)]', (phase === 'opened' || (phase === 'opening' && opened)) &&
389
- 'duration-400', phase === 'closing' && 'duration-200 ease-in-out!', (phase === 'closing' || !opened) && 'scale-0 opacity-0', positionConfig.origin, className), color: color, level: surfaceLevel, variant: variant, outline: outline, contentClassName: cn('h-auto max-h-[70vh] w-full overflow-auto', contentClassName), ...rest, children: children })] }) }));
389
+ 'duration-300', phase === 'closing' && 'duration-200 ease-in-out!', (phase === 'closing' || !opened) && 'scale-0 opacity-0', positionConfig.origin, className), color: color, level: surfaceLevel, variant: variant, outline: outline, contentClassName: cn('h-auto max-h-[70vh] w-full overflow-auto', contentClassName), ...rest, children: children })] }) }));
390
390
  return root
391
391
  ? createPortal(content, document.querySelector(root))
392
392
  : content;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cladd-ui/react",
3
- "version": "0.8.1",
3
+ "version": "0.9.0",
4
4
  "description": "",
5
5
  "homepage": "https://cladd.io",
6
6
  "bugs": {