-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Embed Footer, No Documents and Processing Bar
- Loading branch information
Showing
4 changed files
with
49 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |