@doist/typist 1.0.2 → 1.0.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 +12 -0
- package/package.json +41 -41
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
## [1.0.4](https://github.com/Doist/typist/compare/v1.0.3...v1.0.4) (2022-12-12)
|
|
2
|
+
|
|
3
|
+
### Bug Fixes
|
|
4
|
+
|
|
5
|
+
- **deps:** update tiptap packages to v2.0.0-beta.205 ([#54](https://github.com/Doist/typist/issues/54)) ([2074402](https://github.com/Doist/typist/commit/20744024bda8e4e3263e87dda7a53cca94265407))
|
|
6
|
+
|
|
7
|
+
## [1.0.3](https://github.com/Doist/typist/compare/v1.0.2...v1.0.3) (2022-12-08)
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
- **docs:** correct the render function name ([#50](https://github.com/Doist/typist/issues/50)) ([45dd681](https://github.com/Doist/typist/commit/45dd681c761c1189df740f118d4293d30807a2f7))
|
|
12
|
+
|
|
1
13
|
## [1.0.2](https://github.com/Doist/typist/compare/v1.0.1...v1.0.2) (2022-12-02)
|
|
2
14
|
|
|
3
15
|
### Bug Fixes
|
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.0.
|
|
4
|
+
"version": "1.0.4",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"homepage": "https://typist.doist.dev/",
|
|
7
7
|
"repository": "https://github.com/Doist/typist",
|
|
@@ -46,34 +46,34 @@
|
|
|
46
46
|
"validate:pre-push": "run-s test"
|
|
47
47
|
},
|
|
48
48
|
"dependencies": {
|
|
49
|
-
"@tiptap/core": "2.0.0-beta.
|
|
50
|
-
"@tiptap/extension-blockquote": "2.0.0-beta.
|
|
51
|
-
"@tiptap/extension-bold": "2.0.0-beta.
|
|
52
|
-
"@tiptap/extension-bullet-list": "2.0.0-beta.
|
|
53
|
-
"@tiptap/extension-character-count": "2.0.0-beta.
|
|
54
|
-
"@tiptap/extension-code": "2.0.0-beta.
|
|
55
|
-
"@tiptap/extension-code-block": "2.0.0-beta.
|
|
56
|
-
"@tiptap/extension-document": "2.0.0-beta.
|
|
57
|
-
"@tiptap/extension-dropcursor": "2.0.0-beta.
|
|
58
|
-
"@tiptap/extension-gapcursor": "2.0.0-beta.
|
|
59
|
-
"@tiptap/extension-hard-break": "2.0.0-beta.
|
|
60
|
-
"@tiptap/extension-heading": "2.0.0-beta.
|
|
61
|
-
"@tiptap/extension-history": "2.0.0-beta.
|
|
62
|
-
"@tiptap/extension-horizontal-rule": "2.0.0-beta.
|
|
63
|
-
"@tiptap/extension-image": "2.0.0-beta.
|
|
64
|
-
"@tiptap/extension-italic": "2.0.0-beta.
|
|
65
|
-
"@tiptap/extension-link": "2.0.0-beta.
|
|
66
|
-
"@tiptap/extension-list-item": "2.0.0-beta.
|
|
67
|
-
"@tiptap/extension-ordered-list": "2.0.0-beta.
|
|
68
|
-
"@tiptap/extension-paragraph": "2.0.0-beta.
|
|
69
|
-
"@tiptap/extension-placeholder": "2.0.0-beta.
|
|
70
|
-
"@tiptap/extension-strike": "2.0.0-beta.
|
|
71
|
-
"@tiptap/extension-task-item": "2.0.0-beta.
|
|
72
|
-
"@tiptap/extension-task-list": "2.0.0-beta.
|
|
73
|
-
"@tiptap/extension-text": "2.0.0-beta.
|
|
74
|
-
"@tiptap/extension-typography": "2.0.0-beta.
|
|
75
|
-
"@tiptap/react": "2.0.0-beta.
|
|
76
|
-
"@tiptap/suggestion": "2.0.0-beta.
|
|
49
|
+
"@tiptap/core": "2.0.0-beta.205",
|
|
50
|
+
"@tiptap/extension-blockquote": "2.0.0-beta.205",
|
|
51
|
+
"@tiptap/extension-bold": "2.0.0-beta.205",
|
|
52
|
+
"@tiptap/extension-bullet-list": "2.0.0-beta.205",
|
|
53
|
+
"@tiptap/extension-character-count": "2.0.0-beta.205",
|
|
54
|
+
"@tiptap/extension-code": "2.0.0-beta.205",
|
|
55
|
+
"@tiptap/extension-code-block": "2.0.0-beta.205",
|
|
56
|
+
"@tiptap/extension-document": "2.0.0-beta.205",
|
|
57
|
+
"@tiptap/extension-dropcursor": "2.0.0-beta.205",
|
|
58
|
+
"@tiptap/extension-gapcursor": "2.0.0-beta.205",
|
|
59
|
+
"@tiptap/extension-hard-break": "2.0.0-beta.205",
|
|
60
|
+
"@tiptap/extension-heading": "2.0.0-beta.205",
|
|
61
|
+
"@tiptap/extension-history": "2.0.0-beta.205",
|
|
62
|
+
"@tiptap/extension-horizontal-rule": "2.0.0-beta.205",
|
|
63
|
+
"@tiptap/extension-image": "2.0.0-beta.205",
|
|
64
|
+
"@tiptap/extension-italic": "2.0.0-beta.205",
|
|
65
|
+
"@tiptap/extension-link": "2.0.0-beta.205",
|
|
66
|
+
"@tiptap/extension-list-item": "2.0.0-beta.205",
|
|
67
|
+
"@tiptap/extension-ordered-list": "2.0.0-beta.205",
|
|
68
|
+
"@tiptap/extension-paragraph": "2.0.0-beta.205",
|
|
69
|
+
"@tiptap/extension-placeholder": "2.0.0-beta.205",
|
|
70
|
+
"@tiptap/extension-strike": "2.0.0-beta.205",
|
|
71
|
+
"@tiptap/extension-task-item": "2.0.0-beta.205",
|
|
72
|
+
"@tiptap/extension-task-list": "2.0.0-beta.205",
|
|
73
|
+
"@tiptap/extension-text": "2.0.0-beta.205",
|
|
74
|
+
"@tiptap/extension-typography": "2.0.0-beta.205",
|
|
75
|
+
"@tiptap/react": "2.0.0-beta.205",
|
|
76
|
+
"@tiptap/suggestion": "2.0.0-beta.205",
|
|
77
77
|
"prosemirror-codemark": "0.4.2",
|
|
78
78
|
"prosemirror-model": "1.18.3",
|
|
79
79
|
"prosemirror-state": "1.4.2",
|
|
@@ -84,22 +84,22 @@
|
|
|
84
84
|
"@doist/prettier-config": "3.0.5",
|
|
85
85
|
"@doist/reactist": "16.1.0",
|
|
86
86
|
"@mdx-js/react": "2.1.5",
|
|
87
|
-
"@semantic-release/changelog": "6.0.
|
|
87
|
+
"@semantic-release/changelog": "6.0.2",
|
|
88
88
|
"@semantic-release/exec": "6.0.3",
|
|
89
89
|
"@semantic-release/git": "10.0.1",
|
|
90
|
-
"@storybook/addon-a11y": "6.5.
|
|
91
|
-
"@storybook/addon-essentials": "6.5.
|
|
92
|
-
"@storybook/addons": "6.5.
|
|
90
|
+
"@storybook/addon-a11y": "6.5.14",
|
|
91
|
+
"@storybook/addon-essentials": "6.5.14",
|
|
92
|
+
"@storybook/addons": "6.5.14",
|
|
93
93
|
"@storybook/builder-vite": "0.2.5",
|
|
94
94
|
"@storybook/mdx2-csf": "0.0.3",
|
|
95
|
-
"@storybook/react": "6.5.
|
|
95
|
+
"@storybook/react": "6.5.14",
|
|
96
96
|
"@testing-library/dom": "8.19.0",
|
|
97
97
|
"@testing-library/jest-dom": "5.16.5",
|
|
98
98
|
"@testing-library/react": "13.4.0",
|
|
99
|
-
"@types/jest": "29.2.
|
|
99
|
+
"@types/jest": "29.2.4",
|
|
100
100
|
"@types/lodash-es": "4.17.6",
|
|
101
101
|
"@types/marked": "4.0.7",
|
|
102
|
-
"@types/react": "18.0.
|
|
102
|
+
"@types/react": "18.0.26",
|
|
103
103
|
"@types/react-dom": "18.0.9",
|
|
104
104
|
"@types/react-syntax-highlighter": "15.5.5",
|
|
105
105
|
"@types/turndown": "5.0.1",
|
|
@@ -107,7 +107,7 @@
|
|
|
107
107
|
"classnames": "2.3.2",
|
|
108
108
|
"conventional-changelog-conventionalcommits": "5.0.0",
|
|
109
109
|
"emoji-regex": "10.2.1",
|
|
110
|
-
"eslint": "8.
|
|
110
|
+
"eslint": "8.29.0",
|
|
111
111
|
"eslint-formatter-codeframe": "7.32.1",
|
|
112
112
|
"eslint-import-resolver-typescript": "3.5.2",
|
|
113
113
|
"eslint-plugin-jest": "27.1.6",
|
|
@@ -119,11 +119,11 @@
|
|
|
119
119
|
"is-ci": "3.0.1",
|
|
120
120
|
"jest": "29.3.1",
|
|
121
121
|
"jest-environment-jsdom": "29.3.1",
|
|
122
|
-
"lint-staged": "13.0
|
|
122
|
+
"lint-staged": "13.1.0",
|
|
123
123
|
"npm-run-all": "4.1.5",
|
|
124
124
|
"prettier": "2.8.0",
|
|
125
|
-
"react-icons": "4.
|
|
126
|
-
"react-markdown": "8.0.
|
|
125
|
+
"react-icons": "4.7.1",
|
|
126
|
+
"react-markdown": "8.0.4",
|
|
127
127
|
"react-syntax-highlighter": "15.5.0",
|
|
128
128
|
"rehype-raw": "6.1.1",
|
|
129
129
|
"remark-gfm": "3.0.1",
|
|
@@ -132,7 +132,7 @@
|
|
|
132
132
|
"storybook-css-modules": "1.0.8",
|
|
133
133
|
"ts-jest": "29.0.3",
|
|
134
134
|
"ts-node": "10.9.1",
|
|
135
|
-
"type-fest": "3.
|
|
135
|
+
"type-fest": "3.3.0",
|
|
136
136
|
"typescript": "4.8.4",
|
|
137
137
|
"typescript-plugin-css-modules": "3.4.0"
|
|
138
138
|
},
|