@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.
Files changed (49) hide show
  1. package/dist/BinderBadge.js +1 -1
  2. package/dist/ConnectionStatusTray.d.ts.map +1 -1
  3. package/dist/ConnectionStatusTray.js +3 -3
  4. package/dist/ErrorTray.d.ts.map +1 -1
  5. package/dist/ErrorTray.js +3 -3
  6. package/dist/active.d.ts +13 -0
  7. package/dist/active.d.ts.map +1 -0
  8. package/dist/active.js +67 -0
  9. package/dist/block.js +2 -2
  10. package/dist/components.d.ts.map +1 -1
  11. package/dist/components.js +2 -2
  12. package/dist/controls/Buttons.d.ts.map +1 -1
  13. package/dist/controls/Buttons.js +12 -12
  14. package/dist/controls/NotebookToolbar.js +2 -2
  15. package/dist/controls/Spinner.js +1 -1
  16. package/dist/decoration.d.ts.map +1 -1
  17. package/dist/decoration.js +8 -6
  18. package/dist/embed.d.ts.map +1 -1
  19. package/dist/embed.js +10 -4
  20. package/dist/error.js +1 -1
  21. package/dist/execute/utils.js +4 -4
  22. package/dist/figure.d.ts.map +1 -1
  23. package/dist/figure.js +13 -6
  24. package/dist/jupyter.d.ts +9 -3
  25. package/dist/jupyter.d.ts.map +1 -1
  26. package/dist/jupyter.js +26 -65
  27. package/dist/output.d.ts +1 -8
  28. package/dist/output.d.ts.map +1 -1
  29. package/dist/output.js +19 -45
  30. package/dist/output.spec.d.ts +2 -0
  31. package/dist/output.spec.d.ts.map +1 -0
  32. package/dist/output.spec.js +133 -0
  33. package/dist/outputs.d.ts +5 -0
  34. package/dist/outputs.d.ts.map +1 -0
  35. package/dist/outputs.js +43 -0
  36. package/dist/passive.d.ts +20 -0
  37. package/dist/passive.d.ts.map +1 -0
  38. package/dist/passive.js +28 -0
  39. package/dist/providers.d.ts +9 -0
  40. package/dist/providers.d.ts.map +1 -1
  41. package/dist/providers.js +11 -0
  42. package/dist/renderers.d.ts +2 -0
  43. package/dist/renderers.d.ts.map +1 -1
  44. package/dist/renderers.js +2 -0
  45. package/dist/safe.d.ts +2 -3
  46. package/dist/safe.d.ts.map +1 -1
  47. package/dist/safe.js +6 -13
  48. package/dist/stream.js +1 -1
  49. package/package.json +8 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@myst-theme/jupyter",
3
- "version": "0.17.1",
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.17.1",
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.17.1",
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",