Merge pull request #1704 from umbraco/bugfix/make-template-value-field-picker-internal
Only load the umb-field-dropdown-list element locally
This commit is contained in:
@@ -8,7 +8,6 @@ export * from './dropdown/index.js';
|
||||
export * from './entity-actions-bundle/index.js';
|
||||
export * from './extension-slot/index.js';
|
||||
export * from './extension-with-api-slot/index.js';
|
||||
export * from './field-dropdown-list/index.js';
|
||||
export * from './footer-layout/index.js';
|
||||
export * from './header-app/index.js';
|
||||
export * from './history/index.js';
|
||||
|
||||
@@ -3,12 +3,15 @@ import type {
|
||||
UmbTemplatingPageFieldBuilderModalData,
|
||||
UmbTemplatingPageFieldBuilderModalValue,
|
||||
} from './templating-page-field-builder-modal.token.js';
|
||||
import type { UmbFieldDropdownListElement } from './components/field-dropdown-list/index.js';
|
||||
import { UmbTextStyles } from '@umbraco-cms/backoffice/style';
|
||||
import { css, html, customElement, state } from '@umbraco-cms/backoffice/external/lit';
|
||||
import { UmbModalBaseElement } from '@umbraco-cms/backoffice/modal';
|
||||
import type { UmbFieldDropdownListElement } from '@umbraco-cms/backoffice/components';
|
||||
import type { UUIBooleanInputEvent, UUIInputEvent } from '@umbraco-cms/backoffice/external/uui';
|
||||
|
||||
// import of local components
|
||||
import './components/field-dropdown-list/index.js';
|
||||
|
||||
@customElement('umb-templating-page-field-builder-modal')
|
||||
export class UmbTemplatingPageFieldBuilderModalElement extends UmbModalBaseElement<
|
||||
UmbTemplatingPageFieldBuilderModalData,
|
||||
|
||||
Reference in New Issue
Block a user