build(#10336): init
This commit is contained in:
parent
4a989f7ebb
commit
1dfcca7b9c
437 changed files with 10295 additions and 154 deletions
13
packages/frontend/src/pages/_empty_.stories.ts
Normal file
13
packages/frontend/src/pages/_empty_.stories.ts
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
import { Meta, Story } from '@storybook/vue3';
|
||||
import _empty_ from './_empty_.vue';
|
||||
const meta = {
|
||||
title: 'pages/_empty_',
|
||||
component: _empty_,
|
||||
};
|
||||
export const Default = {
|
||||
components: {
|
||||
_empty_,
|
||||
},
|
||||
template: '<_empty_ />',
|
||||
};
|
||||
export default meta;
|
||||
13
packages/frontend/src/pages/_error_.stories.ts
Normal file
13
packages/frontend/src/pages/_error_.stories.ts
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
import { Meta, Story } from '@storybook/vue3';
|
||||
import _error_ from './_error_.vue';
|
||||
const meta = {
|
||||
title: 'pages/_error_',
|
||||
component: _error_,
|
||||
};
|
||||
export const Default = {
|
||||
components: {
|
||||
_error_,
|
||||
},
|
||||
template: '<_error_ />',
|
||||
};
|
||||
export default meta;
|
||||
13
packages/frontend/src/pages/_loading_.stories.ts
Normal file
13
packages/frontend/src/pages/_loading_.stories.ts
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
import { Meta, Story } from '@storybook/vue3';
|
||||
import _loading_ from './_loading_.vue';
|
||||
const meta = {
|
||||
title: 'pages/_loading_',
|
||||
component: _loading_,
|
||||
};
|
||||
export const Default = {
|
||||
components: {
|
||||
_loading_,
|
||||
},
|
||||
template: '<_loading_ />',
|
||||
};
|
||||
export default meta;
|
||||
13
packages/frontend/src/pages/about-misskey.stories.ts
Normal file
13
packages/frontend/src/pages/about-misskey.stories.ts
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
import { Meta, Story } from '@storybook/vue3';
|
||||
import about_misskey from './about-misskey.vue';
|
||||
const meta = {
|
||||
title: 'pages/about-misskey',
|
||||
component: about_misskey,
|
||||
};
|
||||
export const Default = {
|
||||
components: {
|
||||
about_misskey,
|
||||
},
|
||||
template: '<about-misskey />',
|
||||
};
|
||||
export default meta;
|
||||
13
packages/frontend/src/pages/about.emojis.stories.ts
Normal file
13
packages/frontend/src/pages/about.emojis.stories.ts
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
import { Meta, Story } from '@storybook/vue3';
|
||||
import about_emojis from './about.emojis.vue';
|
||||
const meta = {
|
||||
title: 'pages/about.emojis',
|
||||
component: about_emojis,
|
||||
};
|
||||
export const Default = {
|
||||
components: {
|
||||
about_emojis,
|
||||
},
|
||||
template: '<about.emojis />',
|
||||
};
|
||||
export default meta;
|
||||
13
packages/frontend/src/pages/about.federation.stories.ts
Normal file
13
packages/frontend/src/pages/about.federation.stories.ts
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
import { Meta, Story } from '@storybook/vue3';
|
||||
import about_federation from './about.federation.vue';
|
||||
const meta = {
|
||||
title: 'pages/about.federation',
|
||||
component: about_federation,
|
||||
};
|
||||
export const Default = {
|
||||
components: {
|
||||
about_federation,
|
||||
},
|
||||
template: '<about.federation />',
|
||||
};
|
||||
export default meta;
|
||||
13
packages/frontend/src/pages/about.stories.ts
Normal file
13
packages/frontend/src/pages/about.stories.ts
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
import { Meta, Story } from '@storybook/vue3';
|
||||
import about from './about.vue';
|
||||
const meta = {
|
||||
title: 'pages/about',
|
||||
component: about,
|
||||
};
|
||||
export const Default = {
|
||||
components: {
|
||||
about,
|
||||
},
|
||||
template: '<about />',
|
||||
};
|
||||
export default meta;
|
||||
13
packages/frontend/src/pages/achievements.stories.ts
Normal file
13
packages/frontend/src/pages/achievements.stories.ts
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
import { Meta, Story } from '@storybook/vue3';
|
||||
import achievements from './achievements.vue';
|
||||
const meta = {
|
||||
title: 'pages/achievements',
|
||||
component: achievements,
|
||||
};
|
||||
export const Default = {
|
||||
components: {
|
||||
achievements,
|
||||
},
|
||||
template: '<achievements />',
|
||||
};
|
||||
export default meta;
|
||||
13
packages/frontend/src/pages/admin-file.stories.ts
Normal file
13
packages/frontend/src/pages/admin-file.stories.ts
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
import { Meta, Story } from '@storybook/vue3';
|
||||
import admin_file from './admin-file.vue';
|
||||
const meta = {
|
||||
title: 'pages/admin-file',
|
||||
component: admin_file,
|
||||
};
|
||||
export const Default = {
|
||||
components: {
|
||||
admin_file,
|
||||
},
|
||||
template: '<admin-file />',
|
||||
};
|
||||
export default meta;
|
||||
|
|
@ -0,0 +1,13 @@
|
|||
import { Meta, Story } from '@storybook/vue3';
|
||||
import RolesEditorFormula from './RolesEditorFormula.vue';
|
||||
const meta = {
|
||||
title: 'pages/admin/RolesEditorFormula',
|
||||
component: RolesEditorFormula,
|
||||
};
|
||||
export const Default = {
|
||||
components: {
|
||||
RolesEditorFormula,
|
||||
},
|
||||
template: '<RolesEditorFormula />',
|
||||
};
|
||||
export default meta;
|
||||
13
packages/frontend/src/pages/admin/_header_.stories.ts
Normal file
13
packages/frontend/src/pages/admin/_header_.stories.ts
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
import { Meta, Story } from '@storybook/vue3';
|
||||
import _header_ from './_header_.vue';
|
||||
const meta = {
|
||||
title: 'pages/admin/_header_',
|
||||
component: _header_,
|
||||
};
|
||||
export const Default = {
|
||||
components: {
|
||||
_header_,
|
||||
},
|
||||
template: '<_header_ />',
|
||||
};
|
||||
export default meta;
|
||||
13
packages/frontend/src/pages/admin/abuses.stories.ts
Normal file
13
packages/frontend/src/pages/admin/abuses.stories.ts
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
import { Meta, Story } from '@storybook/vue3';
|
||||
import abuses from './abuses.vue';
|
||||
const meta = {
|
||||
title: 'pages/admin/abuses',
|
||||
component: abuses,
|
||||
};
|
||||
export const Default = {
|
||||
components: {
|
||||
abuses,
|
||||
},
|
||||
template: '<abuses />',
|
||||
};
|
||||
export default meta;
|
||||
13
packages/frontend/src/pages/admin/ads.stories.ts
Normal file
13
packages/frontend/src/pages/admin/ads.stories.ts
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
import { Meta, Story } from '@storybook/vue3';
|
||||
import ads from './ads.vue';
|
||||
const meta = {
|
||||
title: 'pages/admin/ads',
|
||||
component: ads,
|
||||
};
|
||||
export const Default = {
|
||||
components: {
|
||||
ads,
|
||||
},
|
||||
template: '<ads />',
|
||||
};
|
||||
export default meta;
|
||||
13
packages/frontend/src/pages/admin/announcements.stories.ts
Normal file
13
packages/frontend/src/pages/admin/announcements.stories.ts
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
import { Meta, Story } from '@storybook/vue3';
|
||||
import announcements from './announcements.vue';
|
||||
const meta = {
|
||||
title: 'pages/admin/announcements',
|
||||
component: announcements,
|
||||
};
|
||||
export const Default = {
|
||||
components: {
|
||||
announcements,
|
||||
},
|
||||
template: '<announcements />',
|
||||
};
|
||||
export default meta;
|
||||
13
packages/frontend/src/pages/admin/bot-protection.stories.ts
Normal file
13
packages/frontend/src/pages/admin/bot-protection.stories.ts
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
import { Meta, Story } from '@storybook/vue3';
|
||||
import bot_protection from './bot-protection.vue';
|
||||
const meta = {
|
||||
title: 'pages/admin/bot-protection',
|
||||
component: bot_protection,
|
||||
};
|
||||
export const Default = {
|
||||
components: {
|
||||
bot_protection,
|
||||
},
|
||||
template: '<bot-protection />',
|
||||
};
|
||||
export default meta;
|
||||
13
packages/frontend/src/pages/admin/database.stories.ts
Normal file
13
packages/frontend/src/pages/admin/database.stories.ts
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
import { Meta, Story } from '@storybook/vue3';
|
||||
import database from './database.vue';
|
||||
const meta = {
|
||||
title: 'pages/admin/database',
|
||||
component: database,
|
||||
};
|
||||
export const Default = {
|
||||
components: {
|
||||
database,
|
||||
},
|
||||
template: '<database />',
|
||||
};
|
||||
export default meta;
|
||||
13
packages/frontend/src/pages/admin/email-settings.stories.ts
Normal file
13
packages/frontend/src/pages/admin/email-settings.stories.ts
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
import { Meta, Story } from '@storybook/vue3';
|
||||
import email_settings from './email-settings.vue';
|
||||
const meta = {
|
||||
title: 'pages/admin/email-settings',
|
||||
component: email_settings,
|
||||
};
|
||||
export const Default = {
|
||||
components: {
|
||||
email_settings,
|
||||
},
|
||||
template: '<email-settings />',
|
||||
};
|
||||
export default meta;
|
||||
13
packages/frontend/src/pages/admin/federation.stories.ts
Normal file
13
packages/frontend/src/pages/admin/federation.stories.ts
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
import { Meta, Story } from '@storybook/vue3';
|
||||
import federation from './federation.vue';
|
||||
const meta = {
|
||||
title: 'pages/admin/federation',
|
||||
component: federation,
|
||||
};
|
||||
export const Default = {
|
||||
components: {
|
||||
federation,
|
||||
},
|
||||
template: '<federation />',
|
||||
};
|
||||
export default meta;
|
||||
13
packages/frontend/src/pages/admin/files.stories.ts
Normal file
13
packages/frontend/src/pages/admin/files.stories.ts
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
import { Meta, Story } from '@storybook/vue3';
|
||||
import files from './files.vue';
|
||||
const meta = {
|
||||
title: 'pages/admin/files',
|
||||
component: files,
|
||||
};
|
||||
export const Default = {
|
||||
components: {
|
||||
files,
|
||||
},
|
||||
template: '<files />',
|
||||
};
|
||||
export default meta;
|
||||
13
packages/frontend/src/pages/admin/index.stories.ts
Normal file
13
packages/frontend/src/pages/admin/index.stories.ts
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
import { Meta, Story } from '@storybook/vue3';
|
||||
import index from './index.vue';
|
||||
const meta = {
|
||||
title: 'pages/admin/index',
|
||||
component: index,
|
||||
};
|
||||
export const Default = {
|
||||
components: {
|
||||
index,
|
||||
},
|
||||
template: '<index />',
|
||||
};
|
||||
export default meta;
|
||||
13
packages/frontend/src/pages/admin/instance-block.stories.ts
Normal file
13
packages/frontend/src/pages/admin/instance-block.stories.ts
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
import { Meta, Story } from '@storybook/vue3';
|
||||
import instance_block from './instance-block.vue';
|
||||
const meta = {
|
||||
title: 'pages/admin/instance-block',
|
||||
component: instance_block,
|
||||
};
|
||||
export const Default = {
|
||||
components: {
|
||||
instance_block,
|
||||
},
|
||||
template: '<instance-block />',
|
||||
};
|
||||
export default meta;
|
||||
13
packages/frontend/src/pages/admin/moderation.stories.ts
Normal file
13
packages/frontend/src/pages/admin/moderation.stories.ts
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
import { Meta, Story } from '@storybook/vue3';
|
||||
import moderation from './moderation.vue';
|
||||
const meta = {
|
||||
title: 'pages/admin/moderation',
|
||||
component: moderation,
|
||||
};
|
||||
export const Default = {
|
||||
components: {
|
||||
moderation,
|
||||
},
|
||||
template: '<moderation />',
|
||||
};
|
||||
export default meta;
|
||||
13
packages/frontend/src/pages/admin/object-storage.stories.ts
Normal file
13
packages/frontend/src/pages/admin/object-storage.stories.ts
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
import { Meta, Story } from '@storybook/vue3';
|
||||
import object_storage from './object-storage.vue';
|
||||
const meta = {
|
||||
title: 'pages/admin/object-storage',
|
||||
component: object_storage,
|
||||
};
|
||||
export const Default = {
|
||||
components: {
|
||||
object_storage,
|
||||
},
|
||||
template: '<object-storage />',
|
||||
};
|
||||
export default meta;
|
||||
13
packages/frontend/src/pages/admin/other-settings.stories.ts
Normal file
13
packages/frontend/src/pages/admin/other-settings.stories.ts
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
import { Meta, Story } from '@storybook/vue3';
|
||||
import other_settings from './other-settings.vue';
|
||||
const meta = {
|
||||
title: 'pages/admin/other-settings',
|
||||
component: other_settings,
|
||||
};
|
||||
export const Default = {
|
||||
components: {
|
||||
other_settings,
|
||||
},
|
||||
template: '<other-settings />',
|
||||
};
|
||||
export default meta;
|
||||
|
|
@ -0,0 +1,13 @@
|
|||
import { Meta, Story } from '@storybook/vue3';
|
||||
import overview_active_users from './overview.active-users.vue';
|
||||
const meta = {
|
||||
title: 'pages/admin/overview.active-users',
|
||||
component: overview_active_users,
|
||||
};
|
||||
export const Default = {
|
||||
components: {
|
||||
overview_active_users,
|
||||
},
|
||||
template: '<overview.active-users />',
|
||||
};
|
||||
export default meta;
|
||||
|
|
@ -0,0 +1,13 @@
|
|||
import { Meta, Story } from '@storybook/vue3';
|
||||
import overview_ap_requests from './overview.ap-requests.vue';
|
||||
const meta = {
|
||||
title: 'pages/admin/overview.ap-requests',
|
||||
component: overview_ap_requests,
|
||||
};
|
||||
export const Default = {
|
||||
components: {
|
||||
overview_ap_requests,
|
||||
},
|
||||
template: '<overview.ap-requests />',
|
||||
};
|
||||
export default meta;
|
||||
|
|
@ -0,0 +1,13 @@
|
|||
import { Meta, Story } from '@storybook/vue3';
|
||||
import overview_federation from './overview.federation.vue';
|
||||
const meta = {
|
||||
title: 'pages/admin/overview.federation',
|
||||
component: overview_federation,
|
||||
};
|
||||
export const Default = {
|
||||
components: {
|
||||
overview_federation,
|
||||
},
|
||||
template: '<overview.federation />',
|
||||
};
|
||||
export default meta;
|
||||
|
|
@ -0,0 +1,13 @@
|
|||
import { Meta, Story } from '@storybook/vue3';
|
||||
import overview_heatmap from './overview.heatmap.vue';
|
||||
const meta = {
|
||||
title: 'pages/admin/overview.heatmap',
|
||||
component: overview_heatmap,
|
||||
};
|
||||
export const Default = {
|
||||
components: {
|
||||
overview_heatmap,
|
||||
},
|
||||
template: '<overview.heatmap />',
|
||||
};
|
||||
export default meta;
|
||||
|
|
@ -0,0 +1,13 @@
|
|||
import { Meta, Story } from '@storybook/vue3';
|
||||
import overview_instances from './overview.instances.vue';
|
||||
const meta = {
|
||||
title: 'pages/admin/overview.instances',
|
||||
component: overview_instances,
|
||||
};
|
||||
export const Default = {
|
||||
components: {
|
||||
overview_instances,
|
||||
},
|
||||
template: '<overview.instances />',
|
||||
};
|
||||
export default meta;
|
||||
|
|
@ -0,0 +1,13 @@
|
|||
import { Meta, Story } from '@storybook/vue3';
|
||||
import overview_moderators from './overview.moderators.vue';
|
||||
const meta = {
|
||||
title: 'pages/admin/overview.moderators',
|
||||
component: overview_moderators,
|
||||
};
|
||||
export const Default = {
|
||||
components: {
|
||||
overview_moderators,
|
||||
},
|
||||
template: '<overview.moderators />',
|
||||
};
|
||||
export default meta;
|
||||
13
packages/frontend/src/pages/admin/overview.pie.stories.ts
Normal file
13
packages/frontend/src/pages/admin/overview.pie.stories.ts
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
import { Meta, Story } from '@storybook/vue3';
|
||||
import overview_pie from './overview.pie.vue';
|
||||
const meta = {
|
||||
title: 'pages/admin/overview.pie',
|
||||
component: overview_pie,
|
||||
};
|
||||
export const Default = {
|
||||
components: {
|
||||
overview_pie,
|
||||
},
|
||||
template: '<overview.pie />',
|
||||
};
|
||||
export default meta;
|
||||
|
|
@ -0,0 +1,13 @@
|
|||
import { Meta, Story } from '@storybook/vue3';
|
||||
import overview_queue_chart from './overview.queue.chart.vue';
|
||||
const meta = {
|
||||
title: 'pages/admin/overview.queue.chart',
|
||||
component: overview_queue_chart,
|
||||
};
|
||||
export const Default = {
|
||||
components: {
|
||||
overview_queue_chart,
|
||||
},
|
||||
template: '<overview.queue.chart />',
|
||||
};
|
||||
export default meta;
|
||||
13
packages/frontend/src/pages/admin/overview.queue.stories.ts
Normal file
13
packages/frontend/src/pages/admin/overview.queue.stories.ts
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
import { Meta, Story } from '@storybook/vue3';
|
||||
import overview_queue from './overview.queue.vue';
|
||||
const meta = {
|
||||
title: 'pages/admin/overview.queue',
|
||||
component: overview_queue,
|
||||
};
|
||||
export const Default = {
|
||||
components: {
|
||||
overview_queue,
|
||||
},
|
||||
template: '<overview.queue />',
|
||||
};
|
||||
export default meta;
|
||||
|
|
@ -0,0 +1,13 @@
|
|||
import { Meta, Story } from '@storybook/vue3';
|
||||
import overview_retention from './overview.retention.vue';
|
||||
const meta = {
|
||||
title: 'pages/admin/overview.retention',
|
||||
component: overview_retention,
|
||||
};
|
||||
export const Default = {
|
||||
components: {
|
||||
overview_retention,
|
||||
},
|
||||
template: '<overview.retention />',
|
||||
};
|
||||
export default meta;
|
||||
13
packages/frontend/src/pages/admin/overview.stats.stories.ts
Normal file
13
packages/frontend/src/pages/admin/overview.stats.stories.ts
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
import { Meta, Story } from '@storybook/vue3';
|
||||
import overview_stats from './overview.stats.vue';
|
||||
const meta = {
|
||||
title: 'pages/admin/overview.stats',
|
||||
component: overview_stats,
|
||||
};
|
||||
export const Default = {
|
||||
components: {
|
||||
overview_stats,
|
||||
},
|
||||
template: '<overview.stats />',
|
||||
};
|
||||
export default meta;
|
||||
13
packages/frontend/src/pages/admin/overview.stories.ts
Normal file
13
packages/frontend/src/pages/admin/overview.stories.ts
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
import { Meta, Story } from '@storybook/vue3';
|
||||
import overview from './overview.vue';
|
||||
const meta = {
|
||||
title: 'pages/admin/overview',
|
||||
component: overview,
|
||||
};
|
||||
export const Default = {
|
||||
components: {
|
||||
overview,
|
||||
},
|
||||
template: '<overview />',
|
||||
};
|
||||
export default meta;
|
||||
13
packages/frontend/src/pages/admin/overview.users.stories.ts
Normal file
13
packages/frontend/src/pages/admin/overview.users.stories.ts
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
import { Meta, Story } from '@storybook/vue3';
|
||||
import overview_users from './overview.users.vue';
|
||||
const meta = {
|
||||
title: 'pages/admin/overview.users',
|
||||
component: overview_users,
|
||||
};
|
||||
export const Default = {
|
||||
components: {
|
||||
overview_users,
|
||||
},
|
||||
template: '<overview.users />',
|
||||
};
|
||||
export default meta;
|
||||
13
packages/frontend/src/pages/admin/proxy-account.stories.ts
Normal file
13
packages/frontend/src/pages/admin/proxy-account.stories.ts
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
import { Meta, Story } from '@storybook/vue3';
|
||||
import proxy_account from './proxy-account.vue';
|
||||
const meta = {
|
||||
title: 'pages/admin/proxy-account',
|
||||
component: proxy_account,
|
||||
};
|
||||
export const Default = {
|
||||
components: {
|
||||
proxy_account,
|
||||
},
|
||||
template: '<proxy-account />',
|
||||
};
|
||||
export default meta;
|
||||
|
|
@ -0,0 +1,13 @@
|
|||
import { Meta, Story } from '@storybook/vue3';
|
||||
import queue_chart_chart from './queue.chart.chart.vue';
|
||||
const meta = {
|
||||
title: 'pages/admin/queue.chart.chart',
|
||||
component: queue_chart_chart,
|
||||
};
|
||||
export const Default = {
|
||||
components: {
|
||||
queue_chart_chart,
|
||||
},
|
||||
template: '<queue.chart.chart />',
|
||||
};
|
||||
export default meta;
|
||||
13
packages/frontend/src/pages/admin/queue.chart.stories.ts
Normal file
13
packages/frontend/src/pages/admin/queue.chart.stories.ts
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
import { Meta, Story } from '@storybook/vue3';
|
||||
import queue_chart from './queue.chart.vue';
|
||||
const meta = {
|
||||
title: 'pages/admin/queue.chart',
|
||||
component: queue_chart,
|
||||
};
|
||||
export const Default = {
|
||||
components: {
|
||||
queue_chart,
|
||||
},
|
||||
template: '<queue.chart />',
|
||||
};
|
||||
export default meta;
|
||||
13
packages/frontend/src/pages/admin/queue.stories.ts
Normal file
13
packages/frontend/src/pages/admin/queue.stories.ts
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
import { Meta, Story } from '@storybook/vue3';
|
||||
import queue from './queue.vue';
|
||||
const meta = {
|
||||
title: 'pages/admin/queue',
|
||||
component: queue,
|
||||
};
|
||||
export const Default = {
|
||||
components: {
|
||||
queue,
|
||||
},
|
||||
template: '<queue />',
|
||||
};
|
||||
export default meta;
|
||||
13
packages/frontend/src/pages/admin/relays.stories.ts
Normal file
13
packages/frontend/src/pages/admin/relays.stories.ts
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
import { Meta, Story } from '@storybook/vue3';
|
||||
import relays from './relays.vue';
|
||||
const meta = {
|
||||
title: 'pages/admin/relays',
|
||||
component: relays,
|
||||
};
|
||||
export const Default = {
|
||||
components: {
|
||||
relays,
|
||||
},
|
||||
template: '<relays />',
|
||||
};
|
||||
export default meta;
|
||||
13
packages/frontend/src/pages/admin/roles.edit.stories.ts
Normal file
13
packages/frontend/src/pages/admin/roles.edit.stories.ts
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
import { Meta, Story } from '@storybook/vue3';
|
||||
import roles_edit from './roles.edit.vue';
|
||||
const meta = {
|
||||
title: 'pages/admin/roles.edit',
|
||||
component: roles_edit,
|
||||
};
|
||||
export const Default = {
|
||||
components: {
|
||||
roles_edit,
|
||||
},
|
||||
template: '<roles.edit />',
|
||||
};
|
||||
export default meta;
|
||||
13
packages/frontend/src/pages/admin/roles.editor.stories.ts
Normal file
13
packages/frontend/src/pages/admin/roles.editor.stories.ts
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
import { Meta, Story } from '@storybook/vue3';
|
||||
import roles_editor from './roles.editor.vue';
|
||||
const meta = {
|
||||
title: 'pages/admin/roles.editor',
|
||||
component: roles_editor,
|
||||
};
|
||||
export const Default = {
|
||||
components: {
|
||||
roles_editor,
|
||||
},
|
||||
template: '<roles.editor />',
|
||||
};
|
||||
export default meta;
|
||||
13
packages/frontend/src/pages/admin/roles.role.stories.ts
Normal file
13
packages/frontend/src/pages/admin/roles.role.stories.ts
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
import { Meta, Story } from '@storybook/vue3';
|
||||
import roles_role from './roles.role.vue';
|
||||
const meta = {
|
||||
title: 'pages/admin/roles.role',
|
||||
component: roles_role,
|
||||
};
|
||||
export const Default = {
|
||||
components: {
|
||||
roles_role,
|
||||
},
|
||||
template: '<roles.role />',
|
||||
};
|
||||
export default meta;
|
||||
13
packages/frontend/src/pages/admin/roles.stories.ts
Normal file
13
packages/frontend/src/pages/admin/roles.stories.ts
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
import { Meta, Story } from '@storybook/vue3';
|
||||
import roles from './roles.vue';
|
||||
const meta = {
|
||||
title: 'pages/admin/roles',
|
||||
component: roles,
|
||||
};
|
||||
export const Default = {
|
||||
components: {
|
||||
roles,
|
||||
},
|
||||
template: '<roles />',
|
||||
};
|
||||
export default meta;
|
||||
13
packages/frontend/src/pages/admin/security.stories.ts
Normal file
13
packages/frontend/src/pages/admin/security.stories.ts
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
import { Meta, Story } from '@storybook/vue3';
|
||||
import security from './security.vue';
|
||||
const meta = {
|
||||
title: 'pages/admin/security',
|
||||
component: security,
|
||||
};
|
||||
export const Default = {
|
||||
components: {
|
||||
security,
|
||||
},
|
||||
template: '<security />',
|
||||
};
|
||||
export default meta;
|
||||
13
packages/frontend/src/pages/admin/settings.stories.ts
Normal file
13
packages/frontend/src/pages/admin/settings.stories.ts
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
import { Meta, Story } from '@storybook/vue3';
|
||||
import settings from './settings.vue';
|
||||
const meta = {
|
||||
title: 'pages/admin/settings',
|
||||
component: settings,
|
||||
};
|
||||
export const Default = {
|
||||
components: {
|
||||
settings,
|
||||
},
|
||||
template: '<settings />',
|
||||
};
|
||||
export default meta;
|
||||
13
packages/frontend/src/pages/admin/users.stories.ts
Normal file
13
packages/frontend/src/pages/admin/users.stories.ts
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
import { Meta, Story } from '@storybook/vue3';
|
||||
import users from './users.vue';
|
||||
const meta = {
|
||||
title: 'pages/admin/users',
|
||||
component: users,
|
||||
};
|
||||
export const Default = {
|
||||
components: {
|
||||
users,
|
||||
},
|
||||
template: '<users />',
|
||||
};
|
||||
export default meta;
|
||||
13
packages/frontend/src/pages/ads.stories.ts
Normal file
13
packages/frontend/src/pages/ads.stories.ts
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
import { Meta, Story } from '@storybook/vue3';
|
||||
import ads from './ads.vue';
|
||||
const meta = {
|
||||
title: 'pages/ads',
|
||||
component: ads,
|
||||
};
|
||||
export const Default = {
|
||||
components: {
|
||||
ads,
|
||||
},
|
||||
template: '<ads />',
|
||||
};
|
||||
export default meta;
|
||||
13
packages/frontend/src/pages/announcements.stories.ts
Normal file
13
packages/frontend/src/pages/announcements.stories.ts
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
import { Meta, Story } from '@storybook/vue3';
|
||||
import announcements from './announcements.vue';
|
||||
const meta = {
|
||||
title: 'pages/announcements',
|
||||
component: announcements,
|
||||
};
|
||||
export const Default = {
|
||||
components: {
|
||||
announcements,
|
||||
},
|
||||
template: '<announcements />',
|
||||
};
|
||||
export default meta;
|
||||
13
packages/frontend/src/pages/antenna-timeline.stories.ts
Normal file
13
packages/frontend/src/pages/antenna-timeline.stories.ts
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
import { Meta, Story } from '@storybook/vue3';
|
||||
import antenna_timeline from './antenna-timeline.vue';
|
||||
const meta = {
|
||||
title: 'pages/antenna-timeline',
|
||||
component: antenna_timeline,
|
||||
};
|
||||
export const Default = {
|
||||
components: {
|
||||
antenna_timeline,
|
||||
},
|
||||
template: '<antenna-timeline />',
|
||||
};
|
||||
export default meta;
|
||||
13
packages/frontend/src/pages/api-console.stories.ts
Normal file
13
packages/frontend/src/pages/api-console.stories.ts
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
import { Meta, Story } from '@storybook/vue3';
|
||||
import api_console from './api-console.vue';
|
||||
const meta = {
|
||||
title: 'pages/api-console',
|
||||
component: api_console,
|
||||
};
|
||||
export const Default = {
|
||||
components: {
|
||||
api_console,
|
||||
},
|
||||
template: '<api-console />',
|
||||
};
|
||||
export default meta;
|
||||
13
packages/frontend/src/pages/auth.form.stories.ts
Normal file
13
packages/frontend/src/pages/auth.form.stories.ts
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
import { Meta, Story } from '@storybook/vue3';
|
||||
import auth_form from './auth.form.vue';
|
||||
const meta = {
|
||||
title: 'pages/auth.form',
|
||||
component: auth_form,
|
||||
};
|
||||
export const Default = {
|
||||
components: {
|
||||
auth_form,
|
||||
},
|
||||
template: '<auth.form />',
|
||||
};
|
||||
export default meta;
|
||||
13
packages/frontend/src/pages/auth.stories.ts
Normal file
13
packages/frontend/src/pages/auth.stories.ts
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
import { Meta, Story } from '@storybook/vue3';
|
||||
import auth from './auth.vue';
|
||||
const meta = {
|
||||
title: 'pages/auth',
|
||||
component: auth,
|
||||
};
|
||||
export const Default = {
|
||||
components: {
|
||||
auth,
|
||||
},
|
||||
template: '<auth />',
|
||||
};
|
||||
export default meta;
|
||||
13
packages/frontend/src/pages/channel-editor.stories.ts
Normal file
13
packages/frontend/src/pages/channel-editor.stories.ts
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
import { Meta, Story } from '@storybook/vue3';
|
||||
import channel_editor from './channel-editor.vue';
|
||||
const meta = {
|
||||
title: 'pages/channel-editor',
|
||||
component: channel_editor,
|
||||
};
|
||||
export const Default = {
|
||||
components: {
|
||||
channel_editor,
|
||||
},
|
||||
template: '<channel-editor />',
|
||||
};
|
||||
export default meta;
|
||||
13
packages/frontend/src/pages/channel.stories.ts
Normal file
13
packages/frontend/src/pages/channel.stories.ts
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
import { Meta, Story } from '@storybook/vue3';
|
||||
import channel from './channel.vue';
|
||||
const meta = {
|
||||
title: 'pages/channel',
|
||||
component: channel,
|
||||
};
|
||||
export const Default = {
|
||||
components: {
|
||||
channel,
|
||||
},
|
||||
template: '<channel />',
|
||||
};
|
||||
export default meta;
|
||||
13
packages/frontend/src/pages/channels.stories.ts
Normal file
13
packages/frontend/src/pages/channels.stories.ts
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
import { Meta, Story } from '@storybook/vue3';
|
||||
import channels from './channels.vue';
|
||||
const meta = {
|
||||
title: 'pages/channels',
|
||||
component: channels,
|
||||
};
|
||||
export const Default = {
|
||||
components: {
|
||||
channels,
|
||||
},
|
||||
template: '<channels />',
|
||||
};
|
||||
export default meta;
|
||||
13
packages/frontend/src/pages/clicker.stories.ts
Normal file
13
packages/frontend/src/pages/clicker.stories.ts
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
import { Meta, Story } from '@storybook/vue3';
|
||||
import clicker from './clicker.vue';
|
||||
const meta = {
|
||||
title: 'pages/clicker',
|
||||
component: clicker,
|
||||
};
|
||||
export const Default = {
|
||||
components: {
|
||||
clicker,
|
||||
},
|
||||
template: '<clicker />',
|
||||
};
|
||||
export default meta;
|
||||
13
packages/frontend/src/pages/clip.stories.ts
Normal file
13
packages/frontend/src/pages/clip.stories.ts
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
import { Meta, Story } from '@storybook/vue3';
|
||||
import clip from './clip.vue';
|
||||
const meta = {
|
||||
title: 'pages/clip',
|
||||
component: clip,
|
||||
};
|
||||
export const Default = {
|
||||
components: {
|
||||
clip,
|
||||
},
|
||||
template: '<clip />',
|
||||
};
|
||||
export default meta;
|
||||
13
packages/frontend/src/pages/custom-emojis-manager.stories.ts
Normal file
13
packages/frontend/src/pages/custom-emojis-manager.stories.ts
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
import { Meta, Story } from '@storybook/vue3';
|
||||
import custom_emojis_manager from './custom-emojis-manager.vue';
|
||||
const meta = {
|
||||
title: 'pages/custom-emojis-manager',
|
||||
component: custom_emojis_manager,
|
||||
};
|
||||
export const Default = {
|
||||
components: {
|
||||
custom_emojis_manager,
|
||||
},
|
||||
template: '<custom-emojis-manager />',
|
||||
};
|
||||
export default meta;
|
||||
13
packages/frontend/src/pages/drive.stories.ts
Normal file
13
packages/frontend/src/pages/drive.stories.ts
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
import { Meta, Story } from '@storybook/vue3';
|
||||
import drive from './drive.vue';
|
||||
const meta = {
|
||||
title: 'pages/drive',
|
||||
component: drive,
|
||||
};
|
||||
export const Default = {
|
||||
components: {
|
||||
drive,
|
||||
},
|
||||
template: '<drive />',
|
||||
};
|
||||
export default meta;
|
||||
13
packages/frontend/src/pages/emoji-edit-dialog.stories.ts
Normal file
13
packages/frontend/src/pages/emoji-edit-dialog.stories.ts
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
import { Meta, Story } from '@storybook/vue3';
|
||||
import emoji_edit_dialog from './emoji-edit-dialog.vue';
|
||||
const meta = {
|
||||
title: 'pages/emoji-edit-dialog',
|
||||
component: emoji_edit_dialog,
|
||||
};
|
||||
export const Default = {
|
||||
components: {
|
||||
emoji_edit_dialog,
|
||||
},
|
||||
template: '<emoji-edit-dialog />',
|
||||
};
|
||||
export default meta;
|
||||
13
packages/frontend/src/pages/emojis.emoji.stories.ts
Normal file
13
packages/frontend/src/pages/emojis.emoji.stories.ts
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
import { Meta, Story } from '@storybook/vue3';
|
||||
import emojis_emoji from './emojis.emoji.vue';
|
||||
const meta = {
|
||||
title: 'pages/emojis.emoji',
|
||||
component: emojis_emoji,
|
||||
};
|
||||
export const Default = {
|
||||
components: {
|
||||
emojis_emoji,
|
||||
},
|
||||
template: '<emojis.emoji />',
|
||||
};
|
||||
export default meta;
|
||||
13
packages/frontend/src/pages/explore.featured.stories.ts
Normal file
13
packages/frontend/src/pages/explore.featured.stories.ts
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
import { Meta, Story } from '@storybook/vue3';
|
||||
import explore_featured from './explore.featured.vue';
|
||||
const meta = {
|
||||
title: 'pages/explore.featured',
|
||||
component: explore_featured,
|
||||
};
|
||||
export const Default = {
|
||||
components: {
|
||||
explore_featured,
|
||||
},
|
||||
template: '<explore.featured />',
|
||||
};
|
||||
export default meta;
|
||||
13
packages/frontend/src/pages/explore.roles.stories.ts
Normal file
13
packages/frontend/src/pages/explore.roles.stories.ts
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
import { Meta, Story } from '@storybook/vue3';
|
||||
import explore_roles from './explore.roles.vue';
|
||||
const meta = {
|
||||
title: 'pages/explore.roles',
|
||||
component: explore_roles,
|
||||
};
|
||||
export const Default = {
|
||||
components: {
|
||||
explore_roles,
|
||||
},
|
||||
template: '<explore.roles />',
|
||||
};
|
||||
export default meta;
|
||||
13
packages/frontend/src/pages/explore.stories.ts
Normal file
13
packages/frontend/src/pages/explore.stories.ts
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
import { Meta, Story } from '@storybook/vue3';
|
||||
import explore from './explore.vue';
|
||||
const meta = {
|
||||
title: 'pages/explore',
|
||||
component: explore,
|
||||
};
|
||||
export const Default = {
|
||||
components: {
|
||||
explore,
|
||||
},
|
||||
template: '<explore />',
|
||||
};
|
||||
export default meta;
|
||||
13
packages/frontend/src/pages/explore.users.stories.ts
Normal file
13
packages/frontend/src/pages/explore.users.stories.ts
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
import { Meta, Story } from '@storybook/vue3';
|
||||
import explore_users from './explore.users.vue';
|
||||
const meta = {
|
||||
title: 'pages/explore.users',
|
||||
component: explore_users,
|
||||
};
|
||||
export const Default = {
|
||||
components: {
|
||||
explore_users,
|
||||
},
|
||||
template: '<explore.users />',
|
||||
};
|
||||
export default meta;
|
||||
13
packages/frontend/src/pages/favorites.stories.ts
Normal file
13
packages/frontend/src/pages/favorites.stories.ts
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
import { Meta, Story } from '@storybook/vue3';
|
||||
import favorites from './favorites.vue';
|
||||
const meta = {
|
||||
title: 'pages/favorites',
|
||||
component: favorites,
|
||||
};
|
||||
export const Default = {
|
||||
components: {
|
||||
favorites,
|
||||
},
|
||||
template: '<favorites />',
|
||||
};
|
||||
export default meta;
|
||||
13
packages/frontend/src/pages/flash/flash-edit.stories.ts
Normal file
13
packages/frontend/src/pages/flash/flash-edit.stories.ts
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
import { Meta, Story } from '@storybook/vue3';
|
||||
import flash_edit from './flash-edit.vue';
|
||||
const meta = {
|
||||
title: 'pages/flash/flash-edit',
|
||||
component: flash_edit,
|
||||
};
|
||||
export const Default = {
|
||||
components: {
|
||||
flash_edit,
|
||||
},
|
||||
template: '<flash-edit />',
|
||||
};
|
||||
export default meta;
|
||||
13
packages/frontend/src/pages/flash/flash-index.stories.ts
Normal file
13
packages/frontend/src/pages/flash/flash-index.stories.ts
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
import { Meta, Story } from '@storybook/vue3';
|
||||
import flash_index from './flash-index.vue';
|
||||
const meta = {
|
||||
title: 'pages/flash/flash-index',
|
||||
component: flash_index,
|
||||
};
|
||||
export const Default = {
|
||||
components: {
|
||||
flash_index,
|
||||
},
|
||||
template: '<flash-index />',
|
||||
};
|
||||
export default meta;
|
||||
13
packages/frontend/src/pages/flash/flash.stories.ts
Normal file
13
packages/frontend/src/pages/flash/flash.stories.ts
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
import { Meta, Story } from '@storybook/vue3';
|
||||
import flash from './flash.vue';
|
||||
const meta = {
|
||||
title: 'pages/flash/flash',
|
||||
component: flash,
|
||||
};
|
||||
export const Default = {
|
||||
components: {
|
||||
flash,
|
||||
},
|
||||
template: '<flash />',
|
||||
};
|
||||
export default meta;
|
||||
13
packages/frontend/src/pages/follow-requests.stories.ts
Normal file
13
packages/frontend/src/pages/follow-requests.stories.ts
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
import { Meta, Story } from '@storybook/vue3';
|
||||
import follow_requests from './follow-requests.vue';
|
||||
const meta = {
|
||||
title: 'pages/follow-requests',
|
||||
component: follow_requests,
|
||||
};
|
||||
export const Default = {
|
||||
components: {
|
||||
follow_requests,
|
||||
},
|
||||
template: '<follow-requests />',
|
||||
};
|
||||
export default meta;
|
||||
13
packages/frontend/src/pages/follow.stories.ts
Normal file
13
packages/frontend/src/pages/follow.stories.ts
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
import { Meta, Story } from '@storybook/vue3';
|
||||
import follow from './follow.vue';
|
||||
const meta = {
|
||||
title: 'pages/follow',
|
||||
component: follow,
|
||||
};
|
||||
export const Default = {
|
||||
components: {
|
||||
follow,
|
||||
},
|
||||
template: '<follow />',
|
||||
};
|
||||
export default meta;
|
||||
13
packages/frontend/src/pages/gallery/edit.stories.ts
Normal file
13
packages/frontend/src/pages/gallery/edit.stories.ts
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
import { Meta, Story } from '@storybook/vue3';
|
||||
import edit from './edit.vue';
|
||||
const meta = {
|
||||
title: 'pages/gallery/edit',
|
||||
component: edit,
|
||||
};
|
||||
export const Default = {
|
||||
components: {
|
||||
edit,
|
||||
},
|
||||
template: '<edit />',
|
||||
};
|
||||
export default meta;
|
||||
13
packages/frontend/src/pages/gallery/index.stories.ts
Normal file
13
packages/frontend/src/pages/gallery/index.stories.ts
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
import { Meta, Story } from '@storybook/vue3';
|
||||
import index from './index.vue';
|
||||
const meta = {
|
||||
title: 'pages/gallery/index',
|
||||
component: index,
|
||||
};
|
||||
export const Default = {
|
||||
components: {
|
||||
index,
|
||||
},
|
||||
template: '<index />',
|
||||
};
|
||||
export default meta;
|
||||
13
packages/frontend/src/pages/gallery/post.stories.ts
Normal file
13
packages/frontend/src/pages/gallery/post.stories.ts
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
import { Meta, Story } from '@storybook/vue3';
|
||||
import post from './post.vue';
|
||||
const meta = {
|
||||
title: 'pages/gallery/post',
|
||||
component: post,
|
||||
};
|
||||
export const Default = {
|
||||
components: {
|
||||
post,
|
||||
},
|
||||
template: '<post />',
|
||||
};
|
||||
export default meta;
|
||||
13
packages/frontend/src/pages/instance-info.stories.ts
Normal file
13
packages/frontend/src/pages/instance-info.stories.ts
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
import { Meta, Story } from '@storybook/vue3';
|
||||
import instance_info from './instance-info.vue';
|
||||
const meta = {
|
||||
title: 'pages/instance-info',
|
||||
component: instance_info,
|
||||
};
|
||||
export const Default = {
|
||||
components: {
|
||||
instance_info,
|
||||
},
|
||||
template: '<instance-info />',
|
||||
};
|
||||
export default meta;
|
||||
13
packages/frontend/src/pages/miauth.stories.ts
Normal file
13
packages/frontend/src/pages/miauth.stories.ts
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
import { Meta, Story } from '@storybook/vue3';
|
||||
import miauth from './miauth.vue';
|
||||
const meta = {
|
||||
title: 'pages/miauth',
|
||||
component: miauth,
|
||||
};
|
||||
export const Default = {
|
||||
components: {
|
||||
miauth,
|
||||
},
|
||||
template: '<miauth />',
|
||||
};
|
||||
export default meta;
|
||||
13
packages/frontend/src/pages/my-antennas/create.stories.ts
Normal file
13
packages/frontend/src/pages/my-antennas/create.stories.ts
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
import { Meta, Story } from '@storybook/vue3';
|
||||
import create from './create.vue';
|
||||
const meta = {
|
||||
title: 'pages/my-antennas/create',
|
||||
component: create,
|
||||
};
|
||||
export const Default = {
|
||||
components: {
|
||||
create,
|
||||
},
|
||||
template: '<create />',
|
||||
};
|
||||
export default meta;
|
||||
13
packages/frontend/src/pages/my-antennas/edit.stories.ts
Normal file
13
packages/frontend/src/pages/my-antennas/edit.stories.ts
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
import { Meta, Story } from '@storybook/vue3';
|
||||
import edit from './edit.vue';
|
||||
const meta = {
|
||||
title: 'pages/my-antennas/edit',
|
||||
component: edit,
|
||||
};
|
||||
export const Default = {
|
||||
components: {
|
||||
edit,
|
||||
},
|
||||
template: '<edit />',
|
||||
};
|
||||
export default meta;
|
||||
13
packages/frontend/src/pages/my-antennas/editor.stories.ts
Normal file
13
packages/frontend/src/pages/my-antennas/editor.stories.ts
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
import { Meta, Story } from '@storybook/vue3';
|
||||
import editor from './editor.vue';
|
||||
const meta = {
|
||||
title: 'pages/my-antennas/editor',
|
||||
component: editor,
|
||||
};
|
||||
export const Default = {
|
||||
components: {
|
||||
editor,
|
||||
},
|
||||
template: '<editor />',
|
||||
};
|
||||
export default meta;
|
||||
13
packages/frontend/src/pages/my-antennas/index.stories.ts
Normal file
13
packages/frontend/src/pages/my-antennas/index.stories.ts
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
import { Meta, Story } from '@storybook/vue3';
|
||||
import index from './index.vue';
|
||||
const meta = {
|
||||
title: 'pages/my-antennas/index',
|
||||
component: index,
|
||||
};
|
||||
export const Default = {
|
||||
components: {
|
||||
index,
|
||||
},
|
||||
template: '<index />',
|
||||
};
|
||||
export default meta;
|
||||
13
packages/frontend/src/pages/my-clips/index.stories.ts
Normal file
13
packages/frontend/src/pages/my-clips/index.stories.ts
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
import { Meta, Story } from '@storybook/vue3';
|
||||
import index from './index.vue';
|
||||
const meta = {
|
||||
title: 'pages/my-clips/index',
|
||||
component: index,
|
||||
};
|
||||
export const Default = {
|
||||
components: {
|
||||
index,
|
||||
},
|
||||
template: '<index />',
|
||||
};
|
||||
export default meta;
|
||||
13
packages/frontend/src/pages/my-lists/index.stories.ts
Normal file
13
packages/frontend/src/pages/my-lists/index.stories.ts
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
import { Meta, Story } from '@storybook/vue3';
|
||||
import index from './index.vue';
|
||||
const meta = {
|
||||
title: 'pages/my-lists/index',
|
||||
component: index,
|
||||
};
|
||||
export const Default = {
|
||||
components: {
|
||||
index,
|
||||
},
|
||||
template: '<index />',
|
||||
};
|
||||
export default meta;
|
||||
13
packages/frontend/src/pages/my-lists/list.stories.ts
Normal file
13
packages/frontend/src/pages/my-lists/list.stories.ts
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
import { Meta, Story } from '@storybook/vue3';
|
||||
import list from './list.vue';
|
||||
const meta = {
|
||||
title: 'pages/my-lists/list',
|
||||
component: list,
|
||||
};
|
||||
export const Default = {
|
||||
components: {
|
||||
list,
|
||||
},
|
||||
template: '<list />',
|
||||
};
|
||||
export default meta;
|
||||
13
packages/frontend/src/pages/not-found.stories.ts
Normal file
13
packages/frontend/src/pages/not-found.stories.ts
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
import { Meta, Story } from '@storybook/vue3';
|
||||
import not_found from './not-found.vue';
|
||||
const meta = {
|
||||
title: 'pages/not-found',
|
||||
component: not_found,
|
||||
};
|
||||
export const Default = {
|
||||
components: {
|
||||
not_found,
|
||||
},
|
||||
template: '<not-found />',
|
||||
};
|
||||
export default meta;
|
||||
13
packages/frontend/src/pages/note.stories.ts
Normal file
13
packages/frontend/src/pages/note.stories.ts
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
import { Meta, Story } from '@storybook/vue3';
|
||||
import note from './note.vue';
|
||||
const meta = {
|
||||
title: 'pages/note',
|
||||
component: note,
|
||||
};
|
||||
export const Default = {
|
||||
components: {
|
||||
note,
|
||||
},
|
||||
template: '<note />',
|
||||
};
|
||||
export default meta;
|
||||
13
packages/frontend/src/pages/notifications.stories.ts
Normal file
13
packages/frontend/src/pages/notifications.stories.ts
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
import { Meta, Story } from '@storybook/vue3';
|
||||
import notifications from './notifications.vue';
|
||||
const meta = {
|
||||
title: 'pages/notifications',
|
||||
component: notifications,
|
||||
};
|
||||
export const Default = {
|
||||
components: {
|
||||
notifications,
|
||||
},
|
||||
template: '<notifications />',
|
||||
};
|
||||
export default meta;
|
||||
|
|
@ -0,0 +1,13 @@
|
|||
import { Meta, Story } from '@storybook/vue3';
|
||||
import page_editor_el_image from './page-editor.el.image.vue';
|
||||
const meta = {
|
||||
title: 'pages/page-editor/els/page-editor.el.image',
|
||||
component: page_editor_el_image,
|
||||
};
|
||||
export const Default = {
|
||||
components: {
|
||||
page_editor_el_image,
|
||||
},
|
||||
template: '<page-editor.el.image />',
|
||||
};
|
||||
export default meta;
|
||||
|
|
@ -0,0 +1,13 @@
|
|||
import { Meta, Story } from '@storybook/vue3';
|
||||
import page_editor_el_note from './page-editor.el.note.vue';
|
||||
const meta = {
|
||||
title: 'pages/page-editor/els/page-editor.el.note',
|
||||
component: page_editor_el_note,
|
||||
};
|
||||
export const Default = {
|
||||
components: {
|
||||
page_editor_el_note,
|
||||
},
|
||||
template: '<page-editor.el.note />',
|
||||
};
|
||||
export default meta;
|
||||
|
|
@ -0,0 +1,13 @@
|
|||
import { Meta, Story } from '@storybook/vue3';
|
||||
import page_editor_el_section from './page-editor.el.section.vue';
|
||||
const meta = {
|
||||
title: 'pages/page-editor/els/page-editor.el.section',
|
||||
component: page_editor_el_section,
|
||||
};
|
||||
export const Default = {
|
||||
components: {
|
||||
page_editor_el_section,
|
||||
},
|
||||
template: '<page-editor.el.section />',
|
||||
};
|
||||
export default meta;
|
||||
|
|
@ -0,0 +1,13 @@
|
|||
import { Meta, Story } from '@storybook/vue3';
|
||||
import page_editor_el_text from './page-editor.el.text.vue';
|
||||
const meta = {
|
||||
title: 'pages/page-editor/els/page-editor.el.text',
|
||||
component: page_editor_el_text,
|
||||
};
|
||||
export const Default = {
|
||||
components: {
|
||||
page_editor_el_text,
|
||||
},
|
||||
template: '<page-editor.el.text />',
|
||||
};
|
||||
export default meta;
|
||||
|
|
@ -0,0 +1,13 @@
|
|||
import { Meta, Story } from '@storybook/vue3';
|
||||
import page_editor_blocks from './page-editor.blocks.vue';
|
||||
const meta = {
|
||||
title: 'pages/page-editor/page-editor.blocks',
|
||||
component: page_editor_blocks,
|
||||
};
|
||||
export const Default = {
|
||||
components: {
|
||||
page_editor_blocks,
|
||||
},
|
||||
template: '<page-editor.blocks />',
|
||||
};
|
||||
export default meta;
|
||||
|
|
@ -0,0 +1,13 @@
|
|||
import { Meta, Story } from '@storybook/vue3';
|
||||
import page_editor_container from './page-editor.container.vue';
|
||||
const meta = {
|
||||
title: 'pages/page-editor/page-editor.container',
|
||||
component: page_editor_container,
|
||||
};
|
||||
export const Default = {
|
||||
components: {
|
||||
page_editor_container,
|
||||
},
|
||||
template: '<page-editor.container />',
|
||||
};
|
||||
export default meta;
|
||||
|
|
@ -0,0 +1,13 @@
|
|||
import { Meta, Story } from '@storybook/vue3';
|
||||
import page_editor from './page-editor.vue';
|
||||
const meta = {
|
||||
title: 'pages/page-editor/page-editor',
|
||||
component: page_editor,
|
||||
};
|
||||
export const Default = {
|
||||
components: {
|
||||
page_editor,
|
||||
},
|
||||
template: '<page-editor />',
|
||||
};
|
||||
export default meta;
|
||||
13
packages/frontend/src/pages/page.stories.ts
Normal file
13
packages/frontend/src/pages/page.stories.ts
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
import { Meta, Story } from '@storybook/vue3';
|
||||
import page from './page.vue';
|
||||
const meta = {
|
||||
title: 'pages/page',
|
||||
component: page,
|
||||
};
|
||||
export const Default = {
|
||||
components: {
|
||||
page,
|
||||
},
|
||||
template: '<page />',
|
||||
};
|
||||
export default meta;
|
||||
13
packages/frontend/src/pages/pages.stories.ts
Normal file
13
packages/frontend/src/pages/pages.stories.ts
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
import { Meta, Story } from '@storybook/vue3';
|
||||
import pages from './pages.vue';
|
||||
const meta = {
|
||||
title: 'pages/pages',
|
||||
component: pages,
|
||||
};
|
||||
export const Default = {
|
||||
components: {
|
||||
pages,
|
||||
},
|
||||
template: '<pages />',
|
||||
};
|
||||
export default meta;
|
||||
13
packages/frontend/src/pages/preview.stories.ts
Normal file
13
packages/frontend/src/pages/preview.stories.ts
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
import { Meta, Story } from '@storybook/vue3';
|
||||
import preview from './preview.vue';
|
||||
const meta = {
|
||||
title: 'pages/preview',
|
||||
component: preview,
|
||||
};
|
||||
export const Default = {
|
||||
components: {
|
||||
preview,
|
||||
},
|
||||
template: '<preview />',
|
||||
};
|
||||
export default meta;
|
||||
13
packages/frontend/src/pages/registry.keys.stories.ts
Normal file
13
packages/frontend/src/pages/registry.keys.stories.ts
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
import { Meta, Story } from '@storybook/vue3';
|
||||
import registry_keys from './registry.keys.vue';
|
||||
const meta = {
|
||||
title: 'pages/registry.keys',
|
||||
component: registry_keys,
|
||||
};
|
||||
export const Default = {
|
||||
components: {
|
||||
registry_keys,
|
||||
},
|
||||
template: '<registry.keys />',
|
||||
};
|
||||
export default meta;
|
||||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue