@wcstack/timer 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
@@ -208,5 +208,11 @@ declare class Timer extends HTMLElement {
208
208
  disconnectedCallback(): void;
209
209
  }
210
210
 
211
+ declare global {
212
+ interface HTMLElementTagNameMap {
213
+ "wcs-timer": Timer;
214
+ }
215
+ }
216
+
211
217
  export { TimerCore, Timer as WcsTimer, bootstrapTimer, getConfig };
212
218
  export type { IWritableConfig, IWritableTagNames, TimerStartOptions, WcsTimerCommands, WcsTimerCoreCommands, WcsTimerCoreValues, WcsTimerInputs, WcsTimerTickDetail, WcsTimerValues };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wcstack/timer",
3
- "version": "1.32.0",
3
+ "version": "2.0.0",
4
4
  "description": "Declarative timer component for Web Components. Framework-agnostic interval/timeout primitive via wc-bindable-protocol.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.esm.js",