mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-15 18:31:06 +00:00
chore: remove storybook
This commit is contained in:
parent
856086dc71
commit
378fe06e03
116 changed files with 103 additions and 14249 deletions
|
@ -1,38 +0,0 @@
|
|||
<script>
|
||||
import { PasswordInput, TextInput } from "../TextInput";
|
||||
import FluidForm from "./FluidForm.svelte";
|
||||
|
||||
$: value = null;
|
||||
</script>
|
||||
|
||||
<FluidForm
|
||||
{...$$props}
|
||||
on:submit="{(event) => {
|
||||
console.log('on:submit', event);
|
||||
}}"
|
||||
>
|
||||
<TextInput
|
||||
className="some-class"
|
||||
id="test2"
|
||||
labelText="Text Input label"
|
||||
placeholder="Placeholder text"
|
||||
bind:value
|
||||
on:keydown="{(e) => {
|
||||
console.log('on:keydown', e);
|
||||
}}"
|
||||
on:change="{() => {
|
||||
console.log('change');
|
||||
}}"
|
||||
/>
|
||||
<PasswordInput
|
||||
required
|
||||
type="password"
|
||||
id="test4"
|
||||
labelText="Password"
|
||||
invalid="{true}"
|
||||
invalidText="Your password must be at least 6 characters as well as contain at least one uppercase, one lowercase, and one number."
|
||||
on:keydown="{(e) => {
|
||||
console.log('on:keydown', e);
|
||||
}}"
|
||||
/>
|
||||
</FluidForm>
|
|
@ -1,8 +0,0 @@
|
|||
import { withKnobs, boolean } from "@storybook/addon-knobs";
|
||||
import Component from "./FluidForm.Story.svelte";
|
||||
|
||||
export default { title: "FluidForm", decorators: [withKnobs] };
|
||||
|
||||
export const Default = () => ({
|
||||
Component,
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue