@web-package/react-widgets
Advanced tools
Changelog
1.0.0-beta11
Fixed an issue where the scrollbar would appear in the Scrollable
widget despite being defined as false, due to CSS priority differences in the development environment.
Updated the Grid
widget to ensure react ref hooks work correctly.
Updated the Row
widget to ensure react ref hooks work correctly.
Updated the Colunn
widget to ensure react ref hooks work correctly.
Changelog
1.0.0-beta9
Canvas
widget was detecting size changes.Canvas
widget to ensure it redraws even after being recomposed.Changelog
1.0.0-beta8
AnimatedWidget
widget could not accurately define its previous intrinsic size of the element.Changelog
1.0.0-beta7
AnimatedSize
widget.Changelog
1.0.0-beta6
Fixed an issue by modifying the AnimatedSize
widget to exclude the wrapping element from layout calculations when not in animation state, optimizing performance.
Updated the README.md to provide more detailed explanations and clarifications throughout the project documentation.
Changelog
1.0.0-beta5
Fixed an issue in the AnimatedFoldable
widget where the non-visible state was affected by changes in the size of its children, causing the height of the layout to change or break.
Fixed an issue where elements in the Invisible
widget were only rendered if they were fully visible. Now, elements will be rendered as long as they are partially visible, even if only 0.1% of the element is in view.
Fixed an issue where the transition animation was applied to the line indicator element in the TabNavigation
widget when the initial index was a positive number instead of 0.
Changelog
1.0.0-beta4
Invisible
widget. Under the assumption that the size of the child element is explicitly known, this widget excludes the child element from both rendering and reflow if the element is not visible, significantly improving performance.Changelog
1.0.0-beta3
Fixed an issue where the sizes of both parent and child elements in AnimatedTransition
were not being calculated correctly due to all child elements being absolute position applied.
Added an option that is whether to using memo(cache, recycle) into the ConditionalRender
widget.