@girs/gtksource-4 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 +1 -1
- package/gtksource-4-surface.d.ts +234 -0
- package/gtksource-4-surface.js +51 -0
- package/package.json +21 -17
- package/tsconfig.json +1 -1
package/README.md
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|

|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
GJS TypeScript type definitions for GtkSource-4
|
|
8
|
+
GJS TypeScript type definitions for GtkSource-4 using [ts-for-gir](https://github.com/gjsify/ts-for-gir) v4.2.0.
|
|
9
9
|
|
|
10
10
|
## Install
|
|
11
11
|
|
|
@@ -0,0 +1,234 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* The GIR-derived widget VOCABULARY for GtkSource-4.
|
|
3
|
+
*
|
|
4
|
+
* GENERATED — do not edit. Provenance: GtkSource-4 — dropped empty base(s): GObject.InitiallyUnowned GObject.Object Atk.ImplementorIface
|
|
5
|
+
*
|
|
6
|
+
* 5 concrete widgets, 6 declarations, 8 enum nick unions, 1 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 GtkSource from './gtksource-4.js';
|
|
28
|
+
import type Pango from '@girs/pango-1.0';
|
|
29
|
+
import type { GtkActionableConstructOnly, GtkActionableProps, GtkActivatableConstructOnly, GtkActivatableProps, GtkBinConstructOnly, GtkBinProps, GtkBuildableConstructOnly, GtkBuildableProps, GtkButtonConstructOnly, GtkButtonProps, GtkContainerConstructOnly, GtkContainerProps, GtkScrollableConstructOnly, GtkScrollableProps, GtkTextViewConstructOnly, GtkTextViewProps, GtkWidgetConstructOnly, GtkWidgetProps, GtkWindowConstructOnly, GtkWindowProps } from '@girs/gtk-3.0/surface';
|
|
30
|
+
|
|
31
|
+
// ---------------------------------------------------------------------------
|
|
32
|
+
// Enum nicks — the string vocabulary GObject registered, from GIR's `glib:nick`.
|
|
33
|
+
//
|
|
34
|
+
// Not derived from the member name. Substituting underscores for dashes is not a law:
|
|
35
|
+
// some nicks keep an underscore the substitution would have replaced, and only the
|
|
36
|
+
// attribute knows which. Gtk-4.0 and Adw-1 contradict no derivation at all, which is
|
|
37
|
+
// how a derived nick passes review and breaks elsewhere.
|
|
38
|
+
// Re-measure with `scripts/check-nick-derivation.mjs` in ts-for-gir.
|
|
39
|
+
// ---------------------------------------------------------------------------
|
|
40
|
+
|
|
41
|
+
export type GtkSourceBackgroundPatternTypeNick = 'none' | 'grid';
|
|
42
|
+
export type GtkSourceBracketMatchTypeNick = 'none' | 'out-of-range' | 'not-found' | 'found';
|
|
43
|
+
export type GtkSourceChangeCaseTypeNick = 'lower' | 'upper' | 'toggle' | 'title';
|
|
44
|
+
export type GtkSourceCompressionTypeNick = 'none' | 'gzip';
|
|
45
|
+
export type GtkSourceGutterRendererAlignmentModeNick = 'cell' | 'first' | 'last';
|
|
46
|
+
export type GtkSourceNewlineTypeNick = 'lf' | 'cr' | 'cr-lf';
|
|
47
|
+
export type GtkSourceSmartHomeEndTypeNick = 'disabled' | 'before' | 'after' | 'always';
|
|
48
|
+
export type GtkSourceViewGutterPositionNick = 'lines' | 'marks';
|
|
49
|
+
|
|
50
|
+
// ---------------------------------------------------------------------------
|
|
51
|
+
// Property surfaces — one interface per GIR DECLARATION, mirroring GIR's own
|
|
52
|
+
// inheritance rather than flattening per widget.
|
|
53
|
+
//
|
|
54
|
+
// The interfaces are load-bearing, not tidiness: `GtkBox` declares four properties
|
|
55
|
+
// of its own and `orientation` is not among them — it lives on `Gtk.Orientable`,
|
|
56
|
+
// because GObject installs interface properties on the implementor at runtime while
|
|
57
|
+
// GIR keeps them once, on the interface.
|
|
58
|
+
// ---------------------------------------------------------------------------
|
|
59
|
+
|
|
60
|
+
export interface GtkSourceCompletionInfoProps extends GtkWindowProps, GtkBuildableProps {
|
|
61
|
+
}
|
|
62
|
+
/** Settable only at construction — a renderer must REBUILD, not patch. */
|
|
63
|
+
export type GtkSourceCompletionInfoConstructOnly = GtkWindowConstructOnly | GtkBuildableConstructOnly;
|
|
64
|
+
|
|
65
|
+
export interface GtkSourceMapProps extends GtkSourceViewProps, GtkBuildableProps, GtkScrollableProps {
|
|
66
|
+
'font-desc'?: Pango.FontDescription;
|
|
67
|
+
view?: GtkSource.View | null;
|
|
68
|
+
}
|
|
69
|
+
/** Settable only at construction — a renderer must REBUILD, not patch. */
|
|
70
|
+
export type GtkSourceMapConstructOnly = GtkSourceViewConstructOnly | GtkBuildableConstructOnly | GtkScrollableConstructOnly;
|
|
71
|
+
|
|
72
|
+
export interface GtkSourceStyleSchemeChooserProps {
|
|
73
|
+
/**
|
|
74
|
+
* The :style-scheme property contains the currently selected style scheme.
|
|
75
|
+
* @since 3.16
|
|
76
|
+
*/
|
|
77
|
+
'style-scheme'?: GtkSource.StyleScheme;
|
|
78
|
+
}
|
|
79
|
+
/** Settable only at construction — a renderer must REBUILD, not patch. */
|
|
80
|
+
export type GtkSourceStyleSchemeChooserConstructOnly = never;
|
|
81
|
+
|
|
82
|
+
export interface GtkSourceStyleSchemeChooserButtonProps extends GtkButtonProps, GtkActionableProps, GtkActivatableProps, GtkBuildableProps, GtkSourceStyleSchemeChooserProps {
|
|
83
|
+
}
|
|
84
|
+
/** Settable only at construction — a renderer must REBUILD, not patch. */
|
|
85
|
+
export type GtkSourceStyleSchemeChooserButtonConstructOnly = GtkButtonConstructOnly | GtkActionableConstructOnly | GtkActivatableConstructOnly | GtkBuildableConstructOnly | GtkSourceStyleSchemeChooserConstructOnly;
|
|
86
|
+
|
|
87
|
+
export interface GtkSourceStyleSchemeChooserWidgetProps extends GtkBinProps, GtkBuildableProps, GtkSourceStyleSchemeChooserProps {
|
|
88
|
+
}
|
|
89
|
+
/** Settable only at construction — a renderer must REBUILD, not patch. */
|
|
90
|
+
export type GtkSourceStyleSchemeChooserWidgetConstructOnly = GtkBinConstructOnly | GtkBuildableConstructOnly | GtkSourceStyleSchemeChooserConstructOnly;
|
|
91
|
+
|
|
92
|
+
export interface GtkSourceViewProps extends GtkTextViewProps, GtkBuildableProps, GtkScrollableProps {
|
|
93
|
+
'auto-indent'?: boolean;
|
|
94
|
+
/**
|
|
95
|
+
* Draw a specific background pattern on the view.
|
|
96
|
+
* @since 3.16
|
|
97
|
+
*/
|
|
98
|
+
'background-pattern'?: GtkSourceBackgroundPatternTypeNick | GtkSource.BackgroundPatternType;
|
|
99
|
+
'highlight-current-line'?: boolean;
|
|
100
|
+
'indent-on-tab'?: boolean;
|
|
101
|
+
/** Width of an indentation step expressed in number of spaces. */
|
|
102
|
+
'indent-width'?: number;
|
|
103
|
+
'insert-spaces-instead-of-tabs'?: boolean;
|
|
104
|
+
/** Position of the right margin. */
|
|
105
|
+
'right-margin-position'?: number;
|
|
106
|
+
/** Whether to display line mark pixbufs */
|
|
107
|
+
'show-line-marks'?: boolean;
|
|
108
|
+
/** Whether to display line numbers */
|
|
109
|
+
'show-line-numbers'?: boolean;
|
|
110
|
+
/** Whether to display the right margin. */
|
|
111
|
+
'show-right-margin'?: boolean;
|
|
112
|
+
/**
|
|
113
|
+
* Whether smart Backspace should be used.
|
|
114
|
+
* @since 3.18
|
|
115
|
+
*/
|
|
116
|
+
'smart-backspace'?: boolean;
|
|
117
|
+
/**
|
|
118
|
+
* Set the behavior of the HOME and END keys.
|
|
119
|
+
* @since 2.0
|
|
120
|
+
*/
|
|
121
|
+
'smart-home-end'?: GtkSourceSmartHomeEndTypeNick | GtkSource.SmartHomeEndType;
|
|
122
|
+
/** Width of a tab character expressed in number of spaces. */
|
|
123
|
+
'tab-width'?: number;
|
|
124
|
+
}
|
|
125
|
+
/** Settable only at construction — a renderer must REBUILD, not patch. */
|
|
126
|
+
export type GtkSourceViewConstructOnly = GtkTextViewConstructOnly | GtkBuildableConstructOnly | GtkScrollableConstructOnly;
|
|
127
|
+
|
|
128
|
+
// ---------------------------------------------------------------------------
|
|
129
|
+
// The GType-keyed widget map.
|
|
130
|
+
//
|
|
131
|
+
// Keyed by GType because that is also the GtkBuilder XML key and the typelib key. A
|
|
132
|
+
// consumer maps GTypes to tags in ITS convention — kebab for JSX intrinsics, Pascal
|
|
133
|
+
// for a Vue `GlobalComponents`, the class itself for a renderer whose element type
|
|
134
|
+
// is the class. None of those is baked in here.
|
|
135
|
+
//
|
|
136
|
+
// `slotCandidates` is a candidate list and never an answer: derived from methods
|
|
137
|
+
// taking exactly one widget argument. The GIR cannot tell adoption from reference —
|
|
138
|
+
// `set_title_widget` parents its argument and `set_activatable_widget` does not, and
|
|
139
|
+
// both are `void f(GtkWidget*)` at `transfer-ownership="none"`. Curation decides;
|
|
140
|
+
// this is what notices when a release adds a candidate.
|
|
141
|
+
// ---------------------------------------------------------------------------
|
|
142
|
+
|
|
143
|
+
export interface Widgets {
|
|
144
|
+
GtkSourceCompletionInfo: {
|
|
145
|
+
class: GtkSource.CompletionInfo;
|
|
146
|
+
props: GtkSourceCompletionInfoProps;
|
|
147
|
+
signals: GtkSource.CompletionInfo.SignalSignatures;
|
|
148
|
+
constructOnly: GtkSourceCompletionInfoConstructOnly;
|
|
149
|
+
slotCandidates: {};
|
|
150
|
+
};
|
|
151
|
+
GtkSourceMap: {
|
|
152
|
+
class: GtkSource.Map;
|
|
153
|
+
props: GtkSourceMapProps;
|
|
154
|
+
signals: GtkSource.Map.SignalSignatures;
|
|
155
|
+
constructOnly: GtkSourceMapConstructOnly;
|
|
156
|
+
slotCandidates: {
|
|
157
|
+
'view': 'set_view';
|
|
158
|
+
};
|
|
159
|
+
};
|
|
160
|
+
GtkSourceStyleSchemeChooserButton: {
|
|
161
|
+
class: GtkSource.StyleSchemeChooserButton;
|
|
162
|
+
props: GtkSourceStyleSchemeChooserButtonProps;
|
|
163
|
+
signals: GtkSource.StyleSchemeChooserButton.SignalSignatures;
|
|
164
|
+
constructOnly: GtkSourceStyleSchemeChooserButtonConstructOnly;
|
|
165
|
+
slotCandidates: {};
|
|
166
|
+
};
|
|
167
|
+
GtkSourceStyleSchemeChooserWidget: {
|
|
168
|
+
class: GtkSource.StyleSchemeChooserWidget;
|
|
169
|
+
props: GtkSourceStyleSchemeChooserWidgetProps;
|
|
170
|
+
signals: GtkSource.StyleSchemeChooserWidget.SignalSignatures;
|
|
171
|
+
constructOnly: GtkSourceStyleSchemeChooserWidgetConstructOnly;
|
|
172
|
+
slotCandidates: {};
|
|
173
|
+
};
|
|
174
|
+
GtkSourceView: {
|
|
175
|
+
class: GtkSource.View;
|
|
176
|
+
props: GtkSourceViewProps;
|
|
177
|
+
signals: GtkSource.View.SignalSignatures;
|
|
178
|
+
constructOnly: GtkSourceViewConstructOnly;
|
|
179
|
+
slotCandidates: {};
|
|
180
|
+
};
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
/** Every GType this namespace can create. A consumer derives its own tag map. */
|
|
184
|
+
export type WidgetGType = keyof Widgets;
|
|
185
|
+
|
|
186
|
+
/** The writable, optional, GObject-keyed property surface of one GType. */
|
|
187
|
+
export type PropsOf<G extends WidgetGType> = Widgets[G]['props'];
|
|
188
|
+
|
|
189
|
+
/** The signal table this package already emits, reached by GType. */
|
|
190
|
+
export type SignalsOf<G extends WidgetGType> = Widgets[G]['signals'];
|
|
191
|
+
|
|
192
|
+
/** The instance type — what a `ref`-shaped prop should infer. */
|
|
193
|
+
export type InstanceOf<G extends WidgetGType> = Widgets[G]['class'];
|
|
194
|
+
|
|
195
|
+
/** Property names that can only be set at construction. */
|
|
196
|
+
export type ConstructOnlyOf<G extends WidgetGType> = Widgets[G]['constructOnly'];
|
|
197
|
+
|
|
198
|
+
/** Candidate child slots — see the note above; curation decides. */
|
|
199
|
+
export type SlotCandidatesOf<G extends WidgetGType> = keyof Widgets[G]['slotCandidates'];
|
|
200
|
+
|
|
201
|
+
/**
|
|
202
|
+
* The same facts as runtime data, for a consumer that CHECKS them.
|
|
203
|
+
*
|
|
204
|
+
* Types are erased, so a spec that asks the installed GTK whether every property
|
|
205
|
+
* here is a writable ParamSpec, every signal resolvable by `GObject.signal_lookup`
|
|
206
|
+
* and every nick resolvable through an enum lookup cannot read the interfaces
|
|
207
|
+
* above. Emitted headlessly with no GTK present, which is exactly why the checking
|
|
208
|
+
* belongs to the consumer and the DATA belongs here.
|
|
209
|
+
*/
|
|
210
|
+
export const SURFACE_PROVENANCE: string;
|
|
211
|
+
|
|
212
|
+
/** Declaration GType -> its own settable properties, as GObject registered them. */
|
|
213
|
+
export const OWN_PROPS: Readonly<Record<string, readonly string[]>>;
|
|
214
|
+
|
|
215
|
+
/** Widget GType -> its own signals. */
|
|
216
|
+
export const OWN_SIGNALS: Readonly<Record<string, readonly string[]>>;
|
|
217
|
+
|
|
218
|
+
/** Widget GType -> every declaration its members come from, self first. */
|
|
219
|
+
export const DECLS: Readonly<Record<string, readonly string[]>>;
|
|
220
|
+
|
|
221
|
+
/** Enum GType -> the nicks this surface offers. */
|
|
222
|
+
export const ENUM_NICKS: Readonly<Record<string, readonly string[]>>;
|
|
223
|
+
|
|
224
|
+
/** Widget GType -> slot name -> the method that may adopt a child there. */
|
|
225
|
+
export const SLOT_CANDIDATES: Readonly<Record<string, Readonly<Record<string, string>>>>;
|
|
226
|
+
|
|
227
|
+
/**
|
|
228
|
+
* `Type.property` -> the release that introduced it.
|
|
229
|
+
*
|
|
230
|
+
* What keeps a runtime cross-check honest across a version gap without an
|
|
231
|
+
* allowlist: a member the installed library lacks is a defect UNLESS the version
|
|
232
|
+
* here is newer than the one running.
|
|
233
|
+
*/
|
|
234
|
+
export const SINCE: Readonly<Record<string, string>>;
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
// The widget vocabulary of GtkSource-4 as runtime data.
|
|
2
|
+
//
|
|
3
|
+
// GENERATED — do not edit. Provenance: GtkSource-4 — dropped empty base(s): GObject.InitiallyUnowned GObject.Object Atk.ImplementorIface
|
|
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 = 'GtkSource-4 — dropped empty base(s): GObject.InitiallyUnowned GObject.Object Atk.ImplementorIface';
|
|
10
|
+
|
|
11
|
+
export const OWN_PROPS = {
|
|
12
|
+
GtkSourceMap: ['font-desc', 'view'],
|
|
13
|
+
GtkSourceStyleSchemeChooser: ['style-scheme'],
|
|
14
|
+
GtkSourceView: ['auto-indent', 'background-pattern', 'highlight-current-line', 'indent-on-tab', 'indent-width', 'insert-spaces-instead-of-tabs', 'right-margin-position', 'show-line-marks', 'show-line-numbers', 'show-right-margin', 'smart-backspace', 'smart-home-end', 'tab-width'],
|
|
15
|
+
};
|
|
16
|
+
|
|
17
|
+
export const OWN_SIGNALS = {
|
|
18
|
+
GtkSourceView: ['change-case', 'change-number', 'join-lines', 'line-mark-activated', 'move-lines', 'move-to-matching-bracket', 'move-words', 'redo', 'show-completion', 'smart-home-end', 'undo'],
|
|
19
|
+
};
|
|
20
|
+
|
|
21
|
+
export const DECLS = {
|
|
22
|
+
GtkSourceCompletionInfo: ['GtkSourceCompletionInfo', 'GtkWindow', 'GtkBin', 'GtkContainer', 'GtkWidget', 'GtkBuildable'],
|
|
23
|
+
GtkSourceMap: ['GtkSourceMap', 'GtkSourceView', 'GtkTextView', 'GtkContainer', 'GtkWidget', 'GtkBuildable', 'GtkScrollable'],
|
|
24
|
+
GtkSourceStyleSchemeChooserButton: ['GtkSourceStyleSchemeChooserButton', 'GtkButton', 'GtkBin', 'GtkContainer', 'GtkWidget', 'GtkActionable', 'GtkActivatable', 'GtkBuildable', 'GtkSourceStyleSchemeChooser'],
|
|
25
|
+
GtkSourceStyleSchemeChooserWidget: ['GtkSourceStyleSchemeChooserWidget', 'GtkBin', 'GtkContainer', 'GtkWidget', 'GtkBuildable', 'GtkSourceStyleSchemeChooser'],
|
|
26
|
+
GtkSourceView: ['GtkSourceView', 'GtkTextView', 'GtkContainer', 'GtkWidget', 'GtkBuildable', 'GtkScrollable'],
|
|
27
|
+
};
|
|
28
|
+
|
|
29
|
+
export const ENUM_NICKS = {
|
|
30
|
+
GtkSourceBackgroundPatternType: ['none', 'grid'],
|
|
31
|
+
GtkSourceBracketMatchType: ['none', 'out-of-range', 'not-found', 'found'],
|
|
32
|
+
GtkSourceChangeCaseType: ['lower', 'upper', 'toggle', 'title'],
|
|
33
|
+
GtkSourceCompressionType: ['none', 'gzip'],
|
|
34
|
+
GtkSourceGutterRendererAlignmentMode: ['cell', 'first', 'last'],
|
|
35
|
+
GtkSourceNewlineType: ['lf', 'cr', 'cr-lf'],
|
|
36
|
+
GtkSourceSmartHomeEndType: ['disabled', 'before', 'after', 'always'],
|
|
37
|
+
GtkSourceViewGutterPosition: ['lines', 'marks'],
|
|
38
|
+
};
|
|
39
|
+
|
|
40
|
+
export const SLOT_CANDIDATES = {
|
|
41
|
+
GtkSourceMap: {
|
|
42
|
+
'view': 'set_view',
|
|
43
|
+
},
|
|
44
|
+
};
|
|
45
|
+
|
|
46
|
+
export const SINCE = {
|
|
47
|
+
'GtkSourceStyleSchemeChooser.style-scheme': '3.16',
|
|
48
|
+
'GtkSourceView.background-pattern': '3.16',
|
|
49
|
+
'GtkSourceView.smart-backspace': '3.18',
|
|
50
|
+
'GtkSourceView.smart-home-end': '2.0',
|
|
51
|
+
};
|
package/package.json
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@girs/gtksource-4",
|
|
3
|
-
"version": "4.
|
|
4
|
-
"
|
|
5
|
-
"description": "GJS TypeScript type definitions for GtkSource-4, generated from library version 4.0.0",
|
|
3
|
+
"version": "4.2.0",
|
|
4
|
+
"description": "GJS TypeScript type definitions for GtkSource-4",
|
|
6
5
|
"type": "module",
|
|
7
6
|
"module": "gtksource-4.js",
|
|
8
7
|
"main": "gtksource-4.js",
|
|
@@ -17,6 +16,11 @@
|
|
|
17
16
|
"import": "./gtksource-4-import.js",
|
|
18
17
|
"default": "./gtksource-4-import.js"
|
|
19
18
|
},
|
|
19
|
+
"./surface": {
|
|
20
|
+
"types": "./gtksource-4-surface.d.ts",
|
|
21
|
+
"import": "./gtksource-4-surface.js",
|
|
22
|
+
"default": "./gtksource-4-surface.js"
|
|
23
|
+
},
|
|
20
24
|
"./gtksource-4": {
|
|
21
25
|
"types": "./gtksource-4.d.ts",
|
|
22
26
|
"import": "./gtksource-4.js",
|
|
@@ -32,20 +36,20 @@
|
|
|
32
36
|
"test": "tsc --project tsconfig.json"
|
|
33
37
|
},
|
|
34
38
|
"dependencies": {
|
|
35
|
-
"@girs/gjs": "^4.
|
|
36
|
-
"@girs/gtk-3.0": "^4.
|
|
37
|
-
"@girs/xlib-2.0": "^4.
|
|
38
|
-
"@girs/gdk-3.0": "^4.
|
|
39
|
-
"@girs/cairo-1.0": "^4.
|
|
40
|
-
"@girs/gobject-2.0": "^4.
|
|
41
|
-
"@girs/glib-2.0": "^4.
|
|
42
|
-
"@girs/pango-1.0": "^4.
|
|
43
|
-
"@girs/harfbuzz-0.0": "^4.
|
|
44
|
-
"@girs/freetype2-2.0": "^4.
|
|
45
|
-
"@girs/gio-2.0": "^4.
|
|
46
|
-
"@girs/gmodule-2.0": "^4.
|
|
47
|
-
"@girs/gdkpixbuf-2.0": "^4.
|
|
48
|
-
"@girs/atk-1.0": "^4.
|
|
39
|
+
"@girs/gjs": "^4.2.0",
|
|
40
|
+
"@girs/gtk-3.0": "^4.2.0",
|
|
41
|
+
"@girs/xlib-2.0": "^4.2.0",
|
|
42
|
+
"@girs/gdk-3.0": "^4.2.0",
|
|
43
|
+
"@girs/cairo-1.0": "^4.2.0",
|
|
44
|
+
"@girs/gobject-2.0": "^4.2.0",
|
|
45
|
+
"@girs/glib-2.0": "^4.2.0",
|
|
46
|
+
"@girs/pango-1.0": "^4.2.0",
|
|
47
|
+
"@girs/harfbuzz-0.0": "^4.2.0",
|
|
48
|
+
"@girs/freetype2-2.0": "^4.2.0",
|
|
49
|
+
"@girs/gio-2.0": "^4.2.0",
|
|
50
|
+
"@girs/gmodule-2.0": "^4.2.0",
|
|
51
|
+
"@girs/gdkpixbuf-2.0": "^4.2.0",
|
|
52
|
+
"@girs/atk-1.0": "^4.2.0" },
|
|
49
53
|
"devDependencies": {
|
|
50
54
|
"typescript": "*"
|
|
51
55
|
},
|