@girs/egg-1.0 1.0.0-3.2.4 → 1.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/egg-1.0-ambient.d.ts +0 -1
- package/egg-1.0-import.d.ts +0 -1
- package/egg-1.0.d.cts +108 -0
- package/egg-1.0.d.ts +108 -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 Egg-1.0, generated from library version 1.0.0 using [ts-for-gir](https://github.com/gjsify/ts-for-gir) v3.2.
|
|
8
|
+
GJS TypeScript type definitions for Egg-1.0, generated from library version 1.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 Egg = imports.gi.Egg;
|
|
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/egg-1.0-ambient.d.ts
CHANGED
package/egg-1.0-import.d.ts
CHANGED
package/egg-1.0.d.cts
CHANGED
|
@@ -127,6 +127,7 @@ export module Animation {
|
|
|
127
127
|
* animated.
|
|
128
128
|
*/
|
|
129
129
|
target?: GObject.Object | null
|
|
130
|
+
frameClock?: Gdk.FrameClock | null
|
|
130
131
|
}
|
|
131
132
|
|
|
132
133
|
}
|
|
@@ -141,6 +142,7 @@ export interface Animation {
|
|
|
141
142
|
*/
|
|
142
143
|
readonly duration: number
|
|
143
144
|
readonly frame_clock: Gdk.FrameClock
|
|
145
|
+
readonly frameClock: Gdk.FrameClock
|
|
144
146
|
/**
|
|
145
147
|
* The "mode" property is the Alpha function that should be used to
|
|
146
148
|
* determine the offset within the animation based on the current
|
|
@@ -350,6 +352,7 @@ export module Box {
|
|
|
350
352
|
// Own constructor properties of Egg-1.0.Egg.Box
|
|
351
353
|
|
|
352
354
|
max_width_request?: number | null
|
|
355
|
+
maxWidthRequest?: number | null
|
|
353
356
|
}
|
|
354
357
|
|
|
355
358
|
}
|
|
@@ -359,6 +362,7 @@ export interface Box extends Atk.ImplementorIface, Gtk.Buildable, Gtk.Orientable
|
|
|
359
362
|
// Own properties of Egg-1.0.Egg.Box
|
|
360
363
|
|
|
361
364
|
max_width_request: number
|
|
365
|
+
maxWidthRequest: number
|
|
362
366
|
|
|
363
367
|
// Own fields of Egg-1.0.Egg.Box
|
|
364
368
|
|
|
@@ -593,6 +597,7 @@ export module CenteringBin {
|
|
|
593
597
|
// Own constructor properties of Egg-1.0.Egg.CenteringBin
|
|
594
598
|
|
|
595
599
|
max_width_request?: number | null
|
|
600
|
+
maxWidthRequest?: number | null
|
|
596
601
|
}
|
|
597
602
|
|
|
598
603
|
}
|
|
@@ -602,6 +607,7 @@ export interface CenteringBin extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
602
607
|
// Own properties of Egg-1.0.Egg.CenteringBin
|
|
603
608
|
|
|
604
609
|
max_width_request: number
|
|
610
|
+
maxWidthRequest: number
|
|
605
611
|
|
|
606
612
|
// Own fields of Egg-1.0.Egg.CenteringBin
|
|
607
613
|
|
|
@@ -821,6 +827,10 @@ export module ColumnLayout {
|
|
|
821
827
|
column_width?: number | null
|
|
822
828
|
max_columns?: number | null
|
|
823
829
|
row_spacing?: number | null
|
|
830
|
+
columnSpacing?: number | null
|
|
831
|
+
columnWidth?: number | null
|
|
832
|
+
maxColumns?: number | null
|
|
833
|
+
rowSpacing?: number | null
|
|
824
834
|
}
|
|
825
835
|
|
|
826
836
|
}
|
|
@@ -830,9 +840,13 @@ export interface ColumnLayout extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
830
840
|
// Own properties of Egg-1.0.Egg.ColumnLayout
|
|
831
841
|
|
|
832
842
|
column_spacing: number
|
|
843
|
+
columnSpacing: number
|
|
833
844
|
column_width: number
|
|
845
|
+
columnWidth: number
|
|
834
846
|
max_columns: number
|
|
847
|
+
maxColumns: number
|
|
835
848
|
row_spacing: number
|
|
849
|
+
rowSpacing: number
|
|
836
850
|
|
|
837
851
|
// Own fields of Egg-1.0.Egg.ColumnLayout
|
|
838
852
|
|
|
@@ -1267,6 +1281,8 @@ export module EmptyState {
|
|
|
1267
1281
|
resource?: string | null
|
|
1268
1282
|
subtitle?: string | null
|
|
1269
1283
|
title?: string | null
|
|
1284
|
+
iconName?: string | null
|
|
1285
|
+
pixelSize?: number | null
|
|
1270
1286
|
}
|
|
1271
1287
|
|
|
1272
1288
|
}
|
|
@@ -1276,7 +1292,9 @@ export interface EmptyState extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
1276
1292
|
// Own properties of Egg-1.0.Egg.EmptyState
|
|
1277
1293
|
|
|
1278
1294
|
icon_name: string | null
|
|
1295
|
+
iconName: string | null
|
|
1279
1296
|
pixel_size: number
|
|
1297
|
+
pixelSize: number
|
|
1280
1298
|
resource: string | null
|
|
1281
1299
|
subtitle: string | null
|
|
1282
1300
|
title: string | null
|
|
@@ -1508,6 +1526,7 @@ export module EntryBox {
|
|
|
1508
1526
|
// Own constructor properties of Egg-1.0.Egg.EntryBox
|
|
1509
1527
|
|
|
1510
1528
|
max_width_chars?: number | null
|
|
1529
|
+
maxWidthChars?: number | null
|
|
1511
1530
|
}
|
|
1512
1531
|
|
|
1513
1532
|
}
|
|
@@ -1517,6 +1536,7 @@ export interface EntryBox extends Atk.ImplementorIface, Gtk.Buildable, Gtk.Orien
|
|
|
1517
1536
|
// Own properties of Egg-1.0.Egg.EntryBox
|
|
1518
1537
|
|
|
1519
1538
|
max_width_chars: number
|
|
1539
|
+
maxWidthChars: number
|
|
1520
1540
|
|
|
1521
1541
|
// Conflicting methods
|
|
1522
1542
|
|
|
@@ -1750,6 +1770,11 @@ export module FileChooserEntry {
|
|
|
1750
1770
|
max_width_chars?: number | null
|
|
1751
1771
|
show_hidden?: boolean | null
|
|
1752
1772
|
title?: string | null
|
|
1773
|
+
createFolders?: boolean | null
|
|
1774
|
+
doOverwriteConfirmation?: boolean | null
|
|
1775
|
+
localOnly?: boolean | null
|
|
1776
|
+
maxWidthChars?: number | null
|
|
1777
|
+
showHidden?: boolean | null
|
|
1753
1778
|
}
|
|
1754
1779
|
|
|
1755
1780
|
}
|
|
@@ -1760,12 +1785,17 @@ export interface FileChooserEntry extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
1760
1785
|
|
|
1761
1786
|
action: Gtk.FileChooserAction
|
|
1762
1787
|
create_folders: boolean
|
|
1788
|
+
createFolders: boolean
|
|
1763
1789
|
do_overwrite_confirmation: boolean
|
|
1790
|
+
doOverwriteConfirmation: boolean
|
|
1764
1791
|
file: Gio.File
|
|
1765
1792
|
filter: Gtk.FileFilter
|
|
1766
1793
|
local_only: boolean
|
|
1794
|
+
localOnly: boolean
|
|
1767
1795
|
max_width_chars: number
|
|
1796
|
+
maxWidthChars: number
|
|
1768
1797
|
show_hidden: boolean
|
|
1798
|
+
showHidden: boolean
|
|
1769
1799
|
title: string | null
|
|
1770
1800
|
|
|
1771
1801
|
// Own fields of Egg-1.0.Egg.FileChooserEntry
|
|
@@ -2008,6 +2038,9 @@ export module ListBox {
|
|
|
2008
2038
|
property_name?: string | null
|
|
2009
2039
|
row_type?: GObject.GType | null
|
|
2010
2040
|
row_type_name?: string | null
|
|
2041
|
+
propertyName?: string | null
|
|
2042
|
+
rowType?: GObject.GType | null
|
|
2043
|
+
rowTypeName?: string | null
|
|
2011
2044
|
}
|
|
2012
2045
|
|
|
2013
2046
|
}
|
|
@@ -2017,8 +2050,11 @@ export interface ListBox extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
2017
2050
|
// Own properties of Egg-1.0.Egg.ListBox
|
|
2018
2051
|
|
|
2019
2052
|
readonly property_name: string | null
|
|
2053
|
+
readonly propertyName: string | null
|
|
2020
2054
|
readonly row_type: GObject.GType
|
|
2055
|
+
readonly rowType: GObject.GType
|
|
2021
2056
|
readonly row_type_name: string | null
|
|
2057
|
+
readonly rowTypeName: string | null
|
|
2022
2058
|
|
|
2023
2059
|
// Own fields of Egg-1.0.Egg.ListBox
|
|
2024
2060
|
|
|
@@ -2778,6 +2814,7 @@ export module ProgressButton {
|
|
|
2778
2814
|
|
|
2779
2815
|
progress?: number | null
|
|
2780
2816
|
show_progress?: boolean | null
|
|
2817
|
+
showProgress?: boolean | null
|
|
2781
2818
|
}
|
|
2782
2819
|
|
|
2783
2820
|
}
|
|
@@ -2788,6 +2825,7 @@ export interface ProgressButton extends Atk.ImplementorIface, Gtk.Actionable, Gt
|
|
|
2788
2825
|
|
|
2789
2826
|
progress: number
|
|
2790
2827
|
show_progress: boolean
|
|
2828
|
+
showProgress: boolean
|
|
2791
2829
|
|
|
2792
2830
|
// Own fields of Egg-1.0.Egg.ProgressButton
|
|
2793
2831
|
|
|
@@ -3054,6 +3092,8 @@ export module RadioBox {
|
|
|
3054
3092
|
|
|
3055
3093
|
active_id?: string | null
|
|
3056
3094
|
show_more?: boolean | null
|
|
3095
|
+
activeId?: string | null
|
|
3096
|
+
showMore?: boolean | null
|
|
3057
3097
|
}
|
|
3058
3098
|
|
|
3059
3099
|
}
|
|
@@ -3063,8 +3103,11 @@ export interface RadioBox extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
3063
3103
|
// Own properties of Egg-1.0.Egg.RadioBox
|
|
3064
3104
|
|
|
3065
3105
|
active_id: string | null
|
|
3106
|
+
activeId: string | null
|
|
3066
3107
|
readonly has_more: boolean
|
|
3108
|
+
readonly hasMore: boolean
|
|
3067
3109
|
show_more: boolean
|
|
3110
|
+
showMore: boolean
|
|
3068
3111
|
|
|
3069
3112
|
// Own fields of Egg-1.0.Egg.RadioBox
|
|
3070
3113
|
|
|
@@ -3554,6 +3597,8 @@ export module SearchBar {
|
|
|
3554
3597
|
|
|
3555
3598
|
search_mode_enabled?: boolean | null
|
|
3556
3599
|
show_close_button?: boolean | null
|
|
3600
|
+
searchModeEnabled?: boolean | null
|
|
3601
|
+
showCloseButton?: boolean | null
|
|
3557
3602
|
}
|
|
3558
3603
|
|
|
3559
3604
|
}
|
|
@@ -3563,7 +3608,9 @@ export interface SearchBar extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
3563
3608
|
// Own properties of Egg-1.0.Egg.SearchBar
|
|
3564
3609
|
|
|
3565
3610
|
search_mode_enabled: boolean
|
|
3611
|
+
searchModeEnabled: boolean
|
|
3566
3612
|
show_close_button: boolean
|
|
3613
|
+
showCloseButton: boolean
|
|
3567
3614
|
|
|
3568
3615
|
// Own fields of Egg-1.0.Egg.SearchBar
|
|
3569
3616
|
|
|
@@ -3792,6 +3839,9 @@ export module SettingsFlagAction {
|
|
|
3792
3839
|
flag_nick?: string | null
|
|
3793
3840
|
schema_id?: string | null
|
|
3794
3841
|
schema_key?: string | null
|
|
3842
|
+
flagNick?: string | null
|
|
3843
|
+
schemaId?: string | null
|
|
3844
|
+
schemaKey?: string | null
|
|
3795
3845
|
}
|
|
3796
3846
|
|
|
3797
3847
|
}
|
|
@@ -3801,8 +3851,11 @@ export interface SettingsFlagAction extends Gio.Action {
|
|
|
3801
3851
|
// Own properties of Egg-1.0.Egg.SettingsFlagAction
|
|
3802
3852
|
|
|
3803
3853
|
readonly flag_nick: string | null
|
|
3854
|
+
readonly flagNick: string | null
|
|
3804
3855
|
readonly schema_id: string | null
|
|
3856
|
+
readonly schemaId: string | null
|
|
3805
3857
|
schema_key: string | null
|
|
3858
|
+
schemaKey: string | null
|
|
3806
3859
|
|
|
3807
3860
|
// Class property signals of Egg-1.0.Egg.SettingsFlagAction
|
|
3808
3861
|
|
|
@@ -3868,6 +3921,7 @@ export module SettingsSandwich {
|
|
|
3868
3921
|
|
|
3869
3922
|
path?: string | null
|
|
3870
3923
|
schema_id?: string | null
|
|
3924
|
+
schemaId?: string | null
|
|
3871
3925
|
}
|
|
3872
3926
|
|
|
3873
3927
|
}
|
|
@@ -3878,6 +3932,7 @@ export interface SettingsSandwich {
|
|
|
3878
3932
|
|
|
3879
3933
|
readonly path: string | null
|
|
3880
3934
|
readonly schema_id: string | null
|
|
3935
|
+
readonly schemaId: string | null
|
|
3881
3936
|
|
|
3882
3937
|
// Owm methods of Egg-1.0.Egg.SettingsSandwich
|
|
3883
3938
|
|
|
@@ -3972,6 +4027,10 @@ export module SignalGroup {
|
|
|
3972
4027
|
* The GType of the target property.
|
|
3973
4028
|
*/
|
|
3974
4029
|
target_type?: GObject.GType | null
|
|
4030
|
+
/**
|
|
4031
|
+
* The GType of the target property.
|
|
4032
|
+
*/
|
|
4033
|
+
targetType?: GObject.GType | null
|
|
3975
4034
|
}
|
|
3976
4035
|
|
|
3977
4036
|
}
|
|
@@ -3988,6 +4047,10 @@ export interface SignalGroup {
|
|
|
3988
4047
|
* The GType of the target property.
|
|
3989
4048
|
*/
|
|
3990
4049
|
readonly target_type: GObject.GType
|
|
4050
|
+
/**
|
|
4051
|
+
* The GType of the target property.
|
|
4052
|
+
*/
|
|
4053
|
+
readonly targetType: GObject.GType
|
|
3991
4054
|
|
|
3992
4055
|
// Owm methods of Egg-1.0.Egg.SignalGroup
|
|
3993
4056
|
|
|
@@ -4130,6 +4193,7 @@ export module SimpleLabel {
|
|
|
4130
4193
|
label?: string | null
|
|
4131
4194
|
width_chars?: number | null
|
|
4132
4195
|
xalign?: number | null
|
|
4196
|
+
widthChars?: number | null
|
|
4133
4197
|
}
|
|
4134
4198
|
|
|
4135
4199
|
}
|
|
@@ -4140,6 +4204,7 @@ export interface SimpleLabel extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
4140
4204
|
|
|
4141
4205
|
label: string | null
|
|
4142
4206
|
width_chars: number
|
|
4207
|
+
widthChars: number
|
|
4143
4208
|
xalign: number
|
|
4144
4209
|
|
|
4145
4210
|
// Owm methods of Egg-1.0.Egg.SimpleLabel
|
|
@@ -4337,6 +4402,7 @@ export module SimplePopover {
|
|
|
4337
4402
|
ready?: boolean | null
|
|
4338
4403
|
text?: string | null
|
|
4339
4404
|
title?: string | null
|
|
4405
|
+
buttonText?: string | null
|
|
4340
4406
|
}
|
|
4341
4407
|
|
|
4342
4408
|
}
|
|
@@ -4346,6 +4412,7 @@ export interface SimplePopover extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
4346
4412
|
// Own properties of Egg-1.0.Egg.SimplePopover
|
|
4347
4413
|
|
|
4348
4414
|
button_text: string | null
|
|
4415
|
+
buttonText: string | null
|
|
4349
4416
|
message: string | null
|
|
4350
4417
|
ready: boolean
|
|
4351
4418
|
text: string | null
|
|
@@ -4949,6 +5016,7 @@ export module Suggestion {
|
|
|
4949
5016
|
id?: string | null
|
|
4950
5017
|
subtitle?: string | null
|
|
4951
5018
|
title?: string | null
|
|
5019
|
+
iconName?: string | null
|
|
4952
5020
|
}
|
|
4953
5021
|
|
|
4954
5022
|
}
|
|
@@ -4958,6 +5026,7 @@ export interface Suggestion {
|
|
|
4958
5026
|
// Own properties of Egg-1.0.Egg.Suggestion
|
|
4959
5027
|
|
|
4960
5028
|
icon_name: string | null
|
|
5029
|
+
iconName: string | null
|
|
4961
5030
|
id: string | null
|
|
4962
5031
|
subtitle: string | null
|
|
4963
5032
|
title: string | null
|
|
@@ -5123,6 +5192,7 @@ export interface SuggestionEntry extends Atk.ImplementorIface, Gtk.Buildable, Gt
|
|
|
5123
5192
|
|
|
5124
5193
|
model: Gio.ListModel
|
|
5125
5194
|
readonly typed_text: string | null
|
|
5195
|
+
readonly typedText: string | null
|
|
5126
5196
|
|
|
5127
5197
|
// Own fields of Egg-1.0.Egg.SuggestionEntry
|
|
5128
5198
|
|
|
@@ -5584,6 +5654,7 @@ export module SuggestionPopover {
|
|
|
5584
5654
|
model?: Suggestion | null
|
|
5585
5655
|
relative_to?: Gtk.Widget | null
|
|
5586
5656
|
selected?: Suggestion | null
|
|
5657
|
+
relativeTo?: Gtk.Widget | null
|
|
5587
5658
|
}
|
|
5588
5659
|
|
|
5589
5660
|
}
|
|
@@ -5594,6 +5665,7 @@ export interface SuggestionPopover extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
5594
5665
|
|
|
5595
5666
|
model: Suggestion
|
|
5596
5667
|
relative_to: Gtk.Widget
|
|
5668
|
+
relativeTo: Gtk.Widget
|
|
5597
5669
|
selected: Suggestion
|
|
5598
5670
|
|
|
5599
5671
|
// Owm methods of Egg-1.0.Egg.SuggestionPopover
|
|
@@ -6225,6 +6297,22 @@ export module TaskCache {
|
|
|
6225
6297
|
time_to_live?: number | null
|
|
6226
6298
|
value_copy_func?: any | null
|
|
6227
6299
|
value_destroy_func?: any | null
|
|
6300
|
+
keyCopyFunc?: any | null
|
|
6301
|
+
keyDestroyFunc?: any | null
|
|
6302
|
+
keyEqualFunc?: any | null
|
|
6303
|
+
keyHashFunc?: any | null
|
|
6304
|
+
populateCallback?: any | null
|
|
6305
|
+
populateCallbackData?: any | null
|
|
6306
|
+
populateCallbackDataDestroy?: any | null
|
|
6307
|
+
/**
|
|
6308
|
+
* This is the number of milliseconds before an item should be evicted
|
|
6309
|
+
* from the cache.
|
|
6310
|
+
*
|
|
6311
|
+
* A value of zero indicates no eviction.
|
|
6312
|
+
*/
|
|
6313
|
+
timeToLive?: number | null
|
|
6314
|
+
valueCopyFunc?: any | null
|
|
6315
|
+
valueDestroyFunc?: any | null
|
|
6228
6316
|
}
|
|
6229
6317
|
|
|
6230
6318
|
}
|
|
@@ -6234,12 +6322,19 @@ export interface TaskCache {
|
|
|
6234
6322
|
// Own properties of Egg-1.0.Egg.TaskCache
|
|
6235
6323
|
|
|
6236
6324
|
readonly key_copy_func: any
|
|
6325
|
+
readonly keyCopyFunc: any
|
|
6237
6326
|
readonly key_destroy_func: any
|
|
6327
|
+
readonly keyDestroyFunc: any
|
|
6238
6328
|
readonly key_equal_func: any
|
|
6329
|
+
readonly keyEqualFunc: any
|
|
6239
6330
|
readonly key_hash_func: any
|
|
6331
|
+
readonly keyHashFunc: any
|
|
6240
6332
|
readonly populate_callback: any
|
|
6333
|
+
readonly populateCallback: any
|
|
6241
6334
|
readonly populate_callback_data: any
|
|
6335
|
+
readonly populateCallbackData: any
|
|
6242
6336
|
readonly populate_callback_data_destroy: any
|
|
6337
|
+
readonly populateCallbackDataDestroy: any
|
|
6243
6338
|
/**
|
|
6244
6339
|
* This is the number of milliseconds before an item should be evicted
|
|
6245
6340
|
* from the cache.
|
|
@@ -6247,8 +6342,17 @@ export interface TaskCache {
|
|
|
6247
6342
|
* A value of zero indicates no eviction.
|
|
6248
6343
|
*/
|
|
6249
6344
|
readonly time_to_live: number
|
|
6345
|
+
/**
|
|
6346
|
+
* This is the number of milliseconds before an item should be evicted
|
|
6347
|
+
* from the cache.
|
|
6348
|
+
*
|
|
6349
|
+
* A value of zero indicates no eviction.
|
|
6350
|
+
*/
|
|
6351
|
+
readonly timeToLive: number
|
|
6250
6352
|
readonly value_copy_func: any
|
|
6353
|
+
readonly valueCopyFunc: any
|
|
6251
6354
|
readonly value_destroy_func: any
|
|
6355
|
+
readonly valueDestroyFunc: any
|
|
6252
6356
|
|
|
6253
6357
|
// Owm methods of Egg-1.0.Egg.TaskCache
|
|
6254
6358
|
|
|
@@ -6348,6 +6452,8 @@ export module ThreeGrid {
|
|
|
6348
6452
|
|
|
6349
6453
|
column_spacing?: number | null
|
|
6350
6454
|
row_spacing?: number | null
|
|
6455
|
+
columnSpacing?: number | null
|
|
6456
|
+
rowSpacing?: number | null
|
|
6351
6457
|
}
|
|
6352
6458
|
|
|
6353
6459
|
}
|
|
@@ -6357,7 +6463,9 @@ export interface ThreeGrid extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
6357
6463
|
// Own properties of Egg-1.0.Egg.ThreeGrid
|
|
6358
6464
|
|
|
6359
6465
|
column_spacing: number
|
|
6466
|
+
columnSpacing: number
|
|
6360
6467
|
row_spacing: number
|
|
6468
|
+
rowSpacing: number
|
|
6361
6469
|
|
|
6362
6470
|
// Own fields of Egg-1.0.Egg.ThreeGrid
|
|
6363
6471
|
|
package/egg-1.0.d.ts
CHANGED
|
@@ -129,6 +129,7 @@ module Animation {
|
|
|
129
129
|
* animated.
|
|
130
130
|
*/
|
|
131
131
|
target?: GObject.Object | null
|
|
132
|
+
frameClock?: Gdk.FrameClock | null
|
|
132
133
|
}
|
|
133
134
|
|
|
134
135
|
}
|
|
@@ -143,6 +144,7 @@ interface Animation {
|
|
|
143
144
|
*/
|
|
144
145
|
readonly duration: number
|
|
145
146
|
readonly frame_clock: Gdk.FrameClock
|
|
147
|
+
readonly frameClock: Gdk.FrameClock
|
|
146
148
|
/**
|
|
147
149
|
* The "mode" property is the Alpha function that should be used to
|
|
148
150
|
* determine the offset within the animation based on the current
|
|
@@ -352,6 +354,7 @@ module Box {
|
|
|
352
354
|
// Own constructor properties of Egg-1.0.Egg.Box
|
|
353
355
|
|
|
354
356
|
max_width_request?: number | null
|
|
357
|
+
maxWidthRequest?: number | null
|
|
355
358
|
}
|
|
356
359
|
|
|
357
360
|
}
|
|
@@ -361,6 +364,7 @@ interface Box extends Atk.ImplementorIface, Gtk.Buildable, Gtk.Orientable {
|
|
|
361
364
|
// Own properties of Egg-1.0.Egg.Box
|
|
362
365
|
|
|
363
366
|
max_width_request: number
|
|
367
|
+
maxWidthRequest: number
|
|
364
368
|
|
|
365
369
|
// Own fields of Egg-1.0.Egg.Box
|
|
366
370
|
|
|
@@ -595,6 +599,7 @@ module CenteringBin {
|
|
|
595
599
|
// Own constructor properties of Egg-1.0.Egg.CenteringBin
|
|
596
600
|
|
|
597
601
|
max_width_request?: number | null
|
|
602
|
+
maxWidthRequest?: number | null
|
|
598
603
|
}
|
|
599
604
|
|
|
600
605
|
}
|
|
@@ -604,6 +609,7 @@ interface CenteringBin extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
604
609
|
// Own properties of Egg-1.0.Egg.CenteringBin
|
|
605
610
|
|
|
606
611
|
max_width_request: number
|
|
612
|
+
maxWidthRequest: number
|
|
607
613
|
|
|
608
614
|
// Own fields of Egg-1.0.Egg.CenteringBin
|
|
609
615
|
|
|
@@ -823,6 +829,10 @@ module ColumnLayout {
|
|
|
823
829
|
column_width?: number | null
|
|
824
830
|
max_columns?: number | null
|
|
825
831
|
row_spacing?: number | null
|
|
832
|
+
columnSpacing?: number | null
|
|
833
|
+
columnWidth?: number | null
|
|
834
|
+
maxColumns?: number | null
|
|
835
|
+
rowSpacing?: number | null
|
|
826
836
|
}
|
|
827
837
|
|
|
828
838
|
}
|
|
@@ -832,9 +842,13 @@ interface ColumnLayout extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
832
842
|
// Own properties of Egg-1.0.Egg.ColumnLayout
|
|
833
843
|
|
|
834
844
|
column_spacing: number
|
|
845
|
+
columnSpacing: number
|
|
835
846
|
column_width: number
|
|
847
|
+
columnWidth: number
|
|
836
848
|
max_columns: number
|
|
849
|
+
maxColumns: number
|
|
837
850
|
row_spacing: number
|
|
851
|
+
rowSpacing: number
|
|
838
852
|
|
|
839
853
|
// Own fields of Egg-1.0.Egg.ColumnLayout
|
|
840
854
|
|
|
@@ -1269,6 +1283,8 @@ module EmptyState {
|
|
|
1269
1283
|
resource?: string | null
|
|
1270
1284
|
subtitle?: string | null
|
|
1271
1285
|
title?: string | null
|
|
1286
|
+
iconName?: string | null
|
|
1287
|
+
pixelSize?: number | null
|
|
1272
1288
|
}
|
|
1273
1289
|
|
|
1274
1290
|
}
|
|
@@ -1278,7 +1294,9 @@ interface EmptyState extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
1278
1294
|
// Own properties of Egg-1.0.Egg.EmptyState
|
|
1279
1295
|
|
|
1280
1296
|
icon_name: string | null
|
|
1297
|
+
iconName: string | null
|
|
1281
1298
|
pixel_size: number
|
|
1299
|
+
pixelSize: number
|
|
1282
1300
|
resource: string | null
|
|
1283
1301
|
subtitle: string | null
|
|
1284
1302
|
title: string | null
|
|
@@ -1510,6 +1528,7 @@ module EntryBox {
|
|
|
1510
1528
|
// Own constructor properties of Egg-1.0.Egg.EntryBox
|
|
1511
1529
|
|
|
1512
1530
|
max_width_chars?: number | null
|
|
1531
|
+
maxWidthChars?: number | null
|
|
1513
1532
|
}
|
|
1514
1533
|
|
|
1515
1534
|
}
|
|
@@ -1519,6 +1538,7 @@ interface EntryBox extends Atk.ImplementorIface, Gtk.Buildable, Gtk.Orientable {
|
|
|
1519
1538
|
// Own properties of Egg-1.0.Egg.EntryBox
|
|
1520
1539
|
|
|
1521
1540
|
max_width_chars: number
|
|
1541
|
+
maxWidthChars: number
|
|
1522
1542
|
|
|
1523
1543
|
// Conflicting methods
|
|
1524
1544
|
|
|
@@ -1752,6 +1772,11 @@ module FileChooserEntry {
|
|
|
1752
1772
|
max_width_chars?: number | null
|
|
1753
1773
|
show_hidden?: boolean | null
|
|
1754
1774
|
title?: string | null
|
|
1775
|
+
createFolders?: boolean | null
|
|
1776
|
+
doOverwriteConfirmation?: boolean | null
|
|
1777
|
+
localOnly?: boolean | null
|
|
1778
|
+
maxWidthChars?: number | null
|
|
1779
|
+
showHidden?: boolean | null
|
|
1755
1780
|
}
|
|
1756
1781
|
|
|
1757
1782
|
}
|
|
@@ -1762,12 +1787,17 @@ interface FileChooserEntry extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
1762
1787
|
|
|
1763
1788
|
action: Gtk.FileChooserAction
|
|
1764
1789
|
create_folders: boolean
|
|
1790
|
+
createFolders: boolean
|
|
1765
1791
|
do_overwrite_confirmation: boolean
|
|
1792
|
+
doOverwriteConfirmation: boolean
|
|
1766
1793
|
file: Gio.File
|
|
1767
1794
|
filter: Gtk.FileFilter
|
|
1768
1795
|
local_only: boolean
|
|
1796
|
+
localOnly: boolean
|
|
1769
1797
|
max_width_chars: number
|
|
1798
|
+
maxWidthChars: number
|
|
1770
1799
|
show_hidden: boolean
|
|
1800
|
+
showHidden: boolean
|
|
1771
1801
|
title: string | null
|
|
1772
1802
|
|
|
1773
1803
|
// Own fields of Egg-1.0.Egg.FileChooserEntry
|
|
@@ -2010,6 +2040,9 @@ module ListBox {
|
|
|
2010
2040
|
property_name?: string | null
|
|
2011
2041
|
row_type?: GObject.GType | null
|
|
2012
2042
|
row_type_name?: string | null
|
|
2043
|
+
propertyName?: string | null
|
|
2044
|
+
rowType?: GObject.GType | null
|
|
2045
|
+
rowTypeName?: string | null
|
|
2013
2046
|
}
|
|
2014
2047
|
|
|
2015
2048
|
}
|
|
@@ -2019,8 +2052,11 @@ interface ListBox extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
2019
2052
|
// Own properties of Egg-1.0.Egg.ListBox
|
|
2020
2053
|
|
|
2021
2054
|
readonly property_name: string | null
|
|
2055
|
+
readonly propertyName: string | null
|
|
2022
2056
|
readonly row_type: GObject.GType
|
|
2057
|
+
readonly rowType: GObject.GType
|
|
2023
2058
|
readonly row_type_name: string | null
|
|
2059
|
+
readonly rowTypeName: string | null
|
|
2024
2060
|
|
|
2025
2061
|
// Own fields of Egg-1.0.Egg.ListBox
|
|
2026
2062
|
|
|
@@ -2780,6 +2816,7 @@ module ProgressButton {
|
|
|
2780
2816
|
|
|
2781
2817
|
progress?: number | null
|
|
2782
2818
|
show_progress?: boolean | null
|
|
2819
|
+
showProgress?: boolean | null
|
|
2783
2820
|
}
|
|
2784
2821
|
|
|
2785
2822
|
}
|
|
@@ -2790,6 +2827,7 @@ interface ProgressButton extends Atk.ImplementorIface, Gtk.Actionable, Gtk.Activ
|
|
|
2790
2827
|
|
|
2791
2828
|
progress: number
|
|
2792
2829
|
show_progress: boolean
|
|
2830
|
+
showProgress: boolean
|
|
2793
2831
|
|
|
2794
2832
|
// Own fields of Egg-1.0.Egg.ProgressButton
|
|
2795
2833
|
|
|
@@ -3056,6 +3094,8 @@ module RadioBox {
|
|
|
3056
3094
|
|
|
3057
3095
|
active_id?: string | null
|
|
3058
3096
|
show_more?: boolean | null
|
|
3097
|
+
activeId?: string | null
|
|
3098
|
+
showMore?: boolean | null
|
|
3059
3099
|
}
|
|
3060
3100
|
|
|
3061
3101
|
}
|
|
@@ -3065,8 +3105,11 @@ interface RadioBox extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
3065
3105
|
// Own properties of Egg-1.0.Egg.RadioBox
|
|
3066
3106
|
|
|
3067
3107
|
active_id: string | null
|
|
3108
|
+
activeId: string | null
|
|
3068
3109
|
readonly has_more: boolean
|
|
3110
|
+
readonly hasMore: boolean
|
|
3069
3111
|
show_more: boolean
|
|
3112
|
+
showMore: boolean
|
|
3070
3113
|
|
|
3071
3114
|
// Own fields of Egg-1.0.Egg.RadioBox
|
|
3072
3115
|
|
|
@@ -3556,6 +3599,8 @@ module SearchBar {
|
|
|
3556
3599
|
|
|
3557
3600
|
search_mode_enabled?: boolean | null
|
|
3558
3601
|
show_close_button?: boolean | null
|
|
3602
|
+
searchModeEnabled?: boolean | null
|
|
3603
|
+
showCloseButton?: boolean | null
|
|
3559
3604
|
}
|
|
3560
3605
|
|
|
3561
3606
|
}
|
|
@@ -3565,7 +3610,9 @@ interface SearchBar extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
3565
3610
|
// Own properties of Egg-1.0.Egg.SearchBar
|
|
3566
3611
|
|
|
3567
3612
|
search_mode_enabled: boolean
|
|
3613
|
+
searchModeEnabled: boolean
|
|
3568
3614
|
show_close_button: boolean
|
|
3615
|
+
showCloseButton: boolean
|
|
3569
3616
|
|
|
3570
3617
|
// Own fields of Egg-1.0.Egg.SearchBar
|
|
3571
3618
|
|
|
@@ -3794,6 +3841,9 @@ module SettingsFlagAction {
|
|
|
3794
3841
|
flag_nick?: string | null
|
|
3795
3842
|
schema_id?: string | null
|
|
3796
3843
|
schema_key?: string | null
|
|
3844
|
+
flagNick?: string | null
|
|
3845
|
+
schemaId?: string | null
|
|
3846
|
+
schemaKey?: string | null
|
|
3797
3847
|
}
|
|
3798
3848
|
|
|
3799
3849
|
}
|
|
@@ -3803,8 +3853,11 @@ interface SettingsFlagAction extends Gio.Action {
|
|
|
3803
3853
|
// Own properties of Egg-1.0.Egg.SettingsFlagAction
|
|
3804
3854
|
|
|
3805
3855
|
readonly flag_nick: string | null
|
|
3856
|
+
readonly flagNick: string | null
|
|
3806
3857
|
readonly schema_id: string | null
|
|
3858
|
+
readonly schemaId: string | null
|
|
3807
3859
|
schema_key: string | null
|
|
3860
|
+
schemaKey: string | null
|
|
3808
3861
|
|
|
3809
3862
|
// Class property signals of Egg-1.0.Egg.SettingsFlagAction
|
|
3810
3863
|
|
|
@@ -3870,6 +3923,7 @@ module SettingsSandwich {
|
|
|
3870
3923
|
|
|
3871
3924
|
path?: string | null
|
|
3872
3925
|
schema_id?: string | null
|
|
3926
|
+
schemaId?: string | null
|
|
3873
3927
|
}
|
|
3874
3928
|
|
|
3875
3929
|
}
|
|
@@ -3880,6 +3934,7 @@ interface SettingsSandwich {
|
|
|
3880
3934
|
|
|
3881
3935
|
readonly path: string | null
|
|
3882
3936
|
readonly schema_id: string | null
|
|
3937
|
+
readonly schemaId: string | null
|
|
3883
3938
|
|
|
3884
3939
|
// Owm methods of Egg-1.0.Egg.SettingsSandwich
|
|
3885
3940
|
|
|
@@ -3974,6 +4029,10 @@ module SignalGroup {
|
|
|
3974
4029
|
* The GType of the target property.
|
|
3975
4030
|
*/
|
|
3976
4031
|
target_type?: GObject.GType | null
|
|
4032
|
+
/**
|
|
4033
|
+
* The GType of the target property.
|
|
4034
|
+
*/
|
|
4035
|
+
targetType?: GObject.GType | null
|
|
3977
4036
|
}
|
|
3978
4037
|
|
|
3979
4038
|
}
|
|
@@ -3990,6 +4049,10 @@ interface SignalGroup {
|
|
|
3990
4049
|
* The GType of the target property.
|
|
3991
4050
|
*/
|
|
3992
4051
|
readonly target_type: GObject.GType
|
|
4052
|
+
/**
|
|
4053
|
+
* The GType of the target property.
|
|
4054
|
+
*/
|
|
4055
|
+
readonly targetType: GObject.GType
|
|
3993
4056
|
|
|
3994
4057
|
// Owm methods of Egg-1.0.Egg.SignalGroup
|
|
3995
4058
|
|
|
@@ -4132,6 +4195,7 @@ module SimpleLabel {
|
|
|
4132
4195
|
label?: string | null
|
|
4133
4196
|
width_chars?: number | null
|
|
4134
4197
|
xalign?: number | null
|
|
4198
|
+
widthChars?: number | null
|
|
4135
4199
|
}
|
|
4136
4200
|
|
|
4137
4201
|
}
|
|
@@ -4142,6 +4206,7 @@ interface SimpleLabel extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
4142
4206
|
|
|
4143
4207
|
label: string | null
|
|
4144
4208
|
width_chars: number
|
|
4209
|
+
widthChars: number
|
|
4145
4210
|
xalign: number
|
|
4146
4211
|
|
|
4147
4212
|
// Owm methods of Egg-1.0.Egg.SimpleLabel
|
|
@@ -4339,6 +4404,7 @@ module SimplePopover {
|
|
|
4339
4404
|
ready?: boolean | null
|
|
4340
4405
|
text?: string | null
|
|
4341
4406
|
title?: string | null
|
|
4407
|
+
buttonText?: string | null
|
|
4342
4408
|
}
|
|
4343
4409
|
|
|
4344
4410
|
}
|
|
@@ -4348,6 +4414,7 @@ interface SimplePopover extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
4348
4414
|
// Own properties of Egg-1.0.Egg.SimplePopover
|
|
4349
4415
|
|
|
4350
4416
|
button_text: string | null
|
|
4417
|
+
buttonText: string | null
|
|
4351
4418
|
message: string | null
|
|
4352
4419
|
ready: boolean
|
|
4353
4420
|
text: string | null
|
|
@@ -4951,6 +5018,7 @@ module Suggestion {
|
|
|
4951
5018
|
id?: string | null
|
|
4952
5019
|
subtitle?: string | null
|
|
4953
5020
|
title?: string | null
|
|
5021
|
+
iconName?: string | null
|
|
4954
5022
|
}
|
|
4955
5023
|
|
|
4956
5024
|
}
|
|
@@ -4960,6 +5028,7 @@ interface Suggestion {
|
|
|
4960
5028
|
// Own properties of Egg-1.0.Egg.Suggestion
|
|
4961
5029
|
|
|
4962
5030
|
icon_name: string | null
|
|
5031
|
+
iconName: string | null
|
|
4963
5032
|
id: string | null
|
|
4964
5033
|
subtitle: string | null
|
|
4965
5034
|
title: string | null
|
|
@@ -5125,6 +5194,7 @@ interface SuggestionEntry extends Atk.ImplementorIface, Gtk.Buildable, Gtk.CellE
|
|
|
5125
5194
|
|
|
5126
5195
|
model: Gio.ListModel
|
|
5127
5196
|
readonly typed_text: string | null
|
|
5197
|
+
readonly typedText: string | null
|
|
5128
5198
|
|
|
5129
5199
|
// Own fields of Egg-1.0.Egg.SuggestionEntry
|
|
5130
5200
|
|
|
@@ -5586,6 +5656,7 @@ module SuggestionPopover {
|
|
|
5586
5656
|
model?: Suggestion | null
|
|
5587
5657
|
relative_to?: Gtk.Widget | null
|
|
5588
5658
|
selected?: Suggestion | null
|
|
5659
|
+
relativeTo?: Gtk.Widget | null
|
|
5589
5660
|
}
|
|
5590
5661
|
|
|
5591
5662
|
}
|
|
@@ -5596,6 +5667,7 @@ interface SuggestionPopover extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
5596
5667
|
|
|
5597
5668
|
model: Suggestion
|
|
5598
5669
|
relative_to: Gtk.Widget
|
|
5670
|
+
relativeTo: Gtk.Widget
|
|
5599
5671
|
selected: Suggestion
|
|
5600
5672
|
|
|
5601
5673
|
// Owm methods of Egg-1.0.Egg.SuggestionPopover
|
|
@@ -6227,6 +6299,22 @@ module TaskCache {
|
|
|
6227
6299
|
time_to_live?: number | null
|
|
6228
6300
|
value_copy_func?: any | null
|
|
6229
6301
|
value_destroy_func?: any | null
|
|
6302
|
+
keyCopyFunc?: any | null
|
|
6303
|
+
keyDestroyFunc?: any | null
|
|
6304
|
+
keyEqualFunc?: any | null
|
|
6305
|
+
keyHashFunc?: any | null
|
|
6306
|
+
populateCallback?: any | null
|
|
6307
|
+
populateCallbackData?: any | null
|
|
6308
|
+
populateCallbackDataDestroy?: any | null
|
|
6309
|
+
/**
|
|
6310
|
+
* This is the number of milliseconds before an item should be evicted
|
|
6311
|
+
* from the cache.
|
|
6312
|
+
*
|
|
6313
|
+
* A value of zero indicates no eviction.
|
|
6314
|
+
*/
|
|
6315
|
+
timeToLive?: number | null
|
|
6316
|
+
valueCopyFunc?: any | null
|
|
6317
|
+
valueDestroyFunc?: any | null
|
|
6230
6318
|
}
|
|
6231
6319
|
|
|
6232
6320
|
}
|
|
@@ -6236,12 +6324,19 @@ interface TaskCache {
|
|
|
6236
6324
|
// Own properties of Egg-1.0.Egg.TaskCache
|
|
6237
6325
|
|
|
6238
6326
|
readonly key_copy_func: any
|
|
6327
|
+
readonly keyCopyFunc: any
|
|
6239
6328
|
readonly key_destroy_func: any
|
|
6329
|
+
readonly keyDestroyFunc: any
|
|
6240
6330
|
readonly key_equal_func: any
|
|
6331
|
+
readonly keyEqualFunc: any
|
|
6241
6332
|
readonly key_hash_func: any
|
|
6333
|
+
readonly keyHashFunc: any
|
|
6242
6334
|
readonly populate_callback: any
|
|
6335
|
+
readonly populateCallback: any
|
|
6243
6336
|
readonly populate_callback_data: any
|
|
6337
|
+
readonly populateCallbackData: any
|
|
6244
6338
|
readonly populate_callback_data_destroy: any
|
|
6339
|
+
readonly populateCallbackDataDestroy: any
|
|
6245
6340
|
/**
|
|
6246
6341
|
* This is the number of milliseconds before an item should be evicted
|
|
6247
6342
|
* from the cache.
|
|
@@ -6249,8 +6344,17 @@ interface TaskCache {
|
|
|
6249
6344
|
* A value of zero indicates no eviction.
|
|
6250
6345
|
*/
|
|
6251
6346
|
readonly time_to_live: number
|
|
6347
|
+
/**
|
|
6348
|
+
* This is the number of milliseconds before an item should be evicted
|
|
6349
|
+
* from the cache.
|
|
6350
|
+
*
|
|
6351
|
+
* A value of zero indicates no eviction.
|
|
6352
|
+
*/
|
|
6353
|
+
readonly timeToLive: number
|
|
6252
6354
|
readonly value_copy_func: any
|
|
6355
|
+
readonly valueCopyFunc: any
|
|
6253
6356
|
readonly value_destroy_func: any
|
|
6357
|
+
readonly valueDestroyFunc: any
|
|
6254
6358
|
|
|
6255
6359
|
// Owm methods of Egg-1.0.Egg.TaskCache
|
|
6256
6360
|
|
|
@@ -6350,6 +6454,8 @@ module ThreeGrid {
|
|
|
6350
6454
|
|
|
6351
6455
|
column_spacing?: number | null
|
|
6352
6456
|
row_spacing?: number | null
|
|
6457
|
+
columnSpacing?: number | null
|
|
6458
|
+
rowSpacing?: number | null
|
|
6353
6459
|
}
|
|
6354
6460
|
|
|
6355
6461
|
}
|
|
@@ -6359,7 +6465,9 @@ interface ThreeGrid extends Atk.ImplementorIface, Gtk.Buildable {
|
|
|
6359
6465
|
// Own properties of Egg-1.0.Egg.ThreeGrid
|
|
6360
6466
|
|
|
6361
6467
|
column_spacing: number
|
|
6468
|
+
columnSpacing: number
|
|
6362
6469
|
row_spacing: number
|
|
6470
|
+
rowSpacing: number
|
|
6363
6471
|
|
|
6364
6472
|
// Own fields of Egg-1.0.Egg.ThreeGrid
|
|
6365
6473
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@girs/egg-1.0",
|
|
3
|
-
"version": "1.0.0-3.2.
|
|
3
|
+
"version": "1.0.0-3.2.6",
|
|
4
4
|
"description": "GJS TypeScript type definitions for Egg-1.0, generated from library version 1.0.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "egg-1.0.js",
|
|
@@ -25,20 +25,20 @@
|
|
|
25
25
|
"test:cjs": "NODE_OPTIONS=--max_old_space_size=9216 tsc --noEmit egg-1.0.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": "*"
|