From 02a18ed1b0913fa9e82a85a99d1759556766134f Mon Sep 17 00:00:00 2001 From: Sayri Suarez Date: Fri, 17 Nov 2023 00:46:38 -0800 Subject: [PATCH] feat(textfield): $custom-property-prefix is no longer private variable (same as outlined textfield). PiperOrigin-RevId: 583294935 --- packages/mdc-textfield/_filled-text-field-theme.scss | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/mdc-textfield/_filled-text-field-theme.scss b/packages/mdc-textfield/_filled-text-field-theme.scss index 85065c3ee2a..ccf2539e369 100644 --- a/packages/mdc-textfield/_filled-text-field-theme.scss +++ b/packages/mdc-textfield/_filled-text-field-theme.scss @@ -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, @@ -135,7 +135,7 @@ $light-theme: ( @include keys.declare-custom-properties( $theme, - $prefix: $_custom-property-prefix + $prefix: $custom-property-prefix ); } @@ -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);