Skip to content

Commit

Permalink
fix(): remove message export from message.module and update common pu…
Browse files Browse the repository at this point in the history
…blic_api
  • Loading branch information
Steven Ov authored and Steven Ov committed Jan 9, 2018
1 parent 0f461a9 commit eb5bdf3
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 22 deletions.
40 changes: 20 additions & 20 deletions src/platform/core/common/public-api.ts
Original file line number Diff line number Diff line change
@@ -1,39 +1,39 @@
export * from './common.module';

// Directives
export { TdToggleDirective } from './animations/toggle/toggle.directive';
export { TdFadeDirective } from './animations/fade/fade.directive';
export * from './animations/toggle/toggle.directive';
export * from './animations/fade/fade.directive';

// Utility functions
export { TdRotateAnimation, IRotateAnimation } from './animations/rotate/rotate.animation';
export { TdCollapseAnimation, ICollapseAnimation } from './animations/collapse/collapse.animation';
export { TdFadeInOutAnimation, IFadeInOutAnimation } from './animations/fade/fadeInOut.animation';
export { TdBounceAnimation } from './animations/bounce/bounce.animation';
export { TdFlashAnimation } from './animations/flash/flash.animation';
export { TdHeadshakeAnimation } from './animations/headshake/headshake.animation';
export { TdJelloAnimation } from './animations/jello/jello.animation';
export { TdPulseAnimation } from './animations/pulse/pulse.animation';
export * from './animations/rotate/rotate.animation';
export * from './animations/collapse/collapse.animation';
export * from './animations/fade/fadeInOut.animation';
export * from './animations/bounce/bounce.animation';
export * from './animations/flash/flash.animation';
export * from './animations/headshake/headshake.animation';
export * from './animations/jello/jello.animation';
export * from './animations/pulse/pulse.animation';

/**
* BEHAVIORS
*/
export { IControlValueAccessor, mixinControlValueAccessor } from './behaviors/control-value-accesor.mixin';
export { ICanDisable, mixinDisabled } from './behaviors/disabled.mixin';
export { ICanDisableRipple, mixinDisableRipple } from './behaviors/disable-ripple.mixin';
export * from './behaviors/control-value-accesor.mixin';
export * from './behaviors/disabled.mixin';
export * from './behaviors/disable-ripple.mixin';

/**
* FORMS
*/
// Form Directives
export { TdAutoTrimDirective } from './forms/auto-trim/auto-trim.directive';
export * from './forms/auto-trim/auto-trim.directive';
// Validators
export { CovalentValidators } from './forms/validators/validators';
export * from './forms/validators/validators';

/**
* PIPES
*/
export { TdTimeAgoPipe } from './pipes/time-ago/time-ago.pipe';
export { TdTimeDifferencePipe } from './pipes/time-difference/time-difference.pipe';
export { TdBytesPipe } from './pipes/bytes/bytes.pipe';
export { TdDigitsPipe } from './pipes/digits/digits.pipe';
export { TdTruncatePipe } from './pipes/truncate/truncate.pipe';
export * from './pipes/time-ago/time-ago.pipe';
export * from './pipes/time-difference/time-difference.pipe';
export * from './pipes/bytes/bytes.pipe';
export * from './pipes/digits/digits.pipe';
export * from './pipes/truncate/truncate.pipe';
2 changes: 0 additions & 2 deletions src/platform/core/message/message.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,6 @@ const TD_MESSAGE: Type<any>[] = [
TdMessageContainerDirective,
];

export { TdMessageComponent } from './message.component';

@NgModule({
imports: [
CommonModule,
Expand Down

0 comments on commit eb5bdf3

Please sign in to comment.