Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions apps/blocks/registry.json
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@
],
"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.",
"dependencies": [
"@constructive-io/command-palette@^0.5.0",
"@constructive-io/command-palette@^0.6.0",
"lucide-react",
"motion"
],
Expand Down Expand Up @@ -436,7 +436,7 @@
"description": "The leaf-independent Console Kit shell, runtime, discovery, and single modular Zustand store.",
"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/",
"dependencies": [
"@constructive-io/data@^0.7.0",
"@constructive-io/data@^0.8.0",
"@tanstack/react-query",
"graphql",
"lucide-react",
Expand Down Expand Up @@ -566,7 +566,7 @@
"description": "A current-_meta-only application data explorer with application-table filtering and spreadsheet CRUD.",
"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/",
"dependencies": [
"@constructive-io/data@^0.7.0",
"@constructive-io/data@^0.8.0",
"lucide-react"
],
"registryDependencies": [
Expand Down
4 changes: 2 additions & 2 deletions apps/registry/scripts/compiler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ export const CONSTRUCTIVE_UI_PACKAGE = '@constructive-io/ui';
export const CONSTRUCTIVE_SHEETS_PACKAGE = '@constructive-io/sheets';
export const CONSTRUCTIVE_NAMESPACE = '@constructive/';
export const CONSTRUCTIVE_THEME_DEPENDENCY = '@constructive/constructive-theme';
export const CONSTRUCTIVE_DATA_DEPENDENCY = '@constructive-io/data@^0.7.0';
export const CONSTRUCTIVE_COMMAND_PALETTE_DEPENDENCY = '@constructive-io/command-palette@^0.5.0';
export const CONSTRUCTIVE_DATA_DEPENDENCY = '@constructive-io/data@^0.8.0';
export const CONSTRUCTIVE_COMMAND_PALETTE_DEPENDENCY = '@constructive-io/command-palette@^0.6.0';
export const NODE_TYPE_REGISTRY_DEPENDENCY = 'node-type-registry@^1.11.0';

export const FEATURE_PACK_IDS = [
Expand Down
1 change: 1 addition & 0 deletions packages/blocks-renderer/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
"scripts": {
"build": "makage clean && makage build-ts && makage assets",
"build:dev": "makage clean && makage build-ts --dev && makage assets",
"prepack": "npm run build",
"lint:types": "tsc --noEmit -p tsconfig.lint.json",
"test": "vitest run",
"test:watch": "vitest",
Expand Down
1 change: 1 addition & 0 deletions packages/blocks-schema/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
"scripts": {
"build": "makage clean && makage build-ts && makage assets",
"build:dev": "makage clean && makage build-ts --dev && makage assets",
"prepack": "npm run build",
"lint:types": "tsc --noEmit -p tsconfig.lint.json",
"test": "vitest run",
"test:watch": "vitest",
Expand Down
1 change: 1 addition & 0 deletions packages/flow-to-blocks/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
"scripts": {
"build": "makage clean && makage build-ts && makage assets",
"build:dev": "makage clean && makage build-ts --dev && makage assets",
"prepack": "npm run build",
"lint:types": "tsc --noEmit -p tsconfig.lint.json",
"test": "vitest run",
"test:watch": "vitest",
Expand Down
1 change: 1 addition & 0 deletions packages/json-renderer/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
"scripts": {
"build": "makage build",
"build:dev": "makage build --dev",
"prepack": "npm run build",
"lint:types": "tsc --noEmit -p tsconfig.lint.json",
"test": "vitest run",
"test:watch": "vitest",
Expand Down
1 change: 1 addition & 0 deletions packages/json-schema-to-blocks/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
"scripts": {
"build": "makage clean && makage build-ts && makage assets",
"build:dev": "makage clean && makage build-ts --dev && makage assets",
"prepack": "npm run build",
"lint:types": "tsc --noEmit -p tsconfig.lint.json",
"test": "vitest run",
"test:watch": "vitest",
Expand Down
1 change: 1 addition & 0 deletions packages/meta-to-blocks/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
"scripts": {
"build": "makage clean && makage build-ts && makage assets",
"build:dev": "makage clean && makage build-ts --dev && makage assets",
"prepack": "npm run build",
"lint:types": "tsc --noEmit -p tsconfig.lint.json",
"test": "vitest run",
"test:watch": "vitest",
Expand Down
2 changes: 1 addition & 1 deletion packages/schema-builder/registry.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"schema"
],
"dependencies": [
"@constructive-io/data@^0.7.0",
"@constructive-io/data@^0.8.0",
"@dnd-kit/core",
"@dnd-kit/utilities",
"@fluentui/react-context-selector",
Expand Down
2 changes: 1 addition & 1 deletion packages/sheets/registry.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"data"
],
"dependencies": [
"@constructive-io/data@^0.7.0",
"@constructive-io/data@^0.8.0",
"@internationalized/date",
"@remixicon/react",
"@tanstack/react-form",
Expand Down
Loading