stenajs-webui/core
The core library for @stenajs-webui.
All other packages depend on core.
View components
Layout
Box is the main building stone which most other components are derived from.
Components derived from Box
-
Absolute (same as Box, position is absolute)
-
Relative (same as Box, position is relative)
-
Column (same as Box, content is placed in a column)
-
Row (same as Box, content is placed in a row)
-
Indent
-
Space
-
Spacing
Interaction
Decorators
Theme
There are components and hooks available for the themes.
See src/theme/Theme.md
for details.
Hooks
core
includes a collection of hooks.
See src/hooks/README.md
for details.
7.4.0
grid-export
- Add support for copy table content with default formatting (as well as other components) to clipboard.
DateRangeDualTextInput
Updated behaviour when selecting dates in popover.
- Selecting startDate always moves to endDate.
- Selecting endDate closes calendar except when
date range is invalid or startDate has not been selected.
Then it moves to start date.
New hook useDelayedFalse
A hook that takes a boolean as argument and returns that boolean.
When boolean turns false, it returns false after a certain delay.
When boolean turns true, it returns true immediately.
This is useful for delaying the removal of elements in the DOM.