fix storybook build

This commit is contained in:
Jacob Overgaard
2024-01-18 10:11:35 +01:00
parent ff36445fb2
commit 29f3ba02c9

View File

@@ -1,15 +1,19 @@
import { Meta, Story } from '@storybook/web-components';
import { Meta, StoryObj } from '@storybook/web-components';
import type { UmbPropertyEditorUIBlockGridGroupConfigurationElement } from './property-editor-ui-block-type-group-configuration.element.js';
import { html } from '@umbraco-cms/backoffice/external/lit';
import './property-editor-ui-block-grid-group-configuration.element.js';
import './property-editor-ui-block-type-group-configuration.element.js';
export default {
const meta: Meta<UmbPropertyEditorUIBlockGridGroupConfigurationElement> = {
title: 'Property Editor UIs/Block Grid Group Configuration',
component: 'umb-property-editor-ui-block-type-group-configuration',
id: 'umb-property-editor-ui-block-type-group-configuration',
} as Meta;
};
export const AAAOverview: Story<UmbPropertyEditorUIBlockGridGroupConfigurationElement> = () =>
html`<umb-property-editor-ui-block-type-group-configuration></umb-property-editor-ui-block-type-group-configuration>`;
AAAOverview.storyName = 'Overview';
export default meta;
type Story = StoryObj<typeof UmbPropertyEditorUIBlockGridGroupConfigurationElement>;
export const Overview: Story = {
render: () =>
html`<umb-property-editor-ui-block-type-group-configuration></umb-property-editor-ui-block-type-group-configuration>`,
};