Skip to content

Commit

Permalink
fix: add missing dependencies
Browse files Browse the repository at this point in the history
Add missing dependencies to three files that previously didn't depend on
all the stylesheets they reference (even indirectly). This caused issues
with the module system migrator (#5220), so this fix is necessary for
that.
  • Loading branch information
jathak committed Dec 13, 2019
1 parent 32063ab commit bafdb38
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion packages/mdc-checkbox/_functions.scss
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@
// THE SOFTWARE.
//

@import "@material/theme/functions";
@import "@material/animation/functions";
@import "./variables";

@function mdc-checkbox-transition-enter($property, $delay: 0ms, $duration: $mdc-checkbox-transition-duration) {
@return mdc-animation-enter($property, $duration, $delay);
Expand Down
2 changes: 1 addition & 1 deletion packages/mdc-data-table/_variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
// THE SOFTWARE.
//

@import "@material/theme/functions";
@import "@material/theme/variables";
@import "@material/density/variables";

$mdc-data-table-fill-color: surface !default;
Expand Down
1 change: 1 addition & 0 deletions packages/mdc-list/_variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
// THE SOFTWARE.

@import "@material/density/variables";
@import "@material/theme/variables";

$mdc-list-divider-color-on-light-bg: rgba(0, 0, 0, .12) !default;
$mdc-list-divider-color-on-dark-bg: rgba(255, 255, 255, .2) !default;
Expand Down

0 comments on commit bafdb38

Please sign in to comment.