feat: add conceptId attribute to table td #654
This commit is contained in:
@@ -61,6 +61,7 @@ interface IElement {
|
|||||||
tdList: {
|
tdList: {
|
||||||
colspan: number;
|
colspan: number;
|
||||||
rowspan: number;
|
rowspan: number;
|
||||||
|
conceptId?: string;
|
||||||
verticalAlign?: VerticalAlign;
|
verticalAlign?: VerticalAlign;
|
||||||
backgroundColor?: string;
|
backgroundColor?: string;
|
||||||
borderTypes?: TdBorder[];
|
borderTypes?: TdBorder[];
|
||||||
|
|||||||
@@ -61,6 +61,7 @@ interface IElement {
|
|||||||
tdList: {
|
tdList: {
|
||||||
colspan: number;
|
colspan: number;
|
||||||
rowspan: number;
|
rowspan: number;
|
||||||
|
conceptId?: string;
|
||||||
verticalAlign?: VerticalAlign;
|
verticalAlign?: VerticalAlign;
|
||||||
backgroundColor?: string;
|
backgroundColor?: string;
|
||||||
borderTypes?: TdBorder[];
|
borderTypes?: TdBorder[];
|
||||||
|
|||||||
@@ -77,6 +77,7 @@ export const EDITOR_ELEMENT_ZIP_ATTR: Array<keyof IElement> = [
|
|||||||
]
|
]
|
||||||
|
|
||||||
export const TABLE_TD_ZIP_ATTR: Array<keyof ITd> = [
|
export const TABLE_TD_ZIP_ATTR: Array<keyof ITd> = [
|
||||||
|
'conceptId',
|
||||||
'verticalAlign',
|
'verticalAlign',
|
||||||
'backgroundColor',
|
'backgroundColor',
|
||||||
'borderTypes',
|
'borderTypes',
|
||||||
|
|||||||
@@ -4,6 +4,7 @@ import { IElement, IElementPosition } from '../Element'
|
|||||||
import { IRow } from '../Row'
|
import { IRow } from '../Row'
|
||||||
|
|
||||||
export interface ITd {
|
export interface ITd {
|
||||||
|
conceptId?: string
|
||||||
id?: string
|
id?: string
|
||||||
x?: number
|
x?: number
|
||||||
y?: number
|
y?: number
|
||||||
|
|||||||
Reference in New Issue
Block a user