Skip to content

Commit 8b3c82d

Browse files
authored
fix(material/core): restore private- mixin prefix (#21989)
* In #21204 the `private-` prefix was unintentionally removed from all of the symbols. These changes restore the prefix. * Fixes the prefixes on the expansion panel theming mixins.
1 parent c34511e commit 8b3c82d

File tree

125 files changed

+447
-469
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

125 files changed

+447
-469
lines changed

scripts/migrate-sass-modules.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ const materialPrefixes = [
2727
'mat-pseudo-checkbox-',
2828
'mat-elevation-',
2929
'mat-optgroup-',
30-
'mat-private-'
30+
'mat-expansion-panel-'
3131
];
3232
const mdcPrefixes = [
3333
...getPrefixes('material-experimental', 'mat'),

src/material-experimental/column-resize/_column-resize.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,8 +105,8 @@
105105
@mixin density($config-or-theme) {}
106106

107107
@mixin theme($theme-or-color-config) {
108-
$theme: theming.legacy-get-theme($theme-or-color-config);
109-
@include theming.check-duplicate-theme-styles($theme, 'mat-column-resize') {
108+
$theme: theming.private-legacy-get-theme($theme-or-color-config);
109+
@include theming.private-check-duplicate-theme-styles($theme, 'mat-column-resize') {
110110
$color: theming.get-color-config($theme);
111111
$density: theming.get-density-config($theme);
112112
$typography: theming.get-typography-config($theme);

src/material-experimental/mdc-autocomplete/_autocomplete-theme.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@
2727
@mixin density($config-or-theme) {}
2828

2929
@mixin theme($theme-or-color-config) {
30-
$theme: theming.legacy-get-theme($theme-or-color-config);
31-
@include theming.check-duplicate-theme-styles($theme, 'mat-mdc-autocomplete') {
30+
$theme: theming.private-legacy-get-theme($theme-or-color-config);
31+
@include theming.private-check-duplicate-theme-styles($theme, 'mat-mdc-autocomplete') {
3232
$color: theming.get-color-config($theme);
3333
$density: theming.get-density-config($theme);
3434
$typography: theming.get-typography-config($theme);

src/material-experimental/mdc-button/_button-theme.scss

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -190,8 +190,8 @@ $mat-button-state-target: '.mdc-button__ripple';
190190
}
191191

192192
@mixin theme($theme-or-color-config) {
193-
$theme: theming.legacy-get-theme($theme-or-color-config);
194-
@include theming.check-duplicate-theme-styles($theme, 'mat-mdc-button') {
193+
$theme: theming.private-legacy-get-theme($theme-or-color-config);
194+
@include theming.private-check-duplicate-theme-styles($theme, 'mat-mdc-button') {
195195
$color: theming.get-color-config($theme);
196196
$density: theming.get-density-config($theme);
197197
$typography: theming.get-typography-config($theme);
@@ -269,8 +269,8 @@ $mat-button-state-target: '.mdc-button__ripple';
269269
@mixin fab-density($config-or-theme) {}
270270

271271
@mixin fab-theme($theme-or-color-config) {
272-
$theme: theming.legacy-get-theme($theme-or-color-config);
273-
@include theming.check-duplicate-theme-styles($theme, 'mat-mdc-fab') {
272+
$theme: theming.private-legacy-get-theme($theme-or-color-config);
273+
@include theming.private-check-duplicate-theme-styles($theme, 'mat-mdc-fab') {
274274
$color: theming.get-color-config($theme);
275275
$density: theming.get-density-config($theme);
276276
$typography: theming.get-typography-config($theme);
@@ -347,8 +347,8 @@ $mat-button-state-target: '.mdc-button__ripple';
347347
}
348348

349349
@mixin icon-button-theme($theme-or-color-config) {
350-
$theme: theming.legacy-get-theme($theme-or-color-config);
351-
@include theming.check-duplicate-theme-styles($theme, 'mat-mdc-icon-button') {
350+
$theme: theming.private-legacy-get-theme($theme-or-color-config);
351+
@include theming.private-check-duplicate-theme-styles($theme, 'mat-mdc-icon-button') {
352352
$color: theming.get-color-config($theme);
353353
$density: theming.get-density-config($theme);
354354
$typography: theming.get-typography-config($theme);

src/material-experimental/mdc-card/_card-theme.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,8 @@
5454
@mixin density($config-or-theme) {}
5555

5656
@mixin theme($theme-or-color-config) {
57-
$theme: theming.legacy-get-theme($theme-or-color-config);
58-
@include theming.check-duplicate-theme-styles($theme, 'mat-mdc-card') {
57+
$theme: theming.private-legacy-get-theme($theme-or-color-config);
58+
@include theming.private-check-duplicate-theme-styles($theme, 'mat-mdc-card') {
5959
$color: theming.get-color-config($theme);
6060
$density: theming.get-density-config($theme);
6161
$typography: theming.get-typography-config($theme);

src/material-experimental/mdc-checkbox/_checkbox-theme.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -144,8 +144,8 @@
144144
}
145145

146146
@mixin theme($theme-or-color-config) {
147-
$theme: theming.legacy-get-theme($theme-or-color-config);
148-
@include theming.check-duplicate-theme-styles($theme, 'mat-mdc-checkbox') {
147+
$theme: theming.private-legacy-get-theme($theme-or-color-config);
148+
@include theming.private-check-duplicate-theme-styles($theme, 'mat-mdc-checkbox') {
149149
$color: theming.get-color-config($theme);
150150
$density: theming.get-density-config($theme);
151151
$typography: theming.get-typography-config($theme);

src/material-experimental/mdc-chips/_chips-theme.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,8 +91,8 @@
9191
}
9292

9393
@mixin theme($theme-or-color-config) {
94-
$theme: theming.legacy-get-theme($theme-or-color-config);
95-
@include theming.check-duplicate-theme-styles($theme, 'mat-mdc-chips') {
94+
$theme: theming.private-legacy-get-theme($theme-or-color-config);
95+
@include theming.private-check-duplicate-theme-styles($theme, 'mat-mdc-chips') {
9696
$color: theming.get-color-config($theme);
9797
$density: theming.get-density-config($theme);
9898
$typography: theming.get-typography-config($theme);

src/material-experimental/mdc-color/_all-color.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
@mixin angular-material-mdc-color($config-or-theme) {
55
// In case a theme object has been passed instead of a configuration for
66
// the color system, extract the color config from the theme object.
7-
$config: if(theming.is-theme-object($config-or-theme),
7+
$config: if(theming.private-is-theme-object($config-or-theme),
88
theming.get-color-config($config-or-theme), $config-or-theme);
99

1010
@if $config == null {

src/material-experimental/mdc-core/_core-theme.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44

55
// Mixin that renders all of the core styles that depend on the theme.
66
@mixin theme($theme-or-color-config) {
7-
$theme: theming.legacy-get-theme($theme-or-color-config);
7+
$theme: theming.private-legacy-get-theme($theme-or-color-config);
88
// Wrap the sub-theme includes in the duplicate theme styles mixin. This ensures that
99
// there won't be multiple warnings. e.g. if `mat-mdc-core-theme` reports a warning, then
1010
// the imported themes (such as `mat-ripple-theme`) should not report again.
11-
@include theming.check-duplicate-theme-styles($theme, 'mat-mdc-core') {
11+
@include theming.private-check-duplicate-theme-styles($theme, 'mat-mdc-core') {
1212
@include option-theme.option-theme($theme);
1313
@include optgroup-theme.theme($theme);
1414
}

src/material-experimental/mdc-core/option/_optgroup-theme.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@
2828
}
2929

3030
@mixin theme($theme-or-color-config) {
31-
$theme: theming.legacy-get-theme($theme-or-color-config);
32-
@include theming.check-duplicate-theme-styles($theme, 'mat-mdc-optgroup') {
31+
$theme: theming.private-legacy-get-theme($theme-or-color-config);
32+
@include theming.private-check-duplicate-theme-styles($theme, 'mat-mdc-optgroup') {
3333
$color: theming.get-color-config($theme);
3434
$density: theming.get-density-config($theme);
3535
$typography: theming.get-typography-config($theme);

src/material-experimental/mdc-core/option/_option-theme.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,8 @@
6262
}
6363

6464
@mixin option-theme($theme-or-color-config) {
65-
$theme: theming.legacy-get-theme($theme-or-color-config);
66-
@include theming.check-duplicate-theme-styles($theme, 'mat-mdc-option') {
65+
$theme: theming.private-legacy-get-theme($theme-or-color-config);
66+
@include theming.private-check-duplicate-theme-styles($theme, 'mat-mdc-option') {
6767
$color: theming.get-color-config($theme);
6868
$density: theming.get-density-config($theme);
6969
$typography: theming.get-typography-config($theme);

src/material-experimental/mdc-density/_all-density.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
@mixin angular-material-mdc-density($config-or-theme) {
55
// In case a theme object has been passed instead of a configuration for
66
// the density system, extract the density config from the theme object.
7-
$config: if(theming.is-theme-object($config-or-theme),
7+
$config: if(theming.private-is-theme-object($config-or-theme),
88
theming.get-density-config($config-or-theme), $config-or-theme);
99

1010
@if $config == null {

src/material-experimental/mdc-dialog/_dialog-theme.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@
2222
}
2323

2424
@mixin theme($theme-or-color-config) {
25-
$theme: theming.legacy-get-theme($theme-or-color-config);
26-
@include theming.check-duplicate-theme-styles($theme, 'mat-mdc-dialog') {
25+
$theme: theming.private-legacy-get-theme($theme-or-color-config);
26+
@include theming.private-check-duplicate-theme-styles($theme, 'mat-mdc-dialog') {
2727
$color: theming.get-color-config($theme);
2828
$density: theming.get-density-config($theme);
2929
$typography: theming.get-typography-config($theme);

src/material-experimental/mdc-form-field/_form-field-theme.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,8 +88,8 @@
8888
}
8989

9090
@mixin theme($theme-or-color-config) {
91-
$theme: theming.legacy-get-theme($theme-or-color-config);
92-
@include theming.check-duplicate-theme-styles($theme, 'mat-mdc-form-field') {
91+
$theme: theming.private-legacy-get-theme($theme-or-color-config);
92+
@include theming.private-check-duplicate-theme-styles($theme, 'mat-mdc-form-field') {
9393
$color: theming.get-color-config($theme);
9494
$density: theming.get-density-config($theme);
9595
$typography: theming.get-typography-config($theme);

src/material-experimental/mdc-helpers/_focus-indicators.scss

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -122,8 +122,9 @@
122122
@include _mat-mdc-strong-focus-indicators-border-color($theme-or-color);
123123
}
124124
@else {
125-
$theme: theming.legacy-get-theme($theme-or-color);
126-
@include theming.check-duplicate-theme-styles($theme, 'mat-mdc-strong-focus-indicators') {
125+
$theme: theming.private-legacy-get-theme($theme-or-color);
126+
@include theming.private-check-duplicate-theme-styles($theme,
127+
'mat-mdc-strong-focus-indicators') {
127128
$color: theming.get-color-config($theme);
128129
@if $color != null {
129130
@include strong-focus-indicators-color($color);

src/material-experimental/mdc-helpers/_mdc-helpers.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ $mat-typography-2018-level-mappings: (
9494

9595
// Converts an Angular Material typography level config to an MDC one.
9696
@function mat-typography-level-config-to-mdc($mat-config, $mat-level) {
97-
$mappings: if(typography.typography-is-2018-config($mat-config),
97+
$mappings: if(typography.private-typography-is-2018-config($mat-config),
9898
$mat-typography-2018-level-mappings, $mat-typography-2014-level-mappings);
9999
$mdc-level: map.get(map.get($mappings, mat-to-mdc), $mat-level);
100100

@@ -133,7 +133,7 @@ $mat-typography-2018-level-mappings: (
133133
@function mat-typography-config-to-mdc($mat-config: typography.config()) {
134134
$mdc-config: ();
135135

136-
$mappings: if(typography.typography-is-2018-config($mat-config),
136+
$mappings: if(typography.private-typography-is-2018-config($mat-config),
137137
$mat-typography-2018-level-mappings, $mat-typography-2014-level-mappings);
138138

139139
@each $mdc-level, $mat-level in map.get($mappings, mdc-to-mat) {

src/material-experimental/mdc-input/_input-theme.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414
@mixin density($config-or-theme) {}
1515

1616
@mixin theme($theme-or-color-config) {
17-
$theme: theming.legacy-get-theme($theme-or-color-config);
18-
@include theming.check-duplicate-theme-styles($theme, 'mat-mdc-input') {
17+
$theme: theming.private-legacy-get-theme($theme-or-color-config);
18+
@include theming.private-check-duplicate-theme-styles($theme, 'mat-mdc-input') {
1919
$color: theming.get-color-config($theme);
2020
$density: theming.get-density-config($theme);
2121
$typography: theming.get-typography-config($theme);

src/material-experimental/mdc-list/_list-theme.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,8 @@
6161
}
6262

6363
@mixin theme($theme-or-color-config) {
64-
$theme: theming.legacy-get-theme($theme-or-color-config);
65-
@include theming.check-duplicate-theme-styles($theme, 'mat-mdc-list') {
64+
$theme: theming.private-legacy-get-theme($theme-or-color-config);
65+
@include theming.private-check-duplicate-theme-styles($theme, 'mat-mdc-list') {
6666
$color: theming.get-color-config($theme);
6767
$density: theming.get-density-config($theme);
6868
$typography: theming.get-typography-config($theme);

src/material-experimental/mdc-menu/_menu-theme.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,8 @@
6666
@mixin density($config-or-theme) {}
6767

6868
@mixin theme($theme-or-color-config) {
69-
$theme: theming.legacy-get-theme($theme-or-color-config);
70-
@include theming.check-duplicate-theme-styles($theme, 'mat-mdc-menu') {
69+
$theme: theming.private-legacy-get-theme($theme-or-color-config);
70+
@include theming.private-check-duplicate-theme-styles($theme, 'mat-mdc-menu') {
7171
$color: theming.get-color-config($theme);
7272
$density: theming.get-density-config($theme);
7373
$typography: theming.get-typography-config($theme);

src/material-experimental/mdc-paginator/_paginator-theme.scss

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -64,19 +64,19 @@
6464

6565
@mixin density($config-or-theme) {
6666
$density-scale: theming.get-density-config($config-or-theme);
67-
$height: compatibility.density-prop-value(
67+
$height: compatibility.private-density-prop-value(
6868
paginator-variables.$density-config, $density-scale, height);
6969

70-
@include compatibility.density-legacy-compatibility() {
70+
@include compatibility.private-density-legacy-compatibility() {
7171
.mat-mdc-paginator-container {
7272
min-height: $height;
7373
}
7474
}
7575
}
7676

7777
@mixin theme($theme-or-color-config) {
78-
$theme: theming.legacy-get-theme($theme-or-color-config);
79-
@include theming.check-duplicate-theme-styles($theme, 'mat-mdc-paginator') {
78+
$theme: theming.private-legacy-get-theme($theme-or-color-config);
79+
@include theming.private-check-duplicate-theme-styles($theme, 'mat-mdc-paginator') {
8080
$color: theming.get-color-config($theme);
8181
$density: theming.get-density-config($theme);
8282
$typography: theming.get-typography-config($theme);

src/material-experimental/mdc-progress-bar/_progress-bar-theme.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@
3737
@mixin density($config-or-theme) {}
3838

3939
@mixin theme($theme-or-color-config) {
40-
$theme: theming.legacy-get-theme($theme-or-color-config);
41-
@include theming.check-duplicate-theme-styles($theme, 'mat-mdc-progress-bar') {
40+
$theme: theming.private-legacy-get-theme($theme-or-color-config);
41+
@include theming.private-check-duplicate-theme-styles($theme, 'mat-mdc-progress-bar') {
4242
$color: theming.get-color-config($theme);
4343
$density: theming.get-density-config($theme);
4444
$typography: theming.get-typography-config($theme);

src/material-experimental/mdc-progress-spinner/_progress-spinner-theme.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@
2828
@mixin density($config-or-theme) {}
2929

3030
@mixin theme($theme-or-color-config) {
31-
$theme: theming.legacy-get-theme($theme-or-color-config);
32-
@include theming.check-duplicate-theme-styles($theme, 'mat-mdc-progress-spinner') {
31+
$theme: theming.private-legacy-get-theme($theme-or-color-config);
32+
@include theming.private-check-duplicate-theme-styles($theme, 'mat-mdc-progress-spinner') {
3333
$color: theming.get-color-config($theme);
3434
$density: theming.get-density-config($theme);
3535
$typography: theming.get-typography-config($theme);

src/material-experimental/mdc-radio/_radio-theme.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,8 @@
5858
}
5959

6060
@mixin theme($theme-or-color-config) {
61-
$theme: theming.legacy-get-theme($theme-or-color-config);
62-
@include theming.check-duplicate-theme-styles($theme, 'mat-mdc-radio') {
61+
$theme: theming.private-legacy-get-theme($theme-or-color-config);
62+
@include theming.private-check-duplicate-theme-styles($theme, 'mat-mdc-radio') {
6363
$color: theming.get-color-config($theme);
6464
$density: theming.get-density-config($theme);
6565
$typography: theming.get-typography-config($theme);

src/material-experimental/mdc-select/_select-theme.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,8 +101,8 @@
101101
@mixin density($config-or-theme) {}
102102

103103
@mixin theme($theme-or-color-config) {
104-
$theme: theming.legacy-get-theme($theme-or-color-config);
105-
@include theming.check-duplicate-theme-styles($theme, 'mat-mdc-select') {
104+
$theme: theming.private-legacy-get-theme($theme-or-color-config);
105+
@include theming.private-check-duplicate-theme-styles($theme, 'mat-mdc-select') {
106106
$color: theming.get-color-config($theme);
107107
$density: theming.get-density-config($theme);
108108
$typography: theming.get-typography-config($theme);

src/material-experimental/mdc-sidenav/_sidenav-theme.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
}
1111

1212
@mixin theme($theme-or-color-config) {
13-
$theme: theming.legacy-get-theme($theme-or-color-config);
14-
@include theming.check-duplicate-theme-styles($theme, 'mat-mdc-sidenav') {
13+
$theme: theming.private-legacy-get-theme($theme-or-color-config);
14+
@include theming.private-check-duplicate-theme-styles($theme, 'mat-mdc-sidenav') {
1515
$color: theming.get-color-config($theme);
1616
$density: theming.get-density-config($theme);
1717
$typography: theming.get-typography-config($theme);

src/material-experimental/mdc-slide-toggle/_slide-toggle-theme.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,8 +96,8 @@
9696
}
9797

9898
@mixin theme($theme-or-color-config) {
99-
$theme: theming.legacy-get-theme($theme-or-color-config);
100-
@include theming.check-duplicate-theme-styles($theme, 'mat-mdc-slide-toggle') {
99+
$theme: theming.private-legacy-get-theme($theme-or-color-config);
100+
@include theming.private-check-duplicate-theme-styles($theme, 'mat-mdc-slide-toggle') {
101101
$color: theming.get-color-config($theme);
102102
$density: theming.get-density-config($theme);
103103
$typography: theming.get-typography-config($theme);

src/material-experimental/mdc-slider/_slider-theme.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@
3434
@mixin density($config-or-theme) {}
3535

3636
@mixin theme($theme-or-color-config) {
37-
$theme: theming.legacy-get-theme($theme-or-color-config);
38-
@include theming.check-duplicate-theme-styles($theme, 'mat-mdc-slider') {
37+
$theme: theming.private-legacy-get-theme($theme-or-color-config);
38+
@include theming.private-check-duplicate-theme-styles($theme, 'mat-mdc-slider') {
3939
$color: theming.get-color-config($theme);
4040
$density: theming.get-density-config($theme);
4141
$typography: theming.get-typography-config($theme);

src/material-experimental/mdc-snack-bar/_snack-bar-theme.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,8 @@
5353
@mixin density($config-or-theme) {}
5454

5555
@mixin theme($theme-or-color-config) {
56-
$theme: theming.legacy-get-theme($theme-or-color-config);
57-
@include theming.check-duplicate-theme-styles($theme, 'mat-mdc-snack-bar') {
56+
$theme: theming.private-legacy-get-theme($theme-or-color-config);
57+
@include theming.private-check-duplicate-theme-styles($theme, 'mat-mdc-snack-bar') {
5858
$color: theming.get-color-config($theme);
5959
$density: theming.get-density-config($theme);
6060
$typography: theming.get-typography-config($theme);

src/material-experimental/mdc-table/_table-theme.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,8 @@
5959
}
6060

6161
@mixin theme($theme-or-color-config) {
62-
$theme: theming.legacy-get-theme($theme-or-color-config);
63-
@include theming.check-duplicate-theme-styles($theme, 'mat-mdc-table') {
62+
$theme: theming.private-legacy-get-theme($theme-or-color-config);
63+
@include theming.private-check-duplicate-theme-styles($theme, 'mat-mdc-table') {
6464
$color: theming.get-color-config($theme);
6565
$density: theming.get-density-config($theme);
6666
$typography: theming.get-typography-config($theme);

src/material-experimental/mdc-table/table.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
@import '@material/data-table/mixins.import';
55

66
@include mdc-data-table-core-styles($query: mdc-helpers.$mat-base-styles-without-animation-query);
7-
@include table-flex-styles.table-flex-styles();
7+
@include table-flex-styles.private-table-flex-styles();
88

99
.mat-mdc-table-sticky {
1010
// Note that the table can either set this class or an inline style to make something sticky.

src/material-experimental/mdc-tabs/_tabs-theme.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,8 +118,8 @@
118118
}
119119

120120
@mixin theme($theme-or-color-config) {
121-
$theme: theming.legacy-get-theme($theme-or-color-config);
122-
@include theming.check-duplicate-theme-styles($theme, 'mat-mdc-tabs') {
121+
$theme: theming.private-legacy-get-theme($theme-or-color-config);
122+
@include theming.private-check-duplicate-theme-styles($theme, 'mat-mdc-tabs') {
123123
$color: theming.get-color-config($theme);
124124
$density: theming.get-density-config($theme);
125125
$typography: theming.get-typography-config($theme);

src/material-experimental/mdc-tabs/tab-group.scss

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

4040
// The bottom section of the view; contains the tab bodies
4141
.mat-mdc-tab-body-wrapper {
42-
@include private.animation-noop();
42+
@include private.private-animation-noop();
4343
position: relative;
4444
overflow: hidden;
4545
display: flex;

src/material-experimental/mdc-theming/_all-theme.scss

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

2525
@mixin angular-material-mdc-theme($theme-or-color-config) {
2626
$dedupe-key: 'angular-material-mdc-theme';
27-
@include theming.check-duplicate-theme-styles($theme-or-color-config, $dedupe-key) {
27+
@include theming.private-check-duplicate-theme-styles($theme-or-color-config, $dedupe-key) {
2828
@include core-theme.theme($theme-or-color-config);
2929
@include autocomplete-theme.theme($theme-or-color-config);
3030
@include button-theme.theme($theme-or-color-config);

0 commit comments

Comments
 (0)