@doist/typist 1.4.5 → 1.4.7
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.7](https://github.com/Doist/typist/compare/v1.4.6...v1.4.7) (2023-08-24)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
- **deps:** update tiptap packages to v2.1.7 ([#407](https://github.com/Doist/typist/issues/407)) ([0df2f58](https://github.com/Doist/typist/commit/0df2f58ee912b8447d50c63b1790c8623ccf0ab7))
|
|
6
|
+
|
|
7
|
+
## [1.4.6](https://github.com/Doist/typist/compare/v1.4.5...v1.4.6) (2023-08-24)
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
- **deps:** revert update gfm strikethrough and autolink literal packages to v1 ([#408](https://github.com/Doist/typist/issues/408)) ([c231d95](https://github.com/Doist/typist/commit/c231d95bebc9905245930de9ef874c791f74413e))
|
|
12
|
+
|
|
1
13
|
## [1.4.5](https://github.com/Doist/typist/compare/v1.4.4...v1.4.5) (2023-08-23)
|
|
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.
|
|
4
|
+
"version": "1.4.7",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"homepage": "https://typist.doist.dev/",
|
|
7
7
|
"repository": "https://github.com/Doist/typist",
|
|
@@ -46,36 +46,36 @@
|
|
|
46
46
|
"validate:pre-push": "run-s test"
|
|
47
47
|
},
|
|
48
48
|
"dependencies": {
|
|
49
|
-
"@tiptap/core": "2.1.
|
|
50
|
-
"@tiptap/extension-blockquote": "2.1.
|
|
51
|
-
"@tiptap/extension-bold": "2.1.
|
|
52
|
-
"@tiptap/extension-bullet-list": "2.1.
|
|
53
|
-
"@tiptap/extension-character-count": "2.1.
|
|
54
|
-
"@tiptap/extension-code": "2.1.
|
|
55
|
-
"@tiptap/extension-code-block": "2.1.
|
|
56
|
-
"@tiptap/extension-document": "2.1.
|
|
57
|
-
"@tiptap/extension-dropcursor": "2.1.
|
|
58
|
-
"@tiptap/extension-gapcursor": "2.1.
|
|
59
|
-
"@tiptap/extension-hard-break": "2.1.
|
|
60
|
-
"@tiptap/extension-heading": "2.1.
|
|
61
|
-
"@tiptap/extension-history": "2.1.
|
|
62
|
-
"@tiptap/extension-horizontal-rule": "2.1.
|
|
63
|
-
"@tiptap/extension-image": "2.1.
|
|
64
|
-
"@tiptap/extension-italic": "2.1.
|
|
65
|
-
"@tiptap/extension-link": "2.1.
|
|
66
|
-
"@tiptap/extension-list-item": "2.1.
|
|
67
|
-
"@tiptap/extension-list-keymap": "2.1.
|
|
68
|
-
"@tiptap/extension-ordered-list": "2.1.
|
|
69
|
-
"@tiptap/extension-paragraph": "2.1.
|
|
70
|
-
"@tiptap/extension-placeholder": "2.1.
|
|
71
|
-
"@tiptap/extension-strike": "2.1.
|
|
72
|
-
"@tiptap/extension-task-item": "2.1.
|
|
73
|
-
"@tiptap/extension-task-list": "2.1.
|
|
74
|
-
"@tiptap/extension-text": "2.1.
|
|
75
|
-
"@tiptap/extension-typography": "2.1.
|
|
76
|
-
"@tiptap/pm": "2.1.
|
|
77
|
-
"@tiptap/react": "2.1.
|
|
78
|
-
"@tiptap/suggestion": "2.1.
|
|
49
|
+
"@tiptap/core": "2.1.7",
|
|
50
|
+
"@tiptap/extension-blockquote": "2.1.7",
|
|
51
|
+
"@tiptap/extension-bold": "2.1.7",
|
|
52
|
+
"@tiptap/extension-bullet-list": "2.1.7",
|
|
53
|
+
"@tiptap/extension-character-count": "2.1.7",
|
|
54
|
+
"@tiptap/extension-code": "2.1.7",
|
|
55
|
+
"@tiptap/extension-code-block": "2.1.7",
|
|
56
|
+
"@tiptap/extension-document": "2.1.7",
|
|
57
|
+
"@tiptap/extension-dropcursor": "2.1.7",
|
|
58
|
+
"@tiptap/extension-gapcursor": "2.1.7",
|
|
59
|
+
"@tiptap/extension-hard-break": "2.1.7",
|
|
60
|
+
"@tiptap/extension-heading": "2.1.7",
|
|
61
|
+
"@tiptap/extension-history": "2.1.7",
|
|
62
|
+
"@tiptap/extension-horizontal-rule": "2.1.7",
|
|
63
|
+
"@tiptap/extension-image": "2.1.7",
|
|
64
|
+
"@tiptap/extension-italic": "2.1.7",
|
|
65
|
+
"@tiptap/extension-link": "2.1.7",
|
|
66
|
+
"@tiptap/extension-list-item": "2.1.7",
|
|
67
|
+
"@tiptap/extension-list-keymap": "2.1.7",
|
|
68
|
+
"@tiptap/extension-ordered-list": "2.1.7",
|
|
69
|
+
"@tiptap/extension-paragraph": "2.1.7",
|
|
70
|
+
"@tiptap/extension-placeholder": "2.1.7",
|
|
71
|
+
"@tiptap/extension-strike": "2.1.7",
|
|
72
|
+
"@tiptap/extension-task-item": "2.1.7",
|
|
73
|
+
"@tiptap/extension-task-list": "2.1.7",
|
|
74
|
+
"@tiptap/extension-text": "2.1.7",
|
|
75
|
+
"@tiptap/extension-typography": "2.1.7",
|
|
76
|
+
"@tiptap/pm": "2.1.7",
|
|
77
|
+
"@tiptap/react": "2.1.7",
|
|
78
|
+
"@tiptap/suggestion": "2.1.7",
|
|
79
79
|
"prosemirror-codemark": "0.4.2"
|
|
80
80
|
},
|
|
81
81
|
"devDependencies": {
|
|
@@ -94,10 +94,10 @@
|
|
|
94
94
|
"@storybook/react": "7.3.2",
|
|
95
95
|
"@storybook/react-vite": "7.3.2",
|
|
96
96
|
"@testing-library/dom": "9.3.1",
|
|
97
|
-
"@testing-library/jest-dom": "6.
|
|
97
|
+
"@testing-library/jest-dom": "6.1.2",
|
|
98
98
|
"@testing-library/react": "14.0.0",
|
|
99
99
|
"@types/lodash-es": "4.17.8",
|
|
100
|
-
"@types/react": "18.2.
|
|
100
|
+
"@types/react": "18.2.21",
|
|
101
101
|
"@types/react-dom": "18.2.7",
|
|
102
102
|
"@types/react-syntax-highlighter": "15.5.7",
|
|
103
103
|
"@types/turndown": "5.0.1",
|
|
@@ -119,7 +119,7 @@
|
|
|
119
119
|
"ignore-sync": "7.0.1",
|
|
120
120
|
"is-ci": "3.0.1",
|
|
121
121
|
"jsdom": "22.1.0",
|
|
122
|
-
"lint-staged": "14.0.
|
|
122
|
+
"lint-staged": "14.0.1",
|
|
123
123
|
"npm-run-all": "4.1.5",
|
|
124
124
|
"prettier": "3.0.2",
|
|
125
125
|
"react": "18.2.0",
|
|
@@ -128,7 +128,7 @@
|
|
|
128
128
|
"react-markdown": "8.0.7",
|
|
129
129
|
"react-syntax-highlighter": "15.5.0",
|
|
130
130
|
"rimraf": "5.0.1",
|
|
131
|
-
"semantic-release": "21.0.
|
|
131
|
+
"semantic-release": "21.0.9",
|
|
132
132
|
"storybook": "7.3.2",
|
|
133
133
|
"storybook-css-modules": "1.0.8",
|
|
134
134
|
"type-fest": "4.2.0",
|
|
@@ -141,10 +141,10 @@
|
|
|
141
141
|
"emoji-regex": "^10.2.1",
|
|
142
142
|
"hast-util-is-element": "^2.1.0",
|
|
143
143
|
"lodash-es": "^4.17.21",
|
|
144
|
-
"mdast-util-gfm-autolink-literal": "^
|
|
145
|
-
"mdast-util-gfm-strikethrough": "^
|
|
146
|
-
"micromark-extension-gfm-autolink-literal": "^
|
|
147
|
-
"micromark-extension-gfm-strikethrough": "^
|
|
144
|
+
"mdast-util-gfm-autolink-literal": "^1.0.0",
|
|
145
|
+
"mdast-util-gfm-strikethrough": "^1.0.0",
|
|
146
|
+
"micromark-extension-gfm-autolink-literal": "^1.0.0",
|
|
147
|
+
"micromark-extension-gfm-strikethrough": "^1.0.0",
|
|
148
148
|
"react": "^17.0.0 || ^18.0.0",
|
|
149
149
|
"react-dom": "^17.0.0 || ^18.0.0",
|
|
150
150
|
"rehype": "^12.0.0",
|