Releases: corvudev/corvu
corvu@0.4.1
corvu@0.4.0
Migration Guide
This release removes the polymorphic component and replaces it with a simpler approach. Dynamic corvu components now behave the same as Solid's Dynamic component, but with the as property instead of component.
This is only a breaking change if you use asChild with the <As/> component in your code. Have a look at the new Dynamic Components documentation for more information.
Changelog
Minor Changes
Patch Changes
solid-prevent-scroll@0.1.1
Patch Changes
- Updated dependencies:
- corvu@0.3
 
solid-presence@0.1.1
Patch Changes
- Updated dependencies:
- corvu@0.3
 
solid-focus-trap@0.1.1
Patch Changes
- Updated dependencies:
- corvu@0.3
 
corvu@0.3.0
Minor Changes
- 
Add closeOnOutsidePointerStrategyto dialog and usecorvu-drawer-*data attributes for drawer components -629871f(@GiyoMoon)
- 
Add allowPinchZoom option to dialog primitive - 5deb1c5(@GiyoMoon)
Patch Changes
- 
Allow text selection on drawer content - 9efcac5(@GiyoMoon)
- 
Fix drawer opennot being controllable -617f95a(@GiyoMoon)
- 
Detect scrollable root elements in createPreventScroll - 82504e9(@GiyoMoon)
- 
Add typesVersionsto package.json to support oldermoduleResolutionstrategies -705a538(@GiyoMoon)
Migration Guide
- Drawer- drawer elements now have data-corvu-drawer-*data attributes instead ofdata-corvu-dialog-*
- Text selection is now allowed. You have to disable it yourself if you want to change this behavior.
 
- drawer elements now have 
- Dialog- Renamed onOutsidePointerDowntoonOutsidePointer
- The dialog now closes on pointerupas default. You can use the newcloseOnOutsidePointerStrategyproperty to change it back topointerdown.
- Pinch zoom is now allowed per default. You can disable it by passing the allowPinchZoomprop.
 
- Renamed 
corvu@0.2.4
@corvu/tailwind@0.1.4
corvu@0.2.3
corvu@0.2.2
Patch Changes
- 
Possibility to transition the width/height of drawers with a dynamic size - 5f9a5d0(@GiyoMoon)
- 
Add contentRef and overlayRef to dialog root children props - 6c5142a(@GiyoMoon)
- 
Export DialogContextValue in corvu/drawer - e295703(@GiyoMoon)
- 
Fix drawer opening transition and set data-snapping properly - 82e07bb(@GiyoMoon)