@girs/gtef-2 4.8.0 → 4.9.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/gtef-2-vocabulary.d.ts +21 -0
- package/gtef-2-vocabulary.js +16 -0
- package/package.json +16 -16
package/README.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|

|
|
5
5
|

|
|
6
6
|
|
|
7
|
-
GJS TypeScript type definitions for Gtef-2 using [ts-for-gir](https://github.com/gjsify/ts-for-gir) v4.
|
|
7
|
+
GJS TypeScript type definitions for Gtef-2 using [ts-for-gir](https://github.com/gjsify/ts-for-gir) v4.9.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/gtef-2-vocabulary.d.ts
CHANGED
|
@@ -240,6 +240,27 @@ export const FLAG_VALUES: Readonly<Record<string, number>>;
|
|
|
240
240
|
/** `<bitfield GType>.<nick>` -> the raw GIR `value` no number could be read from. */
|
|
241
241
|
export const FLAG_VALUES_UNREADABLE: Readonly<Record<string, string>>;
|
|
242
242
|
|
|
243
|
+
/**
|
|
244
|
+
* `<declaration GType>.<property>` -> the GType of that property's enum or bitfield.
|
|
245
|
+
*
|
|
246
|
+
* The join the value tables need and nothing else here carries. A host with no GI has a
|
|
247
|
+
* property name and a nick and needs a number; `ENUM_VALUES` is keyed by ENUM GType, and
|
|
248
|
+
* only this says which enum a property is. Keyed by DECLARATION like `OWN_PROPS`, so it is
|
|
249
|
+
* read at every link of a `DECLS` chain — `orientation` belongs to `GtkOrientable`, not
|
|
250
|
+
* to the `GtkBox` a caller starts from.
|
|
251
|
+
*
|
|
252
|
+
* Present only where the property's OWN type is the enum: an array of them, or a union that
|
|
253
|
+
* merely mentions one, would be an entry a consumer resolves wrongly.
|
|
254
|
+
*
|
|
255
|
+
* The GType named here is not always one THIS module gives numbers for. A nick vocabulary is
|
|
256
|
+
* emitted once, by the namespace that owns the enum, so `AdwComboRow.search-match-mode` names
|
|
257
|
+
* `GtkStringFilterMatchMode` and its rows are in `@girs/gtk-4.0/vocabulary` — 57 of the 438
|
|
258
|
+
* entries in a full run resolve only with the owner's vocabulary loaded beside this one. An
|
|
259
|
+
* owner with no vocabulary of its own (Gdk, Pango) is inlined here instead, so every entry
|
|
260
|
+
* resolves against SOME module.
|
|
261
|
+
*/
|
|
262
|
+
export const PROP_ENUMS: Readonly<Record<string, string>>;
|
|
263
|
+
|
|
243
264
|
/** Widget GType -> slot name -> the method that may adopt a child there. */
|
|
244
265
|
export const SLOT_CANDIDATES: Readonly<Record<string, Readonly<Record<string, string>>>>;
|
|
245
266
|
|
package/gtef-2-vocabulary.js
CHANGED
|
@@ -114,6 +114,22 @@ export const FLAG_VALUES = {
|
|
|
114
114
|
// so this is the table that shape actually reaches.
|
|
115
115
|
export const FLAG_VALUES_UNREADABLE = {};
|
|
116
116
|
|
|
117
|
+
// Declaration GType + property name -> the GType of that property's enum or bitfield.
|
|
118
|
+
//
|
|
119
|
+
// Without it the value tables above are half an answer. A host with no GI knows it must set
|
|
120
|
+
// `orientation` to the number behind the nick `vertical`; `ENUM_VALUES` is keyed
|
|
121
|
+
// `GtkOrientation.vertical`, and nothing else says that `orientation` is a
|
|
122
|
+
// `GtkOrientation`. Deriving it is not available: `never` is a member of several Gtk enums,
|
|
123
|
+
// and choosing between them produces a wrong number rather than a missing one.
|
|
124
|
+
//
|
|
125
|
+
// Only where the property's OWN type is the enum. An array of them and a union that mentions
|
|
126
|
+
// one are both entries a consumer would resolve wrongly, so neither is written.
|
|
127
|
+
//
|
|
128
|
+
// A GType named here has numbers in SOME vocabulary, not necessarily this one: the namespace
|
|
129
|
+
// that OWNS an enum publishes it, so 57 of the 438 entries a full run emits want the owner's
|
|
130
|
+
// vocabulary loaded too. Owners that emit none (Gdk, Pango) are inlined into the tables above.
|
|
131
|
+
export const PROP_ENUMS = {};
|
|
132
|
+
|
|
117
133
|
export const SLOT_CANDIDATES = {
|
|
118
134
|
GtefInfoBar: {
|
|
119
135
|
'content-widget': 'add_content_widget',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@girs/gtef-2",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.9.0",
|
|
4
4
|
"description": "GJS TypeScript type definitions for Gtef-2",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "gtef-2.js",
|
|
@@ -36,21 +36,21 @@
|
|
|
36
36
|
"test": "tsc --project tsconfig.json"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@girs/gjs": "^4.
|
|
40
|
-
"@girs/gtksource-3.0": "^4.
|
|
41
|
-
"@girs/gtk-3.0": "^4.
|
|
42
|
-
"@girs/xlib-2.0": "^4.
|
|
43
|
-
"@girs/gdk-3.0": "^4.
|
|
44
|
-
"@girs/cairo-1.0": "^4.
|
|
45
|
-
"@girs/gobject-2.0": "^4.
|
|
46
|
-
"@girs/glib-2.0": "^4.
|
|
47
|
-
"@girs/pango-1.0": "^4.
|
|
48
|
-
"@girs/harfbuzz-0.0": "^4.
|
|
49
|
-
"@girs/freetype2-2.0": "^4.
|
|
50
|
-
"@girs/gio-2.0": "^4.
|
|
51
|
-
"@girs/gmodule-2.0": "^4.
|
|
52
|
-
"@girs/gdkpixbuf-2.0": "^4.
|
|
53
|
-
"@girs/atk-1.0": "^4.
|
|
39
|
+
"@girs/gjs": "^4.9.0",
|
|
40
|
+
"@girs/gtksource-3.0": "^4.9.0",
|
|
41
|
+
"@girs/gtk-3.0": "^4.9.0",
|
|
42
|
+
"@girs/xlib-2.0": "^4.9.0",
|
|
43
|
+
"@girs/gdk-3.0": "^4.9.0",
|
|
44
|
+
"@girs/cairo-1.0": "^4.9.0",
|
|
45
|
+
"@girs/gobject-2.0": "^4.9.0",
|
|
46
|
+
"@girs/glib-2.0": "^4.9.0",
|
|
47
|
+
"@girs/pango-1.0": "^4.9.0",
|
|
48
|
+
"@girs/harfbuzz-0.0": "^4.9.0",
|
|
49
|
+
"@girs/freetype2-2.0": "^4.9.0",
|
|
50
|
+
"@girs/gio-2.0": "^4.9.0",
|
|
51
|
+
"@girs/gmodule-2.0": "^4.9.0",
|
|
52
|
+
"@girs/gdkpixbuf-2.0": "^4.9.0",
|
|
53
|
+
"@girs/atk-1.0": "^4.9.0" },
|
|
54
54
|
"devDependencies": {
|
|
55
55
|
"typescript": "*"
|
|
56
56
|
},
|