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,5 +0,0 @@
<script>
import TooltipDefinition from "./TooltipDefinition.svelte";
</script>
<TooltipDefinition {...$$props}>Definition Tooltip</TooltipDefinition>

View file

@ -1,31 +0,0 @@
import { withKnobs, select, text } from "@storybook/addon-knobs";
import Component from "./TooltipDefinition.Story.svelte";
export default { title: "TooltipDefinition", decorators: [withKnobs] };
const directions = {
"Top (top)": "top",
"Bottom (bottom)": "bottom",
};
const alignments = {
"Start (start)": "start",
"Center (center)": "center",
"End (end)": "end",
};
export const Default = () => ({
Component,
props: {
direction: select("Tooltip direction (direction)", directions, "bottom"),
align: select(
"Tooltip alignment to trigger button (align)",
alignments,
"start"
),
tooltipText: text(
"Tooltip content (tooltipText)",
"Brief description of the dotted, underlined words above."
),
},
});