From bb1edc00bdd47d7ee77ea71734ea4d98aede94f5 Mon Sep 17 00:00:00 2001 From: Mads Rasmussen Date: Tue, 23 Apr 2024 14:06:29 +0200 Subject: [PATCH] move into components mappe --- .../property-editors/checkbox-list/{ => components}/index.ts | 0 .../{ => components}/input-checkbox-list/index.ts | 0 .../input-checkbox-list/input-checkbox-list.element.ts | 0 .../input-checkbox-list/input-checkbox-list.stories.ts | 0 .../checkbox-list/property-editor-ui-checkbox-list.element.ts | 4 ++-- .../src/packages/property-editors/index.ts | 2 +- 6 files changed, 3 insertions(+), 3 deletions(-) rename src/Umbraco.Web.UI.Client/src/packages/property-editors/checkbox-list/{ => components}/index.ts (100%) rename src/Umbraco.Web.UI.Client/src/packages/property-editors/checkbox-list/{ => components}/input-checkbox-list/index.ts (100%) rename src/Umbraco.Web.UI.Client/src/packages/property-editors/checkbox-list/{ => components}/input-checkbox-list/input-checkbox-list.element.ts (100%) rename src/Umbraco.Web.UI.Client/src/packages/property-editors/checkbox-list/{ => components}/input-checkbox-list/input-checkbox-list.stories.ts (100%) diff --git a/src/Umbraco.Web.UI.Client/src/packages/property-editors/checkbox-list/index.ts b/src/Umbraco.Web.UI.Client/src/packages/property-editors/checkbox-list/components/index.ts similarity index 100% rename from src/Umbraco.Web.UI.Client/src/packages/property-editors/checkbox-list/index.ts rename to src/Umbraco.Web.UI.Client/src/packages/property-editors/checkbox-list/components/index.ts diff --git a/src/Umbraco.Web.UI.Client/src/packages/property-editors/checkbox-list/input-checkbox-list/index.ts b/src/Umbraco.Web.UI.Client/src/packages/property-editors/checkbox-list/components/input-checkbox-list/index.ts similarity index 100% rename from src/Umbraco.Web.UI.Client/src/packages/property-editors/checkbox-list/input-checkbox-list/index.ts rename to src/Umbraco.Web.UI.Client/src/packages/property-editors/checkbox-list/components/input-checkbox-list/index.ts diff --git a/src/Umbraco.Web.UI.Client/src/packages/property-editors/checkbox-list/input-checkbox-list/input-checkbox-list.element.ts b/src/Umbraco.Web.UI.Client/src/packages/property-editors/checkbox-list/components/input-checkbox-list/input-checkbox-list.element.ts similarity index 100% rename from src/Umbraco.Web.UI.Client/src/packages/property-editors/checkbox-list/input-checkbox-list/input-checkbox-list.element.ts rename to src/Umbraco.Web.UI.Client/src/packages/property-editors/checkbox-list/components/input-checkbox-list/input-checkbox-list.element.ts diff --git a/src/Umbraco.Web.UI.Client/src/packages/property-editors/checkbox-list/input-checkbox-list/input-checkbox-list.stories.ts b/src/Umbraco.Web.UI.Client/src/packages/property-editors/checkbox-list/components/input-checkbox-list/input-checkbox-list.stories.ts similarity index 100% rename from src/Umbraco.Web.UI.Client/src/packages/property-editors/checkbox-list/input-checkbox-list/input-checkbox-list.stories.ts rename to src/Umbraco.Web.UI.Client/src/packages/property-editors/checkbox-list/components/input-checkbox-list/input-checkbox-list.stories.ts diff --git a/src/Umbraco.Web.UI.Client/src/packages/property-editors/checkbox-list/property-editor-ui-checkbox-list.element.ts b/src/Umbraco.Web.UI.Client/src/packages/property-editors/checkbox-list/property-editor-ui-checkbox-list.element.ts index 7f78f66b71..1341fde46e 100644 --- a/src/Umbraco.Web.UI.Client/src/packages/property-editors/checkbox-list/property-editor-ui-checkbox-list.element.ts +++ b/src/Umbraco.Web.UI.Client/src/packages/property-editors/checkbox-list/property-editor-ui-checkbox-list.element.ts @@ -1,11 +1,11 @@ -import type { UmbInputCheckboxListElement } from './input-checkbox-list/input-checkbox-list.element.js'; +import type { UmbInputCheckboxListElement } from './components/input-checkbox-list/input-checkbox-list.element.js'; import { html, customElement, property, state } from '@umbraco-cms/backoffice/external/lit'; import { UmbLitElement } from '@umbraco-cms/backoffice/lit-element'; import { UmbPropertyValueChangeEvent } from '@umbraco-cms/backoffice/property-editor'; import type { UmbPropertyEditorConfigCollection } from '@umbraco-cms/backoffice/property-editor'; import type { UmbPropertyEditorUiElement } from '@umbraco-cms/backoffice/extension-registry'; -import './input-checkbox-list/input-checkbox-list.element.js'; +import './components/input-checkbox-list/input-checkbox-list.element.js'; /** * @element umb-property-editor-ui-checkbox-list diff --git a/src/Umbraco.Web.UI.Client/src/packages/property-editors/index.ts b/src/Umbraco.Web.UI.Client/src/packages/property-editors/index.ts index b1996fc859..b0f0268059 100644 --- a/src/Umbraco.Web.UI.Client/src/packages/property-editors/index.ts +++ b/src/Umbraco.Web.UI.Client/src/packages/property-editors/index.ts @@ -1 +1 @@ -export * from './checkbox-list/index.js'; +export * from './checkbox-list/components/index.js';