sag_components 2.0.0-beta157 → 2.0.0-beta158

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/index.js CHANGED
@@ -3628,6 +3628,7 @@ const TextFieldInput = styled__default["default"].input`
3628
3628
 
3629
3629
  const SearchInput = props => {
3630
3630
  const {
3631
+ value,
3631
3632
  placeholder = 'Search',
3632
3633
  width = '100%',
3633
3634
  height = '40px',
@@ -3649,6 +3650,7 @@ const SearchInput = props => {
3649
3650
  })), /*#__PURE__*/React__default["default"].createElement(TextFieldInput, {
3650
3651
  type: "search",
3651
3652
  id: "search-input",
3653
+ value: value,
3652
3654
  height: height,
3653
3655
  placeholder: placeholder,
3654
3656
  onChange: handleInputChange,