@shopware-ag/meteor-component-library
Version:
The meteor component library is a Vue component library developed by Shopware. It is based on the [Meteor Design System](https://shopware.design/).
38 lines (32 loc) • 815 B
text/typescript
import meta, { type MtSearchMeta, type MtSearchStory } from "./mt-search.stories";
export default {
...meta,
title: "Components/mt-search/Interaction tests",
tags: ["!autodocs"],
} as MtSearchMeta;
export const VisualTestDefaultSize: MtSearchStory = {
name: "Render the default sized search",
args: {
size: "default",
},
};
export const VisualTestSmallSize: MtSearchStory = {
name: "Render the small sized search",
args: {
size: "small",
},
};
export const VisualTestDefaultSizeDisabled: MtSearchStory = {
name: "Render the default sized search disabled",
args: {
size: "default",
disabled: true,
},
};
export const VisualTestSmallSizeDisabled: MtSearchStory = {
name: "Render the small sized search disabled",
args: {
size: "small",
disabled: true,
},
};