Skip to content
Merged
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
7 changes: 7 additions & 0 deletions .changeset/hot-owls-rescue.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
"@hashicorp/design-system-components": major
---

<!-- START components/table/advanced-table -->
`AdvancedTable` - Removed the `@isVisuallyHidden` argument from `HdsAdvancedTableTh` component. This setting is supported via setting `isVisuallyHidden` in the corresponding `@columns` item's configuration.
<!-- END -->
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,6 @@
@isExpandable={{column.isExpandable}}
@isStickyColumn={{this._isStickyColumn column}}
@isStickyColumnPinned={{this.isStickyColumnPinned}}
@isVisuallyHidden={{column.isVisuallyHidden}}
@tableHeight={{this._tableHeight}}
@tooltip={{column.tooltip}}
@onClickToggle={{this._tableModel.toggleAll}}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ export interface HdsAdvancedTableThSignature {
isExpandable?: boolean;
isStickyColumn?: boolean;
isStickyColumnPinned?: boolean;
isVisuallyHidden?: boolean;
newLabel?: string;
parentId?: string;
rowspan?: number;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -205,9 +205,6 @@ If the `Th` component is passed as the first cell of a body row, `role="rowheade
<C.Property @name="tooltip" @type="string">
Text string which will appear in the [`Tooltip`](/components/tooltip). May contain basic HTML tags for formatting text such as `strong` and `em` tags. Not intended for multi-paragraph text or other more complex content. May not contain interactive content such as links or buttons. The `placement` and `offset` are automatically set and can’t be overwritten.
</C.Property>
<C.Property @name="isVisuallyHidden" @type="boolean" @default="false">
If set to `true`, it visually hides the column’s text content (it will still be available to screen readers for accessibility).
</C.Property>
<C.Property @name="colspan" @type="string">
The number of columns the cell spans. Used to apply the correct grid styles and the aria-rowspan attribute for accessibility.
</C.Property>
Expand Down
Loading