Uh oh!
There was an error while loading. Please reload this page.
') + ')', 'gi'); if (regex.test(text)) { found = true; var frag = document.createDocumentFragment(); var parts = text.split(regex); parts.forEach(function(part, i) { if (i % 2 === 0) { frag.appendChild(document.createTextNode(part)); } else { var span = document.createElement('span'); span.className = 'userscript-highlight'; span.textContent = part; frag.appendChild(span); } }); node.parentNode.replaceChild(frag, node); } }); } else if (node.nodeType === 1 && node.childNodes) { // element var skipTags = ['SCRIPT', 'STYLE', 'NOSCRIPT', 'TEXTAREA', 'INPUT', 'SELECT']; if (!skipTags.includes(node.tagName)) { Array.from(node.childNodes).forEach(highlight); } } } highlight(document.body); // Re-highlight on dynamic content var observer = new MutationObserver(function(mutations) { mutations.forEach(function(m) { m.addedNodes.forEach(function(node) { if (node.nodeType === 1 || node.nodeType === 3) highlight(node); }); }); }); observer.observe(document.body, { childList: true, subtree: true }); })(); } } catch(__e) { console.warn('[Userscript:Highlight Search Terms]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + ', 'i'); if (__m === '*' || __re.test(location.href)) { // Strip utm_, fbclid, gclid, etc. from all links on page (function() { var trackingParams = ['utm_source', 'utm_medium', 'utm_campaign', 'utm_term', 'utm_content', 'fbclid', 'gclid', 'dclid', 'msclkid', 'yclid', 'ref', 'ref_src', 'source', 'medium', 'campaign']; function cleanUrl(url) { try { var u = new URL(url, window.location.origin); var changed = false; trackingParams.forEach(function(p) { if (u.searchParams.has(p)) { u.searchParams.delete(p); changed = true; } }); return changed ? u.toString() : url; } catch (e) { return url; } } function cleanLinks() { document.querySelectorAll('a[href]').forEach(function(a) { var clean = cleanUrl(a.href); if (clean !== a.href) a.href = clean; }); } cleanLinks(); var observer = new MutationObserver(function(mutations) { mutations.forEach(function(m) { m.addedNodes.forEach(function(node) { if (node.nodeType === 1) { if (node.tagName === 'A') cleanLinks(); node.querySelectorAll('a[href]').forEach(function(a) { var clean = cleanUrl(a.href); if (clean !== a.href) a.href = clean; }); } }); }); }); observer.observe(document.body, { childList: true, subtree: true }); })(); } } catch(__e) { console.warn('[Userscript:Remove Tracking Parameters from Links]', __e); } })(); (function(){ try { var __m = "youtube.com"; var __re = new RegExp('^' + "youtube\\.com" + ', 'i'); if (__m === '*' || __re.test(location.href)) { // Auto-enable theater mode on YouTube (function() { function tryTheater() { var btn = document.querySelector('button[aria-label="Theater mode"], ytd-player #player button[title="Theater mode"]'); if (btn && !btn.classList.contains('activated')) { btn.click(); } } // Try immediately tryTheater(); // Try after navigation (SPA) var lastUrl = location.href; setInterval(function() { if (location.href !== lastUrl) { lastUrl = location.href; setTimeout(tryTheater, 500); } }, 1000); // Also try on player load var observer = new MutationObserver(tryTheater); observer.observe(document.body, { childList: true, subtree: true }); })(); } } catch(__e) { console.warn('[Userscript:YouTube Theater Mode Default]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + ', 'i'); if (__m === '*' || __re.test(location.href)) { // Remove or un-stick sticky/fixed headers that block content (function() { function unstick() { document.querySelectorAll('header, nav, [role="banner"], .header, .navbar, .sticky, .fixed-top, [style*="position: fixed"], [style*="position:sticky"]').forEach(function(el) { if (el.style.position === 'fixed' || el.style.position === 'sticky' || getComputedStyle(el).position === 'fixed' || getComputedStyle(el).position === 'sticky') { el.style.position = 'static'; el.style.top = 'auto'; el.style.zIndex = 'auto'; } }); } unstick(); var observer = new MutationObserver(unstick); observer.observe(document.body, { childList: true, subtree: true, attributes: true, attributeFilter: ['style', 'class'] }); })(); } } catch(__e) { console.warn('[Userscript:Kill Sticky Headers]', __e); } })(); })();
There was an error while loading. Please reload this page.
renderCellEditor and schema-level cellClassName on DataTableSchema? — the two live undeclared keys the #6459 census measured #6882
Filed by the
domain:uiexecution seat (PM sessionsession_013hfmP9hoMd3dJwTh85J4yB, R28), executing the 2026-08-29 ruling's own closing clause on #6459:⛔ This seat is not deciding it.
packages/typesis a published surface, this widens the accept set, so it is clause-② and the human floor.The measurement (#6459 census, on
maina04d7c65, AST pass)Writers pass 47 distinct schema-level keys into
dataTableSchema;DataTableSchemadeclares 73 named members over its chain, excluding the[key: string]: anyatbase.ts:382. The difference in the "passed but not declared" direction is exactly two, both with live readers:renderCellEditordata-table.tsx, called through its own(schema as any)cast to hand cell editing to the returned widgetcellClassNamedata-table.tsx, destructured and folded into every body cell'sclassName⇒ both are in-use capabilities that are simply not declared. Not speculative keys.
borderless(:657),disableInnerScroll(:666),selectionResetKey(:905),singleClickEdit(:921) — are declared today, leaving onlyrenderCellEditor;cellClassName, which the census adds.⭐ Stability check, so this is not a snapshot: the same instrument re-run at PR #6637's merge commit
f241a4dfgives a byte-identical direction-A set (keys47→47, declared72→73, the sole addition beingbindfrom #6574). The set has not moved.Options
DataTableSchema+ document them;data-table.tsx's(schema as any)cast at:2269can then be droppedObjectGridDataTableSchemaHoldsinsideplugin-grid四维分析
① 实际业务需求。 两个键今天都在生产路径上被读,且各自缺失都有可感知后果:⚠️ 置信缺口如实标注:仓内读者已实测,外部作者面未测 —— 不知道外部作者今天是否已在写这两个键;若已在写,他们正在无声地依赖未声明面。
renderCellEditor缺失 ⇒ 单元格编辑退回内置输入;cellClassName缺失 ⇒ 行高密度样式到不了单元格。⇒ A 不是新增能力,是把既有行为说成真话。② 项目长远合理性。 declared ≠ enforced 正是本仓反复在关的那一类,而 B 让它继续存在于已发布渲染器上 —— 全仓最不该留这种债的位置。而且那个
(schema as any)cast 本身就是 A 的直接收益:它存在的唯一理由就是这两个键没被声明。③ 防 AI 写错(最吃重)。 B 之下,AI 写这两个键得不到任何信号 —— 拼错即静默失效,而
(schema as any)cast 正是把错误藏起来的那道门。A 让作者在编写期得到检查。⇒ 强烈指向 A。④ 创业阶段不扩散。 A 不扩散需求(能力已存在、已在跑),成本是一次声明 + 文档;B 零成本,但把债留在发布面上。
四棱读数
⇒ 四棱同向指向 A。 ⛔ 但这不进代裁通道 —— 它落在人工地板(已发布类型面 + clause-② 加宽接受集),置信门第②条不成立。四棱同向只说明方向清楚,不构成放行。
裁后执行(你不用管)
pm:queue工卡:在DataTableSchema上声明两键 + 文档 + 撤data-table.tsx:2269的 cast;标 Clause-②,派发档位取CONTRACT_REVIEW_TIER。plugin-grid的 seam 注释里记明这是被裁定保留的形态。Dedupe
Repo-scoped REST listing of 253 open issues plus local grep. Zero hits for a
cellClassNamedeclaration card; controlrenderCellEditorhit (#6459 and #6881) in the same read, so the zero is a measurement. Nearest neighbour #6881 checked and not a duplicate — that is the opposite direction (toolbardeclared and unread).Refs: #6459 (the census) · PR #6637 (the typing half, merged) · #6424 (the family precedent the ruling names) · #6881