@wcstack/timer 1.20.0 → 1.21.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 +2 -1
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -13,7 +13,8 @@ interface IWcBindableCommand {
13
13
  }
14
14
  interface IWcBindable {
15
15
  readonly protocol: "wc-bindable";
16
- readonly version: 1;
16
+ /** Integer protocol version. All versions >= 1 are core-compatible. */
17
+ readonly version: number;
17
18
  readonly properties: readonly IWcBindableProperty[];
18
19
  readonly inputs?: readonly IWcBindableInput[];
19
20
  readonly commands?: readonly IWcBindableCommand[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wcstack/timer",
3
- "version": "1.20.0",
3
+ "version": "1.21.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",