Skip to content
This repository has been archived by the owner on Sep 11, 2024. It is now read-only.

Commit

Permalink
fix(progress-bar): Remove DtIndicatorModule export from module.
Browse files Browse the repository at this point in the history
BREAKING CHANGE: DtIndicator is no longer required.
  • Loading branch information
rowa-audil authored and ffriedl89 committed May 12, 2020
1 parent 4d84a0a commit 2bc59e5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,20 +15,13 @@
*/

import { NgModule } from '@angular/core';
import { DtIndicatorModule } from '@dynatrace/barista-components/indicator';

import { DtProgressBar } from './progress-bar';
import { DtProgressBarCount } from './progress-bar-count';
import { DtProgressBarDescription } from './progress-bar-description';

@NgModule({
exports: [
DtProgressBar,
DtProgressBarDescription,
DtProgressBarCount,
// @breaking-change Remove export in 6.0.0 (Issue #214 has to be solved first)
DtIndicatorModule,
],
exports: [DtProgressBar, DtProgressBarDescription, DtProgressBarCount],
declarations: [DtProgressBar, DtProgressBarDescription, DtProgressBarCount],
})
export class DtProgressBarModule {}
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ import { NgModule } from '@angular/core';
import { DtProgressBarModule } from '@dynatrace/barista-components/progress-bar';
import { CommonModule } from '@angular/common';
import { DtButtonModule } from '@dynatrace/barista-components/button';
import { DtIndicatorModule } from '@dynatrace/barista-components/indicator';
import { DtThemingModule } from '@dynatrace/barista-components/theming';
import { DtButtonGroupModule } from '@dynatrace/barista-components/button-group';

Expand Down Expand Up @@ -49,6 +50,7 @@ export const DT_PROGRESS_BAR_EXAMPLES = [
DtButtonModule,
DtProgressBarModule,
DtThemingModule,
DtIndicatorModule,
DtButtonGroupModule,
],
declarations: [...DT_PROGRESS_BAR_EXAMPLES],
Expand Down

0 comments on commit 2bc59e5

Please sign in to comment.