baseui 0.0.0-next-eae228d → 0.0.0-next-4b225ad

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.
@@ -736,7 +736,7 @@ class Select extends React.Component {
736
736
  "aria-required": this.props.required || null,
737
737
  onFocus: this.handleInputFocus,
738
738
  tabIndex: 0
739
- }, sharedProps, inputContainerProps), /*#__PURE__*/React.createElement("input", {
739
+ }, sharedProps, inputContainerProps), /*#__PURE__*/React.createElement("input", _extends({
740
740
  "aria-hidden": true,
741
741
  id: this.props.id || null,
742
742
  ref: this.handleInputRef,
@@ -748,7 +748,7 @@ class Select extends React.Component {
748
748
  padding: 0
749
749
  },
750
750
  tabIndex: -1
751
- }));
751
+ }, overrides.Input ? overrides.Input.props ? overrides.Input.props : {} : {})));
752
752
  }
753
753
 
754
754
  return /*#__PURE__*/React.createElement(InputContainer, _extends({}, sharedProps, inputContainerProps), /*#__PURE__*/React.createElement(AutosizeInput, _extends({
@@ -859,7 +859,7 @@ var Select = /*#__PURE__*/function (_React$Component) {
859
859
  "aria-required": this.props.required || null,
860
860
  onFocus: this.handleInputFocus,
861
861
  tabIndex: 0
862
- }, sharedProps, inputContainerProps), /*#__PURE__*/React.createElement("input", {
862
+ }, sharedProps, inputContainerProps), /*#__PURE__*/React.createElement("input", _extends({
863
863
  "aria-hidden": true,
864
864
  id: this.props.id || null,
865
865
  ref: this.handleInputRef,
@@ -871,7 +871,7 @@ var Select = /*#__PURE__*/function (_React$Component) {
871
871
  padding: 0
872
872
  },
873
873
  tabIndex: -1
874
- }));
874
+ }, overrides.Input ? overrides.Input.props ? overrides.Input.props : {} : {})));
875
875
  }
876
876
 
877
877
  return /*#__PURE__*/React.createElement(InputContainer, _extends({}, sharedProps, inputContainerProps), /*#__PURE__*/React.createElement(AutosizeInput, _extends({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "baseui",
3
- "version": "0.0.0-next-eae228d",
3
+ "version": "0.0.0-next-4b225ad",
4
4
  "description": "A React Component library implementing the Base design language",
5
5
  "keywords": [
6
6
  "react",
@@ -880,7 +880,7 @@ var Select = /*#__PURE__*/function (_React$Component) {
880
880
  "aria-required": this.props.required || null,
881
881
  onFocus: this.handleInputFocus,
882
882
  tabIndex: 0
883
- }, sharedProps, inputContainerProps), /*#__PURE__*/React.createElement("input", {
883
+ }, sharedProps, inputContainerProps), /*#__PURE__*/React.createElement("input", _extends({
884
884
  "aria-hidden": true,
885
885
  id: this.props.id || null,
886
886
  ref: this.handleInputRef,
@@ -892,7 +892,7 @@ var Select = /*#__PURE__*/function (_React$Component) {
892
892
  padding: 0
893
893
  },
894
894
  tabIndex: -1
895
- }));
895
+ }, overrides.Input ? overrides.Input.props ? overrides.Input.props : {} : {})));
896
896
  }
897
897
 
898
898
  return /*#__PURE__*/React.createElement(InputContainer, _extends({}, sharedProps, inputContainerProps), /*#__PURE__*/React.createElement(_autosizeInput.default, _extends({
@@ -730,6 +730,11 @@ class Select extends React.Component<PropsT, SelectStateT> {
730
730
  padding: 0,
731
731
  }}
732
732
  tabIndex={-1}
733
+ {...(overrides.Input
734
+ ? overrides.Input.props
735
+ ? overrides.Input.props
736
+ : {}
737
+ : {})}
733
738
  />
734
739
  </InputContainer>
735
740
  );