🎨 Add template type column to Attribute View https://github.com/siyuan-note/siyuan/issues/8766

This commit is contained in:
Daniel 2023-10-01 17:33:53 +08:00
parent dbdddd7ff3
commit b833087cb6
No known key found for this signature in database
GPG key ID: 86211BA83DF03017
4 changed files with 36 additions and 4 deletions

View file

@ -79,6 +79,7 @@ type Key struct {
Options []*KeySelectOption `json:"options,omitempty"` // 选项列表
NumberFormat NumberFormat `json:"numberFormat"` // 列数字格式化
Template string `json:"template"` // 模板内容
}
func NewKey(id, name string, keyType KeyType) *Key {
@ -350,7 +351,6 @@ type ValueAsset struct {
}
type ValueTemplate struct {
Content string `json:"content"`
RenderedContent string `json:"renderedContent"`
}

View file

@ -396,6 +396,7 @@ type TableColumn struct {
Options []*KeySelectOption `json:"options,omitempty"` // 选项列表
NumberFormat NumberFormat `json:"numberFormat"` // 列数字格式化
Template string `json:"template"` // 模板内容
}
type TableRow struct {