Skip to content

Commit 6e03394

Browse files
committed
chore: run ng update
1 parent 1b6bc0c commit 6e03394

File tree

18 files changed

+71
-71
lines changed

18 files changed

+71
-71
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
<span class="btn" igxButton="contained" igxButtonColor="black" igxButtonBackground="#72da67" igxRipple="white">Span</span>
1+
<span class="btn" igxButton="contained" igxRipple="white">Span</span>

src/app/grid/grid-editing-style-sample/grid-editing-style-sample.component.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ $checkbox-theme: checkbox-theme(
1919
);
2020

2121
$datepicker-theme: calendar-theme(
22-
$date-selected-text-color: $white,
22+
$date-selected-foreground: $white,
2323
$date-selected-background: $blue
2424
);
2525

src/app/grid/grid-multi-row-layout-configuration/grid-multi-row-layout-configuration.component.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -115,9 +115,9 @@
115115
</igx-chips-area>
116116
</div>
117117
<div style="width: 100%; text-align: center; margin: 10px;">
118-
<span igxButton="contained" class="bottomButton" (click)="resetCollections()" [igxButtonBackground]="'#ff134a'" [igxButtonColor]="'white'">Clear Layout</span>
119-
<span igxButton="contained" class="bottomButton" (click)="getColumnLayoutTemplate()" [igxButtonBackground]="'#1377d5'" [igxButtonColor]="'white'">Template</span>
120-
<span igxButton="contained" class="bottomButton" (click)="renderJson()" [igxButtonBackground]="'#1377d5'" [igxButtonColor]="'white'">JSON</span>
118+
<span igxButton="contained" class="bottomButton" (click)="resetCollections()">Clear Layout</span>
119+
<span igxButton="contained" class="bottomButton" (click)="getColumnLayoutTemplate()">Template</span>
120+
<span igxButton="contained" class="bottomButton" (click)="renderJson()">JSON</span>
121121
</div>
122122

123123
<igx-dialog #resultDialog title="Result"

src/app/grid/grid-save-state/about.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
<span>Navigating to the previous page, components will reinitialize as per their initial configuration, therefore the igxGrid will lose its state.</span>
44
<br />
55
<span>What our GridSaveStateComponent does is reading the state from the window.localStorage object and applying the corresponding state in the AfterViewInit lifecycle.</span><br />
6-
<span igxButton="contained" igxButtonColor="white" igxButtonBackground="#e41c77" [routerLink]="['../grid-state']">Go Back</span>
6+
<span igxButton="contained" [routerLink]="['../grid-state']">Go Back</span>
77
</div>

src/app/hierarchical-grid/hierarchical-grid-editing-style/hierarchical-grid-editing-style.component.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ $checkbox-theme: checkbox-theme(
3030
);
3131

3232
$datepicker-theme: calendar-theme(
33-
$date-selected-text-color: $white,
33+
$date-selected-foreground: $white,
3434
$date-selected-background: $blue
3535
);
3636

src/app/hierarchical-grid/hierarchical-grid-save-state/about.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
<span>Navigating to the previous page, components will reinitialize as per their initial configuration, therefore the igxHierarchicalGrid will lose its state.</span>
44
<br />
55
<span>What our GridSaveStateComponent does is reading the state from the window.localStorage object and applying the corresponding state in the AfterViewInit lifecycle.</span><br />
6-
<span igxButton="contained" igxButtonColor="white" igxButtonBackground="#e41c77" [routerLink]="['../hGrid-state']">Go Back</span>
6+
<span igxButton="contained" [routerLink]="['../hGrid-state']">Go Back</span>
77
</div>

src/app/lists/list/list-chat-sample/list-chat-sample.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
<input class="input-round-box" placeholder="Send message" autocomplete="off" igxInput #newMessage name="newMessage"
4545
[(ngModel)]="message" (keypress)="onMessageKeypress($event)" />
4646
</igx-input-group>
47-
<button class="send-message-button" igxIconButton="flat" igxButtonColor="#09f" igxButtonBackground="#fff"
47+
<button class="send-message-button" igxIconButton="flat"
4848
igxRipple="#09f" [igxRippleCentered]="true" (click)="onSendButtonClick()">
4949
<igx-icon family="material">send</igx-icon>
5050
</button>

src/app/notifications/snackbar/snackbar-sample-2/snackbar-sample-2.component.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ <h6>Snackbar Component that uses Content projection</h6>
77

88
<span>
99
<h6>Snackbar Component which dynamically changes the message text</h6>
10-
<button igxButton="outlined" igxButtonColor="blue" (click)="snackbar1.open('Hi! This is info message.')">Info Message</button>
11-
<button igxButton="outlined" igxButtonColor="green" (click)="snackbar1.open('Hi! This is success message.')">Success Message</button>
10+
<button igxButton="outlined" (click)="snackbar1.open('Hi! This is info message.')">Info Message</button>
11+
<button igxButton="outlined" (click)="snackbar1.open('Hi! This is success message.')">Success Message</button>
1212
<igx-snackbar #snackbar1 [autoHide]="true" actionText="CLOSE" (clicked)="close(snackbar1)"></igx-snackbar>
1313
</span>
1414
<span>

src/app/notifications/toast/toast-sample-3/toast-sample-3.component.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ <h6>Toast that uses content projection</h6>
77
</span>
88
<span>
99
<h6>Toast which dynamically changes the message text</h6>
10-
<button igxButton="outlined" igxButtonColor="blue" (click)="toast1.open('Hi! This is info message.')">Info Message</button>
11-
<button igxButton="outlined" igxButtonColor="green" (click)="toast1.open('Hi! This is success message.')">Success Message</button>
12-
<button igxButton="outlined" igxButtonColor="orange" (click)="toast1.open('Hi! This is warning message.')">Warning Message</button>
13-
<button igxButton="outlined" igxButtonColor="red" (click)="toast1.open('Hi! This is error message.')">Error Message</button>
10+
<button igxButton="outlined" (click)="toast1.open('Hi! This is info message.')">Info Message</button>
11+
<button igxButton="outlined" (click)="toast1.open('Hi! This is success message.')">Success Message</button>
12+
<button igxButton="outlined" (click)="toast1.open('Hi! This is warning message.')">Warning Message</button>
13+
<button igxButton="outlined" (click)="toast1.open('Hi! This is error message.')">Error Message</button>
1414
<igx-toast #toast1 [autoHide]="true"></igx-toast>
1515
</span>
1616
<span>

src/app/pivot-grid/pivot-state-persistence/about.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
<span>Navigating to the previous page, components will reinitialize as per their initial configuration, therefore the igxPivotGrid will lose its state.</span>
44
<br />
55
<span>What our PivotGridStatePersistanceSampleComponent does is reading the state from the window.localStorage object and applying the corresponding state in the AfterViewInit lifecycle.</span><br />
6-
<span igxButton="contained" igxButtonColor="white" igxButtonBackground="#e41c77" [routerLink]="['../pivot-grid-state-persistence']">Go Back</span>
6+
<span igxButton="contained" [routerLink]="['../pivot-grid-state-persistence']">Go Back</span>
77
</div>

0 commit comments

Comments
 (0)