Changelog

What's shipping across @vyui/core and @vyui/kit — one rolling timeline, newest first.

  • @vyui/kitv0.3.0

    @vyui/kit v0.3.0

    Minor Changes

    • c344b72: Per-component subpath entries for tree-shakeable consumption. @vyui/kit now exposes every component as its own entry point (@vyui/kit/button, @vyui/kit/tray, …) with the same canonical Vy* bindings as the barrel, so migrating is a specifier swap. Because the vue-lynx main-thread worklet pipeline prunes by sideEffects globs over whatever is reached (bare side-effect imports erase export usage), deep entries are the only way to ship less: importing @vyui/kit/button now reaches ~37 modules / 26 worklet registrations instead of the barrel's ~294 / 118.
      To make this work end-to-end, kit's build rewrites its own @vyui/core barrel imports to per-file deep specifiers (@vyui/core/dist/components/….vue.js), and @vyui/core exposes a ./dist/*.js wildcard export to resolve them. Barrel imports (import { VyButton } from '@vyui/kit') keep working unchanged — they just keep the everything-ships behavior.
      Also fixes @vyui/kit's sideEffects: false, which let bundlers drop the package entirely from the vue-lynx main-thread worklet slice (entered via a bare side-effect import that uses no exports), so every transitively-imported @vyui/core worklet went unregistered and consumers crashed with bind of undefined. Kit now declares the same sideEffects globs as core.
    • c344b72: Ship per-file, source-shaped ESM dist (Vite lib + Rollup preserveModules) instead of an rslib bundle.
      • Fixes the __WEBPACK_EXTERNAL_MODULE_vue_lynx_* is not defined main-thread crash for npm consumers of worklet-driven components (VyTray, VyDrawer, Slider, …): worklet modules now keep direct named vue-lynx imports the consumer's MT toolchain can follow.
      • Fixes the follow-on cannot read property 'bind' of undefined main-thread crash: each pre-compiled worklet module retains a "main thread" marker so the consumer's worklet-loader-mt extracts its registerWorkletInternal calls (with _wkltIds matching the background bundle) instead of dropping them. @vyui/kit's sideEffects is widened to keep the transitive-core-worklet MT imports from being tree-shaken.
      • SFC <style> CSS is now published and auto-imported per module — the old bundle stubbed it, so consumers silently lost component styles.
      • Each SFC ships as a single X.vue.js; a check-dist-shape guard fails the build on any bundle fingerprint or a worklet module missing its marker.

    Patch Changes

    • a2696c9: Add an experimental VyCalendar component with ISO-string date selection and a built-in Lynx date-runtime caveat.
    • a2696c9: Breaking: components are now exported under a single canonical Vy* name only. The bare aliases (Button, Card, Icon, AspectRatio, …) have been removed so there is one name per component — the same one the VyUI plugin registers globally. Update imports from import { Button } from '@vyui/kit' to import { VyButton } from '@vyui/kit'. The unprefixed Icon/AspectRatio primitives remain available from @vyui/core.
    • Updated dependencies c344b72
    • Updated dependencies c344b72
      • @vyui/core@0.2.0
  • @vyui/corev0.2.0

    @vyui/core v0.2.0

    Minor Changes

    • c344b72: Per-component subpath entries for tree-shakeable consumption. @vyui/kit now exposes every component as its own entry point (@vyui/kit/button, @vyui/kit/tray, …) with the same canonical Vy* bindings as the barrel, so migrating is a specifier swap. Because the vue-lynx main-thread worklet pipeline prunes by sideEffects globs over whatever is reached (bare side-effect imports erase export usage), deep entries are the only way to ship less: importing @vyui/kit/button now reaches ~37 modules / 26 worklet registrations instead of the barrel's ~294 / 118.
      To make this work end-to-end, kit's build rewrites its own @vyui/core barrel imports to per-file deep specifiers (@vyui/core/dist/components/….vue.js), and @vyui/core exposes a ./dist/*.js wildcard export to resolve them. Barrel imports (import { VyButton } from '@vyui/kit') keep working unchanged — they just keep the everything-ships behavior.
      Also fixes @vyui/kit's sideEffects: false, which let bundlers drop the package entirely from the vue-lynx main-thread worklet slice (entered via a bare side-effect import that uses no exports), so every transitively-imported @vyui/core worklet went unregistered and consumers crashed with bind of undefined. Kit now declares the same sideEffects globs as core.
    • c344b72: Ship per-file, source-shaped ESM dist (Vite lib + Rollup preserveModules) instead of an rslib bundle.
      • Fixes the __WEBPACK_EXTERNAL_MODULE_vue_lynx_* is not defined main-thread crash for npm consumers of worklet-driven components (VyTray, VyDrawer, Slider, …): worklet modules now keep direct named vue-lynx imports the consumer's MT toolchain can follow.
      • Fixes the follow-on cannot read property 'bind' of undefined main-thread crash: each pre-compiled worklet module retains a "main thread" marker so the consumer's worklet-loader-mt extracts its registerWorkletInternal calls (with _wkltIds matching the background bundle) instead of dropping them. @vyui/kit's sideEffects is widened to keep the transitive-core-worklet MT imports from being tree-shaken.
      • SFC <style> CSS is now published and auto-imported per module — the old bundle stubbed it, so consumers silently lost component styles.
      • Each SFC ships as a single X.vue.js; a check-dist-shape guard fails the build on any bundle fingerprint or a worklet module missing its marker.
  • @vyui/kitv0.2.0

    @vyui/kit v0.2.0

    Minor Changes

    • 5109043: Add defineVyuiConfig (new @vyui/kit/config entry) so a project's theme is authored once and fed to both the Tailwind preset (build) and provideVyUI/app.use(VyUI) (runtime), removing the hand-synced colors duplication between the two planes.
      • createVyuiPreset now accepts a defineVyuiConfig result ({ ui: { colors } }) alongside the flat { colors, neutral, shades } form
      • createVyuiPreset dev-warns when a semantic color can't be backed by a --ui-color-* var (no more silent "class resolves to nothing")
      • @vyui/kit/config is a light, jiti-safe entry — importing it in tailwind.config.ts never pulls component code into the build path
  • @vyui/corev0.1.2

    @vyui/core v0.1.2

    Patch Changes

    • cbbbcbf: Ensure tray, drawer, and action sheet content renders above the sheet backdrop by default, and disable automatic capitalization and correction for kit email and password inputs.
  • @vyui/kitv0.1.2

    @vyui/kit v0.1.2

    Patch Changes

    • cbbbcbf: Ensure tray, drawer, and action sheet content renders above the sheet backdrop by default, and disable automatic capitalization and correction for kit email and password inputs.
    • Updated dependencies cbbbcbf
      • @vyui/core@0.1.2
  • @vyui/corev0.1.1

    @vyui/core v0.1.1

    Patch Changes

    • bb4d208: Add VyTray — a morphing, multi-view bottom sheet built on the core Sheet primitives. Views (VyTrayView) are measured per screen and the panel animates its height to fit whichever is showing ("grows into place"), with a back stack (useTray().goBack / canGoBack), a persistent #footer slot, and floating (detached card) vs flush (edge-anchored) variants.
      @vyui/core SheetContent gains a fitContent prop that sizes the panel to its natural content height instead of a snapPoints × viewport fraction — the drag/slide/backdrop physics reuse the measured height, so nothing else changes. This is the mode VyTray builds on.
    • 31c2202: Add side-aware sheet and drawer motion. SheetRoot now accepts side for top, right, bottom, and left edge placement with matching slide animations and drag-to-dismiss physics. VyDrawer forwards its side to the core sheet, and sheet-backed kit components can opt into alternate edges.
      Edge placement and the enter/leave slide keyframes key off a vyui-sheet__content--{side} class rather than a [data-side] attribute selector, so they apply on Lynx native (which does not match attribute selectors in CSS) — restoring the open/close animation on device.
  • @vyui/kitv0.1.1

    @vyui/kit v0.1.1

    Patch Changes

    • bb4d208: Add VyTray — a morphing, multi-view bottom sheet built on the core Sheet primitives. Views (VyTrayView) are measured per screen and the panel animates its height to fit whichever is showing ("grows into place"), with a back stack (useTray().goBack / canGoBack), a persistent #footer slot, and floating (detached card) vs flush (edge-anchored) variants.
      @vyui/core SheetContent gains a fitContent prop that sizes the panel to its natural content height instead of a snapPoints × viewport fraction — the drag/slide/backdrop physics reuse the measured height, so nothing else changes. This is the mode VyTray builds on.
    • 31c2202: Add side-aware sheet and drawer motion. SheetRoot now accepts side for top, right, bottom, and left edge placement with matching slide animations and drag-to-dismiss physics. VyDrawer forwards its side to the core sheet, and sheet-backed kit components can opt into alternate edges.
      Edge placement and the enter/leave slide keyframes key off a vyui-sheet__content--{side} class rather than a [data-side] attribute selector, so they apply on Lynx native (which does not match attribute selectors in CSS) — restoring the open/close animation on device.
    • Updated dependencies bb4d208
    • Updated dependencies 31c2202
      • @vyui/core@0.1.1
  • @vyui/corev0.1.0

    @vyui/core v0.1.0

    Minor Changes

    • 0610d70: Input/Textarea: surface the on-screen keyboard via a normalized keyboard event.
      • Input and Textarea (core) and VyInput/VyTextarea (kit) now emit keyboard with { visible: boolean, height: number, safeAreaBottom: number }, normalized from Lynx's raw element payload { show, keyBoardHeight, safeAreaBottom } (note the capital B in keyBoardHeight).
      • This is the reliable keyboard signal under vue-lynx: the global GlobalEventEmitter keyboardstatuschanged event is emitted natively but is not delivered to the vue-lynx background runtime, so the per-element event is what consumers (and keyboard-aware lifts) should use. See docs/upstream/vue-lynx-keyboard.md.
      • VyTextarea also now forwards confirm/focus/blur (previously only update:modelValue), matching VyInput.

    Patch Changes

    • 0610d70: FeedList: honour a noMoreData prop so the end-of-list footer no longer shows while more pages remain.
      Previously the core FeedList rendered the noMoreDataFooter slot whenever loadingMore was false, so "no more items" appeared immediately even with pages still loadable (the kit VyFeedList already forwarded noMoreData, but core ignored it). The footer row now only renders while loadingMore (load-more spinner) or once noMoreData is true (end-of-list); otherwise no footer renders.
    • baf0692: Fix drawer/sheet not opening fully: Lynx native drops the dvh unit, collapsing the panel to its content height. Size the sheet panel with vh and switch all viewport-height classes in the kit themes (drawer, modal, select, combobox, popover, dropdownMenu, island, actionSheet) from dvh to vh.
    • 0610d70: Fix Sortable drag-to-reorder doing nothing on device/web:
      • Registry was empty on the main thread. Items registered their handle via a background-thread write to the itemHandlesMT MainThreadRef, which vue-lynx 0.4.0 silently drops. The lifted row never moved, siblings never shifted, and the drop saw count === 0 so no reorder committed. Registration (element + index) now runs on the main thread, bound to main-thread-binduiappear, with MT teardown on unmount and runOnMainThread setter worklets for index/disabled sync.
      • Long-press used MT setTimeout. The main-thread worklet runtime does not expose setTimeout/clearTimeout (internal in @lynx-js/types), so the long-press timer threw and the row never lifted for any longPressMs > 0. The hold is now timed by polling requestAnimationFrame on the main thread.

      Public props/emits/slots unchanged.
    • 300e34f: Keep sheet snap and drag geometry synchronized with dynamic viewport changes, and make kit swipers fill their measured container when no explicit item width is provided.
  • @vyui/kitv0.1.0

    @vyui/kit v0.1.0

    Minor Changes

    • 0610d70: Input/Textarea: surface the on-screen keyboard via a normalized keyboard event.
      • Input and Textarea (core) and VyInput/VyTextarea (kit) now emit keyboard with { visible: boolean, height: number, safeAreaBottom: number }, normalized from Lynx's raw element payload { show, keyBoardHeight, safeAreaBottom } (note the capital B in keyBoardHeight).
      • This is the reliable keyboard signal under vue-lynx: the global GlobalEventEmitter keyboardstatuschanged event is emitted natively but is not delivered to the vue-lynx background runtime, so the per-element event is what consumers (and keyboard-aware lifts) should use. See docs/upstream/vue-lynx-keyboard.md.
      • VyTextarea also now forwards confirm/focus/blur (previously only update:modelValue), matching VyInput.

    Patch Changes

    • 300e34f: Add small horizontal (landscape) mode support — the work that gets the kit-demo running on mobile in landscape. Compact, viewport-safe layouts for overlays, sheets, menus, tabs, steppers, islands, cards, alerts, and toasts. Select and Combobox sheet structure is now fully themeable for responsive overrides.
    • 0610d70: Input: forward @focus and @blur events.
      • The core Input emits focus/blur (with the current value), but the VyInput wrapper only re-emitted update:modelValue and confirm, so consumers couldn't react to focus changes (e.g. to drive a keyboard-aware lift). It now forwards both.
    • 0610d70: IslandButton: bake the icon color so the theme's foreground actually applies.
      • IslandButton rendered its glyph through Lynx's <svg>, which rasterizes the XML and can't inherit currentColor — so the text-slate-* utility on the leadingIcon slot (and the darker text-slate-900 active shade) never reached the icon, leaving it stuck on its default fill (invisible on dark/active pills).
      • It now resolves the foreground utility off the merged leadingIcon class — honoring the active state and any consumer ui.leadingIcon override — and passes it to <VyIcon :color>, matching the pattern already used by Button, Input, Alert, and Combobox. Non-palette colors (e.g. arbitrary text-[#abc]) fall back to the icon's currentColor default.
    • 491db6a: Default input chrome to neutral: form controls no longer paint a primary border or icon by default.
      • Resting border on Input, Textarea, Select, Combobox, NumberField and PinInput is now neutral (border-neutral-200) regardless of color — matching the no-focus-state reality on Lynx. The colored border stays available as opt-in via the highlight prop.
      • Leading/trailing icons (and NumberField steppers) now default to neutral (dimmed) instead of the color palette; override per-icon with your own :color via the leading / trailing slots.
      • RadioGroup: space the control from its label with gap-2 on the item instead of ms-2 on the wrapper — Lynx ignores logical inline margins, which collapsed the dot and text together.
    • baf0692: Fix drawer/sheet not opening fully: Lynx native drops the dvh unit, collapsing the panel to its content height. Size the sheet panel with vh and switch all viewport-height classes in the kit themes (drawer, modal, select, combobox, popover, dropdownMenu, island, actionSheet) from dvh to vh.
    • 300e34f: Keep sheet snap and drag geometry synchronized with dynamic viewport changes, and make kit swipers fill their measured container when no explicit item width is provided.
    • 14e0722: Add @vyui/cli, a shadcn-style CLI that copies @vyui/kit components (and their dependencies) into a project from a style-namespaced registry, rewriting imports to the consumer's aliases.
      • init / add / styles commands; tsconfig/jsconfig alias + package-manager detection.
      • Shadcn-style project preflight and automatic, idempotent app-entry/Tailwind wiring.
      • list, view, info, interactive add, and --dry-run discovery/preview workflows.
      • Safe upgrades: explicit components may be overwritten while shared files and transitive dependencies remain user-owned.
      • Registry targets are contained to the project root (rejects ../ / absolute / null-byte paths).
      • Cyclic registry dependency graphs resolve instead of deadlocking.

      kit: drive the switch thumb with flex justification instead of translate-x-* (Lynx drops transform painting), and reset the native <textarea> user-agent border.
    • 300e34f: Make vertical tabs reserve a navigation rail and let their content fill the remaining width. Vertical triggers no longer inherit the horizontal pill variant's flex-1 stretch — they keep their natural height and left-align their icon/label so the rail reads as a sidebar list.
    • Updated dependencies 0610d70
    • Updated dependencies 0610d70
    • Updated dependencies baf0692
    • Updated dependencies 0610d70
    • Updated dependencies 300e34f
      • @vyui/core@0.1.0
  • @vyui/corev0.0.6

    Gesture & scroll motion overhaul

    A motion-focused release: the scroll and gesture primitives gain the physics they were missing on native Lynx.

    FeedList gets a full pull-to-refresh + paging surface. Pull-to-refresh is a custom rubber-band driven by :main-thread-bindtouch* worklets on a bare <list> — it only engages at the top edge, so normal scrolling and load-more are untouched. New: enableRefresh + v-model:refreshing, refreshThreshold, refresh / refreshStateChange emits and a refreshHeader slot ({ state, progress }); enableBounce rubber-band overscroll at both edges; itemSnap native item-snap paging with a snap emit; and debounced load-more on scrolltolower with loadMoreFooter / noMoreDataFooter slots. The legacy native <refresh> path (unregistered in the OSS Lynx runtime) is removed.

    ScrollView adds a main-thread custom bounce/overscroll system mirroring lynx-ui: enableBounces, singleSidedBounce, alwaysBouncing, trigger-distance and estimated-size props, enableRTL, upperBounceItem / lowerBounceItem slots, and an onScrollToBounces event — driven by the new useBounce composable.

    Swiper loop is now truly seamless — edge slides are cloned and the transform rebases invisibly across the first↔last seam under both drag-release and autoplay. Adds loop/circular, axisLock, autoplay + interval, plus lynx-ui prop parity: spaceBetween, mode, align + containerWidth, offsetLimit, and rtl.

    Sortable, Draggable & SwipeAction tighten on-device gesture fidelity: velocity-aware release (fling/momentum), axis locking, autoscroll near Sortable list edges, and bounds clamping, via shared helpers in shared/gesture/physics.ts. Fixes two regressions — Sortable long-press now arms entirely on the main thread (the BG round-trip was being dropped on-device), and SwipeAction cancels its in-flight fill: 'forwards' snap on touchstart so a follow-up slow drag isn't masked.

    Toast internals are prepped for stacking: ToastRoot binds its own @layoutchange to feed fan-out geometry, exposes duration and progress slot values, and ships a new ToastSwipe main-thread swipe-to-dismiss layer (exporting the unit-tested decideDismiss policy).

  • @vyui/kitv0.0.4

    Stacked toasts & FeedList gestures

    @vyui/kit@0.0.4 brings the new core gesture surface to the styled components.

    Toast gains Sonner-style behaviour, all off by default:

    • stacked — collapses toasts into an overlapping pile (front toast fully visible, the rest peeking scaled-down behind it) and fans them out when expanded; tap to toggle. Pair stackFrom (top | bottom) with the ToastViewport position.
    • swipe (+ swipeDirection) — fling a toast sideways to dismiss. The card rides an inner ToastSwipe layer so the swipe transform never collides with the stacking transform.
    • progress — a thin countdown bar that drains with the auto-dismiss timer (pauses while expanded, hidden when duration: 0).

    A plain VyToast still renders as a single gapped-column card.

    FeedList wrapper now forwards the full pull-to-refresh surface to core — enableRefresh, v-model:refreshing, refreshThreshold, enableBounce, the refresh / refreshStateChange emits, and the refreshHeader slot ({ state, progress }) — plus the new itemSnap prop and snap emit. The loadMoreFooter slot is aligned with core's new no-arg signature (the footer renders only while loading).

  • @vyui/corev0.0.5

    @vyui/core v0.0.5

    Patch Changes

    • Add AspectRatio — headless @vyui/core primitive (AspectRatioRoot, exported as both AspectRatio and AspectRatioRoot) that constrains its default slot to a given ratio (number, default 1). (#46)
      Built for the Lynx render layer: it renders a single <view> using the native CSS aspect-ratio property (supported by Lynx's Starlight layout engine), with no absolutely-positioned padding wrapper.
    • Add Avatar — Lynx-native @vyui/core primitives (AvatarRoot / AvatarImage / AvatarFallback). AvatarRoot provides image load-status context; AvatarImage renders a Lynx <image> and downgrades to the error state on binderror (@error); AvatarFallback shows when no image is loaded, with a delayMs flash-avoidance delay. (#46)
      Refactor @vyui/kit's VyAvatar to compose the new core primitives for behaviour (load-status + fallback) while keeping its public AvatarProps API, initials derivation, chip overlay, theming, and AvatarGroup size/color inheritance unchanged.
    • Fixes from #67, #68 and #70. (#71)
      @vyui/core:
      • Icon: reject color values that could inject SVG markup when resolving icon sources (#67).
      • Sheet: multi-snap drag now settles to the nearest snap point, with main-thread usage fixes across SheetContentImpl, Draggable and useDragGesture (#68).
      • Primitive: treat image as a self-closing leaf — Vue's empty-slot fragment/comment anchors were materialized as real children by vue-lynx, and a native <image> with any child fails to render (native-only breakage; lynx-web tolerated it) (#70).

      @vyui/kit:
      • Forward icon classes/props through ActionSheet, Alert, Button, Tabs, Toast, ToggleGroup and DropdownMenu items, and fix Drawer/theme slot classes so drawer animations work again (#70).
  • @vyui/kitv0.0.3

    @vyui/kit v0.0.3

    Patch Changes

    • Add Avatar — Lynx-native @vyui/core primitives (AvatarRoot / AvatarImage / AvatarFallback). AvatarRoot provides image load-status context; AvatarImage renders a Lynx <image> and downgrades to the error state on binderror (@error); AvatarFallback shows when no image is loaded, with a delayMs flash-avoidance delay. (#46)
      Refactor @vyui/kit's VyAvatar to compose the new core primitives for behaviour (load-status + fallback) while keeping its public AvatarProps API, initials derivation, chip overlay, theming, and AvatarGroup size/color inheritance unchanged.
    • Configurable semantic colors (nuxt/ui-style), defined once and extensible. (#48)
      • Single source of truth theme/color-constants.js (shared by themes + Tailwind preset); neutral split out of the configurable COLORS list and appended automatically (nuxt/ui parity).
      • Theme files are now builder functions (colors) => themeObject; useStyledComponent invokes them with the resolved list so appConfig.ui.colors configures the set at runtime.
      • @vyui/kit/tailwind adds a createVyuiPreset({ colors }) factory; the default export is unchanged.
      • True type parity via the augmentable VyuiColorRegistry interface — declare module '@vyui/kit' { interface VyuiColorRegistry { tertiary: true } } makes custom colors autocomplete + typo-check on every component color prop, no build plugin needed. scripts/gen-colors.mjs generates the registry augmentation + CSS-var block.
      • Fixes a latent ThemeTV widening that typed color (and other variants) as PropertyKey on useStyledComponent-based components.

      Breaking: theme default exports changed from objects to builder functions; COLORS no longer includes neutral (use ALL_COLORS).
    • Fixes from #67, #68 and #70. (#71)
      @vyui/core:
      • Icon: reject color values that could inject SVG markup when resolving icon sources (#67).
      • Sheet: multi-snap drag now settles to the nearest snap point, with main-thread usage fixes across SheetContentImpl, Draggable and useDragGesture (#68).
      • Primitive: treat image as a self-closing leaf — Vue's empty-slot fragment/comment anchors were materialized as real children by vue-lynx, and a native <image> with any child fails to render (native-only breakage; lynx-web tolerated it) (#70).

      @vyui/kit:
      • Forward icon classes/props through ActionSheet, Alert, Button, Tabs, Toast, ToggleGroup and DropdownMenu items, and fix Drawer/theme slot classes so drawer animations work again (#70).
    • Fix stranded foreground colors on Lynx (enableCSSInheritance: false). Color set on a wrapping <view> slot never reached the nested text/icon, so it rendered in the default color — invisible on dark/colored surfaces (e.g. a neutral-solid button or solid card). (#52)
      Foreground text-* now lands on the text-bearing slots (label / title / description / icon / input value) across input, textarea, numberField, select, combobox, toggle, toggleGroup, chip, islandButton, card, accordion, dropdownMenu, tabs, stepper. State-driven colors on child elements use the group-data-[state=…] form, and the Tailwind preset safelist is widened to cover those variants so they aren't purged.
    • Updated dependencies [1b0d3bc, 1b0d3bc, 9a0241c]:
      • @vyui/core@0.0.5
  • @vyui/corev0.0.4

    @vyui/core v0.0.4

    Patch Changes

    • Add NumberField — headless @vyui/core primitive (NumberFieldRoot / NumberFieldInput / NumberFieldIncrement / NumberFieldDecrement) with min/max/step, clamp/snap and decimal-precision handling, plus a styled VyNumberField in @vyui/kit. (#44)
      Fix Input not reflecting programmatic value changes on native Lynx — controlled updates that don't originate from typing are now pushed through the imperative setValue path (the reactive value binding is initial-only on a native <input>). This makes NumberField's increment/decrement buttons update the field on iOS/Android, not just web.
      Avatar now falls back to initials/icon when its image fails to load (wires the Lynx <image> binderror event).
      Document VyCombobox as the autocomplete pattern — searchable filtering over a fixed set covers the use case, so there is no separate Autocomplete component.
      Widen @vyui/kit's @vyui/core peer-dependency range from ^ to ~ so it tracks 0.0.x core patches without forcing a major bump.
  • @vyui/kitv0.0.2

    NumberField, Island DX & polish

    @vyui/kit@0.0.2 adds a component, sharpens an existing one, and fixes a handful of native-Lynx rough edges.

    NumberField — a new headless @vyui/core primitive (NumberFieldRoot / NumberFieldInput / NumberFieldIncrement / NumberFieldDecrement) with min/max/step, clamp/snap and decimal-precision handling, plus a styled VyNumberField in @vyui/kit.

    Island gets a clearer API and better defaults. A new layer prop (overlay / base / inline) splits stacking from placement: position now only picks the viewport edge (top / bottom), while layer decides whether the island floats over content, sits on a low layer beneath modals and drawers, or drops into normal flow for a parent to place. Floating is applied via an inline style, so a lone <VyIsland> hovers with no wrapper on Lynx. Out of the box Island defaults to overlay and IslandGroup to bottom, so both float sensibly with zero config.

    Fixes & docs

    • Input now reflects programmatic value changes on native Lynx — controlled updates that don't come from typing are pushed through the imperative setValue path, so NumberField's increment/decrement work on iOS and Android, not just web.
    • Avatar falls back to initials/icon when its image fails to load, wiring the Lynx <image> binderror event.
    • VyCombobox is documented as the autocomplete pattern — searchable filtering covers the use case, so there's no separate Autocomplete component.
    • The @vyui/core peer-dependency range widens from ^ to ~, so kit tracks 0.0.x core patches without forcing a major bump.
  • @vyui/corev0.0.3

    Lynx-native a11y & shared gestures

    Accessibility is wired through Lynx-native APIs instead of DOM assumptions, and the Swiper's gesture physics is extracted into a shared engine behind useDragGesture with a generic pickSnap helper — ready to power any swipe-driven primitive.

  • @vyui/kitv0.0.1

    Styled Button, Switch & Tabs

    @vyui/kit publishes its first styled components — Button, Switch, and Tabs — composed on top of @vyui/core primitives. Available now on npm as @vyui/kit@0.0.1.

  • @vyui/corev0.0.2

    Performance & packaging

    Icon resolution is memoized across instances to cut repeated work, with dependency pruning and packaging hardening to keep @vyui/core lean and safe to install.

  • @vyui/corev0.0.1

    First release

    @vyui/core publishes its first primitives: behavioural, accessible building blocks that run natively on Lynx and on the web from a single Vue codebase. Zero styling — compose them yourself or reach for @vyui/kit.

  • @vyui/kitInitial

    Kit scaffolded

    @vyui/kit is scaffolded as part of the monorepo, sitting alongside @vyui/core and the documentation site — the home for opinionated, themed components.