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

Release 12/03 #4060

Merged
merged 2 commits into from
Mar 12, 2024
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
398 changes: 227 additions & 171 deletions package-lock.json

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions packages/terra-core-docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## Unreleased

## 1.66.0 - (March 12, 2024)

* Updated
* Updated terra list examples.
* Changed
Expand Down
6 changes: 3 additions & 3 deletions packages/terra-core-docs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@cerner/terra-core-docs",
"version": "1.65.0",
"version": "1.66.0",
"description": "Contains documentation for packages in the terra-core monorepo",
"author": "Cerner Corporation",
"repository": {
Expand Down Expand Up @@ -59,7 +59,7 @@
"terra-form-fieldset": "^2.80.0",
"terra-form-input": "^4.31.0",
"terra-form-radio": "^4.51.0",
"terra-form-select": "^6.57.0",
"terra-form-select": "^6.58.0",
"terra-form-textarea": "^5.32.0",
"terra-grid": "^6.36.0",
"terra-heading": "^4.55.0",
Expand All @@ -68,7 +68,7 @@
"terra-i18n": "^4.42.0",
"terra-icon": "^3.60.0",
"terra-image": "^3.41.0",
"terra-list": "^4.73.0",
"terra-list": "^4.73.1",
"terra-overlay": "^3.82.0",
"terra-paginator": "^2.92.0",
"terra-profile-image": "^3.46.0",
Expand Down
2 changes: 2 additions & 0 deletions packages/terra-form-select/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## Unreleased

## 6.58.0 - (March 12, 2024)

* Added
* Added proper exports for all subcomponents. They can now be imported without the subcomponent path inside the module.

Expand Down
2 changes: 1 addition & 1 deletion packages/terra-form-select/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "terra-form-select",
"version": "6.57.0",
"version": "6.58.0",
"description": "Provides a drop down of selectable options.",
"author": "Cerner Corporation",
"repository": {
Expand Down
2 changes: 2 additions & 0 deletions packages/terra-list/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## Unreleased

## 4.73.1 - (March 12, 2024)

* Fixed
* Fixed `onSelect` not triggering when draggable item is clicked.

Expand Down
2 changes: 1 addition & 1 deletion packages/terra-list/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "terra-list",
"version": "4.73.0",
"version": "4.73.1",
"description": "The Terra List is a structural component to arrange content within list/listitems.",
"author": "Cerner Corporation",
"repository": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -297,6 +297,7 @@ exports[`should render List with items 1`] = `
data-rbd-draggable-id="1"
draggable={false}
onBlur={[Function]}
onClick={[Function]}
onDragStart={[Function]}
onMouseDown={[Function]}
onTransitionEnd={null}
Expand Down Expand Up @@ -546,6 +547,7 @@ exports[`should render List with items 1`] = `
data-rbd-draggable-id="2"
draggable={false}
onBlur={[Function]}
onClick={[Function]}
onDragStart={[Function]}
onMouseDown={[Function]}
onTransitionEnd={null}
Expand Down Expand Up @@ -1014,6 +1016,7 @@ exports[`should render Section with items 1`] = `
data-rbd-draggable-id="123"
draggable={false}
onBlur={[Function]}
onClick={[Function]}
onDragStart={[Function]}
onMouseDown={[Function]}
onTransitionEnd={null}
Expand Down Expand Up @@ -1261,6 +1264,7 @@ exports[`should render Section with items 1`] = `
data-rbd-draggable-id="124"
draggable={false}
onBlur={[Function]}
onClick={[Function]}
onDragStart={[Function]}
onMouseDown={[Function]}
onTransitionEnd={null}
Expand Down Expand Up @@ -1707,6 +1711,7 @@ exports[`should render subsection with items 1`] = `
data-rbd-draggable-id="13"
draggable={false}
onBlur={[Function]}
onClick={[Function]}
onDragStart={[Function]}
onMouseDown={[Function]}
onTransitionEnd={null}
Expand Down Expand Up @@ -1954,6 +1959,7 @@ exports[`should render subsection with items 1`] = `
data-rbd-draggable-id="14"
draggable={false}
onBlur={[Function]}
onClick={[Function]}
onDragStart={[Function]}
onMouseDown={[Function]}
onTransitionEnd={null}
Expand Down Expand Up @@ -2201,6 +2207,7 @@ exports[`should render subsection with items 1`] = `
data-rbd-draggable-id="15"
draggable={false}
onBlur={[Function]}
onClick={[Function]}
onDragStart={[Function]}
onMouseDown={[Function]}
onTransitionEnd={null}
Expand Down
Loading