@basthon/gui-base 0.36.8 → 0.36.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.
- package/lib/main.d.ts +2 -2
- package/lib/main.js +1 -1
- package/package.json +4 -4
package/lib/main.d.ts
CHANGED
|
@@ -40,10 +40,10 @@ export declare class GUIBase {
|
|
|
40
40
|
/**
|
|
41
41
|
* Ask the user to select a choice.
|
|
42
42
|
*/
|
|
43
|
-
select(title: string, message: string,
|
|
43
|
+
select(title: string, message: string, choices: {
|
|
44
44
|
text: string;
|
|
45
45
|
handler: () => void;
|
|
46
|
-
}[]): void;
|
|
46
|
+
}[], textCancel: string, callbackCancel: (() => void)): void;
|
|
47
47
|
/**
|
|
48
48
|
* The error notification system.
|
|
49
49
|
*/
|
package/lib/main.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@basthon/gui-base",
|
|
3
|
-
"version": "0.36.
|
|
3
|
+
"version": "0.36.9",
|
|
4
4
|
"description": "Basthon - Base GUI",
|
|
5
5
|
"homepage": "https://basthon.fr",
|
|
6
6
|
"bugs": {
|
|
@@ -25,8 +25,8 @@
|
|
|
25
25
|
"clean": "rm -rf lib/"
|
|
26
26
|
},
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@basthon/kernel-base": "^0.36.
|
|
29
|
-
"@basthon/kernel-loader": "^0.36.
|
|
28
|
+
"@basthon/kernel-base": "^0.36.9",
|
|
29
|
+
"@basthon/kernel-loader": "^0.36.9",
|
|
30
30
|
"js-base64": "^3.7.2",
|
|
31
31
|
"pako": "^2.0.4",
|
|
32
32
|
"promise-delegate": "^1.0.1"
|
|
@@ -40,5 +40,5 @@
|
|
|
40
40
|
"publishConfig": {
|
|
41
41
|
"access": "public"
|
|
42
42
|
},
|
|
43
|
-
"gitHead": "
|
|
43
|
+
"gitHead": "2ac9c2f46fbc59de60d424534463748ad9da9f5c"
|
|
44
44
|
}
|