@girs/gdl-3 3.0.0-3.2.7 → 3.0.0-3.2.9
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/gdl-3-ambient.js +2 -0
- package/gdl-3-import.js +3 -0
- package/gdl-3.d.cts +7 -69
- package/gdl-3.d.ts +7 -69
- package/package.json +24 -18
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.9.
|
|
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
|
|
package/gdl-3-ambient.js
ADDED
package/gdl-3-import.js
ADDED
package/gdl-3.d.cts
CHANGED
|
@@ -270,20 +270,11 @@ export module Dock {
|
|
|
270
270
|
|
|
271
271
|
// Own constructor properties of Gdl-3.Gdl.Dock
|
|
272
272
|
|
|
273
|
-
|
|
273
|
+
defaultTitle?: string | null
|
|
274
274
|
floating?: boolean | null
|
|
275
275
|
floatx?: number | null
|
|
276
276
|
floaty?: number | null
|
|
277
277
|
height?: number | null
|
|
278
|
-
/**
|
|
279
|
-
* Whether or not to prevent a floating dock window from appearing in the
|
|
280
|
-
* taskbar. Note that this only affects floating windows that are created
|
|
281
|
-
* after this flag is set; existing windows are not affected. Usually,
|
|
282
|
-
* this property is used when you create the dock.
|
|
283
|
-
*/
|
|
284
|
-
skip_taskbar?: boolean | null
|
|
285
|
-
width?: number | null
|
|
286
|
-
defaultTitle?: string | null
|
|
287
278
|
/**
|
|
288
279
|
* Whether or not to prevent a floating dock window from appearing in the
|
|
289
280
|
* taskbar. Note that this only affects floating windows that are created
|
|
@@ -291,6 +282,7 @@ export module Dock {
|
|
|
291
282
|
* this property is used when you create the dock.
|
|
292
283
|
*/
|
|
293
284
|
skipTaskbar?: boolean | null
|
|
285
|
+
width?: number | null
|
|
294
286
|
}
|
|
295
287
|
|
|
296
288
|
}
|
|
@@ -299,19 +291,11 @@ export interface Dock extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
299
291
|
|
|
300
292
|
// Own properties of Gdl-3.Gdl.Dock
|
|
301
293
|
|
|
302
|
-
default_title: string | null
|
|
303
294
|
defaultTitle: string | null
|
|
304
295
|
readonly floating: boolean
|
|
305
296
|
floatx: number
|
|
306
297
|
floaty: number
|
|
307
298
|
height: number
|
|
308
|
-
/**
|
|
309
|
-
* Whether or not to prevent a floating dock window from appearing in the
|
|
310
|
-
* taskbar. Note that this only affects floating windows that are created
|
|
311
|
-
* after this flag is set; existing windows are not affected. Usually,
|
|
312
|
-
* this property is used when you create the dock.
|
|
313
|
-
*/
|
|
314
|
-
skip_taskbar: boolean
|
|
315
299
|
/**
|
|
316
300
|
* Whether or not to prevent a floating dock window from appearing in the
|
|
317
301
|
* taskbar. Note that this only affects floating windows that are created
|
|
@@ -738,12 +722,11 @@ export module DockBar {
|
|
|
738
722
|
|
|
739
723
|
// Own constructor properties of Gdl-3.Gdl.DockBar
|
|
740
724
|
|
|
741
|
-
|
|
725
|
+
dockbarStyle?: DockBarStyle | null
|
|
742
726
|
/**
|
|
743
727
|
* The #GdlDockMaster object attached to the dockbar.
|
|
744
728
|
*/
|
|
745
729
|
master?: GObject.Object | null
|
|
746
|
-
dockbarStyle?: DockBarStyle | null
|
|
747
730
|
}
|
|
748
731
|
|
|
749
732
|
}
|
|
@@ -752,7 +735,6 @@ export interface DockBar extends Atk.ImplementorIface, Gtk.Buildable, Gtk.Orient
|
|
|
752
735
|
|
|
753
736
|
// Own properties of Gdl-3.Gdl.DockBar
|
|
754
737
|
|
|
755
|
-
dockbar_style: DockBarStyle
|
|
756
738
|
dockbarStyle: DockBarStyle
|
|
757
739
|
/**
|
|
758
740
|
* The #GdlDockMaster object attached to the dockbar.
|
|
@@ -1108,11 +1090,9 @@ export module DockItem {
|
|
|
1108
1090
|
* widget text direction is set to RTL).
|
|
1109
1091
|
*/
|
|
1110
1092
|
orientation?: Gtk.Orientation | null
|
|
1111
|
-
preferred_height?: number | null
|
|
1112
|
-
preferred_width?: number | null
|
|
1113
|
-
resize?: boolean | null
|
|
1114
1093
|
preferredHeight?: number | null
|
|
1115
1094
|
preferredWidth?: number | null
|
|
1095
|
+
resize?: boolean | null
|
|
1116
1096
|
}
|
|
1117
1097
|
|
|
1118
1098
|
}
|
|
@@ -1141,9 +1121,7 @@ export interface DockItem extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
1141
1121
|
* widget text direction is set to RTL).
|
|
1142
1122
|
*/
|
|
1143
1123
|
orientation: Gtk.Orientation
|
|
1144
|
-
preferred_height: number
|
|
1145
1124
|
preferredHeight: number
|
|
1146
|
-
preferred_width: number
|
|
1147
1125
|
preferredWidth: number
|
|
1148
1126
|
resize: boolean
|
|
1149
1127
|
|
|
@@ -2307,12 +2285,8 @@ export module DockMaster {
|
|
|
2307
2285
|
|
|
2308
2286
|
// Own constructor properties of Gdl-3.Gdl.DockMaster
|
|
2309
2287
|
|
|
2310
|
-
default_title?: string | null
|
|
2311
|
-
locked?: number | null
|
|
2312
|
-
switcher_style?: SwitcherStyle | null
|
|
2313
|
-
tab_pos?: Gtk.PositionType | null
|
|
2314
|
-
tab_reorderable?: boolean | null
|
|
2315
2288
|
defaultTitle?: string | null
|
|
2289
|
+
locked?: number | null
|
|
2316
2290
|
switcherStyle?: SwitcherStyle | null
|
|
2317
2291
|
tabPos?: Gtk.PositionType | null
|
|
2318
2292
|
tabReorderable?: boolean | null
|
|
@@ -2324,14 +2298,10 @@ export interface DockMaster {
|
|
|
2324
2298
|
|
|
2325
2299
|
// Own properties of Gdl-3.Gdl.DockMaster
|
|
2326
2300
|
|
|
2327
|
-
default_title: string | null
|
|
2328
2301
|
defaultTitle: string | null
|
|
2329
2302
|
locked: number
|
|
2330
|
-
switcher_style: SwitcherStyle
|
|
2331
2303
|
switcherStyle: SwitcherStyle
|
|
2332
|
-
tab_pos: Gtk.PositionType
|
|
2333
2304
|
tabPos: Gtk.PositionType
|
|
2334
|
-
tab_reorderable: boolean
|
|
2335
2305
|
tabReorderable: boolean
|
|
2336
2306
|
|
|
2337
2307
|
// Own fields of Gdl-3.Gdl.DockMaster
|
|
@@ -2843,7 +2813,7 @@ export module DockObject {
|
|
|
2843
2813
|
/**
|
|
2844
2814
|
* A long descriptive name.
|
|
2845
2815
|
*/
|
|
2846
|
-
|
|
2816
|
+
longName?: string | null
|
|
2847
2817
|
/**
|
|
2848
2818
|
* The master which manages all the objects in a dock ring
|
|
2849
2819
|
*/
|
|
@@ -2853,18 +2823,6 @@ export module DockObject {
|
|
|
2853
2823
|
* to recall the object from any other object in the ring
|
|
2854
2824
|
*/
|
|
2855
2825
|
name?: string | null
|
|
2856
|
-
/**
|
|
2857
|
-
* A GdkPixbuf to use for the icon of the dock object.
|
|
2858
|
-
*/
|
|
2859
|
-
pixbuf_icon?: any | null
|
|
2860
|
-
/**
|
|
2861
|
-
* A stock id to use for the icon of the dock object.
|
|
2862
|
-
*/
|
|
2863
|
-
stock_id?: string | null
|
|
2864
|
-
/**
|
|
2865
|
-
* A long descriptive name.
|
|
2866
|
-
*/
|
|
2867
|
-
longName?: string | null
|
|
2868
2826
|
/**
|
|
2869
2827
|
* A GdkPixbuf to use for the icon of the dock object.
|
|
2870
2828
|
*/
|
|
@@ -2881,10 +2839,6 @@ export interface DockObject extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
2881
2839
|
|
|
2882
2840
|
// Own properties of Gdl-3.Gdl.DockObject
|
|
2883
2841
|
|
|
2884
|
-
/**
|
|
2885
|
-
* A long descriptive name.
|
|
2886
|
-
*/
|
|
2887
|
-
long_name: string | null
|
|
2888
2842
|
/**
|
|
2889
2843
|
* A long descriptive name.
|
|
2890
2844
|
*/
|
|
@@ -2898,18 +2852,10 @@ export interface DockObject extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
2898
2852
|
* to recall the object from any other object in the ring
|
|
2899
2853
|
*/
|
|
2900
2854
|
readonly name: any
|
|
2901
|
-
/**
|
|
2902
|
-
* A GdkPixbuf to use for the icon of the dock object.
|
|
2903
|
-
*/
|
|
2904
|
-
pixbuf_icon: any
|
|
2905
2855
|
/**
|
|
2906
2856
|
* A GdkPixbuf to use for the icon of the dock object.
|
|
2907
2857
|
*/
|
|
2908
2858
|
pixbufIcon: any
|
|
2909
|
-
/**
|
|
2910
|
-
* A stock id to use for the icon of the dock object.
|
|
2911
|
-
*/
|
|
2912
|
-
stock_id: string | null
|
|
2913
2859
|
/**
|
|
2914
2860
|
* A stock id to use for the icon of the dock object.
|
|
2915
2861
|
*/
|
|
@@ -3846,10 +3792,9 @@ export module DockPlaceholder {
|
|
|
3846
3792
|
floaty?: number | null
|
|
3847
3793
|
height?: number | null
|
|
3848
3794
|
host?: DockObject | null
|
|
3849
|
-
|
|
3795
|
+
nextPlacement?: DockPlacement | null
|
|
3850
3796
|
sticky?: boolean | null
|
|
3851
3797
|
width?: number | null
|
|
3852
|
-
nextPlacement?: DockPlacement | null
|
|
3853
3798
|
}
|
|
3854
3799
|
|
|
3855
3800
|
}
|
|
@@ -3863,7 +3808,6 @@ export interface DockPlaceholder extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
3863
3808
|
readonly floaty: number
|
|
3864
3809
|
height: number
|
|
3865
3810
|
host: DockObject
|
|
3866
|
-
next_placement: DockPlacement
|
|
3867
3811
|
nextPlacement: DockPlacement
|
|
3868
3812
|
readonly sticky: boolean
|
|
3869
3813
|
width: number
|
|
@@ -4869,9 +4813,6 @@ export module Switcher {
|
|
|
4869
4813
|
|
|
4870
4814
|
// Own constructor properties of Gdl-3.Gdl.Switcher
|
|
4871
4815
|
|
|
4872
|
-
switcher_style?: SwitcherStyle | null
|
|
4873
|
-
tab_pos?: Gtk.PositionType | null
|
|
4874
|
-
tab_reorderable?: boolean | null
|
|
4875
4816
|
switcherStyle?: SwitcherStyle | null
|
|
4876
4817
|
tabPos?: Gtk.PositionType | null
|
|
4877
4818
|
tabReorderable?: boolean | null
|
|
@@ -4883,11 +4824,8 @@ export interface Switcher extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
4883
4824
|
|
|
4884
4825
|
// Own properties of Gdl-3.Gdl.Switcher
|
|
4885
4826
|
|
|
4886
|
-
switcher_style: SwitcherStyle
|
|
4887
4827
|
switcherStyle: SwitcherStyle
|
|
4888
|
-
tab_pos: Gtk.PositionType
|
|
4889
4828
|
tabPos: Gtk.PositionType
|
|
4890
|
-
tab_reorderable: boolean
|
|
4891
4829
|
tabReorderable: boolean
|
|
4892
4830
|
|
|
4893
4831
|
// Own fields of Gdl-3.Gdl.Switcher
|
package/gdl-3.d.ts
CHANGED
|
@@ -272,20 +272,11 @@ module Dock {
|
|
|
272
272
|
|
|
273
273
|
// Own constructor properties of Gdl-3.Gdl.Dock
|
|
274
274
|
|
|
275
|
-
|
|
275
|
+
defaultTitle?: string | null
|
|
276
276
|
floating?: boolean | null
|
|
277
277
|
floatx?: number | null
|
|
278
278
|
floaty?: number | null
|
|
279
279
|
height?: number | null
|
|
280
|
-
/**
|
|
281
|
-
* Whether or not to prevent a floating dock window from appearing in the
|
|
282
|
-
* taskbar. Note that this only affects floating windows that are created
|
|
283
|
-
* after this flag is set; existing windows are not affected. Usually,
|
|
284
|
-
* this property is used when you create the dock.
|
|
285
|
-
*/
|
|
286
|
-
skip_taskbar?: boolean | null
|
|
287
|
-
width?: number | null
|
|
288
|
-
defaultTitle?: string | null
|
|
289
280
|
/**
|
|
290
281
|
* Whether or not to prevent a floating dock window from appearing in the
|
|
291
282
|
* taskbar. Note that this only affects floating windows that are created
|
|
@@ -293,6 +284,7 @@ module Dock {
|
|
|
293
284
|
* this property is used when you create the dock.
|
|
294
285
|
*/
|
|
295
286
|
skipTaskbar?: boolean | null
|
|
287
|
+
width?: number | null
|
|
296
288
|
}
|
|
297
289
|
|
|
298
290
|
}
|
|
@@ -301,19 +293,11 @@ interface Dock extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
301
293
|
|
|
302
294
|
// Own properties of Gdl-3.Gdl.Dock
|
|
303
295
|
|
|
304
|
-
default_title: string | null
|
|
305
296
|
defaultTitle: string | null
|
|
306
297
|
readonly floating: boolean
|
|
307
298
|
floatx: number
|
|
308
299
|
floaty: number
|
|
309
300
|
height: number
|
|
310
|
-
/**
|
|
311
|
-
* Whether or not to prevent a floating dock window from appearing in the
|
|
312
|
-
* taskbar. Note that this only affects floating windows that are created
|
|
313
|
-
* after this flag is set; existing windows are not affected. Usually,
|
|
314
|
-
* this property is used when you create the dock.
|
|
315
|
-
*/
|
|
316
|
-
skip_taskbar: boolean
|
|
317
301
|
/**
|
|
318
302
|
* Whether or not to prevent a floating dock window from appearing in the
|
|
319
303
|
* taskbar. Note that this only affects floating windows that are created
|
|
@@ -740,12 +724,11 @@ module DockBar {
|
|
|
740
724
|
|
|
741
725
|
// Own constructor properties of Gdl-3.Gdl.DockBar
|
|
742
726
|
|
|
743
|
-
|
|
727
|
+
dockbarStyle?: DockBarStyle | null
|
|
744
728
|
/**
|
|
745
729
|
* The #GdlDockMaster object attached to the dockbar.
|
|
746
730
|
*/
|
|
747
731
|
master?: GObject.Object | null
|
|
748
|
-
dockbarStyle?: DockBarStyle | null
|
|
749
732
|
}
|
|
750
733
|
|
|
751
734
|
}
|
|
@@ -754,7 +737,6 @@ interface DockBar extends Atk.ImplementorIface, Gtk.Buildable, Gtk.Orientable {
|
|
|
754
737
|
|
|
755
738
|
// Own properties of Gdl-3.Gdl.DockBar
|
|
756
739
|
|
|
757
|
-
dockbar_style: DockBarStyle
|
|
758
740
|
dockbarStyle: DockBarStyle
|
|
759
741
|
/**
|
|
760
742
|
* The #GdlDockMaster object attached to the dockbar.
|
|
@@ -1110,11 +1092,9 @@ module DockItem {
|
|
|
1110
1092
|
* widget text direction is set to RTL).
|
|
1111
1093
|
*/
|
|
1112
1094
|
orientation?: Gtk.Orientation | null
|
|
1113
|
-
preferred_height?: number | null
|
|
1114
|
-
preferred_width?: number | null
|
|
1115
|
-
resize?: boolean | null
|
|
1116
1095
|
preferredHeight?: number | null
|
|
1117
1096
|
preferredWidth?: number | null
|
|
1097
|
+
resize?: boolean | null
|
|
1118
1098
|
}
|
|
1119
1099
|
|
|
1120
1100
|
}
|
|
@@ -1143,9 +1123,7 @@ interface DockItem extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
1143
1123
|
* widget text direction is set to RTL).
|
|
1144
1124
|
*/
|
|
1145
1125
|
orientation: Gtk.Orientation
|
|
1146
|
-
preferred_height: number
|
|
1147
1126
|
preferredHeight: number
|
|
1148
|
-
preferred_width: number
|
|
1149
1127
|
preferredWidth: number
|
|
1150
1128
|
resize: boolean
|
|
1151
1129
|
|
|
@@ -2309,12 +2287,8 @@ module DockMaster {
|
|
|
2309
2287
|
|
|
2310
2288
|
// Own constructor properties of Gdl-3.Gdl.DockMaster
|
|
2311
2289
|
|
|
2312
|
-
default_title?: string | null
|
|
2313
|
-
locked?: number | null
|
|
2314
|
-
switcher_style?: SwitcherStyle | null
|
|
2315
|
-
tab_pos?: Gtk.PositionType | null
|
|
2316
|
-
tab_reorderable?: boolean | null
|
|
2317
2290
|
defaultTitle?: string | null
|
|
2291
|
+
locked?: number | null
|
|
2318
2292
|
switcherStyle?: SwitcherStyle | null
|
|
2319
2293
|
tabPos?: Gtk.PositionType | null
|
|
2320
2294
|
tabReorderable?: boolean | null
|
|
@@ -2326,14 +2300,10 @@ interface DockMaster {
|
|
|
2326
2300
|
|
|
2327
2301
|
// Own properties of Gdl-3.Gdl.DockMaster
|
|
2328
2302
|
|
|
2329
|
-
default_title: string | null
|
|
2330
2303
|
defaultTitle: string | null
|
|
2331
2304
|
locked: number
|
|
2332
|
-
switcher_style: SwitcherStyle
|
|
2333
2305
|
switcherStyle: SwitcherStyle
|
|
2334
|
-
tab_pos: Gtk.PositionType
|
|
2335
2306
|
tabPos: Gtk.PositionType
|
|
2336
|
-
tab_reorderable: boolean
|
|
2337
2307
|
tabReorderable: boolean
|
|
2338
2308
|
|
|
2339
2309
|
// Own fields of Gdl-3.Gdl.DockMaster
|
|
@@ -2845,7 +2815,7 @@ module DockObject {
|
|
|
2845
2815
|
/**
|
|
2846
2816
|
* A long descriptive name.
|
|
2847
2817
|
*/
|
|
2848
|
-
|
|
2818
|
+
longName?: string | null
|
|
2849
2819
|
/**
|
|
2850
2820
|
* The master which manages all the objects in a dock ring
|
|
2851
2821
|
*/
|
|
@@ -2855,18 +2825,6 @@ module DockObject {
|
|
|
2855
2825
|
* to recall the object from any other object in the ring
|
|
2856
2826
|
*/
|
|
2857
2827
|
name?: string | null
|
|
2858
|
-
/**
|
|
2859
|
-
* A GdkPixbuf to use for the icon of the dock object.
|
|
2860
|
-
*/
|
|
2861
|
-
pixbuf_icon?: any | null
|
|
2862
|
-
/**
|
|
2863
|
-
* A stock id to use for the icon of the dock object.
|
|
2864
|
-
*/
|
|
2865
|
-
stock_id?: string | null
|
|
2866
|
-
/**
|
|
2867
|
-
* A long descriptive name.
|
|
2868
|
-
*/
|
|
2869
|
-
longName?: string | null
|
|
2870
2828
|
/**
|
|
2871
2829
|
* A GdkPixbuf to use for the icon of the dock object.
|
|
2872
2830
|
*/
|
|
@@ -2883,10 +2841,6 @@ interface DockObject extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
2883
2841
|
|
|
2884
2842
|
// Own properties of Gdl-3.Gdl.DockObject
|
|
2885
2843
|
|
|
2886
|
-
/**
|
|
2887
|
-
* A long descriptive name.
|
|
2888
|
-
*/
|
|
2889
|
-
long_name: string | null
|
|
2890
2844
|
/**
|
|
2891
2845
|
* A long descriptive name.
|
|
2892
2846
|
*/
|
|
@@ -2900,18 +2854,10 @@ interface DockObject extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
2900
2854
|
* to recall the object from any other object in the ring
|
|
2901
2855
|
*/
|
|
2902
2856
|
readonly name: any
|
|
2903
|
-
/**
|
|
2904
|
-
* A GdkPixbuf to use for the icon of the dock object.
|
|
2905
|
-
*/
|
|
2906
|
-
pixbuf_icon: any
|
|
2907
2857
|
/**
|
|
2908
2858
|
* A GdkPixbuf to use for the icon of the dock object.
|
|
2909
2859
|
*/
|
|
2910
2860
|
pixbufIcon: any
|
|
2911
|
-
/**
|
|
2912
|
-
* A stock id to use for the icon of the dock object.
|
|
2913
|
-
*/
|
|
2914
|
-
stock_id: string | null
|
|
2915
2861
|
/**
|
|
2916
2862
|
* A stock id to use for the icon of the dock object.
|
|
2917
2863
|
*/
|
|
@@ -3848,10 +3794,9 @@ module DockPlaceholder {
|
|
|
3848
3794
|
floaty?: number | null
|
|
3849
3795
|
height?: number | null
|
|
3850
3796
|
host?: DockObject | null
|
|
3851
|
-
|
|
3797
|
+
nextPlacement?: DockPlacement | null
|
|
3852
3798
|
sticky?: boolean | null
|
|
3853
3799
|
width?: number | null
|
|
3854
|
-
nextPlacement?: DockPlacement | null
|
|
3855
3800
|
}
|
|
3856
3801
|
|
|
3857
3802
|
}
|
|
@@ -3865,7 +3810,6 @@ interface DockPlaceholder extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
3865
3810
|
readonly floaty: number
|
|
3866
3811
|
height: number
|
|
3867
3812
|
host: DockObject
|
|
3868
|
-
next_placement: DockPlacement
|
|
3869
3813
|
nextPlacement: DockPlacement
|
|
3870
3814
|
readonly sticky: boolean
|
|
3871
3815
|
width: number
|
|
@@ -4871,9 +4815,6 @@ module Switcher {
|
|
|
4871
4815
|
|
|
4872
4816
|
// Own constructor properties of Gdl-3.Gdl.Switcher
|
|
4873
4817
|
|
|
4874
|
-
switcher_style?: SwitcherStyle | null
|
|
4875
|
-
tab_pos?: Gtk.PositionType | null
|
|
4876
|
-
tab_reorderable?: boolean | null
|
|
4877
4818
|
switcherStyle?: SwitcherStyle | null
|
|
4878
4819
|
tabPos?: Gtk.PositionType | null
|
|
4879
4820
|
tabReorderable?: boolean | null
|
|
@@ -4885,11 +4826,8 @@ interface Switcher extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
4885
4826
|
|
|
4886
4827
|
// Own properties of Gdl-3.Gdl.Switcher
|
|
4887
4828
|
|
|
4888
|
-
switcher_style: SwitcherStyle
|
|
4889
4829
|
switcherStyle: SwitcherStyle
|
|
4890
|
-
tab_pos: Gtk.PositionType
|
|
4891
4830
|
tabPos: Gtk.PositionType
|
|
4892
|
-
tab_reorderable: boolean
|
|
4893
4831
|
tabReorderable: boolean
|
|
4894
4832
|
|
|
4895
4833
|
// Own fields of Gdl-3.Gdl.Switcher
|
package/package.json
CHANGED
|
@@ -1,13 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@girs/gdl-3",
|
|
3
|
-
"version": "3.0.0-3.2.
|
|
3
|
+
"version": "3.0.0-3.2.9",
|
|
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",
|
|
7
7
|
"main": "gdl-3.js",
|
|
8
8
|
"exports": {
|
|
9
|
-
"./ambient":
|
|
10
|
-
|
|
9
|
+
"./ambient": {
|
|
10
|
+
"types": "./gdl-3-ambient.d.ts",
|
|
11
|
+
"default": "./gdl-3-ambient.js"
|
|
12
|
+
},
|
|
13
|
+
"./import": {
|
|
14
|
+
"types": "./gdl-3-import.d.ts",
|
|
15
|
+
"default": "./gdl-3-import.js"
|
|
16
|
+
},
|
|
11
17
|
".": {
|
|
12
18
|
"import": {
|
|
13
19
|
"types": "./gdl-3.d.ts",
|
|
@@ -25,20 +31,20 @@
|
|
|
25
31
|
"test:cjs": "NODE_OPTIONS=--max_old_space_size=9216 tsc --noEmit gdl-3.d.cts"
|
|
26
32
|
},
|
|
27
33
|
"dependencies": {
|
|
28
|
-
"@girs/atk-1.0": "^2.50.
|
|
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.
|
|
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.
|
|
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.
|
|
34
|
+
"@girs/atk-1.0": "^2.50.1-3.2.9",
|
|
35
|
+
"@girs/cairo-1.0": "^1.0.0-3.2.9",
|
|
36
|
+
"@girs/freetype2-2.0": "^2.0.0-3.2.9",
|
|
37
|
+
"@girs/gdk-3.0": "^3.24.41-3.2.9",
|
|
38
|
+
"@girs/gdkpixbuf-2.0": "^2.0.0-3.2.9",
|
|
39
|
+
"@girs/gio-2.0": "^2.78.0-3.2.9",
|
|
40
|
+
"@girs/gjs": "^3.2.9",
|
|
41
|
+
"@girs/glib-2.0": "^2.78.0-3.2.9",
|
|
42
|
+
"@girs/gmodule-2.0": "^2.0.0-3.2.9",
|
|
43
|
+
"@girs/gobject-2.0": "^2.78.0-3.2.9",
|
|
44
|
+
"@girs/gtk-3.0": "^3.24.41-3.2.9",
|
|
45
|
+
"@girs/harfbuzz-0.0": "^8.2.1-3.2.9",
|
|
46
|
+
"@girs/pango-1.0": "^1.51.0-3.2.9",
|
|
47
|
+
"@girs/xlib-2.0": "^2.0.0-3.2.9"
|
|
42
48
|
},
|
|
43
49
|
"devDependencies": {
|
|
44
50
|
"typescript": "*"
|
|
@@ -55,7 +61,7 @@
|
|
|
55
61
|
"license": "MIT",
|
|
56
62
|
"repository": {
|
|
57
63
|
"type": "git",
|
|
58
|
-
"url": "git+https://github.com/gjsify/
|
|
64
|
+
"url": "git+https://github.com/gjsify/ts-for-gir.git"
|
|
59
65
|
},
|
|
60
66
|
"bugs": {
|
|
61
67
|
"url": "https://github.com/gjsify/ts-for-gir/issues"
|