Skip to content

Commit 34ff98f

Browse files
chore: upgrade tiptap to 3.27.1 version (#655)
# Summary Upgrade tiptap to `3.27.1` version ## Test Plan - Run the example web app and experiment with different styles if work properly - Run the example app and experiment with different styles if work properly - Run yarn test:e2e:web to see if all the tests pass ## Screenshots / Videos n/a ## Compatibility | OS | Implemented | | ------- | :---------: | | iOS | ❌ | | Android | ❌ | | Web | ✅ | ## Checklist - [X] E2E tests are passing - [ ] Required E2E tests have been added (if applicable)
1 parent 4eed699 commit 34ff98f

3 files changed

Lines changed: 2761 additions & 3397 deletions

File tree

package.json

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -88,24 +88,24 @@
8888
"registry": "https://registry.npmjs.org/"
8989
},
9090
"dependencies": {
91-
"@tiptap/core": "3.20.4",
92-
"@tiptap/extension-blockquote": "3.20.4",
93-
"@tiptap/extension-bold": "3.20.4",
94-
"@tiptap/extension-code": "3.20.4",
95-
"@tiptap/extension-document": "3.20.4",
96-
"@tiptap/extension-heading": "3.20.4",
97-
"@tiptap/extension-history": "3.20.4",
98-
"@tiptap/extension-image": "3.20.4",
99-
"@tiptap/extension-italic": "3.20.4",
100-
"@tiptap/extension-link": "3.20.4",
101-
"@tiptap/extension-list": "3.20.4",
102-
"@tiptap/extension-paragraph": "3.20.4",
103-
"@tiptap/extension-strike": "3.20.4",
104-
"@tiptap/extension-text": "3.20.4",
105-
"@tiptap/extension-underline": "3.20.4",
106-
"@tiptap/extensions": "3.20.4",
107-
"@tiptap/pm": "3.20.4",
108-
"@tiptap/react": "3.20.4"
91+
"@tiptap/core": "3.27.1",
92+
"@tiptap/extension-blockquote": "3.27.1",
93+
"@tiptap/extension-bold": "3.27.1",
94+
"@tiptap/extension-code": "3.27.1",
95+
"@tiptap/extension-document": "3.27.1",
96+
"@tiptap/extension-heading": "3.27.1",
97+
"@tiptap/extension-history": "3.27.1",
98+
"@tiptap/extension-image": "3.27.1",
99+
"@tiptap/extension-italic": "3.27.1",
100+
"@tiptap/extension-link": "3.27.1",
101+
"@tiptap/extension-list": "3.27.1",
102+
"@tiptap/extension-paragraph": "3.27.1",
103+
"@tiptap/extension-strike": "3.27.1",
104+
"@tiptap/extension-text": "3.27.1",
105+
"@tiptap/extension-underline": "3.27.1",
106+
"@tiptap/extensions": "3.27.1",
107+
"@tiptap/pm": "3.27.1",
108+
"@tiptap/react": "3.27.1"
109109
},
110110
"devDependencies": {
111111
"@commitlint/config-conventional": "^19.6.0",

src/types.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -843,8 +843,10 @@ interface EnrichedTextMentionStyleProperties extends MentionStyleProperties {
843843
pressBackgroundColor?: ColorValue;
844844
}
845845

846-
export interface EnrichedTextHtmlStyle
847-
extends Omit<HtmlStyle, 'a' | 'mention'> {
846+
export interface EnrichedTextHtmlStyle extends Omit<
847+
HtmlStyle,
848+
'a' | 'mention'
849+
> {
848850
a?: HtmlStyle['a'] & {
849851
pressColor?: ColorValue;
850852
};

0 commit comments

Comments
 (0)