fix formatting errors

This commit is contained in:
Jacob Overgaard
2024-07-02 11:38:08 +02:00
parent e7625fdbe1
commit f5378c74c2
6 changed files with 8 additions and 13 deletions

View File

@@ -1,6 +1,6 @@
import type { Meta, StoryObj } from '@storybook/web-components';
import './stack.element.js';
import type { UmbStackElement} from './stack.element.js';
import type { UmbStackElement } from './stack.element.js';
const meta: Meta<UmbStackElement> = {
title: 'Components/Stack',
@@ -12,17 +12,17 @@ export default meta;
type Story = StoryObj<UmbStackElement>;
export const Default: Story = {
args: { },
args: {},
};
export const Divide: Story = {
args: {
divide: true
divide: true,
},
};
export const Compact: Story = {
args: {
look: 'compact'
look: 'compact',
},
};

View File

@@ -9,7 +9,6 @@ const ctrlSymbol = Symbol();
const observeSymbol = Symbol();
export class UmbBindValidationMessageToFormControl extends UmbControllerBase {
#context?: typeof UMB_VALIDATION_CONTEXT.TYPE;
#control: UmbFormControlMixinInterface<unknown>;

View File

@@ -36,7 +36,6 @@ export class UmbDictionaryWorkspaceContext
readonly name = this.#data.asObservablePart((data) => data?.name);
readonly dictionary = this.#data.asObservablePart((data) => data);
constructor(host: UmbControllerHost) {
super(host, 'Umb.Workspace.Dictionary');

View File

@@ -1,2 +1,2 @@
export const UMB_MEDIA_GRID_COLLECTION_VIEW_ALIAS = 'Umb.CollectionView.Media.Grid';
export const UMB_MEDIA_TABLE_COLLECTION_VIEW_ALIAS = 'Umb.CollectionView.Media.Table';
export const UMB_MEDIA_GRID_COLLECTION_VIEW_ALIAS = 'Umb.CollectionView.Media.Grid';
export const UMB_MEDIA_TABLE_COLLECTION_VIEW_ALIAS = 'Umb.CollectionView.Media.Table';

View File

@@ -21,7 +21,7 @@ export class UmbPropertyEditorUIMemberPickerElement extends UmbLitElement implem
this.dispatchEvent(new UmbPropertyValueChangeEvent());
}
override render() {
override render() {
return html` <umb-input-member min="0" max="1" .value=${this.value} @change=${this.#onChange}></umb-input-member> `;
}
}

View File

@@ -1,7 +1,4 @@
import {
UMB_STYLESHEET_ROOT_ENTITY_TYPE,
UMB_STYLESHEET_FOLDER_ENTITY_TYPE,
} from '../../entity.js';
import { UMB_STYLESHEET_ROOT_ENTITY_TYPE, UMB_STYLESHEET_FOLDER_ENTITY_TYPE } from '../../entity.js';
import type { ManifestTypes } from '@umbraco-cms/backoffice/extension-registry';
export const manifests: Array<ManifestTypes> = [