@girs/gtksource-5 5.7.1-3.0.4 → 5.9.0-3.2.0
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/gtksource-5.d.cts +0 -6
- package/gtksource-5.d.ts +0 -6
- package/package.json +19 -25
- package/{tsconfig.doc.json → tsconfig.json} +2 -0
- package/typedoc.json +7 -0
package/README.md
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|

|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
GJS TypeScript type definitions for GtkSource-5, generated from library version 5.
|
|
8
|
+
GJS TypeScript type definitions for GtkSource-5, generated from library version 5.9.0 using [ts-for-gir](https://github.com/gjsify/ts-for-gir) v3.2.0.
|
|
9
9
|
|
|
10
10
|
GtkSourceView is a GNOME library that extends GtkTextView, the standard GTK+ widget for multiline text editing. GtkSourceView adds support for syntax highlighting, undo/redo, file loading and saving, search and replace, a completion system, printing, displaying line numbers, and other features typical of a source code editor.
|
|
11
11
|
|
package/gtksource-5.d.cts
CHANGED
|
@@ -1886,12 +1886,6 @@ export interface Completion {
|
|
|
1886
1886
|
* function names, etc. To add a provider, call
|
|
1887
1887
|
* [method`Completion`.add_provider].
|
|
1888
1888
|
*
|
|
1889
|
-
* When several providers match, they are all shown in the completion
|
|
1890
|
-
* window, but one can switch between providers: see the
|
|
1891
|
-
* #GtkSourceCompletion::move-page signal. It is also possible to
|
|
1892
|
-
* activate the first proposals with key bindings, see the
|
|
1893
|
-
* #GtkSourceCompletion:accelerators property.
|
|
1894
|
-
*
|
|
1895
1889
|
* The [iface`CompletionProposal]` interface represents a proposal.
|
|
1896
1890
|
*
|
|
1897
1891
|
* If a proposal contains extra information (see
|
package/gtksource-5.d.ts
CHANGED
|
@@ -1888,12 +1888,6 @@ interface Completion {
|
|
|
1888
1888
|
* function names, etc. To add a provider, call
|
|
1889
1889
|
* [method`Completion`.add_provider].
|
|
1890
1890
|
*
|
|
1891
|
-
* When several providers match, they are all shown in the completion
|
|
1892
|
-
* window, but one can switch between providers: see the
|
|
1893
|
-
* #GtkSourceCompletion::move-page signal. It is also possible to
|
|
1894
|
-
* activate the first proposals with key bindings, see the
|
|
1895
|
-
* #GtkSourceCompletion:accelerators property.
|
|
1896
|
-
*
|
|
1897
1891
|
* The [iface`CompletionProposal]` interface represents a proposal.
|
|
1898
1892
|
*
|
|
1899
1893
|
* If a proposal contains extra information (see
|
package/package.json
CHANGED
|
@@ -1,16 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@girs/gtksource-5",
|
|
3
|
-
"version": "5.
|
|
4
|
-
"description": "GJS TypeScript type definitions for GtkSource-5, generated from library version 5.
|
|
3
|
+
"version": "5.9.0-3.2.0",
|
|
4
|
+
"description": "GJS TypeScript type definitions for GtkSource-5, generated from library version 5.9.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "gtksource-5.js",
|
|
7
7
|
"main": "gtksource-5.js",
|
|
8
|
-
"typedoc": {
|
|
9
|
-
"entryPoint": "./gtksource-5.d.ts",
|
|
10
|
-
"readmeFile": "./README.md",
|
|
11
|
-
"displayName": "GtkSource-5",
|
|
12
|
-
"tsconfig": "./tsconfig.doc.json"
|
|
13
|
-
},
|
|
14
8
|
"exports": {
|
|
15
9
|
"./ambient": "./gtksource-5-ambient.d.ts",
|
|
16
10
|
"./import": "./gtksource-5-import.d.ts",
|
|
@@ -27,25 +21,25 @@
|
|
|
27
21
|
},
|
|
28
22
|
"scripts": {
|
|
29
23
|
"test": "yarn test:esm && yarn test:cjs",
|
|
30
|
-
"test:esm": "tsc --noEmit gtksource-5.d.ts",
|
|
31
|
-
"test:cjs": "tsc --noEmit gtksource-5.d.cts"
|
|
24
|
+
"test:esm": "NODE_OPTIONS=--max_old_space_size=9216 tsc --noEmit gtksource-5.d.ts",
|
|
25
|
+
"test:cjs": "NODE_OPTIONS=--max_old_space_size=9216 tsc --noEmit gtksource-5.d.cts"
|
|
32
26
|
},
|
|
33
27
|
"dependencies": {
|
|
34
|
-
"@girs/cairo-1.0": "^1.0.0-3.0
|
|
35
|
-
"@girs/freetype2-2.0": "^2.0.0-3.0
|
|
36
|
-
"@girs/gdk-4.0": "^4.0.0-3.0
|
|
37
|
-
"@girs/gdkpixbuf-2.0": "^2.0.0-3.0
|
|
38
|
-
"@girs/gio-2.0": "^2.76.1-3.0
|
|
39
|
-
"@girs/gjs": "^3.0
|
|
40
|
-
"@girs/glib-2.0": "^2.76.1-3.0
|
|
41
|
-
"@girs/gmodule-2.0": "^2.0.0-3.0
|
|
42
|
-
"@girs/gobject-2.0": "^2.76.1-3.0
|
|
43
|
-
"@girs/graphene-1.0": "^1.0.0-3.0
|
|
44
|
-
"@girs/gsk-4.0": "^4.0.0-3.0
|
|
45
|
-
"@girs/gtk-4.0": "^4.10.
|
|
46
|
-
"@girs/harfbuzz-0.0": "^7.1.0-3.0
|
|
47
|
-
"@girs/pango-1.0": "^1.50.14-3.0
|
|
48
|
-
"@girs/pangocairo-1.0": "^1.0.0-3.0
|
|
28
|
+
"@girs/cairo-1.0": "^1.0.0-3.2.0",
|
|
29
|
+
"@girs/freetype2-2.0": "^2.0.0-3.2.0",
|
|
30
|
+
"@girs/gdk-4.0": "^4.0.0-3.2.0",
|
|
31
|
+
"@girs/gdkpixbuf-2.0": "^2.0.0-3.2.0",
|
|
32
|
+
"@girs/gio-2.0": "^2.76.1-3.2.0",
|
|
33
|
+
"@girs/gjs": "^3.2.0",
|
|
34
|
+
"@girs/glib-2.0": "^2.76.1-3.2.0",
|
|
35
|
+
"@girs/gmodule-2.0": "^2.0.0-3.2.0",
|
|
36
|
+
"@girs/gobject-2.0": "^2.76.1-3.2.0",
|
|
37
|
+
"@girs/graphene-1.0": "^1.0.0-3.2.0",
|
|
38
|
+
"@girs/gsk-4.0": "^4.0.0-3.2.0",
|
|
39
|
+
"@girs/gtk-4.0": "^4.10.4-3.2.0",
|
|
40
|
+
"@girs/harfbuzz-0.0": "^7.1.0-3.2.0",
|
|
41
|
+
"@girs/pango-1.0": "^1.50.14-3.2.0",
|
|
42
|
+
"@girs/pangocairo-1.0": "^1.0.0-3.2.0"
|
|
49
43
|
},
|
|
50
44
|
"devDependencies": {
|
|
51
45
|
"typescript": "*"
|