@girs/notify-0.7 0.8.1-3.0.0 → 0.8.2-3.0.3
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 +5 -1
- package/notify-0.7.d.cts +8 -1
- package/notify-0.7.d.ts +8 -1
- package/package.json +9 -9
package/README.md
CHANGED
|
@@ -1,7 +1,11 @@
|
|
|
1
1
|
|
|
2
2
|
# Notify-0.7
|
|
3
3
|
|
|
4
|
-
|
|
4
|
+

|
|
5
|
+

|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
GJS TypeScript type definitions for Notify-0.7, generated from library version 0.8.2 using [ts-for-gir](https://github.com/gjsify/ts-for-gir) v3.0.3.
|
|
5
9
|
|
|
6
10
|
libnotify is a library that sends desktop notifications to a notification daemon, as defined in the Desktop Notifications spec. These notifications can be used to inform the user about an event or display some form of information without getting in the user's way.
|
|
7
11
|
|
package/notify-0.7.d.cts
CHANGED
|
@@ -36,7 +36,7 @@ export enum ClosedReason {
|
|
|
36
36
|
DISMISSED,
|
|
37
37
|
/**
|
|
38
38
|
* It has been closed by a call to
|
|
39
|
-
* [method`
|
|
39
|
+
* [method`NotifyNotification`.close].
|
|
40
40
|
*/
|
|
41
41
|
API_REQUEST,
|
|
42
42
|
/**
|
|
@@ -403,6 +403,13 @@ export interface Notification {
|
|
|
403
403
|
|
|
404
404
|
/**
|
|
405
405
|
* A passive pop-up notification.
|
|
406
|
+
*
|
|
407
|
+
* #NotifyNotification represents a passive pop-up notification. It can
|
|
408
|
+
* contain summary text, body text, and an icon, as well as hints specifying
|
|
409
|
+
* how the notification should be presented. The notification is rendered
|
|
410
|
+
* by a notification daemon, and may present the notification in any number
|
|
411
|
+
* of ways. As such, there is a clear separation of content and presentation,
|
|
412
|
+
* and this API enforces that.
|
|
406
413
|
* @class
|
|
407
414
|
*/
|
|
408
415
|
export class Notification extends GObject.Object {
|
package/notify-0.7.d.ts
CHANGED
|
@@ -38,7 +38,7 @@ enum ClosedReason {
|
|
|
38
38
|
DISMISSED,
|
|
39
39
|
/**
|
|
40
40
|
* It has been closed by a call to
|
|
41
|
-
* [method`
|
|
41
|
+
* [method`NotifyNotification`.close].
|
|
42
42
|
*/
|
|
43
43
|
API_REQUEST,
|
|
44
44
|
/**
|
|
@@ -405,6 +405,13 @@ interface Notification {
|
|
|
405
405
|
|
|
406
406
|
/**
|
|
407
407
|
* A passive pop-up notification.
|
|
408
|
+
*
|
|
409
|
+
* #NotifyNotification represents a passive pop-up notification. It can
|
|
410
|
+
* contain summary text, body text, and an icon, as well as hints specifying
|
|
411
|
+
* how the notification should be presented. The notification is rendered
|
|
412
|
+
* by a notification daemon, and may present the notification in any number
|
|
413
|
+
* of ways. As such, there is a clear separation of content and presentation,
|
|
414
|
+
* and this API enforces that.
|
|
408
415
|
* @class
|
|
409
416
|
*/
|
|
410
417
|
class Notification extends GObject.Object {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@girs/notify-0.7",
|
|
3
|
-
"version": "0.8.
|
|
4
|
-
"description": "GJS TypeScript type definitions for Notify-0.7, generated from library version 0.8.
|
|
3
|
+
"version": "0.8.2-3.0.3",
|
|
4
|
+
"description": "GJS TypeScript type definitions for Notify-0.7, generated from library version 0.8.2",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "notify-0.7.js",
|
|
7
7
|
"main": "notify-0.7.js",
|
|
@@ -31,15 +31,15 @@
|
|
|
31
31
|
"test:cjs": "tsc --noEmit notify-0.7.d.cts"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@girs/
|
|
35
|
-
"@girs/
|
|
36
|
-
"@girs/
|
|
37
|
-
"@girs/
|
|
38
|
-
"@girs/
|
|
39
|
-
"@girs/
|
|
34
|
+
"@girs/gdkpixbuf-2.0": "^2.0.0-3.0.3",
|
|
35
|
+
"@girs/gio-2.0": "^2.76.1-3.0.3",
|
|
36
|
+
"@girs/gjs": "^3.0.3",
|
|
37
|
+
"@girs/glib-2.0": "^2.76.1-3.0.3",
|
|
38
|
+
"@girs/gmodule-2.0": "^2.0.0-3.0.3",
|
|
39
|
+
"@girs/gobject-2.0": "^2.76.1-3.0.3"
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
|
-
"typescript": "
|
|
42
|
+
"typescript": "*"
|
|
43
43
|
},
|
|
44
44
|
"keywords": [
|
|
45
45
|
"Gir",
|