@wcstack/intersection 1.32.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
@@ -339,5 +339,11 @@ declare class WcsIntersect extends HTMLElement {
339
339
  attributeChangedCallback(_name: string, oldValue: string | null, newValue: string | null): void;
340
340
  }
341
341
 
342
+ declare global {
343
+ interface HTMLElementTagNameMap {
344
+ "wcs-intersect": WcsIntersect;
345
+ }
346
+ }
347
+
342
348
  export { IntersectionCore, WcsIntersect, bootstrapIntersection, getConfig };
343
349
  export type { IWritableConfig, IWritableTagNames, IntersectOptions, WcsIntersectCommands, WcsIntersectCoreCommands, WcsIntersectCoreValues, WcsIntersectEntry, WcsIntersectInputs, WcsIntersectRect, WcsIntersectValues };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wcstack/intersection",
3
- "version": "1.32.0",
3
+ "version": "1.33.0",
4
4
  "description": "Declarative IntersectionObserver component for Web Components. Framework-agnostic visibility primitive via wc-bindable-protocol.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.esm.js",