@girs/bamf-3 3.0.0-3.2.7 → 3.0.0-3.2.8
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/bamf-3-ambient.js +2 -0
- package/bamf-3-import.js +3 -0
- package/bamf-3.d.cts +0 -3
- package/bamf-3.d.ts +0 -3
- package/package.json +13 -7
package/README.md
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|

|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
GJS TypeScript type definitions for Bamf-3, generated from library version 3.0.0 using [ts-for-gir](https://github.com/gjsify/ts-for-gir) v3.2.
|
|
8
|
+
GJS TypeScript type definitions for Bamf-3, generated from library version 3.0.0 using [ts-for-gir](https://github.com/gjsify/ts-for-gir) v3.2.8.
|
|
9
9
|
|
|
10
10
|
|
|
11
11
|
## Install
|
package/bamf-3-import.js
ADDED
package/bamf-3.d.cts
CHANGED
|
@@ -427,9 +427,7 @@ export interface Tab {
|
|
|
427
427
|
|
|
428
428
|
// Own properties of Bamf-3.Bamf.Tab
|
|
429
429
|
|
|
430
|
-
readonly desktop_id: string | null
|
|
431
430
|
readonly desktopId: string | null
|
|
432
|
-
readonly is_foreground_tab: boolean
|
|
433
431
|
readonly isForegroundTab: boolean
|
|
434
432
|
readonly location: string | null
|
|
435
433
|
readonly xid: number
|
|
@@ -631,7 +629,6 @@ export interface View {
|
|
|
631
629
|
readonly running: boolean
|
|
632
630
|
readonly starting: boolean
|
|
633
631
|
readonly urgent: boolean
|
|
634
|
-
readonly user_visible: boolean
|
|
635
632
|
readonly userVisible: boolean
|
|
636
633
|
|
|
637
634
|
// Own fields of Bamf-3.Bamf.View
|
package/bamf-3.d.ts
CHANGED
|
@@ -429,9 +429,7 @@ interface Tab {
|
|
|
429
429
|
|
|
430
430
|
// Own properties of Bamf-3.Bamf.Tab
|
|
431
431
|
|
|
432
|
-
readonly desktop_id: string | null
|
|
433
432
|
readonly desktopId: string | null
|
|
434
|
-
readonly is_foreground_tab: boolean
|
|
435
433
|
readonly isForegroundTab: boolean
|
|
436
434
|
readonly location: string | null
|
|
437
435
|
readonly xid: number
|
|
@@ -633,7 +631,6 @@ interface View {
|
|
|
633
631
|
readonly running: boolean
|
|
634
632
|
readonly starting: boolean
|
|
635
633
|
readonly urgent: boolean
|
|
636
|
-
readonly user_visible: boolean
|
|
637
634
|
readonly userVisible: boolean
|
|
638
635
|
|
|
639
636
|
// Own fields of Bamf-3.Bamf.View
|
package/package.json
CHANGED
|
@@ -1,13 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@girs/bamf-3",
|
|
3
|
-
"version": "3.0.0-3.2.
|
|
3
|
+
"version": "3.0.0-3.2.8",
|
|
4
4
|
"description": "GJS TypeScript type definitions for Bamf-3, generated from library version 3.0.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "bamf-3.js",
|
|
7
7
|
"main": "bamf-3.js",
|
|
8
8
|
"exports": {
|
|
9
|
-
"./ambient":
|
|
10
|
-
|
|
9
|
+
"./ambient": {
|
|
10
|
+
"types": "./bamf-3-ambient.d.ts",
|
|
11
|
+
"default": "./bamf-3-ambient.js"
|
|
12
|
+
},
|
|
13
|
+
"./import": {
|
|
14
|
+
"types": "./bamf-3-import.d.ts",
|
|
15
|
+
"default": "./bamf-3-import.js"
|
|
16
|
+
},
|
|
11
17
|
".": {
|
|
12
18
|
"import": {
|
|
13
19
|
"types": "./bamf-3.d.ts",
|
|
@@ -25,9 +31,9 @@
|
|
|
25
31
|
"test:cjs": "NODE_OPTIONS=--max_old_space_size=9216 tsc --noEmit bamf-3.d.cts"
|
|
26
32
|
},
|
|
27
33
|
"dependencies": {
|
|
28
|
-
"@girs/gjs": "^3.2.
|
|
29
|
-
"@girs/glib-2.0": "^2.
|
|
30
|
-
"@girs/gobject-2.0": "^2.
|
|
34
|
+
"@girs/gjs": "^3.2.8",
|
|
35
|
+
"@girs/glib-2.0": "^2.77.0-3.2.8",
|
|
36
|
+
"@girs/gobject-2.0": "^2.77.0-3.2.8"
|
|
31
37
|
},
|
|
32
38
|
"devDependencies": {
|
|
33
39
|
"typescript": "*"
|
|
@@ -44,7 +50,7 @@
|
|
|
44
50
|
"license": "MIT",
|
|
45
51
|
"repository": {
|
|
46
52
|
"type": "git",
|
|
47
|
-
"url": "git+https://github.com/gjsify/
|
|
53
|
+
"url": "git+https://github.com/gjsify/ts-for-gir.git"
|
|
48
54
|
},
|
|
49
55
|
"bugs": {
|
|
50
56
|
"url": "https://github.com/gjsify/ts-for-gir/issues"
|