Skip to content

Commit 3a8fcf3

Browse files
simeonoffkdinevChronosSF
authored
fix(theme): igx-overlay not registered as theme dependency (#12628)
* fix(theme): igx-overlay not registered as theme dependency Closes #12627 --------- Co-authored-by: Konstantin Dinev <[email protected]> Co-authored-by: Stamen Stoychev <[email protected]>
1 parent 5a6bc0b commit 3a8fcf3

File tree

7 files changed

+12
-5
lines changed

7 files changed

+12
-5
lines changed

projects/igniteui-angular/src/lib/core/styles/base/_variables.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
/// The global component registry map.
88
/// @type List
9-
$components: (palette: 'palette', elevations: 'elevations') !default;
9+
$components: () !default;
1010

1111
/// Stores a list of dropped component themes.
1212
$dropped-themes: () !default;

projects/igniteui-angular/src/lib/core/styles/components/combo/_combo-component.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
igx-checkbox,
1212
igx-drop-down,
1313
igx-input-group,
14-
igx-icon
14+
igx-icon,
1515
)
1616
);
1717

projects/igniteui-angular/src/lib/core/styles/components/dialog/_dialog-component.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
$name: string.slice($this, 2, -1),
1111
$deps: (
1212
igx-button,
13+
igx-overlay,
1314
)
1415
);
1516

projects/igniteui-angular/src/lib/core/styles/components/drop-down/_drop-down-component.scss

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,9 @@
88
$this: bem--selector-to-string(&);
99
@include register-component(
1010
$name: string.slice($this, 2, -1),
11-
$deps: ()
11+
$deps: (
12+
igx-overlay,
13+
)
1214
);
1315

1416
@extend %igx-drop-down !optional;

projects/igniteui-angular/src/lib/core/styles/components/grid-toolbar/_grid-toolbar-component.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
igx-column-actions,
1717
igx-icon,
1818
igx-progress-linear,
19+
igx-drop-down
1920
)
2021
);
2122

projects/igniteui-angular/src/lib/core/styles/components/snackbar/_snackbar-component.scss

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@
99
@include register-component(
1010
$name: string.slice($this, 2, -1),
1111
$deps: (
12-
igx-button
12+
igx-button,
13+
igx-overlay,
1314
)
1415
);
1516

projects/igniteui-angular/src/lib/core/styles/components/toast/_toast-component.scss

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,9 @@
88
$this: bem--selector-to-string(&);
99
@include register-component(
1010
$name: string.slice($this, 2, -1),
11-
$deps: ()
11+
$deps: (
12+
igx-overlay,
13+
)
1214
);
1315
@extend %igx-toast-display !optional;
1416
}

0 commit comments

Comments
 (0)