Skip to content

Commit

Permalink
fix(material-experimental/mdc-paginator): use MDC-based tooltip (#21895)
Browse files Browse the repository at this point in the history
Switches the MDC-based paginator to use the MDC tooltip.
  • Loading branch information
crisbeto authored Feb 18, 2021
1 parent 334ae2a commit ce9c905
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/material-experimental/mdc-paginator/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ ng_module(
deps = [
"//src/material-experimental/mdc-button",
"//src/material-experimental/mdc-select",
"//src/material-experimental/mdc-tooltip",
"//src/material/paginator",
"//src/material/tooltip",
"@npm//@angular/common",
"@npm//@angular/core",
"@npm//@angular/forms", # TODO(jelbourn): transitive dep via generated code
Expand Down Expand Up @@ -69,6 +69,7 @@ ng_web_test_suite(
"@npm//:node_modules/@material/textfield/dist/mdc.textfield.js",
"@npm//:node_modules/@material/line-ripple/dist/mdc.lineRipple.js",
"@npm//:node_modules/@material/notched-outline/dist/mdc.notchedOutline.js",
"@npm//:node_modules/@material/tooltip/dist/mdc.tooltip.js",
"@npm//:node_modules/@material/ripple/dist/mdc.ripple.js",
"@npm//:node_modules/@material/dom/dist/mdc.dom.js",
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import {NgModule} from '@angular/core';
import {MAT_PAGINATOR_INTL_PROVIDER} from '@angular/material/paginator';
import {MatButtonModule} from '@angular/material-experimental/mdc-button';
import {MatSelectModule} from '@angular/material-experimental/mdc-select';
import {MatTooltipModule} from '@angular/material/tooltip';
import {MatTooltipModule} from '@angular/material-experimental/mdc-tooltip';
import {MatPaginator} from './paginator';


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ ng_web_test_suite(
"@npm//:node_modules/@material/textfield/dist/mdc.textfield.js",
"@npm//:node_modules/@material/line-ripple/dist/mdc.lineRipple.js",
"@npm//:node_modules/@material/notched-outline/dist/mdc.notchedOutline.js",
"@npm//:node_modules/@material/tooltip/dist/mdc.tooltip.js",
"@npm//:node_modules/@material/ripple/dist/mdc.ripple.js",
"@npm//:node_modules/@material/dom/dist/mdc.dom.js",
],
Expand Down
1 change: 1 addition & 0 deletions src/material-experimental/mdc-table/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ ng_web_test_suite(
"@npm//:node_modules/@material/textfield/dist/mdc.textfield.js",
"@npm//:node_modules/@material/line-ripple/dist/mdc.lineRipple.js",
"@npm//:node_modules/@material/notched-outline/dist/mdc.notchedOutline.js",
"@npm//:node_modules/@material/tooltip/dist/mdc.tooltip.js",
"@npm//:node_modules/@material/ripple/dist/mdc.ripple.js",
"@npm//:node_modules/@material/dom/dist/mdc.dom.js",
"@npm//:node_modules/@material/data-table/dist/mdc.dataTable.js",
Expand Down

0 comments on commit ce9c905

Please sign in to comment.