diff --git a/CHANGELOG.md b/CHANGELOG.md index b842a7d0b..a04a89aa4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # CHANGELOG +## v2.0.91 + +- Type `Textarea` component and normalize props + +## v2.0.90 + +- + ## v2.0.89 - Slot `helper` added `RadioButton` as alternative to `helperText` diff --git a/src/components/Textarea/Textarea.mdx b/src/components/Textarea/Textarea.mdx index 94ecac4db..7b3b57bd5 100644 --- a/src/components/Textarea/Textarea.mdx +++ b/src/components/Textarea/Textarea.mdx @@ -3,20 +3,8 @@ import { Primary } from './Textarea.stories'; # Textarea -A textarea component for entering large blocks of text in a form. - -## How to Use - -You can pass in the `v-model` prop to bind the textarea to the parent component's data model. - -You can pass in a `@change` handler to trigger a custom function on change events. The `event` object will be emitted along with the `change` event. - -```html -