@girs/foundryadw-1 4.1.0 → 4.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 CHANGED
@@ -5,7 +5,7 @@
5
5
  ![downloads/week](https://img.shields.io/npm/dw/@girs/foundryadw-1)
6
6
 
7
7
 
8
- GJS TypeScript type definitions for FoundryAdw-1, generated from library version 1.0.0 using [ts-for-gir](https://github.com/gjsify/ts-for-gir) v4.1.0.
8
+ GJS TypeScript type definitions for FoundryAdw-1 using [ts-for-gir](https://github.com/gjsify/ts-for-gir) v4.2.0.
9
9
 
10
10
  ## Install
11
11
 
@@ -0,0 +1,270 @@
1
+ /**
2
+ * The GIR-derived widget VOCABULARY for FoundryAdw-1.
3
+ *
4
+ * GENERATED — do not edit. Provenance: FoundryAdw-1 — dropped empty base(s): GObject.InitiallyUnowned GObject.Object
5
+ *
6
+ * 7 concrete widgets, 7 declarations, 1 enum nick unions, 12 slot candidates.
7
+ *
8
+ * Module-scoped exports only. There is no `JSX` namespace here, no tag spelling and
9
+ * no `on<Signal>` prop name: those are DIALECT, and every framework answers them
10
+ * differently. The shape to avoid is the GLOBAL AUGMENT — a `declare global` on
11
+ * `React.JSX` collides with every other library on a shared tag — while a
12
+ * module-scoped `JSX` behind a `jsxImportSource` does not. This package is used by
13
+ * projects that want nothing to do with JSX, so it emits neither; a consumer declaring
14
+ * a module-scoped namespace over these names is doing it right.
15
+ *
16
+ * Three things this is and `ConstructorProps` is not: WRITABLE-only (measured on
17
+ * Gtk-4.0, `ConstructorProps` offers 150 read-only properties across 68 classes as
18
+ * settable, and GTK's failure mode for writing one is exit 0), OPTIONAL, and keyed
19
+ * by the name GObject actually REGISTERED — the dashed spelling `g_object_set`,
20
+ * GtkBuilder XML and Blueprint all use.
21
+ *
22
+ * Signal handler types are not re-derived: `X.SignalSignatures`, which this package
23
+ * already emits for every class with the parent chain, every implemented interface
24
+ * and the `notify::` keys folded in, is what `Widgets[G]['signals']` points at.
25
+ */
26
+
27
+ import type Foundry from '@girs/foundry-1';
28
+ import type FoundryAdw from './foundryadw-1.js';
29
+ import type Gdk from '@girs/gdk-4.0';
30
+ import type Gio from '@girs/gio-2.0';
31
+ import type Gtk from '@girs/gtk-4.0';
32
+ import type { AdwDialogConstructOnly, AdwDialogProps, AdwEntryRowConstructOnly, AdwEntryRowProps, AdwPreferencesRowConstructOnly, AdwPreferencesRowProps } from '@girs/adw-1/surface';
33
+ import type { GtkAccessibleConstructOnly, GtkAccessibleProps, GtkActionableConstructOnly, GtkActionableProps, GtkBuildableConstructOnly, GtkBuildableProps, GtkConstraintTargetConstructOnly, GtkConstraintTargetProps, GtkEditableConstructOnly, GtkEditableProps, GtkListBoxRowConstructOnly, GtkListBoxRowProps, GtkShortcutManagerConstructOnly, GtkShortcutManagerProps, GtkWidgetConstructOnly, GtkWidgetProps } from '@girs/gtk-4.0/surface';
34
+
35
+ // ---------------------------------------------------------------------------
36
+ // Enum nicks — the string vocabulary GObject registered, from GIR's `glib:nick`.
37
+ //
38
+ // Not derived from the member name. Substituting underscores for dashes is not a law:
39
+ // some nicks keep an underscore the substitution would have replaced, and only the
40
+ // attribute knows which. Gtk-4.0 and Adw-1 contradict no derivation at all, which is
41
+ // how a derived nick passes review and breaks elsewhere.
42
+ // Re-measure with `scripts/check-nick-derivation.mjs` in ts-for-gir.
43
+ // ---------------------------------------------------------------------------
44
+
45
+ export type GFileTypeNick = 'unknown' | 'regular' | 'directory' | 'symbolic-link' | 'special' | 'shortcut' | 'mountable';
46
+
47
+ // ---------------------------------------------------------------------------
48
+ // Property surfaces — one interface per GIR DECLARATION, mirroring GIR's own
49
+ // inheritance rather than flattening per widget.
50
+ //
51
+ // The interfaces are load-bearing, not tidiness: `GtkBox` declares four properties
52
+ // of its own and `orientation` is not among them — it lives on `Gtk.Orientable`,
53
+ // because GObject installs interface properties on the implementor at runtime while
54
+ // GIR keeps them once, on the interface.
55
+ // ---------------------------------------------------------------------------
56
+
57
+ /** An `AdwPreferencesRow` that allows typing or navigating to a file or directory path. */
58
+ export interface FoundryFileRowProps extends AdwEntryRowProps, GtkAccessibleProps, GtkActionableProps, GtkBuildableProps, GtkConstraintTargetProps, GtkEditableProps {
59
+ file?: Gio.File;
60
+ 'file-type'?: GFileTypeNick | Gio.FileType;
61
+ }
62
+ /** Settable only at construction — a renderer must REBUILD, not patch. */
63
+ export type FoundryFileRowConstructOnly = AdwEntryRowConstructOnly | GtkAccessibleConstructOnly | GtkActionableConstructOnly | GtkBuildableConstructOnly | GtkConstraintTargetConstructOnly | GtkEditableConstructOnly;
64
+
65
+ export interface FoundryPageProps extends GtkWidgetProps, GtkAccessibleProps, GtkBuildableProps, GtkConstraintTargetProps {
66
+ auxiliary?: Gtk.Widget | null;
67
+ content?: Gtk.Widget | null;
68
+ 'needs-attention'?: boolean;
69
+ }
70
+ /** Settable only at construction — a renderer must REBUILD, not patch. */
71
+ export type FoundryPageConstructOnly = GtkWidgetConstructOnly | GtkAccessibleConstructOnly | GtkBuildableConstructOnly | GtkConstraintTargetConstructOnly;
72
+
73
+ export interface FoundryPanelBarProps extends GtkWidgetProps, GtkAccessibleProps, GtkBuildableProps, GtkConstraintTargetProps {
74
+ 'show-bottom'?: boolean;
75
+ 'show-start'?: boolean;
76
+ workspace?: FoundryAdw.Workspace | null;
77
+ }
78
+ /** Settable only at construction — a renderer must REBUILD, not patch. */
79
+ export type FoundryPanelBarConstructOnly = GtkWidgetConstructOnly | GtkAccessibleConstructOnly | GtkBuildableConstructOnly | GtkConstraintTargetConstructOnly;
80
+
81
+ export interface FoundryPathBarProps extends GtkWidgetProps, GtkAccessibleProps, GtkBuildableProps, GtkConstraintTargetProps {
82
+ root?: FoundryAdw.PathNavigator;
83
+ 'selected-item'?: FoundryAdw.PathNavigator | null;
84
+ }
85
+ /** Settable only at construction — a renderer must REBUILD, not patch. */
86
+ export type FoundryPathBarConstructOnly = GtkWidgetConstructOnly | GtkAccessibleConstructOnly | GtkBuildableConstructOnly | GtkConstraintTargetConstructOnly;
87
+
88
+ export interface FoundrySearchDialogProps extends AdwDialogProps, GtkAccessibleProps, GtkBuildableProps, GtkConstraintTargetProps, GtkShortcutManagerProps {
89
+ context?: Foundry.Context;
90
+ 'search-text'?: string;
91
+ }
92
+ /** Settable only at construction — a renderer must REBUILD, not patch. */
93
+ export type FoundrySearchDialogConstructOnly = AdwDialogConstructOnly | GtkAccessibleConstructOnly | GtkBuildableConstructOnly | GtkConstraintTargetConstructOnly | GtkShortcutManagerConstructOnly;
94
+
95
+ export interface FoundryTreeExpanderProps extends GtkWidgetProps, GtkAccessibleProps, GtkBuildableProps, GtkConstraintTargetProps {
96
+ /**
97
+ * Whether clicking on the expander should activate the row instead of expanding or collapsing it.
98
+ * @since 1.1
99
+ */
100
+ 'activate-on-click'?: boolean;
101
+ 'expanded-icon'?: Gio.Icon | null;
102
+ 'expanded-icon-name'?: string;
103
+ 'expanded-paintable'?: Gdk.Paintable | null;
104
+ icon?: Gio.Icon | null;
105
+ 'icon-name'?: string;
106
+ ignored?: boolean;
107
+ 'list-row'?: Gtk.TreeListRow | null;
108
+ 'menu-model'?: Gio.MenuModel | null;
109
+ /**
110
+ * The paintable to display for the row.
111
+ * @since 1.1
112
+ */
113
+ paintable?: Gdk.Paintable | null;
114
+ suffix?: Gtk.Widget | null;
115
+ title?: string;
116
+ 'use-markup'?: boolean;
117
+ }
118
+ /** Settable only at construction — a renderer must REBUILD, not patch. */
119
+ export type FoundryTreeExpanderConstructOnly = GtkWidgetConstructOnly | GtkAccessibleConstructOnly | GtkBuildableConstructOnly | GtkConstraintTargetConstructOnly;
120
+
121
+ export interface FoundryWorkspaceProps extends GtkWidgetProps, GtkAccessibleProps, GtkBuildableProps, GtkConstraintTargetProps {
122
+ 'auxiliary-placeholder'?: Gtk.Widget | null;
123
+ 'collapsed-titlebar'?: Gtk.Widget | null;
124
+ context?: Foundry.Context | null;
125
+ 'primary-menu'?: Gio.MenuModel | null;
126
+ 'show-auxiliary'?: boolean;
127
+ 'show-sidebar'?: boolean;
128
+ 'show-utilities'?: boolean;
129
+ 'sidebar-titlebar'?: Gtk.Widget | null;
130
+ 'status-widget'?: Gtk.Widget | null;
131
+ titlebar?: Gtk.Widget | null;
132
+ }
133
+ /** Settable only at construction — a renderer must REBUILD, not patch. */
134
+ export type FoundryWorkspaceConstructOnly = GtkWidgetConstructOnly | GtkAccessibleConstructOnly | GtkBuildableConstructOnly | GtkConstraintTargetConstructOnly;
135
+
136
+ // ---------------------------------------------------------------------------
137
+ // The GType-keyed widget map.
138
+ //
139
+ // Keyed by GType because that is also the GtkBuilder XML key and the typelib key. A
140
+ // consumer maps GTypes to tags in ITS convention — kebab for JSX intrinsics, Pascal
141
+ // for a Vue `GlobalComponents`, the class itself for a renderer whose element type
142
+ // is the class. None of those is baked in here.
143
+ //
144
+ // `slotCandidates` is a candidate list and never an answer: derived from methods
145
+ // taking exactly one widget argument. The GIR cannot tell adoption from reference —
146
+ // `set_title_widget` parents its argument and `set_activatable_widget` does not, and
147
+ // both are `void f(GtkWidget*)` at `transfer-ownership="none"`. Curation decides;
148
+ // this is what notices when a release adds a candidate.
149
+ // ---------------------------------------------------------------------------
150
+
151
+ export interface Widgets {
152
+ FoundryFileRow: {
153
+ class: FoundryAdw.FileRow;
154
+ props: FoundryFileRowProps;
155
+ signals: FoundryAdw.FileRow.SignalSignatures;
156
+ constructOnly: FoundryFileRowConstructOnly;
157
+ slotCandidates: {};
158
+ };
159
+ FoundryPage: {
160
+ class: FoundryAdw.Page;
161
+ props: FoundryPageProps;
162
+ signals: FoundryAdw.Page.SignalSignatures;
163
+ constructOnly: FoundryPageConstructOnly;
164
+ slotCandidates: {
165
+ 'auxiliary': 'set_auxiliary';
166
+ 'content': 'set_content';
167
+ };
168
+ };
169
+ FoundryPanelBar: {
170
+ class: FoundryAdw.PanelBar;
171
+ props: FoundryPanelBarProps;
172
+ signals: FoundryAdw.PanelBar.SignalSignatures;
173
+ constructOnly: FoundryPanelBarConstructOnly;
174
+ slotCandidates: {
175
+ 'workspace': 'set_workspace';
176
+ };
177
+ };
178
+ FoundryPathBar: {
179
+ class: FoundryAdw.PathBar;
180
+ props: FoundryPathBarProps;
181
+ signals: FoundryAdw.PathBar.SignalSignatures;
182
+ constructOnly: FoundryPathBarConstructOnly;
183
+ slotCandidates: {};
184
+ };
185
+ FoundrySearchDialog: {
186
+ class: FoundryAdw.SearchDialog;
187
+ props: FoundrySearchDialogProps;
188
+ signals: FoundryAdw.SearchDialog.SignalSignatures;
189
+ constructOnly: FoundrySearchDialogConstructOnly;
190
+ slotCandidates: {};
191
+ };
192
+ FoundryTreeExpander: {
193
+ class: FoundryAdw.TreeExpander;
194
+ props: FoundryTreeExpanderProps;
195
+ signals: FoundryAdw.TreeExpander.SignalSignatures;
196
+ constructOnly: FoundryTreeExpanderConstructOnly;
197
+ slotCandidates: {
198
+ 'suffix': 'set_suffix';
199
+ };
200
+ };
201
+ FoundryWorkspace: {
202
+ class: FoundryAdw.Workspace;
203
+ props: FoundryWorkspaceProps;
204
+ signals: FoundryAdw.Workspace.SignalSignatures;
205
+ constructOnly: FoundryWorkspaceConstructOnly;
206
+ slotCandidates: {
207
+ 'auxiliary-placeholder': 'set_auxiliary_placeholder';
208
+ 'bottom-panel': 'add_bottom_panel';
209
+ 'collapsed-titlebar': 'set_collapsed_titlebar';
210
+ 'page': 'add_page';
211
+ 'sidebar-panel': 'add_sidebar_panel';
212
+ 'sidebar-titlebar': 'set_sidebar_titlebar';
213
+ 'status': 'set_status_widget';
214
+ 'titlebar': 'set_titlebar';
215
+ };
216
+ };
217
+ }
218
+
219
+ /** Every GType this namespace can create. A consumer derives its own tag map. */
220
+ export type WidgetGType = keyof Widgets;
221
+
222
+ /** The writable, optional, GObject-keyed property surface of one GType. */
223
+ export type PropsOf<G extends WidgetGType> = Widgets[G]['props'];
224
+
225
+ /** The signal table this package already emits, reached by GType. */
226
+ export type SignalsOf<G extends WidgetGType> = Widgets[G]['signals'];
227
+
228
+ /** The instance type — what a `ref`-shaped prop should infer. */
229
+ export type InstanceOf<G extends WidgetGType> = Widgets[G]['class'];
230
+
231
+ /** Property names that can only be set at construction. */
232
+ export type ConstructOnlyOf<G extends WidgetGType> = Widgets[G]['constructOnly'];
233
+
234
+ /** Candidate child slots — see the note above; curation decides. */
235
+ export type SlotCandidatesOf<G extends WidgetGType> = keyof Widgets[G]['slotCandidates'];
236
+
237
+ /**
238
+ * The same facts as runtime data, for a consumer that CHECKS them.
239
+ *
240
+ * Types are erased, so a spec that asks the installed GTK whether every property
241
+ * here is a writable ParamSpec, every signal resolvable by `GObject.signal_lookup`
242
+ * and every nick resolvable through an enum lookup cannot read the interfaces
243
+ * above. Emitted headlessly with no GTK present, which is exactly why the checking
244
+ * belongs to the consumer and the DATA belongs here.
245
+ */
246
+ export const SURFACE_PROVENANCE: string;
247
+
248
+ /** Declaration GType -> its own settable properties, as GObject registered them. */
249
+ export const OWN_PROPS: Readonly<Record<string, readonly string[]>>;
250
+
251
+ /** Widget GType -> its own signals. */
252
+ export const OWN_SIGNALS: Readonly<Record<string, readonly string[]>>;
253
+
254
+ /** Widget GType -> every declaration its members come from, self first. */
255
+ export const DECLS: Readonly<Record<string, readonly string[]>>;
256
+
257
+ /** Enum GType -> the nicks this surface offers. */
258
+ export const ENUM_NICKS: Readonly<Record<string, readonly string[]>>;
259
+
260
+ /** Widget GType -> slot name -> the method that may adopt a child there. */
261
+ export const SLOT_CANDIDATES: Readonly<Record<string, Readonly<Record<string, string>>>>;
262
+
263
+ /**
264
+ * `Type.property` -> the release that introduced it.
265
+ *
266
+ * What keeps a runtime cross-check honest across a version gap without an
267
+ * allowlist: a member the installed library lacks is a defect UNLESS the version
268
+ * here is newer than the one running.
269
+ */
270
+ export const SINCE: Readonly<Record<string, string>>;
@@ -0,0 +1,66 @@
1
+ // The widget vocabulary of FoundryAdw-1 as runtime data.
2
+ //
3
+ // GENERATED — do not edit. Provenance: FoundryAdw-1 — dropped empty base(s): GObject.InitiallyUnowned GObject.Object
4
+ //
5
+ // The type half of this subpath is the sibling `.d.ts`. This file exists because
6
+ // types are erased: a consumer that wants to ask the installed library whether every
7
+ // name here is real needs values, not declarations.
8
+
9
+ export const SURFACE_PROVENANCE = 'FoundryAdw-1 — dropped empty base(s): GObject.InitiallyUnowned GObject.Object';
10
+
11
+ export const OWN_PROPS = {
12
+ FoundryFileRow: ['file', 'file-type'],
13
+ FoundryPage: ['auxiliary', 'content', 'needs-attention'],
14
+ FoundryPanelBar: ['show-bottom', 'show-start', 'workspace'],
15
+ FoundryPathBar: ['root', 'selected-item'],
16
+ FoundrySearchDialog: ['context', 'search-text'],
17
+ FoundryTreeExpander: ['activate-on-click', 'expanded-icon', 'expanded-icon-name', 'expanded-paintable', 'icon', 'icon-name', 'ignored', 'list-row', 'menu-model', 'paintable', 'suffix', 'title', 'use-markup'],
18
+ FoundryWorkspace: ['auxiliary-placeholder', 'collapsed-titlebar', 'context', 'primary-menu', 'show-auxiliary', 'show-sidebar', 'show-utilities', 'sidebar-titlebar', 'status-widget', 'titlebar'],
19
+ };
20
+
21
+ export const OWN_SIGNALS = {
22
+ FoundryPage: ['presented', 'raise'],
23
+ FoundryTreeExpander: ['context-menu'],
24
+ };
25
+
26
+ export const DECLS = {
27
+ FoundryFileRow: ['FoundryFileRow', 'AdwEntryRow', 'AdwPreferencesRow', 'GtkListBoxRow', 'GtkWidget', 'GtkAccessible', 'GtkActionable', 'GtkBuildable', 'GtkConstraintTarget', 'GtkEditable'],
28
+ FoundryPage: ['FoundryPage', 'GtkWidget', 'GtkAccessible', 'GtkBuildable', 'GtkConstraintTarget'],
29
+ FoundryPanelBar: ['FoundryPanelBar', 'GtkWidget', 'GtkAccessible', 'GtkBuildable', 'GtkConstraintTarget'],
30
+ FoundryPathBar: ['FoundryPathBar', 'GtkWidget', 'GtkAccessible', 'GtkBuildable', 'GtkConstraintTarget'],
31
+ FoundrySearchDialog: ['FoundrySearchDialog', 'AdwDialog', 'GtkWidget', 'GtkAccessible', 'GtkBuildable', 'GtkConstraintTarget', 'GtkShortcutManager'],
32
+ FoundryTreeExpander: ['FoundryTreeExpander', 'GtkWidget', 'GtkAccessible', 'GtkBuildable', 'GtkConstraintTarget'],
33
+ FoundryWorkspace: ['FoundryWorkspace', 'GtkWidget', 'GtkAccessible', 'GtkBuildable', 'GtkConstraintTarget'],
34
+ };
35
+
36
+ export const ENUM_NICKS = {
37
+ GFileType: ['unknown', 'regular', 'directory', 'symbolic-link', 'special', 'shortcut', 'mountable'],
38
+ };
39
+
40
+ export const SLOT_CANDIDATES = {
41
+ FoundryPage: {
42
+ 'auxiliary': 'set_auxiliary',
43
+ 'content': 'set_content',
44
+ },
45
+ FoundryPanelBar: {
46
+ 'workspace': 'set_workspace',
47
+ },
48
+ FoundryTreeExpander: {
49
+ 'suffix': 'set_suffix',
50
+ },
51
+ FoundryWorkspace: {
52
+ 'auxiliary-placeholder': 'set_auxiliary_placeholder',
53
+ 'bottom-panel': 'add_bottom_panel',
54
+ 'collapsed-titlebar': 'set_collapsed_titlebar',
55
+ 'page': 'add_page',
56
+ 'sidebar-panel': 'add_sidebar_panel',
57
+ 'sidebar-titlebar': 'set_sidebar_titlebar',
58
+ 'status': 'set_status_widget',
59
+ 'titlebar': 'set_titlebar',
60
+ },
61
+ };
62
+
63
+ export const SINCE = {
64
+ 'FoundryTreeExpander.activate-on-click': '1.1',
65
+ 'FoundryTreeExpander.paintable': '1.1',
66
+ };
package/package.json CHANGED
@@ -1,8 +1,7 @@
1
1
  {
2
2
  "name": "@girs/foundryadw-1",
3
- "version": "4.1.0",
4
- "libraryVersion": "1.0.0",
5
- "description": "GJS TypeScript type definitions for FoundryAdw-1, generated from library version 1.0.0",
3
+ "version": "4.2.0",
4
+ "description": "GJS TypeScript type definitions for FoundryAdw-1",
6
5
  "type": "module",
7
6
  "module": "foundryadw-1.js",
8
7
  "main": "foundryadw-1.js",
@@ -17,6 +16,11 @@
17
16
  "import": "./foundryadw-1-import.js",
18
17
  "default": "./foundryadw-1-import.js"
19
18
  },
19
+ "./surface": {
20
+ "types": "./foundryadw-1-surface.d.ts",
21
+ "import": "./foundryadw-1-surface.js",
22
+ "default": "./foundryadw-1-surface.js"
23
+ },
20
24
  "./foundryadw-1": {
21
25
  "types": "./foundryadw-1.d.ts",
22
26
  "import": "./foundryadw-1.js",
@@ -32,28 +36,28 @@
32
36
  "test": "tsc --project tsconfig.json"
33
37
  },
34
38
  "dependencies": {
35
- "@girs/gjs": "^4.1.0",
36
- "@girs/peas-2": "^4.1.0",
37
- "@girs/gio-2.0": "^4.1.0",
38
- "@girs/gobject-2.0": "^4.1.0",
39
- "@girs/glib-2.0": "^4.1.0",
40
- "@girs/gmodule-2.0": "^4.1.0",
41
- "@girs/gtk-4.0": "^4.1.0",
42
- "@girs/gsk-4.0": "^4.1.0",
43
- "@girs/graphene-1.0": "^4.1.0",
44
- "@girs/gdk-4.0": "^4.1.0",
45
- "@girs/cairo-1.0": "^4.1.0",
46
- "@girs/pangocairo-1.0": "^4.1.0",
47
- "@girs/pango-1.0": "^4.1.0",
48
- "@girs/harfbuzz-0.0": "^4.1.0",
49
- "@girs/freetype2-2.0": "^4.1.0",
50
- "@girs/gdkpixbuf-2.0": "^4.1.0",
51
- "@girs/foundrygtk-1": "^4.1.0",
52
- "@girs/json-1.0": "^4.1.0",
53
- "@girs/gtksource-5": "^4.1.0",
54
- "@girs/foundry-1": "^4.1.0",
55
- "@girs/dex-1": "^4.1.0",
56
- "@girs/adw-1": "^4.1.0" },
39
+ "@girs/gjs": "^4.2.0",
40
+ "@girs/peas-2": "^4.2.0",
41
+ "@girs/gio-2.0": "^4.2.0",
42
+ "@girs/gobject-2.0": "^4.2.0",
43
+ "@girs/glib-2.0": "^4.2.0",
44
+ "@girs/gmodule-2.0": "^4.2.0",
45
+ "@girs/gtk-4.0": "^4.2.0",
46
+ "@girs/gsk-4.0": "^4.2.0",
47
+ "@girs/graphene-1.0": "^4.2.0",
48
+ "@girs/gdk-4.0": "^4.2.0",
49
+ "@girs/cairo-1.0": "^4.2.0",
50
+ "@girs/pangocairo-1.0": "^4.2.0",
51
+ "@girs/pango-1.0": "^4.2.0",
52
+ "@girs/harfbuzz-0.0": "^4.2.0",
53
+ "@girs/freetype2-2.0": "^4.2.0",
54
+ "@girs/gdkpixbuf-2.0": "^4.2.0",
55
+ "@girs/foundrygtk-1": "^4.2.0",
56
+ "@girs/json-1.0": "^4.2.0",
57
+ "@girs/gtksource-5": "^4.2.0",
58
+ "@girs/foundry-1": "^4.2.0",
59
+ "@girs/dex-1": "^4.2.0",
60
+ "@girs/adw-1": "^4.2.0" },
57
61
  "devDependencies": {
58
62
  "typescript": "*"
59
63
  },
package/tsconfig.json CHANGED
@@ -86,7 +86,7 @@
86
86
  ]
87
87
  }
88
88
  },
89
- "include": ["./foundryadw-1.d.ts"]
89
+ "include": ["./foundryadw-1.d.ts","./foundryadw-1-surface.d.ts"]
90
90
  }
91
91
 
92
92