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

Commit

Permalink
Merge branch 'main' into menu_group_SR_issue
Browse files Browse the repository at this point in the history
  • Loading branch information
PK106552 authored Oct 20, 2023
2 parents f8e50c8 + 3b96f4c commit fc7b04a
Show file tree
Hide file tree
Showing 415 changed files with 2,251 additions and 783 deletions.
3 changes: 3 additions & 0 deletions packages/terra-data-grid/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@
* Added
* Added base FlowsheetDataGrid component.

* Changed
* Updated prop descriptions for better consistency and accuracy in the `terra-data-grid` component.

## 0.7.0 - (October 3, 2023)

* Fixed
Expand Down
6 changes: 3 additions & 3 deletions packages/terra-data-grid/src/WorklistDataGrid.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,13 +40,13 @@ const propTypes = {

/**
* Data for pinned columns. Pinned columns are the stickied leftmost columns of the grid.
* Columns will be presented in the order given.
* Columns are rendered in the order in which they are provided.
*/
pinnedColumns: PropTypes.arrayOf(columnShape),

/**
* Data for overflow columns. Overflow columns are rendered in the Worklist Data Grid's horizontal overflow.
* Columns will be presented in the order given.
* Columns are rendered in the order in which they are provided.
*/
overflowColumns: PropTypes.arrayOf(columnShape),

Expand Down Expand Up @@ -121,7 +121,7 @@ const propTypes = {
*/
onEnableRowSelection: PropTypes.func,
/**
* Boolean indicating whether or not the DataGrid should allow entire rows to be selectable. An additional column will be
* Boolean indicating whether or not the Worklist Data Grid should allow entire rows to be selectable. An additional column will be
* rendered to allow for row selection to occur.
*/
hasSelectableRows: PropTypes.bool,
Expand Down
8 changes: 4 additions & 4 deletions packages/terra-data-grid/src/proptypes/cellShape.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,19 @@ import PropTypes from 'prop-types';

const cellShape = PropTypes.shape({
/**
* Content that will be rendered within the Cell.
* The content to render within the cell.
*/
content: PropTypes.node,
/**
* Boolean indicating if cell contents are masked.
* A boolean indicating if the cell content is masked.
*/
isMasked: PropTypes.bool,
/**
* Boolean value indicating whether or not the column header is selectable.
* A boolean indicating if the cell is selectable.
*/
isSelectable: PropTypes.bool,
/**
* Boolean value indicating whether or not the cell should render as selected.
* A boolean indicating if the cell is selected.
*/
isSelected: PropTypes.bool,
});
Expand Down
6 changes: 2 additions & 4 deletions packages/terra-data-grid/src/proptypes/rowShape.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,19 +8,17 @@ const rowShape = PropTypes.shape({
id: PropTypes.string.isRequired,

/**
* Data to be displayed in the cells of the row. Cells will be rendered in the row in the order given.
* An array of cell objects that define the content to be rendered in the row. Cells will be rendered in the order given and are expected to be in the same order as the columns.
*/
cells: PropTypes.arrayOf(cellShape),
/**
* A boolean indicating whether or not the row should render as selected.
*/
isSelected: PropTypes.bool,
/**
* A string identifier used to describe the row contents. This value will be used to construct additional labels
* for internal controls (e.g. row selection cells).
* A string identifier used to describe the row contents. This value will be used by screen readers when announcing row selection and unselection.
*/
ariaLabel: PropTypes.string,

});

export default rowShape;
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
13 changes: 13 additions & 0 deletions packages/terra-framework-docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,15 @@
* Added
* Added `aria-label` and `ariaDescribedBy` props.

## 1.42.0 - (October 20, 2023)

* Added
* Added test to cover enabling zebra striping for the `terra-table` component.
* Added test for tab focus for scrollable tables for the `terra-table` component.

* Updated
* Removed columnHeaderHeight from tests using the default implementation for `terra-data-grid`.

## 1.41.0 - (October 17, 2023)

* Added
Expand All @@ -17,11 +26,15 @@
* Updates examples for `terra-data-grid` to cover scenarios for focusable elements prevented from receiving focus.
* Updated focusable cell test for `terra-data-grid` to account for focusable elements in a hidden container.

* Added
* Added example for vertical orientation functionality for `terra-tabs`.

## 1.40.0 - (October 11, 2023)

* Added
* Added documentation for the new `terra-file-path` component.
* Added documentation for FlowsheetDataGrid in `terra-data-grid`.
* Added additional documentation and implementation guide in adherence to the newly established documentation template for the examples of Worklist Data Grid in `terra-data-grid`.

## 1.39.0 - (October 3, 2023)

Expand Down
6 changes: 3 additions & 3 deletions packages/terra-framework-docs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@cerner/terra-framework-docs",
"version": "1.41.0",
"version": "1.42.0",
"description": "Contains documentation for packages in the terra-framework monorepo",
"main": "index.js",
"publishConfig": {
Expand Down Expand Up @@ -71,8 +71,8 @@
"terra-slide-panel": "^3.46.0",
"terra-slide-panel-manager": "^5.82.0",
"terra-spacer": "^3.59.0",
"terra-table": "^5.0.0-alpha.0",
"terra-tabs": "^7.10.0",
"terra-table": "^5.1.0-alpha.0",
"terra-tabs": "^7.11.0",
"terra-text": "^4.49.0",
"terra-theme-context": "^1.8.0",
"terra-theme-provider": "^4.13.0",
Expand Down
Loading

0 comments on commit fc7b04a

Please sign in to comment.