@girs/gspell-1 4.8.0 → 5.0.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/gspell-1-vocabulary.d.ts +21 -0
- package/gspell-1-vocabulary.js +16 -0
- package/gspell-1.d.ts +9 -36
- package/package.json +15 -15
package/README.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|

|
|
5
5
|

|
|
6
6
|
|
|
7
|
-
GJS TypeScript type definitions for Gspell-1 using [ts-for-gir](https://github.com/gjsify/ts-for-gir)
|
|
7
|
+
GJS TypeScript type definitions for Gspell-1 using [ts-for-gir](https://github.com/gjsify/ts-for-gir) v5.0.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/gspell-1-vocabulary.d.ts
CHANGED
|
@@ -244,6 +244,27 @@ export const FLAG_VALUES: Readonly<Record<string, number>>;
|
|
|
244
244
|
/** `<bitfield GType>.<nick>` -> the raw GIR `value` no number could be read from. */
|
|
245
245
|
export const FLAG_VALUES_UNREADABLE: Readonly<Record<string, string>>;
|
|
246
246
|
|
|
247
|
+
/**
|
|
248
|
+
* `<declaration GType>.<property>` -> the GType of that property's enum or bitfield.
|
|
249
|
+
*
|
|
250
|
+
* The join the value tables need and nothing else here carries. A host with no GI has a
|
|
251
|
+
* property name and a nick and needs a number; `ENUM_VALUES` is keyed by ENUM GType, and
|
|
252
|
+
* only this says which enum a property is. Keyed by DECLARATION like `OWN_PROPS`, so it is
|
|
253
|
+
* read at every link of a `DECLS` chain — `orientation` belongs to `GtkOrientable`, not
|
|
254
|
+
* to the `GtkBox` a caller starts from.
|
|
255
|
+
*
|
|
256
|
+
* Present only where the property's OWN type is the enum: an array of them, or a union that
|
|
257
|
+
* merely mentions one, would be an entry a consumer resolves wrongly.
|
|
258
|
+
*
|
|
259
|
+
* The GType named here is not always one THIS module gives numbers for. A nick vocabulary is
|
|
260
|
+
* emitted once, by the namespace that owns the enum, so `AdwComboRow.search-match-mode` names
|
|
261
|
+
* `GtkStringFilterMatchMode` and its rows are in `@girs/gtk-4.0/vocabulary` — 57 of the 438
|
|
262
|
+
* entries in a full run resolve only with the owner's vocabulary loaded beside this one. An
|
|
263
|
+
* owner with no vocabulary of its own (Gdk, Pango) is inlined here instead, so every entry
|
|
264
|
+
* resolves against SOME module.
|
|
265
|
+
*/
|
|
266
|
+
export const PROP_ENUMS: Readonly<Record<string, string>>;
|
|
267
|
+
|
|
247
268
|
/** Widget GType -> slot name -> the method that may adopt a child there. */
|
|
248
269
|
export const SLOT_CANDIDATES: Readonly<Record<string, Readonly<Record<string, string>>>>;
|
|
249
270
|
|
package/gspell-1-vocabulary.js
CHANGED
|
@@ -94,6 +94,22 @@ export const FLAG_VALUES = {};
|
|
|
94
94
|
// so this is the table that shape actually reaches.
|
|
95
95
|
export const FLAG_VALUES_UNREADABLE = {};
|
|
96
96
|
|
|
97
|
+
// Declaration GType + property name -> the GType of that property's enum or bitfield.
|
|
98
|
+
//
|
|
99
|
+
// Without it the value tables above are half an answer. A host with no GI knows it must set
|
|
100
|
+
// `orientation` to the number behind the nick `vertical`; `ENUM_VALUES` is keyed
|
|
101
|
+
// `GtkOrientation.vertical`, and nothing else says that `orientation` is a
|
|
102
|
+
// `GtkOrientation`. Deriving it is not available: `never` is a member of several Gtk enums,
|
|
103
|
+
// and choosing between them produces a wrong number rather than a missing one.
|
|
104
|
+
//
|
|
105
|
+
// Only where the property's OWN type is the enum. An array of them and a union that mentions
|
|
106
|
+
// one are both entries a consumer would resolve wrongly, so neither is written.
|
|
107
|
+
//
|
|
108
|
+
// A GType named here has numbers in SOME vocabulary, not necessarily this one: the namespace
|
|
109
|
+
// that OWNS an enum publishes it, so 57 of the 438 entries a full run emits want the owner's
|
|
110
|
+
// vocabulary loaded too. Owners that emit none (Gdk, Pango) are inlined into the tables above.
|
|
111
|
+
export const PROP_ENUMS = {};
|
|
112
|
+
|
|
97
113
|
export const SLOT_CANDIDATES = {};
|
|
98
114
|
|
|
99
115
|
export const SINCE = {};
|
package/gspell-1.d.ts
CHANGED
|
@@ -141,15 +141,12 @@ export namespace Gspell {
|
|
|
141
141
|
// Signals
|
|
142
142
|
/** @signal */
|
|
143
143
|
connect<K extends keyof Checker.SignalSignatures>(signal: K, callback: GObject.SignalCallback<this, Checker.SignalSignatures[K]>): number;
|
|
144
|
-
connect(signal: string, callback: (...args: any[]) => any): number;
|
|
145
144
|
|
|
146
145
|
/** @signal */
|
|
147
146
|
connect_after<K extends keyof Checker.SignalSignatures>(signal: K, callback: GObject.SignalCallback<this, Checker.SignalSignatures[K]>): number;
|
|
148
|
-
connect_after(signal: string, callback: (...args: any[]) => any): number;
|
|
149
147
|
|
|
150
148
|
/** @signal */
|
|
151
|
-
emit<K extends keyof Checker.SignalSignatures>(signal: K, ...args: GObject.GjsParameters<Checker.SignalSignatures[K]>
|
|
152
|
-
emit(signal: string, ...args: any[]): void;
|
|
149
|
+
emit<K extends keyof Checker.SignalSignatures>(signal: K, ...args: GObject.GjsParameters<Checker.SignalSignatures[K]>): void;
|
|
153
150
|
|
|
154
151
|
// Virtual methods
|
|
155
152
|
/**
|
|
@@ -367,15 +364,12 @@ export namespace Gspell {
|
|
|
367
364
|
// Signals
|
|
368
365
|
/** @signal */
|
|
369
366
|
connect<K extends keyof CheckerDialog.SignalSignatures>(signal: K, callback: GObject.SignalCallback<this, CheckerDialog.SignalSignatures[K]>): number;
|
|
370
|
-
connect(signal: string, callback: (...args: any[]) => any): number;
|
|
371
367
|
|
|
372
368
|
/** @signal */
|
|
373
369
|
connect_after<K extends keyof CheckerDialog.SignalSignatures>(signal: K, callback: GObject.SignalCallback<this, CheckerDialog.SignalSignatures[K]>): number;
|
|
374
|
-
connect_after(signal: string, callback: (...args: any[]) => any): number;
|
|
375
370
|
|
|
376
371
|
/** @signal */
|
|
377
|
-
emit<K extends keyof CheckerDialog.SignalSignatures>(signal: K, ...args: GObject.GjsParameters<CheckerDialog.SignalSignatures[K]>
|
|
378
|
-
emit(signal: string, ...args: any[]): void;
|
|
372
|
+
emit<K extends keyof CheckerDialog.SignalSignatures>(signal: K, ...args: GObject.GjsParameters<CheckerDialog.SignalSignatures[K]>): void;
|
|
379
373
|
|
|
380
374
|
// Methods
|
|
381
375
|
/**
|
|
@@ -455,15 +449,12 @@ export namespace Gspell {
|
|
|
455
449
|
// Signals
|
|
456
450
|
/** @signal */
|
|
457
451
|
connect<K extends keyof Entry.SignalSignatures>(signal: K, callback: GObject.SignalCallback<this, Entry.SignalSignatures[K]>): number;
|
|
458
|
-
connect(signal: string, callback: (...args: any[]) => any): number;
|
|
459
452
|
|
|
460
453
|
/** @signal */
|
|
461
454
|
connect_after<K extends keyof Entry.SignalSignatures>(signal: K, callback: GObject.SignalCallback<this, Entry.SignalSignatures[K]>): number;
|
|
462
|
-
connect_after(signal: string, callback: (...args: any[]) => any): number;
|
|
463
455
|
|
|
464
456
|
/** @signal */
|
|
465
|
-
emit<K extends keyof Entry.SignalSignatures>(signal: K, ...args: GObject.GjsParameters<Entry.SignalSignatures[K]>
|
|
466
|
-
emit(signal: string, ...args: any[]): void;
|
|
457
|
+
emit<K extends keyof Entry.SignalSignatures>(signal: K, ...args: GObject.GjsParameters<Entry.SignalSignatures[K]>): void;
|
|
467
458
|
|
|
468
459
|
// Static methods
|
|
469
460
|
/**
|
|
@@ -596,15 +587,12 @@ export namespace Gspell {
|
|
|
596
587
|
// Signals
|
|
597
588
|
/** @signal */
|
|
598
589
|
connect<K extends keyof EntryBuffer.SignalSignatures>(signal: K, callback: GObject.SignalCallback<this, EntryBuffer.SignalSignatures[K]>): number;
|
|
599
|
-
connect(signal: string, callback: (...args: any[]) => any): number;
|
|
600
590
|
|
|
601
591
|
/** @signal */
|
|
602
592
|
connect_after<K extends keyof EntryBuffer.SignalSignatures>(signal: K, callback: GObject.SignalCallback<this, EntryBuffer.SignalSignatures[K]>): number;
|
|
603
|
-
connect_after(signal: string, callback: (...args: any[]) => any): number;
|
|
604
593
|
|
|
605
594
|
/** @signal */
|
|
606
|
-
emit<K extends keyof EntryBuffer.SignalSignatures>(signal: K, ...args: GObject.GjsParameters<EntryBuffer.SignalSignatures[K]>
|
|
607
|
-
emit(signal: string, ...args: any[]): void;
|
|
595
|
+
emit<K extends keyof EntryBuffer.SignalSignatures>(signal: K, ...args: GObject.GjsParameters<EntryBuffer.SignalSignatures[K]>): void;
|
|
608
596
|
|
|
609
597
|
// Static methods
|
|
610
598
|
/**
|
|
@@ -733,15 +721,12 @@ export namespace Gspell {
|
|
|
733
721
|
// Signals
|
|
734
722
|
/** @signal */
|
|
735
723
|
connect<K extends keyof LanguageChooserButton.SignalSignatures>(signal: K, callback: GObject.SignalCallback<this, LanguageChooserButton.SignalSignatures[K]>): number;
|
|
736
|
-
connect(signal: string, callback: (...args: any[]) => any): number;
|
|
737
724
|
|
|
738
725
|
/** @signal */
|
|
739
726
|
connect_after<K extends keyof LanguageChooserButton.SignalSignatures>(signal: K, callback: GObject.SignalCallback<this, LanguageChooserButton.SignalSignatures[K]>): number;
|
|
740
|
-
connect_after(signal: string, callback: (...args: any[]) => any): number;
|
|
741
727
|
|
|
742
728
|
/** @signal */
|
|
743
|
-
emit<K extends keyof LanguageChooserButton.SignalSignatures>(signal: K, ...args: GObject.GjsParameters<LanguageChooserButton.SignalSignatures[K]>
|
|
744
|
-
emit(signal: string, ...args: any[]): void;
|
|
729
|
+
emit<K extends keyof LanguageChooserButton.SignalSignatures>(signal: K, ...args: GObject.GjsParameters<LanguageChooserButton.SignalSignatures[K]>): void;
|
|
745
730
|
|
|
746
731
|
/**
|
|
747
732
|
* The selected {@link Gspell.Language}.
|
|
@@ -1278,15 +1263,12 @@ export namespace Gspell {
|
|
|
1278
1263
|
// Signals
|
|
1279
1264
|
/** @signal */
|
|
1280
1265
|
connect<K extends keyof LanguageChooserDialog.SignalSignatures>(signal: K, callback: GObject.SignalCallback<this, LanguageChooserDialog.SignalSignatures[K]>): number;
|
|
1281
|
-
connect(signal: string, callback: (...args: any[]) => any): number;
|
|
1282
1266
|
|
|
1283
1267
|
/** @signal */
|
|
1284
1268
|
connect_after<K extends keyof LanguageChooserDialog.SignalSignatures>(signal: K, callback: GObject.SignalCallback<this, LanguageChooserDialog.SignalSignatures[K]>): number;
|
|
1285
|
-
connect_after(signal: string, callback: (...args: any[]) => any): number;
|
|
1286
1269
|
|
|
1287
1270
|
/** @signal */
|
|
1288
|
-
emit<K extends keyof LanguageChooserDialog.SignalSignatures>(signal: K, ...args: GObject.GjsParameters<LanguageChooserDialog.SignalSignatures[K]>
|
|
1289
|
-
emit(signal: string, ...args: any[]): void;
|
|
1271
|
+
emit<K extends keyof LanguageChooserDialog.SignalSignatures>(signal: K, ...args: GObject.GjsParameters<LanguageChooserDialog.SignalSignatures[K]>): void;
|
|
1290
1272
|
|
|
1291
1273
|
/**
|
|
1292
1274
|
* The selected {@link Gspell.Language}.
|
|
@@ -1392,15 +1374,12 @@ export namespace Gspell {
|
|
|
1392
1374
|
// Signals
|
|
1393
1375
|
/** @signal */
|
|
1394
1376
|
connect<K extends keyof NavigatorTextView.SignalSignatures>(signal: K, callback: GObject.SignalCallback<this, NavigatorTextView.SignalSignatures[K]>): number;
|
|
1395
|
-
connect(signal: string, callback: (...args: any[]) => any): number;
|
|
1396
1377
|
|
|
1397
1378
|
/** @signal */
|
|
1398
1379
|
connect_after<K extends keyof NavigatorTextView.SignalSignatures>(signal: K, callback: GObject.SignalCallback<this, NavigatorTextView.SignalSignatures[K]>): number;
|
|
1399
|
-
connect_after(signal: string, callback: (...args: any[]) => any): number;
|
|
1400
1380
|
|
|
1401
1381
|
/** @signal */
|
|
1402
|
-
emit<K extends keyof NavigatorTextView.SignalSignatures>(signal: K, ...args: GObject.GjsParameters<NavigatorTextView.SignalSignatures[K]>
|
|
1403
|
-
emit(signal: string, ...args: any[]): void;
|
|
1382
|
+
emit<K extends keyof NavigatorTextView.SignalSignatures>(signal: K, ...args: GObject.GjsParameters<NavigatorTextView.SignalSignatures[K]>): void;
|
|
1404
1383
|
|
|
1405
1384
|
// Static methods
|
|
1406
1385
|
/**
|
|
@@ -1536,15 +1515,12 @@ export namespace Gspell {
|
|
|
1536
1515
|
// Signals
|
|
1537
1516
|
/** @signal */
|
|
1538
1517
|
connect<K extends keyof TextBuffer.SignalSignatures>(signal: K, callback: GObject.SignalCallback<this, TextBuffer.SignalSignatures[K]>): number;
|
|
1539
|
-
connect(signal: string, callback: (...args: any[]) => any): number;
|
|
1540
1518
|
|
|
1541
1519
|
/** @signal */
|
|
1542
1520
|
connect_after<K extends keyof TextBuffer.SignalSignatures>(signal: K, callback: GObject.SignalCallback<this, TextBuffer.SignalSignatures[K]>): number;
|
|
1543
|
-
connect_after(signal: string, callback: (...args: any[]) => any): number;
|
|
1544
1521
|
|
|
1545
1522
|
/** @signal */
|
|
1546
|
-
emit<K extends keyof TextBuffer.SignalSignatures>(signal: K, ...args: GObject.GjsParameters<TextBuffer.SignalSignatures[K]>
|
|
1547
|
-
emit(signal: string, ...args: any[]): void;
|
|
1523
|
+
emit<K extends keyof TextBuffer.SignalSignatures>(signal: K, ...args: GObject.GjsParameters<TextBuffer.SignalSignatures[K]>): void;
|
|
1548
1524
|
|
|
1549
1525
|
// Static methods
|
|
1550
1526
|
/**
|
|
@@ -1655,15 +1631,12 @@ export namespace Gspell {
|
|
|
1655
1631
|
// Signals
|
|
1656
1632
|
/** @signal */
|
|
1657
1633
|
connect<K extends keyof TextView.SignalSignatures>(signal: K, callback: GObject.SignalCallback<this, TextView.SignalSignatures[K]>): number;
|
|
1658
|
-
connect(signal: string, callback: (...args: any[]) => any): number;
|
|
1659
1634
|
|
|
1660
1635
|
/** @signal */
|
|
1661
1636
|
connect_after<K extends keyof TextView.SignalSignatures>(signal: K, callback: GObject.SignalCallback<this, TextView.SignalSignatures[K]>): number;
|
|
1662
|
-
connect_after(signal: string, callback: (...args: any[]) => any): number;
|
|
1663
1637
|
|
|
1664
1638
|
/** @signal */
|
|
1665
|
-
emit<K extends keyof TextView.SignalSignatures>(signal: K, ...args: GObject.GjsParameters<TextView.SignalSignatures[K]>
|
|
1666
|
-
emit(signal: string, ...args: any[]): void;
|
|
1639
|
+
emit<K extends keyof TextView.SignalSignatures>(signal: K, ...args: GObject.GjsParameters<TextView.SignalSignatures[K]>): void;
|
|
1667
1640
|
|
|
1668
1641
|
// Static methods
|
|
1669
1642
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@girs/gspell-1",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "5.0.0",
|
|
4
4
|
"description": "GJS TypeScript type definitions for Gspell-1",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "gspell-1.js",
|
|
@@ -36,20 +36,20 @@
|
|
|
36
36
|
"test": "tsc --project tsconfig.json"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@girs/gjs": "^
|
|
40
|
-
"@girs/gtk-3.0": "^
|
|
41
|
-
"@girs/xlib-2.0": "^
|
|
42
|
-
"@girs/gdk-3.0": "^
|
|
43
|
-
"@girs/cairo-1.0": "^
|
|
44
|
-
"@girs/gobject-2.0": "^
|
|
45
|
-
"@girs/glib-2.0": "^
|
|
46
|
-
"@girs/pango-1.0": "^
|
|
47
|
-
"@girs/harfbuzz-0.0": "^
|
|
48
|
-
"@girs/freetype2-2.0": "^
|
|
49
|
-
"@girs/gio-2.0": "^
|
|
50
|
-
"@girs/gmodule-2.0": "^
|
|
51
|
-
"@girs/gdkpixbuf-2.0": "^
|
|
52
|
-
"@girs/atk-1.0": "^
|
|
39
|
+
"@girs/gjs": "^5.0.0",
|
|
40
|
+
"@girs/gtk-3.0": "^5.0.0",
|
|
41
|
+
"@girs/xlib-2.0": "^5.0.0",
|
|
42
|
+
"@girs/gdk-3.0": "^5.0.0",
|
|
43
|
+
"@girs/cairo-1.0": "^5.0.0",
|
|
44
|
+
"@girs/gobject-2.0": "^5.0.0",
|
|
45
|
+
"@girs/glib-2.0": "^5.0.0",
|
|
46
|
+
"@girs/pango-1.0": "^5.0.0",
|
|
47
|
+
"@girs/harfbuzz-0.0": "^5.0.0",
|
|
48
|
+
"@girs/freetype2-2.0": "^5.0.0",
|
|
49
|
+
"@girs/gio-2.0": "^5.0.0",
|
|
50
|
+
"@girs/gmodule-2.0": "^5.0.0",
|
|
51
|
+
"@girs/gdkpixbuf-2.0": "^5.0.0",
|
|
52
|
+
"@girs/atk-1.0": "^5.0.0" },
|
|
53
53
|
"devDependencies": {
|
|
54
54
|
"typescript": "*"
|
|
55
55
|
},
|