fix formatting errors
This commit is contained in:
@@ -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',
|
||||
},
|
||||
};
|
||||
|
||||
@@ -9,7 +9,6 @@ const ctrlSymbol = Symbol();
|
||||
const observeSymbol = Symbol();
|
||||
|
||||
export class UmbBindValidationMessageToFormControl extends UmbControllerBase {
|
||||
|
||||
#context?: typeof UMB_VALIDATION_CONTEXT.TYPE;
|
||||
|
||||
#control: UmbFormControlMixinInterface<unknown>;
|
||||
|
||||
@@ -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');
|
||||
|
||||
|
||||
@@ -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';
|
||||
|
||||
@@ -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> `;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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> = [
|
||||
|
||||
Reference in New Issue
Block a user