@crystaldesign/searchfield 7.31.0 → 7.32.0-rc.0
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/build/esm/index.js +6 -5
- package/package.json +2 -2
package/build/esm/index.js
CHANGED
|
@@ -21,10 +21,10 @@ import { jsxs, jsx } from 'react/jsx-runtime';
|
|
|
21
21
|
|
|
22
22
|
function SearchField(_ref) {
|
|
23
23
|
var onChange = _ref.onChange,
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
24
|
+
value = _ref.value,
|
|
25
|
+
placeholder = _ref.placeholder,
|
|
26
|
+
label = _ref.label,
|
|
27
|
+
autoFocus = _ref.autoFocus;
|
|
28
28
|
var classes = useStyles();
|
|
29
29
|
return /*#__PURE__*/jsxs(FormControl, {
|
|
30
30
|
margin: "dense",
|
|
@@ -61,6 +61,7 @@ var useStyles = makeStyles(function (theme) {
|
|
|
61
61
|
color: theme.palette.grey.A700
|
|
62
62
|
}
|
|
63
63
|
});
|
|
64
|
-
});
|
|
64
|
+
});
|
|
65
|
+
//changes
|
|
65
66
|
|
|
66
67
|
export { SearchField as default };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@crystaldesign/searchfield",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.32.0-rc.0",
|
|
4
4
|
"license": "COMMERCIAL",
|
|
5
5
|
"devDependencies": {
|
|
6
6
|
"@testing-library/jest-dom": "^5.15.0",
|
|
@@ -19,5 +19,5 @@
|
|
|
19
19
|
"dependencies": {
|
|
20
20
|
"lodash.debounce": "^4.0.8"
|
|
21
21
|
},
|
|
22
|
-
"gitHead": "
|
|
22
|
+
"gitHead": "ff009f5604c7b9a952eb5cae741899ad41bd4c9a"
|
|
23
23
|
}
|