1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-05-03 21:56:18 +02:00

build(#10336): init

This commit is contained in:
Acid Chicken (硫酸鶏)
2023-03-19 22:22:14 +09:00
parent 4a989f7ebb
commit 1dfcca7b9c
437 changed files with 10295 additions and 154 deletions

View File

@@ -0,0 +1,13 @@
import { Meta, Story } from '@storybook/vue3';
import _2fa_qrdialog from './2fa.qrdialog.vue';
const meta = {
title: 'pages/settings/2fa.qrdialog',
component: _2fa_qrdialog,
};
export const Default = {
components: {
_2fa_qrdialog,
},
template: '<2fa.qrdialog />',
};
export default meta;

View File

@@ -0,0 +1,13 @@
import { Meta, Story } from '@storybook/vue3';
import _2fa from './2fa.vue';
const meta = {
title: 'pages/settings/2fa',
component: _2fa,
};
export const Default = {
components: {
_2fa,
},
template: '<2fa />',
};
export default meta;

View File

@@ -0,0 +1,13 @@
import { Meta, Story } from '@storybook/vue3';
import account_info from './account-info.vue';
const meta = {
title: 'pages/settings/account-info',
component: account_info,
};
export const Default = {
components: {
account_info,
},
template: '<account-info />',
};
export default meta;

View File

@@ -0,0 +1,13 @@
import { Meta, Story } from '@storybook/vue3';
import accounts from './accounts.vue';
const meta = {
title: 'pages/settings/accounts',
component: accounts,
};
export const Default = {
components: {
accounts,
},
template: '<accounts />',
};
export default meta;

View File

@@ -0,0 +1,13 @@
import { Meta, Story } from '@storybook/vue3';
import api from './api.vue';
const meta = {
title: 'pages/settings/api',
component: api,
};
export const Default = {
components: {
api,
},
template: '<api />',
};
export default meta;

View File

@@ -0,0 +1,13 @@
import { Meta, Story } from '@storybook/vue3';
import apps from './apps.vue';
const meta = {
title: 'pages/settings/apps',
component: apps,
};
export const Default = {
components: {
apps,
},
template: '<apps />',
};
export default meta;

View File

@@ -0,0 +1,13 @@
import { Meta, Story } from '@storybook/vue3';
import custom_css from './custom-css.vue';
const meta = {
title: 'pages/settings/custom-css',
component: custom_css,
};
export const Default = {
components: {
custom_css,
},
template: '<custom-css />',
};
export default meta;

View File

@@ -0,0 +1,13 @@
import { Meta, Story } from '@storybook/vue3';
import deck from './deck.vue';
const meta = {
title: 'pages/settings/deck',
component: deck,
};
export const Default = {
components: {
deck,
},
template: '<deck />',
};
export default meta;

View File

@@ -0,0 +1,13 @@
import { Meta, Story } from '@storybook/vue3';
import delete_account from './delete-account.vue';
const meta = {
title: 'pages/settings/delete-account',
component: delete_account,
};
export const Default = {
components: {
delete_account,
},
template: '<delete-account />',
};
export default meta;

View File

@@ -0,0 +1,13 @@
import { Meta, Story } from '@storybook/vue3';
import drive from './drive.vue';
const meta = {
title: 'pages/settings/drive',
component: drive,
};
export const Default = {
components: {
drive,
},
template: '<drive />',
};
export default meta;

View File

@@ -0,0 +1,13 @@
import { Meta, Story } from '@storybook/vue3';
import email from './email.vue';
const meta = {
title: 'pages/settings/email',
component: email,
};
export const Default = {
components: {
email,
},
template: '<email />',
};
export default meta;

View File

@@ -0,0 +1,13 @@
import { Meta, Story } from '@storybook/vue3';
import general from './general.vue';
const meta = {
title: 'pages/settings/general',
component: general,
};
export const Default = {
components: {
general,
},
template: '<general />',
};
export default meta;

View File

@@ -0,0 +1,13 @@
import { Meta, Story } from '@storybook/vue3';
import import_export from './import-export.vue';
const meta = {
title: 'pages/settings/import-export',
component: import_export,
};
export const Default = {
components: {
import_export,
},
template: '<import-export />',
};
export default meta;

View File

@@ -0,0 +1,13 @@
import { Meta, Story } from '@storybook/vue3';
import index from './index.vue';
const meta = {
title: 'pages/settings/index',
component: index,
};
export const Default = {
components: {
index,
},
template: '<index />',
};
export default meta;

View File

@@ -0,0 +1,13 @@
import { Meta, Story } from '@storybook/vue3';
import instance_mute from './instance-mute.vue';
const meta = {
title: 'pages/settings/instance-mute',
component: instance_mute,
};
export const Default = {
components: {
instance_mute,
},
template: '<instance-mute />',
};
export default meta;

View File

@@ -0,0 +1,13 @@
import { Meta, Story } from '@storybook/vue3';
import mute_block from './mute-block.vue';
const meta = {
title: 'pages/settings/mute-block',
component: mute_block,
};
export const Default = {
components: {
mute_block,
},
template: '<mute-block />',
};
export default meta;

View File

@@ -0,0 +1,13 @@
import { Meta, Story } from '@storybook/vue3';
import navbar from './navbar.vue';
const meta = {
title: 'pages/settings/navbar',
component: navbar,
};
export const Default = {
components: {
navbar,
},
template: '<navbar />',
};
export default meta;

View File

@@ -0,0 +1,13 @@
import { Meta, Story } from '@storybook/vue3';
import notifications from './notifications.vue';
const meta = {
title: 'pages/settings/notifications',
component: notifications,
};
export const Default = {
components: {
notifications,
},
template: '<notifications />',
};
export default meta;

View File

@@ -0,0 +1,13 @@
import { Meta, Story } from '@storybook/vue3';
import other from './other.vue';
const meta = {
title: 'pages/settings/other',
component: other,
};
export const Default = {
components: {
other,
},
template: '<other />',
};
export default meta;

View File

@@ -0,0 +1,13 @@
import { Meta, Story } from '@storybook/vue3';
import plugin_install from './plugin.install.vue';
const meta = {
title: 'pages/settings/plugin.install',
component: plugin_install,
};
export const Default = {
components: {
plugin_install,
},
template: '<plugin.install />',
};
export default meta;

View File

@@ -0,0 +1,13 @@
import { Meta, Story } from '@storybook/vue3';
import plugin from './plugin.vue';
const meta = {
title: 'pages/settings/plugin',
component: plugin,
};
export const Default = {
components: {
plugin,
},
template: '<plugin />',
};
export default meta;

View File

@@ -0,0 +1,13 @@
import { Meta, Story } from '@storybook/vue3';
import preferences_backups from './preferences-backups.vue';
const meta = {
title: 'pages/settings/preferences-backups',
component: preferences_backups,
};
export const Default = {
components: {
preferences_backups,
},
template: '<preferences-backups />',
};
export default meta;

View File

@@ -0,0 +1,13 @@
import { Meta, Story } from '@storybook/vue3';
import privacy from './privacy.vue';
const meta = {
title: 'pages/settings/privacy',
component: privacy,
};
export const Default = {
components: {
privacy,
},
template: '<privacy />',
};
export default meta;

View File

@@ -0,0 +1,13 @@
import { Meta, Story } from '@storybook/vue3';
import profile from './profile.vue';
const meta = {
title: 'pages/settings/profile',
component: profile,
};
export const Default = {
components: {
profile,
},
template: '<profile />',
};
export default meta;

View File

@@ -0,0 +1,13 @@
import { Meta, Story } from '@storybook/vue3';
import reaction from './reaction.vue';
const meta = {
title: 'pages/settings/reaction',
component: reaction,
};
export const Default = {
components: {
reaction,
},
template: '<reaction />',
};
export default meta;

View File

@@ -0,0 +1,13 @@
import { Meta, Story } from '@storybook/vue3';
import roles from './roles.vue';
const meta = {
title: 'pages/settings/roles',
component: roles,
};
export const Default = {
components: {
roles,
},
template: '<roles />',
};
export default meta;

View File

@@ -0,0 +1,13 @@
import { Meta, Story } from '@storybook/vue3';
import security from './security.vue';
const meta = {
title: 'pages/settings/security',
component: security,
};
export const Default = {
components: {
security,
},
template: '<security />',
};
export default meta;

View File

@@ -0,0 +1,13 @@
import { Meta, Story } from '@storybook/vue3';
import sounds_sound from './sounds.sound.vue';
const meta = {
title: 'pages/settings/sounds.sound',
component: sounds_sound,
};
export const Default = {
components: {
sounds_sound,
},
template: '<sounds.sound />',
};
export default meta;

View File

@@ -0,0 +1,13 @@
import { Meta, Story } from '@storybook/vue3';
import sounds from './sounds.vue';
const meta = {
title: 'pages/settings/sounds',
component: sounds,
};
export const Default = {
components: {
sounds,
},
template: '<sounds />',
};
export default meta;

View File

@@ -0,0 +1,13 @@
import { Meta, Story } from '@storybook/vue3';
import statusbar_statusbar from './statusbar.statusbar.vue';
const meta = {
title: 'pages/settings/statusbar.statusbar',
component: statusbar_statusbar,
};
export const Default = {
components: {
statusbar_statusbar,
},
template: '<statusbar.statusbar />',
};
export default meta;

View File

@@ -0,0 +1,13 @@
import { Meta, Story } from '@storybook/vue3';
import statusbar from './statusbar.vue';
const meta = {
title: 'pages/settings/statusbar',
component: statusbar,
};
export const Default = {
components: {
statusbar,
},
template: '<statusbar />',
};
export default meta;

View File

@@ -0,0 +1,13 @@
import { Meta, Story } from '@storybook/vue3';
import theme_install from './theme.install.vue';
const meta = {
title: 'pages/settings/theme.install',
component: theme_install,
};
export const Default = {
components: {
theme_install,
},
template: '<theme.install />',
};
export default meta;

View File

@@ -0,0 +1,13 @@
import { Meta, Story } from '@storybook/vue3';
import theme_manage from './theme.manage.vue';
const meta = {
title: 'pages/settings/theme.manage',
component: theme_manage,
};
export const Default = {
components: {
theme_manage,
},
template: '<theme.manage />',
};
export default meta;

View File

@@ -0,0 +1,13 @@
import { Meta, Story } from '@storybook/vue3';
import theme from './theme.vue';
const meta = {
title: 'pages/settings/theme',
component: theme,
};
export const Default = {
components: {
theme,
},
template: '<theme />',
};
export default meta;

View File

@@ -0,0 +1,13 @@
import { Meta, Story } from '@storybook/vue3';
import webhook_edit from './webhook.edit.vue';
const meta = {
title: 'pages/settings/webhook.edit',
component: webhook_edit,
};
export const Default = {
components: {
webhook_edit,
},
template: '<webhook.edit />',
};
export default meta;

View File

@@ -0,0 +1,13 @@
import { Meta, Story } from '@storybook/vue3';
import webhook_new from './webhook.new.vue';
const meta = {
title: 'pages/settings/webhook.new',
component: webhook_new,
};
export const Default = {
components: {
webhook_new,
},
template: '<webhook.new />',
};
export default meta;

View File

@@ -0,0 +1,13 @@
import { Meta, Story } from '@storybook/vue3';
import webhook from './webhook.vue';
const meta = {
title: 'pages/settings/webhook',
component: webhook,
};
export const Default = {
components: {
webhook,
},
template: '<webhook />',
};
export default meta;

View File

@@ -0,0 +1,13 @@
import { Meta, Story } from '@storybook/vue3';
import word_mute from './word-mute.vue';
const meta = {
title: 'pages/settings/word-mute',
component: word_mute,
};
export const Default = {
components: {
word_mute,
},
template: '<word-mute />',
};
export default meta;