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 UXPLATFORM-10191_multiselect
Browse files Browse the repository at this point in the history
  • Loading branch information
adavijit authored Apr 24, 2024
2 parents 83b443f + 778bfbc commit f53740a
Show file tree
Hide file tree
Showing 16 changed files with 71 additions and 51 deletions.
36 changes: 18 additions & 18 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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

## Unreleased

## 3.56.1-alpha.1 - (April 24, 2024)

* Removed
* Reverted the change for a reflow issue when the viewport is resized to 320x256 px.

## 3.56.1-alpha.0 - (April 10, 2024)

* Changed
Expand Down
2 changes: 1 addition & 1 deletion packages/terra-arrange/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "terra-arrange",
"version": "3.56.1-alpha.0",
"version": "3.56.1-alpha.1",
"description": "The arrange component is used for horizontally arranging and vertically aligning a single row of container elements.",
"author": "Cerner Corporation",
"repository": {
Expand Down
16 changes: 2 additions & 14 deletions packages/terra-arrange/src/Arrange.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -11,18 +11,14 @@

// Makes sure fill expands to fill the remaining space of its parent container
.fill {
flex-grow: 1;
flex-shrink: 1;
flex-basis: auto;
flex: 1 1 auto;
min-width: 0;
}

// Styles specific to align items independently of each other
.fit {
align-self: flex-start;
flex-grow: 0;
flex-shrink: 0;
flex-basis: auto;
flex: 0 0 auto;
}

.center {
Expand All @@ -42,12 +38,4 @@
.default {
align-self: flex-start;
}

@media (max-width: 320px), (max-height: 256px) {
.fit {
flex-grow: 0;
flex-shrink: 0;
flex-basis: 0;
}
}
}
4 changes: 3 additions & 1 deletion packages/terra-core-docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@

* Added
* Added test for `terra-form-select`.


## 1.72.0 - (April 24, 2024)

* Changed
* Updated documentation for `terra-signature`.
* Added
Expand Down
14 changes: 7 additions & 7 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.71.0",
"version": "1.72.0",
"description": "Contains documentation for packages in the terra-core monorepo",
"author": "Cerner Corporation",
"repository": {
Expand Down Expand Up @@ -39,7 +39,7 @@
"terra-action-footer": "^2.68.0",
"terra-action-header": "^2.93.0",
"terra-alert": "^4.95.0",
"terra-arrange": "^3.56.1-alpha.0",
"terra-arrange": "^3.56.1-alpha.1",
"terra-avatar": "^3.20.0",
"terra-badge": "^3.61.0",
"terra-base": "^5.53.0",
Expand All @@ -62,7 +62,7 @@
"terra-form-select": "^6.61.0",
"terra-form-textarea": "^5.33.0",
"terra-grid": "^6.36.0",
"terra-heading": "^4.56.0",
"terra-heading": "^4.57.0",
"terra-html-table": "^1.18.0",
"terra-hyperlink": "^2.69.0",
"terra-i18n": "^4.42.0",
Expand All @@ -76,21 +76,21 @@
"terra-responsive-element": "^5.41.0",
"terra-scroll": "^2.37.0",
"terra-search-field": "^3.102.0",
"terra-section-header": "^2.68.0",
"terra-section-header": "^2.69.0",
"terra-show-hide": "^2.68.0",
"terra-signature": "^2.42.0",
"terra-slide-panel": "^3.46.0",
"terra-spacer": "^3.64.0",
"terra-status": "^4.64.0",
"terra-status": "^4.65.0",
"terra-status-view": "^4.76.0",
"terra-switch": "^1.14.0",
"terra-tabs": "^7.21.0",
"terra-tag": "^2.69.0",
"terra-text": "^4.57.0",
"terra-text": "^4.58.0",
"terra-theme-context": "^1.0.0",
"terra-toggle": "^3.62.0",
"terra-toggle-button": "^3.87.0",
"terra-toggle-section-header": "^2.79.0",
"terra-toggle-section-header": "^2.80.0",
"terra-toolbar": "^1.47.0",
"terra-visually-hidden-text": "^2.38.0"
},
Expand Down
5 changes: 5 additions & 0 deletions packages/terra-heading/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

## Unreleased

## 4.57.0 - (April 24, 2024)

* Changed
* Minor dependency version bump.

## 4.56.0 - (April 10, 2024)

* Changed
Expand Down
4 changes: 2 additions & 2 deletions packages/terra-heading/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "terra-heading",
"version": "4.56.0",
"version": "4.57.0",
"description": "Terra includes styling for all standard headings `h1` through `h6`, as well as styles that match the size of their respective heading.",
"author": "Cerner Corporation",
"repository": {
Expand All @@ -25,7 +25,7 @@
"dependencies": {
"classnames": "^2.2.5",
"prop-types": "^15.5.8",
"terra-arrange": "^3.56.1-alpha.0"
"terra-arrange": "^3.56.1-alpha.1"
},
"peerDependencies": {
"react": "^16.8.5",
Expand Down
5 changes: 5 additions & 0 deletions packages/terra-section-header/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

## Unreleased

## 2.69.0 - (April 24, 2024)

* Changed
* Minor dependency version bump.

## 2.68.0 - (April 10, 2024)

* Changed
Expand Down
4 changes: 2 additions & 2 deletions packages/terra-section-header/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "terra-section-header",
"version": "2.68.0",
"version": "2.69.0",
"description": "Section Header component that contains text and can be optionally interacted with.",
"author": "Cerner Corporation",
"repository": {
Expand All @@ -25,7 +25,7 @@
"classnames": "^2.2.5",
"keycode-js": "^3.1.0",
"prop-types": "^15.5.8",
"terra-arrange": "^3.56.1-alpha.0",
"terra-arrange": "^3.56.1-alpha.1",
"terra-mixins": "^1.41.0",
"terra-theme-context": "^1.0.0"
},
Expand Down
5 changes: 5 additions & 0 deletions packages/terra-status/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

## Unreleased

## 4.65.0 - (April 24, 2024)

* Changed
* Minor dependency version bump.

## 4.64.0 - (April 10, 2024)

* Changed
Expand Down
4 changes: 2 additions & 2 deletions packages/terra-status/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "terra-status",
"version": "4.64.0",
"version": "4.65.0",
"description": "The status component provides a customizable color indictor to signify a specific condition.",
"author": "Cerner Corporation",
"repository": {
Expand All @@ -24,7 +24,7 @@
"dependencies": {
"classnames": "^2.2.5",
"prop-types": "^15.5.8",
"terra-arrange": "^3.56.1-alpha.0",
"terra-arrange": "^3.56.1-alpha.1",
"terra-icon": "^3.60.0",
"terra-visually-hidden-text": "^2.38.0"
},
Expand Down
5 changes: 5 additions & 0 deletions packages/terra-text/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

## Unreleased

## 4.58.0 - (April 24, 2024)

* Changed
* Minor dependency version bump.

## 4.57.0 - (April 10, 2024)

* Changed
Expand Down
4 changes: 2 additions & 2 deletions packages/terra-text/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "terra-text",
"version": "4.57.0",
"version": "4.58.0",
"description": "The font size, font weight, font family, and font color in terra components are set to defaults in terra-base which is then inherited into all components. Components can override these base styles as needed in their specific component CSS. In some cases, you may need text that differs from the base font styles, though, the text doesn't belong to a specific component. In these cases, the text component may be helpful. Using terra-text, you can create text that differs from the base text styles by changing the font size, font weight, and color. However, there are some drawbacks to be aware of with this component. The styles set with this component are not themable and will be static. If this is a concern, we recommend building a custom component that handles your font styles that need to differ from the base font styles so you can control the themability of them.",
"author": "Cerner Corporation",
"repository": {
Expand All @@ -25,7 +25,7 @@
"dependencies": {
"classnames": "^2.2.5",
"prop-types": "^15.5.8",
"terra-arrange": "^3.56.1-alpha.0",
"terra-arrange": "^3.56.1-alpha.1",
"terra-theme-context": "^1.0.0"
},
"peerDependencies": {
Expand Down
5 changes: 5 additions & 0 deletions packages/terra-toggle-section-header/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

## Unreleased

## 2.80.0 - (April 24, 2024)

* Changed
* Minor dependency version bump.

## 2.79.0 - (April 10, 2024)

* Changed
Expand Down
Loading

0 comments on commit f53740a

Please sign in to comment.