Skip to content

Commit

Permalink
chore: prepare release (beta)
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Mar 9, 2023
1 parent eea1ec1 commit 4352e0a
Show file tree
Hide file tree
Showing 3 changed files with 70 additions and 1 deletion.
7 changes: 7 additions & 0 deletions .changeset/pre.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,22 +18,27 @@
"curly-seals-give",
"dirty-bears-fetch",
"dry-pans-mix",
"dull-pears-move",
"eight-garlics-grow",
"eleven-coats-fix",
"fair-birds-jog",
"fair-schools-deliver",
"feat-rh-button",
"few-weeks-scream",
"fifty-colts-cross",
"five-jars-smell",
"fresh-comics-repeat",
"funny-gorillas-dress",
"fuzzy-rabbits-nail",
"honest-hornets-tap",
"kind-suits-speak",
"long-colts-prove",
"mean-teachers-smile",
"metal-ants-mate",
"metal-chairs-pay",
"modern-rings-deny",
"nervous-walls-love",
"nice-buses-jump",
"nine-melons-sniff",
"plenty-tools-mix",
"polite-pets-reflect",
Expand All @@ -44,6 +49,7 @@
"rare-camels-turn",
"red-spies-search",
"rh-alert-initial",
"rh-avatar",
"rh-context-slotchange",
"rh-context-theme",
"rh-cta-initial",
Expand All @@ -52,6 +58,7 @@
"rh-pagination-initial",
"rich-snakes-develop",
"rotten-hats-pump",
"rude-carpets-switch",
"sharp-frogs-sing",
"shiny-bats-grab",
"short-llamas-hammer",
Expand Down
62 changes: 62 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,67 @@
# @rhds/elements

## 1.0.0-beta.33

### Major Changes

- acbb034d: Renamed `rh-secondary-nav` to `rh-navigation-secondary`

- Renamed all sub components `rh-secondary-nav-*` to `rh-navigation-secondary-*`
- Renamed all css custom properties `--rh-secondary-nav-*` to `--rh-navigation-secondary-*`
- Deprecated usage of `rh-secondary-nav-*` tags

### Minor Changes

- 5376e551: :sparkles: Added `<rh-subnav>`.

The subnav component is used when an alternate navigation structure is needed to provide additional navigatation on a site that does not need the product branding or structural depth that `rh-secondary-nav` provides

```html
<rh-subnav>
<a href="#">Users</a>
<a href="#">Containers</a>
<a href="#">Databases</a>
<a href="#" active>Servers</a>
<a href="#">System</a>
<a href="#">Network</a>
<a href="#">Cloud</a>
</rh-subnav>
```

- 0ed6700c: ✨ Added `<rh-tabs>`.

A tab set of layered content, including tab widgets and their associated tab
panel. When a tab is activated, the associated panel content becomes visible.
Tabs automatically display their panel when they receive focus.

```html
<rh-tabs>
<rh-tab>Tab 1</rh-tab>
<rh-tab-panel>Panel 1</rh-tab-panel>
<rh-tab>Tab 2</rh-tab>
<rh-tab-panel>Panel 2</rh-tab-panel>
</rh-tabs>
```

- 110def91: ✨ Added `<rh-avatar>`

An Avatar is a placeholder graphic for a photo or an image that is placed to the
left or on top of text.

```html
<rh-avatar
name="Grace Hopper"
subtitle="Rear Admiral"
src="hopper.jpg"
></rh-avatar>
```

### Patch Changes

- 2831b7e5: Improves page-loading performance of individual elements
- eea1ec17: `<rh-footer>`: prevent warnings in certain JavaScript frameworks
- 6f29b7ca: `<rh-alert>`: used design tokens for icon dimensions

## 1.0.0-beta.32

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@rhds/elements",
"version": "1.0.0-beta.32",
"version": "1.0.0-beta.33",
"description": "Red Hat Design System Elements",
"type": "module",
"license": "MIT",
Expand Down

0 comments on commit 4352e0a

Please sign in to comment.