@girs/gedit-3.0 3.0.0-3.2.5 → 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 +1 -1
- package/gedit-3.0.d.cts +36 -0
- package/gedit-3.0.d.ts +36 -0
- package/package.json +16 -16
package/README.md
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|

|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
GJS TypeScript type definitions for Gedit-3.0, 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 Gedit-3.0, 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
|
Official text editor of the GNOME desktop environment.
|
|
11
11
|
|
package/gedit-3.0.d.cts
CHANGED
|
@@ -642,6 +642,10 @@ export module Document {
|
|
|
642
642
|
* The document's content type.
|
|
643
643
|
*/
|
|
644
644
|
content_type?: string | null
|
|
645
|
+
/**
|
|
646
|
+
* The document's content type.
|
|
647
|
+
*/
|
|
648
|
+
contentType?: string | null
|
|
645
649
|
}
|
|
646
650
|
|
|
647
651
|
}
|
|
@@ -654,6 +658,10 @@ export interface Document {
|
|
|
654
658
|
* The document's content type.
|
|
655
659
|
*/
|
|
656
660
|
content_type: string | null
|
|
661
|
+
/**
|
|
662
|
+
* The document's content type.
|
|
663
|
+
*/
|
|
664
|
+
contentType: string | null
|
|
657
665
|
/**
|
|
658
666
|
* <warning>
|
|
659
667
|
* The property is used internally by gedit. It must not be used in a
|
|
@@ -661,10 +669,21 @@ export interface Document {
|
|
|
661
669
|
* </warning>
|
|
662
670
|
*/
|
|
663
671
|
readonly empty_search: boolean
|
|
672
|
+
/**
|
|
673
|
+
* <warning>
|
|
674
|
+
* The property is used internally by gedit. It must not be used in a
|
|
675
|
+
* gedit plugin. The property can be modified or removed at any time.
|
|
676
|
+
* </warning>
|
|
677
|
+
*/
|
|
678
|
+
readonly emptySearch: boolean
|
|
664
679
|
/**
|
|
665
680
|
* The document's MIME type.
|
|
666
681
|
*/
|
|
667
682
|
readonly mime_type: string | null
|
|
683
|
+
/**
|
|
684
|
+
* The document's MIME type.
|
|
685
|
+
*/
|
|
686
|
+
readonly mimeType: string | null
|
|
668
687
|
|
|
669
688
|
// Conflicting properties
|
|
670
689
|
|
|
@@ -866,6 +885,12 @@ export module EncodingsComboBox {
|
|
|
866
885
|
* and the row "Automatically Detected" is added.
|
|
867
886
|
*/
|
|
868
887
|
save_mode?: boolean | null
|
|
888
|
+
/**
|
|
889
|
+
* Whether the combo box should be used for saving a content. If
|
|
890
|
+
* %FALSE, the combo box is used for loading a content (e.g. a file)
|
|
891
|
+
* and the row "Automatically Detected" is added.
|
|
892
|
+
*/
|
|
893
|
+
saveMode?: boolean | null
|
|
869
894
|
}
|
|
870
895
|
|
|
871
896
|
}
|
|
@@ -880,6 +905,12 @@ export interface EncodingsComboBox extends Atk.ImplementorIface, Gtk.Buildable,
|
|
|
880
905
|
* and the row "Automatically Detected" is added.
|
|
881
906
|
*/
|
|
882
907
|
save_mode: boolean
|
|
908
|
+
/**
|
|
909
|
+
* Whether the combo box should be used for saving a content. If
|
|
910
|
+
* %FALSE, the combo box is used for loading a content (e.g. a file)
|
|
911
|
+
* and the row "Automatically Detected" is added.
|
|
912
|
+
*/
|
|
913
|
+
saveMode: boolean
|
|
883
914
|
|
|
884
915
|
// Conflicting properties
|
|
885
916
|
|
|
@@ -1228,6 +1259,7 @@ export module Message {
|
|
|
1228
1259
|
*/
|
|
1229
1260
|
method?: string | null
|
|
1230
1261
|
object_path?: string | null
|
|
1262
|
+
objectPath?: string | null
|
|
1231
1263
|
}
|
|
1232
1264
|
|
|
1233
1265
|
}
|
|
@@ -1241,6 +1273,7 @@ export interface Message {
|
|
|
1241
1273
|
*/
|
|
1242
1274
|
method: string | null
|
|
1243
1275
|
object_path: string | null
|
|
1276
|
+
objectPath: string | null
|
|
1244
1277
|
|
|
1245
1278
|
// Own fields of Gedit-3.0.Gedit.Message
|
|
1246
1279
|
|
|
@@ -1831,6 +1864,7 @@ export module Tab {
|
|
|
1831
1864
|
|
|
1832
1865
|
autosave?: boolean | null
|
|
1833
1866
|
autosave_interval?: number | null
|
|
1867
|
+
autosaveInterval?: number | null
|
|
1834
1868
|
}
|
|
1835
1869
|
|
|
1836
1870
|
}
|
|
@@ -1841,7 +1875,9 @@ export interface Tab extends Atk.ImplementorIface, Gtk.Buildable, Gtk.Orientable
|
|
|
1841
1875
|
|
|
1842
1876
|
autosave: boolean
|
|
1843
1877
|
autosave_interval: number
|
|
1878
|
+
autosaveInterval: number
|
|
1844
1879
|
readonly can_close: boolean
|
|
1880
|
+
readonly canClose: boolean
|
|
1845
1881
|
readonly name: any
|
|
1846
1882
|
readonly state: TabState
|
|
1847
1883
|
|
package/gedit-3.0.d.ts
CHANGED
|
@@ -644,6 +644,10 @@ module Document {
|
|
|
644
644
|
* The document's content type.
|
|
645
645
|
*/
|
|
646
646
|
content_type?: string | null
|
|
647
|
+
/**
|
|
648
|
+
* The document's content type.
|
|
649
|
+
*/
|
|
650
|
+
contentType?: string | null
|
|
647
651
|
}
|
|
648
652
|
|
|
649
653
|
}
|
|
@@ -656,6 +660,10 @@ interface Document {
|
|
|
656
660
|
* The document's content type.
|
|
657
661
|
*/
|
|
658
662
|
content_type: string | null
|
|
663
|
+
/**
|
|
664
|
+
* The document's content type.
|
|
665
|
+
*/
|
|
666
|
+
contentType: string | null
|
|
659
667
|
/**
|
|
660
668
|
* <warning>
|
|
661
669
|
* The property is used internally by gedit. It must not be used in a
|
|
@@ -663,10 +671,21 @@ interface Document {
|
|
|
663
671
|
* </warning>
|
|
664
672
|
*/
|
|
665
673
|
readonly empty_search: boolean
|
|
674
|
+
/**
|
|
675
|
+
* <warning>
|
|
676
|
+
* The property is used internally by gedit. It must not be used in a
|
|
677
|
+
* gedit plugin. The property can be modified or removed at any time.
|
|
678
|
+
* </warning>
|
|
679
|
+
*/
|
|
680
|
+
readonly emptySearch: boolean
|
|
666
681
|
/**
|
|
667
682
|
* The document's MIME type.
|
|
668
683
|
*/
|
|
669
684
|
readonly mime_type: string | null
|
|
685
|
+
/**
|
|
686
|
+
* The document's MIME type.
|
|
687
|
+
*/
|
|
688
|
+
readonly mimeType: string | null
|
|
670
689
|
|
|
671
690
|
// Conflicting properties
|
|
672
691
|
|
|
@@ -868,6 +887,12 @@ module EncodingsComboBox {
|
|
|
868
887
|
* and the row "Automatically Detected" is added.
|
|
869
888
|
*/
|
|
870
889
|
save_mode?: boolean | null
|
|
890
|
+
/**
|
|
891
|
+
* Whether the combo box should be used for saving a content. If
|
|
892
|
+
* %FALSE, the combo box is used for loading a content (e.g. a file)
|
|
893
|
+
* and the row "Automatically Detected" is added.
|
|
894
|
+
*/
|
|
895
|
+
saveMode?: boolean | null
|
|
871
896
|
}
|
|
872
897
|
|
|
873
898
|
}
|
|
@@ -882,6 +907,12 @@ interface EncodingsComboBox extends Atk.ImplementorIface, Gtk.Buildable, Gtk.Cel
|
|
|
882
907
|
* and the row "Automatically Detected" is added.
|
|
883
908
|
*/
|
|
884
909
|
save_mode: boolean
|
|
910
|
+
/**
|
|
911
|
+
* Whether the combo box should be used for saving a content. If
|
|
912
|
+
* %FALSE, the combo box is used for loading a content (e.g. a file)
|
|
913
|
+
* and the row "Automatically Detected" is added.
|
|
914
|
+
*/
|
|
915
|
+
saveMode: boolean
|
|
885
916
|
|
|
886
917
|
// Conflicting properties
|
|
887
918
|
|
|
@@ -1230,6 +1261,7 @@ module Message {
|
|
|
1230
1261
|
*/
|
|
1231
1262
|
method?: string | null
|
|
1232
1263
|
object_path?: string | null
|
|
1264
|
+
objectPath?: string | null
|
|
1233
1265
|
}
|
|
1234
1266
|
|
|
1235
1267
|
}
|
|
@@ -1243,6 +1275,7 @@ interface Message {
|
|
|
1243
1275
|
*/
|
|
1244
1276
|
method: string | null
|
|
1245
1277
|
object_path: string | null
|
|
1278
|
+
objectPath: string | null
|
|
1246
1279
|
|
|
1247
1280
|
// Own fields of Gedit-3.0.Gedit.Message
|
|
1248
1281
|
|
|
@@ -1833,6 +1866,7 @@ module Tab {
|
|
|
1833
1866
|
|
|
1834
1867
|
autosave?: boolean | null
|
|
1835
1868
|
autosave_interval?: number | null
|
|
1869
|
+
autosaveInterval?: number | null
|
|
1836
1870
|
}
|
|
1837
1871
|
|
|
1838
1872
|
}
|
|
@@ -1843,7 +1877,9 @@ interface Tab extends Atk.ImplementorIface, Gtk.Buildable, Gtk.Orientable {
|
|
|
1843
1877
|
|
|
1844
1878
|
autosave: boolean
|
|
1845
1879
|
autosave_interval: number
|
|
1880
|
+
autosaveInterval: number
|
|
1846
1881
|
readonly can_close: boolean
|
|
1882
|
+
readonly canClose: boolean
|
|
1847
1883
|
readonly name: any
|
|
1848
1884
|
readonly state: TabState
|
|
1849
1885
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@girs/gedit-3.0",
|
|
3
|
-
"version": "3.0.0-3.2.
|
|
3
|
+
"version": "3.0.0-3.2.6",
|
|
4
4
|
"description": "GJS TypeScript type definitions for Gedit-3.0, generated from library version 3.0.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "gedit-3.0.js",
|
|
@@ -25,21 +25,21 @@
|
|
|
25
25
|
"test:cjs": "NODE_OPTIONS=--max_old_space_size=9216 tsc --noEmit gedit-3.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/gtksource-4": "^4.0.0-3.2.
|
|
40
|
-
"@girs/harfbuzz-0.0": "^8.2.1-3.2.
|
|
41
|
-
"@girs/pango-1.0": "^1.51.0-3.2.
|
|
42
|
-
"@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/gtksource-4": "^4.0.0-3.2.6",
|
|
40
|
+
"@girs/harfbuzz-0.0": "^8.2.1-3.2.6",
|
|
41
|
+
"@girs/pango-1.0": "^1.51.0-3.2.6",
|
|
42
|
+
"@girs/xlib-2.0": "^2.0.0-3.2.6"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
45
|
"typescript": "*"
|