@difizen/libro-code-cell 0.3.46 → 0.3.47
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/package.json +4 -4
- package/src/code-cell-view.tsx +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@difizen/libro-code-cell",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.47",
|
|
4
4
|
"description": "",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"libro",
|
|
@@ -32,9 +32,9 @@
|
|
|
32
32
|
"src"
|
|
33
33
|
],
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@difizen/libro-code-editor": "^0.3.
|
|
36
|
-
"@difizen/libro-common": "^0.3.
|
|
37
|
-
"@difizen/libro-core": "^0.3.
|
|
35
|
+
"@difizen/libro-code-editor": "^0.3.47",
|
|
36
|
+
"@difizen/libro-common": "^0.3.47",
|
|
37
|
+
"@difizen/libro-core": "^0.3.47",
|
|
38
38
|
"@difizen/mana-app": "latest",
|
|
39
39
|
"@difizen/mana-l10n": "latest",
|
|
40
40
|
"highlight.js": "^11.11.1"
|
package/src/code-cell-view.tsx
CHANGED
|
@@ -210,7 +210,7 @@ export class LibroCodeCellView extends LibroEditableExecutableCellView {
|
|
|
210
210
|
cell: this,
|
|
211
211
|
toJSON: () => ({ cellId: this.id }),
|
|
212
212
|
})
|
|
213
|
-
.then(async (outputArea) => {
|
|
213
|
+
.then(async (outputArea: LibroOutputArea) => {
|
|
214
214
|
this.outputArea = outputArea;
|
|
215
215
|
const output = this.outputs;
|
|
216
216
|
if (isOutput(output)) {
|