Skip to content

Commit 41c64cc

Browse files
authored
Merge branch 'vnext' into didimmova/update-styling-samples-vnext
2 parents 23ab43e + 9b56558 commit 41c64cc

File tree

10 files changed

+56
-29
lines changed

10 files changed

+56
-29
lines changed

package-lock.json

Lines changed: 10 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,11 +71,11 @@
7171
"express": "^4.18.2",
7272
"file-saver": "^2.0.2",
7373
"hammerjs": "^2.0.8",
74-
"igniteui-angular": "20.0.0",
74+
"igniteui-angular": "20.0.2",
7575
"igniteui-angular-charts": "^19.0.1",
7676
"igniteui-angular-core": "^19.0.1",
7777
"igniteui-angular-extras": "^20.0.0",
78-
"igniteui-angular-i18n": "^20.0.0",
78+
"igniteui-angular-i18n": "^20.0.2",
7979
"igniteui-dockmanager": "^1.16.0",
8080
"igniteui-live-editing": "^3.0.3",
8181
"igniteui-webcomponents": "^6.0.1",
Lines changed: 16 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,17 @@
11
<div class="buttons-sample">
2-
<div class="button-sample">
3-
<button igxButton="contained" igxRipple="#fdfdfd">Styled Button</button>
4-
</div>
5-
<div class="button-sample">
6-
<button igxButton="contained" [disabled]="'true'" igxRipple>Disabled</button>
7-
</div>
8-
</div>
2+
<div class="button-sample">
3+
<button igxButton="contained" igxRipple>Contained Button</button>
4+
</div>
5+
<div class="button-sample">
6+
<button igxButton="flat" igxRipple>Flat Button</button>
7+
</div>
8+
<div class="button-sample">
9+
<button igxButton="outlined" igxRipple>Outlined Button</button>
10+
</div>
11+
<div class="button-sample">
12+
<button igxButton="fab" igxRipple>Fab Button</button>
13+
</div>
14+
<div class="button-sample">
15+
<button igxButton="contained" [disabled]="'true'">Disabled</button>
16+
</div>
17+
</div>
Lines changed: 19 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,25 @@
11
@use "layout.scss";
22
@use "igniteui-angular/theming" as *;
33

4-
$custom-button-theme: contained-button-theme(
5-
$background: #345779,
4+
$custom-contained-theme: contained-button-theme(
5+
$background: #348ae0
6+
);
7+
8+
$custom-flat-theme: flat-button-theme(
9+
$foreground: var(--ig-error-800)
10+
);
11+
12+
$custom-outlined-theme: outlined-button-theme(
13+
$foreground: var(--ig-success-500)
14+
);
15+
16+
$custom-fab-theme: fab-button-theme(
17+
$background: #ffc506
618
);
719

820
.button-sample {
9-
@include css-vars($custom-button-theme);
10-
}
21+
@include css-vars($custom-contained-theme);
22+
@include css-vars($custom-flat-theme);
23+
@include css-vars($custom-outlined-theme);
24+
@include css-vars($custom-fab-theme);
25+
};

src/app/data-entries/input-group/input-group-styling/input-group-styling.component.scss

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,14 @@
66
}
77

88
$custom-input-group: input-group-theme(
9-
$box-background: #57a5cd,
10-
$border-color: #57a5cd,
9+
$border-color: #57a5cd,
10+
$filled-text-color: #288a54,
11+
$focused-text-color: #174f30,
12+
$idle-text-color: #288a54,
13+
$idle-bottom-line-color: #288a54,
14+
$hover-bottom-line-color: #288a54,
15+
$focused-secondary-color: #174f30,
16+
$box-background: #57a5cd
1117
);
1218

1319
@include css-vars($custom-input-group);

src/app/grid/grid-column-hiding-toolbar-style/grid-column-hiding-toolbar-style.component.scss

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ $dark-input-group: input-group-theme(
2525
$focused-text-color: $yellow,
2626
$idle-text-color: $yellow,
2727
$idle-bottom-line-color: $yellow,
28-
$interim-bottom-line-color: $yellow,
2928
$hover-bottom-line-color: $yellow,
3029
$focused-secondary-color: $gray,
3130
$box-background: $bg

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ $input-theme: input-group-theme(
3535
$idle-text-color: $white,
3636
$idle-bottom-line-color: $white,
3737
$focused-bottom-line-color: $white,
38-
$interim-bottom-line-color: $white,
3938
$hover-bottom-line-color: $white,
4039
$box-background: $blue
4140
);

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ $input-theme: input-group-theme(
2424
$idle-text-color: $white,
2525
$idle-bottom-line-color: $white,
2626
$focused-bottom-line-color: $white,
27-
$interim-bottom-line-color: $white,
2827
$hover-bottom-line-color: $white,
2928
$box-background: $blue
3029
);

src/app/scheduling/daterangepicker/daterangepicker-styling/daterangepicker-styling.scss

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,7 @@ $custom-input-group-theme: input-group-theme(
2525
$idle-text-color: $text-color,
2626
$focused-text-color: $color-focused,
2727
$idle-bottom-line-color: $purple,
28-
$hover-bottom-line-color: $color-focused,
29-
$interim-bottom-line-color: $color-focused
28+
$hover-bottom-line-color: $color-focused
3029
);
3130

3231
// CALENDAR styling specific overlay component requires outlet -> [overlaySettings]="{ outlet: element }"

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ $input-theme: input-group-theme(
3535
$idle-text-color: $white,
3636
$idle-bottom-line-color: $white,
3737
$focused-bottom-line-color: $white,
38-
$interim-bottom-line-color: $white,
3938
$hover-bottom-line-color: $white,
4039
$box-background: $blue
4140
);

0 commit comments

Comments
 (0)