@aclymatepackages/modules 5.0.5 → 5.0.6

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.
@@ -108,7 +108,7 @@ const PlacesAutocomplete = _ref => {
108
108
  helperText: helperText,
109
109
  style: style
110
110
  }, textFieldProps)),
111
- getOptionSelected: (option, value) => {
111
+ isOptionEqualToValue: (option, value) => {
112
112
  return option === "" || option.description === value.description || option === value;
113
113
  },
114
114
  value: place || "",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aclymatepackages/modules",
3
- "version": "5.0.5",
3
+ "version": "5.0.6",
4
4
  "description": "Aclymate modules",
5
5
  "author": "William Loopesko",
6
6
  "main": "dist/index.js",
@@ -96,7 +96,7 @@ const PlacesAutocomplete = ({
96
96
  {...textFieldProps}
97
97
  />
98
98
  )}
99
- getOptionSelected={(option, value) => {
99
+ isOptionEqualToValue={(option, value) => {
100
100
  return (
101
101
  option === "" ||
102
102
  option.description === value.description ||