Skip to content

v0.7.0

Latest

Choose a tag to compare

@lneugebauer lneugebauer released this 21 Apr 09:47
beb35a5

What's Changed

Next.js 16 compatibility

Breaking Changes

Styleguide CSS must now be imported explicitly

The styleguide CSS stylesheet is no longer imported automatically by Layout.tsx.

Before — worked automatically, no action needed.

After — you must add one import to your styleguide layout file:

import '@networkteam/zebra-utils/styleguide/styles.css';

Migrate automatically — paste this prompt into your AI coding assistant (Claude Code, Cursor, Copilot, etc.):

Find the styleguide layout file in this Next.js project (typically app/styleguide/[[...slug]]/layout.tsx) and add import '@networkteam/zebra-utils/styleguide/styles.css'; as the first line if it's not already present.