From 7d14fc27fba7cca319f0552ade4ffe0d8cd08866 Mon Sep 17 00:00:00 2001 From: Dan Percic Date: Mon, 23 Aug 2021 18:16:13 +0300 Subject: [PATCH] mode help docs token to help mode module --- src/index.ts | 1 - src/lib/help-mode/help-mode.service.ts | 2 +- src/lib/help-mode/index.ts | 1 + src/lib/{utils/injection-tokens.ts => help-mode/tokens.ts} | 0 4 files changed, 2 insertions(+), 2 deletions(-) rename src/lib/{utils/injection-tokens.ts => help-mode/tokens.ts} (100%) diff --git a/src/index.ts b/src/index.ts index c1f780c..bca8310 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,5 +1,4 @@ export * from './lib/common-ui.module'; -export * from './lib/utils/injection-tokens'; export * from './lib/utils/functions'; export * from './lib/utils/operators'; export * from './lib/utils/auto-unsubscribe.directive'; diff --git a/src/lib/help-mode/help-mode.service.ts b/src/lib/help-mode/help-mode.service.ts index 0ddbebd..3dcb8ee 100644 --- a/src/lib/help-mode/help-mode.service.ts +++ b/src/lib/help-mode/help-mode.service.ts @@ -3,7 +3,7 @@ import { MatDialog, MatDialogRef } from '@angular/material/dialog'; import { TranslateService } from '@ngx-translate/core'; import { BehaviorSubject } from 'rxjs'; import { HelpModeDialogComponent } from './help-mode-dialog/help-mode-dialog.component'; -import { HELP_DOCS } from '../utils/injection-tokens'; +import { HELP_DOCS } from './tokens'; interface Helper { readonly element: HTMLElement; diff --git a/src/lib/help-mode/index.ts b/src/lib/help-mode/index.ts index 4188d4b..cda1a99 100644 --- a/src/lib/help-mode/index.ts +++ b/src/lib/help-mode/index.ts @@ -1,3 +1,4 @@ +export * from './tokens'; export * from './help-mode.module'; export * from './help-mode.service'; export * from './help-mode.directive'; diff --git a/src/lib/utils/injection-tokens.ts b/src/lib/help-mode/tokens.ts similarity index 100% rename from src/lib/utils/injection-tokens.ts rename to src/lib/help-mode/tokens.ts