@girs/builder-1.0 1.0.0-3.2.7 → 1.0.0-3.2.8

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 CHANGED
@@ -5,7 +5,7 @@
5
5
  ![downloads/week](https://img.shields.io/npm/dw/@girs/builder-1.0)
6
6
 
7
7
 
8
- GJS TypeScript type definitions for Builder-1.0, generated from library version 1.0.0 using [ts-for-gir](https://github.com/gjsify/ts-for-gir) v3.2.7.
8
+ GJS TypeScript type definitions for Builder-1.0, generated from library version 1.0.0 using [ts-for-gir](https://github.com/gjsify/ts-for-gir) v3.2.8.
9
9
 
10
10
 
11
11
  ## Install
@@ -0,0 +1,2 @@
1
+ export {}
2
+
@@ -0,0 +1,3 @@
1
+ const gi = globalThis.imports?.gi || {};
2
+ export default gi;
3
+
package/builder-1.0.d.cts CHANGED
@@ -136,7 +136,6 @@ export interface Document {
136
136
  // Own properties of Builder-1.0.Builder.Document
137
137
 
138
138
  readonly modified: boolean
139
- readonly read_only: boolean
140
139
  readonly readOnly: boolean
141
140
  readonly title: string | null
142
141
 
@@ -726,7 +725,6 @@ export module Tree {
726
725
 
727
726
  root?: TreeNode | null
728
727
  selection?: TreeNode | null
729
- show_icons?: boolean | null
730
728
  showIcons?: boolean | null
731
729
  }
732
730
 
@@ -738,7 +736,6 @@ export interface Tree extends Atk.ImplementorIface, Gtk.Buildable, Gtk.Scrollabl
738
736
 
739
737
  root: TreeNode
740
738
  selection: TreeNode
741
- show_icons: boolean
742
739
  showIcons: boolean
743
740
 
744
741
  // Own fields of Builder-1.0.Builder.Tree
@@ -1243,11 +1240,11 @@ export module TreeNode {
1243
1240
  * and simply hide the arrow if there were in fact no children (upon
1244
1241
  * expansion).
1245
1242
  */
1246
- children_possible?: boolean | null
1243
+ childrenPossible?: boolean | null
1247
1244
  /**
1248
1245
  * An icon-name to display on the row.
1249
1246
  */
1250
- icon_name?: string | null
1247
+ iconName?: string | null
1251
1248
  /**
1252
1249
  * An optional #GObject to associate with the node.
1253
1250
  */
@@ -1260,27 +1257,6 @@ export module TreeNode {
1260
1257
  * The tree the node belongs to.
1261
1258
  */
1262
1259
  tree?: Tree | null
1263
- use_dim_label?: boolean | null
1264
- /**
1265
- * If the "text" property includes #GMarkup.
1266
- */
1267
- use_markup?: boolean | null
1268
- /**
1269
- * This property allows for more lazy loading of nodes.
1270
- *
1271
- * When a node becomes visible, we normally build it's children nodes
1272
- * so that we know if we need an expansion arrow. However, that can
1273
- * be expensive when rendering directories with lots of subdirectories.
1274
- *
1275
- * Using this, you can always show an arrow without building the children
1276
- * and simply hide the arrow if there were in fact no children (upon
1277
- * expansion).
1278
- */
1279
- childrenPossible?: boolean | null
1280
- /**
1281
- * An icon-name to display on the row.
1282
- */
1283
- iconName?: string | null
1284
1260
  useDimLabel?: boolean | null
1285
1261
  /**
1286
1262
  * If the "text" property includes #GMarkup.
@@ -1294,18 +1270,6 @@ export interface TreeNode {
1294
1270
 
1295
1271
  // Own properties of Builder-1.0.Builder.TreeNode
1296
1272
 
1297
- /**
1298
- * This property allows for more lazy loading of nodes.
1299
- *
1300
- * When a node becomes visible, we normally build it's children nodes
1301
- * so that we know if we need an expansion arrow. However, that can
1302
- * be expensive when rendering directories with lots of subdirectories.
1303
- *
1304
- * Using this, you can always show an arrow without building the children
1305
- * and simply hide the arrow if there were in fact no children (upon
1306
- * expansion).
1307
- */
1308
- children_possible: boolean
1309
1273
  /**
1310
1274
  * This property allows for more lazy loading of nodes.
1311
1275
  *
@@ -1318,10 +1282,6 @@ export interface TreeNode {
1318
1282
  * expansion).
1319
1283
  */
1320
1284
  childrenPossible: boolean
1321
- /**
1322
- * An icon-name to display on the row.
1323
- */
1324
- icon_name: string | null
1325
1285
  /**
1326
1286
  * An icon-name to display on the row.
1327
1287
  */
@@ -1342,12 +1302,7 @@ export interface TreeNode {
1342
1302
  * The tree the node belongs to.
1343
1303
  */
1344
1304
  tree: Tree
1345
- use_dim_label: boolean
1346
1305
  useDimLabel: boolean
1347
- /**
1348
- * If the "text" property includes #GMarkup.
1349
- */
1350
- use_markup: boolean
1351
1306
  /**
1352
1307
  * If the "text" property includes #GMarkup.
1353
1308
  */
@@ -1512,11 +1467,9 @@ export interface View extends Atk.ImplementorIface, Gtk.Buildable, Gtk.Orientabl
1512
1467
 
1513
1468
  // Own properties of Builder-1.0.Builder.View
1514
1469
 
1515
- readonly can_split: boolean
1516
1470
  readonly canSplit: boolean
1517
1471
  readonly document: Document
1518
1472
  readonly modified: boolean
1519
- readonly special_title: string | null
1520
1473
  readonly specialTitle: string | null
1521
1474
  readonly title: string | null
1522
1475
 
@@ -2063,7 +2016,6 @@ export module ViewStack {
2063
2016
 
2064
2017
  // Own constructor properties of Builder-1.0.Builder.ViewStack
2065
2018
 
2066
- active_view?: View | null
2067
2019
  activeView?: View | null
2068
2020
  }
2069
2021
 
@@ -2073,7 +2025,6 @@ export interface ViewStack extends Atk.ImplementorIface, Gtk.Buildable {
2073
2025
 
2074
2026
  // Own properties of Builder-1.0.Builder.ViewStack
2075
2027
 
2076
- active_view: View
2077
2028
  activeView: View
2078
2029
 
2079
2030
  // Owm methods of Builder-1.0.Builder.ViewStack
@@ -2342,7 +2293,6 @@ export interface Workbench extends Atk.ImplementorIface, Gio.ActionGroup, Gio.Ac
2342
2293
 
2343
2294
  // Own properties of Builder-1.0.Builder.Workbench
2344
2295
 
2345
- readonly active_view: View
2346
2296
  readonly activeView: View
2347
2297
  readonly building: boolean
2348
2298
  /**
package/builder-1.0.d.ts CHANGED
@@ -138,7 +138,6 @@ interface Document {
138
138
  // Own properties of Builder-1.0.Builder.Document
139
139
 
140
140
  readonly modified: boolean
141
- readonly read_only: boolean
142
141
  readonly readOnly: boolean
143
142
  readonly title: string | null
144
143
 
@@ -728,7 +727,6 @@ module Tree {
728
727
 
729
728
  root?: TreeNode | null
730
729
  selection?: TreeNode | null
731
- show_icons?: boolean | null
732
730
  showIcons?: boolean | null
733
731
  }
734
732
 
@@ -740,7 +738,6 @@ interface Tree extends Atk.ImplementorIface, Gtk.Buildable, Gtk.Scrollable {
740
738
 
741
739
  root: TreeNode
742
740
  selection: TreeNode
743
- show_icons: boolean
744
741
  showIcons: boolean
745
742
 
746
743
  // Own fields of Builder-1.0.Builder.Tree
@@ -1245,11 +1242,11 @@ module TreeNode {
1245
1242
  * and simply hide the arrow if there were in fact no children (upon
1246
1243
  * expansion).
1247
1244
  */
1248
- children_possible?: boolean | null
1245
+ childrenPossible?: boolean | null
1249
1246
  /**
1250
1247
  * An icon-name to display on the row.
1251
1248
  */
1252
- icon_name?: string | null
1249
+ iconName?: string | null
1253
1250
  /**
1254
1251
  * An optional #GObject to associate with the node.
1255
1252
  */
@@ -1262,27 +1259,6 @@ module TreeNode {
1262
1259
  * The tree the node belongs to.
1263
1260
  */
1264
1261
  tree?: Tree | null
1265
- use_dim_label?: boolean | null
1266
- /**
1267
- * If the "text" property includes #GMarkup.
1268
- */
1269
- use_markup?: boolean | null
1270
- /**
1271
- * This property allows for more lazy loading of nodes.
1272
- *
1273
- * When a node becomes visible, we normally build it's children nodes
1274
- * so that we know if we need an expansion arrow. However, that can
1275
- * be expensive when rendering directories with lots of subdirectories.
1276
- *
1277
- * Using this, you can always show an arrow without building the children
1278
- * and simply hide the arrow if there were in fact no children (upon
1279
- * expansion).
1280
- */
1281
- childrenPossible?: boolean | null
1282
- /**
1283
- * An icon-name to display on the row.
1284
- */
1285
- iconName?: string | null
1286
1262
  useDimLabel?: boolean | null
1287
1263
  /**
1288
1264
  * If the "text" property includes #GMarkup.
@@ -1296,18 +1272,6 @@ interface TreeNode {
1296
1272
 
1297
1273
  // Own properties of Builder-1.0.Builder.TreeNode
1298
1274
 
1299
- /**
1300
- * This property allows for more lazy loading of nodes.
1301
- *
1302
- * When a node becomes visible, we normally build it's children nodes
1303
- * so that we know if we need an expansion arrow. However, that can
1304
- * be expensive when rendering directories with lots of subdirectories.
1305
- *
1306
- * Using this, you can always show an arrow without building the children
1307
- * and simply hide the arrow if there were in fact no children (upon
1308
- * expansion).
1309
- */
1310
- children_possible: boolean
1311
1275
  /**
1312
1276
  * This property allows for more lazy loading of nodes.
1313
1277
  *
@@ -1320,10 +1284,6 @@ interface TreeNode {
1320
1284
  * expansion).
1321
1285
  */
1322
1286
  childrenPossible: boolean
1323
- /**
1324
- * An icon-name to display on the row.
1325
- */
1326
- icon_name: string | null
1327
1287
  /**
1328
1288
  * An icon-name to display on the row.
1329
1289
  */
@@ -1344,12 +1304,7 @@ interface TreeNode {
1344
1304
  * The tree the node belongs to.
1345
1305
  */
1346
1306
  tree: Tree
1347
- use_dim_label: boolean
1348
1307
  useDimLabel: boolean
1349
- /**
1350
- * If the "text" property includes #GMarkup.
1351
- */
1352
- use_markup: boolean
1353
1308
  /**
1354
1309
  * If the "text" property includes #GMarkup.
1355
1310
  */
@@ -1514,11 +1469,9 @@ interface View extends Atk.ImplementorIface, Gtk.Buildable, Gtk.Orientable {
1514
1469
 
1515
1470
  // Own properties of Builder-1.0.Builder.View
1516
1471
 
1517
- readonly can_split: boolean
1518
1472
  readonly canSplit: boolean
1519
1473
  readonly document: Document
1520
1474
  readonly modified: boolean
1521
- readonly special_title: string | null
1522
1475
  readonly specialTitle: string | null
1523
1476
  readonly title: string | null
1524
1477
 
@@ -2065,7 +2018,6 @@ module ViewStack {
2065
2018
 
2066
2019
  // Own constructor properties of Builder-1.0.Builder.ViewStack
2067
2020
 
2068
- active_view?: View | null
2069
2021
  activeView?: View | null
2070
2022
  }
2071
2023
 
@@ -2075,7 +2027,6 @@ interface ViewStack extends Atk.ImplementorIface, Gtk.Buildable {
2075
2027
 
2076
2028
  // Own properties of Builder-1.0.Builder.ViewStack
2077
2029
 
2078
- active_view: View
2079
2030
  activeView: View
2080
2031
 
2081
2032
  // Owm methods of Builder-1.0.Builder.ViewStack
@@ -2344,7 +2295,6 @@ interface Workbench extends Atk.ImplementorIface, Gio.ActionGroup, Gio.ActionMap
2344
2295
 
2345
2296
  // Own properties of Builder-1.0.Builder.Workbench
2346
2297
 
2347
- readonly active_view: View
2348
2298
  readonly activeView: View
2349
2299
  readonly building: boolean
2350
2300
  /**
package/package.json CHANGED
@@ -1,13 +1,19 @@
1
1
  {
2
2
  "name": "@girs/builder-1.0",
3
- "version": "1.0.0-3.2.7",
3
+ "version": "1.0.0-3.2.8",
4
4
  "description": "GJS TypeScript type definitions for Builder-1.0, generated from library version 1.0.0",
5
5
  "type": "module",
6
6
  "module": "builder-1.0.js",
7
7
  "main": "builder-1.0.js",
8
8
  "exports": {
9
- "./ambient": "./builder-1.0-ambient.d.ts",
10
- "./import": "./builder-1.0-import.d.ts",
9
+ "./ambient": {
10
+ "types": "./builder-1.0-ambient.d.ts",
11
+ "default": "./builder-1.0-ambient.js"
12
+ },
13
+ "./import": {
14
+ "types": "./builder-1.0-import.d.ts",
15
+ "default": "./builder-1.0-import.js"
16
+ },
11
17
  ".": {
12
18
  "import": {
13
19
  "types": "./builder-1.0.d.ts",
@@ -25,27 +31,27 @@
25
31
  "test:cjs": "NODE_OPTIONS=--max_old_space_size=9216 tsc --noEmit builder-1.0.d.cts"
26
32
  },
27
33
  "dependencies": {
28
- "@girs/atk-1.0": "^2.50.0-3.2.7",
29
- "@girs/cairo-1.0": "^1.0.0-3.2.7",
30
- "@girs/dazzle-1.0": "^3.44.0-3.2.7",
31
- "@girs/freetype2-2.0": "^2.0.0-3.2.7",
32
- "@girs/gdk-3.0": "^3.24.38-3.2.7",
33
- "@girs/gdkpixbuf-2.0": "^2.0.0-3.2.7",
34
- "@girs/gio-2.0": "^2.78.0-3.2.7",
35
- "@girs/girepository-2.0": "^1.78.1-3.2.7",
36
- "@girs/gjs": "^3.2.7",
37
- "@girs/glib-2.0": "^2.78.0-3.2.7",
38
- "@girs/gmodule-2.0": "^2.0.0-3.2.7",
39
- "@girs/gobject-2.0": "^2.78.0-3.2.7",
40
- "@girs/gtk-3.0": "^3.24.38-3.2.7",
41
- "@girs/gtksource-3.0": "^3.0.0-3.2.7",
42
- "@girs/harfbuzz-0.0": "^8.2.1-3.2.7",
43
- "@girs/ide-1.0": "^1.0.0-3.2.7",
44
- "@girs/json-1.0": "^1.7.1-3.2.7",
45
- "@girs/pango-1.0": "^1.51.0-3.2.7",
46
- "@girs/peas-1.0": "^1.0.0-3.2.7",
47
- "@girs/template-1.0": "^3.36.2-3.2.7",
48
- "@girs/xlib-2.0": "^2.0.0-3.2.7"
34
+ "@girs/atk-1.0": "^2.45.1-3.2.8",
35
+ "@girs/cairo-1.0": "^1.0.0-3.2.8",
36
+ "@girs/dazzle-1.0": "^3.44.0-3.2.8",
37
+ "@girs/freetype2-2.0": "^2.0.0-3.2.8",
38
+ "@girs/gdk-3.0": "^3.24.39-3.2.8",
39
+ "@girs/gdkpixbuf-2.0": "^2.0.0-3.2.8",
40
+ "@girs/gio-2.0": "^2.77.0-3.2.8",
41
+ "@girs/girepository-2.0": "^1.77.1-3.2.8",
42
+ "@girs/gjs": "^3.2.8",
43
+ "@girs/glib-2.0": "^2.77.0-3.2.8",
44
+ "@girs/gmodule-2.0": "^2.0.0-3.2.8",
45
+ "@girs/gobject-2.0": "^2.77.0-3.2.8",
46
+ "@girs/gtk-3.0": "^3.24.39-3.2.8",
47
+ "@girs/gtksource-3.0": "^3.0.0-3.2.8",
48
+ "@girs/harfbuzz-0.0": "^8.1.1-3.2.8",
49
+ "@girs/ide-1.0": "^1.0.0-3.2.8",
50
+ "@girs/json-1.0": "^1.7.1-3.2.8",
51
+ "@girs/pango-1.0": "^1.51.0-3.2.8",
52
+ "@girs/peas-1.0": "^1.0.0-3.2.8",
53
+ "@girs/template-1.0": "^3.36.2-3.2.8",
54
+ "@girs/xlib-2.0": "^2.0.0-3.2.8"
49
55
  },
50
56
  "devDependencies": {
51
57
  "typescript": "*"
@@ -62,7 +68,7 @@
62
68
  "license": "MIT",
63
69
  "repository": {
64
70
  "type": "git",
65
- "url": "git+https://github.com/gjsify/types.git"
71
+ "url": "git+https://github.com/gjsify/ts-for-gir.git"
66
72
  },
67
73
  "bugs": {
68
74
  "url": "https://github.com/gjsify/ts-for-gir/issues"