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';