@girs/cmenu-3.0 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/cmenu-3.0)
5
5
  ![downloads/week](https://img.shields.io/npm/dw/@girs/cmenu-3.0)
6
6
 
7
- GJS TypeScript type definitions for CMenu-3.0 using [ts-for-gir](https://github.com/gjsify/ts-for-gir) v5.3.0.
7
+ GJS TypeScript type definitions for CMenu-3.0 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.
@@ -289,6 +289,19 @@ export const FLAG_VALUES_UNREADABLE: Readonly<Record<string, string>>;
289
289
  */
290
290
  export const PROP_ENUMS: Readonly<Record<string, string>>;
291
291
 
292
+ /**
293
+ * `<declaration GType>.<property>` -> the GType of that property's own type.
294
+ *
295
+ * `PROP_ENUMS` one case wider, and separate on purpose: that table promises the GType it names
296
+ * has NUMBERS, and this one promises only that the GType is the property's. A host inferring a
297
+ * type from a property — the middle of an uncast lookup chain, an uncast closure's return type —
298
+ * reads this one; a host resolving a nick to a number reads that one.
299
+ *
300
+ * Absent means no GType can be stated, not that the property is scalar: `gchararray` is carried
301
+ * like any other, so absence is readable as "unknown".
302
+ */
303
+ export const PROP_TYPES: Readonly<Record<string, string>>;
304
+
292
305
  /**
293
306
  * The kinds of value a GTK accessible property, relation or state takes.
294
307
  *
@@ -132,6 +132,22 @@ export const PROP_ENUMS = {
132
132
  'GMenuTree.flags': 'GMenuTreeFlags',
133
133
  };
134
134
 
135
+ // `<declaration GType>.<property>` -> the GType of that property's own type.
136
+ //
137
+ // `PROP_ENUMS` one case wider, and a SEPARATE table on purpose. That one is a join with a
138
+ // contract — the GType it names has numbers, in this vocabulary or the owner's — and folding a
139
+ // plain type table in would mix "resolvable to numbers" with "not" and hand the distinction to
140
+ // the consumer. `ARIA_VALUE_ENUMS` beside `ARIA_VALUE_TYPES` is the same split.
141
+ //
142
+ // A row is ABSENT where no GType can be stated: a fundamental spelling outside the generator's
143
+ // closed map, a registered type with no `glib:type-name`, or a property with no `<type>`
144
+ // child. Absence therefore reads as "unknown" and never as "scalar".
145
+ export const PROP_TYPES = {
146
+ 'GMenuTree.flags': 'GMenuTreeFlags',
147
+ 'GMenuTree.menu-basename': 'gchararray',
148
+ 'GMenuTree.menu-path': 'gchararray',
149
+ };
150
+
135
151
  // `<enum GType>.<nick>` -> the kind of value that ARIA slot takes.
136
152
  //
137
153
  // 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/cmenu-3.0",
3
- "version": "5.3.0",
3
+ "version": "5.4.0",
4
4
  "description": "GJS TypeScript type definitions for CMenu-3.0",
5
5
  "type": "module",
6
6
  "module": "cmenu-3.0.js",
@@ -36,11 +36,11 @@
36
36
  "test": "tsc --project tsconfig.json"
37
37
  },
38
38
  "dependencies": {
39
- "@girs/gjs": "^5.3.0",
40
- "@girs/gio-2.0": "^5.3.0",
41
- "@girs/gobject-2.0": "^5.3.0",
42
- "@girs/glib-2.0": "^5.3.0",
43
- "@girs/gmodule-2.0": "^5.3.0" },
39
+ "@girs/gjs": "^5.4.0",
40
+ "@girs/gio-2.0": "^5.4.0",
41
+ "@girs/gobject-2.0": "^5.4.0",
42
+ "@girs/glib-2.0": "^5.4.0",
43
+ "@girs/gmodule-2.0": "^5.4.0" },
44
44
  "devDependencies": {
45
45
  "typescript": "*"
46
46
  },