mirror of
https://github.com/gotson/komga.git
synced 2026-05-08 04:22:28 +02:00
add missing storybook docs
This commit is contained in:
parent
329eedc08d
commit
341667a512
5 changed files with 57 additions and 0 deletions
11
next-ui/src/components/apikey/DeletionWarning.mdx
Normal file
11
next-ui/src/components/apikey/DeletionWarning.mdx
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
import { Canvas, Meta } from '@storybook/addon-docs/blocks';
|
||||
|
||||
import * as Stories from './DeletionWarning.stories';
|
||||
|
||||
<Meta of={Stories} />
|
||||
|
||||
# ApikeyDeletionWarning
|
||||
|
||||
Warning shown within a confirmation dialog before deleting a particular API key.
|
||||
|
||||
<Canvas of={Stories.Default} />
|
||||
11
next-ui/src/components/apikey/ForceSyncWarning.mdx
Normal file
11
next-ui/src/components/apikey/ForceSyncWarning.mdx
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
import { Canvas, Meta } from '@storybook/addon-docs/blocks';
|
||||
|
||||
import * as Stories from './ForceSyncWarning.stories';
|
||||
|
||||
<Meta of={Stories} />
|
||||
|
||||
# ApikeyForceSyncWarning
|
||||
|
||||
Warning shown within a confirmation dialog before forcing the sync for a particular API key.
|
||||
|
||||
<Canvas of={Stories.Default} />
|
||||
11
next-ui/src/components/user/DeletionWarning.mdx
Normal file
11
next-ui/src/components/user/DeletionWarning.mdx
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
import { Canvas, Meta } from '@storybook/addon-docs/blocks';
|
||||
|
||||
import * as Stories from './DeletionWarning.stories';
|
||||
|
||||
<Meta of={Stories} />
|
||||
|
||||
# UserDeletionWarning
|
||||
|
||||
Warning shown within a confirmation dialog before deleting a particular User.
|
||||
|
||||
<Canvas of={Stories.Default} />
|
||||
|
|
@ -0,0 +1,13 @@
|
|||
import { Canvas, Meta } from '@storybook/addon-docs/blocks';
|
||||
|
||||
import * as Stories from './AuthenticationActivityTable.stories';
|
||||
|
||||
<Meta of={Stories} />
|
||||
|
||||
# FragmentUserTable
|
||||
|
||||
A Vuetify [Data Table](https://vuetifyjs.com/en/components/data-tables/basics/) to display a list of authentication activity entries.
|
||||
|
||||
The table can be configured to only display entries for the current user, in which case the `email` column will be hidden.
|
||||
|
||||
<Canvas of={Stories.Default} />
|
||||
11
next-ui/src/pages/login.mdx
Normal file
11
next-ui/src/pages/login.mdx
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
import { Canvas, Meta } from '@storybook/addon-docs/blocks';
|
||||
|
||||
import * as Stories from './login.stories';
|
||||
|
||||
<Meta of={Stories} />
|
||||
|
||||
# Login
|
||||
|
||||
The state of the _Remember Me_ checkbox is persisted in local storage, so the last value used is restored.
|
||||
|
||||
<Canvas of={Stories.Default} />
|
||||
Loading…
Reference in a new issue