webrix
webrix copied to clipboard
Powerful building blocks for React-based web applications
## Prerequisites - [x] I am running the latest version - [x] I checked the documentation and found no answer - [x] I checked to make sure that this issue...
Add support for all native `div` props on Scrollable. This should be done in `Scrollable.jsx`, roughly like so: ```jsx ```
This will be based on the `` component and will support sorting lists by DnD (ideally this should support horizontal & vertical lists, grids, and cross-list sorting).
Based on Movable, it's a component that the user can move, but as opposed to Movable, the Draggable will create a copy that is thrown into the body, and will...
A component for virtualization. Should support: 1. Vertical/horizontal virtualization 2. Custom buffer size (vertical & horizontal) 3. Various item sizes - fixed (a single number or an array of numbers),...
Currently the [``](https://webrix.amdocs.com/docs/components/collapsible/) may only work as a *controlled* component by using the `expanded` prop. Sometimes there is no need for outside control and it is wished for the component...
When scrolling with the mouse wheel or hovering the bottom edge of the website: https://user-images.githubusercontent.com/845031/118940869-d6172100-b959-11eb-8bbe-4d88271b0e1b.mp4
When applying transitions to the top/left properties of poppables, it "jumps" during the initial positioning, since the poppable is positioned outside of the screen initially. This phenomenon can be seen...
Currently, when the reference is lost, the poppable jumps to the top left corner of the screen. Instead, we should hide it until the reference is accessible again.
Currently, the `Collapsible` component renders its content regardless of whether it's expanded or not. It does so in order to be able to calculate the height to which it needs...