build(#10336): update dependencies
This commit is contained in:
parent
bf5fff879f
commit
c2d8759812
435 changed files with 6894 additions and 2953 deletions
|
|
@ -7,13 +7,24 @@ const meta = {
|
|||
component: achievements_,
|
||||
} satisfies Meta<typeof achievements_>;
|
||||
export const Default = {
|
||||
render(args, { argTypes }) {
|
||||
render(args) {
|
||||
return {
|
||||
components: {
|
||||
achievements_,
|
||||
},
|
||||
props: Object.keys(argTypes),
|
||||
template: '<achievements_ v-bind="$props" />',
|
||||
setup() {
|
||||
return {
|
||||
args,
|
||||
};
|
||||
},
|
||||
computed: {
|
||||
props() {
|
||||
return {
|
||||
...args,
|
||||
};
|
||||
},
|
||||
},
|
||||
template: '<achievements_ v-bind="props" />',
|
||||
};
|
||||
},
|
||||
parameters: {
|
||||
|
|
|
|||
|
|
@ -7,13 +7,24 @@ const meta = {
|
|||
component: activity_following,
|
||||
} satisfies Meta<typeof activity_following>;
|
||||
export const Default = {
|
||||
render(args, { argTypes }) {
|
||||
render(args) {
|
||||
return {
|
||||
components: {
|
||||
activity_following,
|
||||
},
|
||||
props: Object.keys(argTypes),
|
||||
template: '<activity_following v-bind="$props" />',
|
||||
setup() {
|
||||
return {
|
||||
args,
|
||||
};
|
||||
},
|
||||
computed: {
|
||||
props() {
|
||||
return {
|
||||
...args,
|
||||
};
|
||||
},
|
||||
},
|
||||
template: '<activity_following v-bind="props" />',
|
||||
};
|
||||
},
|
||||
parameters: {
|
||||
|
|
|
|||
|
|
@ -7,13 +7,24 @@ const meta = {
|
|||
component: activity_heatmap,
|
||||
} satisfies Meta<typeof activity_heatmap>;
|
||||
export const Default = {
|
||||
render(args, { argTypes }) {
|
||||
render(args) {
|
||||
return {
|
||||
components: {
|
||||
activity_heatmap,
|
||||
},
|
||||
props: Object.keys(argTypes),
|
||||
template: '<activity_heatmap v-bind="$props" />',
|
||||
setup() {
|
||||
return {
|
||||
args,
|
||||
};
|
||||
},
|
||||
computed: {
|
||||
props() {
|
||||
return {
|
||||
...args,
|
||||
};
|
||||
},
|
||||
},
|
||||
template: '<activity_heatmap v-bind="props" />',
|
||||
};
|
||||
},
|
||||
parameters: {
|
||||
|
|
|
|||
|
|
@ -7,13 +7,24 @@ const meta = {
|
|||
component: activity_notes,
|
||||
} satisfies Meta<typeof activity_notes>;
|
||||
export const Default = {
|
||||
render(args, { argTypes }) {
|
||||
render(args) {
|
||||
return {
|
||||
components: {
|
||||
activity_notes,
|
||||
},
|
||||
props: Object.keys(argTypes),
|
||||
template: '<activity_notes v-bind="$props" />',
|
||||
setup() {
|
||||
return {
|
||||
args,
|
||||
};
|
||||
},
|
||||
computed: {
|
||||
props() {
|
||||
return {
|
||||
...args,
|
||||
};
|
||||
},
|
||||
},
|
||||
template: '<activity_notes v-bind="props" />',
|
||||
};
|
||||
},
|
||||
parameters: {
|
||||
|
|
|
|||
|
|
@ -7,13 +7,24 @@ const meta = {
|
|||
component: activity_pv,
|
||||
} satisfies Meta<typeof activity_pv>;
|
||||
export const Default = {
|
||||
render(args, { argTypes }) {
|
||||
render(args) {
|
||||
return {
|
||||
components: {
|
||||
activity_pv,
|
||||
},
|
||||
props: Object.keys(argTypes),
|
||||
template: '<activity_pv v-bind="$props" />',
|
||||
setup() {
|
||||
return {
|
||||
args,
|
||||
};
|
||||
},
|
||||
computed: {
|
||||
props() {
|
||||
return {
|
||||
...args,
|
||||
};
|
||||
},
|
||||
},
|
||||
template: '<activity_pv v-bind="props" />',
|
||||
};
|
||||
},
|
||||
parameters: {
|
||||
|
|
|
|||
|
|
@ -7,13 +7,24 @@ const meta = {
|
|||
component: activity_,
|
||||
} satisfies Meta<typeof activity_>;
|
||||
export const Default = {
|
||||
render(args, { argTypes }) {
|
||||
render(args) {
|
||||
return {
|
||||
components: {
|
||||
activity_,
|
||||
},
|
||||
props: Object.keys(argTypes),
|
||||
template: '<activity_ v-bind="$props" />',
|
||||
setup() {
|
||||
return {
|
||||
args,
|
||||
};
|
||||
},
|
||||
computed: {
|
||||
props() {
|
||||
return {
|
||||
...args,
|
||||
};
|
||||
},
|
||||
},
|
||||
template: '<activity_ v-bind="props" />',
|
||||
};
|
||||
},
|
||||
parameters: {
|
||||
|
|
|
|||
|
|
@ -7,13 +7,24 @@ const meta = {
|
|||
component: clips_,
|
||||
} satisfies Meta<typeof clips_>;
|
||||
export const Default = {
|
||||
render(args, { argTypes }) {
|
||||
render(args) {
|
||||
return {
|
||||
components: {
|
||||
clips_,
|
||||
},
|
||||
props: Object.keys(argTypes),
|
||||
template: '<clips_ v-bind="$props" />',
|
||||
setup() {
|
||||
return {
|
||||
args,
|
||||
};
|
||||
},
|
||||
computed: {
|
||||
props() {
|
||||
return {
|
||||
...args,
|
||||
};
|
||||
},
|
||||
},
|
||||
template: '<clips_ v-bind="props" />',
|
||||
};
|
||||
},
|
||||
parameters: {
|
||||
|
|
|
|||
|
|
@ -7,13 +7,24 @@ const meta = {
|
|||
component: follow_list,
|
||||
} satisfies Meta<typeof follow_list>;
|
||||
export const Default = {
|
||||
render(args, { argTypes }) {
|
||||
render(args) {
|
||||
return {
|
||||
components: {
|
||||
follow_list,
|
||||
},
|
||||
props: Object.keys(argTypes),
|
||||
template: '<follow_list v-bind="$props" />',
|
||||
setup() {
|
||||
return {
|
||||
args,
|
||||
};
|
||||
},
|
||||
computed: {
|
||||
props() {
|
||||
return {
|
||||
...args,
|
||||
};
|
||||
},
|
||||
},
|
||||
template: '<follow_list v-bind="props" />',
|
||||
};
|
||||
},
|
||||
parameters: {
|
||||
|
|
|
|||
|
|
@ -7,13 +7,24 @@ const meta = {
|
|||
component: followers_,
|
||||
} satisfies Meta<typeof followers_>;
|
||||
export const Default = {
|
||||
render(args, { argTypes }) {
|
||||
render(args) {
|
||||
return {
|
||||
components: {
|
||||
followers_,
|
||||
},
|
||||
props: Object.keys(argTypes),
|
||||
template: '<followers_ v-bind="$props" />',
|
||||
setup() {
|
||||
return {
|
||||
args,
|
||||
};
|
||||
},
|
||||
computed: {
|
||||
props() {
|
||||
return {
|
||||
...args,
|
||||
};
|
||||
},
|
||||
},
|
||||
template: '<followers_ v-bind="props" />',
|
||||
};
|
||||
},
|
||||
parameters: {
|
||||
|
|
|
|||
|
|
@ -7,13 +7,24 @@ const meta = {
|
|||
component: following_,
|
||||
} satisfies Meta<typeof following_>;
|
||||
export const Default = {
|
||||
render(args, { argTypes }) {
|
||||
render(args) {
|
||||
return {
|
||||
components: {
|
||||
following_,
|
||||
},
|
||||
props: Object.keys(argTypes),
|
||||
template: '<following_ v-bind="$props" />',
|
||||
setup() {
|
||||
return {
|
||||
args,
|
||||
};
|
||||
},
|
||||
computed: {
|
||||
props() {
|
||||
return {
|
||||
...args,
|
||||
};
|
||||
},
|
||||
},
|
||||
template: '<following_ v-bind="props" />',
|
||||
};
|
||||
},
|
||||
parameters: {
|
||||
|
|
|
|||
|
|
@ -7,13 +7,24 @@ const meta = {
|
|||
component: gallery_,
|
||||
} satisfies Meta<typeof gallery_>;
|
||||
export const Default = {
|
||||
render(args, { argTypes }) {
|
||||
render(args) {
|
||||
return {
|
||||
components: {
|
||||
gallery_,
|
||||
},
|
||||
props: Object.keys(argTypes),
|
||||
template: '<gallery_ v-bind="$props" />',
|
||||
setup() {
|
||||
return {
|
||||
args,
|
||||
};
|
||||
},
|
||||
computed: {
|
||||
props() {
|
||||
return {
|
||||
...args,
|
||||
};
|
||||
},
|
||||
},
|
||||
template: '<gallery_ v-bind="props" />',
|
||||
};
|
||||
},
|
||||
parameters: {
|
||||
|
|
|
|||
|
|
@ -7,13 +7,24 @@ const meta = {
|
|||
component: home_,
|
||||
} satisfies Meta<typeof home_>;
|
||||
export const Default = {
|
||||
render(args, { argTypes }) {
|
||||
render(args) {
|
||||
return {
|
||||
components: {
|
||||
home_,
|
||||
},
|
||||
props: Object.keys(argTypes),
|
||||
template: '<home_ v-bind="$props" />',
|
||||
setup() {
|
||||
return {
|
||||
args,
|
||||
};
|
||||
},
|
||||
computed: {
|
||||
props() {
|
||||
return {
|
||||
...args,
|
||||
};
|
||||
},
|
||||
},
|
||||
template: '<home_ v-bind="props" />',
|
||||
};
|
||||
},
|
||||
parameters: {
|
||||
|
|
|
|||
|
|
@ -7,13 +7,24 @@ const meta = {
|
|||
component: index_activity,
|
||||
} satisfies Meta<typeof index_activity>;
|
||||
export const Default = {
|
||||
render(args, { argTypes }) {
|
||||
render(args) {
|
||||
return {
|
||||
components: {
|
||||
index_activity,
|
||||
},
|
||||
props: Object.keys(argTypes),
|
||||
template: '<index_activity v-bind="$props" />',
|
||||
setup() {
|
||||
return {
|
||||
args,
|
||||
};
|
||||
},
|
||||
computed: {
|
||||
props() {
|
||||
return {
|
||||
...args,
|
||||
};
|
||||
},
|
||||
},
|
||||
template: '<index_activity v-bind="props" />',
|
||||
};
|
||||
},
|
||||
parameters: {
|
||||
|
|
|
|||
|
|
@ -7,13 +7,24 @@ const meta = {
|
|||
component: index_photos,
|
||||
} satisfies Meta<typeof index_photos>;
|
||||
export const Default = {
|
||||
render(args, { argTypes }) {
|
||||
render(args) {
|
||||
return {
|
||||
components: {
|
||||
index_photos,
|
||||
},
|
||||
props: Object.keys(argTypes),
|
||||
template: '<index_photos v-bind="$props" />',
|
||||
setup() {
|
||||
return {
|
||||
args,
|
||||
};
|
||||
},
|
||||
computed: {
|
||||
props() {
|
||||
return {
|
||||
...args,
|
||||
};
|
||||
},
|
||||
},
|
||||
template: '<index_photos v-bind="props" />',
|
||||
};
|
||||
},
|
||||
parameters: {
|
||||
|
|
|
|||
|
|
@ -7,13 +7,24 @@ const meta = {
|
|||
component: index_,
|
||||
} satisfies Meta<typeof index_>;
|
||||
export const Default = {
|
||||
render(args, { argTypes }) {
|
||||
render(args) {
|
||||
return {
|
||||
components: {
|
||||
index_,
|
||||
},
|
||||
props: Object.keys(argTypes),
|
||||
template: '<index_ v-bind="$props" />',
|
||||
setup() {
|
||||
return {
|
||||
args,
|
||||
};
|
||||
},
|
||||
computed: {
|
||||
props() {
|
||||
return {
|
||||
...args,
|
||||
};
|
||||
},
|
||||
},
|
||||
template: '<index_ v-bind="props" />',
|
||||
};
|
||||
},
|
||||
parameters: {
|
||||
|
|
|
|||
|
|
@ -7,13 +7,24 @@ const meta = {
|
|||
component: index_timeline,
|
||||
} satisfies Meta<typeof index_timeline>;
|
||||
export const Default = {
|
||||
render(args, { argTypes }) {
|
||||
render(args) {
|
||||
return {
|
||||
components: {
|
||||
index_timeline,
|
||||
},
|
||||
props: Object.keys(argTypes),
|
||||
template: '<index_timeline v-bind="$props" />',
|
||||
setup() {
|
||||
return {
|
||||
args,
|
||||
};
|
||||
},
|
||||
computed: {
|
||||
props() {
|
||||
return {
|
||||
...args,
|
||||
};
|
||||
},
|
||||
},
|
||||
template: '<index_timeline v-bind="props" />',
|
||||
};
|
||||
},
|
||||
parameters: {
|
||||
|
|
|
|||
|
|
@ -7,13 +7,24 @@ const meta = {
|
|||
component: pages_,
|
||||
} satisfies Meta<typeof pages_>;
|
||||
export const Default = {
|
||||
render(args, { argTypes }) {
|
||||
render(args) {
|
||||
return {
|
||||
components: {
|
||||
pages_,
|
||||
},
|
||||
props: Object.keys(argTypes),
|
||||
template: '<pages_ v-bind="$props" />',
|
||||
setup() {
|
||||
return {
|
||||
args,
|
||||
};
|
||||
},
|
||||
computed: {
|
||||
props() {
|
||||
return {
|
||||
...args,
|
||||
};
|
||||
},
|
||||
},
|
||||
template: '<pages_ v-bind="props" />',
|
||||
};
|
||||
},
|
||||
parameters: {
|
||||
|
|
|
|||
|
|
@ -7,13 +7,24 @@ const meta = {
|
|||
component: reactions_,
|
||||
} satisfies Meta<typeof reactions_>;
|
||||
export const Default = {
|
||||
render(args, { argTypes }) {
|
||||
render(args) {
|
||||
return {
|
||||
components: {
|
||||
reactions_,
|
||||
},
|
||||
props: Object.keys(argTypes),
|
||||
template: '<reactions_ v-bind="$props" />',
|
||||
setup() {
|
||||
return {
|
||||
args,
|
||||
};
|
||||
},
|
||||
computed: {
|
||||
props() {
|
||||
return {
|
||||
...args,
|
||||
};
|
||||
},
|
||||
},
|
||||
template: '<reactions_ v-bind="props" />',
|
||||
};
|
||||
},
|
||||
parameters: {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue