Skip to content

Commit 908c26f

Browse files
authored
Merge pull request #33 from constructive-io/fix/registry-dependency-ranges
fix(registry): bump pinned @constructive-io/data and command-palette ranges
2 parents e346c63 + d8875e5 commit 908c26f

4 files changed

Lines changed: 7 additions & 7 deletions

File tree

apps/blocks/registry.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@
269269
],
270270
"docs": "## Usage\n\nCreate one registry for the application, adapt navigation at the host boundary, and render the palette near the root layout. Pages can register commands while mounted with `usePageCommands`.\n\n```tsx\nimport { createCommandRegistry, kbd } from '@constructive-io/command-palette';\nimport { CommandPalette } from '@/blocks/command-palette/command-palette';\n\nconst registry = createCommandRegistry({\n groups: [{ id: 'navigation', label: 'Navigation', priority: 1 }],\n commands: [{\n id: 'settings',\n label: 'Open settings',\n type: 'navigation',\n group: 'navigation',\n href: '/settings',\n shortcut: kbd(',', 'mod')\n }]\n});\n\n<CommandPalette registry={registry} navigate={(href) => router.push(href)} />;\n```\n\nThe installed block owns presentation and keyboard interaction. The headless package owns command registration, execution, multi-step state, and background-task lifecycle. Route authorization, action permissions, errors, and business workflows remain the host application's responsibility.",
271271
"dependencies": [
272-
"@constructive-io/command-palette@^0.5.0",
272+
"@constructive-io/command-palette@^0.6.0",
273273
"lucide-react",
274274
"motion"
275275
],
@@ -436,7 +436,7 @@
436436
"description": "The leaf-independent Console Kit shell, runtime, discovery, and single modular Zustand store.",
437437
"docs": "`console-kit-core` installed the shell, runtime, semantic routing, callback boundary, and one per-instance modular Zustand store. Core intentionally includes no feature view, so add selected `console-module-*` items.\n\nDegraded states: explicit endpoint, current `_meta`, introspection, capability, and adapter evidence fail closed independently; installation never grants authority.\n\nGuide: https://constructive-io.github.io/blocks/blocks/console-kit/",
438438
"dependencies": [
439-
"@constructive-io/data@^0.7.0",
439+
"@constructive-io/data@^0.8.0",
440440
"@tanstack/react-query",
441441
"graphql",
442442
"lucide-react",
@@ -566,7 +566,7 @@
566566
"description": "A current-_meta-only application data explorer with application-table filtering and spreadsheet CRUD.",
567567
"docs": "`feature-pack-data` installed a provider-neutral view and `.constructive/feature-packs/data.json`. Import from `@/blocks/feature-packs/data/data-feature-pack`. The host must supply the view resource, policy, and actions; add `console-module-data` when Console Kit should own discovery and Constructive integration.\n\nDegraded states: The host owns Sheets state and endpoint binding; incompatible metadata stays explicit, and PostgreSQL privileges and RLS decide every query and mutation.\n\nGuide: https://constructive-io.github.io/blocks/blocks/features/data/",
568568
"dependencies": [
569-
"@constructive-io/data@^0.7.0",
569+
"@constructive-io/data@^0.8.0",
570570
"lucide-react"
571571
],
572572
"registryDependencies": [

apps/registry/scripts/compiler.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ export const CONSTRUCTIVE_UI_PACKAGE = '@constructive-io/ui';
55
export const CONSTRUCTIVE_SHEETS_PACKAGE = '@constructive-io/sheets';
66
export const CONSTRUCTIVE_NAMESPACE = '@constructive/';
77
export const CONSTRUCTIVE_THEME_DEPENDENCY = '@constructive/constructive-theme';
8-
export const CONSTRUCTIVE_DATA_DEPENDENCY = '@constructive-io/data@^0.7.0';
9-
export const CONSTRUCTIVE_COMMAND_PALETTE_DEPENDENCY = '@constructive-io/command-palette@^0.5.0';
8+
export const CONSTRUCTIVE_DATA_DEPENDENCY = '@constructive-io/data@^0.8.0';
9+
export const CONSTRUCTIVE_COMMAND_PALETTE_DEPENDENCY = '@constructive-io/command-palette@^0.6.0';
1010
export const NODE_TYPE_REGISTRY_DEPENDENCY = 'node-type-registry@^1.11.0';
1111

1212
export const FEATURE_PACK_IDS = [

packages/schema-builder/registry.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"schema"
1515
],
1616
"dependencies": [
17-
"@constructive-io/data@^0.7.0",
17+
"@constructive-io/data@^0.8.0",
1818
"@dnd-kit/core",
1919
"@dnd-kit/utilities",
2020
"@fluentui/react-context-selector",

packages/sheets/registry.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"data"
1515
],
1616
"dependencies": [
17-
"@constructive-io/data@^0.7.0",
17+
"@constructive-io/data@^0.8.0",
1818
"@internationalized/date",
1919
"@remixicon/react",
2020
"@tanstack/react-form",

0 commit comments

Comments
 (0)