rename files
This commit is contained in:
@@ -6,7 +6,7 @@ import { customElement, property, state } from 'lit/decorators.js';
|
||||
import { UmbDataTypeStore } from '../../../settings/data-types/data-type.store';
|
||||
import type { ContentProperty } from '@umbraco-cms/models';
|
||||
|
||||
import '../property/entity-property.element';
|
||||
import '../property/property.element';
|
||||
import { UmbLitElement } from '@umbraco-cms/element';
|
||||
|
||||
@customElement('umb-content-property')
|
||||
|
||||
@@ -108,12 +108,12 @@ export class UmbPropertyElement extends UmbLitElement {
|
||||
/**
|
||||
* Property Editor UI Alias. Render the Property Editor UI registered for this alias.
|
||||
* @public
|
||||
* @type {string}
|
||||
* @type {object}
|
||||
* @attr
|
||||
* @default ''
|
||||
*/
|
||||
@property({ type: Object, attribute: false })
|
||||
public set value(value: object) {
|
||||
public set value(value: object | string) {
|
||||
this._propertyContext.setValue(value);
|
||||
}
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
import { Meta, Story } from '@storybook/web-components';
|
||||
import { html } from 'lit-html';
|
||||
|
||||
import type { UmbPropertyElement } from './entity-property.element';
|
||||
import './entity-property.element';
|
||||
import type { UmbPropertyElement } from './property.element';
|
||||
import './property.element';
|
||||
|
||||
export default {
|
||||
title: 'Components/Entity Property',
|
||||
@@ -5,7 +5,7 @@ import { UUITextStyles } from '@umbraco-ui/uui-css/lib';
|
||||
import type { PropertyEditorConfigDefaultData, PropertyEditorConfigProperty } from '@umbraco-cms/models';
|
||||
import { umbExtensionsRegistry } from '@umbraco-cms/extensions-registry';
|
||||
|
||||
import '../../../components/property/entity-property.element';
|
||||
import '../../../components/property/property.element';
|
||||
import { UmbLitElement } from '@umbraco-cms/element';
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user