@wcstack/raf 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
@@ -285,5 +285,11 @@ declare class Raf extends HTMLElement {
285
285
  disconnectedCallback(): void;
286
286
  }
287
287
 
288
+ declare global {
289
+ interface HTMLElementTagNameMap {
290
+ "wcs-raf": Raf;
291
+ }
292
+ }
293
+
288
294
  export { RafCore, Raf as WcsRaf, bootstrapRaf, getConfig };
289
295
  export type { IWritableConfig, IWritableTagNames, RafScheduler, RafStartOptions, WcsRafCommands, WcsRafCoreCommands, WcsRafCoreValues, WcsRafInputs, WcsRafTickDetail, WcsRafValues };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wcstack/raf",
3
- "version": "1.32.0",
3
+ "version": "1.33.0",
4
4
  "description": "Declarative requestAnimationFrame component for Web Components. Framework-agnostic frame-source primitive (tick/dt/suspended) via wc-bindable-protocol.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.esm.js",