chore: remove storybook

This commit is contained in:
Eric Liu 2020-10-14 16:23:44 -07:00
commit 378fe06e03
116 changed files with 103 additions and 14249 deletions

View file

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

View file

@ -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,
});