mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-14 18:01:06 +00:00
* chore(deps-dev): upgrade sveld, svelte-check * feat: forward paste event to input/textarea elements * Run "yarn build:docs" * test: assert paste event
19 lines
423 B
Svelte
19 lines
423 B
Svelte
<script lang="ts">
|
|
import { TextArea, TextAreaSkeleton } from "../types";
|
|
</script>
|
|
|
|
<TextArea
|
|
value=""
|
|
hideLabel
|
|
light
|
|
rows="{10}"
|
|
labelText="App description"
|
|
helperText="A rich description helps us better recommend related products and services"
|
|
placeholder="Enter a description..."
|
|
invalid
|
|
invalidText="Only plain text characters are allowed"
|
|
disabled
|
|
on:paste
|
|
/>
|
|
|
|
<TextAreaSkeleton hideLabel />
|