From 4021f7c170f2253119103a7dc9858ca4da4766d2 Mon Sep 17 00:00:00 2001 From: Mads Rasmussen Date: Tue, 23 Apr 2024 13:14:20 +0200 Subject: [PATCH] move slider --- .../src/packages/core/property-editor/uis/manifests.ts | 2 +- .../uis => property-editors}/slider/manifests.ts | 0 .../slider/property-editor-ui-slider.element.ts | 2 +- .../slider/property-editor-ui-slider.stories.ts | 0 .../slider/property-editor-ui-slider.test.ts | 0 5 files changed, 2 insertions(+), 2 deletions(-) rename src/Umbraco.Web.UI.Client/src/packages/{core/property-editor/uis => property-editors}/slider/manifests.ts (100%) rename src/Umbraco.Web.UI.Client/src/packages/{core/property-editor/uis => property-editors}/slider/property-editor-ui-slider.element.ts (95%) rename src/Umbraco.Web.UI.Client/src/packages/{core/property-editor/uis => property-editors}/slider/property-editor-ui-slider.stories.ts (100%) rename src/Umbraco.Web.UI.Client/src/packages/{core/property-editor/uis => property-editors}/slider/property-editor-ui-slider.test.ts (100%) diff --git a/src/Umbraco.Web.UI.Client/src/packages/core/property-editor/uis/manifests.ts b/src/Umbraco.Web.UI.Client/src/packages/core/property-editor/uis/manifests.ts index 9115520c0b..7a14a36780 100644 --- a/src/Umbraco.Web.UI.Client/src/packages/core/property-editor/uis/manifests.ts +++ b/src/Umbraco.Web.UI.Client/src/packages/core/property-editor/uis/manifests.ts @@ -13,7 +13,7 @@ import { manifest as orderDirection } from '../../../property-editors/order-dire import { manifest as overlaySize } from '../../../property-editors/overlay-size/manifests.js'; import { manifest as radioButtonList } from '../../../property-editors/radio-button-list/manifests.js'; import { manifest as select } from '../../../property-editors/select/manifests.js'; -import { manifest as slider } from './slider/manifests.js'; +import { manifest as slider } from '../../../property-editors/slider/manifests.js'; import { manifest as textArea } from './textarea/manifests.js'; import { manifest as toggle } from './toggle/manifests.js'; import { manifest as uploadField } from './upload-field/manifests.js'; diff --git a/src/Umbraco.Web.UI.Client/src/packages/core/property-editor/uis/slider/manifests.ts b/src/Umbraco.Web.UI.Client/src/packages/property-editors/slider/manifests.ts similarity index 100% rename from src/Umbraco.Web.UI.Client/src/packages/core/property-editor/uis/slider/manifests.ts rename to src/Umbraco.Web.UI.Client/src/packages/property-editors/slider/manifests.ts diff --git a/src/Umbraco.Web.UI.Client/src/packages/core/property-editor/uis/slider/property-editor-ui-slider.element.ts b/src/Umbraco.Web.UI.Client/src/packages/property-editors/slider/property-editor-ui-slider.element.ts similarity index 95% rename from src/Umbraco.Web.UI.Client/src/packages/core/property-editor/uis/slider/property-editor-ui-slider.element.ts rename to src/Umbraco.Web.UI.Client/src/packages/property-editors/slider/property-editor-ui-slider.element.ts index af2b70ea0a..7202a0e904 100644 --- a/src/Umbraco.Web.UI.Client/src/packages/core/property-editor/uis/slider/property-editor-ui-slider.element.ts +++ b/src/Umbraco.Web.UI.Client/src/packages/property-editors/slider/property-editor-ui-slider.element.ts @@ -1,4 +1,4 @@ -import type { UmbInputSliderElement } from '../../../components/input-slider/input-slider.element.js'; +import type { UmbInputSliderElement } from '../../core/components/input-slider/input-slider.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'; diff --git a/src/Umbraco.Web.UI.Client/src/packages/core/property-editor/uis/slider/property-editor-ui-slider.stories.ts b/src/Umbraco.Web.UI.Client/src/packages/property-editors/slider/property-editor-ui-slider.stories.ts similarity index 100% rename from src/Umbraco.Web.UI.Client/src/packages/core/property-editor/uis/slider/property-editor-ui-slider.stories.ts rename to src/Umbraco.Web.UI.Client/src/packages/property-editors/slider/property-editor-ui-slider.stories.ts diff --git a/src/Umbraco.Web.UI.Client/src/packages/core/property-editor/uis/slider/property-editor-ui-slider.test.ts b/src/Umbraco.Web.UI.Client/src/packages/property-editors/slider/property-editor-ui-slider.test.ts similarity index 100% rename from src/Umbraco.Web.UI.Client/src/packages/core/property-editor/uis/slider/property-editor-ui-slider.test.ts rename to src/Umbraco.Web.UI.Client/src/packages/property-editors/slider/property-editor-ui-slider.test.ts