@doist/typist 1.4.2 → 1.4.4

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/CHANGELOG.md CHANGED
@@ -1,3 +1,15 @@
1
+ ## [1.4.4](https://github.com/Doist/typist/compare/v1.4.3...v1.4.4) (2023-08-04)
2
+
3
+ ### Bug Fixes
4
+
5
+ - **deps:** update gfm autolink literal packages to v2 (major) ([#378](https://github.com/Doist/typist/issues/378)) ([d5b0e37](https://github.com/Doist/typist/commit/d5b0e379673e94cacb3f1e78557225f20fb9c9e6))
6
+
7
+ ## [1.4.3](https://github.com/Doist/typist/compare/v1.4.2...v1.4.3) (2023-08-04)
8
+
9
+ ### Bug Fixes
10
+
11
+ - **deps:** update gfm strikethrough packages to v2 (major) ([#379](https://github.com/Doist/typist/issues/379)) ([6b99f9d](https://github.com/Doist/typist/commit/6b99f9dc3b2f77b864f31e34a12918ea21d78d90))
12
+
1
13
  ## [1.4.2](https://github.com/Doist/typist/compare/v1.4.1...v1.4.2) (2023-08-04)
2
14
 
3
15
  ### Bug Fixes
@@ -20,7 +20,7 @@ function remarkAutolinkLiteral() {
20
20
  list.push(value);
21
21
  }
22
22
  add('micromarkExtensions', gfmAutolinkLiteral);
23
- add('fromMarkdownExtensions', gfmAutolinkLiteralFromMarkdown);
24
- add('toMarkdownExtensions', gfmAutolinkLiteralToMarkdown);
23
+ add('fromMarkdownExtensions', gfmAutolinkLiteralFromMarkdown());
24
+ add('toMarkdownExtensions', gfmAutolinkLiteralToMarkdown());
25
25
  }
26
26
  export { remarkAutolinkLiteral };
@@ -20,7 +20,7 @@ function remarkStrikethrough(options = {}) {
20
20
  list.push(value);
21
21
  }
22
22
  add('micromarkExtensions', gfmStrikethrough(options));
23
- add('fromMarkdownExtensions', gfmStrikethroughFromMarkdown);
24
- add('toMarkdownExtensions', gfmStrikethroughToMarkdown);
23
+ add('fromMarkdownExtensions', gfmStrikethroughFromMarkdown());
24
+ add('toMarkdownExtensions', gfmStrikethroughToMarkdown());
25
25
  }
26
26
  export { remarkStrikethrough };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@doist/typist",
3
3
  "description": "The mighty Tiptap-based rich-text editor React component that powers Doist products.",
4
- "version": "1.4.2",
4
+ "version": "1.4.4",
5
5
  "license": "MIT",
6
6
  "homepage": "https://typist.doist.dev/",
7
7
  "repository": "https://github.com/Doist/typist",
@@ -140,10 +140,10 @@
140
140
  "emoji-regex": "^10.2.1",
141
141
  "hast-util-is-element": "^2.1.0",
142
142
  "lodash-es": "^4.17.21",
143
- "mdast-util-gfm-autolink-literal": "^1.0.0",
144
- "mdast-util-gfm-strikethrough": "^1.0.0",
145
- "micromark-extension-gfm-autolink-literal": "^1.0.0",
146
- "micromark-extension-gfm-strikethrough": "^1.0.0",
143
+ "mdast-util-gfm-autolink-literal": "^2.0.0",
144
+ "mdast-util-gfm-strikethrough": "^2.0.0",
145
+ "micromark-extension-gfm-autolink-literal": "^2.0.0",
146
+ "micromark-extension-gfm-strikethrough": "^2.0.0",
147
147
  "react": "^17.0.0 || ^18.0.0",
148
148
  "react-dom": "^17.0.0 || ^18.0.0",
149
149
  "rehype": "^12.0.0",