mirror of
https://github.com/misskey-dev/misskey.git
synced 2026-06-12 09:24:06 +02:00
build(#10336): impl SatisfiesExpression
This commit is contained in:
@@ -1,9 +1,9 @@
|
||||
import { Meta, Story } from '@storybook/vue3';
|
||||
import { Meta, StoryObj } 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,
|
||||
};
|
||||
} satisfies Meta<typeof page_editor_el_image>;
|
||||
export const Default = {
|
||||
render(args, { argTypes }) {
|
||||
return {
|
||||
@@ -17,5 +17,5 @@ export const Default = {
|
||||
parameters: {
|
||||
layout: 'fullscreen',
|
||||
},
|
||||
};
|
||||
} satisfies StoryObj<typeof page_editor_el_image>;
|
||||
export default meta;
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
import { Meta, Story } from '@storybook/vue3';
|
||||
import { Meta, StoryObj } 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,
|
||||
};
|
||||
} satisfies Meta<typeof page_editor_el_note>;
|
||||
export const Default = {
|
||||
render(args, { argTypes }) {
|
||||
return {
|
||||
@@ -17,5 +17,5 @@ export const Default = {
|
||||
parameters: {
|
||||
layout: 'fullscreen',
|
||||
},
|
||||
};
|
||||
} satisfies StoryObj<typeof page_editor_el_note>;
|
||||
export default meta;
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
import { Meta, Story } from '@storybook/vue3';
|
||||
import { Meta, StoryObj } 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,
|
||||
};
|
||||
} satisfies Meta<typeof page_editor_el_section>;
|
||||
export const Default = {
|
||||
render(args, { argTypes }) {
|
||||
return {
|
||||
@@ -17,5 +17,5 @@ export const Default = {
|
||||
parameters: {
|
||||
layout: 'fullscreen',
|
||||
},
|
||||
};
|
||||
} satisfies StoryObj<typeof page_editor_el_section>;
|
||||
export default meta;
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
import { Meta, Story } from '@storybook/vue3';
|
||||
import { Meta, StoryObj } 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,
|
||||
};
|
||||
} satisfies Meta<typeof page_editor_el_text>;
|
||||
export const Default = {
|
||||
render(args, { argTypes }) {
|
||||
return {
|
||||
@@ -17,5 +17,5 @@ export const Default = {
|
||||
parameters: {
|
||||
layout: 'fullscreen',
|
||||
},
|
||||
};
|
||||
} satisfies StoryObj<typeof page_editor_el_text>;
|
||||
export default meta;
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
import { Meta, Story } from '@storybook/vue3';
|
||||
import { Meta, StoryObj } 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,
|
||||
};
|
||||
} satisfies Meta<typeof page_editor_blocks>;
|
||||
export const Default = {
|
||||
render(args, { argTypes }) {
|
||||
return {
|
||||
@@ -17,5 +17,5 @@ export const Default = {
|
||||
parameters: {
|
||||
layout: 'fullscreen',
|
||||
},
|
||||
};
|
||||
} satisfies StoryObj<typeof page_editor_blocks>;
|
||||
export default meta;
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
import { Meta, Story } from '@storybook/vue3';
|
||||
import { Meta, StoryObj } 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,
|
||||
};
|
||||
} satisfies Meta<typeof page_editor_container>;
|
||||
export const Default = {
|
||||
render(args, { argTypes }) {
|
||||
return {
|
||||
@@ -17,5 +17,5 @@ export const Default = {
|
||||
parameters: {
|
||||
layout: 'fullscreen',
|
||||
},
|
||||
};
|
||||
} satisfies StoryObj<typeof page_editor_container>;
|
||||
export default meta;
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
import { Meta, Story } from '@storybook/vue3';
|
||||
import { Meta, StoryObj } from '@storybook/vue3';
|
||||
import page_editor from './page-editor.vue';
|
||||
const meta = {
|
||||
title: 'pages/page-editor/page-editor',
|
||||
component: page_editor,
|
||||
};
|
||||
} satisfies Meta<typeof page_editor>;
|
||||
export const Default = {
|
||||
render(args, { argTypes }) {
|
||||
return {
|
||||
@@ -17,5 +17,5 @@ export const Default = {
|
||||
parameters: {
|
||||
layout: 'fullscreen',
|
||||
},
|
||||
};
|
||||
} satisfies StoryObj<typeof page_editor>;
|
||||
export default meta;
|
||||
|
||||
Reference in New Issue
Block a user