storybook changes
This commit is contained in:
committed by
Jacob Overgaard
parent
5e599953a2
commit
c33f9852d6
@@ -1,8 +1,8 @@
|
||||
module.exports = {
|
||||
"stories": ["../src/**/*.stories.mdx", "../src/**/*.stories.@(js|jsx|ts|tsx)"],
|
||||
"addons": ["@storybook/addon-links", "@storybook/addon-essentials"],
|
||||
"framework": "@storybook/web-components",
|
||||
"core": {
|
||||
"builder": "@storybook/builder-vite"
|
||||
}
|
||||
};
|
||||
stories: ['../src/**/*.stories.mdx', '../src/**/*.stories.@(js|jsx|ts|tsx)'],
|
||||
addons: ['@storybook/addon-links', '@storybook/addon-essentials'],
|
||||
framework: '@storybook/web-components',
|
||||
core: {
|
||||
builder: '@storybook/builder-vite',
|
||||
},
|
||||
};
|
||||
|
||||
11
src/Umbraco.Web.UI.Client/src/installer/installer.stories.ts
Normal file
11
src/Umbraco.Web.UI.Client/src/installer/installer.stories.ts
Normal file
@@ -0,0 +1,11 @@
|
||||
import { Story, Meta } from '@storybook/web-components';
|
||||
import { html } from 'lit';
|
||||
import './installer.element';
|
||||
|
||||
export default {
|
||||
title: 'Installer/Installer',
|
||||
} as Meta;
|
||||
|
||||
const Template: Story = () => html`<umb-installer></umb-installer>`;
|
||||
|
||||
export const Overview = Template.bind({});
|
||||
11
src/Umbraco.Web.UI.Client/src/upgrader/upgrader.stories.ts
Normal file
11
src/Umbraco.Web.UI.Client/src/upgrader/upgrader.stories.ts
Normal file
@@ -0,0 +1,11 @@
|
||||
import { Story, Meta } from '@storybook/web-components';
|
||||
import { html } from 'lit';
|
||||
import './upgrader.element';
|
||||
|
||||
export default {
|
||||
title: 'Upgrader/Upgrader',
|
||||
} as Meta;
|
||||
|
||||
const Template: Story = () => html`<umb-upgrader></umb-upgrader>`;
|
||||
|
||||
export const Overview = Template.bind({});
|
||||
Reference in New Issue
Block a user