build(#10336): impl SatisfiesExpression

This commit is contained in:
Acid Chicken (硫酸鶏)
2023-03-20 23:07:13 +09:00
parent 2eecb8e876
commit bdbbb92ff6
431 changed files with 1414 additions and 1383 deletions

View File

@@ -1,9 +1,9 @@
import { Meta, Story } from '@storybook/vue3';
import { Meta, StoryObj } from '@storybook/vue3';
import achievements from './achievements.vue';
const meta = {
title: 'pages/user/achievements',
component: achievements,
};
} satisfies Meta<typeof achievements>;
export const Default = {
render(args, { argTypes }) {
return {
@@ -17,5 +17,5 @@ export const Default = {
parameters: {
layout: 'fullscreen',
},
};
} satisfies StoryObj<typeof achievements>;
export default meta;

View File

@@ -1,9 +1,9 @@
import { Meta, Story } from '@storybook/vue3';
import { Meta, StoryObj } from '@storybook/vue3';
import activity_following from './activity.following.vue';
const meta = {
title: 'pages/user/activity.following',
component: activity_following,
};
} satisfies Meta<typeof activity_following>;
export const Default = {
render(args, { argTypes }) {
return {
@@ -17,5 +17,5 @@ export const Default = {
parameters: {
layout: 'fullscreen',
},
};
} satisfies StoryObj<typeof activity_following>;
export default meta;

View File

@@ -1,9 +1,9 @@
import { Meta, Story } from '@storybook/vue3';
import { Meta, StoryObj } from '@storybook/vue3';
import activity_heatmap from './activity.heatmap.vue';
const meta = {
title: 'pages/user/activity.heatmap',
component: activity_heatmap,
};
} satisfies Meta<typeof activity_heatmap>;
export const Default = {
render(args, { argTypes }) {
return {
@@ -17,5 +17,5 @@ export const Default = {
parameters: {
layout: 'fullscreen',
},
};
} satisfies StoryObj<typeof activity_heatmap>;
export default meta;

View File

@@ -1,9 +1,9 @@
import { Meta, Story } from '@storybook/vue3';
import { Meta, StoryObj } from '@storybook/vue3';
import activity_notes from './activity.notes.vue';
const meta = {
title: 'pages/user/activity.notes',
component: activity_notes,
};
} satisfies Meta<typeof activity_notes>;
export const Default = {
render(args, { argTypes }) {
return {
@@ -17,5 +17,5 @@ export const Default = {
parameters: {
layout: 'fullscreen',
},
};
} satisfies StoryObj<typeof activity_notes>;
export default meta;

View File

@@ -1,9 +1,9 @@
import { Meta, Story } from '@storybook/vue3';
import { Meta, StoryObj } from '@storybook/vue3';
import activity_pv from './activity.pv.vue';
const meta = {
title: 'pages/user/activity.pv',
component: activity_pv,
};
} satisfies Meta<typeof activity_pv>;
export const Default = {
render(args, { argTypes }) {
return {
@@ -17,5 +17,5 @@ export const Default = {
parameters: {
layout: 'fullscreen',
},
};
} satisfies StoryObj<typeof activity_pv>;
export default meta;

View File

@@ -1,9 +1,9 @@
import { Meta, Story } from '@storybook/vue3';
import { Meta, StoryObj } from '@storybook/vue3';
import activity from './activity.vue';
const meta = {
title: 'pages/user/activity',
component: activity,
};
} satisfies Meta<typeof activity>;
export const Default = {
render(args, { argTypes }) {
return {
@@ -17,5 +17,5 @@ export const Default = {
parameters: {
layout: 'fullscreen',
},
};
} satisfies StoryObj<typeof activity>;
export default meta;

View File

@@ -1,9 +1,9 @@
import { Meta, Story } from '@storybook/vue3';
import { Meta, StoryObj } from '@storybook/vue3';
import clips from './clips.vue';
const meta = {
title: 'pages/user/clips',
component: clips,
};
} satisfies Meta<typeof clips>;
export const Default = {
render(args, { argTypes }) {
return {
@@ -17,5 +17,5 @@ export const Default = {
parameters: {
layout: 'fullscreen',
},
};
} satisfies StoryObj<typeof clips>;
export default meta;

View File

@@ -1,9 +1,9 @@
import { Meta, Story } from '@storybook/vue3';
import { Meta, StoryObj } from '@storybook/vue3';
import follow_list from './follow-list.vue';
const meta = {
title: 'pages/user/follow-list',
component: follow_list,
};
} satisfies Meta<typeof follow_list>;
export const Default = {
render(args, { argTypes }) {
return {
@@ -17,5 +17,5 @@ export const Default = {
parameters: {
layout: 'fullscreen',
},
};
} satisfies StoryObj<typeof follow_list>;
export default meta;

View File

@@ -1,9 +1,9 @@
import { Meta, Story } from '@storybook/vue3';
import { Meta, StoryObj } from '@storybook/vue3';
import followers from './followers.vue';
const meta = {
title: 'pages/user/followers',
component: followers,
};
} satisfies Meta<typeof followers>;
export const Default = {
render(args, { argTypes }) {
return {
@@ -17,5 +17,5 @@ export const Default = {
parameters: {
layout: 'fullscreen',
},
};
} satisfies StoryObj<typeof followers>;
export default meta;

View File

@@ -1,9 +1,9 @@
import { Meta, Story } from '@storybook/vue3';
import { Meta, StoryObj } from '@storybook/vue3';
import following from './following.vue';
const meta = {
title: 'pages/user/following',
component: following,
};
} satisfies Meta<typeof following>;
export const Default = {
render(args, { argTypes }) {
return {
@@ -17,5 +17,5 @@ export const Default = {
parameters: {
layout: 'fullscreen',
},
};
} satisfies StoryObj<typeof following>;
export default meta;

View File

@@ -1,9 +1,9 @@
import { Meta, Story } from '@storybook/vue3';
import { Meta, StoryObj } from '@storybook/vue3';
import gallery from './gallery.vue';
const meta = {
title: 'pages/user/gallery',
component: gallery,
};
} satisfies Meta<typeof gallery>;
export const Default = {
render(args, { argTypes }) {
return {
@@ -17,5 +17,5 @@ export const Default = {
parameters: {
layout: 'fullscreen',
},
};
} satisfies StoryObj<typeof gallery>;
export default meta;

View File

@@ -1,9 +1,9 @@
import { Meta, Story } from '@storybook/vue3';
import { Meta, StoryObj } from '@storybook/vue3';
import home from './home.vue';
const meta = {
title: 'pages/user/home',
component: home,
};
} satisfies Meta<typeof home>;
export const Default = {
render(args, { argTypes }) {
return {
@@ -17,5 +17,5 @@ export const Default = {
parameters: {
layout: 'fullscreen',
},
};
} satisfies StoryObj<typeof home>;
export default meta;

View File

@@ -1,9 +1,9 @@
import { Meta, Story } from '@storybook/vue3';
import { Meta, StoryObj } from '@storybook/vue3';
import index_activity from './index.activity.vue';
const meta = {
title: 'pages/user/index.activity',
component: index_activity,
};
} satisfies Meta<typeof index_activity>;
export const Default = {
render(args, { argTypes }) {
return {
@@ -17,5 +17,5 @@ export const Default = {
parameters: {
layout: 'fullscreen',
},
};
} satisfies StoryObj<typeof index_activity>;
export default meta;

View File

@@ -1,9 +1,9 @@
import { Meta, Story } from '@storybook/vue3';
import { Meta, StoryObj } from '@storybook/vue3';
import index_photos from './index.photos.vue';
const meta = {
title: 'pages/user/index.photos',
component: index_photos,
};
} satisfies Meta<typeof index_photos>;
export const Default = {
render(args, { argTypes }) {
return {
@@ -17,5 +17,5 @@ export const Default = {
parameters: {
layout: 'fullscreen',
},
};
} satisfies StoryObj<typeof index_photos>;
export default meta;

View File

@@ -1,9 +1,9 @@
import { Meta, Story } from '@storybook/vue3';
import { Meta, StoryObj } from '@storybook/vue3';
import index from './index.vue';
const meta = {
title: 'pages/user/index',
component: index,
};
} satisfies Meta<typeof index>;
export const Default = {
render(args, { argTypes }) {
return {
@@ -17,5 +17,5 @@ export const Default = {
parameters: {
layout: 'fullscreen',
},
};
} satisfies StoryObj<typeof index>;
export default meta;

View File

@@ -1,9 +1,9 @@
import { Meta, Story } from '@storybook/vue3';
import { Meta, StoryObj } from '@storybook/vue3';
import index_timeline from './index.timeline.vue';
const meta = {
title: 'pages/user/index.timeline',
component: index_timeline,
};
} satisfies Meta<typeof index_timeline>;
export const Default = {
render(args, { argTypes }) {
return {
@@ -17,5 +17,5 @@ export const Default = {
parameters: {
layout: 'fullscreen',
},
};
} satisfies StoryObj<typeof index_timeline>;
export default meta;

View File

@@ -1,9 +1,9 @@
import { Meta, Story } from '@storybook/vue3';
import { Meta, StoryObj } from '@storybook/vue3';
import pages from './pages.vue';
const meta = {
title: 'pages/user/pages',
component: pages,
};
} satisfies Meta<typeof pages>;
export const Default = {
render(args, { argTypes }) {
return {
@@ -17,5 +17,5 @@ export const Default = {
parameters: {
layout: 'fullscreen',
},
};
} satisfies StoryObj<typeof pages>;
export default meta;

View File

@@ -1,9 +1,9 @@
import { Meta, Story } from '@storybook/vue3';
import { Meta, StoryObj } from '@storybook/vue3';
import reactions from './reactions.vue';
const meta = {
title: 'pages/user/reactions',
component: reactions,
};
} satisfies Meta<typeof reactions>;
export const Default = {
render(args, { argTypes }) {
return {
@@ -17,5 +17,5 @@ export const Default = {
parameters: {
layout: 'fullscreen',
},
};
} satisfies StoryObj<typeof reactions>;
export default meta;