@spothero/ui 13.10.0-beta.3 → 13.10.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/CHANGELOG.md +9 -0
- package/CHANGELOG.tmp +7 -3
- package/backlog/GooglePlacesSearchInput/GooglePlacesSearchInput.js +0 -2
- package/package.json +1 -1
- package/styles/GooglePlacesSearchInput/GooglePlacesSearchInput.jsx +0 -2
- package/v1/index-bundled-cjs/index.js +1 -1
- package/v1/index-bundled-cjs/index.js.map +1 -1
- package/v1/index-bundled-esm/index.js +1 -1
- package/v1/index-bundled-esm/index.js.map +1 -1
- package/v1/index-unbundled-cjs/index.js +35 -35
- package/v1/index-unbundled-esm/index.js +35 -35
- package/v2/index-bundled-cjs/{ImageCarousel-e8e079e8.js → ImageCarousel-c8dddbb1.js} +2 -2
- package/v2/index-bundled-cjs/{ImageCarousel-e8e079e8.js.map → ImageCarousel-c8dddbb1.js.map} +1 -1
- package/v2/index-bundled-cjs/{index-e7e488ba.js → index-7c73c07d.js} +4 -4
- package/v2/index-bundled-cjs/{index-e7e488ba.js.map → index-7c73c07d.js.map} +1 -1
- package/v2/index-bundled-cjs/index.js +1 -1
- package/v2/index-bundled-esm/{ImageCarousel-64780662.js → ImageCarousel-dc224d64.js} +2 -2
- package/v2/index-bundled-esm/{ImageCarousel-64780662.js.map → ImageCarousel-dc224d64.js.map} +1 -1
- package/v2/index-bundled-esm/{index-0fa0fa5c.js → index-7ef77e69.js} +4 -4
- package/v2/index-bundled-esm/{index-0fa0fa5c.js.map → index-7ef77e69.js.map} +1 -1
- package/v2/index-bundled-esm/index.js +1 -1
- package/v2/index-unbundled-cjs/{ImageCarousel-bc41393b.js → ImageCarousel-325df0c4.js} +4 -4
- package/v2/index-unbundled-cjs/{ImageCarousel-bc41393b.js.map → ImageCarousel-325df0c4.js.map} +1 -1
- package/v2/index-unbundled-cjs/{index-beb87ca2.js → index-093f8806.js} +148 -148
- package/v2/index-unbundled-cjs/{index-beb87ca2.js.map → index-093f8806.js.map} +1 -1
- package/v2/index-unbundled-cjs/index.js +1 -1
- package/v2/index-unbundled-esm/{ImageCarousel-d3597a8c.js → ImageCarousel-653f3259.js} +4 -4
- package/v2/index-unbundled-esm/{ImageCarousel-d3597a8c.js.map → ImageCarousel-653f3259.js.map} +1 -1
- package/v2/index-unbundled-esm/{index-0ea45e07.js → index-1c95808d.js} +148 -148
- package/v2/index-unbundled-esm/{index-0ea45e07.js.map → index-1c95808d.js.map} +1 -1
- package/v2/index-unbundled-esm/index.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
# 13.10.0 - 02/28/2022
|
|
2
|
+
|
|
3
|
+
## New Features
|
|
4
|
+
* [[39d3b1d](https://github.com/spothero/fe-ui/commit/39d3b1d)] - DRAC-365 - Updated Autocomplete to accept biasing options ([#269](https://github.com/spothero/fe-ui/pull/269)) (Nathan Caraker)
|
|
5
|
+
* `feat:` Updated Autocomplete to accept biasing options
|
|
6
|
+
* `chore:` Updated PropTypes for geolocation biasing
|
|
7
|
+
* `chore:` Updated location options
|
|
8
|
+
* `chore:` Added logging for suggestions, and added origin to biasing options
|
|
9
|
+
|
|
1
10
|
# 13.10.0-beta.3 - 02/22/2022
|
|
2
11
|
|
|
3
12
|
## Miscellaneous Updates
|
package/CHANGELOG.tmp
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
|
-
# 13.10.0
|
|
1
|
+
# 13.10.0 - 02/28/2022
|
|
2
2
|
|
|
3
|
-
##
|
|
4
|
-
* [[
|
|
3
|
+
## New Features
|
|
4
|
+
* [[39d3b1d](https://github.com/spothero/fe-ui/commit/39d3b1d)] - DRAC-365 - Updated Autocomplete to accept biasing options ([#269](https://github.com/spothero/fe-ui/pull/269)) (Nathan Caraker)
|
|
5
|
+
* `feat:` Updated Autocomplete to accept biasing options
|
|
6
|
+
* `chore:` Updated PropTypes for geolocation biasing
|
|
7
|
+
* `chore:` Updated location options
|
|
8
|
+
* `chore:` Added logging for suggestions, and added origin to biasing options
|
|
5
9
|
|
|
@@ -172,8 +172,6 @@ var GooglePlacesSearchInput = /*#__PURE__*/function (_Component) {
|
|
|
172
172
|
sessionToken: autocompleteSessionToken
|
|
173
173
|
});
|
|
174
174
|
|
|
175
|
-
console.log(options);
|
|
176
|
-
|
|
177
175
|
_this._autocompleteService.getPlacePredictions(options, function (suggestions) {
|
|
178
176
|
if (suggestions) {
|
|
179
177
|
(0, _map.default)(suggestions).call(suggestions, function (suggestion) {
|
package/package.json
CHANGED
|
@@ -152,8 +152,6 @@ export default class GooglePlacesSearchInput extends Component {
|
|
|
152
152
|
sessionToken: autocompleteSessionToken,
|
|
153
153
|
};
|
|
154
154
|
|
|
155
|
-
console.log(options);
|
|
156
|
-
|
|
157
155
|
this._autocompleteService.getPlacePredictions(options, suggestions => {
|
|
158
156
|
if (suggestions) {
|
|
159
157
|
suggestions.map(suggestion => {
|