Skip to content

Commit

Permalink
feat(textfield): $custom-property-prefix is no longer private variabl…
Browse files Browse the repository at this point in the history
…e (same as outlined textfield).

PiperOrigin-RevId: 585755095
  • Loading branch information
sayris authored and Copybara-Service committed Nov 27, 2023
1 parent c51a0bb commit d76666a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/mdc-textfield/_filled-text-field-theme.scss
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
@use './text-field-theme';
@use './mixins';

$_custom-property-prefix: 'filled-text-field';
$custom-property-prefix: 'filled-text-field';

$light-theme: (
active-indicator-color: null,
Expand Down Expand Up @@ -135,7 +135,7 @@ $light-theme: (

@include keys.declare-custom-properties(
$theme,
$prefix: $_custom-property-prefix
$prefix: $custom-property-prefix
);
}

Expand All @@ -144,7 +144,7 @@ $light-theme: (

$theme: keys.create-theme-properties(
$theme,
$prefix: $_custom-property-prefix
$prefix: $custom-property-prefix
);

@include text-field-theme.theme-styles($theme, $resolvers: $resolvers);
Expand Down

0 comments on commit d76666a

Please sign in to comment.