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.esm.js CHANGED
@@ -3618,6 +3618,7 @@ const TextFieldInput = styled.input`
3618
3618
 
3619
3619
  const SearchInput = props => {
3620
3620
  const {
3621
+ value,
3621
3622
  placeholder = 'Search',
3622
3623
  width = '100%',
3623
3624
  height = '40px',
@@ -3639,6 +3640,7 @@ const SearchInput = props => {
3639
3640
  })), /*#__PURE__*/React$1.createElement(TextFieldInput, {
3640
3641
  type: "search",
3641
3642
  id: "search-input",
3643
+ value: value,
3642
3644
  height: height,
3643
3645
  placeholder: placeholder,
3644
3646
  onChange: handleInputChange,