@girs/metatest-12 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 CHANGED
@@ -4,7 +4,7 @@
4
4
  ![version](https://img.shields.io/npm/v/@girs/metatest-12)
5
5
  ![downloads/week](https://img.shields.io/npm/dw/@girs/metatest-12)
6
6
 
7
- GJS TypeScript type definitions for MetaTest-12 using [ts-for-gir](https://github.com/gjsify/ts-for-gir) v5.3.0.
7
+ GJS TypeScript type definitions for MetaTest-12 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.
@@ -275,6 +275,19 @@ export const FLAG_VALUES_UNREADABLE: Readonly<Record<string, string>>;
275
275
  */
276
276
  export const PROP_ENUMS: Readonly<Record<string, string>>;
277
277
 
278
+ /**
279
+ * `<declaration GType>.<property>` -> the GType of that property's own type.
280
+ *
281
+ * `PROP_ENUMS` one case wider, and separate on purpose: that table promises the GType it names
282
+ * has NUMBERS, and this one promises only that the GType is the property's. A host inferring a
283
+ * type from a property — the middle of an uncast lookup chain, an uncast closure's return type —
284
+ * reads this one; a host resolving a nick to a number reads that one.
285
+ *
286
+ * Absent means no GType can be stated, not that the property is scalar: `gchararray` is carried
287
+ * like any other, so absence is readable as "unknown".
288
+ */
289
+ export const PROP_TYPES: Readonly<Record<string, string>>;
290
+
278
291
  /**
279
292
  * The kinds of value a GTK accessible property, relation or state takes.
280
293
  *
@@ -120,6 +120,18 @@ export const FLAG_VALUES_UNREADABLE = {};
120
120
  // vocabulary loaded too. Owners that emit none (Gdk, Pango) are inlined into the tables above.
121
121
  export const PROP_ENUMS = {};
122
122
 
123
+ // `<declaration GType>.<property>` -> the GType of that property's own type.
124
+ //
125
+ // `PROP_ENUMS` one case wider, and a SEPARATE table on purpose. That one is a join with a
126
+ // contract — the GType it names has numbers, in this vocabulary or the owner's — and folding a
127
+ // plain type table in would mix "resolvable to numbers" with "not" and hand the distinction to
128
+ // the consumer. `ARIA_VALUE_ENUMS` beside `ARIA_VALUE_TYPES` is the same split.
129
+ //
130
+ // A row is ABSENT where no GType can be stated: a fundamental spelling outside the generator's
131
+ // closed map, a registered type with no `glib:type-name`, or a property with no `<type>`
132
+ // child. Absence therefore reads as "unknown" and never as "scalar".
133
+ export const PROP_TYPES = {};
134
+
123
135
  // `<enum GType>.<nick>` -> the kind of value that ARIA slot takes.
124
136
  //
125
137
  // 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/metatest-12",
3
- "version": "5.3.0",
3
+ "version": "5.4.0",
4
4
  "description": "GJS TypeScript type definitions for MetaTest-12",
5
5
  "type": "module",
6
6
  "module": "metatest-12.js",
@@ -36,27 +36,27 @@
36
36
  "test": "tsc --project tsconfig.json"
37
37
  },
38
38
  "dependencies": {
39
- "@girs/gjs": "^5.3.0",
40
- "@girs/xlib-2.0": "^5.3.0",
41
- "@girs/xfixes-4.0": "^5.3.0",
42
- "@girs/meta-12": "^5.3.0",
43
- "@girs/gobject-2.0": "^5.3.0",
44
- "@girs/glib-2.0": "^5.3.0",
45
- "@girs/gdesktopenums-3.0": "^5.3.0",
46
- "@girs/coglpango-12": "^5.3.0",
47
- "@girs/pangocairo-1.0": "^5.3.0",
48
- "@girs/cairo-1.0": "^5.3.0",
49
- "@girs/pango-1.0": "^5.3.0",
50
- "@girs/harfbuzz-0.0": "^5.3.0",
51
- "@girs/freetype2-2.0": "^5.3.0",
52
- "@girs/gio-2.0": "^5.3.0",
53
- "@girs/gmodule-2.0": "^5.3.0",
54
- "@girs/cogl-12": "^5.3.0",
55
- "@girs/graphene-1.0": "^5.3.0",
56
- "@girs/gl-1.0": "^5.3.0",
57
- "@girs/clutter-12": "^5.3.0",
58
- "@girs/json-1.0": "^5.3.0",
59
- "@girs/atk-1.0": "^5.3.0" },
39
+ "@girs/gjs": "^5.4.0",
40
+ "@girs/xlib-2.0": "^5.4.0",
41
+ "@girs/xfixes-4.0": "^5.4.0",
42
+ "@girs/meta-12": "^5.4.0",
43
+ "@girs/gobject-2.0": "^5.4.0",
44
+ "@girs/glib-2.0": "^5.4.0",
45
+ "@girs/gdesktopenums-3.0": "^5.4.0",
46
+ "@girs/coglpango-12": "^5.4.0",
47
+ "@girs/pangocairo-1.0": "^5.4.0",
48
+ "@girs/cairo-1.0": "^5.4.0",
49
+ "@girs/pango-1.0": "^5.4.0",
50
+ "@girs/harfbuzz-0.0": "^5.4.0",
51
+ "@girs/freetype2-2.0": "^5.4.0",
52
+ "@girs/gio-2.0": "^5.4.0",
53
+ "@girs/gmodule-2.0": "^5.4.0",
54
+ "@girs/cogl-12": "^5.4.0",
55
+ "@girs/graphene-1.0": "^5.4.0",
56
+ "@girs/gl-1.0": "^5.4.0",
57
+ "@girs/clutter-12": "^5.4.0",
58
+ "@girs/json-1.0": "^5.4.0",
59
+ "@girs/atk-1.0": "^5.4.0" },
60
60
  "devDependencies": {
61
61
  "typescript": "*"
62
62
  },