From bd40c7f45f6313000962ccd4f1440254d2798d3f Mon Sep 17 00:00:00 2001 From: Mads Rasmussen Date: Wed, 26 Jun 2024 13:09:41 +0200 Subject: [PATCH] rename to folder global components --- .../workspace/workspace-package-builder.element.ts | 2 +- .../templates/{components => global-components}/index.ts | 0 .../input-template/input-template.context.ts | 0 .../input-template/input-template.element.ts | 0 .../template-card/template-card.element.ts | 0 .../template-card/template-card.stories.ts | 0 .../src/packages/templating/templates/index.ts | 4 ++-- 7 files changed, 3 insertions(+), 3 deletions(-) rename src/Umbraco.Web.UI.Client/src/packages/templating/templates/{components => global-components}/index.ts (100%) rename src/Umbraco.Web.UI.Client/src/packages/templating/templates/{components => global-components}/input-template/input-template.context.ts (100%) rename src/Umbraco.Web.UI.Client/src/packages/templating/templates/{components => global-components}/input-template/input-template.element.ts (100%) rename src/Umbraco.Web.UI.Client/src/packages/templating/templates/{components => global-components}/template-card/template-card.element.ts (100%) rename src/Umbraco.Web.UI.Client/src/packages/templating/templates/{components => global-components}/template-card/template-card.stories.ts (100%) diff --git a/src/Umbraco.Web.UI.Client/src/packages/packages/package-builder/workspace/workspace-package-builder.element.ts b/src/Umbraco.Web.UI.Client/src/packages/packages/package-builder/workspace/workspace-package-builder.element.ts index bab1fb0afa..0769aec30e 100644 --- a/src/Umbraco.Web.UI.Client/src/packages/packages/package-builder/workspace/workspace-package-builder.element.ts +++ b/src/Umbraco.Web.UI.Client/src/packages/packages/package-builder/workspace/workspace-package-builder.element.ts @@ -3,7 +3,7 @@ import { UmbPackageRepository } from '../../package/repository/index.js'; import { UmbPartialViewPickerContext } from '../../../templating/partial-views/components/input-partial-view/input-partial-view.context.js'; import { UmbScriptPickerContext } from '../../../templating/scripts/components/input-script/input-script.context.js'; import { UmbStylesheetPickerContext } from '../../../templating/stylesheets/components/stylesheet-input/stylesheet-input.context.js'; -import { UmbTemplatePickerContext } from '../../../templating/templates/components/input-template/input-template.context.js'; +import { UmbTemplatePickerContext } from '../../../templating/templates/global-components/input-template/input-template.context.js'; import type { UmbCreatedPackageDefinition } from '../../types.js'; import type { UmbDataTypeInputElement } from '../../../data-type/components/data-type-input/data-type-input.element.js'; import type { UmbInputLanguageElement } from '../../../language/components/input-language/input-language.element.js'; diff --git a/src/Umbraco.Web.UI.Client/src/packages/templating/templates/components/index.ts b/src/Umbraco.Web.UI.Client/src/packages/templating/templates/global-components/index.ts similarity index 100% rename from src/Umbraco.Web.UI.Client/src/packages/templating/templates/components/index.ts rename to src/Umbraco.Web.UI.Client/src/packages/templating/templates/global-components/index.ts diff --git a/src/Umbraco.Web.UI.Client/src/packages/templating/templates/components/input-template/input-template.context.ts b/src/Umbraco.Web.UI.Client/src/packages/templating/templates/global-components/input-template/input-template.context.ts similarity index 100% rename from src/Umbraco.Web.UI.Client/src/packages/templating/templates/components/input-template/input-template.context.ts rename to src/Umbraco.Web.UI.Client/src/packages/templating/templates/global-components/input-template/input-template.context.ts diff --git a/src/Umbraco.Web.UI.Client/src/packages/templating/templates/components/input-template/input-template.element.ts b/src/Umbraco.Web.UI.Client/src/packages/templating/templates/global-components/input-template/input-template.element.ts similarity index 100% rename from src/Umbraco.Web.UI.Client/src/packages/templating/templates/components/input-template/input-template.element.ts rename to src/Umbraco.Web.UI.Client/src/packages/templating/templates/global-components/input-template/input-template.element.ts diff --git a/src/Umbraco.Web.UI.Client/src/packages/templating/templates/components/template-card/template-card.element.ts b/src/Umbraco.Web.UI.Client/src/packages/templating/templates/global-components/template-card/template-card.element.ts similarity index 100% rename from src/Umbraco.Web.UI.Client/src/packages/templating/templates/components/template-card/template-card.element.ts rename to src/Umbraco.Web.UI.Client/src/packages/templating/templates/global-components/template-card/template-card.element.ts diff --git a/src/Umbraco.Web.UI.Client/src/packages/templating/templates/components/template-card/template-card.stories.ts b/src/Umbraco.Web.UI.Client/src/packages/templating/templates/global-components/template-card/template-card.stories.ts similarity index 100% rename from src/Umbraco.Web.UI.Client/src/packages/templating/templates/components/template-card/template-card.stories.ts rename to src/Umbraco.Web.UI.Client/src/packages/templating/templates/global-components/template-card/template-card.stories.ts diff --git a/src/Umbraco.Web.UI.Client/src/packages/templating/templates/index.ts b/src/Umbraco.Web.UI.Client/src/packages/templating/templates/index.ts index f8e3d79c45..392b743cee 100644 --- a/src/Umbraco.Web.UI.Client/src/packages/templating/templates/index.ts +++ b/src/Umbraco.Web.UI.Client/src/packages/templating/templates/index.ts @@ -1,6 +1,6 @@ -import './components/index.js'; +import './global-components/index.js'; -export * from './components/index.js'; +export * from './global-components/index.js'; export * from './entity.js'; export * from './modals/index.js'; export * from './repository/index.js';