mode help docs token to help mode module

This commit is contained in:
Dan Percic 2021-08-23 18:16:13 +03:00
parent aa6c78967f
commit 7d14fc27fb
4 changed files with 2 additions and 2 deletions

View File

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

View File

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

View File

@ -1,3 +1,4 @@
export * from './tokens';
export * from './help-mode.module';
export * from './help-mode.service';
export * from './help-mode.directive';