Skip to content

feat(types,plugin-gantt): declare the flattened GanttConfig face ObjectGantt reads (#6051) - #6472

Merged
os-support-ai merged 2 commits into
mainfrom
claude/issue-6051-gantt-undeclared-keys
Aug 26, 2026
Merged

feat(types,plugin-gantt): declare the flattened GanttConfig face ObjectGantt reads (#6051)#6472
os-support-ai merged 2 commits into
mainfrom
claude/issue-6051-gantt-undeclared-keys

Conversation

@claude

@claudeclaudeBot commented Aug 26, 2026

Copy link
Copy Markdown
Contributor

Fixes#6051

getGanttConfig (packages/plugin-gantt/src/ObjectGantt.tsx) has two branches.
When startDateFieldandendDateField are both present at the TOP level it
builds its config from top-level keys and returns early; otherwise it reads
the gantt block. Everything the first branch reads was declared by nothing.

The concealment is an index signature, so the obvious method does not work

objectui#5903's ten keys were hidden by (schema as any).K — a syntax a regex
finds. These are hidden by BaseSchema's [key: string]: any (objectui#5155's
structural ceiling) reached through a parameter typed ObjectGridSchema | any:
schema.colorField type-checked as any with no cast anywhere.

So "annotate the parameter and see what errors" is a blind instrument here — the
index signature absorbs every literal name, and the annotation compiles clean
while enforcing nothing (the class objectui#6373 records). The census below is an
AST enumeration of every top-level key read off the schema prop in
packages/plugin-gantt/src/** (non-test), stripping as / parenthesis /
non-null wrappers and following local aliases.

Re-derived on today's main — the residue grew, it did not shrink

The card was filed before objectui#5903 landed (PR #6053, 00f3eb5b9), so the
population was re-measured rather than inherited. The dispatch presumed the
card's 24 was stale because #5903's declaration work had absorbed part of it. It
had not — the residue moved in the other direction:

top-level keys read off schema (AST)47 — the card's 47, reproduced
already declared19
residue28 — four MORE than the card's 24

objectui#5903 absorbed NONE of the card's 24. Its ten (skipWeekends,
holidays, persistLayout, viewName, navigation, markers, criticalPath,
showBaselines, readOnly, mobileReadOnly) are disjoint from them.

Why four more, and why #5903 is the cause. The card scored "declared by
neither ObjectGanttSchema nor ObjectGridSchema" over the flat branch only. PR
#6053 retyped ObjectGanttProps.schema from ObjectGridSchema to
ObjectGanttSchema — correct, and it is exactly what makes these reads resolve
against this interface — but staticData, filter and sort were declared on
ObjectGridSchema and are not on this one, so that retyping is what dropped
them out of the reachable declared surface. gantt, the block face, sat outside
the line range the card cited and is declared by neither. All four have live read
sites; three of them are declared here and gantt is severed (below).

Clause ② — this widens a published surface, in TWO places

1. ObjectGanttSchema gains 27 keys. 24 flattened GanttConfig members,
every one with a read site in getGanttConfig and a consumer downstream:

colorField · borderColorField · dependenciesField · parentField ·
typeField · lockField · objectField · summaryExtent ·
defaultCollapsedDepth · tooltipFields · baselineStartField ·
baselineEndField · groupByField · resourceView · assigneeField ·
effortField · capacity · quickFilters · autoZoomToFilter ·
timeSegments · interactions · exportFileName · timeZone ·
dependencyTypes

plus the three query keys the fetch path reads — staticData (getDataConfig),
filter ($filter) and sort ($orderby; both named by
OBJECT_GANTT_DATA_SOURCE in index.tsx).

2. GanttConfig itself gains nine members, and it is exported BY NAME from the
entry file
(packages/types/src/index.ts:382): lockField, objectField,
summaryExtent, defaultCollapsedDepth, borderColorField, dependencyTypes,
timeZone, exportFileName, interactions. The entry file's own diff is empty
only because the export list already named the type — the widening happened at
the declaration, so an empty entry-file diff is not the Clause-② test on its
own; reachability from the entry plus a grown shape is.

Every one of the 36 additions is additive: all optional, nothing previously
legal loses its slot, and no verdict was "declare a key nothing reads" — every
key has a read site plus a consumer. There is no narrowing anywhere in this
change.

gantt — the 28th key — is severed to #6475 on purpose

The block face is a genuine read: getGanttConfig's second branch honours it in
full. It is not declared here because it is the one key whose declaration would
not have been additive. It has no mirror entry today, so a block rides
through .passthrough() unvalidated; declaring it as GanttConfig means it gets
parsed against the spec's GanttConfigSchema, which requires
startDateField, endDateField and titleField — and ObjectGanttSchema is a
member of AnyComponentSchema, so that reaches safeValidateSchema and with it
the CLI's validate / check. A block missing one of the three would move from
"accepted, then warned about at runtime" to "refused at authoring time".

PM ruling (2026-08-26): a published CLI's refusal behaviour gets decided on its
own card, where a reviewer can see what they are approving, rather than inside a
27-key declaration PR. #6475 carries the complete measurement — including the
case FOR enforcing it (the renderer already feeds that block to
GanttConfigSchema.safeParse and logs [ObjectGantt] Invalid gantt configuration, so enforcing restores declared = enforced rather than inventing
a contract) and the zero-casualty in-repo scan, with its own limit stated: 5095
tracked files measures this tree, and authored metadata outside it is precisely
what an in-repo census cannot see.

The omission is recorded where someone would look for the key — a comment on the
declaration, a comment in the mirror, and the ObjectGanttProps.schema JSDoc,
all three naming #6475 and all three saying the renderer still reads and honours
the block. And it is pinned, not left implicit: the test asserts the mirror
has no gantt entry and that a block missing the required trio (and even a
wrong-typed block) parses green today. The omission is a measured state.

Resolution style — declared, never widened

No index signature, no cast, no ?? alias was added. Mirroring how objectui#5903
landed:

  • the 24 flattened members are derived from GanttConfig (GanttConfig['K']),
    the same type the gantt block carries, so the flat spelling cannot fork
    from the block spelling;
  • the zod mirror takes the spec-modelled members from
    SpecGanttConfigSchema.shapeby reference (exactly as viewMode already
    did), and objectui's own ten live in one field map;
  • both halves move together at the same requiredness, so zod-mirror-parity
    stays at zero drift for this pair — no KnownDrift, no UnmirroredDeclared
    entry;
  • getGanttConfig(schema: ObjectGanttSchema) — without retyping the parameter
    the reads would still land on the index signature, "the same invisibility in
    different syntax" that PR feat(types,plugin-gantt): declare the ten gantt keys ObjectGantt reads through a cast #6053 called out.

Making the derivation possible moved nine members out of plugin-gantt's
package-private GanttConfigEx into @object-ui/types' GanttConfig. A move,
not new vocabulary
— the gantt block already honoured all nine, and a type
private to the plugin can be referenced by neither authoring face.

The invariant is pinned in the type system, with no key list to maintain:

typeFlatFaceGaps=Exclude<DeclaredKeys<GanttConfig>,DeclaredKeys<ObjectGanttSchemaTS>>;constnoGaps: FlatFaceGapsextendsnever ? true : FlatFaceGaps=true;

Add a member to GanttConfig (or to the spec's GanttConfigSchema it derives
from) without declaring the flattened spelling, and this stops compiling naming
the missing key
. DeclaredKeys is applied to both sides deliberately: the
spec's schema is $loose, so GanttConfig carries an index signature of its own
and bare keyof GanttConfig resolves to string — measured, when the pin was
first written that way it made the Exclude unconditionally string. Two index
signatures, two chances for the same vacuity; both are pinned.

Ghost-assertion guard — every pin was proved to fail

Type-check coverage measured, not assumed: tsc -p packages/types/tsconfig.test.json --listFiles (512 files) lists gantt-flat-config-declared-keys.test.ts,
src/objectql.ts and src/zod/objectql.zod.ts.

Each mutation was proved on disk by counting the target text before/after — never
by an editor's exit code — and each leg ran under a script carrying
trap … EXIT INT TERM with absolute paths. No dist is involved on any leg:
both tests import their subjects by relative path inside packages/types/src,
so no stale build could make a mutation invisible.

A — remove the TS declaration of summaryExtent.Predicted: RED, with MORE
diagnostics naming the key.
On-disk proof before=1 after=0. Observed exit 1,
3 errors, all three naming it:

gantt-flat-config-declared-keys.test.ts(288,11): error TS2322: Type 'true' is not assignable to type '"summaryExtent"'.
gantt-flat-config-declared-keys.test.ts(306,11): error TS2322: Type 'true' is not assignable to type 'never'.
gantt-flat-config-declared-keys.test.ts(334,5): error TS2578: Unused '@ts-expect-error' directive.

B — remove capacity from the zod mirror.Predicted: RED in both
instruments.
On-disk proof before=1 after=0. Observed runtime
AssertionError: mirror is missing capacity plus capacity accepted "one"
(2 failed | 10 passed, exit 1), and compile-time
zod-mirror-parity.test.ts(1203,14): error TS2322: Type '"objectql.zod.ts#ObjectGanttSchema"' is not assignable to type 'never'.

C — the severed-state pin: INJECT a gantt entry into the mirror.
Predicted: RED — the pin asserts the mirror has no gantt entry. On-disk proof
before=0 after=1. Observed
AssertionError: expected [ Array(65) ] to not include 'gantt' (1 failed | 11
passed, exit 1). The severance is enforced, not just described.

All three restored by hash, not exit code — git checkout HEAD -- <abs path>
then HEAD-blob vs git hash-object: b84200d0… and 13559a75… (twice), MATCH
each time, and git diff HEAD empty afterwards.

Verification (all at 2760b32a6, tree clean)

runresult
pnpm exec vitest run packages/types/ packages/plugin-gantt/ packages/cli/Test Files 126 passed (126) · Tests 1389 passed (1389) · exit 0
pnpm exec turbo run type-check --concurrency=2 (repo-wide)Tasks: 81 successful, 81 total · exit 0
pnpm exec turbo run build --filter='!@object-ui/site' --concurrency=2Tasks: 43 successful, 43 total · exit 0
pnpm check:doc-snippetsEvery covered documentation snippet compiles against the built types · exit 0
pnpm check:readme-exportscheck-readme-exports: OK · exit 0
pnpm check:spec-symbolsspec symbol derivation OK · exit 0
check:doc-types · check:doc-fences · check:phantom-deps · check:self-import · check:designer-field-key-parity · check:i18n-keys · check:published-dist · check:node-esm-loadexit 0 each
pnpm check:control-bytesOK (scanned 5336 tracked text file(s))
check-changeset-presence.mjs · check-changeset-no-major.mjsOK both
pnpm --filter @object-ui/types run lint · --filter @object-ui/plugin-gantt run lint0 errors (warnings only, ungated)

packages/cli is in the test union because safeValidateSchema and
AnyComponentSchema make it the only runtime consumer of the changed mirror.
Repo-wide pnpm test was not run locally and is left to CI, which shards it.

Deliberately out of scope, filed separately

None of those four is addressed here — each remains open.

Shadow check: this diff touches packages/types/src/objectql.ts, not
packages/types/src/data-display.ts (#6004's file), and no file under
packages/plugin-view, packages/plugin-grid, packages/plugin-list,
packages/core/src/utils or packages/app-shell.

Generated by Claude Code


Generated by Claude Code


Generated by Claude Code

…ctGantt reads (#6051)
`getGanttConfig` has two branches. When `startDateField` and `endDateField` are
both present at the TOP level it builds its config from top-level keys and
returns early; otherwise it reads the `gantt` block. Everything the first branch
reads was undeclared, and unlike #5903's ten none of it was behind a cast:
`BaseSchema` carries `[key: string]: any` and the helper's parameter was
`ObjectGridSchema | any`, so `schema.colorField` type-checked as `any` with no
syntax to grep for. The census is therefore an AST enumeration, not a
compile-and-observe — an index signature absorbs exactly the evidence an
annotation would have produced.
- Re-derived on the post-#5903 tree: 47 top-level keys read, 19 declared, 28
residue. #5903 absorbed NONE of the card's 24; the residue is four larger
because #5903 retyped `ObjectGanttProps.schema` to `ObjectGanttSchema`, which
is correct and is why `staticData`/`filter`/`sort` (declared on
`ObjectGridSchema`) now need declaring here, plus `gantt` itself.
- The 24 flattened members are DERIVED from `GanttConfig`, so the flat spelling
cannot fork from the block spelling; the invariant is pinned in the type
system (every `GanttConfig` key is declared at the node's top level).
- Nine members move out of `plugin-gantt`'s package-private `GanttConfigEx` into
`@object-ui/types`' `GanttConfig` to make that derivation possible. A move, not
new vocabulary: the `gantt` block already honoured all nine.
- `getGanttConfig(schema: ObjectGanttSchema)` — without it the reads would still
land on the index signature.
- The zod mirror gains the same 28 at the same requiredness, spec-modelled ones
from `GanttConfigSchema.shape` by reference, so `zod-mirror-parity` stays at
zero drift and no ledger entry is added.
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_011SfZeFWrhGLHmfq61xbz4q
@github-actions

Copy link
Copy Markdown
Contributor

✅ Console Performance Budget

MetricValueBudget
Eager closure (gzip, 52 chunks)3234.4 KB3266.6 KB
Main entry chunk (gzip)157.4 KB350 KB
Entry fileindex-DevCc13p.js
StatusPASS

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

PackageSizeGzipped
app-shell (consoleActionDispatch.js)0.20KB0.19KB
app-shell (index.js)11.30KB4.28KB
app-shell (runtime-config.js)18.10KB6.51KB
app-shell (types.js)0.01KB0.04KB
app-shell (urlParams.js)10.06KB3.86KB
auth (ActiveOrganizationStorage.js)25.05KB9.16KB
auth (AuthContext.js)0.31KB0.24KB
auth (AuthGuard.js)2.07KB1.00KB
auth (AuthProvider.js)40.18KB10.59KB
auth (AuthShell.js)3.49KB1.40KB
auth (ForgotPasswordForm.js)12.21KB3.45KB
auth (LoginForm.js)18.15KB5.39KB
auth (PreviewBanner.js)0.90KB0.50KB
auth (RegisterForm.js)6.65KB2.22KB
auth (SocialSignInButtons.js)9.61KB3.89KB
auth (UserMenu.js)3.41KB1.23KB
auth (auth-gate-events.js)1.29KB0.66KB
auth (authStyles.js)5.04KB1.72KB
auth (createAuthClient.js)40.21KB10.80KB
auth (createAuthenticatedFetch.js)8.46KB3.43KB
auth (index.js)3.19KB1.44KB
auth (invitation-status.js)1.22KB0.70KB
auth (org-roles.js)6.66KB2.78KB
auth (phone-identifier.js)1.11KB0.66KB
auth (types.js)0.59KB0.35KB
auth (useAuth.js)5.30KB1.02KB
auth (useWorkspaceAdminStatus.js)5.13KB2.35KB
collaboration (CommentThread.js)26.08KB7.56KB
collaboration (LiveCursors.js)3.17KB1.27KB
collaboration (PresenceAvatars.js)6.49KB2.64KB
collaboration (PresenceProvider.js)2.79KB1.13KB
collaboration (index.js)1.68KB0.73KB
collaboration (useCollaborationTranslation.js)6.05KB2.52KB
collaboration (useCommentSearch.js)1.98KB0.88KB
collaboration (useConflictResolution.js)7.75KB1.86KB
collaboration (useMentionNotifications.js)1.81KB0.68KB
collaboration (usePresence.js)6.33KB1.84KB
collaboration (useRealtimeSubscription.js)7.91KB2.01KB
components (index.js)505.99KB114.64KB
core (index.js)5.30KB2.13KB
create-plugin (index.js)10.08KB3.26KB
data-objectstack (index.js)173.10KB47.96KB
fields (index.js)238.89KB60.02KB
i18n (LocalizationContext.js)1.76KB0.96KB
i18n (currency.js)1.22KB0.64KB
i18n (fallbackInterpolation.js)6.25KB2.77KB
i18n (i18n.js)4.28KB1.75KB
i18n (index.js)3.44KB1.39KB
i18n (pickLocalized.js)7.62KB3.26KB
i18n (provider.js)26.89KB9.04KB
i18n (useDisplayLocale.js)2.85KB1.45KB
i18n (useObjectLabel.js)33.40KB8.71KB
i18n (useSafeTranslation.js)5.60KB2.33KB
layout (index.js)38.95KB10.97KB
mobile (MobileProvider.js)0.92KB0.49KB
mobile (ResponsiveContainer.js)0.94KB0.38KB
mobile (breakpoints.js)1.51KB0.70KB
mobile (createOfflineDataSource.js)5.61KB1.75KB
mobile (index.js)1.55KB0.62KB
mobile (offlineQueue.js)3.91KB1.35KB
mobile (pwa.js)0.97KB0.49KB
mobile (serviceWorker.js)1.48KB0.62KB
mobile (serviceWorkerSource.js)3.41KB1.48KB
mobile (useBreakpoint.js)1.54KB0.65KB
mobile (useGesture.js)6.96KB1.98KB
mobile (useOfflineSync.js)1.99KB0.72KB
mobile (usePullToRefresh.js)2.53KB0.85KB
mobile (useResponsive.js)0.72KB0.42KB
mobile (useResponsiveConfig.js)1.37KB0.63KB
mobile (useSpecGesture.js)4.32KB1.64KB
mobile (useTouchTarget.js)1.01KB0.54KB
permissions (MePermissionsProvider.js)9.53KB3.38KB
permissions (PermissionContext.js)0.31KB0.25KB
permissions (PermissionGuard.js)0.89KB0.45KB
permissions (PermissionProvider.js)4.64KB1.50KB
permissions (evaluator.js)5.12KB1.74KB
permissions (index.js)0.93KB0.41KB
permissions (store.js)0.91KB0.42KB
permissions (useFieldPermissions.js)1.28KB0.53KB
permissions (usePermissions.js)1.93KB0.88KB
plugin-ai (index.js)15.75KB3.80KB
plugin-calendar (index.js)46.66KB12.84KB
plugin-charts (index.js)64.66KB18.32KB
plugin-chatbot (index.js)188.60KB44.82KB
plugin-dashboard (index.js)133.48KB34.49KB
plugin-designer (index.js)211.90KB42.74KB
plugin-detail (index.js)245.26KB62.38KB
plugin-editor (index.js)2.46KB1.10KB
plugin-form (index.js)131.78KB32.19KB
plugin-gantt (index.js)164.14KB39.87KB
plugin-grid (index.js)201.66KB54.57KB
plugin-kanban (index.js)53.16KB14.65KB
plugin-list (index.js)112.74KB27.50KB
plugin-map (index.js)20.09KB6.62KB
plugin-markdown (index.js)13.72KB4.69KB
plugin-report (index.js)43.51KB11.94KB
plugin-timeline (index.js)26.72KB7.71KB
plugin-tree (index.js)9.26KB3.13KB
plugin-view (index.js)84.82KB20.79KB
providers (DataSourceProvider.js)0.75KB0.39KB
providers (MetadataProvider.js)1.37KB0.59KB
providers (ThemeProvider.js)1.90KB0.85KB
providers (UploadProvider.js)11.66KB3.50KB
providers (index.js)0.45KB0.23KB
providers (types.js)0.01KB0.04KB
react-runtime (index.js)5.62KB2.34KB
react (LazyPluginLoader.js)4.47KB1.63KB
react (SchemaRenderer.js)56.69KB19.03KB
react (data-invalidation.js)5.05KB2.08KB
react (index.js)2.05KB1.04KB
react (schema-input.js)2.32KB1.24KB
react (spec-input.js)0.20KB0.18KB
sdui-parser (codegen.js)5.41KB2.34KB
sdui-parser (dashboard-widget-options.js)3.08KB1.30KB
sdui-parser (index.js)4.93KB2.24KB
sdui-parser (input-type.js)2.84KB1.40KB
sdui-parser (parse.js)12.13KB3.65KB
sdui-parser (provenance.js)3.66KB1.82KB
sdui-parser (types.js)0.28KB0.23KB
sdui-parser (validate.js)7.54KB2.63KB
types (ai.js)0.20KB0.17KB
types (api-types.js)0.20KB0.18KB
types (app.js)2.87KB0.99KB
types (base.js)0.20KB0.18KB
types (blocks.js)0.20KB0.18KB
types (complex.js)2.74KB1.41KB
types (crud.js)0.20KB0.18KB
types (dashboard-filter-alias.js)6.23KB2.74KB
types (data-display.js)3.75KB1.85KB
types (data-protocol.js)0.20KB0.19KB
types (data.js)0.20KB0.18KB
types (designer.js)1.85KB0.85KB
types (disclosure.js)0.20KB0.18KB
types (error-code.js)1.54KB0.88KB
types (feedback.js)0.20KB0.18KB
types (field-types.js)0.20KB0.18KB
types (form.js)0.20KB0.18KB
types (http-inflight.js)8.87KB3.73KB
types (http-retry.js)4.32KB2.02KB
types (icon-key-migration.js)4.26KB1.63KB
types (index.js)4.72KB2.24KB
types (layout.js)0.20KB0.18KB
types (managed-by.js)0.19KB0.18KB
types (mobile.js)2.59KB1.31KB
types (navigation.js)0.20KB0.18KB
types (objectql.js)0.20KB0.18KB
types (overlay.js)0.20KB0.18KB
types (permissions.js)0.20KB0.18KB
types (plugin-scope.js)0.20KB0.18KB
types (record-components.js)0.20KB0.19KB
types (record-semantics.js)1.28KB0.67KB
types (registry.js)0.20KB0.18KB
types (reports.js)0.20KB0.18KB
types (spec-report.js)5.05KB1.93KB
types (spec-ui-namespace.js)0.20KB0.19KB
types (system-fields.js)3.33KB1.54KB
types (theme.js)6.28KB2.87KB
types (ui-action.js)3.40KB1.71KB
types (views.js)0.20KB0.18KB
types (widget.js)0.20KB0.18KB

Size Limits

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

…6475)
PM ruling 2026-08-26 on #6051: `gantt` is the one key of the measured 28 whose
declaration would NOT have been additive, and a published CLI's refusal
behaviour gets decided on its own card rather than inside a 27-key declaration
PR. The other 27 are unchanged and land here.
Severed: `gantt?: GanttConfig` on `ObjectGanttSchema` and its
`SpecGanttConfigSchema.extend(GanttConfigExtensionFields)` mirror entry. With no
mirror entry a block rides through `.passthrough()` unvalidated; with one it is
parsed against the spec's `GanttConfigSchema`, which REQUIRES startDateField /
endDateField / titleField — and `ObjectGanttSchema` reaches the CLI's
`validate`/`check` through `AnyComponentSchema`, so a block missing one of the
three would move from "accepted, then warned about at runtime" to "refused at
authoring time".
- The omission is recorded where someone would look for the key: a comment on
the declaration, a comment in the mirror, and the `ObjectGanttProps.schema`
JSDoc. All three name #6475 and say `getGanttConfig` still reads and honours
the block, so none of them can be read as "nothing reads `gantt`".
- Today's behaviour is PINNED rather than left implicit — the test that used to
assert the block face accepts the flat vocabulary now asserts the mirror has
no `gantt` entry and that a block missing the required trio (and even a
wrong-typed block) parses green. The omission is a measured state.
- `GanttConfigExtensionFields` stays: it is still the single source the flat
face is built from, and the one line #6475 would need. Its doc no longer
claims it feeds two faces.
This change is now additive-only end to end: 27 new optional keys, no narrowing.
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_011SfZeFWrhGLHmfq61xbz4q
@github-actions

Copy link
Copy Markdown
Contributor

✅ Console Performance Budget

MetricValueBudget
Eager closure (gzip, 52 chunks)3234.4 KB3266.6 KB
Main entry chunk (gzip)157.4 KB350 KB
Entry fileindex-B0wD1y3R.js
StatusPASS

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

PackageSizeGzipped
app-shell (consoleActionDispatch.js)0.20KB0.19KB
app-shell (index.js)11.30KB4.28KB
app-shell (runtime-config.js)18.10KB6.51KB
app-shell (types.js)0.01KB0.04KB
app-shell (urlParams.js)10.06KB3.86KB
auth (ActiveOrganizationStorage.js)25.05KB9.16KB
auth (AuthContext.js)0.31KB0.24KB
auth (AuthGuard.js)2.07KB1.00KB
auth (AuthProvider.js)40.18KB10.59KB
auth (AuthShell.js)3.49KB1.40KB
auth (ForgotPasswordForm.js)12.21KB3.45KB
auth (LoginForm.js)18.15KB5.39KB
auth (PreviewBanner.js)0.90KB0.50KB
auth (RegisterForm.js)6.65KB2.22KB
auth (SocialSignInButtons.js)9.61KB3.89KB
auth (UserMenu.js)3.41KB1.23KB
auth (auth-gate-events.js)1.29KB0.66KB
auth (authStyles.js)5.04KB1.72KB
auth (createAuthClient.js)40.21KB10.80KB
auth (createAuthenticatedFetch.js)8.46KB3.43KB
auth (index.js)3.19KB1.44KB
auth (invitation-status.js)1.22KB0.70KB
auth (org-roles.js)6.66KB2.78KB
auth (phone-identifier.js)1.11KB0.66KB
auth (types.js)0.59KB0.35KB
auth (useAuth.js)5.30KB1.02KB
auth (useWorkspaceAdminStatus.js)5.13KB2.35KB
collaboration (CommentThread.js)26.08KB7.56KB
collaboration (LiveCursors.js)3.17KB1.27KB
collaboration (PresenceAvatars.js)6.49KB2.64KB
collaboration (PresenceProvider.js)2.79KB1.13KB
collaboration (index.js)1.68KB0.73KB
collaboration (useCollaborationTranslation.js)6.05KB2.52KB
collaboration (useCommentSearch.js)1.98KB0.88KB
collaboration (useConflictResolution.js)7.75KB1.86KB
collaboration (useMentionNotifications.js)1.81KB0.68KB
collaboration (usePresence.js)6.33KB1.84KB
collaboration (useRealtimeSubscription.js)7.91KB2.01KB
components (index.js)505.99KB114.64KB
core (index.js)5.30KB2.13KB
create-plugin (index.js)10.08KB3.26KB
data-objectstack (index.js)173.10KB47.96KB
fields (index.js)238.89KB60.02KB
i18n (LocalizationContext.js)1.76KB0.96KB
i18n (currency.js)1.22KB0.64KB
i18n (fallbackInterpolation.js)6.25KB2.77KB
i18n (i18n.js)4.28KB1.75KB
i18n (index.js)3.44KB1.39KB
i18n (pickLocalized.js)7.62KB3.26KB
i18n (provider.js)26.89KB9.04KB
i18n (useDisplayLocale.js)2.85KB1.45KB
i18n (useObjectLabel.js)33.40KB8.71KB
i18n (useSafeTranslation.js)5.60KB2.33KB
layout (index.js)38.95KB10.97KB
mobile (MobileProvider.js)0.92KB0.49KB
mobile (ResponsiveContainer.js)0.94KB0.38KB
mobile (breakpoints.js)1.51KB0.70KB
mobile (createOfflineDataSource.js)5.61KB1.75KB
mobile (index.js)1.55KB0.62KB
mobile (offlineQueue.js)3.91KB1.35KB
mobile (pwa.js)0.97KB0.49KB
mobile (serviceWorker.js)1.48KB0.62KB
mobile (serviceWorkerSource.js)3.41KB1.48KB
mobile (useBreakpoint.js)1.54KB0.65KB
mobile (useGesture.js)6.96KB1.98KB
mobile (useOfflineSync.js)1.99KB0.72KB
mobile (usePullToRefresh.js)2.53KB0.85KB
mobile (useResponsive.js)0.72KB0.42KB
mobile (useResponsiveConfig.js)1.37KB0.63KB
mobile (useSpecGesture.js)4.32KB1.64KB
mobile (useTouchTarget.js)1.01KB0.54KB
permissions (MePermissionsProvider.js)9.53KB3.38KB
permissions (PermissionContext.js)0.31KB0.25KB
permissions (PermissionGuard.js)0.89KB0.45KB
permissions (PermissionProvider.js)4.64KB1.50KB
permissions (evaluator.js)5.12KB1.74KB
permissions (index.js)0.93KB0.41KB
permissions (store.js)0.91KB0.42KB
permissions (useFieldPermissions.js)1.28KB0.53KB
permissions (usePermissions.js)1.93KB0.88KB
plugin-ai (index.js)15.75KB3.80KB
plugin-calendar (index.js)46.66KB12.84KB
plugin-charts (index.js)64.66KB18.32KB
plugin-chatbot (index.js)188.60KB44.82KB
plugin-dashboard (index.js)133.48KB34.49KB
plugin-designer (index.js)211.90KB42.74KB
plugin-detail (index.js)245.26KB62.38KB
plugin-editor (index.js)2.46KB1.10KB
plugin-form (index.js)131.78KB32.19KB
plugin-gantt (index.js)164.14KB39.87KB
plugin-grid (index.js)201.66KB54.57KB
plugin-kanban (index.js)53.16KB14.65KB
plugin-list (index.js)112.74KB27.50KB
plugin-map (index.js)20.09KB6.62KB
plugin-markdown (index.js)13.72KB4.69KB
plugin-report (index.js)43.51KB11.94KB
plugin-timeline (index.js)26.72KB7.71KB
plugin-tree (index.js)9.26KB3.13KB
plugin-view (index.js)84.82KB20.79KB
providers (DataSourceProvider.js)0.75KB0.39KB
providers (MetadataProvider.js)1.37KB0.59KB
providers (ThemeProvider.js)1.90KB0.85KB
providers (UploadProvider.js)11.66KB3.50KB
providers (index.js)0.45KB0.23KB
providers (types.js)0.01KB0.04KB
react-runtime (index.js)5.62KB2.34KB
react (LazyPluginLoader.js)4.47KB1.63KB
react (SchemaRenderer.js)56.69KB19.03KB
react (data-invalidation.js)5.05KB2.08KB
react (index.js)2.05KB1.04KB
react (schema-input.js)2.32KB1.24KB
react (spec-input.js)0.20KB0.18KB
sdui-parser (codegen.js)5.41KB2.34KB
sdui-parser (dashboard-widget-options.js)3.08KB1.30KB
sdui-parser (index.js)4.93KB2.24KB
sdui-parser (input-type.js)2.84KB1.40KB
sdui-parser (parse.js)12.13KB3.65KB
sdui-parser (provenance.js)3.66KB1.82KB
sdui-parser (types.js)0.28KB0.23KB
sdui-parser (validate.js)7.54KB2.63KB
types (ai.js)0.20KB0.17KB
types (api-types.js)0.20KB0.18KB
types (app.js)2.87KB0.99KB
types (base.js)0.20KB0.18KB
types (blocks.js)0.20KB0.18KB
types (complex.js)2.74KB1.41KB
types (crud.js)0.20KB0.18KB
types (dashboard-filter-alias.js)6.23KB2.74KB
types (data-display.js)3.75KB1.85KB
types (data-protocol.js)0.20KB0.19KB
types (data.js)0.20KB0.18KB
types (designer.js)1.85KB0.85KB
types (disclosure.js)0.20KB0.18KB
types (error-code.js)1.54KB0.88KB
types (feedback.js)0.20KB0.18KB
types (field-types.js)0.20KB0.18KB
types (form.js)0.20KB0.18KB
types (http-inflight.js)8.87KB3.73KB
types (http-retry.js)4.32KB2.02KB
types (icon-key-migration.js)4.26KB1.63KB
types (index.js)4.72KB2.24KB
types (layout.js)0.20KB0.18KB
types (managed-by.js)0.19KB0.18KB
types (mobile.js)2.59KB1.31KB
types (navigation.js)0.20KB0.18KB
types (objectql.js)0.20KB0.18KB
types (overlay.js)0.20KB0.18KB
types (permissions.js)0.20KB0.18KB
types (plugin-scope.js)0.20KB0.18KB
types (record-components.js)0.20KB0.19KB
types (record-semantics.js)1.28KB0.67KB
types (registry.js)0.20KB0.18KB
types (reports.js)0.20KB0.18KB
types (spec-report.js)5.05KB1.93KB
types (spec-ui-namespace.js)0.20KB0.19KB
types (system-fields.js)3.33KB1.54KB
types (theme.js)6.28KB2.87KB
types (ui-action.js)3.40KB1.71KB
types (views.js)0.20KB0.18KB
types (widget.js)0.20KB0.18KB

Size Limits

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

@os-support-ai
os-support-ai marked this pull request as ready for review August 26, 2026 02:55
@os-support-ai
os-support-ai added this pull request to the merge queueAug 26, 2026
Merged via the queue into main with commit 75bd83dAug 26, 2026
30 checks passed
@os-support-ai
os-support-ai deleted the claude/issue-6051-gantt-undeclared-keys branch August 26, 2026 03:07
os-support-ai pushed a commit that referenced this pull request Aug 26, 2026
…mber
The docblock said the restated members are kept for ONE reason — their JSDoc
being the only prose in this repo for what the renderer does with each key.
Measured on main, that is false twice over: four of the twelve carry no JSDoc
here at all (parentField, baselineEndField, assigneeField, effortField), and
since #6472 the flattened face ObjectGanttSchema in @object-ui/types documents
all twelve, so the prose is not unique either.
The reason that actually reaches every member is already in the same docblock,
stated as a mechanism rather than as a reason: naming the local half gives
ObjectGantt.configPin.test.ts two independent operands. For parentField it is
the only reason, so a reader applying the ONE-reason test literally concludes
that member is deletable.
State both reasons as reasons, name parentField as the worked example, and
correct the neighbouring NARROWINGS claim that the pin test already measures as
false. Comment-only; no declaration changed.
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_011SfZeFWrhGLHmfq61xbz4q
Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

2 participants

@os-support-ai@claude