@wcstack/network 1.32.0 → 2.0.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
@@ -150,5 +150,11 @@ declare class WcsNetwork extends HTMLElement {
150
150
  disconnectedCallback(): void;
151
151
  }
152
152
 
153
+ declare global {
154
+ interface HTMLElementTagNameMap {
155
+ "wcs-network": WcsNetwork;
156
+ }
157
+ }
158
+
153
159
  export { NetworkCore, WcsNetwork, bootstrapNetwork, getConfig };
154
160
  export type { IWritableConfig, IWritableTagNames, WcsNetworkCoreValues, WcsNetworkSnapshot, WcsNetworkValues };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wcstack/network",
3
- "version": "1.32.0",
3
+ "version": "2.0.0",
4
4
  "description": "Declarative Network Information component for Web Components. Framework-agnostic navigator.connection monitor via wc-bindable-protocol.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.esm.js",