@lumx/react 4.7.0 → 4.7.1-alpha.0

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/index.d.ts CHANGED
@@ -3810,7 +3810,7 @@ declare const Text: Comp<TextProps, HTMLElement>;
3810
3810
  /**
3811
3811
  * Defines the props of the component.
3812
3812
  */
3813
- interface TextFieldProps$1 extends HasClassName, HasTheme, HasAriaDisabled {
3813
+ interface TextFieldProps$1 extends HasClassName, HasTheme, HasAriaDisabled, HasDisabled {
3814
3814
  /** Chip Group to be rendered before the main text input. */
3815
3815
  chips?: JSXElement;
3816
3816
  /** Props to pass to the clear button (minus those already set by the TextField props). If not specified, the button won't be displayed. */
package/index.js CHANGED
@@ -14588,6 +14588,7 @@ const TextField = forwardRef((props, ref) => {
14588
14588
  } = useDisableStateProps(props);
14589
14589
  const defaultTheme = useTheme() || Theme$1.light;
14590
14590
  const {
14591
+ className,
14591
14592
  clearButtonProps,
14592
14593
  error,
14593
14594
  forceFocusStyle,
@@ -14679,6 +14680,7 @@ const TextField = forwardRef((props, ref) => {
14679
14680
  });
14680
14681
  return TextField$1({
14681
14682
  ref,
14683
+ className,
14682
14684
  isAnyDisabled,
14683
14685
  input,
14684
14686
  id: textFieldId,