mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-15 18:31:06 +00:00
Run npm run lint
This commit is contained in:
parent
b982387a8c
commit
2031cb7585
480 changed files with 8985 additions and 9048 deletions
|
@ -1,23 +1,23 @@
|
|||
<script lang="ts">
|
||||
import { TextArea } from "carbon-components-svelte";
|
||||
import type { ComponentProps } from "svelte";
|
||||
import { TextArea } from "carbon-components-svelte";
|
||||
import type { ComponentProps } from "svelte";
|
||||
|
||||
export let value: ComponentProps<TextArea>["value"] = "";
|
||||
export let placeholder = "";
|
||||
export let cols = 50;
|
||||
export let rows = 4;
|
||||
export let maxCount: ComponentProps<TextArea>["maxCount"] = undefined;
|
||||
export let light = false;
|
||||
export let disabled = false;
|
||||
export let readonly = false;
|
||||
export let helperText = "";
|
||||
export let labelText = "App description";
|
||||
export let hideLabel = false;
|
||||
export let invalid = false;
|
||||
export let invalidText = "";
|
||||
export let id = "ccs-test";
|
||||
export let name: ComponentProps<TextArea>["name"] = undefined;
|
||||
export let ref: ComponentProps<TextArea>["ref"] = null;
|
||||
export let value: ComponentProps<TextArea>["value"] = "";
|
||||
export let placeholder = "";
|
||||
export let cols = 50;
|
||||
export let rows = 4;
|
||||
export let maxCount: ComponentProps<TextArea>["maxCount"] = undefined;
|
||||
export let light = false;
|
||||
export let disabled = false;
|
||||
export let readonly = false;
|
||||
export let helperText = "";
|
||||
export let labelText = "App description";
|
||||
export let hideLabel = false;
|
||||
export let invalid = false;
|
||||
export let invalidText = "";
|
||||
export let id = "ccs-test";
|
||||
export let name: ComponentProps<TextArea>["name"] = undefined;
|
||||
export let ref: ComponentProps<TextArea>["ref"] = null;
|
||||
</script>
|
||||
|
||||
<TextArea
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue