@tmlmobilidade/ui 20250209.1134.12 → 20250209.1144.56

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/esm/index.js CHANGED
@@ -797,10 +797,11 @@ const themeData = createTheme({
797
797
  PasswordInput: PasswordInput.extend({
798
798
  classNames: () => {
799
799
  const defaultClasses = {
800
- // PasswordInput is very similar to TextInput.
801
- // The only difference is that the input field
802
- // is wrapped by an outer div, with the class .input.
803
- // The actual input is called .innerInput.
800
+ // PasswordInput is very similar to TextInput. The only difference is that
801
+ // the 'input' field is wrapped by an outer div, with the class '.input'.
802
+ // The actual 'input' field is named '.innerInput'. It is necessary to
803
+ // map the 'input' field styles to the '.innerInput' class and apply reset styles
804
+ // to the '.input' class, otherwise the input will appear to be rendered twice.
804
805
  innerInput: TextInputOverride.input,
805
806
  input: PasswordInputOverride.input,
806
807
  root: TextInputOverride.root,