@girs/bamf-3 5.3.0 → 5.4.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.
- package/README.md +1 -1
- package/bamf-3-vocabulary.d.ts +13 -0
- package/bamf-3-vocabulary.js +12 -0
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|

|
|
5
5
|

|
|
6
6
|
|
|
7
|
-
GJS TypeScript type definitions for Bamf-3 using [ts-for-gir](https://github.com/gjsify/ts-for-gir) v5.
|
|
7
|
+
GJS TypeScript type definitions for Bamf-3 using [ts-for-gir](https://github.com/gjsify/ts-for-gir) v5.4.0.
|
|
8
8
|
|
|
9
9
|
This package contains type declarations only. It ships no runtime code, so it adds
|
|
10
10
|
nothing to your program and works with any bundler or none at all.
|
package/bamf-3-vocabulary.d.ts
CHANGED
|
@@ -294,6 +294,19 @@ export const FLAG_VALUES_UNREADABLE: Readonly<Record<string, string>>;
|
|
|
294
294
|
*/
|
|
295
295
|
export const PROP_ENUMS: Readonly<Record<string, string>>;
|
|
296
296
|
|
|
297
|
+
/**
|
|
298
|
+
* `<declaration GType>.<property>` -> the GType of that property's own type.
|
|
299
|
+
*
|
|
300
|
+
* `PROP_ENUMS` one case wider, and separate on purpose: that table promises the GType it names
|
|
301
|
+
* has NUMBERS, and this one promises only that the GType is the property's. A host inferring a
|
|
302
|
+
* type from a property — the middle of an uncast lookup chain, an uncast closure's return type —
|
|
303
|
+
* reads this one; a host resolving a nick to a number reads that one.
|
|
304
|
+
*
|
|
305
|
+
* Absent means no GType can be stated, not that the property is scalar: `gchararray` is carried
|
|
306
|
+
* like any other, so absence is readable as "unknown".
|
|
307
|
+
*/
|
|
308
|
+
export const PROP_TYPES: Readonly<Record<string, string>>;
|
|
309
|
+
|
|
297
310
|
/**
|
|
298
311
|
* The kinds of value a GTK accessible property, relation or state takes.
|
|
299
312
|
*
|
package/bamf-3-vocabulary.js
CHANGED
|
@@ -127,6 +127,18 @@ export const FLAG_VALUES_UNREADABLE = {};
|
|
|
127
127
|
// vocabulary loaded too. Owners that emit none (Gdk, Pango) are inlined into the tables above.
|
|
128
128
|
export const PROP_ENUMS = {};
|
|
129
129
|
|
|
130
|
+
// `<declaration GType>.<property>` -> the GType of that property's own type.
|
|
131
|
+
//
|
|
132
|
+
// `PROP_ENUMS` one case wider, and a SEPARATE table on purpose. That one is a join with a
|
|
133
|
+
// contract — the GType it names has numbers, in this vocabulary or the owner's — and folding a
|
|
134
|
+
// plain type table in would mix "resolvable to numbers" with "not" and hand the distinction to
|
|
135
|
+
// the consumer. `ARIA_VALUE_ENUMS` beside `ARIA_VALUE_TYPES` is the same split.
|
|
136
|
+
//
|
|
137
|
+
// A row is ABSENT where no GType can be stated: a fundamental spelling outside the generator's
|
|
138
|
+
// closed map, a registered type with no `glib:type-name`, or a property with no `<type>`
|
|
139
|
+
// child. Absence therefore reads as "unknown" and never as "scalar".
|
|
140
|
+
export const PROP_TYPES = {};
|
|
141
|
+
|
|
130
142
|
// `<enum GType>.<nick>` -> the kind of value that ARIA slot takes.
|
|
131
143
|
//
|
|
132
144
|
// The one table here that is not about a ParamSpec. A GtkBuilder or Blueprint
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@girs/bamf-3",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.4.0",
|
|
4
4
|
"description": "GJS TypeScript type definitions for Bamf-3",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "bamf-3.js",
|
|
@@ -36,9 +36,9 @@
|
|
|
36
36
|
"test": "tsc --project tsconfig.json"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@girs/gjs": "^5.
|
|
40
|
-
"@girs/gobject-2.0": "^5.
|
|
41
|
-
"@girs/glib-2.0": "^5.
|
|
39
|
+
"@girs/gjs": "^5.4.0",
|
|
40
|
+
"@girs/gobject-2.0": "^5.4.0",
|
|
41
|
+
"@girs/glib-2.0": "^5.4.0" },
|
|
42
42
|
"devDependencies": {
|
|
43
43
|
"typescript": "*"
|
|
44
44
|
},
|