@girs/mx-1.0 1.4.7-4.0.0-beta.8 → 1.4.7-4.0.0-beta.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.
Files changed (3) hide show
  1. package/README.md +1 -1
  2. package/mx-1.0.d.ts +68 -0
  3. package/package.json +20 -20
package/README.md CHANGED
@@ -5,7 +5,7 @@
5
5
  ![downloads/week](https://img.shields.io/npm/dw/@girs/mx-1.0)
6
6
 
7
7
 
8
- GJS TypeScript type definitions for Mx-1.0, generated from library version 1.4.7 using [ts-for-gir](https://github.com/gjsify/ts-for-gir) v4.0.0-beta.8.
8
+ GJS TypeScript type definitions for Mx-1.0, generated from library version 1.4.7 using [ts-for-gir](https://github.com/gjsify/ts-for-gir) v4.0.0-beta.9.
9
9
 
10
10
 
11
11
  ## Install
package/mx-1.0.d.ts CHANGED
@@ -32,12 +32,20 @@ export namespace Mx {
32
32
  * Mx-1.0
33
33
  */
34
34
 
35
+ export namespace ActorManagerError {
36
+ export const $gtype: GObject.GType<ActorManagerError>;
37
+ }
38
+
35
39
  enum ActorManagerError {
36
40
  CONTAINER_DESTROYED,
37
41
  ACTOR_DESTROYED,
38
42
  CREATION_FAILED,
39
43
  UNKNOWN_OPERATION,
40
44
  }
45
+ export namespace Align {
46
+ export const $gtype: GObject.GType<Align>;
47
+ }
48
+
41
49
  /**
42
50
  * Set the alignment of the item
43
51
  */
@@ -55,11 +63,19 @@ export namespace Mx {
55
63
  */
56
64
  END,
57
65
  }
66
+ export namespace DragAxis {
67
+ export const $gtype: GObject.GType<DragAxis>;
68
+ }
69
+
58
70
  enum DragAxis {
59
71
  NONE,
60
72
  X,
61
73
  Y,
62
74
  }
75
+ export namespace FocusDirection {
76
+ export const $gtype: GObject.GType<FocusDirection>;
77
+ }
78
+
63
79
  enum FocusDirection {
64
80
  OUT,
65
81
  UP,
@@ -69,6 +85,10 @@ export namespace Mx {
69
85
  NEXT,
70
86
  PREVIOUS,
71
87
  }
88
+ export namespace FocusHint {
89
+ export const $gtype: GObject.GType<FocusHint>;
90
+ }
91
+
72
92
  enum FocusHint {
73
93
  FIRST,
74
94
  LAST,
@@ -78,6 +98,10 @@ export namespace Mx {
78
98
  FROM_LEFT,
79
99
  FROM_RIGHT,
80
100
  }
101
+ export namespace FontWeight {
102
+ export const $gtype: GObject.GType<FontWeight>;
103
+ }
104
+
81
105
  /**
82
106
  * Support values of font weight
83
107
  */
@@ -119,6 +143,10 @@ export namespace Mx {
119
143
  static quark(): GLib.Quark;
120
144
  }
121
145
 
146
+ export namespace ImageScaleMode {
147
+ export const $gtype: GObject.GType<ImageScaleMode>;
148
+ }
149
+
122
150
  /**
123
151
  * Defines the scaling mode of an image.
124
152
  */
@@ -136,17 +164,29 @@ export namespace Mx {
136
164
  */
137
165
  CROP,
138
166
  }
167
+ export namespace KineticScrollViewState {
168
+ export const $gtype: GObject.GType<KineticScrollViewState>;
169
+ }
170
+
139
171
  enum KineticScrollViewState {
140
172
  IDLE,
141
173
  PANNING,
142
174
  SCROLLING,
143
175
  CLAMPING,
144
176
  }
177
+ export namespace LongPressAction {
178
+ export const $gtype: GObject.GType<LongPressAction>;
179
+ }
180
+
145
181
  enum LongPressAction {
146
182
  QUERY,
147
183
  ACTION,
148
184
  CANCEL,
149
185
  }
186
+ export namespace Orientation {
187
+ export const $gtype: GObject.GType<Orientation>;
188
+ }
189
+
150
190
  /**
151
191
  * Defines the orientation of various layout widgets.
152
192
  */
@@ -160,6 +200,10 @@ export namespace Mx {
160
200
  */
161
201
  VERTICAL,
162
202
  }
203
+ export namespace Position {
204
+ export const $gtype: GObject.GType<Position>;
205
+ }
206
+
163
207
  /**
164
208
  * Defines the position of an interface element.
165
209
  */
@@ -181,6 +225,10 @@ export namespace Mx {
181
225
  */
182
226
  LEFT,
183
227
  }
228
+ export namespace ScrollPolicy {
229
+ export const $gtype: GObject.GType<ScrollPolicy>;
230
+ }
231
+
184
232
  /**
185
233
  * Defines the scrolling policy of scrollable widgets.
186
234
  */
@@ -202,9 +250,17 @@ export namespace Mx {
202
250
  */
203
251
  BOTH,
204
252
  }
253
+ export namespace StyleError {
254
+ export const $gtype: GObject.GType<StyleError>;
255
+ }
256
+
205
257
  enum StyleError {
206
258
  INVALID_FILE,
207
259
  }
260
+ export namespace TooltipAnimation {
261
+ export const $gtype: GObject.GType<TooltipAnimation>;
262
+ }
263
+
208
264
  /**
209
265
  * Defines the animation when tooltips are shown and hidden.
210
266
  */
@@ -218,6 +274,10 @@ export namespace Mx {
218
274
  */
219
275
  FADE,
220
276
  }
277
+ export namespace WindowRotation {
278
+ export const $gtype: GObject.GType<WindowRotation>;
279
+ }
280
+
221
281
  /**
222
282
  * Defines the clock-wise rotation angle of a window.
223
283
  */
@@ -322,10 +382,18 @@ export namespace Mx {
322
382
  interface ClipboardCallbackFunc {
323
383
  (clipboard: Clipboard, text: string): void;
324
384
  }
385
+ export namespace ApplicationFlags {
386
+ export const $gtype: GObject.GType<ApplicationFlags>;
387
+ }
388
+
325
389
  enum ApplicationFlags {
326
390
  SINGLE_INSTANCE,
327
391
  KEEP_ALIVE,
328
392
  }
393
+ export namespace StyleChangedFlags {
394
+ export const $gtype: GObject.GType<StyleChangedFlags>;
395
+ }
396
+
329
397
  enum StyleChangedFlags {
330
398
  /**
331
399
  * No flag set
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@girs/mx-1.0",
3
- "version": "1.4.7-4.0.0-beta.8",
3
+ "version": "1.4.7-4.0.0-beta.9",
4
4
  "description": "GJS TypeScript type definitions for Mx-1.0, generated from library version 1.4.7",
5
5
  "type": "module",
6
6
  "module": "mx-1.0.js",
@@ -31,25 +31,25 @@
31
31
  "test": "tsc --project tsconfig.json"
32
32
  },
33
33
  "dependencies": {
34
- "@girs/atk-1.0": "^2.52.0-4.0.0-beta.8",
35
- "@girs/cairo-1.0": "^1.0.0-4.0.0-beta.8",
36
- "@girs/clutter-1.0": "^1.26.5-4.0.0-beta.8",
37
- "@girs/cogl-1.0": "^1.0.0-4.0.0-beta.8",
38
- "@girs/coglpango-1.0": "^1.0.0-4.0.0-beta.8",
39
- "@girs/fontconfig-2.0": "^2.0.0-4.0.0-beta.8",
40
- "@girs/freetype2-2.0": "^2.0.0-4.0.0-beta.8",
41
- "@girs/gio-2.0": "^2.80.2-4.0.0-beta.8",
42
- "@girs/gjs": "^4.0.0-beta.8",
43
- "@girs/gl-1.0": "^1.0.0-4.0.0-beta.8",
44
- "@girs/glib-2.0": "^2.80.2-4.0.0-beta.8",
45
- "@girs/gmodule-2.0": "^2.0.0-4.0.0-beta.8",
46
- "@girs/gobject-2.0": "^2.80.2-4.0.0-beta.8",
47
- "@girs/harfbuzz-0.0": "^8.1.1-4.0.0-beta.8",
48
- "@girs/json-1.0": "^1.8.0-4.0.0-beta.8",
49
- "@girs/pango-1.0": "^1.52.2-4.0.0-beta.8",
50
- "@girs/pangocairo-1.0": "^1.0.0-4.0.0-beta.8",
51
- "@girs/pangofc-1.0": "^1.0.0-4.0.0-beta.8",
52
- "@girs/pangoft2-1.0": "^1.0.0-4.0.0-beta.8"
34
+ "@girs/atk-1.0": "^2.52.0-4.0.0-beta.9",
35
+ "@girs/cairo-1.0": "^1.0.0-4.0.0-beta.9",
36
+ "@girs/clutter-1.0": "^1.26.5-4.0.0-beta.9",
37
+ "@girs/cogl-1.0": "^1.0.0-4.0.0-beta.9",
38
+ "@girs/coglpango-1.0": "^1.0.0-4.0.0-beta.9",
39
+ "@girs/fontconfig-2.0": "^2.0.0-4.0.0-beta.9",
40
+ "@girs/freetype2-2.0": "^2.0.0-4.0.0-beta.9",
41
+ "@girs/gio-2.0": "^2.80.2-4.0.0-beta.9",
42
+ "@girs/gjs": "^4.0.0-beta.9",
43
+ "@girs/gl-1.0": "^1.0.0-4.0.0-beta.9",
44
+ "@girs/glib-2.0": "^2.80.2-4.0.0-beta.9",
45
+ "@girs/gmodule-2.0": "^2.0.0-4.0.0-beta.9",
46
+ "@girs/gobject-2.0": "^2.80.2-4.0.0-beta.9",
47
+ "@girs/harfbuzz-0.0": "^8.1.1-4.0.0-beta.9",
48
+ "@girs/json-1.0": "^1.8.0-4.0.0-beta.9",
49
+ "@girs/pango-1.0": "^1.52.2-4.0.0-beta.9",
50
+ "@girs/pangocairo-1.0": "^1.0.0-4.0.0-beta.9",
51
+ "@girs/pangofc-1.0": "^1.0.0-4.0.0-beta.9",
52
+ "@girs/pangoft2-1.0": "^1.0.0-4.0.0-beta.9"
53
53
  },
54
54
  "devDependencies": {
55
55
  "typescript": "*"