For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Resources
Get started
    • Overview
  • APIs and SDKs
    • Data API
    • Designer API
    • Browser API
  • Developer tools
    • MCP Server
    • Webflow Apps
    • Webflow CLI
    • DevLink
    • Webflow Cloud
    • Flowkit CSS Framework
    • Changelog
LogoLogo
Resources
Get started

Changelog

This is an overview of the changes to the Webflow APIs and related tools. To filter the list, select one or more tags.

December 17, 2025
December 17, 2025

December 17, 2025
December 17, 2025
Was this page helpful?
Previous

New Element Inspection API

Next
Built with

v1.9.0: Component decorator support

v1.9.0 adds support for component decorators, enabling you to wrap all components in your library with providers for global styles, CSS-in-JS libraries, or custom functionality.

Global decorators

Configure a global decorators file in your webflow.json to apply decorators across all components:

webflow.json
1{
2 "library": {
3 "globals": "./src/globals.ts"
4 }
5}

The CLI will automatically wrap all components with the decorators exported from your globals file during the build process.

Learn more in the component decorators documentation.

Component decorators

This update introduces component decorators, a new pattern for applying global styles and wrapping components with providers. Configure globally to apply to every component in your library or locally to a single component.

Packages:

  • @webflow/webflow-cli 1.9.0
  • @webflow/react 1.1.0
  • @webflow/data-types 1.1.0
  • @webflow/emotion-utils 1.1.0
  • @webflow/styled-components-utils 1.1.0

Global component decorators

Instead of importing styles or adding decorators to each component individually, you can now configure them once in a global decorators file.

Configure in webflow.json:

webflow.json
1{
2 "library": {
3 "globals": "./src/globals.ts"
4 }
5}

Global styles

Import CSS once and apply it to all components:

src/globals.ts
1import "./globals.css";

CSS-in-JS libraries

For Emotion and styled-components, export the pre-built decorators to inject styles into the Shadow DOM:

src/globals.ts
1import { emotionShadowDomDecorator } from "@webflow/emotion-utils";
2
3export const decorators = [emotionShadowDomDecorator];

Pre-built decorators:

  • emotionShadowDomDecorator from @webflow/emotion-utils
  • styledComponentsShadowDomDecorator from @webflow/styled-components-utils

See more on pre-built decorators in the frameworks and libraries guide.

Custom decorators

Create custom decorators for error handling, analytics, or other cross-cutting concerns:

src/globals.ts
1import "./globals.css";
2import { errorBoundaryDecorator } from "./ErrorBoundary";
3
4export const decorators = [errorBoundaryDecorator];

Apply decorators to a single component

To apply decorators to a single component, add a decorators property to the declareComponent configuration object.

Button.webflow.tsx
1import { declareComponent } from '@webflow/react';
2import { Button } from './Button';
3import { errorBoundaryDecorator } from "./ErrorBoundary";
4
5export default declareComponent({Button,{
6 name: "Button",
7 decorators: [errorBoundaryDecorator],
8});

Learn more in the component decorators documentation.