@basthon/gui-base 0.38.2 → 0.38.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/lib/main.d.ts +2 -2
- package/package.json +5 -5
package/lib/main.d.ts
CHANGED
|
@@ -70,11 +70,11 @@ export declare class GUIBase {
|
|
|
70
70
|
/**
|
|
71
71
|
* Get the content (script or notebook content).
|
|
72
72
|
*/
|
|
73
|
-
|
|
73
|
+
content(): string;
|
|
74
74
|
/**
|
|
75
75
|
* Set the content (script or notebook content).
|
|
76
76
|
*/
|
|
77
|
-
|
|
77
|
+
setContent(content: string): void;
|
|
78
78
|
/**
|
|
79
79
|
* Loading the content from query string (ipynb=/script= or from=).
|
|
80
80
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@basthon/gui-base",
|
|
3
|
-
"version": "0.38.
|
|
3
|
+
"version": "0.38.3",
|
|
4
4
|
"description": "Basthon - Base GUI",
|
|
5
5
|
"homepage": "https://basthon.fr",
|
|
6
6
|
"bugs": {
|
|
@@ -25,9 +25,9 @@
|
|
|
25
25
|
"clean": "rm -rf lib/"
|
|
26
26
|
},
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@basthon/checkpoints": "^0.38.
|
|
29
|
-
"@basthon/kernel-base": "^0.38.
|
|
30
|
-
"@basthon/kernel-loader": "^0.38.
|
|
28
|
+
"@basthon/checkpoints": "^0.38.3",
|
|
29
|
+
"@basthon/kernel-base": "^0.38.3",
|
|
30
|
+
"@basthon/kernel-loader": "^0.38.3",
|
|
31
31
|
"js-base64": "^3.7.2",
|
|
32
32
|
"pako": "^2.0.4",
|
|
33
33
|
"promise-delegate": "^1.0.1"
|
|
@@ -41,5 +41,5 @@
|
|
|
41
41
|
"publishConfig": {
|
|
42
42
|
"access": "public"
|
|
43
43
|
},
|
|
44
|
-
"gitHead": "
|
|
44
|
+
"gitHead": "193136a6ba876d31b2960d72fb8325fddaa24af1"
|
|
45
45
|
}
|