Skip to content
This repository has been archived by the owner on May 24, 2024. It is now read-only.

[compact-interactive-list] Provide a meaningful name to the column with icons #2118

Merged
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
3 changes: 3 additions & 0 deletions packages/terra-framework-docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

## Unreleased

* Changed
* Updated `terra-compact-interactive-list` examples to provide a meaningful name to the column with icons.

## 1.78.0 - (March 29, 2024)

* Changed
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ This example demonstrates basic usage of the **[columns](/components/cerner-terr
const cols = [
{
id: 'Column-0',
displayName: 'Icon',
displayName: 'Status',
width: '60px', // width property is not required, it is used to provide a better visual structure
},
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ const rows = [
const cols = [
{
id: 'Column-0',
displayName: 'Icon',
displayName: 'Status',
width: '60px',
},
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ const rows = [
const cols = [
{
id: 'Column-0',
displayName: 'Icon',
displayName: 'Status',
width: '50px',
align: alignTypes.CENTER,
isSelectable: true,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ const rows = [
const cols = [
{
id: 'Column-0',
displayName: 'Icon',
displayName: 'Status',
width: '5em',
align: alignTypes.CENTER,
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ const getNumberOfColumns = (activeBreakpoint) => {
const cols = [
{
id: 'Column-0',
displayName: 'Icon',
displayName: 'Status',
width: '60px',
align: alignTypes.CENTER,
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ const rows = [
const cols = [
{
id: 'Column-0',
displayName: 'Icon',
displayName: 'Status',
width: '60px',
align: alignTypes.CENTER,
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ const rows = [
const cols = [
{
id: 'Column-0',
displayName: 'Icon',
displayName: 'Status',
width: '60px',
align: alignTypes.CENTER,
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ const rows = [
const cols = [
{
id: 'Column-0',
displayName: 'Icon',
displayName: 'Status',
width: '5em',
align: alignTypes.CENTER,
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ const getRowHeight = (activeBreakpoint) => {
const cols = [
{
id: 'Column-0',
displayName: 'Icon',
displayName: 'Status',
width: '60px',
align: alignTypes.CENTER,
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ const getNumberOfColumns = (activeBreakpoint) => {
const cols = [
{
id: 'Column-0',
displayName: 'Icon',
displayName: 'Status',
width: '60px',
align: alignTypes.CENTER,
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ const rows = [
const cols = [
{
id: 'Column-0',
displayName: 'Icon',
displayName: 'Status',
width: '60px',
align: alignTypes.CENTER,
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ const rows = [
const cols = [
{
id: 'Column-0',
displayName: 'Icon',
displayName: 'Status',
width: '50px',
align: alignTypes.CENTER,
isSelectable: true,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ const rows = [
const cols = [
{
id: 'Column-0',
displayName: 'Icon',
displayName: 'Status',
width: '60px',
align: alignTypes.CENTER,
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ const rows = [
const cols = [
{
id: 'Column-0',
displayName: 'Icon',
displayName: 'Status',
width: '60px',
align: alignTypes.CENTER,
maximumWidth: '10em',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ const rows = [
const cols = [
{
id: 'Column-0',
displayName: 'Icon',
displayName: 'Status',
width: '60px',
align: alignTypes.CENTER,
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ const rows = [
const cols = [
{
id: 'Column-0',
displayName: 'Icon',
displayName: 'Status',
width: '6em',
align: alignTypes.CENTER,
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ const rows = [
const cols = [
{
id: 'Column-0',
displayName: 'Icon',
displayName: 'Status',
maximumWidth: '4.5em',
align: alignTypes.CENTER,
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ const rows = [
const cols = [
{
id: 'Column-0',
displayName: 'Icon',
displayName: 'Status',
width: '60px',
align: alignTypes.CENTER,
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ const rows = [
const cols = [
{
id: 'Column-0',
displayName: 'Icon',
displayName: 'Status',
width: '60px',
align: alignTypes.CENTER,
},
Expand Down
Loading