-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* chore: fix rh-switch changeset * chore: fix `rh-tile` changeset * fix(cta): update changeset to major * fix(cta): remove duplicate changeset * docs: changeset * docs(footer): combine footer changesets * docs: update changeset * docs(footer): changeset * docs(table): update changeset formatting and switch to major * fix(tabs)!: remove deprecated attrs from rh-tab * fix(footer): remove deprecated css * docs: dont bold before / after changeset text * fix(dialog)!: deprecated css --------- Co-authored-by: Adam Johnson <[email protected]> Co-authored-by: Benny Powers <[email protected]> Co-authored-by: Benny Powers - עם ישראל חי! <[email protected]>
- Loading branch information
1 parent
8a061e9
commit 8e68a6a
Showing
17 changed files
with
146 additions
and
92 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,27 @@ | ||
--- | ||
"@rhds/elements": patch | ||
"@rhds/elements": major | ||
--- | ||
|
||
`<rh-footer>`: removed deprecated `global` slot, use `universal` slot | ||
`<rh-footer>`: removed deprecated `<rh-global-footer>` element and deprecated `global` slot. Use `<rh-footer-universal>` element and `universal` slot. | ||
|
||
Before: | ||
|
||
```html | ||
<rh-footer> | ||
<!-- ... --> | ||
<rh-global-footer slot="global"> | ||
<!-- ... --> | ||
</rh-global-footer> | ||
</rh-footer> | ||
``` | ||
|
||
After: | ||
|
||
```html | ||
<rh-footer> | ||
<!-- ... --> | ||
<rh-footer-universal slot="universal"> | ||
<!-- ... --> | ||
</rh-footer-universal> | ||
</rh-footer> | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
--- | ||
"@rhds/elements": patch | ||
"@rhds/elements": major | ||
--- | ||
|
||
`<rh-cta>`: removed deprecated read-only `cta` property; use `data-analytics` attributes instead | ||
`<rh-cta>`: removed read-only `cta` property; use `data-analytics` attributes instead |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
--- | ||
"@rhds/elements": major | ||
--- | ||
`<rh-dialog>`: removed deprecated `--rh-modal-video-aspect-ratio` CSS custom property | ||
|
||
Before: | ||
|
||
```css | ||
rh-dialog.custom-dialog { | ||
--rh-modal-video-aspect-ratio: 3/2; | ||
} | ||
``` | ||
|
||
After: | ||
|
||
```css | ||
rh-dialog.custom-dialog { | ||
--rh-dialog-video-aspect-ratio: 3/2; | ||
} | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
--- | ||
"@rhds/elements": major | ||
--- | ||
`<rh-footer>`: removed deprecated CSS custom properties | ||
|
||
Before: | ||
|
||
```css | ||
rh-footer.custom-footer { | ||
--rh-color-link-inline-on-dark: cyan; | ||
--rh-color-link-inline-hover-on-dark: cornflowerblue; | ||
--rh-color-link-inline-focus-on-dark: cornflowerblue; | ||
--rh-color-link-inline-visited-on-dark: cornflowerblue; | ||
} | ||
``` | ||
|
||
After: | ||
|
||
```css | ||
rh-footer.custom-footer { | ||
--rh-color-interactive-blue-lighter: cyan; | ||
--rh-color-interactive-blue-lightest: cornflowerblue; | ||
} | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,19 @@ | ||
--- | ||
"@rhds/elements": patch | ||
"@rhds/elements": major | ||
--- | ||
|
||
`<rh-spinner>`: remove deprecated color-palette property | ||
`<rh-spinner>`: remove deprecated `color-palette` attribute | ||
|
||
Before: | ||
|
||
```html | ||
<rh-spinner color-palette="darkest"></rh-spinner> | ||
``` | ||
|
||
After: | ||
|
||
```html | ||
<rh-surface color-palette="darkest"> | ||
<rh-spinner></rh-spinner> | ||
</rh-surface> | ||
``` |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,29 @@ | ||
--- | ||
"@rhds/elements": minor | ||
"@rhds/elements": major | ||
--- | ||
|
||
`<rh-alert>`: removed deprecated toast boolean attribute | ||
|
||
Before: | ||
```html | ||
<rh-alert toast> | ||
<h3 slot="header">Default</h3> | ||
<p> | ||
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam eleifend | ||
elit sed est egestas, a sollicitudin mauris tincidunt. | ||
</p> | ||
</rh-alert> | ||
``` | ||
Before: | ||
|
||
After: | ||
```html | ||
<rh-alert variant="toast"> | ||
<h3 slot="header">Default</h3> | ||
<p> | ||
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam eleifend | ||
elit sed est egestas, a sollicitudin mauris tincidunt. | ||
</p> | ||
</rh-alert> | ||
``` | ||
```html | ||
<rh-alert toast> | ||
<h3 slot="header">Default</h3> | ||
<p> | ||
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam eleifend | ||
elit sed est egestas, a sollicitudin mauris tincidunt. | ||
</p> | ||
</rh-alert> | ||
``` | ||
|
||
After: | ||
|
||
```html | ||
<rh-alert variant="toast"> | ||
<h3 slot="header">Default</h3> | ||
<p> | ||
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam eleifend | ||
elit sed est egestas, a sollicitudin mauris tincidunt. | ||
</p> | ||
</rh-alert> | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,23 @@ | ||
--- | ||
"@rhds/elements": patch | ||
"@rhds/elements": major | ||
--- | ||
|
||
`<rh-table>`: removed deprecated CSS custom properties | ||
|
||
Before: | ||
|
||
```css | ||
rh-table.custom-table { | ||
--rh-table-row-background-color: crimson; | ||
--rh-table-column-background-color: royalblue; | ||
} | ||
``` | ||
|
||
After: | ||
|
||
```css | ||
rh-table.custom-table { | ||
--rh-table-row-background-hover-color: crimson; | ||
--rh-table-column-background-hover-color: royalblue; | ||
} | ||
``` |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
--- | ||
"@rhds/elements": major | ||
--- | ||
`<rh-tabs>`: removed `box` and `vertical` attributes from `<rh-tab>`. Set them | ||
on `<rh-tabs>` instead. | ||
|
||
In most cases, you shouldn't need to update your templates, as long as `<rh-tabs>` | ||
has the right attributes |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.