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:
Niels Lyngsø
2024-04-26 13:28:56 +02:00
committed by GitHub
6 changed files with 4 additions and 2 deletions

View File

@@ -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';

View File

@@ -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,