@girs/evinceview-3.0 3.0.0-3.2.7 → 3.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/evinceview-3.0)
6
6
 
7
7
 
8
- GJS TypeScript type definitions for EvinceView-3.0, generated from library version 3.0.0 using [ts-for-gir](https://github.com/gjsify/ts-for-gir) v3.2.7.
8
+ GJS TypeScript type definitions for EvinceView-3.0, generated from library version 3.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
+
@@ -123,24 +123,17 @@ export module DocumentModel {
123
123
 
124
124
  continuous?: boolean | null
125
125
  document?: EvinceDocument.Document | null
126
- dual_odd_left?: boolean | null
127
- dual_page?: boolean | null
128
- fullscreen?: boolean | null
129
- inverted_colors?: boolean | null
130
- max_scale?: number | null
131
- min_scale?: number | null
132
- page?: number | null
133
- page_layout?: PageLayout | null
134
- rotation?: number | null
135
- rtl?: boolean | null
136
- scale?: number | null
137
- sizing_mode?: SizingMode | null
138
126
  dualOddLeft?: boolean | null
139
127
  dualPage?: boolean | null
128
+ fullscreen?: boolean | null
140
129
  invertedColors?: boolean | null
141
130
  maxScale?: number | null
142
131
  minScale?: number | null
132
+ page?: number | null
143
133
  pageLayout?: PageLayout | null
134
+ rotation?: number | null
135
+ rtl?: boolean | null
136
+ scale?: number | null
144
137
  sizingMode?: SizingMode | null
145
138
  }
146
139
 
@@ -152,24 +145,17 @@ export interface DocumentModel {
152
145
 
153
146
  continuous: boolean
154
147
  document: EvinceDocument.Document
155
- dual_odd_left: boolean
156
148
  dualOddLeft: boolean
157
- dual_page: boolean
158
149
  dualPage: boolean
159
150
  fullscreen: boolean
160
- inverted_colors: boolean
161
151
  invertedColors: boolean
162
- max_scale: number
163
152
  maxScale: number
164
- min_scale: number
165
153
  minScale: number
166
154
  page: number
167
- page_layout: PageLayout
168
155
  pageLayout: PageLayout
169
156
  rotation: number
170
157
  rtl: boolean
171
158
  scale: number
172
- sizing_mode: SizingMode
173
159
  sizingMode: SizingMode
174
160
 
175
161
  // Owm methods of EvinceView-3.0.EvinceView.DocumentModel
@@ -1428,14 +1414,8 @@ export interface View extends Atk.ImplementorIface, Gtk.Buildable, Gtk.Scrollabl
1428
1414
 
1429
1415
  // Own properties of EvinceView-3.0.EvinceView.View
1430
1416
 
1431
- readonly can_zoom_in: boolean
1432
1417
  readonly canZoomIn: boolean
1433
- readonly can_zoom_out: boolean
1434
1418
  readonly canZoomOut: boolean
1435
- /**
1436
- * Allows to implement a custom notification system.
1437
- */
1438
- readonly is_loading: boolean
1439
1419
  /**
1440
1420
  * Allows to implement a custom notification system.
1441
1421
  */
@@ -1455,6 +1435,8 @@ export interface View extends Atk.ImplementorIface, Gtk.Buildable, Gtk.Scrollabl
1455
1435
  autoscroll_start(): void
1456
1436
  autoscroll_stop(): void
1457
1437
  begin_add_annotation(annot_type: EvinceDocument.AnnotationType): void
1438
+ can_zoom_in(): boolean
1439
+ can_zoom_out(): boolean
1458
1440
  cancel_add_annotation(): void
1459
1441
  copy(): void
1460
1442
  copy_link_address(action: EvinceDocument.LinkAction): void
@@ -1494,6 +1476,7 @@ export interface View extends Atk.ImplementorIface, Gtk.Buildable, Gtk.Scrollabl
1494
1476
  hide_cursor(): void
1495
1477
  highlight_forward_search(link: EvinceDocument.SourceLink): void
1496
1478
  is_caret_navigation_enabled(): boolean
1479
+ is_loading(): boolean
1497
1480
  next_page(): boolean
1498
1481
  previous_page(): boolean
1499
1482
  reload(): void
@@ -1812,12 +1795,10 @@ export module ViewPresentation {
1812
1795
 
1813
1796
  // Own constructor properties of EvinceView-3.0.EvinceView.ViewPresentation
1814
1797
 
1815
- current_page?: number | null
1816
- document?: EvinceDocument.Document | null
1817
- inverted_colors?: boolean | null
1818
- rotation?: number | null
1819
1798
  currentPage?: number | null
1799
+ document?: EvinceDocument.Document | null
1820
1800
  invertedColors?: boolean | null
1801
+ rotation?: number | null
1821
1802
  }
1822
1803
 
1823
1804
  }
@@ -1826,10 +1807,8 @@ export interface ViewPresentation extends Atk.ImplementorIface, Gtk.Buildable {
1826
1807
 
1827
1808
  // Own properties of EvinceView-3.0.EvinceView.ViewPresentation
1828
1809
 
1829
- current_page: number
1830
1810
  currentPage: number
1831
1811
  readonly document: EvinceDocument.Document
1832
- readonly inverted_colors: boolean
1833
1812
  readonly invertedColors: boolean
1834
1813
  rotation: number
1835
1814
 
@@ -125,24 +125,17 @@ module DocumentModel {
125
125
 
126
126
  continuous?: boolean | null
127
127
  document?: EvinceDocument.Document | null
128
- dual_odd_left?: boolean | null
129
- dual_page?: boolean | null
130
- fullscreen?: boolean | null
131
- inverted_colors?: boolean | null
132
- max_scale?: number | null
133
- min_scale?: number | null
134
- page?: number | null
135
- page_layout?: PageLayout | null
136
- rotation?: number | null
137
- rtl?: boolean | null
138
- scale?: number | null
139
- sizing_mode?: SizingMode | null
140
128
  dualOddLeft?: boolean | null
141
129
  dualPage?: boolean | null
130
+ fullscreen?: boolean | null
142
131
  invertedColors?: boolean | null
143
132
  maxScale?: number | null
144
133
  minScale?: number | null
134
+ page?: number | null
145
135
  pageLayout?: PageLayout | null
136
+ rotation?: number | null
137
+ rtl?: boolean | null
138
+ scale?: number | null
146
139
  sizingMode?: SizingMode | null
147
140
  }
148
141
 
@@ -154,24 +147,17 @@ interface DocumentModel {
154
147
 
155
148
  continuous: boolean
156
149
  document: EvinceDocument.Document
157
- dual_odd_left: boolean
158
150
  dualOddLeft: boolean
159
- dual_page: boolean
160
151
  dualPage: boolean
161
152
  fullscreen: boolean
162
- inverted_colors: boolean
163
153
  invertedColors: boolean
164
- max_scale: number
165
154
  maxScale: number
166
- min_scale: number
167
155
  minScale: number
168
156
  page: number
169
- page_layout: PageLayout
170
157
  pageLayout: PageLayout
171
158
  rotation: number
172
159
  rtl: boolean
173
160
  scale: number
174
- sizing_mode: SizingMode
175
161
  sizingMode: SizingMode
176
162
 
177
163
  // Owm methods of EvinceView-3.0.EvinceView.DocumentModel
@@ -1430,14 +1416,8 @@ interface View extends Atk.ImplementorIface, Gtk.Buildable, Gtk.Scrollable {
1430
1416
 
1431
1417
  // Own properties of EvinceView-3.0.EvinceView.View
1432
1418
 
1433
- readonly can_zoom_in: boolean
1434
1419
  readonly canZoomIn: boolean
1435
- readonly can_zoom_out: boolean
1436
1420
  readonly canZoomOut: boolean
1437
- /**
1438
- * Allows to implement a custom notification system.
1439
- */
1440
- readonly is_loading: boolean
1441
1421
  /**
1442
1422
  * Allows to implement a custom notification system.
1443
1423
  */
@@ -1457,6 +1437,8 @@ interface View extends Atk.ImplementorIface, Gtk.Buildable, Gtk.Scrollable {
1457
1437
  autoscroll_start(): void
1458
1438
  autoscroll_stop(): void
1459
1439
  begin_add_annotation(annot_type: EvinceDocument.AnnotationType): void
1440
+ can_zoom_in(): boolean
1441
+ can_zoom_out(): boolean
1460
1442
  cancel_add_annotation(): void
1461
1443
  copy(): void
1462
1444
  copy_link_address(action: EvinceDocument.LinkAction): void
@@ -1496,6 +1478,7 @@ interface View extends Atk.ImplementorIface, Gtk.Buildable, Gtk.Scrollable {
1496
1478
  hide_cursor(): void
1497
1479
  highlight_forward_search(link: EvinceDocument.SourceLink): void
1498
1480
  is_caret_navigation_enabled(): boolean
1481
+ is_loading(): boolean
1499
1482
  next_page(): boolean
1500
1483
  previous_page(): boolean
1501
1484
  reload(): void
@@ -1814,12 +1797,10 @@ module ViewPresentation {
1814
1797
 
1815
1798
  // Own constructor properties of EvinceView-3.0.EvinceView.ViewPresentation
1816
1799
 
1817
- current_page?: number | null
1818
- document?: EvinceDocument.Document | null
1819
- inverted_colors?: boolean | null
1820
- rotation?: number | null
1821
1800
  currentPage?: number | null
1801
+ document?: EvinceDocument.Document | null
1822
1802
  invertedColors?: boolean | null
1803
+ rotation?: number | null
1823
1804
  }
1824
1805
 
1825
1806
  }
@@ -1828,10 +1809,8 @@ interface ViewPresentation extends Atk.ImplementorIface, Gtk.Buildable {
1828
1809
 
1829
1810
  // Own properties of EvinceView-3.0.EvinceView.ViewPresentation
1830
1811
 
1831
- current_page: number
1832
1812
  currentPage: number
1833
1813
  readonly document: EvinceDocument.Document
1834
- readonly inverted_colors: boolean
1835
1814
  readonly invertedColors: boolean
1836
1815
  rotation: number
1837
1816
 
package/package.json CHANGED
@@ -1,13 +1,19 @@
1
1
  {
2
2
  "name": "@girs/evinceview-3.0",
3
- "version": "3.0.0-3.2.7",
3
+ "version": "3.0.0-3.2.8",
4
4
  "description": "GJS TypeScript type definitions for EvinceView-3.0, generated from library version 3.0.0",
5
5
  "type": "module",
6
6
  "module": "evinceview-3.0.js",
7
7
  "main": "evinceview-3.0.js",
8
8
  "exports": {
9
- "./ambient": "./evinceview-3.0-ambient.d.ts",
10
- "./import": "./evinceview-3.0-import.d.ts",
9
+ "./ambient": {
10
+ "types": "./evinceview-3.0-ambient.d.ts",
11
+ "default": "./evinceview-3.0-ambient.js"
12
+ },
13
+ "./import": {
14
+ "types": "./evinceview-3.0-import.d.ts",
15
+ "default": "./evinceview-3.0-import.js"
16
+ },
11
17
  ".": {
12
18
  "import": {
13
19
  "types": "./evinceview-3.0.d.ts",
@@ -25,21 +31,21 @@
25
31
  "test:cjs": "NODE_OPTIONS=--max_old_space_size=9216 tsc --noEmit evinceview-3.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/evincedocument-3.0": "^45.0.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/gjs": "^3.2.7",
36
- "@girs/glib-2.0": "^2.78.0-3.2.7",
37
- "@girs/gmodule-2.0": "^2.0.0-3.2.7",
38
- "@girs/gobject-2.0": "^2.78.0-3.2.7",
39
- "@girs/gtk-3.0": "^3.24.38-3.2.7",
40
- "@girs/harfbuzz-0.0": "^8.2.1-3.2.7",
41
- "@girs/pango-1.0": "^1.51.0-3.2.7",
42
- "@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/evincedocument-3.0": "^45.0.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/gjs": "^3.2.8",
42
+ "@girs/glib-2.0": "^2.77.0-3.2.8",
43
+ "@girs/gmodule-2.0": "^2.0.0-3.2.8",
44
+ "@girs/gobject-2.0": "^2.77.0-3.2.8",
45
+ "@girs/gtk-3.0": "^3.24.39-3.2.8",
46
+ "@girs/harfbuzz-0.0": "^8.1.1-3.2.8",
47
+ "@girs/pango-1.0": "^1.51.0-3.2.8",
48
+ "@girs/xlib-2.0": "^2.0.0-3.2.8"
43
49
  },
44
50
  "devDependencies": {
45
51
  "typescript": "*"
@@ -56,7 +62,7 @@
56
62
  "license": "MIT",
57
63
  "repository": {
58
64
  "type": "git",
59
- "url": "git+https://github.com/gjsify/types.git"
65
+ "url": "git+https://github.com/gjsify/ts-for-gir.git"
60
66
  },
61
67
  "bugs": {
62
68
  "url": "https://github.com/gjsify/ts-for-gir/issues"