Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
@silintl/svelte-google-places-autocomplete
Advanced tools
A minimal port of the [Google Places Autocomplete API](https://developers.google.com/maps/documentation/javascript/places-autocomplete) as a Svelte component.
A minimal port of the Google Places Autocomplete API as a Svelte component.
Inspired largely by beyonk-adventures/svelte-googlemaps.
If you restrict the Google API key you use for this (recommended), ensure you allow at least the following two APIs, since this component needs them in order to fully function:
<script>
const options = {
fields: ['address_components', 'geometry'],
types: ['(cities)']
}
const placeholder = 'Destination city'
let locationName = localStorage.get('locationName') || ''
</script>
<GooglePlacesAutocomplete apiKey={googlePlacesApiKey} class="form-control"
on:place_changed={onPlaceChanged} {options}
on:ready={onReady} {placeholder}
value={locationName}
required
pattern="[a-zA-Z ]+" />
Your Google Places API Key.
Any HTML class string to apply to the input element.
The options
that you want to pass to the Google Places Autocomplete code.
Any placeholder text to use. Defaults to an automatically-localized placedholder string.
The text to show in the input.
WARNING: You cannot bind to this. To receive data out of this component,
listen for the place_changed
event.
Require a value to be entered.
Specifies a regular expression that is used for validation upon form submission.
When a location is selected,
Fired when the component has initialized, the Google Places API has been loaded, and this component is therefore ready for user interaction.
(Mostly) automated tests are available:
make test
localhost:8086
in a browserEnter
The tests are defined in test/tests.js
. See that file for examples.
$ npm install @silintl/svelte-google-places-autocomplete
Please use the included prettier config for formatting. You can also run make format
to format all files with prettier.
FAQs
A minimal port of the [Google Places Autocomplete API](https://developers.google.com/maps/documentation/javascript/places-autocomplete) as a Svelte component.
The npm package @silintl/svelte-google-places-autocomplete receives a total of 1,075 weekly downloads. As such, @silintl/svelte-google-places-autocomplete popularity was classified as popular.
We found that @silintl/svelte-google-places-autocomplete demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.