Skip to content

Commit

Permalink
fix(elements): fix public api for apps without IVY
Browse files Browse the repository at this point in the history
  • Loading branch information
tomastrajan committed Feb 21, 2020
1 parent f6909fe commit cb201b0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 11 deletions.
12 changes: 1 addition & 11 deletions projects/elements/src/lib/lazy-elements/lazy-elements.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,19 +17,9 @@ import {
import {
LAZY_ELEMENT_ROOT_OPTIONS,
LAZY_ELEMENT_CONFIGS,
LAZY_ELEMENT_ROOT_GUARD,
LAZY_ELEMENTS_REGISTRY,
LazyElementsRegistry
LAZY_ELEMENT_ROOT_GUARD
} from './lazy-elements.tokens';

export {
LAZY_ELEMENTS_REGISTRY,
LazyElementsRegistry,
LazyElementDirective,
LazyElementsLoaderService,
LazyElementDynamicDirective
};

export function createLazyElementRootGuard(options: LazyElementModuleOptions) {
if (options) {
throw new TypeError(
Expand Down
4 changes: 4 additions & 0 deletions projects/elements/src/public_api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,7 @@
*/

export * from './lib/lazy-elements/lazy-elements.module';
export * from './lib/lazy-elements/lazy-elements.tokens';
export * from './lib/lazy-elements/lazy-elements-loader.service';
export * from './lib/lazy-elements/lazy-element/lazy-element.directive';
export * from './lib/lazy-elements/lazy-element-dynamic/lazy-element-dynamic.directive';

0 comments on commit cb201b0

Please sign in to comment.