@wcstack/geolocation 1.31.0 → 1.33.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.
Files changed (2) hide show
  1. package/dist/index.d.ts +6 -0
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -356,5 +356,11 @@ declare const WCS_GEO_ERROR_CODE: {
356
356
  readonly Timeout: "timeout";
357
357
  };
358
358
 
359
+ declare global {
360
+ interface HTMLElementTagNameMap {
361
+ "wcs-geo": WcsGeolocation;
362
+ }
363
+ }
364
+
359
365
  export { GeolocationCore, WCS_GEO_ERROR_CODE, WcsGeolocation, bootstrapGeolocation, getConfig };
360
366
  export type { GeoOptions, GeoPermissionState, IWritableConfig, IWritableTagNames, WcsGeoCommands, WcsGeoCoords, WcsGeoCoreCommands, WcsGeoCoreValues, WcsGeoErrorDetail, WcsGeoInputs, WcsGeoPositionDetail, WcsGeoValues, WcsIoErrorInfo, WcsIoErrorPhase };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wcstack/geolocation",
3
- "version": "1.31.0",
3
+ "version": "1.33.0",
4
4
  "description": "Declarative geolocation component for Web Components. Framework-agnostic Geolocation API primitive via wc-bindable-protocol.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.esm.js",