Skip to content

feat(types): declare ObjectKanbanSchema.groupBy and .limit, retire groupField on both faces (objectui#7322 item 1) - #7774

Merged
os-justin merged 3 commits into
mainfrom
claude/issue-7322-object-kanban-group-by-limit
Sep 5, 2026
Merged

feat(types): declare ObjectKanbanSchema.groupBy and .limit, retire groupField on both faces (objectui#7322 item 1)#7774
os-justin merged 3 commits into
mainfrom
claude/issue-7322-object-kanban-group-by-limit

Conversation

@os-justin

Copy link
Copy Markdown
Collaborator

Refs #7322 (item ①). Item ② — ObjectKanbanComponentProps.schema in packages/plugin-kanban — is not addressed here; it lands in domain:ui after this is on main, and #7322 stays open for it.

What this does

ObjectKanbanSchema now declares the two keys the object-kanban renderer reads and retires the one it never read, on BOTH published faces:

key TS face (packages/types/src/objectql.ts) zod face (packages/types/src/zod/objectql.zod.ts)
groupBy groupBy: string — REQUIRED z.string()
limit limit?: number z.number().int().positive().optional()
groupField groupField?: never@deprecated RETIRED (objectui#7322) — author groupBy (the TimelineSchema.timeScale shape, #6355) retirementTombstone('RETIRED (objectui#7322) — groupField is not read by the object-kanban renderer; author groupBy. (The view-level kanban.groupField alias is unaffected.)')

Every other member and its docblock is unchanged; member order is the same on both faces. The tombstone stays a MEMBER of the mirror shape, so the parity ratchet's key sets stay equal and an authored groupField is refused BY NAME at its own path (not stripped, not admitted).

Plus: the row-cap block on content/docs/plugins/plugin-kanban.mdx is annotated const board: ObjectKanbanSchema = { … } with import type { ObjectKanbanSchema } from '@object-ui/types' (the page's semicolon-free import style) — triage's completion signal; the one in-repo fixture that authored groupField on this node now authors groupBy; a new pin packages/types/src/__tests__/object-kanban-group-by-limit-7322.test.ts; a changeset (@object-ui/types: minor, "Breaking for authored metadata").

Measured on the branch base (53ded82b; the two faces are byte-identical on the merge-base tip 2760075f)

Read sites (packages/plugin-kanban/src/ObjectKanban.tsx): schema.groupBy at 13 sites — lane materialisation :601, :602, :613, :625, :626, :631, :640, :641, deps :649, card moves :747, :837, :865, :895; schema.limit at :264 ($top: schema.limit ?? DEFAULT_KANBAN_LIMIT, DEFAULT_KANBAN_LIMIT = 100 at :71) and :291 (deps). groupField: 0 hits under packages/plugin-kanban/ (control: the 13 groupBy hits in the same query).

Before → after, from source, both entry paths (ObjectKanbanSchema.safeParse and safeValidateSchema):

document before after
{ type, objectName, groupBy: 'status', limit: 20 } — the documented shape REFUSED at groupField (required, missing) accepted; groupBy and limit survive
{ …, groupField: 'status' } — the old declared shape accepted (grouped nothing at runtime) REFUSED at groupField, message names groupBy; and at groupBy (required)
{ …, groupField, groupBy } accepted REFUSED at groupField
{ …, groupBy: 42 } / { …, limit: 'twenty' } masked by the groupField refusal; under .passthrough() the wrong-typed value was admitted unexamined REFUSED at groupBy / at limit
{ type, objectName } — lane-less REFUSED at groupField REFUSED at groupBy
{ …, laneField: 42 } — control, a key the renderer does not read admitted, survives admitted, survives (unknown-key policy byte-identical; BaseSchema untouched, #5155)

groupBy required-ness measurement (the dispatch's open question): declared REQUIRED. Evidence: the retired contract required a lane field; the renderer's if (!schema.groupBy) branches at :601 / :613 are defensive early-returns; the docs page has exactly 1 object-kanban node (:159) and it authors groupBy; packages/plugin-kanban tests carry 20 object-kanban node literals, 19 author groupBy, and the one that does not (registration.test.tsx:32, { type: 'object-kanban' }) mocks ./ObjectKanban wholesale and tests only that the renderer wrapper forwards dataSource — not a lane-less board; ElementDataSourceGate (packages/react) maps a bound dataSource.object onto objectName and never derives a lane key, and its own object-kanban case authors groupBy: 'status' next to the binding. Two readings considered and NOT counted as a lane-less mode: content/docs/utilities/data-objectstack.mdx:322 is a json fragment (not compiled, not validated) that omits groupBy AND objectName — an illustration of the binding keys, never a complete node under the old contract either; and ListView.tsx:2411 can emit a runtime-generated node with groupBy: undefined until objectDef loads (ADR-0085 then fills it from the object's lifecycle field) — a typed-any adapter output, not authored metadata. If the PM reads either as a documented lane-less mode, groupBy?: string is a one-line change on each face plus the two required-ness pins.

Corpus rewrite count. Named docs / app corpus (plugin-kanban.mdx, guide/data-source.md, guide/react-pages.md, utilities/data-objectstack.mdx, apps/console/src/register-plugins.ts and its tests): 2 object-kanban node literals, 0 author groupField, 0 rewritten. packages/** test files: 24 object-kanban node literals across 16 files, 1 authors groupField (kanban-conditional-formatting.test.ts:22) → rewritten to groupBy; the other 23 untouched. skills/objectui/guides/*: 2 prose mentions, 0 node literals.

Node-local. The view-level groupField alias is live and untouched: packages/core/src/utils/normalize-list-view.ts:191, packages/plugin-list/src/ListView.tsx:1462 / :1816 / :2091, packages/plugin-view/src/ObjectView.tsx:1234, and the KanbanConfig.groupField declaration in the same zod file (objectql.zod.ts:352). The pin reads all four sites plus that declaration off disk as a control.

Runtime reach of the tombstone. SchemaRenderer runs @object-ui/core's structural validateSchema (no zod); the zod validator is reached by the CLI validate / check commands, the VS Code extension and tests. Boards render exactly as before.

Parity

Key sets on both faces move together (groupBy, limit added; groupField kept as a tombstone). WiderThanDeclared (the fifth ledger, #7758) / NarrowerThanDeclared / UnmirroredDeclared: undefined vs undefined, string vs string, number | undefined vs number | undefined — no ledger row needed, none added. Measured on the tip that already carries #7758.

Gates (exit captured before any pipe; verdict lines quoted)

gate command exit head verdict line
build pnpm --filter @object-ui/types build (verify lock) 0 d7250015 ✓ dist completeness: 1 package(s) complete (124 emitted files verified)
tests pnpm exec vitest run --maxWorkers=2 packages/types/ (verify lock) 0 d7250015 Test Files 122 passed (122) · Tests 2116 passed (2116) (on b99b8ad2, before the merge: 122 / 2109)
tests pnpm exec vitest run --maxWorkers=2 packages/plugin-kanban/ (verify lock; the plugin's tests author the node shape) 0 d7250015 Test Files 22 passed (22) · Tests 112 passed (112)
type-check pnpm --filter @object-ui/types type-check (tsc --noEmit, tsconfig.examples.json, tsconfig.test.json — the last compiles the pin's type-level legs and its two @ts-expect-error lines) 0 d7250015 no error TS line
type-check pnpm --filter @object-ui/plugin-kanban type-check, read-only, against the dependency-closure dists (pnpm exec turbo run build --filter='@object-ui/plugin-kanban^...' --concurrency=2 under the lock: Tasks: 12 successful, 12 total, 1m15s shared-box) 0 d7250015 no error TS line — the plugin imports no ObjectKanbanSchema and resolves @object-ui/types through the root tsconfig paths to SOURCE, so this gate is structurally independent of the diff
lint pnpm --filter @object-ui/types lint 0 d7250015 ✖ 268 problems (0 errors, 268 warnings) — 0 findings on the two touched test files
changesets node scripts/check-changeset-presence.mjs · check-changeset-fixed.mjs · check-changeset-no-major.mjs 0 · 0 · 0 d7250015 ✅ 4 source file(s) of 1 released package(s) changed, and this change declares 1 changeset(s) · ✅ All workspace packages are in the changeset fixed group. · ✅ No changeset declares a major bump.
bytes node scripts/check-control-bytes.mjs 0 d7250015 ✅ check-control-bytes: OK (scanned 6329 tracked text file(s); skipped 85 binary)
spec pnpm check:spec-symbols 0 d7250015 ✅ spec member citations: no comment cites a key its spec symbol does not declare.
docs pnpm check:doc-types · pnpm check:doc-fences · node scripts/check-doc-links.mjs 0 · 0 · 0 d7250015 ✅ Every documented component type is registered. · ✅ check:doc-fences — every TypeScript block in 227 document(s) is fenced ts/tsx/typescript … · Links are valid across 17 scan roots.
governed node scripts/pm/check-governed-merges.mjs --test … (objectstack, the six paths) 0 0 of 6 path(s) hit the register — NOT governed

NOT MEASURED locally, declared: pnpm check:doc-snippets — its --build-filter closure is 26 packages, which the shared box cannot build inside a foreground turn; CI's Doc Snippet Type Check is the measurement. Narrowed measurement in its place: the annotated block, extracted from the page and compiled with the gate's own COMPILER_OPTIONS (ES2020 / ESNext / bundler / react-jsx / strict / skipLibCheck / types: []) and its paths derivation (@object-ui/typespackages/types/dist/index.d.ts, rebuilt from this branch): tsc exit=0; the same block against a dist rebuilt from the BASE faces: TS2741: Property 'groupField' is missing in type … but required in type 'ObjectKanbanSchema' — the card's own diagnostic, reproduced. pnpm --filter @object-ui/console type-check: skipped — apps/console does not author the node (register-plugins.ts:120 registers it; the two tests list the type name in string arrays).

Ablation (red-first, both faces reverted to 53ded82b, restore proven)

Run 1's docs leg was VOID — the probe tsconfig used baseUrl, which TypeScript 6 refuses (TS5101) before compiling anything — and was re-run; run 2 is the reading. Mutation on disk: objectql.ts blob 2714449218… (= BASE, ≠ HEAD 1db955cf26…), objectql.zod.ts blob 70fec93c61… (= BASE, ≠ HEAD 45c5facc52…); anchors: groupField: string; x1, groupField?: never x0, retirementTombstone('RETIRED (objectui#7322) x0, groupBy in the zod block x0. Legs: the pin + fixture + parity from source → vitest exit=1, Test Files 2 failed | 1 passed (3), Tests 18 failed | 33 passed (51) (parity stays green: the reverted faces are a consistent pair); tsc -p tsconfig.test.json → exit 2, 8 errors — six TS2344 on the type-level pins, TS2741 on the documented literal, TS2578 unused @ts-expect-error; a dist rebuilt from the reverted faces (marker x0, groupField: string x1) → the docs block fails TS2741. Restore by git checkout HEAD -- … under trap … EXIT INT TERM: blobs equal HEAD (1db955cf26…, 45c5facc52…), git diff HEAD empty, dist rebuilt from HEAD (marker objectui#7322 x4 in objectql.d.ts, x2 in zod/objectql.zod.js, groupField?: never x1).

Serial constraints / overlap

Out of scope — filed, not touched here

Not in this PR by dispatch: item ② (packages/plugin-kanban/**), the view-level alias sites, BaseSchema's index signature (#5155), the declarative KanbanSchema.

Angle-bracket shapes are spelled out in words throughout this body because GitHub's sanitizer strips tag-shaped fragments (see AGENTS.md).

Generated by Claude Code


Generated by Claude Code

…oupField on both faces

The object-kanban renderer reads schema.groupBy (thirteen sites) and
schema.limit (the $top row cap); groupField had zero read sites under
packages/plugin-kanban yet was the REQUIRED lane key on both published
faces, so the documented working node failed validation and a node
authored from the declaration grouped nothing, with no diagnostic.

- objectql.ts: groupBy: string (required), limit?: number, and a
  groupField?: never tombstone in the TimelineSchema.timeScale shape;
  node-local — the view-level kanban.groupField alias is untouched
- objectql.zod.ts: groupBy / limit declared and validated; groupField is
  a retirementTombstone() whose message names groupBy
- docs: the row-cap block on plugin-kanban.mdx is annotated
  ObjectKanbanSchema and imports it from @object-ui/types
- fixture: kanban-conditional-formatting.test.ts authors groupBy
- pin: object-kanban-group-by-limit-7322.test.ts
- changeset: @object-ui/types minor, breaking for authored metadata

Card: objectui#7322, item 1 of 2 (item 2 is the plugin's prop type and
lands separately).

Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01BAZFhALsQsGqxui8sNqM8s
@github-actions

github-actions Bot commented Sep 5, 2026

Copy link
Copy Markdown
Contributor

✅ Console Performance Budget

Metric Value Budget
Eager closure (gzip, 50 chunks) 3187.3 KB 3191.4 KB
Main entry chunk (gzip) 143.2 KB 350 KB
Entry file index-CDNWPRmD.js
Status PASS

The eager closure is every chunk the entry reaches through static imports — what the browser fetches and parses before the app renders. The entry chunk on its own is a small fraction of it.


📦 Bundle Size Report

Package Size Gzipped
app-shell (consoleActionDispatch.js) 0.20KB 0.19KB
app-shell (index.js) 15.67KB 5.75KB
app-shell (runtime-config.js) 20.68KB 7.36KB
app-shell (types.js) 0.01KB 0.04KB
app-shell (urlParams.js) 10.06KB 3.86KB
auth (ActiveOrganizationStorage.js) 25.05KB 9.16KB
auth (AuthContext.js) 0.31KB 0.24KB
auth (AuthGuard.js) 2.07KB 1.00KB
auth (AuthProvider.js) 40.18KB 10.59KB
auth (AuthShell.js) 3.49KB 1.40KB
auth (ForgotPasswordForm.js) 12.21KB 3.45KB
auth (LoginForm.js) 18.15KB 5.39KB
auth (PreviewBanner.js) 0.90KB 0.50KB
auth (RegisterForm.js) 6.65KB 2.22KB
auth (SocialSignInButtons.js) 9.61KB 3.89KB
auth (UserMenu.js) 3.41KB 1.23KB
auth (auth-gate-events.js) 1.29KB 0.66KB
auth (authStyles.js) 5.04KB 1.72KB
auth (createAuthClient.js) 40.21KB 10.80KB
auth (createAuthenticatedFetch.js) 8.46KB 3.43KB
auth (index.js) 3.19KB 1.44KB
auth (invitation-status.js) 1.22KB 0.70KB
auth (org-roles.js) 6.66KB 2.78KB
auth (phone-identifier.js) 1.11KB 0.66KB
auth (types.js) 0.59KB 0.35KB
auth (useAuth.js) 5.30KB 1.02KB
auth (useWorkspaceAdminStatus.js) 5.13KB 2.35KB
collaboration (CommentThread.js) 26.08KB 7.56KB
collaboration (LiveCursors.js) 3.17KB 1.27KB
collaboration (PresenceAvatars.js) 6.49KB 2.64KB
collaboration (PresenceProvider.js) 2.79KB 1.13KB
collaboration (index.js) 1.68KB 0.73KB
collaboration (useCollaborationTranslation.js) 6.05KB 2.52KB
collaboration (useCommentSearch.js) 1.98KB 0.88KB
collaboration (useConflictResolution.js) 7.75KB 1.86KB
collaboration (useMentionNotifications.js) 1.81KB 0.68KB
collaboration (usePresence.js) 6.33KB 1.84KB
collaboration (useRealtimeSubscription.js) 7.91KB 2.01KB
components (index.js) 510.63KB 116.21KB
core (index.js) 6.96KB 2.79KB
create-plugin (index.js) 10.08KB 3.26KB
data-objectstack (index.js) 182.08KB 50.62KB
fields (index.js) 242.44KB 61.25KB
i18n (LocalizationContext.js) 1.76KB 0.96KB
i18n (builtinAggregateLabels.js) 0.86KB 0.49KB
i18n (currency.js) 1.22KB 0.64KB
i18n (fallbackInterpolation.js) 6.25KB 2.77KB
i18n (i18n.js) 4.28KB 1.75KB
i18n (index.js) 3.65KB 1.47KB
i18n (pickLocalized.js) 7.62KB 3.26KB
i18n (provider.js) 26.89KB 9.04KB
i18n (useDisplayLocale.js) 2.85KB 1.45KB
i18n (useObjectLabel.js) 34.34KB 9.17KB
i18n (useSafeTranslation.js) 5.60KB 2.33KB
layout (index.js) 38.98KB 10.98KB
mobile (MobileProvider.js) 0.92KB 0.49KB
mobile (ResponsiveContainer.js) 0.94KB 0.38KB
mobile (breakpoints.js) 1.51KB 0.70KB
mobile (createOfflineDataSource.js) 5.61KB 1.75KB
mobile (index.js) 1.99KB 0.87KB
mobile (offlineQueue.js) 3.91KB 1.35KB
mobile (pwa.js) 0.97KB 0.49KB
mobile (serviceWorker.js) 1.48KB 0.62KB
mobile (serviceWorkerSource.js) 3.41KB 1.48KB
mobile (useBreakpoint.js) 1.54KB 0.65KB
mobile (useGesture.js) 6.96KB 1.98KB
mobile (useOfflineSync.js) 1.99KB 0.72KB
mobile (usePullToRefresh.js) 2.53KB 0.85KB
mobile (useResponsive.js) 0.72KB 0.42KB
mobile (useSpecGesture.js) 4.39KB 1.66KB
mobile (useTouchTarget.js) 1.01KB 0.54KB
permissions (MePermissionsProvider.js) 11.71KB 4.29KB
permissions (PermissionContext.js) 0.31KB 0.25KB
permissions (PermissionGuard.js) 0.89KB 0.45KB
permissions (PermissionProvider.js) 6.24KB 2.16KB
permissions (discardProofCache.js) 1.04KB 0.55KB
permissions (evaluator.js) 5.12KB 1.74KB
permissions (index.js) 0.93KB 0.41KB
permissions (store.js) 0.91KB 0.42KB
permissions (useFieldPermissions.js) 1.28KB 0.53KB
permissions (usePermissions.js) 4.83KB 2.27KB
plugin-ai (index.js) 15.75KB 3.80KB
plugin-calendar (index.js) 47.87KB 13.31KB
plugin-charts (index.js) 70.92KB 19.75KB
plugin-chatbot (index.js) 196.19KB 46.37KB
plugin-dashboard (index.js) 132.87KB 34.68KB
plugin-designer (index.js) 212.86KB 43.19KB
plugin-detail (index.js) 250.55KB 64.06KB
plugin-editor (index.js) 2.46KB 1.10KB
plugin-form (index.js) 132.87KB 32.66KB
plugin-gantt (index.js) 167.26KB 41.00KB
plugin-grid (index.js) 209.29KB 56.78KB
plugin-kanban (index.js) 52.71KB 14.55KB
plugin-list (index.js) 113.28KB 27.59KB
plugin-map (index.js) 20.44KB 6.78KB
plugin-markdown (index.js) 13.93KB 4.81KB
plugin-report (index.js) 43.59KB 11.97KB
plugin-timeline (index.js) 30.84KB 8.85KB
plugin-tree (index.js) 9.20KB 3.19KB
plugin-view (index.js) 85.24KB 20.94KB
providers (DataSourceProvider.js) 0.75KB 0.39KB
providers (MetadataProvider.js) 1.37KB 0.59KB
providers (ThemeProvider.js) 1.90KB 0.85KB
providers (UploadProvider.js) 11.66KB 3.50KB
providers (index.js) 0.45KB 0.23KB
providers (types.js) 0.01KB 0.04KB
react-runtime (index.js) 5.62KB 2.34KB
react (LazyPluginLoader.js) 4.47KB 1.63KB
react (SchemaRenderer.js) 81.07KB 26.86KB
react (data-invalidation.js) 5.05KB 2.08KB
react (index.js) 4.63KB 2.18KB
react (schema-input.js) 2.32KB 1.24KB
react (spec-input.js) 0.20KB 0.18KB
sdui-parser (codegen.js) 5.41KB 2.34KB
sdui-parser (dashboard-widget-options.js) 3.08KB 1.30KB
sdui-parser (index.js) 4.93KB 2.24KB
sdui-parser (input-type.js) 2.84KB 1.40KB
sdui-parser (parse.js) 20.57KB 5.88KB
sdui-parser (provenance.js) 3.66KB 1.82KB
sdui-parser (types.js) 0.28KB 0.23KB
sdui-parser (validate.js) 10.35KB 3.60KB
types (ai.js) 0.20KB 0.17KB
types (api-types.js) 0.20KB 0.18KB
types (app.js) 2.87KB 1.00KB
types (base.js) 0.20KB 0.18KB
types (blocks.js) 0.20KB 0.18KB
types (complex.js) 2.74KB 1.41KB
types (crud.js) 0.20KB 0.18KB
types (dashboard-filter-alias.js) 6.23KB 2.74KB
types (data-display.js) 3.75KB 1.85KB
types (data-protocol.js) 0.20KB 0.19KB
types (data.js) 0.20KB 0.18KB
types (designer.js) 1.85KB 0.85KB
types (disclosure.js) 0.20KB 0.18KB
types (error-code.js) 1.54KB 0.88KB
types (expression.js) 0.20KB 0.18KB
types (feedback.js) 0.20KB 0.18KB
types (field-types.js) 0.20KB 0.18KB
types (form.js) 0.20KB 0.18KB
types (http-inflight.js) 8.87KB 3.73KB
types (http-retry.js) 4.32KB 2.02KB
types (icon-key-migration.js) 4.26KB 1.63KB
types (index.js) 4.74KB 2.25KB
types (layout.js) 0.20KB 0.18KB
types (managed-by.js) 0.19KB 0.18KB
types (mobile.js) 4.73KB 2.28KB
types (navigation.js) 0.20KB 0.18KB
types (objectql.js) 0.20KB 0.18KB
types (overlay.js) 0.20KB 0.18KB
types (permissions.js) 0.20KB 0.18KB
types (plugin-scope.js) 0.20KB 0.18KB
types (record-components.js) 0.20KB 0.19KB
types (record-semantics.js) 1.28KB 0.67KB
types (registry.js) 0.20KB 0.18KB
types (reports.js) 0.20KB 0.18KB
types (select-option.js) 0.20KB 0.19KB
types (spec-report.js) 5.05KB 1.93KB
types (spec-ui-namespace.js) 0.20KB 0.19KB
types (system-fields.js) 3.33KB 1.54KB
types (theme.js) 6.28KB 2.87KB
types (ui-action.js) 8.11KB 3.32KB
types (views.js) 0.20KB 0.18KB
types (widget.js) 0.20KB 0.18KB

Size Limits

  • ✅ Core packages should be < 50KB gzipped
  • ✅ Component packages should be < 100KB gzipped
  • ⚠️ Plugin packages should be < 150KB gzipped

Copy link
Copy Markdown
Collaborator Author

Gate re-run on the current head 4593cde6 (a second origin/main merge, past 91f92768 = #7764 + #7766, neither touching this PR's surface; the diff against origin/main is unchanged: 6 files, +537 / −6). The body's table above was measured on d7250015; this comment supersedes it for the head, and is a comment rather than a body edit because a body PATCH downgrades the session-URL footer.

gate command exit head verdict line
build pnpm exec turbo run build --filter='@object-ui/plugin-kanban^...' --concurrency=2 (verify lock; includes @object-ui/types) 0 4593cde6 Tasks: 12 successful, 12 total · 11 dist completeness lines · 1m12s shared-box
tests pnpm exec vitest run --maxWorkers=2 packages/types/ (verify lock) 0 4593cde6 Test Files 122 passed (122) · Tests 2116 passed (2116)
tests pnpm exec vitest run --maxWorkers=2 packages/plugin-kanban/ (verify lock) 0 4593cde6 Test Files 22 passed (22) · Tests 112 passed (112)
type-check pnpm --filter @object-ui/types type-check 0 4593cde6 no error TS line
type-check pnpm --filter @object-ui/plugin-kanban type-check (read-only, against the rebuilt closure dists) 0 4593cde6 no error TS line
lint pnpm --filter @object-ui/types lint 0 4593cde6 ✖ 268 problems (0 errors, 268 warnings) — 0 findings on the touched test files
docs block the annotated row-cap block compiled with the doc-snippet gate's COMPILER_OPTIONS + paths against packages/types/dist 0 4593cde6 tsc exit=0 against ./dist/index.d.ts (4593cde6 tree; dist marker objectui#7322 x4)
changesets check-changeset-presence.mjs · check-changeset-fixed.mjs · check-changeset-no-major.mjs 0 · 0 · 0 4593cde6 ✅ 4 source file(s) of 1 released package(s) changed, and this change declares 1 changeset(s) · ✅ privatePackages declared · ✅ No changeset declares a major bump.
bytes / spec / docs check-control-bytes.mjs · check:spec-symbols · check:doc-types · check:doc-fences · check-doc-links.mjs 0 ×5 4593cde6 ✅ check-control-bytes: OK (scanned 6333 tracked text file(s); skipped 85 binary) · ✅ spec member citations … · ✅ Every documented component type is registered. · ✅ check:doc-fences … · Links are valid across 17 scan roots.
governed check-governed-merges.mjs --test (objectstack, the six paths) 0 0 of 6 path(s) hit the register — NOT governed

Still NOT MEASURED locally: pnpm check:doc-snippets (26-package closure) — CI's Doc Snippet Type Check is the measurement. Labels after the union write, read back: package: types, tests, needs:contract-review.


Generated by Claude Code

@github-actions

github-actions Bot commented Sep 5, 2026

Copy link
Copy Markdown
Contributor

✅ Console Performance Budget

Metric Value Budget
Eager closure (gzip, 50 chunks) 3187.3 KB 3191.4 KB
Main entry chunk (gzip) 143.2 KB 350 KB
Entry file index-ClYlhEWO.js
Status PASS

The eager closure is every chunk the entry reaches through static imports — what the browser fetches and parses before the app renders. The entry chunk on its own is a small fraction of it.


📦 Bundle Size Report

Package Size Gzipped
app-shell (consoleActionDispatch.js) 0.20KB 0.19KB
app-shell (index.js) 15.67KB 5.75KB
app-shell (runtime-config.js) 20.68KB 7.36KB
app-shell (types.js) 0.01KB 0.04KB
app-shell (urlParams.js) 10.06KB 3.86KB
auth (ActiveOrganizationStorage.js) 25.05KB 9.16KB
auth (AuthContext.js) 0.31KB 0.24KB
auth (AuthGuard.js) 2.07KB 1.00KB
auth (AuthProvider.js) 40.18KB 10.59KB
auth (AuthShell.js) 3.49KB 1.40KB
auth (ForgotPasswordForm.js) 12.21KB 3.45KB
auth (LoginForm.js) 18.15KB 5.39KB
auth (PreviewBanner.js) 0.90KB 0.50KB
auth (RegisterForm.js) 6.65KB 2.22KB
auth (SocialSignInButtons.js) 9.61KB 3.89KB
auth (UserMenu.js) 3.41KB 1.23KB
auth (auth-gate-events.js) 1.29KB 0.66KB
auth (authStyles.js) 5.04KB 1.72KB
auth (createAuthClient.js) 40.21KB 10.80KB
auth (createAuthenticatedFetch.js) 8.46KB 3.43KB
auth (index.js) 3.19KB 1.44KB
auth (invitation-status.js) 1.22KB 0.70KB
auth (org-roles.js) 6.66KB 2.78KB
auth (phone-identifier.js) 1.11KB 0.66KB
auth (types.js) 0.59KB 0.35KB
auth (useAuth.js) 5.30KB 1.02KB
auth (useWorkspaceAdminStatus.js) 5.13KB 2.35KB
collaboration (CommentThread.js) 26.08KB 7.56KB
collaboration (LiveCursors.js) 3.17KB 1.27KB
collaboration (PresenceAvatars.js) 6.49KB 2.64KB
collaboration (PresenceProvider.js) 2.79KB 1.13KB
collaboration (index.js) 1.68KB 0.73KB
collaboration (useCollaborationTranslation.js) 6.05KB 2.52KB
collaboration (useCommentSearch.js) 1.98KB 0.88KB
collaboration (useConflictResolution.js) 7.75KB 1.86KB
collaboration (useMentionNotifications.js) 1.81KB 0.68KB
collaboration (usePresence.js) 6.33KB 1.84KB
collaboration (useRealtimeSubscription.js) 7.91KB 2.01KB
components (index.js) 510.61KB 116.20KB
core (index.js) 6.96KB 2.79KB
create-plugin (index.js) 10.08KB 3.26KB
data-objectstack (index.js) 182.08KB 50.62KB
fields (index.js) 242.44KB 61.25KB
i18n (LocalizationContext.js) 1.76KB 0.96KB
i18n (builtinAggregateLabels.js) 0.86KB 0.49KB
i18n (currency.js) 1.22KB 0.64KB
i18n (fallbackInterpolation.js) 6.25KB 2.77KB
i18n (i18n.js) 4.28KB 1.75KB
i18n (index.js) 3.65KB 1.47KB
i18n (pickLocalized.js) 7.62KB 3.26KB
i18n (provider.js) 26.89KB 9.04KB
i18n (useDisplayLocale.js) 2.85KB 1.45KB
i18n (useObjectLabel.js) 34.34KB 9.17KB
i18n (useSafeTranslation.js) 5.60KB 2.33KB
layout (index.js) 38.98KB 10.98KB
mobile (MobileProvider.js) 0.92KB 0.49KB
mobile (ResponsiveContainer.js) 0.94KB 0.38KB
mobile (breakpoints.js) 1.51KB 0.70KB
mobile (createOfflineDataSource.js) 5.61KB 1.75KB
mobile (index.js) 1.99KB 0.87KB
mobile (offlineQueue.js) 3.91KB 1.35KB
mobile (pwa.js) 0.97KB 0.49KB
mobile (serviceWorker.js) 1.48KB 0.62KB
mobile (serviceWorkerSource.js) 3.41KB 1.48KB
mobile (useBreakpoint.js) 1.54KB 0.65KB
mobile (useGesture.js) 6.96KB 1.98KB
mobile (useOfflineSync.js) 1.99KB 0.72KB
mobile (usePullToRefresh.js) 2.53KB 0.85KB
mobile (useResponsive.js) 0.72KB 0.42KB
mobile (useSpecGesture.js) 4.39KB 1.66KB
mobile (useTouchTarget.js) 1.01KB 0.54KB
permissions (MePermissionsProvider.js) 11.71KB 4.29KB
permissions (PermissionContext.js) 0.31KB 0.25KB
permissions (PermissionGuard.js) 0.89KB 0.45KB
permissions (PermissionProvider.js) 6.24KB 2.16KB
permissions (discardProofCache.js) 1.04KB 0.55KB
permissions (evaluator.js) 5.12KB 1.74KB
permissions (index.js) 0.93KB 0.41KB
permissions (store.js) 0.91KB 0.42KB
permissions (useFieldPermissions.js) 1.28KB 0.53KB
permissions (usePermissions.js) 4.83KB 2.27KB
plugin-ai (index.js) 15.75KB 3.80KB
plugin-calendar (index.js) 47.87KB 13.31KB
plugin-charts (index.js) 70.92KB 19.75KB
plugin-chatbot (index.js) 196.19KB 46.37KB
plugin-dashboard (index.js) 132.88KB 34.69KB
plugin-designer (index.js) 212.86KB 43.19KB
plugin-detail (index.js) 250.55KB 64.06KB
plugin-editor (index.js) 2.46KB 1.10KB
plugin-form (index.js) 132.87KB 32.66KB
plugin-gantt (index.js) 167.26KB 41.00KB
plugin-grid (index.js) 209.29KB 56.78KB
plugin-kanban (index.js) 52.71KB 14.55KB
plugin-list (index.js) 113.28KB 27.59KB
plugin-map (index.js) 20.44KB 6.78KB
plugin-markdown (index.js) 13.93KB 4.81KB
plugin-report (index.js) 43.59KB 11.97KB
plugin-timeline (index.js) 30.84KB 8.85KB
plugin-tree (index.js) 9.20KB 3.19KB
plugin-view (index.js) 85.24KB 20.94KB
providers (DataSourceProvider.js) 0.75KB 0.39KB
providers (MetadataProvider.js) 1.37KB 0.59KB
providers (ThemeProvider.js) 1.90KB 0.85KB
providers (UploadProvider.js) 11.66KB 3.50KB
providers (index.js) 0.45KB 0.23KB
providers (types.js) 0.01KB 0.04KB
react-runtime (index.js) 5.62KB 2.34KB
react (LazyPluginLoader.js) 4.47KB 1.63KB
react (SchemaRenderer.js) 81.07KB 26.86KB
react (data-invalidation.js) 5.05KB 2.08KB
react (index.js) 4.63KB 2.18KB
react (schema-input.js) 2.32KB 1.24KB
react (spec-input.js) 0.20KB 0.18KB
sdui-parser (codegen.js) 5.41KB 2.34KB
sdui-parser (dashboard-widget-options.js) 3.08KB 1.30KB
sdui-parser (index.js) 4.93KB 2.24KB
sdui-parser (input-type.js) 2.84KB 1.40KB
sdui-parser (parse.js) 20.57KB 5.88KB
sdui-parser (provenance.js) 3.66KB 1.82KB
sdui-parser (types.js) 0.28KB 0.23KB
sdui-parser (validate.js) 10.35KB 3.60KB
types (ai.js) 0.20KB 0.17KB
types (api-types.js) 0.20KB 0.18KB
types (app.js) 2.87KB 1.00KB
types (base.js) 0.20KB 0.18KB
types (blocks.js) 0.20KB 0.18KB
types (complex.js) 2.74KB 1.41KB
types (crud.js) 0.20KB 0.18KB
types (dashboard-filter-alias.js) 6.23KB 2.74KB
types (data-display.js) 3.75KB 1.85KB
types (data-protocol.js) 0.20KB 0.19KB
types (data.js) 0.20KB 0.18KB
types (designer.js) 1.85KB 0.85KB
types (disclosure.js) 0.20KB 0.18KB
types (error-code.js) 1.54KB 0.88KB
types (expression.js) 0.20KB 0.18KB
types (feedback.js) 0.20KB 0.18KB
types (field-types.js) 0.20KB 0.18KB
types (form.js) 0.20KB 0.18KB
types (http-inflight.js) 8.87KB 3.73KB
types (http-retry.js) 4.32KB 2.02KB
types (icon-key-migration.js) 4.26KB 1.63KB
types (index.js) 4.74KB 2.25KB
types (layout.js) 0.20KB 0.18KB
types (managed-by.js) 0.19KB 0.18KB
types (mobile.js) 4.73KB 2.28KB
types (navigation.js) 0.20KB 0.18KB
types (objectql.js) 0.20KB 0.18KB
types (overlay.js) 0.20KB 0.18KB
types (permissions.js) 0.20KB 0.18KB
types (plugin-scope.js) 0.20KB 0.18KB
types (record-components.js) 0.20KB 0.19KB
types (record-semantics.js) 1.28KB 0.67KB
types (registry.js) 0.20KB 0.18KB
types (reports.js) 0.20KB 0.18KB
types (select-option.js) 0.20KB 0.19KB
types (spec-report.js) 5.05KB 1.93KB
types (spec-ui-namespace.js) 0.20KB 0.19KB
types (system-fields.js) 3.33KB 1.54KB
types (theme.js) 6.28KB 2.87KB
types (ui-action.js) 8.11KB 3.32KB
types (views.js) 0.20KB 0.18KB
types (widget.js) 0.20KB 0.18KB

Size Limits

  • ✅ Core packages should be < 50KB gzipped
  • ✅ Component packages should be < 100KB gzipped
  • ⚠️ Plugin packages should be < 150KB gzipped

Copy link
Copy Markdown
Collaborator Author

needs:contract-review cleared (2026-09-05T16:54Z) — provenance: in-seat contract review at tier PASSED on head 4593cde6, recorded on the card as objectui#7322 comment 5553334000 (carries the Implemented-by: / Reviewed-by: pair, the three-item judgment, and the ruling on the groupBy required-ness question: A, REQUIRED stays). Cleared by the domain:spec execution seat, session session_01BAZFhALsQsGqxui8sNqM8s, via read-current → write-union-minus-target → read-back (read-back at 16:54Z: package: types, tests; the carrier absent). The flip waits for every check run on 4593cde6 to complete green (farm started 16:50Z; re-check armed). If this head moves, the label is re-hung and the delta re-reviewed before any flip.


Generated by Claude Code

@os-justin
os-justin marked this pull request as ready for review September 5, 2026 17:07
@os-justin
os-justin added this pull request to the merge queue Sep 5, 2026
Merged via the queue into main with commit 669d71b Sep 5, 2026
34 checks passed
@os-justin
os-justin deleted the claude/issue-7322-object-kanban-group-by-limit branch September 5, 2026 17:23
os-justin pushed a commit that referenced this pull request Sep 5, 2026
… objectui#7322 landed

objectui#7322 (PR #7774, 669d71b) made groupBy the required lane key on
ObjectKanbanSchema and retired groupField as a never-typed tombstone. The
ts-expect-error control in object-calendar-record-source-7313.test.ts wrote
groupField: 'status', so after the merge the literal would miss two members and
carry a tombstone violation — the directive would be satisfied by omissions
unrelated to objectName and stop saying anything about it. It now supplies
groupBy so objectName is again the one member the literal is missing.

Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01BAZFhALsQsGqxui8sNqM8s
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants