Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 | /**
* @module module:lib/components/for-angular-components.module
* @description Aggregate module for library components.
* @summary Bundles and exports all UI components from `src/lib/components` as an
* Angular `NgModule`. This module re-exports components like `ListComponent`,
* `PaginationComponent`, `SearchbarComponent`, and others so they can be imported
* together in consumer applications.
*
* @link {@link ForAngularComponentsModule}
*/
import { NgModule } from '@angular/core';
import { CrudFieldComponent } from './crud-field/crud-field.component';
import { CrudFormComponent } from './crud-form/crud-form.component';
import { ModelRendererComponent } from './model-renderer/model-renderer.component';
import { SearchbarComponent } from './searchbar/searchbar.component';
import { EmptyStateComponent } from './empty-state/empty-state.component';
import { ListItemComponent } from './list-item/list-item.component';
import { ComponentRendererComponent } from './component-renderer/component-renderer.component';
import { PaginationComponent } from './pagination/pagination.component';
import { ListComponent } from './list/list.component';
import { FieldsetComponent } from './fieldset/fieldset.component';
import { LayoutComponent } from './layout/layout.component';
import { FilterComponent } from './filter/filter.component';
import { SteppedFormComponent } from './stepped-form/stepped-form.component';
import { IconComponent } from './icon/icon.component';
import { CardComponent } from './card/card.component';
import { FileUploadComponent } from './file-upload/file-upload.component';
import { TableComponent } from './table/table.component';
const Components = [
ModelRendererComponent,
ComponentRendererComponent,
CrudFieldComponent,
CrudFormComponent,
EmptyStateComponent,
ListComponent,
ListItemComponent,
SearchbarComponent,
PaginationComponent,
CrudFormComponent,
FieldsetComponent,
LayoutComponent,
FilterComponent,
SteppedFormComponent,
IconComponent,
CardComponent,
FileUploadComponent,
TableComponent
];
@NgModule({
imports: [...Components],
declarations: [],
schemas: [],
exports: [...Components],
})
export class ForAngularComponentsModule {}
|