Merge branch 'chore-module-clean-up-take--' into poc/package-modules-v2

This commit is contained in:
Mads Rasmussen
2023-05-17 16:21:12 +02:00
3 changed files with 6 additions and 1 deletions

View File

@@ -10,7 +10,7 @@ import { customElement, property } from 'lit/decorators.js';
import { UmbIconRegistry } from '../../shared/icon-registry/icon.registry';
import type { UmbAppErrorElement } from './app-error.element';
import { UmbAuthFlow } from './auth/auth-flow';
import { UmbAuthFlow } from './auth';
import { UMB_APP, UmbAppContext } from './app.context';
import type { Guard, UmbRoute } from '@umbraco-cms/backoffice/router';
import { pathWithoutBasePath } from '@umbraco-cms/backoffice/router';

View File

@@ -0,0 +1 @@
export * from './auth-flow';

View File

@@ -0,0 +1,4 @@
export * from './app-context-config.interface';
export * from './app-error.element';
export * from './app.context';
export * from './app.element';