@girs/meta-13 13.0.0-3.2.4 → 13.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 CHANGED
@@ -5,7 +5,7 @@
5
5
  ![downloads/week](https://img.shields.io/npm/dw/@girs/meta-13)
6
6
 
7
7
 
8
- GJS TypeScript type definitions for Meta-13, generated from library version 13.0.0 using [ts-for-gir](https://github.com/gjsify/ts-for-gir) v3.2.4.
8
+ GJS TypeScript type definitions for Meta-13, generated from library version 13.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).
@@ -1,9 +1,12 @@
1
1
 
2
-
3
2
  declare module 'gi://Meta?version=13' {
4
3
  import Meta13 from '@girs/meta-13';
5
4
  export default Meta13;
6
5
  }
7
6
 
7
+ declare module 'gi://Meta' {
8
+ import Meta13 from '@girs/meta-13';
9
+ export default Meta13;
10
+ }
8
11
 
9
12
 
@@ -1,5 +1,4 @@
1
1
 
2
-
3
2
  import Meta13 from '@girs/meta-13';
4
3
 
5
4
  declare global {
package/meta-13.d.cts CHANGED
@@ -2008,6 +2008,7 @@ export module Background {
2008
2008
  // Own constructor properties of Meta-13.Meta.Background
2009
2009
 
2010
2010
  meta_display?: Display | null
2011
+ metaDisplay?: Display | null
2011
2012
  }
2012
2013
 
2013
2014
  }
@@ -2017,6 +2018,7 @@ export interface Background {
2017
2018
  // Own properties of Meta-13.Meta.Background
2018
2019
 
2019
2020
  readonly meta_display: Display
2021
+ readonly metaDisplay: Display
2020
2022
 
2021
2023
  // Owm methods of Meta-13.Meta.Background
2022
2024
 
@@ -2080,6 +2082,7 @@ export module BackgroundActor {
2080
2082
 
2081
2083
  meta_display?: Display | null
2082
2084
  monitor?: number | null
2085
+ metaDisplay?: Display | null
2083
2086
  }
2084
2087
 
2085
2088
  }
@@ -2089,6 +2092,7 @@ export interface BackgroundActor extends Atk.ImplementorIface, Clutter.Animatabl
2089
2092
  // Own properties of Meta-13.Meta.BackgroundActor
2090
2093
 
2091
2094
  readonly meta_display: Display
2095
+ readonly metaDisplay: Display
2092
2096
  readonly monitor: number
2093
2097
 
2094
2098
  // Class property signals of Meta-13.Meta.BackgroundActor
@@ -2384,6 +2388,11 @@ export module BackgroundContent {
2384
2388
  rounded_clip_radius?: number | null
2385
2389
  vignette?: boolean | null
2386
2390
  vignette_sharpness?: number | null
2391
+ gradientHeight?: number | null
2392
+ gradientMaxDarkness?: number | null
2393
+ metaDisplay?: Display | null
2394
+ roundedClipRadius?: number | null
2395
+ vignetteSharpness?: number | null
2387
2396
  }
2388
2397
 
2389
2398
  }
@@ -2396,12 +2405,17 @@ export interface BackgroundContent extends Clutter.Content {
2396
2405
  brightness: number
2397
2406
  gradient: boolean
2398
2407
  gradient_height: number
2408
+ gradientHeight: number
2399
2409
  gradient_max_darkness: number
2410
+ gradientMaxDarkness: number
2400
2411
  readonly meta_display: Display
2412
+ readonly metaDisplay: Display
2401
2413
  readonly monitor: number
2402
2414
  rounded_clip_radius: number
2415
+ roundedClipRadius: number
2403
2416
  vignette: boolean
2404
2417
  vignette_sharpness: number
2418
+ vignetteSharpness: number
2405
2419
 
2406
2420
  // Owm methods of Meta-13.Meta.BackgroundContent
2407
2421
 
@@ -3175,6 +3189,7 @@ export module Context {
3175
3189
 
3176
3190
  name?: string | null
3177
3191
  unsafe_mode?: boolean | null
3192
+ unsafeMode?: boolean | null
3178
3193
  }
3179
3194
 
3180
3195
  }
