From 16a3c51bc0484fea46ec7efbf35ce403050bca8a Mon Sep 17 00:00:00 2001 From: Mads Rasmussen Date: Wed, 8 Mar 2023 19:45:35 +0100 Subject: [PATCH] move section picker files --- .../shared/components/input-list-base/input-list-base.ts | 2 +- .../modals/section-picker}/picker-layout-section.element.ts | 2 +- .../shared/modals/section-picker}/picker-layout-section.test.ts | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename src/Umbraco.Web.UI.Client/{libs/modal/layouts/picker-section => src/backoffice/shared/modals/section-picker}/picker-layout-section.element.ts (96%) rename src/Umbraco.Web.UI.Client/{libs/modal/layouts/picker-section => src/backoffice/shared/modals/section-picker}/picker-layout-section.test.ts (100%) diff --git a/src/Umbraco.Web.UI.Client/src/backoffice/shared/components/input-list-base/input-list-base.ts b/src/Umbraco.Web.UI.Client/src/backoffice/shared/components/input-list-base/input-list-base.ts index 158c645f5b..f478539895 100644 --- a/src/Umbraco.Web.UI.Client/src/backoffice/shared/components/input-list-base/input-list-base.ts +++ b/src/Umbraco.Web.UI.Client/src/backoffice/shared/components/input-list-base/input-list-base.ts @@ -5,7 +5,7 @@ import { UmbPickerModalData } from '../../../../../libs/modal/layouts/modal-layo import { UmbModalContext, UmbModalType, UMB_MODAL_CONTEXT_TOKEN } from '../../../../../libs/modal'; //TODO: These should probably be imported dynamically. -import '../../../../../libs/modal/layouts/picker-section/picker-layout-section.element'; +import '../../modals/section-picker/picker-layout-section.element'; import '../../../../../libs/modal/layouts/picker-user-group/picker-layout-user-group.element'; import '../../../../../libs/modal/layouts/picker-user/picker-layout-user.element'; import { UmbLitElement } from '@umbraco-cms/element'; diff --git a/src/Umbraco.Web.UI.Client/libs/modal/layouts/picker-section/picker-layout-section.element.ts b/src/Umbraco.Web.UI.Client/src/backoffice/shared/modals/section-picker/picker-layout-section.element.ts similarity index 96% rename from src/Umbraco.Web.UI.Client/libs/modal/layouts/picker-section/picker-layout-section.element.ts rename to src/Umbraco.Web.UI.Client/src/backoffice/shared/modals/section-picker/picker-layout-section.element.ts index ff0470d6c7..336235f581 100644 --- a/src/Umbraco.Web.UI.Client/libs/modal/layouts/picker-section/picker-layout-section.element.ts +++ b/src/Umbraco.Web.UI.Client/src/backoffice/shared/modals/section-picker/picker-layout-section.element.ts @@ -1,7 +1,7 @@ import { UUITextStyles } from '@umbraco-ui/uui-css'; import { css, html } from 'lit'; import { customElement, state } from 'lit/decorators.js'; -import { UmbModalLayoutPickerBase } from '../modal-layout-picker-base'; +import { UmbModalLayoutPickerBase } from '../../../../../libs/modal/layouts/modal-layout-picker-base'; import { umbExtensionsRegistry } from '@umbraco-cms/extensions-api'; import type { ManifestSection } from '@umbraco-cms/models'; diff --git a/src/Umbraco.Web.UI.Client/libs/modal/layouts/picker-section/picker-layout-section.test.ts b/src/Umbraco.Web.UI.Client/src/backoffice/shared/modals/section-picker/picker-layout-section.test.ts similarity index 100% rename from src/Umbraco.Web.UI.Client/libs/modal/layouts/picker-section/picker-layout-section.test.ts rename to src/Umbraco.Web.UI.Client/src/backoffice/shared/modals/section-picker/picker-layout-section.test.ts