@gtkx/testing 0.1.47 → 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.
- package/README.md +8 -0
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -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.
|
|
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/
|
|
36
|
-
"@gtkx/
|
|
37
|
-
"@gtkx/
|
|
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 .",
|