From 809f93b1accf1960d13cbe21ed80779538dc005d Mon Sep 17 00:00:00 2001 From: Mads Rasmussen Date: Wed, 26 Jun 2024 14:19:15 +0200 Subject: [PATCH] export picker context --- .../src/packages/dictionary/components/index.ts | 1 + .../src/packages/dictionary/components/input-dictionary/index.ts | 1 + src/Umbraco.Web.UI.Client/src/packages/dictionary/index.ts | 1 + 3 files changed, 3 insertions(+) create mode 100644 src/Umbraco.Web.UI.Client/src/packages/dictionary/components/index.ts create mode 100644 src/Umbraco.Web.UI.Client/src/packages/dictionary/components/input-dictionary/index.ts diff --git a/src/Umbraco.Web.UI.Client/src/packages/dictionary/components/index.ts b/src/Umbraco.Web.UI.Client/src/packages/dictionary/components/index.ts new file mode 100644 index 0000000000..4d001c14e0 --- /dev/null +++ b/src/Umbraco.Web.UI.Client/src/packages/dictionary/components/index.ts @@ -0,0 +1 @@ +export * from './input-dictionary/index.js'; diff --git a/src/Umbraco.Web.UI.Client/src/packages/dictionary/components/input-dictionary/index.ts b/src/Umbraco.Web.UI.Client/src/packages/dictionary/components/input-dictionary/index.ts new file mode 100644 index 0000000000..7773cb1976 --- /dev/null +++ b/src/Umbraco.Web.UI.Client/src/packages/dictionary/components/input-dictionary/index.ts @@ -0,0 +1 @@ +export * from './input-dictionary.context.js'; diff --git a/src/Umbraco.Web.UI.Client/src/packages/dictionary/index.ts b/src/Umbraco.Web.UI.Client/src/packages/dictionary/index.ts index 9f3f449804..5c7b94903c 100644 --- a/src/Umbraco.Web.UI.Client/src/packages/dictionary/index.ts +++ b/src/Umbraco.Web.UI.Client/src/packages/dictionary/index.ts @@ -2,3 +2,4 @@ export * from './repository/index.js'; export * from './tree/index.js'; export * from './modals/dictionary-picker-modal.token.js'; export * from './entity.js'; +export * from './components/index.js';