@gtkx/testing 0.17.1 → 0.17.2

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.
@@ -1,5 +1,8 @@
1
1
  import * as Gtk from "@gtkx/ffi/gtk";
2
2
  import type { ScreenshotResult, WaitForOptions } from "./types.js";
3
+ /**
4
+ * Options for capturing widget screenshots.
5
+ */
3
6
  export type ScreenshotOptions = Pick<WaitForOptions, "timeout" | "interval">;
4
7
  /**
5
8
  * Captures a screenshot of a GTK widget as a PNG image.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gtkx/testing",
3
- "version": "0.17.1",
3
+ "version": "0.17.2",
4
4
  "description": "Testing utilities for GTKX applications",
5
5
  "keywords": [
6
6
  "gtkx",
@@ -36,13 +36,13 @@
36
36
  "dist"
37
37
  ],
38
38
  "dependencies": {
39
- "@gtkx/react": "0.17.1",
40
- "@gtkx/ffi": "0.17.1"
39
+ "@gtkx/react": "0.17.2",
40
+ "@gtkx/ffi": "0.17.2"
41
41
  },
42
42
  "devDependencies": {
43
43
  "@types/react-reconciler": "^0.33.0",
44
44
  "react-reconciler": "^0.33.0",
45
- "@gtkx/vitest": "0.17.1"
45
+ "@gtkx/vitest": "0.17.2"
46
46
  },
47
47
  "scripts": {
48
48
  "build": "tsc -b && cp ../../README.md .",