@myst-theme/jupyter 0.17.1 → 1.0.0
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/dist/BinderBadge.js +1 -1
- package/dist/ConnectionStatusTray.d.ts.map +1 -1
- package/dist/ConnectionStatusTray.js +3 -3
- package/dist/ErrorTray.d.ts.map +1 -1
- package/dist/ErrorTray.js +3 -3
- package/dist/active.d.ts +13 -0
- package/dist/active.d.ts.map +1 -0
- package/dist/active.js +67 -0
- package/dist/block.js +2 -2
- package/dist/components.d.ts.map +1 -1
- package/dist/components.js +2 -2
- package/dist/controls/Buttons.d.ts.map +1 -1
- package/dist/controls/Buttons.js +12 -12
- package/dist/controls/NotebookToolbar.js +2 -2
- package/dist/controls/Spinner.js +1 -1
- package/dist/decoration.d.ts.map +1 -1
- package/dist/decoration.js +8 -6
- package/dist/embed.d.ts.map +1 -1
- package/dist/embed.js +10 -4
- package/dist/error.js +1 -1
- package/dist/execute/utils.js +4 -4
- package/dist/figure.d.ts.map +1 -1
- package/dist/figure.js +13 -6
- package/dist/jupyter.d.ts +9 -3
- package/dist/jupyter.d.ts.map +1 -1
- package/dist/jupyter.js +26 -65
- package/dist/output.d.ts +1 -8
- package/dist/output.d.ts.map +1 -1
- package/dist/output.js +19 -45
- package/dist/output.spec.d.ts +2 -0
- package/dist/output.spec.d.ts.map +1 -0
- package/dist/output.spec.js +133 -0
- package/dist/outputs.d.ts +5 -0
- package/dist/outputs.d.ts.map +1 -0
- package/dist/outputs.js +43 -0
- package/dist/passive.d.ts +20 -0
- package/dist/passive.d.ts.map +1 -0
- package/dist/passive.js +28 -0
- package/dist/providers.d.ts +9 -0
- package/dist/providers.d.ts.map +1 -1
- package/dist/providers.js +11 -0
- package/dist/renderers.d.ts +2 -0
- package/dist/renderers.d.ts.map +1 -1
- package/dist/renderers.js +2 -0
- package/dist/safe.d.ts +2 -3
- package/dist/safe.d.ts.map +1 -1
- package/dist/safe.js +6 -13
- package/dist/stream.js +1 -1
- package/package.json +8 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@myst-theme/jupyter",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "1.0.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"exports": "./dist/index.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"@curvenote/ansi-to-react": "^7.0.0",
|
|
26
26
|
"@headlessui/react": "^1.7.15",
|
|
27
27
|
"@heroicons/react": "^2.0.18",
|
|
28
|
-
"@myst-theme/providers": "^0.
|
|
28
|
+
"@myst-theme/providers": "^1.0.0",
|
|
29
29
|
"@scienceicons/react": "^0.0.13",
|
|
30
30
|
"buffer": "^6.0.3",
|
|
31
31
|
"classnames": "^2.5.1",
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
"myst-frontmatter": "^1.7.9",
|
|
36
36
|
"myst-spec": "^0.0.5",
|
|
37
37
|
"myst-spec-ext": "^1.8.1",
|
|
38
|
-
"myst-to-react": "^0.
|
|
38
|
+
"myst-to-react": "^1.0.0",
|
|
39
39
|
"nanoid": "^4.0.2",
|
|
40
40
|
"nbtx": "^0.2.3",
|
|
41
41
|
"react-syntax-highlighter": "^15.5.0",
|
|
@@ -45,6 +45,11 @@
|
|
|
45
45
|
"thebe-react": "0.5.0",
|
|
46
46
|
"unist-util-select": "^4.0.3"
|
|
47
47
|
},
|
|
48
|
+
"devDependencies": {
|
|
49
|
+
"@types/react": "^18.0.0",
|
|
50
|
+
"@types/react-dom": "^18.0.0",
|
|
51
|
+
"vitest": "^1.0.0"
|
|
52
|
+
},
|
|
48
53
|
"peerDependencies": {
|
|
49
54
|
"@types/react": "^16.8 || ^17.0 || ^18.0",
|
|
50
55
|
"@types/react-dom": "^16.8 || ^17.0 || ^18.0",
|