@girs/gtksource-3.0 4.5.0 → 4.7.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/gtksource-3.0)
5
5
  ![downloads/week](https://img.shields.io/npm/dw/@girs/gtksource-3.0)
6
6
 
7
- GJS TypeScript type definitions for GtkSource-3.0 using [ts-for-gir](https://github.com/gjsify/ts-for-gir) v4.5.0.
7
+ GJS TypeScript type definitions for GtkSource-3.0 using [ts-for-gir](https://github.com/gjsify/ts-for-gir) v4.7.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.
@@ -2223,7 +2223,7 @@ export namespace GtkSource {
2223
2223
 
2224
2224
  namespace CompletionItem {
2225
2225
  // Signal signatures
2226
- interface SignalSignatures extends GObject.Object.SignalSignatures {
2226
+ interface SignalSignatures extends GObject.Object.SignalSignatures, CompletionProposal.SignalSignatures {
2227
2227
  "notify::gicon": (pspec: GObject.ParamSpec) => void;
2228
2228
  "notify::icon": (pspec: GObject.ParamSpec) => void;
2229
2229
  "notify::icon-name": (pspec: GObject.ParamSpec) => void;
@@ -10091,6 +10091,17 @@ export namespace GtkSource {
10091
10091
 
10092
10092
 
10093
10093
  namespace CompletionProposal {
10094
+ // Signal signatures
10095
+ interface SignalSignatures {
10096
+ /**
10097
+ * Emitted when the proposal has changed. The completion popup
10098
+ * will react to this by updating the shown information.
10099
+ * @signal
10100
+ * @action
10101
+ * @run-last
10102
+ */
10103
+ changed: () => void;
10104
+ }
10094
10105
  /**
10095
10106
  * Interface for implementing CompletionProposal.
10096
10107
  * Contains only the virtual methods that need to be implemented.
@@ -10669,6 +10680,25 @@ export namespace GtkSource {
10669
10680
  };
10670
10681
 
10671
10682
  namespace UndoManager {
10683
+ // Signal signatures
10684
+ interface SignalSignatures {
10685
+ /**
10686
+ * Emitted when the ability to redo has changed.
10687
+ * @signal
10688
+ * @since 2.10
10689
+ * @action
10690
+ * @run-last
10691
+ */
10692
+ "can-redo-changed": () => void;
10693
+ /**
10694
+ * Emitted when the ability to undo has changed.
10695
+ * @signal
10696
+ * @since 2.10
10697
+ * @action
10698
+ * @run-last
10699
+ */
10700
+ "can-undo-changed": () => void;
10701
+ }
10672
10702
  /**
10673
10703
  * Interface for implementing UndoManager.
10674
10704
  * Contains only the virtual methods that need to be implemented.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@girs/gtksource-3.0",
3
- "version": "4.5.0",
3
+ "version": "4.7.0",
4
4
  "description": "GJS TypeScript type definitions for GtkSource-3.0",
5
5
  "type": "module",
6
6
  "module": "gtksource-3.0.js",
@@ -36,20 +36,20 @@
36
36
  "test": "tsc --project tsconfig.json"
37
37
  },
38
38
  "dependencies": {
39
- "@girs/gjs": "^4.5.0",
40
- "@girs/gtk-3.0": "^4.5.0",
41
- "@girs/xlib-2.0": "^4.5.0",
42
- "@girs/gdk-3.0": "^4.5.0",
43
- "@girs/cairo-1.0": "^4.5.0",
44
- "@girs/gobject-2.0": "^4.5.0",
45
- "@girs/glib-2.0": "^4.5.0",
46
- "@girs/pango-1.0": "^4.5.0",
47
- "@girs/harfbuzz-0.0": "^4.5.0",
48
- "@girs/freetype2-2.0": "^4.5.0",
49
- "@girs/gio-2.0": "^4.5.0",
50
- "@girs/gmodule-2.0": "^4.5.0",
51
- "@girs/gdkpixbuf-2.0": "^4.5.0",
52
- "@girs/atk-1.0": "^4.5.0" },
39
+ "@girs/gjs": "^4.7.0",
40
+ "@girs/gtk-3.0": "^4.7.0",
41
+ "@girs/xlib-2.0": "^4.7.0",
42
+ "@girs/gdk-3.0": "^4.7.0",
43
+ "@girs/cairo-1.0": "^4.7.0",
44
+ "@girs/gobject-2.0": "^4.7.0",
45
+ "@girs/glib-2.0": "^4.7.0",
46
+ "@girs/pango-1.0": "^4.7.0",
47
+ "@girs/harfbuzz-0.0": "^4.7.0",
48
+ "@girs/freetype2-2.0": "^4.7.0",
49
+ "@girs/gio-2.0": "^4.7.0",
50
+ "@girs/gmodule-2.0": "^4.7.0",
51
+ "@girs/gdkpixbuf-2.0": "^4.7.0",
52
+ "@girs/atk-1.0": "^4.7.0" },
53
53
  "devDependencies": {
54
54
  "typescript": "*"
55
55
  },