Skip to content

Commit 4851e39

Browse files
ZachRHalemadoar
authored andcommitted
Removing barrel export and explicitly exporting each component in base index.ts. Barrel exports of components cause @ViewChild(<className>) to give undefined in AOT builds (#184)
1 parent deb26a6 commit 4851e39

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/index.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
export * from './lib/components';
1+
export { WizardCompletionStepComponent } from './lib/components/wizard-completion-step.component';
2+
export { WizardNavigationBarComponent } from './lib/components/wizard-navigation-bar.component';
3+
export { WizardStepComponent } from './lib/components/wizard-step.component';
4+
export { WizardComponent } from './lib/components/wizard.component';
5+
26
export * from './lib/directives';
37
export * from './lib/navigation';
48
export * from './lib/util';

0 commit comments

Comments
 (0)