@gtkx/testing 0.1.46 → 0.1.48

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 +9 -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"
@@ -186,6 +186,14 @@ A comprehensive showcase of GTK4 widgets and features:
186
186
  turbo start --filter=gtk4-demo
187
187
  ```
188
188
 
189
+ ### List Example
190
+
191
+ Comprehensive showcase of ListView, GridView, and ColumnView with sorting:
192
+
193
+ ```bash
194
+ turbo start --filter=list-example
195
+ ```
196
+
189
197
  ## Packages
190
198
 
191
199
  | Package | Description |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gtkx/testing",
3
- "version": "0.1.46",
3
+ "version": "0.1.48",
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/native": "0.1.48",
36
+ "@gtkx/ffi": "0.1.48",
37
+ "@gtkx/react": "0.1.48"
38
38
  },
39
39
  "scripts": {
40
40
  "build": "tsc -b && cp ../../README.md .",