Releases: tajo/ladle
@ladle/[email protected]
Minor Changes
- #529
3ce9390
Thanks @chasestarr! - disable hmr when --noWatch flag is passed to serve command
@ladle/[email protected]
Patch Changes
- #523
6138c7f
Thanks @chasestarr! - Add --noWatch option to serve command
@ladle/[email protected]
@ladle/[email protected]
@ladle/[email protected]
@ladle/[email protected]
Major Changes
-
#481
8050652
Thanks @tajo! - Switch Ladle to SWC compiler by using react-plugin-swc as the default. The babel based one (react-plugin) can still be used by adding setting it up through vite.config.js. -
#479
657329a
Thanks @tajo! - Convert StoryDefault type into interface, add hotkeys into Meta type, relax type of Meta.width -
Only React v18+ is supported.
Patch Changes
-
#495
7cc65f8
Thanks @tajo! - Don't use CSS transform for sidebar chevrons so it doesn't create layering (stacking context) issues -
#442
da95b96
Thanks @hiddenist! - Changes Meta from a type to an interface so it can be extended by declaring a module -
#441
1b048c4
Thanks @calloc134! - Fixed the type of the "ArgType" object so that options are properly loaded into the type -
#486
0c3c5ff
Thanks @tajo! - Add meta.mockDate feature so stories can mock/fix Date() values, great for testing and snapshots -
#483
b1983a4
Thanks @tajo! - Add better styling for both markdown and MDX elements everywhere. -
#478
7650d11
Thanks @tajo! - Preserve number type for controls (includes select, radio...). Previously, we incorrectly turned these values into strings on change. -
#484
35eaece
Thanks @tajo! - Set tab-size to 2 for the source code addon
@ladle/[email protected]
@ladle/[email protected]
@ladle/[email protected]
Minor Changes
-
#468
92ea9b1
Thanks @tajo! - Ladle is adding a few hotkeys to make your life easier:/
or⌘ cmd + p
- Focus search input in the sidebar⌥ opt + →
- Go to the next story⌥ opt + ←
- Go to the previous story⌥ opt + ↓
- Go to the next component⌥ opt + ↑
- Go to the previous componentc
- Toggle controls addond
- Toggle dark modef
- Toggle fullscreen modew
- Toggle width addonr
- Toggle right-to-left modes
- Toggle story source addona
- Toggle accessibility addon
These defaults can be customized through the configuration. Some stories might have utilize their own set of hotkeys. If you want to prevent conflicts with Ladle, you can disable all Ladle shortcuts for a specific story by using the
meta
parameter:export default { meta: { hotkeys: false, }, }; Story.meta = { hotkeys: false, };