Skip to content

Commit

Permalink
Embed Footer, No Documents and Processing Bar
Browse files Browse the repository at this point in the history
  • Loading branch information
eyeseast committed Dec 18, 2023
1 parent a098d84 commit bf052aa
Show file tree
Hide file tree
Showing 4 changed files with 49 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/pages/app/stories/Documents.stories.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
import { Story, Template } from "@storybook/addon-svelte-csf";
import Documents from "../Documents.svelte";
import * as structure from "../../../structure/document.js";
import { layout } from "../../../manager/layout.js";
import * as mock from "./mock.js";
Expand Down
15 changes: 15 additions & 0 deletions src/pages/app/stories/EmbedFooter.stories.svelte
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<script context="module">
import { Story } from "@storybook/addon-svelte-csf";
import EmbedFooter from "../EmbedFooter.svelte";
export const meta = {
title: "App / Documents / Embed Footer",
component: EmbedFooter,
tags: ["autodocs"],
parameters: { layout: "centered" },
};
</script>

<Story name="default">
<EmbedFooter />
</Story>
15 changes: 15 additions & 0 deletions src/pages/app/stories/NoDocuments.stories.svelte
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<script context="module">
import { Story } from "@storybook/addon-svelte-csf";
import NoDocuments from "../NoDocuments.svelte";
export const meta = {
title: "App / Documents / No Documents",
component: NoDocuments,
tags: ["autodocs"],
parameters: { layout: "centered" },
};
</script>

<Story name="default">
<NoDocuments />
</Story>
19 changes: 19 additions & 0 deletions src/pages/app/stories/ProcessingBar.stories.svelte
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<script context="module">
import { Story } from "@storybook/addon-svelte-csf";
import ProcessingBar from "../ProcessingBar.svelte";
import { documents } from "../../../manager/documents.js";
documents.doneProcessing = false;
export const meta = {
title: "App / Documents / Processing Bar",
component: ProcessingBar,
tags: ["autodocs"],
parameters: { layout: "centered" },
};
</script>

<Story name="default">
<ProcessingBar />
</Story>

0 comments on commit bf052aa

Please sign in to comment.