File tree Expand file tree Collapse file tree 4 files changed +5
-13
lines changed
Expand file tree Collapse file tree 4 files changed +5
-13
lines changed Original file line number Diff line number Diff line change 55 Input
66} from "@angular/core" ;
77import { I18n } from "carbon-components-angular/i18n" ;
8- import { ExperimentalService } from "carbon-components-angular/experimental" ;
98
109/**
1110 * ***Inputs***
@@ -55,7 +54,7 @@ export class ModalHeader {
5554 */
5655 @Output ( ) closeSelect = new EventEmitter ( ) ;
5756
58- constructor ( protected i18n : I18n , protected experimental : ExperimentalService ) { }
57+ constructor ( protected i18n : I18n ) { }
5958
6059 /**
6160 * Handles click for the close icon button within the `Modal`.
Original file line number Diff line number Diff line change 77
88import { ToastContent } from "./notification-content.interface" ;
99import { Notification } from "./notification.component" ;
10- import { ExperimentalService } from "carbon-components-angular/experimental" ;
1110import { NotificationDisplayService } from "./notification-display.service" ;
1211import { I18n } from "carbon-components-angular/i18n" ;
1312
@@ -85,10 +84,7 @@ export class Toast extends Notification implements OnInit {
8584 @HostBinding ( "class.bx--toast-notification--warning" ) get isWarning ( ) { return this . notificationObj [ "type" ] === "warning" ; }
8685 @HostBinding ( "class.bx--toast-notification--low-contrast" ) get isLowContrast ( ) { return this . notificationObj . lowContrast ; }
8786
88- constructor (
89- protected notificationDisplayService : NotificationDisplayService ,
90- protected i18n : I18n ,
91- protected experimental : ExperimentalService ) {
87+ constructor ( protected notificationDisplayService : NotificationDisplayService , protected i18n : I18n ) {
9288 super ( notificationDisplayService , i18n ) ;
9389 // disable inline notification styles
9490 this . notificationClass = false ;
Original file line number Diff line number Diff line change @@ -2,9 +2,10 @@ import {
22 Component ,
33 Input ,
44 Output ,
5- EventEmitter , OnChanges , SimpleChanges
5+ EventEmitter ,
6+ OnChanges ,
7+ SimpleChanges
68} from "@angular/core" ;
7- import { ExperimentalService } from "carbon-components-angular/experimental" ;
89import { Step } from "./progress-indicator-step.interface" ;
910
1011/**
@@ -83,8 +84,6 @@ export class ProgressIndicator implements OnChanges {
8384 }
8485 private _current : number ;
8586
86- constructor ( protected experimental : ExperimentalService ) { }
87-
8887 ngOnChanges ( changes : SimpleChanges ) {
8988 if ( changes . steps || changes . current ) {
9089 this . setProgressIndicatorStates ( ) ;
Original file line number Diff line number Diff line change @@ -3,7 +3,6 @@ import { CommonModule } from "@angular/common";
33
44import { ProgressIndicator } from "./progress-indicator.component" ;
55import { DialogModule } from "carbon-components-angular/dialog" ;
6- import { ExperimentalModule } from "carbon-components-angular/experimental" ;
76import { IconModule } from "carbon-components-angular/icon" ;
87
98@NgModule ( {
@@ -16,7 +15,6 @@ import { IconModule } from "carbon-components-angular/icon";
1615 imports : [
1716 CommonModule ,
1817 DialogModule ,
19- ExperimentalModule ,
2018 IconModule
2119 ]
2220} )
You can’t perform that action at this time.
0 commit comments