grep-components 1.17.0-grepf-1794.2 → 1.17.0-grepf-1794.3

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
@@ -5025,7 +5025,9 @@ var SearchBar = function (props) {
5025
5025
  React.createElement(TextField, { id: props.id, className: classes.input, value: value, variant: "standard", inputRef: inputRef, onChange: _handleChange, autoFocus: props.autoFocus, placeholder: props.placeholder, InputProps: {
5026
5026
  disableUnderline: true,
5027
5027
  fullWidth: true,
5028
- title: props.title,
5028
+ inputProps: {
5029
+ title: props.title,
5030
+ },
5029
5031
  } }),
5030
5032
  React.createElement(Box, { className: classes.icon, style: { cursor: 'pointer' } }, !!value.length && (React.createElement(Close, { "data-testid": "searchBarClearBtn", tabIndex: 0, onClick: _handleClear, onKeyPress: keyboard.onActivation(_handleClear) })))),
5031
5033
  React.createElement("div", { style: { display: 'flex', alignItems: 'center' } },