Run npm run lint

This commit is contained in:
Eric Liu 2025-03-23 11:26:25 -07:00
commit 2031cb7585
480 changed files with 8985 additions and 9048 deletions

View file

@ -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