add missing storybook docs

This commit is contained in:
Gauthier Roebroeck 2025-07-29 14:18:54 +08:00
parent 329eedc08d
commit 341667a512
5 changed files with 57 additions and 0 deletions

View 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} />

View 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} />

View 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} />

View file

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

View 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} />