Skip to content

Latest commit

 

History

History
65 lines (42 loc) · 1.22 KB

File metadata and controls

65 lines (42 loc) · 1.22 KB

Designer API

The @object-ui/designer package provides a visual drag-and-drop editor for creating Object UI schemas.

::: warning Coming Soon The Designer is planned for release in Q3 2026. This documentation is a preview. :::

Planned Features

Visual Editor

import { Designer } from '@object-ui/designer'

function App() {
  const [schema, setSchema] = useState(null)
  
  return (
    <Designer
      schema={schema}
      onChange={setSchema}
    />
  )
}

Component Palette

Drag components from the palette to the canvas.

Property Editor

Edit component properties visually with a sidebar panel.

Real-time Preview

See your changes instantly with live preview.

AI Assistant

Generate schemas using natural language:

<Designer
  enableAI={true}
  aiPrompt="Create a user registration form"
/>

Collaboration

Real-time multi-user editing like Google Docs.

Stay Updated

Want to be notified when Designer launches?

Roadmap

See the full roadmap for Designer features and timeline.