@lumx/react 4.8.0-next.2 → 4.8.0-next.4

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.js CHANGED
@@ -16038,14 +16038,14 @@ const Uploader = forwardRef((props, ref) => {
16038
16038
  isAnyDisabled,
16039
16039
  isDragHovering,
16040
16040
  theme,
16041
- fileInputProps: {
16041
+ fileInputProps: fileInputProps ? {
16042
16042
  ...fileInputProps,
16043
16043
  ...disabledStateProps,
16044
16044
  readOnly: isAnyDisabled,
16045
16045
  onDragEnter: setDragHovering,
16046
16046
  onDragLeave: unsetDragHovering,
16047
16047
  onDrop: unsetDragHovering
16048
- },
16048
+ } : undefined,
16049
16049
  ...wrapper.props,
16050
16050
  ...forwardedProps
16051
16051
  });