@girs/meta-11 11.0.0-3.2.4 → 11.0.0-3.2.6
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 +14 -1
- package/meta-11-ambient.d.ts +4 -1
- package/meta-11-import.d.ts +0 -1
- package/meta-11.d.cts +52 -0
- package/meta-11.d.ts +52 -0
- package/package.json +24 -24
package/README.md
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|

|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
GJS TypeScript type definitions for Meta-11, generated from library version 11.0.0 using [ts-for-gir](https://github.com/gjsify/ts-for-gir) v3.2.
|
|
8
|
+
GJS TypeScript type definitions for Meta-11, generated from library version 11.0.0 using [ts-for-gir](https://github.com/gjsify/ts-for-gir) v3.2.6.
|
|
9
9
|
|
|
10
10
|
|
|
11
11
|
## Install
|
|
@@ -81,6 +81,19 @@ Now you have also type support for this, too:
|
|
|
81
81
|
const Meta = imports.gi.Meta;
|
|
82
82
|
```
|
|
83
83
|
|
|
84
|
+
|
|
85
|
+
### ESM vs. CommonJS
|
|
86
|
+
|
|
87
|
+
GJS supports two different import syntaxes. The new modern ESM syntax and the old global imports syntax.
|
|
88
|
+
|
|
89
|
+
In TypeScript projects for GJS and GNOME Shell extensions, you have the flexibility to use `ESM` syntax and then decide the import syntax for your bundled file. If your bundler is configured to use `CommonJS`, it will convert to the GJS-specific global imports syntax, like `const moduleName = imports.gi[moduleName]`. This is different from the traditional `require` syntax seen in Node.js. The global imports syntax is chosen because it aligns with the CommonJS format supported by NPM, which is used for the generated type definitions and this package.
|
|
90
|
+
|
|
91
|
+
On the other hand, if you configure your bundler to use ESM, it will retain the ESM import syntax. It's crucial to ensure that your bundler is set up to correctly translate and bundle these imports into either CommonJS or ESM format, depending on your project's requirements.
|
|
92
|
+
|
|
93
|
+
This approach is particularly important due to the `@girs` types, which include both `*.cjs `files, using the GJS global imports syntax, and `*.js` files, which utilize the ESM syntax. By appropriately setting up your bundler, you can control which syntax—CommonJS or ESM—is used in your project. The choice of CommonJS in this context is also due to the similarity between the GJS-specific global imports and CommonJS syntax, allowing for easier management and bundling in these specific types of projects.
|
|
94
|
+
|
|
95
|
+
Since GNOME Shell 45, you should only use ESM, even for GNOME Shell extensions. Before that, extensions had to use the global import syntax, unlike normal GJS applications, where ESM has been available for some time.
|
|
96
|
+
|
|
84
97
|
### Bundle
|
|
85
98
|
|
|
86
99
|
Depending on your project configuration, it is recommended to use a bundler like [esbuild](https://esbuild.github.io/). You can find examples using different bundlers [here](https://github.com/gjsify/ts-for-gir/tree/main/examples).
|
package/meta-11-ambient.d.ts
CHANGED
package/meta-11-import.d.ts
CHANGED
package/meta-11.d.cts
CHANGED
|
@@ -2017,6 +2017,7 @@ export module Background {
|
|
|
2017
2017
|
// Own constructor properties of Meta-11.Meta.Background
|
|
2018
2018
|
|
|
2019
2019
|
meta_display?: Display | null
|
|
2020
|
+
metaDisplay?: Display | null
|
|
2020
2021
|
}
|
|
2021
2022
|
|
|
2022
2023
|
}
|
|
@@ -2026,6 +2027,7 @@ export interface Background {
|
|
|
2026
2027
|
// Own properties of Meta-11.Meta.Background
|
|
2027
2028
|
|
|
2028
2029
|
readonly meta_display: Display
|
|
2030
|
+
readonly metaDisplay: Display
|
|
2029
2031
|
|
|
2030
2032
|
// Owm methods of Meta-11.Meta.Background
|
|
2031
2033
|
|
|
@@ -2088,6 +2090,7 @@ export module BackgroundActor {
|
|
|
2088
2090
|
|
|
2089
2091
|
meta_display?: Display | null
|
|
2090
2092
|
monitor?: number | null
|
|
2093
|
+
metaDisplay?: Display | null
|
|
2091
2094
|
}
|
|
2092
2095
|
|
|
2093
2096
|
}
|
|
@@ -2097,6 +2100,7 @@ export interface BackgroundActor extends Atk.ImplementorIface, Clutter.Animatabl
|
|
|
2097
2100
|
// Own properties of Meta-11.Meta.BackgroundActor
|
|
2098
2101
|
|
|
2099
2102
|
readonly meta_display: Display
|
|
2103
|
+
readonly metaDisplay: Display
|
|
2100
2104
|
readonly monitor: number
|
|
2101
2105
|
|
|
2102
2106
|
// Class property signals of Meta-11.Meta.BackgroundActor
|
|
@@ -2391,6 +2395,11 @@ export module BackgroundContent {
|
|
|
2391
2395
|
rounded_clip_radius?: number | null
|
|
2392
2396
|
vignette?: boolean | null
|
|
2393
2397
|
vignette_sharpness?: number | null
|
|
2398
|
+
gradientHeight?: number | null
|
|
2399
|
+
gradientMaxDarkness?: number | null
|
|
2400
|
+
metaDisplay?: Display | null
|
|
2401
|
+
roundedClipRadius?: number | null
|
|
2402
|
+
vignetteSharpness?: number | null
|
|
2394
2403
|
}
|
|
2395
2404
|
|
|
2396
2405
|
}
|
|
@@ -2403,12 +2412,17 @@ export interface BackgroundContent extends Clutter.Content {
|
|
|
2403
2412
|
brightness: number
|
|
2404
2413
|
gradient: boolean
|
|
2405
2414
|
gradient_height: number
|
|
2415
|
+
gradientHeight: number
|
|
2406
2416
|
gradient_max_darkness: number
|
|
2417
|
+
gradientMaxDarkness: number
|
|
2407
2418
|
readonly meta_display: Display
|
|
2419
|
+
readonly metaDisplay: Display
|
|
2408
2420
|
readonly monitor: number
|
|
2409
2421
|
rounded_clip_radius: number
|
|
2422
|
+
roundedClipRadius: number
|
|
2410
2423
|
vignette: boolean
|
|
2411
2424
|
vignette_sharpness: number
|
|
2425
|
+
vignetteSharpness: number
|
|
2412
2426
|
|
|
2413
2427
|
// Owm methods of Meta-11.Meta.BackgroundContent
|
|
2414
2428
|
|
|
@@ -3069,6 +3083,7 @@ export module Context {
|
|
|
3069
3083
|
|
|
3070
3084
|
name?: string | null
|
|
3071
3085
|
unsafe_mode?: boolean | null
|
|
3086
|
+
unsafeMode?: boolean | null
|
|
3072
3087
|
}
|
|
3073
3088
|
|
|
3074
3089
|
}
|
|
@@ -3079,6 +3094,7 @@ export interface Context {
|
|
|
3079
3094
|
|
|
3080
3095
|
readonly name: string | null
|
|
3081
3096
|
unsafe_mode: boolean
|
|
3097
|
+
unsafeMode: boolean
|
|
3082
3098
|
|
|
3083
3099
|
// Own fields of Meta-11.Meta.Context
|
|
3084
3100
|
|
|
@@ -3461,7 +3477,9 @@ export interface Display {
|
|
|
3461
3477
|
// Own properties of Meta-11.Meta.Display
|
|
3462
3478
|
|
|
3463
3479
|
readonly compositor_modifiers: Clutter.ModifierType
|
|
3480
|
+
readonly compositorModifiers: Clutter.ModifierType
|
|
3464
3481
|
readonly focus_window: Window
|
|
3482
|
+
readonly focusWindow: Window
|
|
3465
3483
|
|
|
3466
3484
|
// Owm methods of Meta-11.Meta.Display
|
|
3467
3485
|
|
|
@@ -4017,8 +4035,11 @@ export interface MonitorManager {
|
|
|
4017
4035
|
|
|
4018
4036
|
readonly backend: Backend
|
|
4019
4037
|
readonly has_builtin_panel: boolean
|
|
4038
|
+
readonly hasBuiltinPanel: boolean
|
|
4020
4039
|
readonly night_light_supported: boolean
|
|
4040
|
+
readonly nightLightSupported: boolean
|
|
4021
4041
|
readonly panel_orientation_managed: boolean
|
|
4042
|
+
readonly panelOrientationManaged: boolean
|
|
4022
4043
|
|
|
4023
4044
|
// Owm methods of Meta-11.Meta.MonitorManager
|
|
4024
4045
|
|
|
@@ -4312,6 +4333,7 @@ export module RemoteAccessHandle {
|
|
|
4312
4333
|
// Own constructor properties of Meta-11.Meta.RemoteAccessHandle
|
|
4313
4334
|
|
|
4314
4335
|
is_recording?: boolean | null
|
|
4336
|
+
isRecording?: boolean | null
|
|
4315
4337
|
}
|
|
4316
4338
|
|
|
4317
4339
|
}
|
|
@@ -4321,6 +4343,7 @@ export interface RemoteAccessHandle {
|
|
|
4321
4343
|
// Own properties of Meta-11.Meta.RemoteAccessHandle
|
|
4322
4344
|
|
|
4323
4345
|
readonly is_recording: boolean
|
|
4346
|
+
readonly isRecording: boolean
|
|
4324
4347
|
|
|
4325
4348
|
// Own fields of Meta-11.Meta.RemoteAccessHandle
|
|
4326
4349
|
|
|
@@ -5205,6 +5228,8 @@ export module StartupSequence {
|
|
|
5205
5228
|
timestamp?: number | null
|
|
5206
5229
|
wmclass?: string | null
|
|
5207
5230
|
workspace?: number | null
|
|
5231
|
+
applicationId?: string | null
|
|
5232
|
+
iconName?: string | null
|
|
5208
5233
|
}
|
|
5209
5234
|
|
|
5210
5235
|
}
|
|
@@ -5214,7 +5239,9 @@ export interface StartupSequence {
|
|
|
5214
5239
|
// Own properties of Meta-11.Meta.StartupSequence
|
|
5215
5240
|
|
|
5216
5241
|
readonly application_id: string | null
|
|
5242
|
+
readonly applicationId: string | null
|
|
5217
5243
|
readonly icon_name: string | null
|
|
5244
|
+
readonly iconName: string | null
|
|
5218
5245
|
readonly id: string | null
|
|
5219
5246
|
readonly name: string | null
|
|
5220
5247
|
readonly timestamp: number
|
|
@@ -5449,30 +5476,48 @@ export interface Window {
|
|
|
5449
5476
|
|
|
5450
5477
|
readonly above: boolean
|
|
5451
5478
|
readonly appears_focused: boolean
|
|
5479
|
+
readonly appearsFocused: boolean
|
|
5452
5480
|
readonly decorated: boolean
|
|
5453
5481
|
readonly demands_attention: boolean
|
|
5482
|
+
readonly demandsAttention: boolean
|
|
5454
5483
|
readonly fullscreen: boolean
|
|
5455
5484
|
readonly gtk_app_menu_object_path: string | null
|
|
5485
|
+
readonly gtkAppMenuObjectPath: string | null
|
|
5456
5486
|
readonly gtk_application_id: string | null
|
|
5487
|
+
readonly gtkApplicationId: string | null
|
|
5457
5488
|
readonly gtk_application_object_path: string | null
|
|
5489
|
+
readonly gtkApplicationObjectPath: string | null
|
|
5458
5490
|
readonly gtk_menubar_object_path: string | null
|
|
5491
|
+
readonly gtkMenubarObjectPath: string | null
|
|
5459
5492
|
readonly gtk_unique_bus_name: string | null
|
|
5493
|
+
readonly gtkUniqueBusName: string | null
|
|
5460
5494
|
readonly gtk_window_object_path: string | null
|
|
5495
|
+
readonly gtkWindowObjectPath: string | null
|
|
5461
5496
|
readonly icon: any
|
|
5462
5497
|
readonly is_alive: boolean
|
|
5498
|
+
readonly isAlive: boolean
|
|
5463
5499
|
readonly maximized_horizontally: boolean
|
|
5500
|
+
readonly maximizedHorizontally: boolean
|
|
5464
5501
|
readonly maximized_vertically: boolean
|
|
5502
|
+
readonly maximizedVertically: boolean
|
|
5465
5503
|
readonly mini_icon: any
|
|
5504
|
+
readonly miniIcon: any
|
|
5466
5505
|
readonly minimized: boolean
|
|
5467
5506
|
readonly mutter_hints: string | null
|
|
5507
|
+
readonly mutterHints: string | null
|
|
5468
5508
|
readonly on_all_workspaces: boolean
|
|
5509
|
+
readonly onAllWorkspaces: boolean
|
|
5469
5510
|
readonly resizeable: boolean
|
|
5470
5511
|
readonly skip_taskbar: boolean
|
|
5512
|
+
readonly skipTaskbar: boolean
|
|
5471
5513
|
readonly title: string | null
|
|
5472
5514
|
readonly urgent: boolean
|
|
5473
5515
|
readonly user_time: number
|
|
5516
|
+
readonly userTime: number
|
|
5474
5517
|
readonly window_type: WindowType
|
|
5518
|
+
readonly windowType: WindowType
|
|
5475
5519
|
readonly wm_class: string | null
|
|
5520
|
+
readonly wmClass: string | null
|
|
5476
5521
|
|
|
5477
5522
|
// Owm methods of Meta-11.Meta.Window
|
|
5478
5523
|
|
|
@@ -5982,6 +6027,7 @@ export module WindowActor {
|
|
|
5982
6027
|
// Own constructor properties of Meta-11.Meta.WindowActor
|
|
5983
6028
|
|
|
5984
6029
|
meta_window?: Window | null
|
|
6030
|
+
metaWindow?: Window | null
|
|
5985
6031
|
}
|
|
5986
6032
|
|
|
5987
6033
|
}
|
|
@@ -5991,6 +6037,7 @@ export interface WindowActor extends Atk.ImplementorIface, Clutter.Animatable, C
|
|
|
5991
6037
|
// Own properties of Meta-11.Meta.WindowActor
|
|
5992
6038
|
|
|
5993
6039
|
readonly meta_window: Window
|
|
6040
|
+
readonly metaWindow: Window
|
|
5994
6041
|
|
|
5995
6042
|
// Own fields of Meta-11.Meta.WindowActor
|
|
5996
6043
|
|
|
@@ -6565,7 +6612,9 @@ export interface Workspace {
|
|
|
6565
6612
|
|
|
6566
6613
|
readonly active: boolean
|
|
6567
6614
|
readonly n_windows: number
|
|
6615
|
+
readonly nWindows: number
|
|
6568
6616
|
readonly workspace_index: number
|
|
6617
|
+
readonly workspaceIndex: number
|
|
6569
6618
|
|
|
6570
6619
|
// Owm methods of Meta-11.Meta.Workspace
|
|
6571
6620
|
|
|
@@ -6723,8 +6772,11 @@ export interface WorkspaceManager {
|
|
|
6723
6772
|
// Own properties of Meta-11.Meta.WorkspaceManager
|
|
6724
6773
|
|
|
6725
6774
|
readonly layout_columns: number
|
|
6775
|
+
readonly layoutColumns: number
|
|
6726
6776
|
readonly layout_rows: number
|
|
6777
|
+
readonly layoutRows: number
|
|
6727
6778
|
readonly n_workspaces: number
|
|
6779
|
+
readonly nWorkspaces: number
|
|
6728
6780
|
|
|
6729
6781
|
// Owm methods of Meta-11.Meta.WorkspaceManager
|
|
6730
6782
|
|
package/meta-11.d.ts
CHANGED
|
@@ -2019,6 +2019,7 @@ module Background {
|
|
|
2019
2019
|
// Own constructor properties of Meta-11.Meta.Background
|
|
2020
2020
|
|
|
2021
2021
|
meta_display?: Display | null
|
|
2022
|
+
metaDisplay?: Display | null
|
|
2022
2023
|
}
|
|
2023
2024
|
|
|
2024
2025
|
}
|
|
@@ -2028,6 +2029,7 @@ interface Background {
|
|
|
2028
2029
|
// Own properties of Meta-11.Meta.Background
|
|
2029
2030
|
|
|
2030
2031
|
readonly meta_display: Display
|
|
2032
|
+
readonly metaDisplay: Display
|
|
2031
2033
|
|
|
2032
2034
|
// Owm methods of Meta-11.Meta.Background
|
|
2033
2035
|
|
|
@@ -2090,6 +2092,7 @@ module BackgroundActor {
|
|
|
2090
2092
|
|
|
2091
2093
|
meta_display?: Display | null
|
|
2092
2094
|
monitor?: number | null
|
|
2095
|
+
metaDisplay?: Display | null
|
|
2093
2096
|
}
|
|
2094
2097
|
|
|
2095
2098
|
}
|
|
@@ -2099,6 +2102,7 @@ interface BackgroundActor extends Atk.ImplementorIface, Clutter.Animatable, Clut
|
|
|
2099
2102
|
// Own properties of Meta-11.Meta.BackgroundActor
|
|
2100
2103
|
|
|
2101
2104
|
readonly meta_display: Display
|
|
2105
|
+
readonly metaDisplay: Display
|
|
2102
2106
|
readonly monitor: number
|
|
2103
2107
|
|
|
2104
2108
|
// Class property signals of Meta-11.Meta.BackgroundActor
|
|
@@ -2393,6 +2397,11 @@ module BackgroundContent {
|
|
|
2393
2397
|
rounded_clip_radius?: number | null
|
|
2394
2398
|
vignette?: boolean | null
|
|
2395
2399
|
vignette_sharpness?: number | null
|
|
2400
|
+
gradientHeight?: number | null
|
|
2401
|
+
gradientMaxDarkness?: number | null
|
|
2402
|
+
metaDisplay?: Display | null
|
|
2403
|
+
roundedClipRadius?: number | null
|
|
2404
|
+
vignetteSharpness?: number | null
|
|
2396
2405
|
}
|
|
2397
2406
|
|
|
2398
2407
|
}
|
|
@@ -2405,12 +2414,17 @@ interface BackgroundContent extends Clutter.Content {
|
|
|
2405
2414
|
brightness: number
|
|
2406
2415
|
gradient: boolean
|
|
2407
2416
|
gradient_height: number
|
|
2417
|
+
gradientHeight: number
|
|
2408
2418
|
gradient_max_darkness: number
|
|
2419
|
+
gradientMaxDarkness: number
|
|
2409
2420
|
readonly meta_display: Display
|
|
2421
|
+
readonly metaDisplay: Display
|
|
2410
2422
|
readonly monitor: number
|
|
2411
2423
|
rounded_clip_radius: number
|
|
2424
|
+
roundedClipRadius: number
|
|
2412
2425
|
vignette: boolean
|
|
2413
2426
|
vignette_sharpness: number
|
|
2427
|
+
vignetteSharpness: number
|
|
2414
2428
|
|
|
2415
2429
|
// Owm methods of Meta-11.Meta.BackgroundContent
|
|
2416
2430
|
|
|
@@ -3071,6 +3085,7 @@ module Context {
|
|
|
3071
3085
|
|
|
3072
3086
|
name?: string | null
|
|
3073
3087
|
unsafe_mode?: boolean | null
|
|
3088
|
+
unsafeMode?: boolean | null
|
|
3074
3089
|
}
|
|
3075
3090
|
|
|
3076
3091
|
}
|
|
@@ -3081,6 +3096,7 @@ interface Context {
|
|
|
3081
3096
|
|
|
3082
3097
|
readonly name: string | null
|
|
3083
3098
|
unsafe_mode: boolean
|
|
3099
|
+
unsafeMode: boolean
|
|
3084
3100
|
|
|
3085
3101
|
// Own fields of Meta-11.Meta.Context
|
|
3086
3102
|
|
|
@@ -3463,7 +3479,9 @@ interface Display {
|
|
|
3463
3479
|
// Own properties of Meta-11.Meta.Display
|
|
3464
3480
|
|
|
3465
3481
|
readonly compositor_modifiers: Clutter.ModifierType
|
|
3482
|
+
readonly compositorModifiers: Clutter.ModifierType
|
|
3466
3483
|
readonly focus_window: Window
|
|
3484
|
+
readonly focusWindow: Window
|
|
3467
3485
|
|
|
3468
3486
|
// Owm methods of Meta-11.Meta.Display
|
|
3469
3487
|
|
|
@@ -4019,8 +4037,11 @@ interface MonitorManager {
|
|
|
4019
4037
|
|
|
4020
4038
|
readonly backend: Backend
|
|
4021
4039
|
readonly has_builtin_panel: boolean
|
|
4040
|
+
readonly hasBuiltinPanel: boolean
|
|
4022
4041
|
readonly night_light_supported: boolean
|
|
4042
|
+
readonly nightLightSupported: boolean
|
|
4023
4043
|
readonly panel_orientation_managed: boolean
|
|
4044
|
+
readonly panelOrientationManaged: boolean
|
|
4024
4045
|
|
|
4025
4046
|
// Owm methods of Meta-11.Meta.MonitorManager
|
|
4026
4047
|
|
|
@@ -4314,6 +4335,7 @@ module RemoteAccessHandle {
|
|
|
4314
4335
|
// Own constructor properties of Meta-11.Meta.RemoteAccessHandle
|
|
4315
4336
|
|
|
4316
4337
|
is_recording?: boolean | null
|
|
4338
|
+
isRecording?: boolean | null
|
|
4317
4339
|
}
|
|
4318
4340
|
|
|
4319
4341
|
}
|
|
@@ -4323,6 +4345,7 @@ interface RemoteAccessHandle {
|
|
|
4323
4345
|
// Own properties of Meta-11.Meta.RemoteAccessHandle
|
|
4324
4346
|
|
|
4325
4347
|
readonly is_recording: boolean
|
|
4348
|
+
readonly isRecording: boolean
|
|
4326
4349
|
|
|
4327
4350
|
// Own fields of Meta-11.Meta.RemoteAccessHandle
|
|
4328
4351
|
|
|
@@ -5207,6 +5230,8 @@ module StartupSequence {
|
|
|
5207
5230
|
timestamp?: number | null
|
|
5208
5231
|
wmclass?: string | null
|
|
5209
5232
|
workspace?: number | null
|
|
5233
|
+
applicationId?: string | null
|
|
5234
|
+
iconName?: string | null
|
|
5210
5235
|
}
|
|
5211
5236
|
|
|
5212
5237
|
}
|
|
@@ -5216,7 +5241,9 @@ interface StartupSequence {
|
|
|
5216
5241
|
// Own properties of Meta-11.Meta.StartupSequence
|
|
5217
5242
|
|
|
5218
5243
|
readonly application_id: string | null
|
|
5244
|
+
readonly applicationId: string | null
|
|
5219
5245
|
readonly icon_name: string | null
|
|
5246
|
+
readonly iconName: string | null
|
|
5220
5247
|
readonly id: string | null
|
|
5221
5248
|
readonly name: string | null
|
|
5222
5249
|
readonly timestamp: number
|
|
@@ -5451,30 +5478,48 @@ interface Window {
|
|
|
5451
5478
|
|
|
5452
5479
|
readonly above: boolean
|
|
5453
5480
|
readonly appears_focused: boolean
|
|
5481
|
+
readonly appearsFocused: boolean
|
|
5454
5482
|
readonly decorated: boolean
|
|
5455
5483
|
readonly demands_attention: boolean
|
|
5484
|
+
readonly demandsAttention: boolean
|
|
5456
5485
|
readonly fullscreen: boolean
|
|
5457
5486
|
readonly gtk_app_menu_object_path: string | null
|
|
5487
|
+
readonly gtkAppMenuObjectPath: string | null
|
|
5458
5488
|
readonly gtk_application_id: string | null
|
|
5489
|
+
readonly gtkApplicationId: string | null
|
|
5459
5490
|
readonly gtk_application_object_path: string | null
|
|
5491
|
+
readonly gtkApplicationObjectPath: string | null
|
|
5460
5492
|
readonly gtk_menubar_object_path: string | null
|
|
5493
|
+
readonly gtkMenubarObjectPath: string | null
|
|
5461
5494
|
readonly gtk_unique_bus_name: string | null
|
|
5495
|
+
readonly gtkUniqueBusName: string | null
|
|
5462
5496
|
readonly gtk_window_object_path: string | null
|
|
5497
|
+
readonly gtkWindowObjectPath: string | null
|
|
5463
5498
|
readonly icon: any
|
|
5464
5499
|
readonly is_alive: boolean
|
|
5500
|
+
readonly isAlive: boolean
|
|
5465
5501
|
readonly maximized_horizontally: boolean
|
|
5502
|
+
readonly maximizedHorizontally: boolean
|
|
5466
5503
|
readonly maximized_vertically: boolean
|
|
5504
|
+
readonly maximizedVertically: boolean
|
|
5467
5505
|
readonly mini_icon: any
|
|
5506
|
+
readonly miniIcon: any
|
|
5468
5507
|
readonly minimized: boolean
|
|
5469
5508
|
readonly mutter_hints: string | null
|
|
5509
|
+
readonly mutterHints: string | null
|
|
5470
5510
|
readonly on_all_workspaces: boolean
|
|
5511
|
+
readonly onAllWorkspaces: boolean
|
|
5471
5512
|
readonly resizeable: boolean
|
|
5472
5513
|
readonly skip_taskbar: boolean
|
|
5514
|
+
readonly skipTaskbar: boolean
|
|
5473
5515
|
readonly title: string | null
|
|
5474
5516
|
readonly urgent: boolean
|
|
5475
5517
|
readonly user_time: number
|
|
5518
|
+
readonly userTime: number
|
|
5476
5519
|
readonly window_type: WindowType
|
|
5520
|
+
readonly windowType: WindowType
|
|
5477
5521
|
readonly wm_class: string | null
|
|
5522
|
+
readonly wmClass: string | null
|
|
5478
5523
|
|
|
5479
5524
|
// Owm methods of Meta-11.Meta.Window
|
|
5480
5525
|
|
|
@@ -5984,6 +6029,7 @@ module WindowActor {
|
|
|
5984
6029
|
// Own constructor properties of Meta-11.Meta.WindowActor
|
|
5985
6030
|
|
|
5986
6031
|
meta_window?: Window | null
|
|
6032
|
+
metaWindow?: Window | null
|
|
5987
6033
|
}
|
|
5988
6034
|
|
|
5989
6035
|
}
|
|
@@ -5993,6 +6039,7 @@ interface WindowActor extends Atk.ImplementorIface, Clutter.Animatable, Clutter.
|
|
|
5993
6039
|
// Own properties of Meta-11.Meta.WindowActor
|
|
5994
6040
|
|
|
5995
6041
|
readonly meta_window: Window
|
|
6042
|
+
readonly metaWindow: Window
|
|
5996
6043
|
|
|
5997
6044
|
// Own fields of Meta-11.Meta.WindowActor
|
|
5998
6045
|
|
|
@@ -6567,7 +6614,9 @@ interface Workspace {
|
|
|
6567
6614
|
|
|
6568
6615
|
readonly active: boolean
|
|
6569
6616
|
readonly n_windows: number
|
|
6617
|
+
readonly nWindows: number
|
|
6570
6618
|
readonly workspace_index: number
|
|
6619
|
+
readonly workspaceIndex: number
|
|
6571
6620
|
|
|
6572
6621
|
// Owm methods of Meta-11.Meta.Workspace
|
|
6573
6622
|
|
|
@@ -6725,8 +6774,11 @@ interface WorkspaceManager {
|
|
|
6725
6774
|
// Own properties of Meta-11.Meta.WorkspaceManager
|
|
6726
6775
|
|
|
6727
6776
|
readonly layout_columns: number
|
|
6777
|
+
readonly layoutColumns: number
|
|
6728
6778
|
readonly layout_rows: number
|
|
6779
|
+
readonly layoutRows: number
|
|
6729
6780
|
readonly n_workspaces: number
|
|
6781
|
+
readonly nWorkspaces: number
|
|
6730
6782
|
|
|
6731
6783
|
// Owm methods of Meta-11.Meta.WorkspaceManager
|
|
6732
6784
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@girs/meta-11",
|
|
3
|
-
"version": "11.0.0-3.2.
|
|
3
|
+
"version": "11.0.0-3.2.6",
|
|
4
4
|
"description": "GJS TypeScript type definitions for Meta-11, generated from library version 11.0.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "meta-11.js",
|
|
@@ -25,29 +25,29 @@
|
|
|
25
25
|
"test:cjs": "NODE_OPTIONS=--max_old_space_size=9216 tsc --noEmit meta-11.d.cts"
|
|
26
26
|
},
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@girs/atk-1.0": "^2.50.0-3.2.
|
|
29
|
-
"@girs/cairo-1.0": "^1.0.0-3.2.
|
|
30
|
-
"@girs/clutter-11": "^11.0.0-3.2.
|
|
31
|
-
"@girs/cogl-11": "^11.0.0-3.2.
|
|
32
|
-
"@girs/coglpango-11": "^11.0.0-3.2.
|
|
33
|
-
"@girs/freetype2-2.0": "^2.0.0-3.2.
|
|
34
|
-
"@girs/gdesktopenums-3.0": "^3.0.0-3.2.
|
|
35
|
-
"@girs/gdk-3.0": "^3.24.38-3.2.
|
|
36
|
-
"@girs/gdkpixbuf-2.0": "^2.0.0-3.2.
|
|
37
|
-
"@girs/gio-2.0": "^2.78.0-3.2.
|
|
38
|
-
"@girs/gjs": "^3.2.
|
|
39
|
-
"@girs/gl-1.0": "^1.0.0-3.2.
|
|
40
|
-
"@girs/glib-2.0": "^2.78.0-3.2.
|
|
41
|
-
"@girs/gmodule-2.0": "^2.0.0-3.2.
|
|
42
|
-
"@girs/gobject-2.0": "^2.78.0-3.2.
|
|
43
|
-
"@girs/graphene-1.0": "^1.0.0-3.2.
|
|
44
|
-
"@girs/gtk-3.0": "^3.24.38-3.2.
|
|
45
|
-
"@girs/harfbuzz-0.0": "^8.2.1-3.2.
|
|
46
|
-
"@girs/json-1.0": "^1.7.1-3.2.
|
|
47
|
-
"@girs/pango-1.0": "^1.51.0-3.2.
|
|
48
|
-
"@girs/pangocairo-1.0": "^1.0.0-3.2.
|
|
49
|
-
"@girs/xfixes-4.0": "^4.0.0-3.2.
|
|
50
|
-
"@girs/xlib-2.0": "^2.0.0-3.2.
|
|
28
|
+
"@girs/atk-1.0": "^2.50.0-3.2.6",
|
|
29
|
+
"@girs/cairo-1.0": "^1.0.0-3.2.6",
|
|
30
|
+
"@girs/clutter-11": "^11.0.0-3.2.6",
|
|
31
|
+
"@girs/cogl-11": "^11.0.0-3.2.6",
|
|
32
|
+
"@girs/coglpango-11": "^11.0.0-3.2.6",
|
|
33
|
+
"@girs/freetype2-2.0": "^2.0.0-3.2.6",
|
|
34
|
+
"@girs/gdesktopenums-3.0": "^3.0.0-3.2.6",
|
|
35
|
+
"@girs/gdk-3.0": "^3.24.38-3.2.6",
|
|
36
|
+
"@girs/gdkpixbuf-2.0": "^2.0.0-3.2.6",
|
|
37
|
+
"@girs/gio-2.0": "^2.78.0-3.2.6",
|
|
38
|
+
"@girs/gjs": "^3.2.6",
|
|
39
|
+
"@girs/gl-1.0": "^1.0.0-3.2.6",
|
|
40
|
+
"@girs/glib-2.0": "^2.78.0-3.2.6",
|
|
41
|
+
"@girs/gmodule-2.0": "^2.0.0-3.2.6",
|
|
42
|
+
"@girs/gobject-2.0": "^2.78.0-3.2.6",
|
|
43
|
+
"@girs/graphene-1.0": "^1.0.0-3.2.6",
|
|
44
|
+
"@girs/gtk-3.0": "^3.24.38-3.2.6",
|
|
45
|
+
"@girs/harfbuzz-0.0": "^8.2.1-3.2.6",
|
|
46
|
+
"@girs/json-1.0": "^1.7.1-3.2.6",
|
|
47
|
+
"@girs/pango-1.0": "^1.51.0-3.2.6",
|
|
48
|
+
"@girs/pangocairo-1.0": "^1.0.0-3.2.6",
|
|
49
|
+
"@girs/xfixes-4.0": "^4.0.0-3.2.6",
|
|
50
|
+
"@girs/xlib-2.0": "^2.0.0-3.2.6"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
53
|
"typescript": "*"
|