Forked from hermes-frontend, stripped openclaw/bun specifics: - Auth tokens: openclaw_session -> nyx_session - Vite proxy: localhost:3003 -> localhost:8000 (assay) - Prod WS: wss://assay.loop42.de/ws - Workspace paths: removed openclaw-specific paths - Added missing deps: @heroicons/vue, overlayscrollbars-vue - Branding: title -> nyx Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2.4 KiB
2.4 KiB
Changelog
0.5.9
Improvements
- The
OverlayScrollbarsComponentnow properly supports'body'as its element tag.
0.5.8
Improvements
- Improve the type definitions with the usage of the
Componenttype.
0.5.7
Improvements
- Adapt the
exportsfield in thepackage.jsonfor correctcommonjsandmodulehandling.
0.5.6
Bug Fixes
- Make sure component is stateless and children won't update more often than needed.
0.5.5
Bug Fixes
- Revert to
runtime declarationfor props to prevent types warning. #551
0.5.4
Bug Fixes
- Fixed TypeScript definitions for optional properties.
0.5.3
- Improve
Server Side Renderingbehavior by creating additional markup only on the client with the hydration phase. - Improve
deferred initializationwhere the time between created markup and actual initialization is masked with CSS.
0.5.2
- The
package.jsonhas now an appropriateexportsfield to optimize builds in modern bundlers.
0.5.1
The TypeScript interfaces OverlayScrollbarsProps and OverlayScrollbarsRef are exported from the package.
0.5.0
Features
Added the possibility to defer the initialization to a point in time when the browser is idle. (or to the next frame if window.requestIdleCallback is not supported)
OverlayScrollbarsComponentaccepts now thedeferpropertyuseOverlayScrollbarsparams accept now thedeferpropertyuseOverlayScrollbarswill now always try to destroy the instance if the component unmounts.
Breaking Changes
- Because initialization can be deferred now, the
initializefunction of theuseOverlayScrollbarscomposable isn't returning the instance anymore. Use theinstancefunction of theuseOverlayScrollbarscomposable instead.
0.4.0
Depends on OverlayScrollbars version ^2.0.0 and Vue version ^3.2.25.
The component was rewritten using script setup.
Features
OverlayScrollbarsComponentaccepts now theeventspropertyOverlayScrollbarsComponentaccepts now theelementpropertyOverlayScrollbarsComponentemits now allOverlayScrollbarsevents as "native" Vue events- The
useOverlayScrollbarscomposable was added for advanced usage
Breaking Changes
- The
extensionsproperty is removed fromOverlayScrollbarsComponent - The
osTarget()function from theOverlayScrollbarsComponentrefis renamed togetElement()