@gtkx/testing 0.5.2 → 0.6.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/README.md +1 -1
  2. package/package.json +4 -4
package/README.md CHANGED
@@ -58,7 +58,7 @@ const App = () => {
58
58
  return (
59
59
  <ApplicationWindow title="Counter" onCloseRequest={quit}>
60
60
  <Box orientation={Gtk.Orientation.VERTICAL} spacing={12}>
61
- <Label.Root label={`Count: ${count}`} />
61
+ <Label label={`Count: ${count}`} />
62
62
  <Button label="Increment" onClicked={() => setCount((c) => c + 1)} />
63
63
  </Box>
64
64
  </ApplicationWindow>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gtkx/testing",
3
- "version": "0.5.2",
3
+ "version": "0.6.0",
4
4
  "description": "Testing utilities for GTKX applications",
5
5
  "keywords": [
6
6
  "gtk",
@@ -32,9 +32,9 @@
32
32
  "dist"
33
33
  ],
34
34
  "dependencies": {
35
- "@gtkx/ffi": "0.5.2",
36
- "@gtkx/native": "0.5.2",
37
- "@gtkx/react": "0.5.2"
35
+ "@gtkx/ffi": "0.6.0",
36
+ "@gtkx/native": "0.6.0",
37
+ "@gtkx/react": "0.6.0"
38
38
  },
39
39
  "scripts": {
40
40
  "build": "tsc -b && cp ../../README.md .",