@await-widget/runtime 0.0.4 → 0.0.5

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@await-widget/runtime",
3
- "version": "0.0.4",
3
+ "version": "0.0.5",
4
4
  "description": "TypeScript declarations for Await widgets.",
5
5
  "license": "MIT",
6
6
  "author": "LitoMore",
package/types/global.d.ts CHANGED
@@ -9,7 +9,7 @@ type AudioOption = "mix" | "duckOthers" | "solo";
9
9
  type ColorScheme = "light" | "dark";
10
10
  type RenderingMode = "fullColor" | "accented" | "vibrant";
11
11
  type TemplateRenderingMode = "original" | "template";
12
- type Update = Date | "end" | "never";
12
+ type Update = Date | "end" | "rapid" | "never";
13
13
  type WidgetFamily =
14
14
  | "small"
15
15
  | "medium"
@@ -278,4 +278,5 @@ type TimelineContext = {
278
278
  type Timeline<T extends Record<string, unknown> = Record<string, unknown>> = {
279
279
  entries: Array<{ date: Date } & T>;
280
280
  update?: Update;
281
+ skipOnPlayingNote?: boolean;
281
282
  };