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

|
|
5
5
|

|
|
6
6
|
|
|
7
|
-
GJS TypeScript type definitions for Clutter-14 using [ts-for-gir](https://github.com/gjsify/ts-for-gir) v4.
|
|
7
|
+
GJS TypeScript type definitions for Clutter-14 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.
|
package/clutter-14.d.ts
CHANGED
|
@@ -26019,7 +26019,7 @@ export namespace Clutter {
|
|
|
26019
26019
|
|
|
26020
26020
|
namespace Image {
|
|
26021
26021
|
// Signal signatures
|
|
26022
|
-
interface SignalSignatures extends GObject.Object.SignalSignatures {}
|
|
26022
|
+
interface SignalSignatures extends GObject.Object.SignalSignatures, Content.SignalSignatures {}
|
|
26023
26023
|
|
|
26024
26024
|
// Constructor properties interface
|
|
26025
26025
|
interface ConstructorProps extends GObject.Object.ConstructorProps, Content.ConstructorProps {}
|
|
@@ -32971,7 +32971,7 @@ export namespace Clutter {
|
|
|
32971
32971
|
|
|
32972
32972
|
namespace TextureContent {
|
|
32973
32973
|
// Signal signatures
|
|
32974
|
-
interface SignalSignatures extends GObject.Object.SignalSignatures {}
|
|
32974
|
+
interface SignalSignatures extends GObject.Object.SignalSignatures, Content.SignalSignatures {}
|
|
32975
32975
|
|
|
32976
32976
|
// Constructor properties interface
|
|
32977
32977
|
interface ConstructorProps extends GObject.Object.ConstructorProps, Content.ConstructorProps {}
|
|
@@ -36584,6 +36584,23 @@ export namespace Clutter {
|
|
|
36584
36584
|
};
|
|
36585
36585
|
|
|
36586
36586
|
namespace Content {
|
|
36587
|
+
// Signal signatures
|
|
36588
|
+
interface SignalSignatures {
|
|
36589
|
+
/**
|
|
36590
|
+
* This signal is emitted each time a {@link Clutter.Content} implementation is
|
|
36591
|
+
* assigned to a {@link Clutter.Actor}.
|
|
36592
|
+
* @signal
|
|
36593
|
+
* @run-first
|
|
36594
|
+
*/
|
|
36595
|
+
attached: (actor: Actor) => void;
|
|
36596
|
+
/**
|
|
36597
|
+
* This signal is emitted each time a {@link Clutter.Content} implementation is
|
|
36598
|
+
* removed from a {@link Clutter.Actor}.
|
|
36599
|
+
* @signal
|
|
36600
|
+
* @run-first
|
|
36601
|
+
*/
|
|
36602
|
+
detached: (actor: Actor) => void;
|
|
36603
|
+
}
|
|
36587
36604
|
/**
|
|
36588
36605
|
* Interface for implementing Content.
|
|
36589
36606
|
* Contains only the virtual methods that need to be implemented.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@girs/clutter-14",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.7.0",
|
|
4
4
|
"description": "GJS TypeScript type definitions for Clutter-14",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "clutter-14.js",
|
|
@@ -31,23 +31,23 @@
|
|
|
31
31
|
"test": "tsc --project tsconfig.json"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@girs/gjs": "^4.
|
|
35
|
-
"@girs/cairo-1.0": "^4.
|
|
36
|
-
"@girs/gobject-2.0": "^4.
|
|
37
|
-
"@girs/glib-2.0": "^4.
|
|
38
|
-
"@girs/mtk-14": "^4.
|
|
39
|
-
"@girs/graphene-1.0": "^4.
|
|
40
|
-
"@girs/gio-2.0": "^4.
|
|
41
|
-
"@girs/gmodule-2.0": "^4.
|
|
42
|
-
"@girs/gl-1.0": "^4.
|
|
43
|
-
"@girs/coglpango-14": "^4.
|
|
44
|
-
"@girs/pangocairo-1.0": "^4.
|
|
45
|
-
"@girs/pango-1.0": "^4.
|
|
46
|
-
"@girs/harfbuzz-0.0": "^4.
|
|
47
|
-
"@girs/freetype2-2.0": "^4.
|
|
48
|
-
"@girs/cogl-14": "^4.
|
|
49
|
-
"@girs/xlib-2.0": "^4.
|
|
50
|
-
"@girs/atk-1.0": "^4.
|
|
34
|
+
"@girs/gjs": "^4.7.0",
|
|
35
|
+
"@girs/cairo-1.0": "^4.7.0",
|
|
36
|
+
"@girs/gobject-2.0": "^4.7.0",
|
|
37
|
+
"@girs/glib-2.0": "^4.7.0",
|
|
38
|
+
"@girs/mtk-14": "^4.7.0",
|
|
39
|
+
"@girs/graphene-1.0": "^4.7.0",
|
|
40
|
+
"@girs/gio-2.0": "^4.7.0",
|
|
41
|
+
"@girs/gmodule-2.0": "^4.7.0",
|
|
42
|
+
"@girs/gl-1.0": "^4.7.0",
|
|
43
|
+
"@girs/coglpango-14": "^4.7.0",
|
|
44
|
+
"@girs/pangocairo-1.0": "^4.7.0",
|
|
45
|
+
"@girs/pango-1.0": "^4.7.0",
|
|
46
|
+
"@girs/harfbuzz-0.0": "^4.7.0",
|
|
47
|
+
"@girs/freetype2-2.0": "^4.7.0",
|
|
48
|
+
"@girs/cogl-14": "^4.7.0",
|
|
49
|
+
"@girs/xlib-2.0": "^4.7.0",
|
|
50
|
+
"@girs/atk-1.0": "^4.7.0" },
|
|
51
51
|
"devDependencies": {
|
|
52
52
|
"typescript": "*"
|
|
53
53
|
},
|