@girs/meta-8 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-8.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-8)
5
5
  ![downloads/week](https://img.shields.io/npm/dw/@girs/meta-8)
6
6
 
7
- GJS TypeScript type definitions for Meta-8 using [ts-for-gir](https://github.com/gjsify/ts-for-gir) v4.5.0.
7
+ GJS TypeScript type definitions for Meta-8 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-8.d.ts CHANGED
@@ -2696,7 +2696,7 @@ export namespace Meta {
2696
2696
 
2697
2697
  namespace BackgroundActor {
2698
2698
  // Signal signatures
2699
- interface SignalSignatures extends Clutter.Actor.SignalSignatures {
2699
+ interface SignalSignatures extends Clutter.Actor.SignalSignatures, Clutter.Container.SignalSignatures {
2700
2700
  "notify::meta-display": (pspec: GObject.ParamSpec) => void;
2701
2701
  "notify::monitor": (pspec: GObject.ParamSpec) => void;
2702
2702
  "notify::actions": (pspec: GObject.ParamSpec) => void;
@@ -3307,7 +3307,7 @@ export namespace Meta {
3307
3307
 
3308
3308
  namespace BackgroundContent {
3309
3309
  // Signal signatures
3310
- interface SignalSignatures extends GObject.Object.SignalSignatures {
3310
+ interface SignalSignatures extends GObject.Object.SignalSignatures, Clutter.Content.SignalSignatures {
3311
3311
  "notify::background": (pspec: GObject.ParamSpec) => void;
3312
3312
  "notify::brightness": (pspec: GObject.ParamSpec) => void;
3313
3313
  "notify::gradient": (pspec: GObject.ParamSpec) => void;
@@ -3556,7 +3556,7 @@ export namespace Meta {
3556
3556
 
3557
3557
  namespace BackgroundGroup {
3558
3558
  // Signal signatures
3559
- interface SignalSignatures extends Clutter.Actor.SignalSignatures {
3559
+ interface SignalSignatures extends Clutter.Actor.SignalSignatures, Clutter.Container.SignalSignatures {
3560
3560
  "notify::actions": (pspec: GObject.ParamSpec) => void;
3561
3561
  "notify::allocation": (pspec: GObject.ParamSpec) => void;
3562
3562
  "notify::background-color": (pspec: GObject.ParamSpec) => void;
@@ -6148,7 +6148,7 @@ export namespace Meta {
6148
6148
 
6149
6149
  namespace ShapedTexture {
6150
6150
  // Signal signatures
6151
- interface SignalSignatures extends GObject.Object.SignalSignatures {
6151
+ interface SignalSignatures extends GObject.Object.SignalSignatures, Clutter.Content.SignalSignatures {
6152
6152
  /**
6153
6153
  * @signal
6154
6154
  * @run-last
@@ -6364,7 +6364,7 @@ export namespace Meta {
6364
6364
 
6365
6365
  namespace Stage {
6366
6366
  // Signal signatures
6367
- interface SignalSignatures extends Clutter.Stage.SignalSignatures {
6367
+ interface SignalSignatures extends Clutter.Stage.SignalSignatures, Clutter.Container.SignalSignatures {
6368
6368
  /**
6369
6369
  * @signal
6370
6370
  * @run-last
@@ -7654,7 +7654,7 @@ export namespace Meta {
7654
7654
 
7655
7655
  namespace WindowActor {
7656
7656
  // Signal signatures
7657
- interface SignalSignatures extends Clutter.Actor.SignalSignatures {
7657
+ interface SignalSignatures extends Clutter.Actor.SignalSignatures, Clutter.Container.SignalSignatures {
7658
7658
  /**
7659
7659
  * Notify that one or more of the surfaces of the window have been damaged.
7660
7660
  * @signal
@@ -8329,7 +8329,7 @@ export namespace Meta {
8329
8329
 
8330
8330
  namespace WindowGroup {
8331
8331
  // Signal signatures
8332
- interface SignalSignatures extends Clutter.Actor.SignalSignatures {
8332
+ interface SignalSignatures extends Clutter.Actor.SignalSignatures, Clutter.Container.SignalSignatures {
8333
8333
  "notify::actions": (pspec: GObject.ParamSpec) => void;
8334
8334
  "notify::allocation": (pspec: GObject.ParamSpec) => void;
8335
8335
  "notify::background-color": (pspec: GObject.ParamSpec) => void;
@@ -9876,6 +9876,15 @@ export namespace Meta {
9876
9876
  type X11DisplayClass = typeof X11Display;
9877
9877
 
9878
9878
  namespace CloseDialog {
9879
+ // Signal signatures
9880
+ interface SignalSignatures {
9881
+ /**
9882
+ * @signal
9883
+ * @action
9884
+ * @run-last
9885
+ */
9886
+ response: (object: CloseDialogResponse) => void;
9887
+ }
9879
9888
  /**
9880
9889
  * Interface for implementing CloseDialog.
9881
9890
  * Contains only the virtual methods that need to be implemented.
@@ -9962,6 +9971,15 @@ export namespace Meta {
9962
9971
  };
9963
9972
 
9964
9973
  namespace InhibitShortcutsDialog {
9974
+ // Signal signatures
9975
+ interface SignalSignatures {
9976
+ /**
9977
+ * @signal
9978
+ * @action
9979
+ * @run-last
9980
+ */
9981
+ response: (object: InhibitShortcutsDialogResponse) => void;
9982
+ }
9965
9983
  /**
9966
9984
  * Interface for implementing InhibitShortcutsDialog.
9967
9985
  * 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-8",
3
- "version": "4.5.0",
3
+ "version": "4.6.0",
4
4
  "description": "GJS TypeScript type definitions for Meta-8",
5
5
  "type": "module",
6
6
  "module": "meta-8.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-8": "^4.5.0",
51
- "@girs/pangocairo-1.0": "^4.5.0",
52
- "@girs/cogl-8": "^4.5.0",
53
- "@girs/graphene-1.0": "^4.5.0",
54
- "@girs/gl-1.0": "^4.5.0",
55
- "@girs/clutter-8": "^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-8": "^4.6.0",
51
+ "@girs/pangocairo-1.0": "^4.6.0",
52
+ "@girs/cogl-8": "^4.6.0",
53
+ "@girs/graphene-1.0": "^4.6.0",
54
+ "@girs/gl-1.0": "^4.6.0",
55
+ "@girs/clutter-8": "^4.6.0",
56
+ "@girs/json-1.0": "^4.6.0" },
57
57
  "devDependencies": {
58
58
  "typescript": "*"
59
59
  },