Skip to content

Commit

Permalink
feat(design): expose form label to the public api (#2478)
Browse files Browse the repository at this point in the history
  • Loading branch information
xelaint committed Jun 20, 2023
1 parent 990919f commit 7661c57
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
3 changes: 1 addition & 2 deletions libs/design/src/atoms/form/form-label/form-label.module.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import { CommonModule } from '@angular/common';
import { NgModule } from '@angular/core';

import { DaffFormLabelDirective } from '../form-label/form-label.directive';
import { DaffFormLabelDirective } from './form-label.directive';

@NgModule({
exports: [
Expand Down
2 changes: 2 additions & 0 deletions libs/design/src/atoms/form/form-label/public_api.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
export { DaffFormLabelDirective } from './form-label.directive';
export { DaffFormLabelModule } from './form-label.module';
1 change: 1 addition & 0 deletions libs/design/src/public_api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ export * from './atoms/container/public_api';
export * from './atoms/loading-icon/public_api';
export * from './atoms/progress-indicator/public_api';
export * from './atoms/form/radio/public_api';
export * from './atoms/form/form-label/public_api';

// Molecules
export * from './molecules/accordion/public_api';
Expand Down

0 comments on commit 7661c57

Please sign in to comment.