Skip to content

build: enable public API verification on the MDC slider #23053

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 25, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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