@girs/gdl-3 3.0.0-3.2.4 → 3.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/gdl-3-ambient.d.ts +0 -1
- package/gdl-3-import.d.ts +0 -1
- package/gdl-3.d.cts +62 -0
- package/gdl-3.d.ts +62 -0
- package/package.json +15 -15
package/README.md
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|

|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
GJS TypeScript type definitions for Gdl-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 Gdl-3, generated from library version 3.0.0 using [ts-for-gir](https://github.com/gjsify/ts-for-gir) v3.2.6.
|
|
9
9
|
|
|
10
10
|
The GNOME Devtools Library package provides a docking system and several utilities useful to GNOME development tools and GNOME applications in general.
|
|
11
11
|
|
|
@@ -82,6 +82,19 @@ Now you have also type support for this, too:
|
|
|
82
82
|
const Gdl = imports.gi.Gdl;
|
|
83
83
|
```
|
|
84
84
|
|
|
85
|
+
|
|
86
|
+
### ESM vs. CommonJS
|
|
87
|
+
|
|
88
|
+
GJS supports two different import syntaxes. The new modern ESM syntax and the old global imports syntax.
|
|
89
|
+
|
|
90
|
+
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.
|
|
91
|
+
|
|
92
|
+
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.
|
|
93
|
+
|
|
94
|
+
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.
|
|
95
|
+
|
|
96
|
+
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.
|
|
97
|
+
|
|
85
98
|
### Bundle
|
|
86
99
|
|
|
87
100
|
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/gdl-3-ambient.d.ts
CHANGED
package/gdl-3-import.d.ts
CHANGED
package/gdl-3.d.cts
CHANGED
|
@@ -283,6 +283,14 @@ export module Dock {
|
|
|
283
283
|
*/
|
|
284
284
|
skip_taskbar?: boolean | null
|
|
285
285
|
width?: number | null
|
|
286
|
+
defaultTitle?: string | null
|
|
287
|
+
/**
|
|
288
|
+
* Whether or not to prevent a floating dock window from appearing in the
|
|
289
|
+
* taskbar. Note that this only affects floating windows that are created
|
|
290
|
+
* after this flag is set; existing windows are not affected. Usually,
|
|
291
|
+
* this property is used when you create the dock.
|
|
292
|
+
*/
|
|
293
|
+
skipTaskbar?: boolean | null
|
|
286
294
|
}
|
|
287
295
|
|
|
288
296
|
}
|
|
@@ -292,6 +300,7 @@ export interface Dock extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
292
300
|
// Own properties of Gdl-3.Gdl.Dock
|
|
293
301
|
|
|
294
302
|
default_title: string | null
|
|
303
|
+
defaultTitle: string | null
|
|
295
304
|
readonly floating: boolean
|
|
296
305
|
floatx: number
|
|
297
306
|
floaty: number
|
|
@@ -303,6 +312,13 @@ export interface Dock extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
303
312
|
* this property is used when you create the dock.
|
|
304
313
|
*/
|
|
305
314
|
skip_taskbar: boolean
|
|
315
|
+
/**
|
|
316
|
+
* Whether or not to prevent a floating dock window from appearing in the
|
|
317
|
+
* taskbar. Note that this only affects floating windows that are created
|
|
318
|
+
* after this flag is set; existing windows are not affected. Usually,
|
|
319
|
+
* this property is used when you create the dock.
|
|
320
|
+
*/
|
|
321
|
+
skipTaskbar: boolean
|
|
306
322
|
width: number
|
|
307
323
|
|
|
308
324
|
// Conflicting properties
|
|
@@ -727,6 +743,7 @@ export module DockBar {
|
|
|
727
743
|
* The #GdlDockMaster object attached to the dockbar.
|
|
728
744
|
*/
|
|
729
745
|
master?: GObject.Object | null
|
|
746
|
+
dockbarStyle?: DockBarStyle | null
|
|
730
747
|
}
|
|
731
748
|
|
|
732
749
|
}
|
|
@@ -736,6 +753,7 @@ export interface DockBar extends Atk.ImplementorIface, Gtk.Buildable, Gtk.Orient
|
|
|
736
753
|
// Own properties of Gdl-3.Gdl.DockBar
|
|
737
754
|
|
|
738
755
|
dockbar_style: DockBarStyle
|
|
756
|
+
dockbarStyle: DockBarStyle
|
|
739
757
|
/**
|
|
740
758
|
* The #GdlDockMaster object attached to the dockbar.
|
|
741
759
|
*/
|
|
@@ -1093,6 +1111,8 @@ export module DockItem {
|
|
|
1093
1111
|
preferred_height?: number | null
|
|
1094
1112
|
preferred_width?: number | null
|
|
1095
1113
|
resize?: boolean | null
|
|
1114
|
+
preferredHeight?: number | null
|
|
1115
|
+
preferredWidth?: number | null
|
|
1096
1116
|
}
|
|
1097
1117
|
|
|
1098
1118
|
}
|
|
@@ -1122,7 +1142,9 @@ export interface DockItem extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
1122
1142
|
*/
|
|
1123
1143
|
orientation: Gtk.Orientation
|
|
1124
1144
|
preferred_height: number
|
|
1145
|
+
preferredHeight: number
|
|
1125
1146
|
preferred_width: number
|
|
1147
|
+
preferredWidth: number
|
|
1126
1148
|
resize: boolean
|
|
1127
1149
|
|
|
1128
1150
|
// Conflicting properties
|
|
@@ -2290,6 +2312,10 @@ export module DockMaster {
|
|
|
2290
2312
|
switcher_style?: SwitcherStyle | null
|
|
2291
2313
|
tab_pos?: Gtk.PositionType | null
|
|
2292
2314
|
tab_reorderable?: boolean | null
|
|
2315
|
+
defaultTitle?: string | null
|
|
2316
|
+
switcherStyle?: SwitcherStyle | null
|
|
2317
|
+
tabPos?: Gtk.PositionType | null
|
|
2318
|
+
tabReorderable?: boolean | null
|
|
2293
2319
|
}
|
|
2294
2320
|
|
|
2295
2321
|
}
|
|
@@ -2299,10 +2325,14 @@ export interface DockMaster {
|
|
|
2299
2325
|
// Own properties of Gdl-3.Gdl.DockMaster
|
|
2300
2326
|
|
|
2301
2327
|
default_title: string | null
|
|
2328
|
+
defaultTitle: string | null
|
|
2302
2329
|
locked: number
|
|
2303
2330
|
switcher_style: SwitcherStyle
|
|
2331
|
+
switcherStyle: SwitcherStyle
|
|
2304
2332
|
tab_pos: Gtk.PositionType
|
|
2333
|
+
tabPos: Gtk.PositionType
|
|
2305
2334
|
tab_reorderable: boolean
|
|
2335
|
+
tabReorderable: boolean
|
|
2306
2336
|
|
|
2307
2337
|
// Own fields of Gdl-3.Gdl.DockMaster
|
|
2308
2338
|
|
|
@@ -2831,6 +2861,18 @@ export module DockObject {
|
|
|
2831
2861
|
* A stock id to use for the icon of the dock object.
|
|
2832
2862
|
*/
|
|
2833
2863
|
stock_id?: string | null
|
|
2864
|
+
/**
|
|
2865
|
+
* A long descriptive name.
|
|
2866
|
+
*/
|
|
2867
|
+
longName?: string | null
|
|
2868
|
+
/**
|
|
2869
|
+
* A GdkPixbuf to use for the icon of the dock object.
|
|
2870
|
+
*/
|
|
2871
|
+
pixbufIcon?: any | null
|
|
2872
|
+
/**
|
|
2873
|
+
* A stock id to use for the icon of the dock object.
|
|
2874
|
+
*/
|
|
2875
|
+
stockId?: string | null
|
|
2834
2876
|
}
|
|
2835
2877
|
|
|
2836
2878
|
}
|
|
@@ -2843,6 +2885,10 @@ export interface DockObject extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
2843
2885
|
* A long descriptive name.
|
|
2844
2886
|
*/
|
|
2845
2887
|
long_name: string | null
|
|
2888
|
+
/**
|
|
2889
|
+
* A long descriptive name.
|
|
2890
|
+
*/
|
|
2891
|
+
longName: string | null
|
|
2846
2892
|
/**
|
|
2847
2893
|
* The master which manages all the objects in a dock ring
|
|
2848
2894
|
*/
|
|
@@ -2856,10 +2902,18 @@ export interface DockObject extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
2856
2902
|
* A GdkPixbuf to use for the icon of the dock object.
|
|
2857
2903
|
*/
|
|
2858
2904
|
pixbuf_icon: any
|
|
2905
|
+
/**
|
|
2906
|
+
* A GdkPixbuf to use for the icon of the dock object.
|
|
2907
|
+
*/
|
|
2908
|
+
pixbufIcon: any
|
|
2859
2909
|
/**
|
|
2860
2910
|
* A stock id to use for the icon of the dock object.
|
|
2861
2911
|
*/
|
|
2862
2912
|
stock_id: string | null
|
|
2913
|
+
/**
|
|
2914
|
+
* A stock id to use for the icon of the dock object.
|
|
2915
|
+
*/
|
|
2916
|
+
stockId: string | null
|
|
2863
2917
|
|
|
2864
2918
|
// Own fields of Gdl-3.Gdl.DockObject
|
|
2865
2919
|
|
|
@@ -3795,6 +3849,7 @@ export module DockPlaceholder {
|
|
|
3795
3849
|
next_placement?: DockPlacement | null
|
|
3796
3850
|
sticky?: boolean | null
|
|
3797
3851
|
width?: number | null
|
|
3852
|
+
nextPlacement?: DockPlacement | null
|
|
3798
3853
|
}
|
|
3799
3854
|
|
|
3800
3855
|
}
|
|
@@ -3809,6 +3864,7 @@ export interface DockPlaceholder extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
3809
3864
|
height: number
|
|
3810
3865
|
host: DockObject
|
|
3811
3866
|
next_placement: DockPlacement
|
|
3867
|
+
nextPlacement: DockPlacement
|
|
3812
3868
|
readonly sticky: boolean
|
|
3813
3869
|
width: number
|
|
3814
3870
|
|
|
@@ -4816,6 +4872,9 @@ export module Switcher {
|
|
|
4816
4872
|
switcher_style?: SwitcherStyle | null
|
|
4817
4873
|
tab_pos?: Gtk.PositionType | null
|
|
4818
4874
|
tab_reorderable?: boolean | null
|
|
4875
|
+
switcherStyle?: SwitcherStyle | null
|
|
4876
|
+
tabPos?: Gtk.PositionType | null
|
|
4877
|
+
tabReorderable?: boolean | null
|
|
4819
4878
|
}
|
|
4820
4879
|
|
|
4821
4880
|
}
|
|
@@ -4825,8 +4884,11 @@ export interface Switcher extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
4825
4884
|
// Own properties of Gdl-3.Gdl.Switcher
|
|
4826
4885
|
|
|
4827
4886
|
switcher_style: SwitcherStyle
|
|
4887
|
+
switcherStyle: SwitcherStyle
|
|
4828
4888
|
tab_pos: Gtk.PositionType
|
|
4889
|
+
tabPos: Gtk.PositionType
|
|
4829
4890
|
tab_reorderable: boolean
|
|
4891
|
+
tabReorderable: boolean
|
|
4830
4892
|
|
|
4831
4893
|
// Own fields of Gdl-3.Gdl.Switcher
|
|
4832
4894
|
|
package/gdl-3.d.ts
CHANGED
|
@@ -285,6 +285,14 @@ module Dock {
|
|
|
285
285
|
*/
|
|
286
286
|
skip_taskbar?: boolean | null
|
|
287
287
|
width?: number | null
|
|
288
|
+
defaultTitle?: string | null
|
|
289
|
+
/**
|
|
290
|
+
* Whether or not to prevent a floating dock window from appearing in the
|
|
291
|
+
* taskbar. Note that this only affects floating windows that are created
|
|
292
|
+
* after this flag is set; existing windows are not affected. Usually,
|
|
293
|
+
* this property is used when you create the dock.
|
|
294
|
+
*/
|
|
295
|
+
skipTaskbar?: boolean | null
|
|
288
296
|
}
|
|
289
297
|
|
|
290
298
|
}
|
|
@@ -294,6 +302,7 @@ interface Dock extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
294
302
|
// Own properties of Gdl-3.Gdl.Dock
|
|
295
303
|
|
|
296
304
|
default_title: string | null
|
|
305
|
+
defaultTitle: string | null
|
|
297
306
|
readonly floating: boolean
|
|
298
307
|
floatx: number
|
|
299
308
|
floaty: number
|
|
@@ -305,6 +314,13 @@ interface Dock extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
305
314
|
* this property is used when you create the dock.
|
|
306
315
|
*/
|
|
307
316
|
skip_taskbar: boolean
|
|
317
|
+
/**
|
|
318
|
+
* Whether or not to prevent a floating dock window from appearing in the
|
|
319
|
+
* taskbar. Note that this only affects floating windows that are created
|
|
320
|
+
* after this flag is set; existing windows are not affected. Usually,
|
|
321
|
+
* this property is used when you create the dock.
|
|
322
|
+
*/
|
|
323
|
+
skipTaskbar: boolean
|
|
308
324
|
width: number
|
|
309
325
|
|
|
310
326
|
// Conflicting properties
|
|
@@ -729,6 +745,7 @@ module DockBar {
|
|
|
729
745
|
* The #GdlDockMaster object attached to the dockbar.
|
|
730
746
|
*/
|
|
731
747
|
master?: GObject.Object | null
|
|
748
|
+
dockbarStyle?: DockBarStyle | null
|
|
732
749
|
}
|
|
733
750
|
|
|
734
751
|
}
|
|
@@ -738,6 +755,7 @@ interface DockBar extends Atk.ImplementorIface, Gtk.Buildable, Gtk.Orientable {
|
|
|
738
755
|
// Own properties of Gdl-3.Gdl.DockBar
|
|
739
756
|
|
|
740
757
|
dockbar_style: DockBarStyle
|
|
758
|
+
dockbarStyle: DockBarStyle
|
|
741
759
|
/**
|
|
742
760
|
* The #GdlDockMaster object attached to the dockbar.
|
|
743
761
|
*/
|
|
@@ -1095,6 +1113,8 @@ module DockItem {
|
|
|
1095
1113
|
preferred_height?: number | null
|
|
1096
1114
|
preferred_width?: number | null
|
|
1097
1115
|
resize?: boolean | null
|
|
1116
|
+
preferredHeight?: number | null
|
|
1117
|
+
preferredWidth?: number | null
|
|
1098
1118
|
}
|
|
1099
1119
|
|
|
1100
1120
|
}
|
|
@@ -1124,7 +1144,9 @@ interface DockItem extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
1124
1144
|
*/
|
|
1125
1145
|
orientation: Gtk.Orientation
|
|
1126
1146
|
preferred_height: number
|
|
1147
|
+
preferredHeight: number
|
|
1127
1148
|
preferred_width: number
|
|
1149
|
+
preferredWidth: number
|
|
1128
1150
|
resize: boolean
|
|
1129
1151
|
|
|
1130
1152
|
// Conflicting properties
|
|
@@ -2292,6 +2314,10 @@ module DockMaster {
|
|
|
2292
2314
|
switcher_style?: SwitcherStyle | null
|
|
2293
2315
|
tab_pos?: Gtk.PositionType | null
|
|
2294
2316
|
tab_reorderable?: boolean | null
|
|
2317
|
+
defaultTitle?: string | null
|
|
2318
|
+
switcherStyle?: SwitcherStyle | null
|
|
2319
|
+
tabPos?: Gtk.PositionType | null
|
|
2320
|
+
tabReorderable?: boolean | null
|
|
2295
2321
|
}
|
|
2296
2322
|
|
|
2297
2323
|
}
|
|
@@ -2301,10 +2327,14 @@ interface DockMaster {
|
|
|
2301
2327
|
// Own properties of Gdl-3.Gdl.DockMaster
|
|
2302
2328
|
|
|
2303
2329
|
default_title: string | null
|
|
2330
|
+
defaultTitle: string | null
|
|
2304
2331
|
locked: number
|
|
2305
2332
|
switcher_style: SwitcherStyle
|
|
2333
|
+
switcherStyle: SwitcherStyle
|
|
2306
2334
|
tab_pos: Gtk.PositionType
|
|
2335
|
+
tabPos: Gtk.PositionType
|
|
2307
2336
|
tab_reorderable: boolean
|
|
2337
|
+
tabReorderable: boolean
|
|
2308
2338
|
|
|
2309
2339
|
// Own fields of Gdl-3.Gdl.DockMaster
|
|
2310
2340
|
|
|
@@ -2833,6 +2863,18 @@ module DockObject {
|
|
|
2833
2863
|
* A stock id to use for the icon of the dock object.
|
|
2834
2864
|
*/
|
|
2835
2865
|
stock_id?: string | null
|
|
2866
|
+
/**
|
|
2867
|
+
* A long descriptive name.
|
|
2868
|
+
*/
|
|
2869
|
+
longName?: string | null
|
|
2870
|
+
/**
|
|
2871
|
+
* A GdkPixbuf to use for the icon of the dock object.
|
|
2872
|
+
*/
|
|
2873
|
+
pixbufIcon?: any | null
|
|
2874
|
+
/**
|
|
2875
|
+
* A stock id to use for the icon of the dock object.
|
|
2876
|
+
*/
|
|
2877
|
+
stockId?: string | null
|
|
2836
2878
|
}
|
|
2837
2879
|
|
|
2838
2880
|
}
|
|
@@ -2845,6 +2887,10 @@ interface DockObject extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
2845
2887
|
* A long descriptive name.
|
|
2846
2888
|
*/
|
|
2847
2889
|
long_name: string | null
|
|
2890
|
+
/**
|
|
2891
|
+
* A long descriptive name.
|
|
2892
|
+
*/
|
|
2893
|
+
longName: string | null
|
|
2848
2894
|
/**
|
|
2849
2895
|
* The master which manages all the objects in a dock ring
|
|
2850
2896
|
*/
|
|
@@ -2858,10 +2904,18 @@ interface DockObject extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
2858
2904
|
* A GdkPixbuf to use for the icon of the dock object.
|
|
2859
2905
|
*/
|
|
2860
2906
|
pixbuf_icon: any
|
|
2907
|
+
/**
|
|
2908
|
+
* A GdkPixbuf to use for the icon of the dock object.
|
|
2909
|
+
*/
|
|
2910
|
+
pixbufIcon: any
|
|
2861
2911
|
/**
|
|
2862
2912
|
* A stock id to use for the icon of the dock object.
|
|
2863
2913
|
*/
|
|
2864
2914
|
stock_id: string | null
|
|
2915
|
+
/**
|
|
2916
|
+
* A stock id to use for the icon of the dock object.
|
|
2917
|
+
*/
|
|
2918
|
+
stockId: string | null
|
|
2865
2919
|
|
|
2866
2920
|
// Own fields of Gdl-3.Gdl.DockObject
|
|
2867
2921
|
|
|
@@ -3797,6 +3851,7 @@ module DockPlaceholder {
|
|
|
3797
3851
|
next_placement?: DockPlacement | null
|
|
3798
3852
|
sticky?: boolean | null
|
|
3799
3853
|
width?: number | null
|
|
3854
|
+
nextPlacement?: DockPlacement | null
|
|
3800
3855
|
}
|
|
3801
3856
|
|
|
3802
3857
|
}
|
|
@@ -3811,6 +3866,7 @@ interface DockPlaceholder extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
3811
3866
|
height: number
|
|
3812
3867
|
host: DockObject
|
|
3813
3868
|
next_placement: DockPlacement
|
|
3869
|
+
nextPlacement: DockPlacement
|
|
3814
3870
|
readonly sticky: boolean
|
|
3815
3871
|
width: number
|
|
3816
3872
|
|
|
@@ -4818,6 +4874,9 @@ module Switcher {
|
|
|
4818
4874
|
switcher_style?: SwitcherStyle | null
|
|
4819
4875
|
tab_pos?: Gtk.PositionType | null
|
|
4820
4876
|
tab_reorderable?: boolean | null
|
|
4877
|
+
switcherStyle?: SwitcherStyle | null
|
|
4878
|
+
tabPos?: Gtk.PositionType | null
|
|
4879
|
+
tabReorderable?: boolean | null
|
|
4821
4880
|
}
|
|
4822
4881
|
|
|
4823
4882
|
}
|
|
@@ -4827,8 +4886,11 @@ interface Switcher extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
4827
4886
|
// Own properties of Gdl-3.Gdl.Switcher
|
|
4828
4887
|
|
|
4829
4888
|
switcher_style: SwitcherStyle
|
|
4889
|
+
switcherStyle: SwitcherStyle
|
|
4830
4890
|
tab_pos: Gtk.PositionType
|
|
4891
|
+
tabPos: Gtk.PositionType
|
|
4831
4892
|
tab_reorderable: boolean
|
|
4893
|
+
tabReorderable: boolean
|
|
4832
4894
|
|
|
4833
4895
|
// Own fields of Gdl-3.Gdl.Switcher
|
|
4834
4896
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@girs/gdl-3",
|
|
3
|
-
"version": "3.0.0-3.2.
|
|
3
|
+
"version": "3.0.0-3.2.6",
|
|
4
4
|
"description": "GJS TypeScript type definitions for Gdl-3, generated from library version 3.0.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "gdl-3.js",
|
|
@@ -25,20 +25,20 @@
|
|
|
25
25
|
"test:cjs": "NODE_OPTIONS=--max_old_space_size=9216 tsc --noEmit gdl-3.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/freetype2-2.0": "^2.0.0-3.2.
|
|
31
|
-
"@girs/gdk-3.0": "^3.24.38-3.2.
|
|
32
|
-
"@girs/gdkpixbuf-2.0": "^2.0.0-3.2.
|
|
33
|
-
"@girs/gio-2.0": "^2.78.0-3.2.
|
|
34
|
-
"@girs/gjs": "^3.2.
|
|
35
|
-
"@girs/glib-2.0": "^2.78.0-3.2.
|
|
36
|
-
"@girs/gmodule-2.0": "^2.0.0-3.2.
|
|
37
|
-
"@girs/gobject-2.0": "^2.78.0-3.2.
|
|
38
|
-
"@girs/gtk-3.0": "^3.24.38-3.2.
|
|
39
|
-
"@girs/harfbuzz-0.0": "^8.2.1-3.2.
|
|
40
|
-
"@girs/pango-1.0": "^1.51.0-3.2.
|
|
41
|
-
"@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/freetype2-2.0": "^2.0.0-3.2.6",
|
|
31
|
+
"@girs/gdk-3.0": "^3.24.38-3.2.6",
|
|
32
|
+
"@girs/gdkpixbuf-2.0": "^2.0.0-3.2.6",
|
|
33
|
+
"@girs/gio-2.0": "^2.78.0-3.2.6",
|
|
34
|
+
"@girs/gjs": "^3.2.6",
|
|
35
|
+
"@girs/glib-2.0": "^2.78.0-3.2.6",
|
|
36
|
+
"@girs/gmodule-2.0": "^2.0.0-3.2.6",
|
|
37
|
+
"@girs/gobject-2.0": "^2.78.0-3.2.6",
|
|
38
|
+
"@girs/gtk-3.0": "^3.24.38-3.2.6",
|
|
39
|
+
"@girs/harfbuzz-0.0": "^8.2.1-3.2.6",
|
|
40
|
+
"@girs/pango-1.0": "^1.51.0-3.2.6",
|
|
41
|
+
"@girs/xlib-2.0": "^2.0.0-3.2.6"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
44
|
"typescript": "*"
|