mirror of
https://github.com/zoriya/v10.git
synced 2026-08-14 18:04:49 +00:00
fix(site): add visible "Details" label to API reference table toggle columns (#1147)
Co-authored-by: Claude <noreply@anthropic.com>
This commit is contained in:
@@ -24,7 +24,7 @@ const vars = Object.entries(cssCustomProperties);
|
||||
<Thead>
|
||||
<Tr>
|
||||
<Th>Variable</Th>
|
||||
<Th />
|
||||
<Th>Details</Th>
|
||||
</Tr>
|
||||
</Thead>
|
||||
<Tbody>
|
||||
|
||||
@@ -25,7 +25,7 @@ const attrs = Object.entries(dataAttributes);
|
||||
<Tr>
|
||||
<Th>Attribute</Th>
|
||||
<Th>Type</Th>
|
||||
<Th />
|
||||
<Th>Details</Th>
|
||||
</Tr>
|
||||
</Thead>
|
||||
<Tbody>
|
||||
|
||||
@@ -27,7 +27,7 @@ const { props, componentName, showAttributeName } = Astro.props;
|
||||
<Th>Prop</Th>
|
||||
<Th>Type</Th>
|
||||
<Th>Default</Th>
|
||||
<Th />
|
||||
<Th>Details</Th>
|
||||
</Tr>
|
||||
</Thead>
|
||||
<Tbody>
|
||||
|
||||
@@ -25,7 +25,7 @@ const stateEntries = Object.entries(state);
|
||||
<Tr>
|
||||
<Th>Property</Th>
|
||||
<Th>Type</Th>
|
||||
<Th />
|
||||
<Th>Details</Th>
|
||||
</Tr>
|
||||
</Thead>
|
||||
<Tbody>
|
||||
|
||||
@@ -25,7 +25,7 @@ const { params, utilName } = Astro.props;
|
||||
<Th>Parameter</Th>
|
||||
<Th>Type</Th>
|
||||
<Th>Default</Th>
|
||||
<Th />
|
||||
<Th>Details</Th>
|
||||
</Tr>
|
||||
</Thead>
|
||||
<Tbody>
|
||||
|
||||
@@ -38,7 +38,7 @@ const hasDetail = !hasFields && Boolean(returnValue.detailedType || returnValue.
|
||||
<Tr>
|
||||
<Th>Property</Th>
|
||||
<Th>Type</Th>
|
||||
<Th />
|
||||
<Th>Details</Th>
|
||||
</Tr>
|
||||
</Thead>
|
||||
<Tbody>
|
||||
@@ -58,7 +58,7 @@ const hasDetail = !hasFields && Boolean(returnValue.detailedType || returnValue.
|
||||
<Thead>
|
||||
<Tr>
|
||||
<Th>Type</Th>
|
||||
<Th />
|
||||
<Th>Details</Th>
|
||||
</Tr>
|
||||
</Thead>
|
||||
<Tbody>
|
||||
|
||||
Reference in New Issue
Block a user