@girs/meta-9 4.5.0 → 4.6.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.
Files changed (3) hide show
  1. package/README.md +1 -1
  2. package/meta-9.d.ts +25 -7
  3. package/package.json +24 -24
package/README.md CHANGED
@@ -4,7 +4,7 @@
4
4
  ![version](https://img.shields.io/npm/v/@girs/meta-9)
5
5
  ![downloads/week](https://img.shields.io/npm/dw/@girs/meta-9)
6
6
 
7
- GJS TypeScript type definitions for Meta-9 using [ts-for-gir](https://github.com/gjsify/ts-for-gir) v4.5.0.
7
+ GJS TypeScript type definitions for Meta-9 using [ts-for-gir](https://github.com/gjsify/ts-for-gir) v4.6.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/meta-9.d.ts CHANGED
@@ -2700,7 +2700,7 @@ export namespace Meta {
2700
2700
 
2701
2701
  namespace BackgroundActor {
2702
2702
  // Signal signatures
2703
- interface SignalSignatures extends Clutter.Actor.SignalSignatures {
2703
+ interface SignalSignatures extends Clutter.Actor.SignalSignatures, Clutter.Container.SignalSignatures {
2704
2704
  "notify::meta-display": (pspec: GObject.ParamSpec) => void;
2705
2705
  "notify::monitor": (pspec: GObject.ParamSpec) => void;
2706
2706
  "notify::actions": (pspec: GObject.ParamSpec) => void;
@@ -3311,7 +3311,7 @@ export namespace Meta {
3311
3311
 
3312
3312
  namespace BackgroundContent {
3313
3313
  // Signal signatures
3314
- interface SignalSignatures extends GObject.Object.SignalSignatures {
3314
+ interface SignalSignatures extends GObject.Object.SignalSignatures, Clutter.Content.SignalSignatures {
3315
3315
  "notify::background": (pspec: GObject.ParamSpec) => void;
3316
3316
  "notify::brightness": (pspec: GObject.ParamSpec) => void;
3317
3317
  "notify::gradient": (pspec: GObject.ParamSpec) => void;
@@ -3560,7 +3560,7 @@ export namespace Meta {
3560
3560
 
3561
3561
  namespace BackgroundGroup {
3562
3562
  // Signal signatures
3563
- interface SignalSignatures extends Clutter.Actor.SignalSignatures {
3563
+ interface SignalSignatures extends Clutter.Actor.SignalSignatures, Clutter.Container.SignalSignatures {
3564
3564
  "notify::actions": (pspec: GObject.ParamSpec) => void;
3565
3565
  "notify::allocation": (pspec: GObject.ParamSpec) => void;
3566
3566
  "notify::background-color": (pspec: GObject.ParamSpec) => void;
@@ -6294,7 +6294,7 @@ export namespace Meta {
6294
6294
 
6295
6295
  namespace ShapedTexture {
6296
6296
  // Signal signatures
6297
- interface SignalSignatures extends GObject.Object.SignalSignatures {
6297
+ interface SignalSignatures extends GObject.Object.SignalSignatures, Clutter.Content.SignalSignatures {
6298
6298
  /**
6299
6299
  * @signal
6300
6300
  * @run-last
@@ -6510,7 +6510,7 @@ export namespace Meta {
6510
6510
 
6511
6511
  namespace Stage {
6512
6512
  // Signal signatures
6513
- interface SignalSignatures extends Clutter.Stage.SignalSignatures {
6513
+ interface SignalSignatures extends Clutter.Stage.SignalSignatures, Clutter.Container.SignalSignatures {
6514
6514
  /**
6515
6515
  * @signal
6516
6516
  * @run-last
@@ -7810,7 +7810,7 @@ export namespace Meta {
7810
7810
 
7811
7811
  namespace WindowActor {
7812
7812
  // Signal signatures
7813
- interface SignalSignatures extends Clutter.Actor.SignalSignatures {
7813
+ interface SignalSignatures extends Clutter.Actor.SignalSignatures, Clutter.Container.SignalSignatures {
7814
7814
  /**
7815
7815
  * Notify that one or more of the surfaces of the window have been damaged.
7816
7816
  * @signal
@@ -8492,7 +8492,7 @@ export namespace Meta {
8492
8492
 
8493
8493
  namespace WindowGroup {
8494
8494
  // Signal signatures
8495
- interface SignalSignatures extends Clutter.Actor.SignalSignatures {
8495
+ interface SignalSignatures extends Clutter.Actor.SignalSignatures, Clutter.Container.SignalSignatures {
8496
8496
  "notify::actions": (pspec: GObject.ParamSpec) => void;
8497
8497
  "notify::allocation": (pspec: GObject.ParamSpec) => void;
8498
8498
  "notify::background-color": (pspec: GObject.ParamSpec) => void;
@@ -10044,6 +10044,15 @@ export namespace Meta {
10044
10044
  type X11DisplayClass = typeof X11Display;
10045
10045
 
10046
10046
  namespace CloseDialog {
10047
+ // Signal signatures
10048
+ interface SignalSignatures {
10049
+ /**
10050
+ * @signal
10051
+ * @action
10052
+ * @run-last
10053
+ */
10054
+ response: (object: CloseDialogResponse) => void;
10055
+ }
10047
10056
  /**
10048
10057
  * Interface for implementing CloseDialog.
10049
10058
  * Contains only the virtual methods that need to be implemented.
@@ -10130,6 +10139,15 @@ export namespace Meta {
10130
10139
  };
10131
10140
 
10132
10141
  namespace InhibitShortcutsDialog {
10142
+ // Signal signatures
10143
+ interface SignalSignatures {
10144
+ /**
10145
+ * @signal
10146
+ * @action
10147
+ * @run-last
10148
+ */
10149
+ response: (object: InhibitShortcutsDialogResponse) => void;
10150
+ }
10133
10151
  /**
10134
10152
  * Interface for implementing InhibitShortcutsDialog.
10135
10153
  * Contains only the virtual methods that need to be implemented.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@girs/meta-9",
3
- "version": "4.5.0",
3
+ "version": "4.6.0",
4
4
  "description": "GJS TypeScript type definitions for Meta-9",
5
5
  "type": "module",
6
6
  "module": "meta-9.js",
@@ -31,29 +31,29 @@
31
31
  "test": "tsc --project tsconfig.json"
32
32
  },
33
33
  "dependencies": {
34
- "@girs/gjs": "^4.5.0",
35
- "@girs/xlib-2.0": "^4.5.0",
36
- "@girs/xfixes-4.0": "^4.5.0",
37
- "@girs/gtk-3.0": "^4.5.0",
38
- "@girs/gdk-3.0": "^4.5.0",
39
- "@girs/cairo-1.0": "^4.5.0",
40
- "@girs/gobject-2.0": "^4.5.0",
41
- "@girs/glib-2.0": "^4.5.0",
42
- "@girs/pango-1.0": "^4.5.0",
43
- "@girs/harfbuzz-0.0": "^4.5.0",
44
- "@girs/freetype2-2.0": "^4.5.0",
45
- "@girs/gio-2.0": "^4.5.0",
46
- "@girs/gmodule-2.0": "^4.5.0",
47
- "@girs/gdkpixbuf-2.0": "^4.5.0",
48
- "@girs/atk-1.0": "^4.5.0",
49
- "@girs/gdesktopenums-3.0": "^4.5.0",
50
- "@girs/coglpango-9": "^4.5.0",
51
- "@girs/pangocairo-1.0": "^4.5.0",
52
- "@girs/cogl-9": "^4.5.0",
53
- "@girs/graphene-1.0": "^4.5.0",
54
- "@girs/gl-1.0": "^4.5.0",
55
- "@girs/clutter-9": "^4.5.0",
56
- "@girs/json-1.0": "^4.5.0" },
34
+ "@girs/gjs": "^4.6.0",
35
+ "@girs/xlib-2.0": "^4.6.0",
36
+ "@girs/xfixes-4.0": "^4.6.0",
37
+ "@girs/gtk-3.0": "^4.6.0",
38
+ "@girs/gdk-3.0": "^4.6.0",
39
+ "@girs/cairo-1.0": "^4.6.0",
40
+ "@girs/gobject-2.0": "^4.6.0",
41
+ "@girs/glib-2.0": "^4.6.0",
42
+ "@girs/pango-1.0": "^4.6.0",
43
+ "@girs/harfbuzz-0.0": "^4.6.0",
44
+ "@girs/freetype2-2.0": "^4.6.0",
45
+ "@girs/gio-2.0": "^4.6.0",
46
+ "@girs/gmodule-2.0": "^4.6.0",
47
+ "@girs/gdkpixbuf-2.0": "^4.6.0",
48
+ "@girs/atk-1.0": "^4.6.0",
49
+ "@girs/gdesktopenums-3.0": "^4.6.0",
50
+ "@girs/coglpango-9": "^4.6.0",
51
+ "@girs/pangocairo-1.0": "^4.6.0",
52
+ "@girs/cogl-9": "^4.6.0",
53
+ "@girs/graphene-1.0": "^4.6.0",
54
+ "@girs/gl-1.0": "^4.6.0",
55
+ "@girs/clutter-9": "^4.6.0",
56
+ "@girs/json-1.0": "^4.6.0" },
57
57
  "devDependencies": {
58
58
  "typescript": "*"
59
59
  },