@gtkx/testing 0.1.46 → 0.1.47

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
@@ -68,7 +68,7 @@ export const App = () => {
68
68
  defaultHeight={300}
69
69
  onCloseRequest={quit}
70
70
  >
71
- <Box orientation={Orientation.VERTICAL} spacing={12} margin={20}>
71
+ <Box orientation={Orientation.VERTICAL} spacing={12} marginStart={20} marginEnd={20} marginTop={20} marginBottom={20}>
72
72
  <Label.Root label={`Count: ${count}`} />
73
73
  <Button
74
74
  label="Increment"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gtkx/testing",
3
- "version": "0.1.46",
3
+ "version": "0.1.47",
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.1.46",
36
- "@gtkx/native": "0.1.46",
37
- "@gtkx/react": "0.1.46"
35
+ "@gtkx/ffi": "0.1.47",
36
+ "@gtkx/react": "0.1.47",
37
+ "@gtkx/native": "0.1.47"
38
38
  },
39
39
  "scripts": {
40
40
  "build": "tsc -b && cp ../../README.md .",