@@ -3185,6 +3200,7 @@ export interface Context {
3185
3200
 
3186
3201
  readonly name: string | null
3187
3202
  unsafe_mode: boolean
3203
+ unsafeMode: boolean
3188
3204
 
3189
3205
  // Own fields of Meta-13.Meta.Context
3190
3206
 
@@ -3600,7 +3616,9 @@ export interface Display {
3600
3616
  // Own properties of Meta-13.Meta.Display
3601
3617
 
3602
3618
  readonly compositor_modifiers: Clutter.ModifierType
3619
+ readonly compositorModifiers: Clutter.ModifierType
3603
3620
  readonly focus_window: Window
3621
+ readonly focusWindow: Window
3604
3622
 
3605
3623
  // Owm methods of Meta-13.Meta.Display
3606
3624
 
@@ -4200,6 +4218,7 @@ export module MonitorManager {
4200
4218
 
4201
4219
  backend?: Backend | null
4202
4220
  experimental_hdr?: string | null
4221
+ experimentalHdr?: string | null
4203
4222
  }
4204
4223
 
4205
4224
  }
@@ -4210,9 +4229,13 @@ export interface MonitorManager {
4210
4229
 
4211
4230
  readonly backend: Backend
4212
4231
  experimental_hdr: string | null
4232
+ experimentalHdr: string | null
4213
4233
  readonly has_builtin_panel: boolean
4234
+ readonly hasBuiltinPanel: boolean
4214
4235
  readonly night_light_supported: boolean
4236
+ readonly nightLightSupported: boolean
4215
4237
  readonly panel_orientation_managed: boolean
4238
+ readonly panelOrientationManaged: boolean
4216
4239
 
4217
4240
  // Owm methods of Meta-13.Meta.MonitorManager
4218
4241
 
@@ -4629,6 +4652,7 @@ export module RemoteAccessHandle {
4629
4652
  // Own constructor properties of Meta-13.Meta.RemoteAccessHandle
4630
4653
 
4631
4654
  is_recording?: boolean | null
4655
+ isRecording?: boolean | null
4632
4656
  }
4633
4657
 
4634
4658
  }
@@ -4638,6 +4662,7 @@ export interface RemoteAccessHandle {
4638
4662
  // Own properties of Meta-13.Meta.RemoteAccessHandle
4639
4663
 
4640
4664
  readonly is_recording: boolean
4665
+ readonly isRecording: boolean
4641
4666
 
4642
4667
  // Own fields of Meta-13.Meta.RemoteAccessHandle
4643
4668
 
@@ -5520,6 +5545,8 @@ export module StartupSequence {
5520
5545
  timestamp?: number | null
5521
5546
  wmclass?: string | null
5522
5547
  workspace?: number | null
5548
+ applicationId?: string | null
5549
+ iconName?: string | null
5523
5550
  }
5524
5551
 
5525
5552
  }
@@ -5529,8 +5556,10 @@ export interface StartupSequence {
5529
5556
  // Own properties of Meta-13.Meta.StartupSequence
5530
5557
 
5531
5558
  readonly application_id: string | null
5559
+ readonly applicationId: string | null
5532
5560
  readonly display: Display
5533
5561
  readonly icon_name: string | null
5562
+ readonly iconName: string | null
5534
5563
  readonly id: string | null
5535
5564
  readonly name: string | null
5536
5565
  readonly timestamp: number
@@ -5844,32 +5873,50 @@ export interface Window extends Gio.Initable {
5844
5873
 
5845
5874
  readonly above: boolean
5846
5875
  readonly appears_focused: boolean
5876
+ readonly appearsFocused: boolean
5847
5877
  readonly decorated: boolean
5848
5878
  readonly demands_attention: boolean
5879
+ readonly demandsAttention: boolean
5849
5880
  readonly display: Display
5850
5881
  readonly effect: number
5851
5882
  readonly fullscreen: boolean
5852
5883
  readonly gtk_app_menu_object_path: string | null
5884
+ readonly gtkAppMenuObjectPath: string | null
5853
5885
  readonly gtk_application_id: string | null
5886
+ readonly gtkApplicationId: string | null
5854
5887
  readonly gtk_application_object_path: string | null
5888
+ readonly gtkApplicationObjectPath: string | null
5855
5889
  readonly gtk_menubar_object_path: string | null
5890
+ readonly gtkMenubarObjectPath: string | null
5856
5891
  readonly gtk_unique_bus_name: string | null
5892
+ readonly gtkUniqueBusName: string | null
5857
5893
  readonly gtk_window_object_path: string | null
5894
+ readonly gtkWindowObjectPath: string | null
5858
5895
  readonly icon: any
5859
5896
  readonly is_alive: boolean
5897
+ readonly isAlive: boolean
5860
5898
  readonly maximized_horizontally: boolean
5899
+ readonly maximizedHorizontally: boolean
5861
5900
  readonly maximized_vertically: boolean
5901
+ readonly maximizedVertically: boolean
5862
5902
  readonly mini_icon: any
5903
+ readonly miniIcon: any
5863
5904
  readonly minimized: boolean
5864
5905
  readonly mutter_hints: string | null
5906
+ readonly mutterHints: string | null
5865
5907
  readonly on_all_workspaces: boolean
5908
+ readonly onAllWorkspaces: boolean
5866
5909
  readonly resizeable: boolean
5867
5910
  readonly skip_taskbar: boolean
5911
+ readonly skipTaskbar: boolean
5868
5912
  readonly title: string | null
5869
5913
  readonly urgent: boolean
5870
5914
  readonly user_time: number
5915
+ readonly userTime: number
5871
5916
  readonly window_type: WindowType
5917
+ readonly windowType: WindowType
5872
5918
  readonly wm_class: string | null
5919
+ readonly wmClass: string | null
5873
5920
  readonly xwindow: number
5874
5921
 
5875
5922
  // Owm methods of Meta-13.Meta.Window
@@ -6431,6 +6478,7 @@ export module WindowActor {
6431
6478
  // Own constructor properties of Meta-13.Meta.WindowActor
6432
6479
 
6433
6480
  meta_window?: Window | null
6481
+ metaWindow?: Window | null
6434
6482
  }
6435
6483
 
6436
6484
  }
@@ -6440,6 +6488,7 @@ export interface WindowActor extends Atk.ImplementorIface, Clutter.Animatable, C
6440
6488
  // Own properties of Meta-13.Meta.WindowActor
6441
6489
 
6442
6490
  readonly meta_window: Window
6491
+ readonly metaWindow: Window
6443
6492
 
6444
6493
  // Own fields of Meta-13.Meta.WindowActor
6445
6494
 
@@ -7030,7 +7079,9 @@ export interface Workspace {
7030
7079
 
7031
7080
  readonly active: boolean
7032
7081
  readonly n_windows: number
7082
+ readonly nWindows: number
7033
7083
  readonly workspace_index: number
7084
+ readonly workspaceIndex: number
7034
7085
 
7035
7086
  // Owm methods of Meta-13.Meta.Workspace
7036
7087
 
@@ -7198,8 +7249,11 @@ export interface WorkspaceManager {
7198
7249
  // Own properties of Meta-13.Meta.WorkspaceManager
7199
7250
 
7200
7251
  readonly layout_columns: number
7252
+ readonly layoutColumns: number
7201
7253
  readonly layout_rows: number
7254
+ readonly layoutRows: number
7202
7255
  readonly n_workspaces: number
7256
+ readonly nWorkspaces: number
7203
7257
 
7204
7258
  // Owm methods of Meta-13.Meta.WorkspaceManager
7205
7259
 
package/meta-13.d.ts CHANGED
@@ -2010,6 +2010,7 @@ module Background {
2010
2010
  // Own constructor properties of Meta-13.Meta.Background
2011
2011
 
2012
2012
  meta_display?: Display | null
2013
+ metaDisplay?: Display | null
2013
2014
  }
2014
2015
 
2015
2016
  }
@@ -2019,6 +2020,7 @@ interface Background {
2019
2020
  // Own properties of Meta-13.Meta.Background
2020
2021
 
2021
2022
  readonly meta_display: Display
2023
+ readonly metaDisplay: Display
2022
2024
 
2023
2025
  // Owm methods of Meta-13.Meta.Background
2024
2026
 
@@ -2082,6 +2084,7 @@ module BackgroundActor {
2082
2084
 
2083
2085
  meta_display?: Display | null
2084
2086
  monitor?: number | null
2087
+ metaDisplay?: Display | null
2085
2088
  }
2086
2089
 
2087
2090
  }
@@ -2091,6 +2094,7 @@ interface BackgroundActor extends Atk.ImplementorIface, Clutter.Animatable, Clut
2091
2094
  // Own properties of Meta-13.Meta.BackgroundActor
2092
2095
 
2093
2096
  readonly meta_display: Display
2097
+ readonly metaDisplay: Display
2094
2098
  readonly monitor: number
2095
2099
 
2096
2100
  // Class property signals of Meta-13.Meta.BackgroundActor
@@ -2386,6 +2390,11 @@ module BackgroundContent {
2386
2390
  rounded_clip_radius?: number | null
2387
2391
  vignette?: boolean | null
2388
2392
  vignette_sharpness?: number | null
2393
+ gradientHeight?: number | null
2394
+ gradientMaxDarkness?: number | null
2395
+ metaDisplay?: Display | null
2396
+ roundedClipRadius?: number | null
2397
+ vignetteSharpness?: number | null
2389
2398
  }
2390
2399
 
2391
2400
  }
@@ -2398,12 +2407,17 @@ interface BackgroundContent extends Clutter.Content {
2398
2407
  brightness: number
2399
2408
  gradient: boolean
2400
2409
  gradient_height: number
2410
+ gradientHeight: number
2401
2411
  gradient_max_darkness: number
2412
+ gradientMaxDarkness: number
2402
2413
  readonly meta_display: Display
2414
+ readonly metaDisplay: Display
2403
2415
  readonly monitor: number
2404
2416
  rounded_clip_radius: number
2417
+ roundedClipRadius: number
2405
2418
  vignette: boolean
2406
2419
  vignette_sharpness: number
2420
+ vignetteSharpness: number
2407
2421
 
2408
2422
  // Owm methods of Meta-13.Meta.BackgroundContent
2409
2423
 
@@ -3177,6 +3191,7 @@ module Context {
3177
3191
 
3178
3192
  name?: string | null
3179
3193
  unsafe_mode?: boolean | null
3194
+ unsafeMode?: boolean | null
3180
3195
  }
3181
3196
 
3182
3197
  }
@@ -3187,6 +3202,7 @@ interface Context {
3187
3202
 
3188
3203
  readonly name: string | null
3189
3204
  unsafe_mode: boolean
3205
+ unsafeMode: boolean
3190
3206
 
3191
3207
  // Own fields of Meta-13.Meta.Context
3192
3208
 
@@ -3602,7 +3618,9 @@ interface Display {
3602
3618
  // Own properties of Meta-13.Meta.Display
3603
3619
 
3604
3620
  readonly compositor_modifiers: Clutter.ModifierType
3621
+ readonly compositorModifiers: Clutter.ModifierType
3605
3622
  readonly focus_window: Window
3623
+ readonly focusWindow: Window
3606
3624
 
3607
3625
  // Owm methods of Meta-13.Meta.Display
3608
3626
 
@@ -4202,6 +4220,7 @@ module MonitorManager {
4202
4220
 
4203
4221
  backend?: Backend | null
4204
4222
  experimental_hdr?: string | null
4223
+ experimentalHdr?: string | null
4205
4224
  }
4206
4225
 
4207
4226
  }
@@ -4212,9 +4231,13 @@ interface MonitorManager {
4212
4231
 
4213
4232
  readonly backend: Backend
4214
4233
  experimental_hdr: string | null
4234
+ experimentalHdr: string | null
4215
4235
  readonly has_builtin_panel: boolean
4236
+ readonly hasBuiltinPanel: boolean
4216
4237
  readonly night_light_supported: boolean
4238
+ readonly nightLightSupported: boolean
4217
4239
  readonly panel_orientation_managed: boolean
4240
+ readonly panelOrientationManaged: boolean
4218
4241
 
4219
4242
  // Owm methods of Meta-13.Meta.MonitorManager
4220
4243
 
@@ -4631,6 +4654,7 @@ module RemoteAccessHandle {
4631
4654
  // Own constructor properties of Meta-13.Meta.RemoteAccessHandle
4632
4655
 
4633
4656
  is_recording?: boolean | null
4657
+ isRecording?: boolean | null
4634
4658
  }
4635
4659
 
4636
4660
  }
@@ -4640,6 +4664,7 @@ interface RemoteAccessHandle {
4640
4664
  // Own properties of Meta-13.Meta.RemoteAccessHandle
4641
4665
 
4642
4666
  readonly is_recording: boolean
4667
+ readonly isRecording: boolean
4643
4668
 
4644
4669
  // Own fields of Meta-13.Meta.RemoteAccessHandle
4645
4670
 
@@ -5522,6 +5547,8 @@ module StartupSequence {
5522
5547
  timestamp?: number | null
5523
5548
  wmclass?: string | null
5524
5549
  workspace?: number | null
5550
+ applicationId?: string | null
5551
+ iconName?: string | null
5525
5552
  }
5526
5553
 
5527
5554
  }
@@ -5531,8 +5558,10 @@ interface StartupSequence {
5531
5558
  // Own properties of Meta-13.Meta.StartupSequence
5532
5559
 
5533
5560
  readonly application_id: string | null
5561
+ readonly applicationId: string | null
5534
5562
  readonly display: Display
5535
5563
  readonly icon_name: string | null
5564
+ readonly iconName: string | null
5536
5565
  readonly id: string | null
5537
5566
  readonly name: string | null
5538
5567
  readonly timestamp: number
@@ -5846,32 +5875,50 @@ interface Window extends Gio.Initable {
5846
5875
 
5847
5876
  readonly above: boolean
5848
5877
  readonly appears_focused: boolean
5878
+ readonly appearsFocused: boolean
5849
5879
  readonly decorated: boolean
5850
5880
  readonly demands_attention: boolean
5881
+ readonly demandsAttention: boolean
5851
5882
  readonly display: Display
5852
5883
  readonly effect: number
5853
5884
  readonly fullscreen: boolean
5854
5885
  readonly gtk_app_menu_object_path: string | null
5886
+ readonly gtkAppMenuObjectPath: string | null
5855
5887
  readonly gtk_application_id: string | null
5888
+ readonly gtkApplicationId: string | null
5856
5889
  readonly gtk_application_object_path: string | null
5890
+ readonly gtkApplicationObjectPath: string | null
5857
5891
  readonly gtk_menubar_object_path: string | null
5892
+ readonly gtkMenubarObjectPath: string | null
5858
5893
  readonly gtk_unique_bus_name: string | null
5894
+ readonly gtkUniqueBusName: string | null
5859
5895
  readonly gtk_window_object_path: string | null
5896
+ readonly gtkWindowObjectPath: string | null
5860
5897
  readonly icon: any
5861
5898
  readonly is_alive: boolean
5899
+ readonly isAlive: boolean
5862
5900
  readonly maximized_horizontally: boolean
5901
+ readonly maximizedHorizontally: boolean
5863
5902
  readonly maximized_vertically: boolean
5903
+ readonly maximizedVertically: boolean
5864
5904
  readonly mini_icon: any
5905
+ readonly miniIcon: any
5865
5906
  readonly minimized: boolean
5866
5907
  readonly mutter_hints: string | null
5908
+ readonly mutterHints: string | null
5867
5909
  readonly on_all_workspaces: boolean
5910
+ readonly onAllWorkspaces: boolean
5868
5911
  readonly resizeable: boolean
5869
5912
  readonly skip_taskbar: boolean
5913
+ readonly skipTaskbar: boolean
5870
5914
  readonly title: string | null
5871
5915
  readonly urgent: boolean
5872
5916
  readonly user_time: number
5917
+ readonly userTime: number
5873
5918
  readonly window_type: WindowType
5919
+ readonly windowType: WindowType
5874
5920
  readonly wm_class: string | null
5921
+ readonly wmClass: string | null
5875
5922
  readonly xwindow: number
5876
5923
 
5877
5924
  // Owm methods of Meta-13.Meta.Window
@@ -6433,6 +6480,7 @@ module WindowActor {
6433
6480
  // Own constructor properties of Meta-13.Meta.WindowActor
6434
6481
 
6435
6482
  meta_window?: Window | null
6483
+ metaWindow?: Window | null
6436
6484
  }
6437
6485
 
6438
6486
  }
@@ -6442,6 +6490,7 @@ interface WindowActor extends Atk.ImplementorIface, Clutter.Animatable, Clutter.
6442
6490
  // Own properties of Meta-13.Meta.WindowActor
6443
6491
 
6444
6492
  readonly meta_window: Window
6493
+ readonly metaWindow: Window
6445
6494
 
6446
6495
  // Own fields of Meta-13.Meta.WindowActor
6447
6496
 
@@ -7032,7 +7081,9 @@ interface Workspace {
7032
7081
 
7033
7082
  readonly active: boolean
7034
7083
  readonly n_windows: number
7084
+ readonly nWindows: number
7035
7085
  readonly workspace_index: number
7086
+ readonly workspaceIndex: number
7036
7087
 
7037
7088
  // Owm methods of Meta-13.Meta.Workspace
7038
7089
 
@@ -7200,8 +7251,11 @@ interface WorkspaceManager {
7200
7251
  // Own properties of Meta-13.Meta.WorkspaceManager
7201
7252
 
7202
7253
  readonly layout_columns: number
7254
+ readonly layoutColumns: number
7203
7255
  readonly layout_rows: number
7256
+ readonly layoutRows: number
7204
7257
  readonly n_workspaces: number
7258
+ readonly nWorkspaces: number
7205
7259
 
7206
7260
  // Owm methods of Meta-13.Meta.WorkspaceManager
7207
7261
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@girs/meta-13",
3
- "version": "13.0.0-3.2.4",
3
+ "version": "13.0.0-3.2.6",
4
4
  "description": "GJS TypeScript type definitions for Meta-13, generated from library version 13.0.0",
5
5
  "type": "module",
6
6
  "module": "meta-13.js",
@@ -25,26 +25,26 @@
25
25
  "test:cjs": "NODE_OPTIONS=--max_old_space_size=9216 tsc --noEmit meta-13.d.cts"
26
26
  },
27
27
  "dependencies": {
28
- "@girs/atk-1.0": "^2.50.0-3.2.4",
29
- "@girs/cairo-1.0": "^1.0.0-3.2.4",
30
- "@girs/clutter-13": "^13.0.0-3.2.4",
31
- "@girs/cogl-13": "^13.0.0-3.2.4",
32
- "@girs/coglpango-13": "^13.0.0-3.2.4",
33
- "@girs/freetype2-2.0": "^2.0.0-3.2.4",
34
- "@girs/gdesktopenums-3.0": "^3.0.0-3.2.4",
35
- "@girs/gio-2.0": "^2.78.0-3.2.4",
36
- "@girs/gjs": "^3.2.4",
37
- "@girs/gl-1.0": "^1.0.0-3.2.4",
38
- "@girs/glib-2.0": "^2.78.0-3.2.4",
39
- "@girs/gobject-2.0": "^2.78.0-3.2.4",
40
- "@girs/graphene-1.0": "^1.0.0-3.2.4",
41
- "@girs/harfbuzz-0.0": "^8.2.1-3.2.4",
42
- "@girs/json-1.0": "^1.7.1-3.2.4",
43
- "@girs/mtk-13": "^13.0.0-3.2.4",
44
- "@girs/pango-1.0": "^1.51.0-3.2.4",
45
- "@girs/pangocairo-1.0": "^1.0.0-3.2.4",
46
- "@girs/xfixes-4.0": "^4.0.0-3.2.4",
47
- "@girs/xlib-2.0": "^2.0.0-3.2.4"
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-13": "^13.0.0-3.2.6",
31
+ "@girs/cogl-13": "^13.0.0-3.2.6",
32
+ "@girs/coglpango-13": "^13.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/gio-2.0": "^2.78.0-3.2.6",
36
+ "@girs/gjs": "^3.2.6",
37
+ "@girs/gl-1.0": "^1.0.0-3.2.6",
38
+ "@girs/glib-2.0": "^2.78.0-3.2.6",
39
+ "@girs/gobject-2.0": "^2.78.0-3.2.6",
40
+ "@girs/graphene-1.0": "^1.0.0-3.2.6",
41
+ "@girs/harfbuzz-0.0": "^8.2.1-3.2.6",
42
+ "@girs/json-1.0": "^1.7.1-3.2.6",
43
+ "@girs/mtk-13": "^13.0.0-3.2.6",
44
+ "@girs/pango-1.0": "^1.51.0-3.2.6",
45
+ "@girs/pangocairo-1.0": "^1.0.0-3.2.6",
46
+ "@girs/xfixes-4.0": "^4.0.0-3.2.6",
47
+ "@girs/xlib-2.0": "^2.0.0-3.2.6"
48
48
  },
49
49
  "devDependencies": {
50
50
  "typescript": "*"