@girs/meta-18 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.
- package/README.md +1 -1
- package/meta-18.d.ts +20 -2
- package/package.json +19 -19
package/README.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|

|
|
5
5
|

|
|
6
6
|
|
|
7
|
-
GJS TypeScript type definitions for Meta-18 using [ts-for-gir](https://github.com/gjsify/ts-for-gir) v4.
|
|
7
|
+
GJS TypeScript type definitions for Meta-18 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-18.d.ts
CHANGED
|
@@ -2928,7 +2928,7 @@ export namespace Meta {
|
|
|
2928
2928
|
|
|
2929
2929
|
namespace BackgroundContent {
|
|
2930
2930
|
// Signal signatures
|
|
2931
|
-
interface SignalSignatures extends GObject.Object.SignalSignatures {
|
|
2931
|
+
interface SignalSignatures extends GObject.Object.SignalSignatures, Clutter.Content.SignalSignatures {
|
|
2932
2932
|
"notify::background": (pspec: GObject.ParamSpec) => void;
|
|
2933
2933
|
"notify::brightness": (pspec: GObject.ParamSpec) => void;
|
|
2934
2934
|
"notify::gradient": (pspec: GObject.ParamSpec) => void;
|
|
@@ -6539,7 +6539,7 @@ export namespace Meta {
|
|
|
6539
6539
|
|
|
6540
6540
|
namespace ShapedTexture {
|
|
6541
6541
|
// Signal signatures
|
|
6542
|
-
interface SignalSignatures extends GObject.Object.SignalSignatures {
|
|
6542
|
+
interface SignalSignatures extends GObject.Object.SignalSignatures, Clutter.Content.SignalSignatures {
|
|
6543
6543
|
/**
|
|
6544
6544
|
* @signal
|
|
6545
6545
|
* @run-last
|
|
@@ -10103,6 +10103,15 @@ export namespace Meta {
|
|
|
10103
10103
|
type X11DisplayClass = typeof X11Display;
|
|
10104
10104
|
|
|
10105
10105
|
namespace CloseDialog {
|
|
10106
|
+
// Signal signatures
|
|
10107
|
+
interface SignalSignatures {
|
|
10108
|
+
/**
|
|
10109
|
+
* @signal
|
|
10110
|
+
* @action
|
|
10111
|
+
* @run-last
|
|
10112
|
+
*/
|
|
10113
|
+
response: (object: CloseDialogResponse) => void;
|
|
10114
|
+
}
|
|
10106
10115
|
/**
|
|
10107
10116
|
* Interface for implementing CloseDialog.
|
|
10108
10117
|
* Contains only the virtual methods that need to be implemented.
|
|
@@ -10235,6 +10244,15 @@ export namespace Meta {
|
|
|
10235
10244
|
};
|
|
10236
10245
|
|
|
10237
10246
|
namespace InhibitShortcutsDialog {
|
|
10247
|
+
// Signal signatures
|
|
10248
|
+
interface SignalSignatures {
|
|
10249
|
+
/**
|
|
10250
|
+
* @signal
|
|
10251
|
+
* @action
|
|
10252
|
+
* @run-last
|
|
10253
|
+
*/
|
|
10254
|
+
response: (object: InhibitShortcutsDialogResponse) => void;
|
|
10255
|
+
}
|
|
10238
10256
|
/**
|
|
10239
10257
|
* Interface for implementing InhibitShortcutsDialog.
|
|
10240
10258
|
* 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-18",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.6.0",
|
|
4
4
|
"description": "GJS TypeScript type definitions for Meta-18",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "meta-18.js",
|
|
@@ -31,24 +31,24 @@
|
|
|
31
31
|
"test": "tsc --project tsconfig.json"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@girs/gjs": "^4.
|
|
35
|
-
"@girs/xlib-2.0": "^4.
|
|
36
|
-
"@girs/xfixes-4.0": "^4.
|
|
37
|
-
"@girs/mtk-18": "^4.
|
|
38
|
-
"@girs/graphene-1.0": "^4.
|
|
39
|
-
"@girs/gobject-2.0": "^4.
|
|
40
|
-
"@girs/glib-2.0": "^4.
|
|
41
|
-
"@girs/gio-2.0": "^4.
|
|
42
|
-
"@girs/gmodule-2.0": "^4.
|
|
43
|
-
"@girs/gdesktopenums-3.0": "^4.
|
|
44
|
-
"@girs/cogl-18": "^4.
|
|
45
|
-
"@girs/gl-1.0": "^4.
|
|
46
|
-
"@girs/clutter-18": "^4.
|
|
47
|
-
"@girs/pango-1.0": "^4.
|
|
48
|
-
"@girs/cairo-1.0": "^4.
|
|
49
|
-
"@girs/harfbuzz-0.0": "^4.
|
|
50
|
-
"@girs/freetype2-2.0": "^4.
|
|
51
|
-
"@girs/atk-1.0": "^4.
|
|
34
|
+
"@girs/gjs": "^4.6.0",
|
|
35
|
+
"@girs/xlib-2.0": "^4.6.0",
|
|
36
|
+
"@girs/xfixes-4.0": "^4.6.0",
|
|
37
|
+
"@girs/mtk-18": "^4.6.0",
|
|
38
|
+
"@girs/graphene-1.0": "^4.6.0",
|
|
39
|
+
"@girs/gobject-2.0": "^4.6.0",
|
|
40
|
+
"@girs/glib-2.0": "^4.6.0",
|
|
41
|
+
"@girs/gio-2.0": "^4.6.0",
|
|
42
|
+
"@girs/gmodule-2.0": "^4.6.0",
|
|
43
|
+
"@girs/gdesktopenums-3.0": "^4.6.0",
|
|
44
|
+
"@girs/cogl-18": "^4.6.0",
|
|
45
|
+
"@girs/gl-1.0": "^4.6.0",
|
|
46
|
+
"@girs/clutter-18": "^4.6.0",
|
|
47
|
+
"@girs/pango-1.0": "^4.6.0",
|
|
48
|
+
"@girs/cairo-1.0": "^4.6.0",
|
|
49
|
+
"@girs/harfbuzz-0.0": "^4.6.0",
|
|
50
|
+
"@girs/freetype2-2.0": "^4.6.0",
|
|
51
|
+
"@girs/atk-1.0": "^4.6.0" },
|
|
52
52
|
"devDependencies": {
|
|
53
53
|
"typescript": "*"
|
|
54
54
|
},
|