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

[terra-hyperlink] Fix Hyperlink import in example #3932

Merged
merged 2 commits into from
Oct 9, 2023
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
21 changes: 12 additions & 9 deletions packages/terra-core-docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,13 @@

## Unreleased

* Fixed
* Fixed hyperlink button example import for `terra-hyperlink`.

## 1.44.0 - (October 6, 2023)

* Updated
* Updated test and doc examples for `terra-progress-bar`
* Updated test and doc examples for `terra-progress-bar`.

## 1.43.0 - (October 3, 2023)

Expand All @@ -29,9 +32,9 @@
* Fixed
* `terra-icon` import corrections in documentation and examples.
* Fixed formatting `terra-icon` accessibility guide.

* Changed
* Updated icon example to specify `IconCeMarking` is private.
* Updated icon example to specify `IconCeMarking` is private.

## 1.40.0 - (September 19, 2023)

Expand All @@ -48,7 +51,7 @@
* Updated `terra-alert` long text example for accessible `terra-show-hide`.
* Updated doc site for `terra-form-single-select` and `terra-form-single-select-field`.


## 1.39.0 - (August 25, 2023)

* Fixed
Expand Down Expand Up @@ -144,7 +147,7 @@
* Changed
* Updated `terra-status-view - Change Variant` example component to use the apply button to change the selected variant.
* Updated `terra-form-textarea` example component and added an button to toggle valid/invalid status

* Added
* Added documentation updates for `Single Select` in `terra-form-select`.

Expand Down Expand Up @@ -209,7 +212,7 @@

## 1.24.0 - (April 5, 2023)

* Added
* Added
* Added Accessibility Guide for `terra-dropdown-button`.

* Changed
Expand Down Expand Up @@ -250,7 +253,7 @@
* Changed
* Updated radio and checkbox tests to fix fusion theme tests.

* Added
* Added
* Added Accessibility Guide for `terra-toggle`.
* Added A11y guide and examples for `terra-button`.

Expand All @@ -263,9 +266,9 @@
* Changed
* Updated examples to use informative icons.

* Added
* Added
* Added Label Example for `terra-toggle`.

## 1.19.0 - (January 31, 2023)

* Added
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React from 'react';
import HyperlinkButton from 'terra-hyperlink';
import Hyperlink from 'terra-hyperlink';

export default () => <HyperlinkButton onClick={() => {}} text="Default hyperlink button" />;
export default () => <Hyperlink onClick={() => {}} text="Default hyperlink button" />;
Loading