Skip to content

fix(components,plugin-dashboard): the static-data table widget renders instead of looping (#4618) - #4623

Merged
yinlianghui merged 2 commits into
mainfrom
claude/issue-4618-datatable-update-depth
Aug 14, 2026
Merged

fix(components,plugin-dashboard): the static-data table widget renders instead of looping (#4618)#4623
yinlianghui merged 2 commits into
mainfrom
claude/issue-4618-datatable-update-depth

Conversation

@yinlianghui

@yinlianghuiyinlianghui commented Aug 14, 2026

Copy link
Copy Markdown
Collaborator

Fixes#4618

A dashboard widget authored as { id, type: 'table', options: { data: [ … ] } } fell into the
error boundary with "Maximum update depth exceeded", while bar / line / area / donut /
metric off the identical static surface rendered clean.

Three defects, measured separately. The crash is one of them; the other two are why the same widget
still rendered nothing once it stopped crashing.

1. The loop — packages/components/src/renderers/complex/data-table.tsx

The filing pointed at data-table.tsx:788, which is setMeasuredStickyLefts(null) inside the
sticky-offset layout effect. That is the throw site, not the cause — a layout-effect state write
is the synchronous nested-update path React counts, so it is where the limit trips.

The actual cycle, every hop inside data-table.tsx:

hopline (pre-fix)what happens
1:637columns: rawColumns = []the destructuring DEFAULT evaluates a fresh array literal on every render when the schema carries no columns key
2:722-728initialColumns = useMemo(() => rawColumns.map(…), [rawColumns])identity-keyed memo over hop 1 — recomputes to a new array each render
3:866-868useEffect(() => setColumns(initialColumns), [initialColumns])prop→state sync: new identity ⇒ new state ⇒ re-render ⇒ hop 1 again
throw:785-815 layout effect keyed on [stickyLeadingCount, columns]:788React counts the nested update here and throws

Self-sustaining, because the unstable value is derived inside the component: the table's own
re-render regenerates the literal that scheduled it. Nothing external has to change.

Why it was never seen: useState(initialColumns) seeds from the very array the mount-render's effect
then re-sets, so the first sync is an Object.is no-op. Mount is safe; the loop starts at render
#2
— the first time any host re-renders the tile. Every existing suite renders once.

Fix, at both hops:

  • module-scope frozen EMPTY_COLUMNS / EMPTY_ROWS replace the per-render [] literals (the
    destructuring defaults and the non-array data fallback), so "absent" is a stable value;
  • the columns sync re-seeds on a value change, not a new identity
    (setColumns(prev => columnsAreEquivalent(prev, initialColumns) ? prev : initialColumns)).

The second half is load-bearing rather than belt-and-braces: both dashboard surfaces rebuild the
child node on every render, so with fix 3 below they now hand the table a freshly-derived columns
array each time. Shallow per column, on purpose — column entries carry render functions, and
comparing those by identity is exactly what the sync already did.

2. The blank — columns is a REQUIRED key neither surface supplied

DataTableSchema.columns is required (packages/types/src/data-display.ts:369), and both surfaces
built the static node without it whenever the author declared no options.columns. Measured on
origin/main: zero th, zero td, one empty tr per row — the table drew rows it had no cells
for. A "no error boundary" assertion alone would have passed on that, which is the silent blank
#4612 / #4613 / #4614 spent three cards removing from these surfaces.

The provider: 'object' half of this same widget family has always derived columns from the rows
when none were declared (ObjectDataTable.tsx:327-339), so the static half was the odd one out
inside one family. deriveStaticTableColumns (plugin-dashboard/src/utils.ts) is that behaviour
reaching it — first row's keys, _-prefixed dropped, headers humanized through the helper the
object path now shares (humanizeFieldKey, lifted out of normalizeColumns unchanged so the two
halves cannot drift). An author-declared column list always wins: a whitelist is never a
starting point.

3. DashboardGridLayout never read an authored array

Its static branch resolved rows as widgetData?.items || []undefined, hence [], for the
authored ARRAY shape. DashboardRenderer's mirror of the same branch has carried the
Array.isArray arm all along. Visible pre-fix as "No results found" under correct headers whenever
columns were declared (so the loop did not mask it).

Red-first, verbatim

pnpm exec vitest run --maxWorkers=2 on the two new suites, pre-fix — both dashboard surfaces:

FAIL StaticTableWidget.test.tsx > DashboardRenderer … > does not crash into the error boundary
expected document not to contain element, found < p class="font-medium" >
Component "data-table" failed to render
</p> instead
Error: Maximum update depth exceeded. This can happen when a component repeatedly calls setState
inside componentWillUpdate or componentDidUpdate. React limits the number of nested updates to
prevent infinite loops.
at dispatchSetState (react-dom-client.development.js:9127:7)
at /packages/components/src/renderers/complex/data-table.tsx:788:7
at commitHookLayoutEffects (react-dom-client.development.js:13213:11)
The above error occurred in the < DataTableRenderer > component.

Angle brackets in the two quoted snippets above are spaced (< p, < DataTableRenderer >) so the
GitHub body sanitizer does not eat them as HTML tags; nothing else about them is altered. The
boundary's rendered text matched the filing exactly, including the "Retry" button. Also red
pre-fix: renders a real table … (expected null to be truthy — the boundary replaced the
table), and, for the grid only, honours author-declared columns …
('…Recent InvoicesInvoiceNo results foundTry adjusting your filters or search query.' to contain 'INV-1' — defect 3 with the loop out of the way).

Component-level, pre-fix, with the schema stable and only the host re-rendering:

AssertionError: expected [Function] to not throw an error but
'Error: Maximum update depth exceeded.…' was thrown
❯ data-table-render-loop.test.tsx:92:37 expect(() => tile.churn(3)).not.toThrow();

Coverage

  • packages/components/…/__tests__/data-table-render-loop.test.tsx — the loop at the renderer
    level, plus the two controls that stop the fix from being "we removed the sync": declared columns
    still reach the DOM under the same host churn, and a real column change still re-syncs.
  • packages/plugin-dashboard/src/__tests__/StaticTableWidget.test.tsxdescribe.each over BOTH
    surfaces: no boundary under churn; a real table (derived headers and cells); declared columns
    honoured and not widened; an empty data: [] invents no headers; a static bar widget on the
    same surface unchanged.

Verification

Consumer radius — census by import: data-table is consumed by plugin-dashboard
(DashboardRenderer / DashboardGridLayout / ObjectDataTable), plugin-detail (RelatedList) and
plugin-grid (ObjectGrid); plugin-list and app-shell reach it through those. Repo-root
pnpm exec vitest run --maxWorkers=2 over all six: 767 files, 7228 passed, 1 skipped, 0 failed.

Reverse verification (patch + git checkout + sha256-verified restore, never git stash) was run
as a partition rather than one revert, and the result corrected my own expectation — worth reading
before review:

revertedcomponents loop suitedashboard "does not crash"dashboard "renders a real table"
nothinggreengreengreen
Adata-table.tsx onlyREDgreengreen
B — both dashboard surfaces onlygreengreenRED (both surfaces) + grid's declared-columns case RED
both (= origin/main)REDREDRED

Row A is the one I predicted wrong. With the dashboard supplying columns, reverting the components
fix does not bring the crash back on either dashboard surface: a declared columns array comes
off the schema, which is stable across the table's own re-renders, so the churn is no longer
self-sustaining. In other words the dashboard-side fix alone would have made the reported symptom
disappear — which is exactly why it is not the fix. Row A's red is the components-level suite, the
only thing pinning the cause, and it stays live for any consumer that omits columns. Row B is the
mirror: the components fix alone removes the crash and leaves the blank. Neither half papers over the
other, and each is load-bearing on its own.

sha256 of all three files matched their pre-revert values after every restore; git status clean.

Grading — patch, by measurement. Full .d.ts manifest (231 files across both packages) rebuilt
with dist/ and *.tsbuildinfo cleared, reproducible across three builds, diffed against
origin/main: @object-ui/components is byte-identical — a pure behaviour fix. The single delta
in the whole set is plugin-dashboard/dist/utils.d.ts, which gains two additive declarations
(humanizeFieldKey, deriveStaticTableColumns) and is not reachable through the package entry
index.d.ts never references it and exports maps only .. Module-local, additive, nothing removed
or narrowed: patch on the #4496 precedent. Never major.

Type-check, PREFIX-filtered (direction: downstream consumers,
--filter '...@object-ui/components' --filter '...@object-ui/plugin-dashboard') — 31 packages,
0 errors. Two false reds along the way were missing sibling artifacts (@object-ui/mobile,
@object-ui/permissions had no dist/), cleared by a full workspace build, not by any source change.

ESLint, net −2 against an origin/main compare worktree (same filter, both sides):
@object-ui/components 920 → 918 warnings, plugin-dashboard 327 → 327, and the entire delta is
the removal of

warning The 'data' conditional could make the dependencies of useMemo Hook (at line 759 / 899)
change on every render. react-hooks/exhaustive-deps

— the linter had been reporting this defect's own shape on main all along. No warning added: the
guard is typed readonly unknown[] with a Record< string, unknown > narrowing rather than any.

Gate battery, all PASS: check-{control-bytes, phantom-dependencies, changeset-presence, changeset-no-major, changeset-fixed, type-check-coverage, lint-coverage, doc-links}.mjs. Control-byte
self-scan over every changed file including untracked
(grep -naP '[\x00-\x08\x0b\x0c\x0e-\x1f\x7f]'): no hits. One changeset, patch/patch.

Surface respected: nothing under apps/site/** or examples/schema-catalog/test/** — a
catalog-side render pin for the static table widget (there is still no catalog entry exercising it,
which is why nothing caught this) belongs to the #4616 seat's render-pin extension, not here.
content/docs/releases/** untouched.

Filed, not fixed: #4629ObjectDataTable's finalData fallback is the same per-render literal
one file over, feeding the derivedColumns memo. It cannot loop (memo only, and the child's state
write does not re-render it), so it is observation-class and out of this card's scope.


Generated by Claude Code

…s instead of looping (#4618)
Reported as a `table` dashboard widget crashing into the error boundary with
"Maximum update depth exceeded", thrown at data-table.tsx:788 — a line in the
sticky-offset layout effect that has nothing to do with the cause. Three hops,
all inside data-table.tsx: the `columns: rawColumns = []` destructuring default
evaluates a fresh array every render, an identity-keyed useMemo turns that into
a fresh `initialColumns`, and the `useEffect(() => setColumns(initialColumns))`
sync writes state for it — scheduling the render that regenerates the literal.
React throws from the layout effect keyed on `columns` because that is the
synchronous nested-update path it counts.
Also fixes the two reasons the same widget rendered nothing once it stopped
crashing: neither dashboard surface supplied the REQUIRED `columns` key, and
DashboardGridLayout read the authored rows as `widgetData?.items` — `[]` for the
array shape its sibling has always handled.
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_017Qqyix2QcnpUC9XeYVDzx3
@vercel

vercelBot commented Aug 14, 2026

Copy link
Copy Markdown

The latest updates on your projects. Learn more about Vercel for GitHub.

1 Skipped Deployment
ProjectDeploymentActionsUpdated (UTC)
objectuiIgnoredIgnoredAug 14, 2026 3:17am

Request Review

@github-actions

Copy link
Copy Markdown
Contributor

✅ Console Performance Budget

MetricValueBudget
Main entry (gzip)24.7 KB350 KB
Entry fileindex-Ci7-VHpu.js
StatusPASS

📦 Bundle Size Report

PackageSizeGzipped
app-shell (index.js)9.56KB3.59KB
app-shell (runtime-config.js)7.42KB2.32KB
app-shell (types.js)0.01KB0.04KB
app-shell (urlParams.js)8.92KB3.41KB
auth (AuthContext.js)0.31KB0.24KB
auth (AuthGuard.js)1.17KB0.53KB
auth (AuthProvider.js)25.13KB5.40KB
auth (AuthShell.js)3.49KB1.40KB
auth (ForgotPasswordForm.js)12.21KB3.45KB
auth (LoginForm.js)18.13KB5.39KB
auth (PreviewBanner.js)0.90KB0.50KB
auth (RegisterForm.js)6.64KB2.21KB
auth (SocialSignInButtons.js)9.60KB3.89KB
auth (UserMenu.js)3.40KB1.22KB
auth (auth-gate-events.js)1.29KB0.66KB
auth (authStyles.js)5.04KB1.72KB
auth (createAuthClient.js)38.46KB10.17KB
auth (createAuthenticatedFetch.js)6.34KB2.43KB
auth (index.js)2.35KB1.07KB
auth (org-roles.js)6.66KB2.78KB
auth (phone-identifier.js)1.11KB0.66KB
auth (types.js)0.59KB0.35KB
auth (useAuth.js)5.02KB0.88KB
auth (useIsWorkspaceAdmin.js)1.61KB0.85KB
collaboration (CommentThread.js)26.07KB7.56KB
collaboration (LiveCursors.js)3.17KB1.27KB
collaboration (PresenceAvatars.js)6.49KB2.64KB
collaboration (PresenceProvider.js)2.79KB1.13KB
collaboration (index.js)1.65KB0.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)489.87KB108.67KB
core (index.js)3.79KB1.52KB
create-plugin (index.js)10.08KB3.26KB
data-objectstack (index.js)163.56KB44.83KB
fields (index.js)230.37KB57.17KB
i18n (LocalizationContext.js)1.76KB0.96KB
i18n (currency.js)1.22KB0.64KB
i18n (i18n.js)4.32KB1.77KB
i18n (index.js)3.35KB1.38KB
i18n (pickLocalized.js)3.69KB1.73KB
i18n (provider.js)23.12KB7.62KB
i18n (useDisplayLocale.js)2.84KB1.45KB
i18n (useObjectLabel.js)27.59KB6.63KB
i18n (useSafeTranslation.js)7.77KB3.13KB
layout (index.js)38.98KB10.85KB
mobile (MobileProvider.js)0.92KB0.49KB
mobile (ResponsiveContainer.js)0.94KB0.38KB
mobile (breakpoints.js)1.51KB0.70KB
mobile (createOfflineDataSource.js)5.61KB1.74KB
mobile (index.js)1.50KB0.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.71KB0.42KB
mobile (useResponsiveConfig.js)1.36KB0.63KB
mobile (useSpecGesture.js)4.32KB1.64KB
mobile (useTouchTarget.js)1.01KB0.54KB
permissions (MePermissionsProvider.js)8.75KB3.06KB
permissions (PermissionContext.js)0.31KB0.25KB
permissions (PermissionGuard.js)0.89KB0.45KB
permissions (PermissionProvider.js)3.67KB1.12KB
permissions (evaluator.js)4.41KB1.44KB
permissions (index.js)0.91KB0.41KB
permissions (store.js)0.91KB0.42KB
permissions (useFieldPermissions.js)1.28KB0.52KB
permissions (usePermissions.js)1.55KB0.71KB
plugin-ai (index.js)15.75KB3.80KB
plugin-calendar (index.js)46.86KB12.91KB
plugin-charts (index.js)62.10KB17.67KB
plugin-chatbot (index.js)181.21KB43.14KB
plugin-dashboard (index.js)121.84KB31.74KB
plugin-designer (index.js)212.58KB42.83KB
plugin-detail (index.js)239.93KB60.01KB
plugin-editor (index.js)2.46KB1.10KB
plugin-form (index.js)114.72KB27.70KB
plugin-gantt (index.js)164.30KB40.02KB
plugin-grid (index.js)190.02KB50.48KB
plugin-kanban (index.js)52.74KB14.53KB
plugin-list (index.js)112.01KB27.27KB
plugin-map (index.js)18.16KB5.81KB
plugin-markdown (index.js)13.72KB4.69KB
plugin-report (index.js)41.38KB11.09KB
plugin-timeline (index.js)26.68KB7.66KB
plugin-tree (index.js)8.50KB2.88KB
plugin-view (index.js)84.09KB20.56KB
providers (DataSourceProvider.js)0.75KB0.39KB
providers (MetadataProvider.js)1.37KB0.59KB
providers (ThemeProvider.js)1.90KB0.85KB
providers (UploadProvider.js)11.71KB3.53KB
providers (index.js)0.44KB0.22KB
providers (types.js)0.01KB0.04KB
react-runtime (index.js)5.67KB2.37KB
react (LazyPluginLoader.js)3.77KB1.33KB
react (SchemaRenderer.js)27.64KB9.44KB
react (data-invalidation.js)5.05KB2.08KB
react (index.js)1.26KB0.67KB
react (schema-input.js)1.45KB0.83KB
react (spec-input.js)0.20KB0.18KB
sdui-parser (codegen.js)4.09KB1.74KB
sdui-parser (index.js)4.47KB2.03KB
sdui-parser (parse.js)10.04KB2.82KB
sdui-parser (types.js)0.29KB0.24KB
sdui-parser (validate.js)4.69KB1.48KB
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)0.20KB0.18KB
types (crud.js)0.20KB0.18KB
types (dashboard-filter-alias.js)6.23KB2.74KB
types (data-display.js)0.20KB0.18KB
types (data-protocol.js)0.20KB0.19KB
types (data.js)0.20KB0.18KB
types (designer.js)1.87KB0.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-retry.js)4.32KB2.02KB
types (index.js)3.05KB1.52KB
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 (system-fields.js)3.33KB1.54KB
types (theme.js)0.20KB0.18KB
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

…4618)
eslint net count vs origin/main for the two touched packages: 920 -> 918
warnings, all in @object-ui/components, and the delta is exactly the two
`react-hooks/exhaustive-deps` warnings this card's fix removes —
The 'data' conditional could make the dependencies of useMemo Hook (at line
759 / 899) change on every render.
which is the reported defect's own shape, reported by the linter on main all
along. The first draft of the guard added three `no-explicit-any` warnings back;
`readonly unknown[]` plus a `Record< string, unknown >` narrowing, and
`DataTableSchema['data']` for the shared empty, add none.
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_017Qqyix2QcnpUC9XeYVDzx3
@github-actions

Copy link
Copy Markdown
Contributor

✅ Console Performance Budget

MetricValueBudget
Main entry (gzip)24.7 KB350 KB
Entry fileindex-Crjg4ceO.js
StatusPASS

📦 Bundle Size Report

PackageSizeGzipped
app-shell (index.js)9.56KB3.59KB
app-shell (runtime-config.js)7.42KB2.32KB
app-shell (types.js)0.01KB0.04KB
app-shell (urlParams.js)8.92KB3.41KB
auth (AuthContext.js)0.31KB0.24KB
auth (AuthGuard.js)1.17KB0.53KB
auth (AuthProvider.js)25.13KB5.40KB
auth (AuthShell.js)3.49KB1.40KB
auth (ForgotPasswordForm.js)12.21KB3.45KB
auth (LoginForm.js)18.13KB5.39KB
auth (PreviewBanner.js)0.90KB0.50KB
auth (RegisterForm.js)6.64KB2.21KB
auth (SocialSignInButtons.js)9.60KB3.89KB
auth (UserMenu.js)3.40KB1.22KB
auth (auth-gate-events.js)1.29KB0.66KB
auth (authStyles.js)5.04KB1.72KB
auth (createAuthClient.js)38.46KB10.17KB
auth (createAuthenticatedFetch.js)6.34KB2.43KB
auth (index.js)2.35KB1.07KB
auth (org-roles.js)6.66KB2.78KB
auth (phone-identifier.js)1.11KB0.66KB
auth (types.js)0.59KB0.35KB
auth (useAuth.js)5.02KB0.88KB
auth (useIsWorkspaceAdmin.js)1.61KB0.85KB
collaboration (CommentThread.js)26.07KB7.56KB
collaboration (LiveCursors.js)3.17KB1.27KB
collaboration (PresenceAvatars.js)6.49KB2.64KB
collaboration (PresenceProvider.js)2.79KB1.13KB
collaboration (index.js)1.65KB0.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)489.88KB108.67KB
core (index.js)3.79KB1.52KB
create-plugin (index.js)10.08KB3.26KB
data-objectstack (index.js)163.56KB44.83KB
fields (index.js)230.37KB57.17KB
i18n (LocalizationContext.js)1.76KB0.96KB
i18n (currency.js)1.22KB0.64KB
i18n (i18n.js)4.32KB1.77KB
i18n (index.js)3.35KB1.38KB
i18n (pickLocalized.js)3.69KB1.73KB
i18n (provider.js)23.12KB7.62KB
i18n (useDisplayLocale.js)2.84KB1.45KB
i18n (useObjectLabel.js)27.59KB6.63KB
i18n (useSafeTranslation.js)7.77KB3.13KB
layout (index.js)38.98KB10.85KB
mobile (MobileProvider.js)0.92KB0.49KB
mobile (ResponsiveContainer.js)0.94KB0.38KB
mobile (breakpoints.js)1.51KB0.70KB
mobile (createOfflineDataSource.js)5.61KB1.74KB
mobile (index.js)1.50KB0.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.71KB0.42KB
mobile (useResponsiveConfig.js)1.36KB0.63KB
mobile (useSpecGesture.js)4.32KB1.64KB
mobile (useTouchTarget.js)1.01KB0.54KB
permissions (MePermissionsProvider.js)8.75KB3.06KB
permissions (PermissionContext.js)0.31KB0.25KB
permissions (PermissionGuard.js)0.89KB0.45KB
permissions (PermissionProvider.js)3.67KB1.12KB
permissions (evaluator.js)4.41KB1.44KB
permissions (index.js)0.91KB0.41KB
permissions (store.js)0.91KB0.42KB
permissions (useFieldPermissions.js)1.28KB0.52KB
permissions (usePermissions.js)1.55KB0.71KB
plugin-ai (index.js)15.75KB3.80KB
plugin-calendar (index.js)46.86KB12.91KB
plugin-charts (index.js)62.10KB17.67KB
plugin-chatbot (index.js)181.21KB43.14KB
plugin-dashboard (index.js)121.84KB31.74KB
plugin-designer (index.js)212.58KB42.83KB
plugin-detail (index.js)239.93KB60.01KB
plugin-editor (index.js)2.46KB1.10KB
plugin-form (index.js)114.72KB27.70KB
plugin-gantt (index.js)164.30KB40.02KB
plugin-grid (index.js)190.02KB50.48KB
plugin-kanban (index.js)52.74KB14.53KB
plugin-list (index.js)112.01KB27.27KB
plugin-map (index.js)18.16KB5.81KB
plugin-markdown (index.js)13.72KB4.69KB
plugin-report (index.js)41.38KB11.09KB
plugin-timeline (index.js)26.68KB7.66KB
plugin-tree (index.js)8.50KB2.88KB
plugin-view (index.js)84.09KB20.56KB
providers (DataSourceProvider.js)0.75KB0.39KB
providers (MetadataProvider.js)1.37KB0.59KB
providers (ThemeProvider.js)1.90KB0.85KB
providers (UploadProvider.js)11.71KB3.53KB
providers (index.js)0.44KB0.22KB
providers (types.js)0.01KB0.04KB
react-runtime (index.js)5.67KB2.37KB
react (LazyPluginLoader.js)3.77KB1.33KB
react (SchemaRenderer.js)27.64KB9.44KB
react (data-invalidation.js)5.05KB2.08KB
react (index.js)1.26KB0.67KB
react (schema-input.js)1.45KB0.83KB
react (spec-input.js)0.20KB0.18KB
sdui-parser (codegen.js)4.09KB1.74KB
sdui-parser (index.js)4.47KB2.03KB
sdui-parser (parse.js)10.04KB2.82KB
sdui-parser (types.js)0.29KB0.24KB
sdui-parser (validate.js)4.69KB1.48KB
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)0.20KB0.18KB
types (crud.js)0.20KB0.18KB
types (dashboard-filter-alias.js)6.23KB2.74KB
types (data-display.js)0.20KB0.18KB
types (data-protocol.js)0.20KB0.19KB
types (data.js)0.20KB0.18KB
types (designer.js)1.87KB0.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-retry.js)4.32KB2.02KB
types (index.js)3.05KB1.52KB
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 (system-fields.js)3.33KB1.54KB
types (theme.js)0.20KB0.18KB
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

@yinlianghui
yinlianghui marked this pull request as ready for review August 14, 2026 03:30
@yinlianghui
yinlianghui added this pull request to the merge queueAug 14, 2026
Merged via the queue into main with commit a3ae404Aug 14, 2026
21 checks passed
@yinlianghui
yinlianghui deleted the claude/issue-4618-datatable-update-depth branch August 14, 2026 03:30
Sign up for freeto 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.

[plugin-dashboard] a table widget with inline static data crashes into the error boundary — "Maximum update depth exceeded"

2 participants

@yinlianghui@claude