Skip to content

Commit 0cac5af

Browse files
Copilothotlong
andcommitted
Rename data-object to plugin-object to follow naming convention
Co-authored-by: hotlong <50353452+hotlong@users.noreply.github.com>
1 parent 0f3fd52 commit 0cac5af

10 files changed

Lines changed: 77 additions & 76 deletions

File tree

CHANGELOG.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
### Added
1111

12-
- **New Package**: `@object-ui/data-object` - ObjectQL-specific components for automatic table and form generation
12+
- **New Plugin**: `@object-ui/plugin-object` - ObjectQL plugin for automatic table and form generation
1313
- `ObjectTable`: Auto-generates tables from ObjectQL object schemas
1414
- `ObjectForm`: Auto-generates forms from ObjectQL object schemas with create/edit/view modes
1515
- Full TypeScript support with comprehensive type definitions
@@ -18,8 +18,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1818

1919
### Changed
2020

21-
- Updated `@objectql/sdk` from ^1.8.3 to ^1.9.1 in `@object-ui/data-objectql`
22-
- Updated `@objectql/types` from ^1.8.3 to ^1.9.1 in `@object-ui/data-objectql`
21+
- Updated `@objectql/sdk` from ^1.8.3 to ^1.9.1
22+
- Updated `@objectql/types` from ^1.8.3 to ^1.9.1
2323

2424
---
2525

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
# @object-ui/data-object
1+
# @object-ui/plugin-object
22

33
## 0.1.0 (2026-01-17)
44

55
### Features
66

7-
* **New Package**: Created `@object-ui/data-object` package for ObjectQL-specific components
7+
* **New Plugin**: Created `@object-ui/plugin-object` plugin for ObjectQL-specific components
88
* **ObjectTable**: Added ObjectTable component that automatically generates tables from ObjectQL object schemas
99
* Auto-fetches object metadata from ObjectQL
1010
* Auto-generates columns based on field definitions
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# @object-ui/data-object
1+
# @object-ui/plugin-object
22

3-
ObjectQL-specific components for Object UI, providing seamless integration with ObjectQL backends.
3+
ObjectQL plugin for Object UI, providing seamless integration with ObjectQL backends through auto-generated components.
44

55
## Features
66

@@ -10,7 +10,7 @@ ObjectQL-specific components for Object UI, providing seamless integration with
1010
## Installation
1111

1212
```bash
13-
npm install @object-ui/data-object @object-ui/data-objectql
13+
npm install @object-ui/plugin-object @object-ui/data-objectql
1414
```
1515

1616
## Usage
Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
2-
"name": "@object-ui/data-object",
2+
"name": "@object-ui/plugin-object",
33
"version": "0.1.0",
4-
"description": "ObjectQL-specific components for Object UI - Object Table and Object Form",
4+
"description": "ObjectQL plugin for Object UI - Object Table and Object Form components",
55
"type": "module",
66
"main": "./dist/index.js",
77
"module": "./dist/index.js",
@@ -31,15 +31,16 @@
3131
"objectql",
3232
"object-table",
3333
"object-form",
34-
"data-components",
34+
"plugin",
35+
"components",
3536
"typescript"
3637
],
3738
"author": "Object UI Team",
3839
"license": "MIT",
3940
"repository": {
4041
"type": "git",
4142
"url": "https://github.com/objectstack-ai/objectui.git",
42-
"directory": "packages/data-object"
43+
"directory": "packages/plugin-object"
4344
},
4445
"dependencies": {
4546
"@object-ui/types": "workspace:*",
File renamed without changes.
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
2-
* @object-ui/data-object
2+
* @object-ui/plugin-object
33
*
4-
* ObjectQL-specific components for Object UI.
4+
* ObjectQL plugin for Object UI.
55
* Provides seamless integration with ObjectQL backends through smart components
66
* that automatically generate UI from ObjectQL object schemas.
77
*
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export default defineConfig({
1414
build: {
1515
lib: {
1616
entry: resolve(__dirname, 'src/index.ts'),
17-
name: 'ObjectUIDataObject',
17+
name: 'ObjectUIPluginObject',
1818
formats: ['es', 'cjs'],
1919
fileName: (format) => format === 'es' ? 'index.js' : 'index.cjs',
2020
},

pnpm-lock.yaml

Lines changed: 61 additions & 61 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)