mirror of
https://github.com/siyuan-note/siyuan.git
synced 2026-03-02 10:50:15 +01:00
✨ https://github.com/siyuan-note/siyuan/issues/8895 edit asset item
This commit is contained in:
parent
67574984d0
commit
e8c15eebb6
7 changed files with 192 additions and 37 deletions
22
app/src/types/index.d.ts
vendored
22
app/src/types/index.d.ts
vendored
|
|
@ -998,12 +998,6 @@ interface IAVCell {
|
|||
valueType: TAVCol,
|
||||
}
|
||||
|
||||
interface IAVCellAssetValue {
|
||||
content: string,
|
||||
name: string,
|
||||
type: "file" | "image"
|
||||
}
|
||||
|
||||
interface IAVCellValue {
|
||||
type?: TAVCol,
|
||||
text?: {
|
||||
|
|
@ -1015,10 +1009,7 @@ interface IAVCellValue {
|
|||
format?: string,
|
||||
formattedContent?: string
|
||||
},
|
||||
mSelect?: {
|
||||
content: string,
|
||||
color: string
|
||||
}[]
|
||||
mSelect?: IAVCellSelectValue[]
|
||||
mAsset?: IAVCellAssetValue[]
|
||||
block?: {
|
||||
content: string,
|
||||
|
|
@ -1043,3 +1034,14 @@ interface IAVCellDateValue {
|
|||
isNotEmpty2?: boolean
|
||||
hasEndDate?: boolean
|
||||
}
|
||||
|
||||
interface IAVCellSelectValue {
|
||||
content: string,
|
||||
color: string
|
||||
}
|
||||
|
||||
interface IAVCellAssetValue {
|
||||
content: string,
|
||||
name: string,
|
||||
type: "file" | "image"
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue