2
0

build: 📦️ Update packages

This commit is contained in:
Baptiste Arnaud
2022-05-13 09:18:25 -07:00
parent ddaaa68e28
commit 6c2986590b
32 changed files with 2994 additions and 3689 deletions

View File

@@ -6,10 +6,10 @@
"license": "AGPL-3.0-or-later",
"private": true,
"devDependencies": {
"typescript": "^4.6.3"
"typescript": "^4.6.4"
},
"dependencies": {
"next": "^12.1.4",
"next": "^12.1.6",
"db": "*"
},
"scripts": {

View File

@@ -1,4 +1,5 @@
import { StepBase } from '.'
import { TElement } from '@udecode/plate-core'
export type BubbleStep =
| TextBubbleStep
@@ -41,7 +42,7 @@ export type EmbedBubbleStep = StepBase & {
export type TextBubbleContent = {
html: string
richText: unknown[]
richText: TElement[]
plainText: string
}