myst-demo 1.1.3 → 1.2.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 (2) hide show
  1. package/dist/index.js +2 -2
  2. package/package.json +2 -2
package/dist/index.js CHANGED
@@ -95,7 +95,7 @@ function parse(text, defaultFrontmatter, options) {
95
95
  const { mystToHtml } = yield import('myst-to-html');
96
96
  const { buttonRole } = yield import('myst-ext-button');
97
97
  const { cardDirective } = yield import('myst-ext-card');
98
- const { gridDirective } = yield import('myst-ext-grid');
98
+ const { gridDirectives } = yield import('myst-ext-grid');
99
99
  const { tabDirectives } = yield import('myst-ext-tabs');
100
100
  const { proofDirective } = yield import('myst-ext-proof');
101
101
  const { exerciseDirectives } = yield import('myst-ext-exercise');
@@ -104,7 +104,7 @@ function parse(text, defaultFrontmatter, options) {
104
104
  markdownit: { linkify: true },
105
105
  directives: [
106
106
  cardDirective,
107
- gridDirective,
107
+ ...gridDirectives,
108
108
  ...tabDirectives,
109
109
  proofDirective,
110
110
  ...exerciseDirectives,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "myst-demo",
3
- "version": "1.1.3",
3
+ "version": "1.2.0",
4
4
  "type": "module",
5
5
  "exports": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
@@ -42,7 +42,7 @@
42
42
  "myst-to-docx": "^1.0.14",
43
43
  "myst-to-html": "^1.5.15",
44
44
  "myst-to-jats": "^1.0.34",
45
- "myst-to-react": "^1.1.3",
45
+ "myst-to-react": "^1.2.0",
46
46
  "myst-to-tex": "^1.0.41",
47
47
  "myst-to-typst": "^0.0.33",
48
48
  "myst-transforms": "^1.3.37",