@girs/gtksource-3.0 3.0.0-3.2.8 → 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/gtksource-3.0-ambient.d.ts +0 -4
- package/gtksource-3.0.d.cts +4 -4
- package/gtksource-3.0.d.ts +4 -4
- 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 GtkSource-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 GtkSource-3.0, 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
|
GtkSourceView is a portable C library that extends the standard GTK+ framework for multiline text editing with support for configurable syntax highlighting, unlimited undo/redo, search and replace, a completion framework, printing and other features typical of a source code editor.
|
|
11
11
|
|
package/gtksource-3.0.d.cts
CHANGED
|
@@ -1302,7 +1302,7 @@ export interface Buffer {
|
|
|
1302
1302
|
* @param category category to search for, or %NULL
|
|
1303
1303
|
* @returns whether @iter was moved.
|
|
1304
1304
|
*/
|
|
1305
|
-
backward_iter_to_source_mark(iter: Gtk.TextIter, category: string | null):
|
|
1305
|
+
backward_iter_to_source_mark(iter: Gtk.TextIter, category: string | null): boolean
|
|
1306
1306
|
/**
|
|
1307
1307
|
* Marks the beginning of a not undoable action on the buffer,
|
|
1308
1308
|
* disabling the undo manager. Typically you would call this function
|
|
@@ -1380,7 +1380,7 @@ export interface Buffer {
|
|
|
1380
1380
|
* @param category category to search for, or %NULL
|
|
1381
1381
|
* @returns whether @iter was moved.
|
|
1382
1382
|
*/
|
|
1383
|
-
forward_iter_to_source_mark(iter: Gtk.TextIter, category: string | null):
|
|
1383
|
+
forward_iter_to_source_mark(iter: Gtk.TextIter, category: string | null): boolean
|
|
1384
1384
|
/**
|
|
1385
1385
|
* Get all defined context classes at `iter`.
|
|
1386
1386
|
*
|
|
@@ -1456,7 +1456,7 @@ export interface Buffer {
|
|
|
1456
1456
|
* @param context_class the context class.
|
|
1457
1457
|
* @returns whether we found a context class toggle before @iter
|
|
1458
1458
|
*/
|
|
1459
|
-
iter_backward_to_context_class_toggle(iter: Gtk.TextIter, context_class: string):
|
|
1459
|
+
iter_backward_to_context_class_toggle(iter: Gtk.TextIter, context_class: string): boolean
|
|
1460
1460
|
/**
|
|
1461
1461
|
* Moves forward to the next toggle (on or off) of the context class. If no
|
|
1462
1462
|
* matching context class toggles are found, returns %FALSE, otherwise %TRUE.
|
|
@@ -1469,7 +1469,7 @@ export interface Buffer {
|
|
|
1469
1469
|
* @param context_class the context class.
|
|
1470
1470
|
* @returns whether we found a context class toggle after @iter
|
|
1471
1471
|
*/
|
|
1472
|
-
iter_forward_to_context_class_toggle(iter: Gtk.TextIter, context_class: string):
|
|
1472
|
+
iter_forward_to_context_class_toggle(iter: Gtk.TextIter, context_class: string): boolean
|
|
1473
1473
|
/**
|
|
1474
1474
|
* Check if the class `context_class` is set on `iter`.
|
|
1475
1475
|
*
|
package/gtksource-3.0.d.ts
CHANGED
|
@@ -1304,7 +1304,7 @@ interface Buffer {
|
|
|
1304
1304
|
* @param category category to search for, or %NULL
|
|
1305
1305
|
* @returns whether @iter was moved.
|
|
1306
1306
|
*/
|
|
1307
|
-
backward_iter_to_source_mark(iter: Gtk.TextIter, category: string | null):
|
|
1307
|
+
backward_iter_to_source_mark(iter: Gtk.TextIter, category: string | null): boolean
|
|
1308
1308
|
/**
|
|
1309
1309
|
* Marks the beginning of a not undoable action on the buffer,
|
|
1310
1310
|
* disabling the undo manager. Typically you would call this function
|
|
@@ -1382,7 +1382,7 @@ interface Buffer {
|
|
|
1382
1382
|
* @param category category to search for, or %NULL
|
|
1383
1383
|
* @returns whether @iter was moved.
|
|
1384
1384
|
*/
|
|
1385
|
-
forward_iter_to_source_mark(iter: Gtk.TextIter, category: string | null):
|
|
1385
|
+
forward_iter_to_source_mark(iter: Gtk.TextIter, category: string | null): boolean
|
|
1386
1386
|
/**
|
|
1387
1387
|
* Get all defined context classes at `iter`.
|
|
1388
1388
|
*
|
|
@@ -1458,7 +1458,7 @@ interface Buffer {
|
|
|
1458
1458
|
* @param context_class the context class.
|
|
1459
1459
|
* @returns whether we found a context class toggle before @iter
|
|
1460
1460
|
*/
|
|
1461
|
-
iter_backward_to_context_class_toggle(iter: Gtk.TextIter, context_class: string):
|
|
1461
|
+
iter_backward_to_context_class_toggle(iter: Gtk.TextIter, context_class: string): boolean
|
|
1462
1462
|
/**
|
|
1463
1463
|
* Moves forward to the next toggle (on or off) of the context class. If no
|
|
1464
1464
|
* matching context class toggles are found, returns %FALSE, otherwise %TRUE.
|
|
@@ -1471,7 +1471,7 @@ interface Buffer {
|
|
|
1471
1471
|
* @param context_class the context class.
|
|
1472
1472
|
* @returns whether we found a context class toggle after @iter
|
|
1473
1473
|
*/
|
|
1474
|
-
iter_forward_to_context_class_toggle(iter: Gtk.TextIter, context_class: string):
|
|
1474
|
+
iter_forward_to_context_class_toggle(iter: Gtk.TextIter, context_class: string): boolean
|
|
1475
1475
|
/**
|
|
1476
1476
|
* Check if the class `context_class` is set on `iter`.
|
|
1477
1477
|
*
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@girs/gtksource-3.0",
|
|
3
|
-
"version": "3.0.0-3.2.
|
|
3
|
+
"version": "3.0.0-3.2.9",
|
|
4
4
|
"description": "GJS TypeScript type definitions for GtkSource-3.0, generated from library version 3.0.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "gtksource-3.0.js",
|
|
@@ -31,20 +31,20 @@
|
|
|
31
31
|
"test:cjs": "NODE_OPTIONS=--max_old_space_size=9216 tsc --noEmit gtksource-3.0.d.cts"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@girs/atk-1.0": "^2.
|
|
35
|
-
"@girs/cairo-1.0": "^1.0.0-3.2.
|
|
36
|
-
"@girs/freetype2-2.0": "^2.0.0-3.2.
|
|
37
|
-
"@girs/gdk-3.0": "^3.24.
|
|
38
|
-
"@girs/gdkpixbuf-2.0": "^2.0.0-3.2.
|
|
39
|
-
"@girs/gio-2.0": "^2.
|
|
40
|
-
"@girs/gjs": "^3.2.
|
|
41
|
-
"@girs/glib-2.0": "^2.
|
|
42
|
-
"@girs/gmodule-2.0": "^2.0.0-3.2.
|
|
43
|
-
"@girs/gobject-2.0": "^2.
|
|
44
|
-
"@girs/gtk-3.0": "^3.24.
|
|
45
|
-
"@girs/harfbuzz-0.0": "^8.
|
|
46
|
-
"@girs/pango-1.0": "^1.51.0-3.2.
|
|
47
|
-
"@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"
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
50
|
"typescript": "*"
|