dependencies Legend  Declarations  Module  Bootstrap  Providers  Exports cluster_PropertyGridModule cluster_PropertyGridModule_declarations cluster_PropertyGridModule_exports DynamicComponentLoadDirective DynamicComponentLoadDirective PropertyGridModule PropertyGridModule DynamicComponentLoadDirective->PropertyGridModule PropertyGridComponent PropertyGridComponent PropertyGridComponent->PropertyGridModule PropertyGridComponent PropertyGridComponent PropertyGridModule->PropertyGridComponent

File

projects/ngx-property-grid/src/lib/property-grid.module.ts

import {CommonModule} from '@angular/common';
import {NgModule} from '@angular/core';
import {DynamicComponentLoadDirective} from './dynamic-component-load.directive';
import {PropertyGridComponent} from './property-grid.component';
import {NgxTemplateModule} from 'ngx-template';
import {FormsModule} from '@angular/forms';

@NgModule({
  imports: [
    CommonModule, FormsModule, NgxTemplateModule
  ],
  declarations: [
    PropertyGridComponent,
    DynamicComponentLoadDirective
  ],
  exports: [
    PropertyGridComponent
  ]
})
export class PropertyGridModule {
}

result-matching ""

    No results matching ""