Skip to content

Commit 85a51b5

Browse files
committed
fix(themes): make dv components excludable
1 parent 1a57232 commit 85a51b5

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

projects/igniteui-angular/src/lib/core/styles/components/charts/_gauge-component.scss

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,13 @@
66
/// @requires {mixin} bem-elem
77
/// @requires {mixin} bem-mod
88
////
9-
@include b(gauge) {
9+
@include b(linear-gauge) {
10+
// Register the component in the component registry
11+
$this: bem--selector-to-string(&);
12+
@include register-component(str-slice($this, 2, -1));
13+
}
14+
15+
@include b(radial-gauge) {
1016
// Register the component in the component registry
1117
$this: bem--selector-to-string(&);
1218
@include register-component(str-slice($this, 2, -1));

projects/igniteui-angular/src/lib/core/styles/components/charts/_graph-component.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
/// @requires {mixin} bem-elem
77
/// @requires {mixin} bem-mod
88
////
9-
@include b(graph) {
9+
@include b(bullet-graph) {
1010
// Register the component in the component registry
1111
$this: bem--selector-to-string(&);
1212
@include register-component(str-slice($this, 2, -1));

0 commit comments

Comments
 (0)