diff --git a/.changeset/record-drill-in-breadcrumb-trail.md b/.changeset/record-drill-in-breadcrumb-trail.md deleted file mode 100644 index 35390d643..000000000 --- a/.changeset/record-drill-in-breadcrumb-trail.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -'@object-ui/app-shell': minor ---- - -Keep a clickable path back when drilling from a record into a related child record (objectui "点击子表标题跳转后如何返回"). - -Clicking a related sub-table row opens the child record's detail page, but that page dropped all trace of where you came from: its breadcrumb only led to the child object's *list* (never the parent record), and the record body's built-in Back button is suppressed on the schema-rendered surface. From a related-list drill-in the only way back was the browser Back button. - -- **New reserved `?from=` URL param carries the ancestor trail.** When you open a related record (both the synth `RelatedRecordActionsBridge.onView` path and the legacy `RecordDetailView` `onRowClick` path), the parent record is appended to a compact, refresh- and share-safe trail encoded in the URL. Nested drill-ins accumulate (`Account → Invoice → Invoice Line`); depth is capped at 8 and titles truncated so the URL can't grow unbounded, and a trailing self-reference is deduped. Codec (`encodeRecordTrail`/`decodeRecordTrail`/`appendRecordTrail`/`buildRecordTrailHref`) is total — a malformed value yields no ancestor crumbs rather than throwing. -- **The top-bar breadcrumb renders the trail as clickable segments.** A record route with a `?from=` trail now shows `Account → #parent → Invoice → #child`, each ancestor an `object-list → record` pair that links back, with mid-path crumbs preserving the ancestors above them. -- **The record body shows an inline "← back to parent" link** derived from the trail's nearest ancestor, so the immediate-parent affordance survives refresh and shared links (previously it relied on in-session history state that nothing populated for this flow). diff --git a/.changeset/studio-source-tab-menu-deeplink.md b/.changeset/studio-source-tab-menu-deeplink.md deleted file mode 100644 index 75e816922..000000000 --- a/.changeset/studio-source-tab-menu-deeplink.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -'@object-ui/app-shell': minor ---- - -Studio Interfaces: move the source-page code editor into a "Source" inspector tab, silence its bogus TypeScript errors, and deep-link menu selection. - -For `kind:'html'`/`kind:'react'` pages (a `source` string, not a block tree), the code editor now lives in a dedicated **Source** tab in the right-hand properties panel while the canvas shows only the live preview; edits flow through the shared draft so the preview stays in sync. The `SourcePageEditor` gains a `mode` prop (`split` | `editor` | `preview`) to render the halves independently, and a `beforeMount` hook disables the Monaco TypeScript worker's semantic/syntax validation (and configures JSX) so JSX-flavoured HTML — intrinsic tags like ``, no `import React`, `style={{…}}` object literals — no longer floods the gutter with meaningless red squiggles (the live preview and server-side validation remain the source of truth). Selecting a menu now records the open surface as `?surface=:`, so the design target is shareable and survives a reload instead of snapping back to the first nav leaf. diff --git a/apps/console/CHANGELOG.md b/apps/console/CHANGELOG.md index cec0fb3f1..455936bb6 100644 --- a/apps/console/CHANGELOG.md +++ b/apps/console/CHANGELOG.md @@ -1,5 +1,12 @@ # @object-ui/console +## 12.1.0 + +### Patch Changes + +- @object-ui/react-runtime@12.1.0 +- @object-ui/sdui-parser@12.1.0 + ## 12.0.0 ### Major Changes diff --git a/apps/console/package.json b/apps/console/package.json index b29b66805..f2fced350 100644 --- a/apps/console/package.json +++ b/apps/console/package.json @@ -1,6 +1,6 @@ { "name": "@object-ui/console", - "version": "12.0.0", + "version": "12.1.0", "description": "ObjectStack Console — opinionated, fork-ready runtime console built on @object-ui/app-shell with the full plugin set wired up. Ships as a Hono UI plugin serving a pre-built SPA.", "license": "MIT", "type": "module", diff --git a/packages/app-shell/CHANGELOG.md b/packages/app-shell/CHANGELOG.md index 6d1999b50..c020cebe1 100644 --- a/packages/app-shell/CHANGELOG.md +++ b/packages/app-shell/CHANGELOG.md @@ -1,5 +1,37 @@ # @object-ui/app-shell — Changelog +## 12.1.0 + +### Minor Changes + +- 572cc6b: Keep a clickable path back when drilling from a record into a related child record (objectui "点击子表标题跳转后如何返回"). + + Clicking a related sub-table row opens the child record's detail page, but that page dropped all trace of where you came from: its breadcrumb only led to the child object's _list_ (never the parent record), and the record body's built-in Back button is suppressed on the schema-rendered surface. From a related-list drill-in the only way back was the browser Back button. + + - **New reserved `?from=` URL param carries the ancestor trail.** When you open a related record (both the synth `RelatedRecordActionsBridge.onView` path and the legacy `RecordDetailView` `onRowClick` path), the parent record is appended to a compact, refresh- and share-safe trail encoded in the URL. Nested drill-ins accumulate (`Account → Invoice → Invoice Line`); depth is capped at 8 and titles truncated so the URL can't grow unbounded, and a trailing self-reference is deduped. Codec (`encodeRecordTrail`/`decodeRecordTrail`/`appendRecordTrail`/`buildRecordTrailHref`) is total — a malformed value yields no ancestor crumbs rather than throwing. + - **The top-bar breadcrumb renders the trail as clickable segments.** A record route with a `?from=` trail now shows `Account → #parent → Invoice → #child`, each ancestor an `object-list → record` pair that links back, with mid-path crumbs preserving the ancestors above them. + - **The record body shows an inline "← back to parent" link** derived from the trail's nearest ancestor, so the immediate-parent affordance survives refresh and shared links (previously it relied on in-session history state that nothing populated for this flow). + +- 23132ab: Studio Interfaces: move the source-page code editor into a "Source" inspector tab, silence its bogus TypeScript errors, and deep-link menu selection. + + For `kind:'html'`/`kind:'react'` pages (a `source` string, not a block tree), the code editor now lives in a dedicated **Source** tab in the right-hand properties panel while the canvas shows only the live preview; edits flow through the shared draft so the preview stays in sync. The `SourcePageEditor` gains a `mode` prop (`split` | `editor` | `preview`) to render the halves independently, and a `beforeMount` hook disables the Monaco TypeScript worker's semantic/syntax validation (and configures JSX) so JSX-flavoured HTML — intrinsic tags like ``, no `import React`, `style={{…}}` object literals — no longer floods the gutter with meaningless red squiggles (the live preview and server-side validation remain the source of truth). Selecting a menu now records the open surface as `?surface=:`, so the design target is shareable and survives a reload instead of snapping back to the first nav leaf. + +### Patch Changes + +- @object-ui/types@12.1.0 +- @object-ui/core@12.1.0 +- @object-ui/i18n@12.1.0 +- @object-ui/react@12.1.0 +- @object-ui/components@12.1.0 +- @object-ui/fields@12.1.0 +- @object-ui/layout@12.1.0 +- @object-ui/data-objectstack@12.1.0 +- @object-ui/auth@12.1.0 +- @object-ui/permissions@12.1.0 +- @object-ui/plugin-editor@12.1.0 +- @object-ui/collaboration@12.1.0 +- @object-ui/providers@12.1.0 + ## 12.0.0 ### Minor Changes diff --git a/packages/app-shell/package.json b/packages/app-shell/package.json index 2aef622ab..1a65abd8c 100644 --- a/packages/app-shell/package.json +++ b/packages/app-shell/package.json @@ -1,6 +1,6 @@ { "name": "@object-ui/app-shell", - "version": "12.0.0", + "version": "12.1.0", "type": "module", "license": "MIT", "description": "Minimal application shell for ObjectUI - framework-agnostic rendering engine", diff --git a/packages/auth/CHANGELOG.md b/packages/auth/CHANGELOG.md index c953b3caa..f5542d4a8 100644 --- a/packages/auth/CHANGELOG.md +++ b/packages/auth/CHANGELOG.md @@ -1,5 +1,11 @@ # @object-ui/auth +## 12.1.0 + +### Patch Changes + +- @object-ui/types@12.1.0 + ## 12.0.0 ### Patch Changes diff --git a/packages/auth/package.json b/packages/auth/package.json index 9613ba0c6..35f6ce38f 100644 --- a/packages/auth/package.json +++ b/packages/auth/package.json @@ -1,6 +1,6 @@ { "name": "@object-ui/auth", - "version": "12.0.0", + "version": "12.1.0", "type": "module", "license": "MIT", "description": "Authentication system for Object UI with AuthProvider, useAuth hook, AuthGuard, and form components.", diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index 4c6bde396..7cb7014b9 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -1,5 +1,13 @@ # @object-ui/cli +## 12.1.0 + +### Patch Changes + +- @object-ui/types@12.1.0 +- @object-ui/react@12.1.0 +- @object-ui/components@12.1.0 + ## 12.0.0 ### Patch Changes diff --git a/packages/cli/package.json b/packages/cli/package.json index 82aae69c1..21dc18980 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "@object-ui/cli", - "version": "12.0.0", + "version": "12.1.0", "description": "Standalone CLI for Object UI — scaffold, develop, build and validate JSON/YAML schema-driven applications.", "type": "module", "homepage": "https://www.objectui.org/docs/utilities/cli", diff --git a/packages/collaboration/CHANGELOG.md b/packages/collaboration/CHANGELOG.md index df166eebd..0d49a0346 100644 --- a/packages/collaboration/CHANGELOG.md +++ b/packages/collaboration/CHANGELOG.md @@ -1,5 +1,11 @@ # @object-ui/collaboration +## 12.1.0 + +### Patch Changes + +- @object-ui/types@12.1.0 + ## 12.0.0 ### Patch Changes diff --git a/packages/collaboration/package.json b/packages/collaboration/package.json index 7803e9ff3..11cfc936e 100644 --- a/packages/collaboration/package.json +++ b/packages/collaboration/package.json @@ -1,6 +1,6 @@ { "name": "@object-ui/collaboration", - "version": "12.0.0", + "version": "12.1.0", "type": "module", "license": "MIT", "description": "Real-time collaboration for Object UI with presence tracking, live cursors, conflict resolution, and comment threads.", diff --git a/packages/components/CHANGELOG.md b/packages/components/CHANGELOG.md index 657720851..e41bc87fa 100644 --- a/packages/components/CHANGELOG.md +++ b/packages/components/CHANGELOG.md @@ -1,5 +1,16 @@ # @object-ui/components +## 12.1.0 + +### Patch Changes + +- @object-ui/types@12.1.0 +- @object-ui/core@12.1.0 +- @object-ui/i18n@12.1.0 +- @object-ui/react@12.1.0 +- @object-ui/react-runtime@12.1.0 +- @object-ui/sdui-parser@12.1.0 + ## 12.0.0 ### Minor Changes diff --git a/packages/components/package.json b/packages/components/package.json index 7c2f27a74..95d682fc7 100644 --- a/packages/components/package.json +++ b/packages/components/package.json @@ -1,6 +1,6 @@ { "name": "@object-ui/components", - "version": "12.0.0", + "version": "12.1.0", "type": "module", "license": "MIT", "description": "Standard UI component library for Object UI, built with Shadcn UI + Tailwind CSS", diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index e049b9b61..1e2b51e17 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -1,5 +1,11 @@ # @object-ui/core +## 12.1.0 + +### Patch Changes + +- @object-ui/types@12.1.0 + ## 12.0.0 ### Minor Changes diff --git a/packages/core/package.json b/packages/core/package.json index 4f8f65f7b..a9ca0baf8 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@object-ui/core", - "version": "12.0.0", + "version": "12.1.0", "type": "module", "sideEffects": false, "license": "MIT", diff --git a/packages/create-plugin/CHANGELOG.md b/packages/create-plugin/CHANGELOG.md index 986fd08dd..ddccc1239 100644 --- a/packages/create-plugin/CHANGELOG.md +++ b/packages/create-plugin/CHANGELOG.md @@ -1,5 +1,7 @@ # @object-ui/create-plugin +## 12.1.0 + ## 12.0.0 ## 11.5.0 diff --git a/packages/create-plugin/package.json b/packages/create-plugin/package.json index 1a1e6f2f8..06879a89b 100644 --- a/packages/create-plugin/package.json +++ b/packages/create-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@object-ui/create-plugin", - "version": "12.0.0", + "version": "12.1.0", "description": "CLI tool to scaffold ObjectUI plugins", "type": "module", "license": "MIT", diff --git a/packages/data-objectstack/CHANGELOG.md b/packages/data-objectstack/CHANGELOG.md index 09acff2b2..6d7cd9d2a 100644 --- a/packages/data-objectstack/CHANGELOG.md +++ b/packages/data-objectstack/CHANGELOG.md @@ -1,5 +1,12 @@ # @object-ui/data-objectstack +## 12.1.0 + +### Patch Changes + +- @object-ui/types@12.1.0 +- @object-ui/core@12.1.0 + ## 12.0.0 ### Patch Changes diff --git a/packages/data-objectstack/package.json b/packages/data-objectstack/package.json index f15288df1..64fdc7a17 100644 --- a/packages/data-objectstack/package.json +++ b/packages/data-objectstack/package.json @@ -1,6 +1,6 @@ { "name": "@object-ui/data-objectstack", - "version": "12.0.0", + "version": "12.1.0", "description": "ObjectStack Data Adapter for Object UI", "license": "MIT", "type": "module", diff --git a/packages/fields/CHANGELOG.md b/packages/fields/CHANGELOG.md index 97b275ea5..f59b65f2d 100644 --- a/packages/fields/CHANGELOG.md +++ b/packages/fields/CHANGELOG.md @@ -1,5 +1,16 @@ # @object-ui/fields +## 12.1.0 + +### Patch Changes + +- @object-ui/types@12.1.0 +- @object-ui/core@12.1.0 +- @object-ui/i18n@12.1.0 +- @object-ui/react@12.1.0 +- @object-ui/components@12.1.0 +- @object-ui/providers@12.1.0 + ## 12.0.0 ### Minor Changes diff --git a/packages/fields/package.json b/packages/fields/package.json index bbe4fbe5a..e86b4c6e3 100644 --- a/packages/fields/package.json +++ b/packages/fields/package.json @@ -1,6 +1,6 @@ { "name": "@object-ui/fields", - "version": "12.0.0", + "version": "12.1.0", "description": "Field renderers and registry for Object UI", "license": "MIT", "type": "module", diff --git a/packages/i18n/CHANGELOG.md b/packages/i18n/CHANGELOG.md index 0ec44f33f..07f02b8c3 100644 --- a/packages/i18n/CHANGELOG.md +++ b/packages/i18n/CHANGELOG.md @@ -1,5 +1,7 @@ # @object-ui/i18n +## 12.1.0 + ## 12.0.0 ## 11.5.0 diff --git a/packages/i18n/package.json b/packages/i18n/package.json index 3522259d9..010bd3945 100644 --- a/packages/i18n/package.json +++ b/packages/i18n/package.json @@ -1,6 +1,6 @@ { "name": "@object-ui/i18n", - "version": "12.0.0", + "version": "12.1.0", "type": "module", "sideEffects": false, "license": "MIT", diff --git a/packages/layout/CHANGELOG.md b/packages/layout/CHANGELOG.md index 7aebda24b..dcfef8cde 100644 --- a/packages/layout/CHANGELOG.md +++ b/packages/layout/CHANGELOG.md @@ -1,5 +1,14 @@ # @object-ui/layout +## 12.1.0 + +### Patch Changes + +- @object-ui/types@12.1.0 +- @object-ui/core@12.1.0 +- @object-ui/react@12.1.0 +- @object-ui/components@12.1.0 + ## 12.0.0 ### Patch Changes diff --git a/packages/layout/package.json b/packages/layout/package.json index 5ffc2f4f5..70528c058 100644 --- a/packages/layout/package.json +++ b/packages/layout/package.json @@ -1,6 +1,6 @@ { "name": "@object-ui/layout", - "version": "12.0.0", + "version": "12.1.0", "type": "module", "sideEffects": false, "main": "dist/index.umd.cjs", diff --git a/packages/mobile/CHANGELOG.md b/packages/mobile/CHANGELOG.md index c4d583410..a13df0af7 100644 --- a/packages/mobile/CHANGELOG.md +++ b/packages/mobile/CHANGELOG.md @@ -1,5 +1,11 @@ # @object-ui/mobile +## 12.1.0 + +### Patch Changes + +- @object-ui/types@12.1.0 + ## 12.0.0 ### Patch Changes diff --git a/packages/mobile/package.json b/packages/mobile/package.json index 9530abcd4..6de2189db 100644 --- a/packages/mobile/package.json +++ b/packages/mobile/package.json @@ -1,6 +1,6 @@ { "name": "@object-ui/mobile", - "version": "12.0.0", + "version": "12.1.0", "type": "module", "license": "MIT", "description": "Mobile optimization for Object UI with responsive components, PWA support, and touch gesture handling.", diff --git a/packages/permissions/CHANGELOG.md b/packages/permissions/CHANGELOG.md index 031316c05..88d491a24 100644 --- a/packages/permissions/CHANGELOG.md +++ b/packages/permissions/CHANGELOG.md @@ -1,5 +1,11 @@ # @object-ui/permissions +## 12.1.0 + +### Patch Changes + +- @object-ui/types@12.1.0 + ## 12.0.0 ### Patch Changes diff --git a/packages/permissions/package.json b/packages/permissions/package.json index 99d7b0617..adc9876b7 100644 --- a/packages/permissions/package.json +++ b/packages/permissions/package.json @@ -1,6 +1,6 @@ { "name": "@object-ui/permissions", - "version": "12.0.0", + "version": "12.1.0", "type": "module", "license": "MIT", "description": "RBAC permission system for Object UI with object/field/row-level access control, permission guards, and hooks.", diff --git a/packages/plugin-ai/CHANGELOG.md b/packages/plugin-ai/CHANGELOG.md index 18405a258..f66dd40b4 100644 --- a/packages/plugin-ai/CHANGELOG.md +++ b/packages/plugin-ai/CHANGELOG.md @@ -1,5 +1,14 @@ # @object-ui/plugin-ai +## 12.1.0 + +### Patch Changes + +- @object-ui/types@12.1.0 +- @object-ui/core@12.1.0 +- @object-ui/react@12.1.0 +- @object-ui/components@12.1.0 + ## 12.0.0 ### Patch Changes diff --git a/packages/plugin-ai/package.json b/packages/plugin-ai/package.json index 5d46d7680..3f400ff42 100644 --- a/packages/plugin-ai/package.json +++ b/packages/plugin-ai/package.json @@ -1,6 +1,6 @@ { "name": "@object-ui/plugin-ai", - "version": "12.0.0", + "version": "12.1.0", "type": "module", "main": "dist/index.umd.cjs", "module": "dist/index.js", diff --git a/packages/plugin-calendar/CHANGELOG.md b/packages/plugin-calendar/CHANGELOG.md index b99334b68..6beb7f29f 100644 --- a/packages/plugin-calendar/CHANGELOG.md +++ b/packages/plugin-calendar/CHANGELOG.md @@ -1,5 +1,18 @@ # @object-ui/plugin-calendar +## 12.1.0 + +### Patch Changes + +- @object-ui/types@12.1.0 +- @object-ui/core@12.1.0 +- @object-ui/i18n@12.1.0 +- @object-ui/react@12.1.0 +- @object-ui/components@12.1.0 +- @object-ui/fields@12.1.0 +- @object-ui/mobile@12.1.0 +- @object-ui/plugin-detail@12.1.0 + ## 12.0.0 ### Patch Changes diff --git a/packages/plugin-calendar/package.json b/packages/plugin-calendar/package.json index b3a586b6c..6fc9ddab5 100644 --- a/packages/plugin-calendar/package.json +++ b/packages/plugin-calendar/package.json @@ -1,6 +1,6 @@ { "name": "@object-ui/plugin-calendar", - "version": "12.0.0", + "version": "12.1.0", "type": "module", "license": "MIT", "description": "Calendar view plugins for Object UI - includes both ObjectQL-integrated and standalone calendar components", diff --git a/packages/plugin-charts/CHANGELOG.md b/packages/plugin-charts/CHANGELOG.md index ea618054b..6cf0d8fb8 100644 --- a/packages/plugin-charts/CHANGELOG.md +++ b/packages/plugin-charts/CHANGELOG.md @@ -1,5 +1,15 @@ # @object-ui/plugin-charts +## 12.1.0 + +### Patch Changes + +- @object-ui/types@12.1.0 +- @object-ui/core@12.1.0 +- @object-ui/i18n@12.1.0 +- @object-ui/react@12.1.0 +- @object-ui/components@12.1.0 + ## 12.0.0 ### Patch Changes diff --git a/packages/plugin-charts/package.json b/packages/plugin-charts/package.json index d11283696..e3507eb71 100644 --- a/packages/plugin-charts/package.json +++ b/packages/plugin-charts/package.json @@ -1,6 +1,6 @@ { "name": "@object-ui/plugin-charts", - "version": "12.0.0", + "version": "12.1.0", "type": "module", "license": "MIT", "description": "Chart components plugin for Object UI, powered by Recharts", diff --git a/packages/plugin-chatbot/CHANGELOG.md b/packages/plugin-chatbot/CHANGELOG.md index 573ff9195..4c1ffb112 100644 --- a/packages/plugin-chatbot/CHANGELOG.md +++ b/packages/plugin-chatbot/CHANGELOG.md @@ -1,5 +1,14 @@ # @object-ui/plugin-chatbot +## 12.1.0 + +### Patch Changes + +- @object-ui/types@12.1.0 +- @object-ui/core@12.1.0 +- @object-ui/react@12.1.0 +- @object-ui/components@12.1.0 + ## 12.0.0 ### Patch Changes diff --git a/packages/plugin-chatbot/package.json b/packages/plugin-chatbot/package.json index 89f6260c2..cdfce30f0 100644 --- a/packages/plugin-chatbot/package.json +++ b/packages/plugin-chatbot/package.json @@ -1,6 +1,6 @@ { "name": "@object-ui/plugin-chatbot", - "version": "12.0.0", + "version": "12.1.0", "type": "module", "license": "MIT", "description": "Chatbot interface plugin for Object UI", diff --git a/packages/plugin-dashboard/CHANGELOG.md b/packages/plugin-dashboard/CHANGELOG.md index 0e9d98f41..31d092039 100644 --- a/packages/plugin-dashboard/CHANGELOG.md +++ b/packages/plugin-dashboard/CHANGELOG.md @@ -1,5 +1,16 @@ # @object-ui/plugin-dashboard +## 12.1.0 + +### Patch Changes + +- @object-ui/types@12.1.0 +- @object-ui/core@12.1.0 +- @object-ui/i18n@12.1.0 +- @object-ui/react@12.1.0 +- @object-ui/components@12.1.0 +- @object-ui/fields@12.1.0 + ## 12.0.0 ### Patch Changes diff --git a/packages/plugin-dashboard/package.json b/packages/plugin-dashboard/package.json index 4dc1f27ab..bfcb6a913 100644 --- a/packages/plugin-dashboard/package.json +++ b/packages/plugin-dashboard/package.json @@ -1,6 +1,6 @@ { "name": "@object-ui/plugin-dashboard", - "version": "12.0.0", + "version": "12.1.0", "type": "module", "license": "MIT", "description": "Dashboard plugin for Object UI", diff --git a/packages/plugin-designer/CHANGELOG.md b/packages/plugin-designer/CHANGELOG.md index 35e7a2c85..ee2140ef0 100644 --- a/packages/plugin-designer/CHANGELOG.md +++ b/packages/plugin-designer/CHANGELOG.md @@ -1,5 +1,19 @@ # @object-ui/plugin-designer +## 12.1.0 + +### Patch Changes + +- @object-ui/types@12.1.0 +- @object-ui/core@12.1.0 +- @object-ui/i18n@12.1.0 +- @object-ui/react@12.1.0 +- @object-ui/components@12.1.0 +- @object-ui/fields@12.1.0 +- @object-ui/data-objectstack@12.1.0 +- @object-ui/plugin-form@12.1.0 +- @object-ui/plugin-grid@12.1.0 + ## 12.0.0 ### Patch Changes diff --git a/packages/plugin-designer/package.json b/packages/plugin-designer/package.json index 5cd3e3f7b..187ac6a1d 100644 --- a/packages/plugin-designer/package.json +++ b/packages/plugin-designer/package.json @@ -1,6 +1,6 @@ { "name": "@object-ui/plugin-designer", - "version": "12.0.0", + "version": "12.1.0", "type": "module", "license": "MIT", "description": "Visual designer plugin for Object UI with page, data model, process, and report designers plus collaborative editing.", diff --git a/packages/plugin-detail/CHANGELOG.md b/packages/plugin-detail/CHANGELOG.md index 0996e01c8..b572f043f 100644 --- a/packages/plugin-detail/CHANGELOG.md +++ b/packages/plugin-detail/CHANGELOG.md @@ -1,5 +1,11 @@ # @object-ui/plugin-detail +## 12.1.0 + +### Patch Changes + +- @object-ui/i18n@12.1.0 + ## 12.0.0 ### Minor Changes diff --git a/packages/plugin-detail/package.json b/packages/plugin-detail/package.json index 7e41d981d..a2c64e063 100644 --- a/packages/plugin-detail/package.json +++ b/packages/plugin-detail/package.json @@ -1,6 +1,6 @@ { "name": "@object-ui/plugin-detail", - "version": "12.0.0", + "version": "12.1.0", "type": "module", "license": "MIT", "description": "DetailView plugin for Object UI - comprehensive detail page with sections, tabs, and related lists", diff --git a/packages/plugin-editor/CHANGELOG.md b/packages/plugin-editor/CHANGELOG.md index 9d45e4799..3634d584e 100644 --- a/packages/plugin-editor/CHANGELOG.md +++ b/packages/plugin-editor/CHANGELOG.md @@ -1,5 +1,14 @@ # @object-ui/plugin-editor +## 12.1.0 + +### Patch Changes + +- @object-ui/types@12.1.0 +- @object-ui/core@12.1.0 +- @object-ui/react@12.1.0 +- @object-ui/components@12.1.0 + ## 12.0.0 ### Patch Changes diff --git a/packages/plugin-editor/package.json b/packages/plugin-editor/package.json index cc6ad7349..c7149d936 100644 --- a/packages/plugin-editor/package.json +++ b/packages/plugin-editor/package.json @@ -1,6 +1,6 @@ { "name": "@object-ui/plugin-editor", - "version": "12.0.0", + "version": "12.1.0", "type": "module", "license": "MIT", "description": "Rich text editor plugin for Object UI, powered by Monaco Editor", diff --git a/packages/plugin-form/CHANGELOG.md b/packages/plugin-form/CHANGELOG.md index 774a22307..a04b524d4 100644 --- a/packages/plugin-form/CHANGELOG.md +++ b/packages/plugin-form/CHANGELOG.md @@ -1,5 +1,17 @@ # @object-ui/plugin-form +## 12.1.0 + +### Patch Changes + +- @object-ui/types@12.1.0 +- @object-ui/core@12.1.0 +- @object-ui/i18n@12.1.0 +- @object-ui/react@12.1.0 +- @object-ui/components@12.1.0 +- @object-ui/fields@12.1.0 +- @object-ui/permissions@12.1.0 + ## 12.0.0 ### Minor Changes diff --git a/packages/plugin-form/package.json b/packages/plugin-form/package.json index c543523b4..3024e17fc 100644 --- a/packages/plugin-form/package.json +++ b/packages/plugin-form/package.json @@ -1,6 +1,6 @@ { "name": "@object-ui/plugin-form", - "version": "12.0.0", + "version": "12.1.0", "type": "module", "license": "MIT", "description": "Form plugin for Object UI", diff --git a/packages/plugin-gantt/CHANGELOG.md b/packages/plugin-gantt/CHANGELOG.md index 93cad83de..5edcd9a99 100644 --- a/packages/plugin-gantt/CHANGELOG.md +++ b/packages/plugin-gantt/CHANGELOG.md @@ -1,5 +1,17 @@ # @object-ui/plugin-gantt +## 12.1.0 + +### Patch Changes + +- @object-ui/types@12.1.0 +- @object-ui/core@12.1.0 +- @object-ui/i18n@12.1.0 +- @object-ui/react@12.1.0 +- @object-ui/components@12.1.0 +- @object-ui/fields@12.1.0 +- @object-ui/plugin-detail@12.1.0 + ## 12.0.0 ### Patch Changes diff --git a/packages/plugin-gantt/package.json b/packages/plugin-gantt/package.json index 9c34546b5..68443cabf 100644 --- a/packages/plugin-gantt/package.json +++ b/packages/plugin-gantt/package.json @@ -1,6 +1,6 @@ { "name": "@object-ui/plugin-gantt", - "version": "12.0.0", + "version": "12.1.0", "type": "module", "license": "MIT", "description": "Gantt chart plugin for Object UI", diff --git a/packages/plugin-grid/CHANGELOG.md b/packages/plugin-grid/CHANGELOG.md index bafcdec03..42a595835 100644 --- a/packages/plugin-grid/CHANGELOG.md +++ b/packages/plugin-grid/CHANGELOG.md @@ -1,5 +1,17 @@ # @object-ui/plugin-grid +## 12.1.0 + +### Patch Changes + +- @object-ui/types@12.1.0 +- @object-ui/core@12.1.0 +- @object-ui/i18n@12.1.0 +- @object-ui/react@12.1.0 +- @object-ui/components@12.1.0 +- @object-ui/fields@12.1.0 +- @object-ui/mobile@12.1.0 + ## 12.0.0 ### Patch Changes diff --git a/packages/plugin-grid/package.json b/packages/plugin-grid/package.json index 11b650c3a..85639ceae 100644 --- a/packages/plugin-grid/package.json +++ b/packages/plugin-grid/package.json @@ -1,6 +1,6 @@ { "name": "@object-ui/plugin-grid", - "version": "12.0.0", + "version": "12.1.0", "type": "module", "license": "MIT", "description": "Grid plugin for Object UI", diff --git a/packages/plugin-kanban/CHANGELOG.md b/packages/plugin-kanban/CHANGELOG.md index e88ce2d7d..bd555ddc6 100644 --- a/packages/plugin-kanban/CHANGELOG.md +++ b/packages/plugin-kanban/CHANGELOG.md @@ -1,5 +1,17 @@ # @object-ui/plugin-kanban +## 12.1.0 + +### Patch Changes + +- @object-ui/types@12.1.0 +- @object-ui/core@12.1.0 +- @object-ui/i18n@12.1.0 +- @object-ui/react@12.1.0 +- @object-ui/components@12.1.0 +- @object-ui/fields@12.1.0 +- @object-ui/plugin-detail@12.1.0 + ## 12.0.0 ### Patch Changes diff --git a/packages/plugin-kanban/package.json b/packages/plugin-kanban/package.json index 8b8bed642..3b8e601ce 100644 --- a/packages/plugin-kanban/package.json +++ b/packages/plugin-kanban/package.json @@ -1,6 +1,6 @@ { "name": "@object-ui/plugin-kanban", - "version": "12.0.0", + "version": "12.1.0", "type": "module", "license": "MIT", "description": "Kanban board plugin for Object UI, powered by dnd-kit", diff --git a/packages/plugin-list/CHANGELOG.md b/packages/plugin-list/CHANGELOG.md index 7744b91ea..fc9b6c442 100644 --- a/packages/plugin-list/CHANGELOG.md +++ b/packages/plugin-list/CHANGELOG.md @@ -1,5 +1,7 @@ # @object-ui/plugin-list +## 12.1.0 + ## 12.0.0 ### Patch Changes diff --git a/packages/plugin-list/package.json b/packages/plugin-list/package.json index 2835de249..9eec10c7b 100644 --- a/packages/plugin-list/package.json +++ b/packages/plugin-list/package.json @@ -1,6 +1,6 @@ { "name": "@object-ui/plugin-list", - "version": "12.0.0", + "version": "12.1.0", "type": "module", "license": "MIT", "description": "ListView plugin for Object UI - unified view component with view type switching", diff --git a/packages/plugin-map/CHANGELOG.md b/packages/plugin-map/CHANGELOG.md index 363f14223..aa5694c30 100644 --- a/packages/plugin-map/CHANGELOG.md +++ b/packages/plugin-map/CHANGELOG.md @@ -1,5 +1,14 @@ # @object-ui/plugin-map +## 12.1.0 + +### Patch Changes + +- @object-ui/types@12.1.0 +- @object-ui/core@12.1.0 +- @object-ui/react@12.1.0 +- @object-ui/components@12.1.0 + ## 12.0.0 ### Patch Changes diff --git a/packages/plugin-map/package.json b/packages/plugin-map/package.json index 6a605050a..82b45d38b 100644 --- a/packages/plugin-map/package.json +++ b/packages/plugin-map/package.json @@ -1,6 +1,6 @@ { "name": "@object-ui/plugin-map", - "version": "12.0.0", + "version": "12.1.0", "type": "module", "license": "MIT", "description": "Map visualization plugin for Object UI", diff --git a/packages/plugin-markdown/CHANGELOG.md b/packages/plugin-markdown/CHANGELOG.md index a42465997..03fbc539d 100644 --- a/packages/plugin-markdown/CHANGELOG.md +++ b/packages/plugin-markdown/CHANGELOG.md @@ -1,5 +1,14 @@ # @object-ui/plugin-markdown +## 12.1.0 + +### Patch Changes + +- @object-ui/types@12.1.0 +- @object-ui/core@12.1.0 +- @object-ui/react@12.1.0 +- @object-ui/components@12.1.0 + ## 12.0.0 ### Patch Changes diff --git a/packages/plugin-markdown/package.json b/packages/plugin-markdown/package.json index 4897ff362..9b4e129ac 100644 --- a/packages/plugin-markdown/package.json +++ b/packages/plugin-markdown/package.json @@ -1,6 +1,6 @@ { "name": "@object-ui/plugin-markdown", - "version": "12.0.0", + "version": "12.1.0", "type": "module", "license": "MIT", "description": "Markdown rendering plugin for Object UI, powered by react-markdown", diff --git a/packages/plugin-report/CHANGELOG.md b/packages/plugin-report/CHANGELOG.md index 2663b1780..da8590e4f 100644 --- a/packages/plugin-report/CHANGELOG.md +++ b/packages/plugin-report/CHANGELOG.md @@ -1,5 +1,17 @@ # @object-ui/plugin-report +## 12.1.0 + +### Patch Changes + +- @object-ui/types@12.1.0 +- @object-ui/core@12.1.0 +- @object-ui/i18n@12.1.0 +- @object-ui/react@12.1.0 +- @object-ui/components@12.1.0 +- @object-ui/fields@12.1.0 +- @object-ui/plugin-grid@12.1.0 + ## 12.0.0 ### Patch Changes diff --git a/packages/plugin-report/package.json b/packages/plugin-report/package.json index 717270ae7..f5722a2ff 100644 --- a/packages/plugin-report/package.json +++ b/packages/plugin-report/package.json @@ -1,6 +1,6 @@ { "name": "@object-ui/plugin-report", - "version": "12.0.0", + "version": "12.1.0", "type": "module", "main": "dist/index.umd.cjs", "module": "dist/index.js", diff --git a/packages/plugin-timeline/CHANGELOG.md b/packages/plugin-timeline/CHANGELOG.md index b2c6b7445..a370ba46f 100644 --- a/packages/plugin-timeline/CHANGELOG.md +++ b/packages/plugin-timeline/CHANGELOG.md @@ -1,5 +1,15 @@ # @object-ui/plugin-timeline +## 12.1.0 + +### Patch Changes + +- @object-ui/types@12.1.0 +- @object-ui/core@12.1.0 +- @object-ui/react@12.1.0 +- @object-ui/components@12.1.0 +- @object-ui/mobile@12.1.0 + ## 12.0.0 ### Patch Changes diff --git a/packages/plugin-timeline/package.json b/packages/plugin-timeline/package.json index 6b5201b34..066835480 100644 --- a/packages/plugin-timeline/package.json +++ b/packages/plugin-timeline/package.json @@ -1,6 +1,6 @@ { "name": "@object-ui/plugin-timeline", - "version": "12.0.0", + "version": "12.1.0", "type": "module", "license": "MIT", "description": "Timeline component plugin for Object UI", diff --git a/packages/plugin-tree/CHANGELOG.md b/packages/plugin-tree/CHANGELOG.md index 7ba8b126d..6fbaf9953 100644 --- a/packages/plugin-tree/CHANGELOG.md +++ b/packages/plugin-tree/CHANGELOG.md @@ -1,5 +1,14 @@ # @object-ui/plugin-tree +## 12.1.0 + +### Patch Changes + +- @object-ui/types@12.1.0 +- @object-ui/core@12.1.0 +- @object-ui/react@12.1.0 +- @object-ui/components@12.1.0 + ## 12.0.0 ### Patch Changes diff --git a/packages/plugin-tree/package.json b/packages/plugin-tree/package.json index fbae147f5..b59755c6b 100644 --- a/packages/plugin-tree/package.json +++ b/packages/plugin-tree/package.json @@ -1,6 +1,6 @@ { "name": "@object-ui/plugin-tree", - "version": "12.0.0", + "version": "12.1.0", "type": "module", "license": "MIT", "description": "Tree / tree-grid visualization plugin for Object UI", diff --git a/packages/plugin-view/CHANGELOG.md b/packages/plugin-view/CHANGELOG.md index c64b78331..c28caab4d 100644 --- a/packages/plugin-view/CHANGELOG.md +++ b/packages/plugin-view/CHANGELOG.md @@ -1,5 +1,17 @@ # @object-ui/plugin-view +## 12.1.0 + +### Patch Changes + +- @object-ui/types@12.1.0 +- @object-ui/core@12.1.0 +- @object-ui/i18n@12.1.0 +- @object-ui/react@12.1.0 +- @object-ui/components@12.1.0 +- @object-ui/plugin-form@12.1.0 +- @object-ui/plugin-grid@12.1.0 + ## 12.0.0 ### Patch Changes diff --git a/packages/plugin-view/package.json b/packages/plugin-view/package.json index e27a66d71..537de4614 100644 --- a/packages/plugin-view/package.json +++ b/packages/plugin-view/package.json @@ -1,6 +1,6 @@ { "name": "@object-ui/plugin-view", - "version": "12.0.0", + "version": "12.1.0", "type": "module", "license": "MIT", "description": "Object View plugin for Object UI", diff --git a/packages/providers/CHANGELOG.md b/packages/providers/CHANGELOG.md index 14d928404..7b3664ee0 100644 --- a/packages/providers/CHANGELOG.md +++ b/packages/providers/CHANGELOG.md @@ -1,5 +1,11 @@ # @object-ui/providers — Changelog +## 12.1.0 + +### Patch Changes + +- @object-ui/types@12.1.0 + ## 12.0.0 ### Patch Changes diff --git a/packages/providers/package.json b/packages/providers/package.json index 66a1506a2..3ffe3ff84 100644 --- a/packages/providers/package.json +++ b/packages/providers/package.json @@ -1,6 +1,6 @@ { "name": "@object-ui/providers", - "version": "12.0.0", + "version": "12.1.0", "type": "module", "license": "MIT", "description": "Reusable context providers for ObjectUI applications", diff --git a/packages/react-runtime/CHANGELOG.md b/packages/react-runtime/CHANGELOG.md index 885fb6a5f..8535fc65c 100644 --- a/packages/react-runtime/CHANGELOG.md +++ b/packages/react-runtime/CHANGELOG.md @@ -1,5 +1,7 @@ # @object-ui/react-runtime +## 12.1.0 + ## 12.0.0 ## 11.5.0 diff --git a/packages/react-runtime/package.json b/packages/react-runtime/package.json index 373fd5cd1..50b6d9953 100644 --- a/packages/react-runtime/package.json +++ b/packages/react-runtime/package.json @@ -1,6 +1,6 @@ { "name": "@object-ui/react-runtime", - "version": "12.0.0", + "version": "12.1.0", "type": "module", "sideEffects": false, "license": "MIT", diff --git a/packages/react/CHANGELOG.md b/packages/react/CHANGELOG.md index 807a49c2e..6a53d64fb 100644 --- a/packages/react/CHANGELOG.md +++ b/packages/react/CHANGELOG.md @@ -1,5 +1,14 @@ # @object-ui/react +## 12.1.0 + +### Patch Changes + +- @object-ui/types@12.1.0 +- @object-ui/core@12.1.0 +- @object-ui/i18n@12.1.0 +- @object-ui/data-objectstack@12.1.0 + ## 12.0.0 ### Patch Changes diff --git a/packages/react/package.json b/packages/react/package.json index 71d735383..6f4945f16 100644 --- a/packages/react/package.json +++ b/packages/react/package.json @@ -1,6 +1,6 @@ { "name": "@object-ui/react", - "version": "12.0.0", + "version": "12.1.0", "type": "module", "license": "MIT", "description": "React bindings and SchemaRenderer component for Object UI", diff --git a/packages/runner/CHANGELOG.md b/packages/runner/CHANGELOG.md index 5a91ed603..8ea7859ee 100644 --- a/packages/runner/CHANGELOG.md +++ b/packages/runner/CHANGELOG.md @@ -1,5 +1,16 @@ # @object-ui/runner +## 12.1.0 + +### Patch Changes + +- @object-ui/types@12.1.0 +- @object-ui/core@12.1.0 +- @object-ui/react@12.1.0 +- @object-ui/components@12.1.0 +- @object-ui/plugin-charts@12.1.0 +- @object-ui/plugin-kanban@12.1.0 + ## 12.0.0 ### Patch Changes diff --git a/packages/runner/package.json b/packages/runner/package.json index 9dcc24235..51b57668c 100644 --- a/packages/runner/package.json +++ b/packages/runner/package.json @@ -1,7 +1,7 @@ { "name": "@object-ui/runner", "private": false, - "version": "12.0.0", + "version": "12.1.0", "description": "Universal Object UI Application Runner", "type": "module", "homepage": "https://www.objectui.org/docs/utilities/runner", diff --git a/packages/sdui-parser/CHANGELOG.md b/packages/sdui-parser/CHANGELOG.md index 9fa7dc56f..707da041a 100644 --- a/packages/sdui-parser/CHANGELOG.md +++ b/packages/sdui-parser/CHANGELOG.md @@ -1,5 +1,7 @@ # @object-ui/sdui-parser +## 12.1.0 + ## 12.0.0 ## 11.5.0 diff --git a/packages/sdui-parser/package.json b/packages/sdui-parser/package.json index 53d72383e..befbc6ac4 100644 --- a/packages/sdui-parser/package.json +++ b/packages/sdui-parser/package.json @@ -1,6 +1,6 @@ { "name": "@object-ui/sdui-parser", - "version": "12.0.0", + "version": "12.1.0", "type": "module", "sideEffects": false, "license": "MIT", diff --git a/packages/tenant/CHANGELOG.md b/packages/tenant/CHANGELOG.md index 4592c699e..a64f9d53e 100644 --- a/packages/tenant/CHANGELOG.md +++ b/packages/tenant/CHANGELOG.md @@ -1,5 +1,11 @@ # @object-ui/tenant +## 12.1.0 + +### Patch Changes + +- @object-ui/types@12.1.0 + ## 12.0.0 ### Patch Changes diff --git a/packages/tenant/package.json b/packages/tenant/package.json index 3c34c2469..035493572 100644 --- a/packages/tenant/package.json +++ b/packages/tenant/package.json @@ -1,6 +1,6 @@ { "name": "@object-ui/tenant", - "version": "12.0.0", + "version": "12.1.0", "type": "module", "license": "MIT", "description": "Multi-tenancy support for Object UI with tenant isolation, scoped queries, and custom branding.", diff --git a/packages/types/CHANGELOG.md b/packages/types/CHANGELOG.md index 4def13392..f6d9f814c 100644 --- a/packages/types/CHANGELOG.md +++ b/packages/types/CHANGELOG.md @@ -1,5 +1,7 @@ # @object-ui/types +## 12.1.0 + ## 12.0.0 ### Minor Changes diff --git a/packages/types/package.json b/packages/types/package.json index 9c08538ed..55e87750a 100644 --- a/packages/types/package.json +++ b/packages/types/package.json @@ -1,6 +1,6 @@ { "name": "@object-ui/types", - "version": "12.0.0", + "version": "12.1.0", "description": "Pure TypeScript type definitions for Object UI - The Protocol Layer", "type": "module", "sideEffects": false, diff --git a/packages/vscode-extension/CHANGELOG.md b/packages/vscode-extension/CHANGELOG.md index c08ecf18c..ad092785b 100644 --- a/packages/vscode-extension/CHANGELOG.md +++ b/packages/vscode-extension/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## 12.1.0 + +### Patch Changes + +- @object-ui/types@12.1.0 +- @object-ui/core@12.1.0 + ## 12.0.0 ### Patch Changes diff --git a/packages/vscode-extension/package.json b/packages/vscode-extension/package.json index 2d7b03b99..a4cf63b04 100644 --- a/packages/vscode-extension/package.json +++ b/packages/vscode-extension/package.json @@ -2,7 +2,7 @@ "name": "object-ui", "displayName": "Object UI", "description": "VSCode extension for Object UI - Schema-driven UI development with IntelliSense, validation, and live preview", - "version": "12.0.0", + "version": "12.1.0", "publisher": "objectui", "private": true, "icon": "icon.svg",