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

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .bitmap
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"api-reference": {
"name": "api-reference",
"scope": "teambit.api-reference",
"version": "1.0.1096",
"version": "1.0.1107",
"mainFile": "index.ts",
"rootDir": "components/api-reference"
},
Expand Down Expand Up @@ -75,7 +75,7 @@
"overview/renderers/grouped-schema-nodes-overview-summary": {
"name": "overview/renderers/grouped-schema-nodes-overview-summary",
"scope": "teambit.api-reference",
"version": "0.0.70",
"version": "0.0.71",
"mainFile": "index.ts",
"rootDir": "components/overview/renderers/grouped-schema-nodes-overview-summary"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,9 @@ export function SchemaNodesSummary({
headings={_headings}
/>
{groupedMembersByType.map((member) => {
// @ts-expect-error - version skew: local SchemaNode has diff() but npm-published version doesn't yet
// @ts-ignore - version skew: local SchemaNode has diff() but the npm-published one doesn't yet.
// Only errors in the capsule build, where two semantic-schema versions genuinely coexist; the
// workspace type-check resolves a single copy (tsconfig paths), so @ts-expect-error would be unused there.
return renderTable(type ?? '', member, _headings);
})}
</div>
Expand All @@ -146,7 +148,8 @@ export function SchemaNodesSummary({
{groupedMembersByType.map((member) => (
<SchemaMethodMember
key={`${member.__schema}-${member.name}`}
// @ts-expect-error - version skew: local SchemaNode has diff() but npm-published version doesn't yet
// @ts-ignore - version skew: local SchemaNode has diff() but the npm-published one doesn't yet.
// Only errors in the capsule build (two semantic-schema versions); unused in the workspace type-check.
member={member}
apiNodeRendererProps={apiNodeRendererProps}
/>
Expand Down