Skip to content

Commit

Permalink
build: enable public API verification on the MDC slider
Browse files Browse the repository at this point in the history
We had disabled the public API check on the MDC slider while it was being rewritten, but now it can be re-enabled.
  • Loading branch information
crisbeto committed Jun 23, 2021
1 parent 3531346 commit 6a5e0d0
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion scripts/check-mdc-exports-config.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
export const config = {
// The MDC sidenav hasn't been implemented yet.
skippedPackages: ['mdc-sidenav', 'mdc-slider'],
skippedPackages: ['mdc-sidenav'],
skippedExports: {
'mdc-chips': [
// These components haven't been implemented for MDC due to a different accessibility pattern.
Expand Down Expand Up @@ -80,6 +80,12 @@ export const config = {
// Private base class that is only exported for MDC.
'_MatSlideToggleHarnessBase'
],
'mdc-slider': [
// ControlValueAccessor implementation detail.
'MAT_SLIDER_VALUE_ACCESSOR',
// Irrelevant for the MDC implementation, because the slider doesn't dispatch any events.
'MatSliderChange'
],
'mdc-snack-bar': [
// Private interface used to ensure consistency for MDC package.
'_SnackBarContainer'
Expand Down

0 comments on commit 6a5e0d0

Please sign in to comment.