ResourcesUpdated May 3, 2026

Changelog

Public release history for the FroggDesign and EnterUI packages.

The four publishable packages follow Semantic Versioning and ship through Changesets. Every release notes its scope, changes, and any migration steps.

#Latest

PackageTypeStatus
@froggdesign/enter-uiReact component libraryInitial public surface
@froggdesign/enter-ui-utilsShared utilities (cn, helpers)Initial public surface
@froggdesign/themeCSS variables for tokens, light, and darkInitial public surface
@froggdesign/tokensRaw design token valuesInitial public surface

#Release policy

Every public package change is classified before it ships.

  • Patch — bugfix, accessibility correction, visual refinement, or documentation update with no public API change.
  • Minor — additive change. New components, new tokens, new CSS variables, additional props, or new exports. Existing usage keeps working.
  • Major — breaking change. Removed or renamed exports, removed/renamed CSS classes, removed tokens, or behavior changes that require consumer updates. Always paired with migration notes.

A Changesets entry is required for every public-package change. App-only changes are not gated through Changesets.

#How to update

Pull the latest stable releases from npm:

Code
pnpm update @froggdesign/enter-ui @froggdesign/theme

Update everything in the FroggDesign surface together:

Code
pnpm update @froggdesign/enter-ui @froggdesign/enter-ui-utils @froggdesign/theme @froggdesign/tokens

If you pin exact versions, replace update with add and the version range you want.

#Reading release notes

  • Each release ships with a Changesets-generated note in the package CHANGELOG.md.
  • Breaking changes always include a migration block.
  • For deprecated APIs, the previous release lists the replacement before removal.

#See also