@@ -261,16 +261,16 @@ Object UI is a modular monorepo with packages designed for specific use cases:
261261| ---------| -------------| ------|
262262| ** [@object-ui/cli](./packages/cli)** | CLI tool for building apps from JSON schemas | 25KB |
263263| ** [@object-ui/types](./packages/types)** | TypeScript definitions and protocol specs | 10KB |
264- | ** [@object-ui/core](./packages/core)** | Core logic, validation, registry (Zero React) | 20KB |
264+ | ** [@object-ui/core](./packages/core)** | Core logic, validation, registry, ObjectStack adapter | 20KB |
265265| ** [@object-ui/react](./packages/react)** | React bindings and ` SchemaRenderer` | 15KB |
266266| ** [@object-ui/components](./packages/components)** | Standard UI components (Tailwind + Shadcn) | 50KB |
267267| ** [@object-ui/designer](./packages/designer)** | Visual drag-and-drop schema editor | 80KB |
268- | ** [@object-ui/data-objectql](./packages/data-objectql)** | ObjectQL API adapter for data integration | 15KB |
269268| ** [vscode-extension](./packages/vscode-extension)** | VSCode extension for schema development | 32KB |
270269
271270** Plugins** (lazy-loaded):
272271- ` @object-ui/plugin-charts` - Chart components (Chart.js)
273272- ` @object-ui/plugin-editor` - Rich text editor components
273+ - ` @object-ui/plugin-object` - ObjectStack-aware table and form components
274274
275275** Developer Tools** :
276276- ** [VSCode Extension](./packages/vscode-extension)** - IntelliSense, live preview, validation, and snippets for Object UI schemas
@@ -279,16 +279,16 @@ Object UI is a modular monorepo with packages designed for specific use cases:
279279
280280Object UI is designed to work with any backend through its universal DataSource interface:
281281
282- # ## ObjectQL Integration
282+ # ## ObjectStack Integration
283283
284284` ` ` bash
285- npm install @object-ui/data-objectql
285+ npm install @object-ui/core
286286` ` `
287287
288288` ` ` typescript
289- import { ObjectQLDataSource } from ' @object-ui/data-objectql ' ;
289+ import { createObjectStackAdapter } from ' @object-ui/core ' ;
290290
291- const dataSource = new ObjectQLDataSource ({
291+ const dataSource = createObjectStackAdapter ({
292292 baseUrl: ' https://api.example.com' ,
293293 token: ' your-auth-token'
294294});
@@ -297,8 +297,6 @@ const dataSource = new ObjectQLDataSource({
297297< SchemaRenderer schema={schema} dataSource={dataSource} />
298298` ` `
299299
300- [** ObjectQL Integration Guide →** ](./docs/integration/objectql.md)
301-
302300# ## Custom Data Sources
303301
304302You can create adapters for any backend (REST, GraphQL, Firebase, etc.) by implementing the ` DataSource` interface:
0 commit comments