dependencies Legend  Declarations  Module  Bootstrap  Providers  Exports cluster_TypeaheadModule cluster_TypeaheadModule_declarations cluster_TypeaheadModule_TypeaheadCellControlValueAccessor_providers cluster_TypeaheadModule_exports TypeaheadCellControlValueAccessor TypeaheadCellControlValueAccessor TypeaheadModule TypeaheadModule TypeaheadCellControlValueAccessor->TypeaheadModule TypeaheadCellControlValueAccessor TypeaheadCellControlValueAccessor TypeaheadModule->TypeaheadCellControlValueAccessor {    provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => TypeaheadCellControlValueAccessor), multi: true } {    provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => TypeaheadCellControlValueAccessor), multi: true } {    provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => TypeaheadCellControlValueAccessor), multi: true }->TypeaheadCellControlValueAccessor

File

extras/src/typeahead/typeahead.module.ts

Description

This module is part of ngx-table-editor/extras. To use it, run

      npm install --save ngx-table-editor/extras

and import the desired module. You can also import TableEditorExtrasModule to import everything.

import { CommonModule } from '@angular/common';
import { NgModule, ModuleWithProviders } from '@angular/core';

import { TypeaheadContainerComponent } from './typeahead-dependencies/typeahead-container.component';
import { TypeaheadCellControlValueAccessor } from './typeahead.directive';
import { ComponentLoaderFactory } from './typeahead-dependencies/component-loader/component-loader.factory';
import { PositioningService } from './typeahead-dependencies/positioning/positioning.service';

/** This module is part of `ngx-table-editor/extras`. To use it, run
 *
 * ```console
  	npm install --save ngx-table-editor/extras
```
 * and import the desired module. You can also import `TableEditorExtrasModule` to import everything.
*/
@NgModule({
	imports: [CommonModule],
	declarations: [TypeaheadContainerComponent, TypeaheadCellControlValueAccessor],
	exports: [TypeaheadContainerComponent, TypeaheadCellControlValueAccessor],
	entryComponents: [TypeaheadContainerComponent]
})
export class TypeaheadModule {
	static forRoot(): ModuleWithProviders {
		return {
			ngModule: TypeaheadModule,
			providers: [ComponentLoaderFactory, PositioningService]
		};
	}
}

result-matching ""

    No results matching ""