grep-components 1.17.0-grepf-1794.1 → 1.17.0-grepf-1794.2
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 +5 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -5022,7 +5022,11 @@ var SearchBar = function (props) {
|
|
|
5022
5022
|
} },
|
|
5023
5023
|
React.createElement(Box, { className: classes.icon },
|
|
5024
5024
|
React.createElement(Search, null)),
|
|
5025
|
-
React.createElement(TextField, { id: props.id, className: classes.input, value: value,
|
|
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
|
+
disableUnderline: true,
|
|
5027
|
+
fullWidth: true,
|
|
5028
|
+
title: props.title,
|
|
5029
|
+
} }),
|
|
5026
5030
|
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) })))),
|
|
5027
5031
|
React.createElement("div", { style: { display: 'flex', alignItems: 'center' } },
|
|
5028
5032
|
props.helpText && (React.createElement(Typography, { className: classes.helptext }, props.helpText)),
|