From d0a372ffae79d3ea2724479ef38411dfc2c9c5e3 Mon Sep 17 00:00:00 2001 From: Mads Rasmussen Date: Wed, 26 Jun 2024 13:14:02 +0200 Subject: [PATCH] rename to global components --- .../src/packages/templating/scripts/global-components/index.ts | 1 + .../templating/scripts/global-components/input-script/index.ts | 1 + .../input-script/input-script.context.ts | 0 3 files changed, 2 insertions(+) create mode 100644 src/Umbraco.Web.UI.Client/src/packages/templating/scripts/global-components/index.ts create mode 100644 src/Umbraco.Web.UI.Client/src/packages/templating/scripts/global-components/input-script/index.ts rename src/Umbraco.Web.UI.Client/src/packages/templating/scripts/{components => global-components}/input-script/input-script.context.ts (100%) diff --git a/src/Umbraco.Web.UI.Client/src/packages/templating/scripts/global-components/index.ts b/src/Umbraco.Web.UI.Client/src/packages/templating/scripts/global-components/index.ts new file mode 100644 index 0000000000..f89344b5c7 --- /dev/null +++ b/src/Umbraco.Web.UI.Client/src/packages/templating/scripts/global-components/index.ts @@ -0,0 +1 @@ +export * from './input-script/index.js'; diff --git a/src/Umbraco.Web.UI.Client/src/packages/templating/scripts/global-components/input-script/index.ts b/src/Umbraco.Web.UI.Client/src/packages/templating/scripts/global-components/input-script/index.ts new file mode 100644 index 0000000000..131eea34e1 --- /dev/null +++ b/src/Umbraco.Web.UI.Client/src/packages/templating/scripts/global-components/input-script/index.ts @@ -0,0 +1 @@ +export * from './input-script.context.js'; diff --git a/src/Umbraco.Web.UI.Client/src/packages/templating/scripts/components/input-script/input-script.context.ts b/src/Umbraco.Web.UI.Client/src/packages/templating/scripts/global-components/input-script/input-script.context.ts similarity index 100% rename from src/Umbraco.Web.UI.Client/src/packages/templating/scripts/components/input-script/input-script.context.ts rename to src/Umbraco.Web.UI.Client/src/packages/templating/scripts/global-components/input-script/input-script.context.ts