@doist/typist 2.1.1 → 2.1.3

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
+ ## [2.1.3](https://github.com/Doist/typist/compare/v2.1.2...v2.1.3) (2023-11-03)
2
+
3
+ ### Bug Fixes
4
+
5
+ - **deps:** update tiptap packages to v2.1.12 ([#488](https://github.com/Doist/typist/issues/488)) ([63c619c](https://github.com/Doist/typist/commit/63c619cc085ad14b3909ab6dddd929da04449ff3))
6
+
7
+ ## [2.1.2](https://github.com/Doist/typist/compare/v2.1.1...v2.1.2) (2023-10-19)
8
+
9
+ ### Bug Fixes
10
+
11
+ - Change `emDelimiter` to `*` to fix having only part of word in italic ([#490](https://github.com/Doist/typist/issues/490)) ([7496ff2](https://github.com/Doist/typist/commit/7496ff2b3c42ab39a22c253b7d20cca7f19af3b2))
12
+
1
13
  ## [2.1.1](https://github.com/Doist/typist/compare/v2.1.0...v2.1.1) (2023-10-03)
2
14
 
3
15
  ### Bug Fixes
@@ -22,7 +22,7 @@ const INITIAL_TURNDOWN_OPTIONS = {
22
22
  bulletListMarker: BULLET_LIST_MARKER,
23
23
  codeBlockStyle: 'fenced',
24
24
  fence: '```',
25
- emDelimiter: '_',
25
+ emDelimiter: '*',
26
26
  strongDelimiter: '**',
27
27
  linkStyle: 'inlined',
28
28
  /**
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": "2.1.1",
4
+ "version": "2.1.3",
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.11",
50
- "@tiptap/extension-blockquote": "2.1.11",
51
- "@tiptap/extension-bold": "2.1.11",
52
- "@tiptap/extension-bullet-list": "2.1.11",
53
- "@tiptap/extension-character-count": "2.1.11",
54
- "@tiptap/extension-code": "2.1.11",
55
- "@tiptap/extension-code-block": "2.1.11",
56
- "@tiptap/extension-document": "2.1.11",
57
- "@tiptap/extension-dropcursor": "2.1.11",
58
- "@tiptap/extension-gapcursor": "2.1.11",
59
- "@tiptap/extension-hard-break": "2.1.11",
60
- "@tiptap/extension-heading": "2.1.11",
61
- "@tiptap/extension-history": "2.1.11",
62
- "@tiptap/extension-horizontal-rule": "2.1.11",
63
- "@tiptap/extension-image": "2.1.11",
64
- "@tiptap/extension-italic": "2.1.11",
65
- "@tiptap/extension-link": "2.1.11",
66
- "@tiptap/extension-list-item": "2.1.11",
67
- "@tiptap/extension-list-keymap": "2.1.11",
68
- "@tiptap/extension-ordered-list": "2.1.11",
69
- "@tiptap/extension-paragraph": "2.1.11",
70
- "@tiptap/extension-placeholder": "2.1.11",
71
- "@tiptap/extension-strike": "2.1.11",
72
- "@tiptap/extension-task-item": "2.1.11",
73
- "@tiptap/extension-task-list": "2.1.11",
74
- "@tiptap/extension-text": "2.1.11",
75
- "@tiptap/extension-typography": "2.1.11",
76
- "@tiptap/pm": "2.1.11",
77
- "@tiptap/react": "2.1.11",
78
- "@tiptap/suggestion": "2.1.11",
49
+ "@tiptap/core": "2.1.12",
50
+ "@tiptap/extension-blockquote": "2.1.12",
51
+ "@tiptap/extension-bold": "2.1.12",
52
+ "@tiptap/extension-bullet-list": "2.1.12",
53
+ "@tiptap/extension-character-count": "2.1.12",
54
+ "@tiptap/extension-code": "2.1.12",
55
+ "@tiptap/extension-code-block": "2.1.12",
56
+ "@tiptap/extension-document": "2.1.12",
57
+ "@tiptap/extension-dropcursor": "2.1.12",
58
+ "@tiptap/extension-gapcursor": "2.1.12",
59
+ "@tiptap/extension-hard-break": "2.1.12",
60
+ "@tiptap/extension-heading": "2.1.12",
61
+ "@tiptap/extension-history": "2.1.12",
62
+ "@tiptap/extension-horizontal-rule": "2.1.12",
63
+ "@tiptap/extension-image": "2.1.12",
64
+ "@tiptap/extension-italic": "2.1.12",
65
+ "@tiptap/extension-link": "2.1.12",
66
+ "@tiptap/extension-list-item": "2.1.12",
67
+ "@tiptap/extension-list-keymap": "2.1.12",
68
+ "@tiptap/extension-ordered-list": "2.1.12",
69
+ "@tiptap/extension-paragraph": "2.1.12",
70
+ "@tiptap/extension-placeholder": "2.1.12",
71
+ "@tiptap/extension-strike": "2.1.12",
72
+ "@tiptap/extension-task-item": "2.1.12",
73
+ "@tiptap/extension-task-list": "2.1.12",
74
+ "@tiptap/extension-text": "2.1.12",
75
+ "@tiptap/extension-typography": "2.1.12",
76
+ "@tiptap/pm": "2.1.12",
77
+ "@tiptap/react": "2.1.12",
78
+ "@tiptap/suggestion": "2.1.12",
79
79
  "prosemirror-codemark": "0.4.2"
80
80
  },
81
81
  "devDependencies": {
@@ -86,35 +86,35 @@
86
86
  "@semantic-release/changelog": "6.0.3",
87
87
  "@semantic-release/exec": "6.0.3",
88
88
  "@semantic-release/git": "10.0.1",
89
- "@storybook/addon-a11y": "7.4.5",
90
- "@storybook/addon-essentials": "7.4.5",
91
- "@storybook/addons": "7.4.5",
89
+ "@storybook/addon-a11y": "7.5.1",
90
+ "@storybook/addon-essentials": "7.5.1",
91
+ "@storybook/addons": "7.5.1",
92
92
  "@storybook/csf": "0.1.1",
93
93
  "@storybook/mdx2-csf": "1.1.0",
94
- "@storybook/react": "7.4.5",
95
- "@storybook/react-vite": "7.4.5",
94
+ "@storybook/react": "7.5.1",
95
+ "@storybook/react-vite": "7.5.1",
96
96
  "@testing-library/dom": "9.3.3",
97
- "@testing-library/jest-dom": "6.1.3",
97
+ "@testing-library/jest-dom": "6.1.4",
98
98
  "@testing-library/react": "14.0.0",
99
- "@types/lodash-es": "4.17.9",
100
- "@types/react": "18.2.23",
101
- "@types/react-dom": "18.2.8",
102
- "@types/react-syntax-highlighter": "15.5.7",
103
- "@types/turndown": "5.0.2",
99
+ "@types/lodash-es": "4.17.10",
100
+ "@types/react": "18.2.33",
101
+ "@types/react-dom": "18.2.14",
102
+ "@types/react-syntax-highlighter": "15.5.9",
103
+ "@types/turndown": "5.0.3",
104
104
  "@vitejs/plugin-react": "4.1.0",
105
105
  "boring-avatars": "1.10.1",
106
106
  "classnames": "2.3.2",
107
107
  "conventional-changelog-conventionalcommits": "7.0.2",
108
- "emoji-regex": "10.2.1",
109
- "eslint": "8.50.0",
108
+ "emoji-regex": "10.3.0",
109
+ "eslint": "8.52.0",
110
110
  "eslint-formatter-codeframe": "7.32.1",
111
111
  "eslint-import-resolver-typescript": "3.6.1",
112
112
  "eslint-plugin-simple-import-sort": "10.0.0",
113
- "eslint-plugin-storybook": "0.6.14",
113
+ "eslint-plugin-storybook": "0.6.15",
114
114
  "eslint-plugin-unicorn": "48.0.1",
115
- "eslint-plugin-vitest": "0.3.1",
115
+ "eslint-plugin-vitest": "0.3.8",
116
116
  "eslint-plugin-vitest-globals": "1.4.0",
117
- "github-markdown-css": "5.2.0",
117
+ "github-markdown-css": "5.3.0",
118
118
  "husky": "8.0.3",
119
119
  "ignore-sync": "7.0.1",
120
120
  "is-ci": "3.0.1",
@@ -129,12 +129,12 @@
129
129
  "react-syntax-highlighter": "15.5.0",
130
130
  "rimraf": "5.0.5",
131
131
  "semantic-release": "22.0.5",
132
- "storybook": "7.4.5",
132
+ "storybook": "7.5.1",
133
133
  "storybook-css-modules": "1.0.8",
134
- "type-fest": "4.3.2",
134
+ "type-fest": "4.6.0",
135
135
  "typescript": "5.2.2",
136
- "typescript-plugin-css-modules": "5.0.1",
137
- "vitest": "0.34.5"
136
+ "typescript-plugin-css-modules": "5.0.2",
137
+ "vitest": "0.34.6"
138
138
  },
139
139
  "peerDependencies": {
140
140
  "@react-hookz/web": "^14.2.3 || >=15.x",