image can't be inserted inside table (#2904)
* image can't be inserted inside table Now we've diabled image icon from showing up if the cursor is inside a table node or if a table cell is selected * added drag drop support for document editor * fixed missing dependencies
This commit is contained in:
parent
041c3af35a
commit
10cde58363
32 changed files with 555 additions and 553 deletions
29
turbo.json
29
turbo.json
|
|
@ -22,8 +22,13 @@
|
|||
],
|
||||
"pipeline": {
|
||||
"build": {
|
||||
"dependsOn": ["^build"],
|
||||
"outputs": [".next/**", "dist/**"]
|
||||
"dependsOn": [
|
||||
"^build"
|
||||
],
|
||||
"outputs": [
|
||||
".next/**",
|
||||
"dist/**"
|
||||
]
|
||||
},
|
||||
"web#develop": {
|
||||
"cache": false,
|
||||
|
|
@ -65,20 +70,32 @@
|
|||
},
|
||||
"@plane/lite-text-editor#build": {
|
||||
"cache": true,
|
||||
"dependsOn": ["@plane/editor-core#build"]
|
||||
"dependsOn": [
|
||||
"@plane/editor-core#build",
|
||||
"@plane/editor-extensions#build",
|
||||
"@plane/editor-types#build"
|
||||
]
|
||||
},
|
||||
"@plane/rich-text-editor#build": {
|
||||
"cache": true,
|
||||
"dependsOn": ["@plane/editor-core#build"]
|
||||
"dependsOn": [
|
||||
"@plane/editor-core#build",
|
||||
"@plane/editor-extensions#build",
|
||||
"@plane/editor-types#build"
|
||||
]
|
||||
},
|
||||
"@plane/document-editor#build": {
|
||||
"cache": true,
|
||||
"dependsOn": [
|
||||
"@plane/editor-core#build"
|
||||
"@plane/editor-core#build",
|
||||
"@plane/editor-extensions#build",
|
||||
"@plane/editor-types#build"
|
||||
]
|
||||
},
|
||||
"test": {
|
||||
"dependsOn": ["^build"],
|
||||
"dependsOn": [
|
||||
"^build"
|
||||
],
|
||||
"outputs": []
|
||||
},
|
||||
"lint": {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue