@lumx/react 4.7.1-alpha.0 → 4.7.1-alpha.1

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.
Files changed (3) hide show
  1. package/index.js +11 -1
  2. package/index.js.map +1 -1
  3. package/package.json +3 -3
package/index.js CHANGED
@@ -14588,15 +14588,20 @@ const TextField = forwardRef((props, ref) => {
14588
14588
  } = useDisableStateProps(props);
14589
14589
  const defaultTheme = useTheme() || Theme$1.light;
14590
14590
  const {
14591
+ chips,
14591
14592
  className,
14592
14593
  clearButtonProps,
14593
14594
  error,
14594
14595
  forceFocusStyle,
14595
14596
  hasError,
14596
14597
  helper,
14598
+ icon,
14597
14599
  id,
14598
14600
  inputRef: inputRefProps,
14599
14601
  isRequired,
14602
+ isValid,
14603
+ label,
14604
+ labelProps,
14600
14605
  maxLength,
14601
14606
  minimumRows,
14602
14607
  multiline,
@@ -14680,7 +14685,13 @@ const TextField = forwardRef((props, ref) => {
14680
14685
  });
14681
14686
  return TextField$1({
14682
14687
  ref,
14688
+ chips,
14683
14689
  className,
14690
+ forceFocusStyle,
14691
+ icon,
14692
+ isValid,
14693
+ label,
14694
+ labelProps,
14684
14695
  isAnyDisabled,
14685
14696
  input,
14686
14697
  id: textFieldId,
@@ -14699,7 +14710,6 @@ const TextField = forwardRef((props, ref) => {
14699
14710
  helper,
14700
14711
  IconButton: IconButton,
14701
14712
  isFocus,
14702
- ...forwardedProps,
14703
14713
  clearButtonProps: clearButtonProps ? {
14704
14714
  ...clearButtonProps,
14705
14715
  onClick: handleClear