cv-dialog-sdk
Version:
Catavolt Dialog Javascript API
27 lines (26 loc) • 930 B
JavaScript
export class CellValue {
constructor(style) {
this.style = style;
}
get isHeading1Style() {
return this.style && this.style === CellValue.STYLE_HEADING1;
}
get isHeading2Style() {
return this.style && this.style === CellValue.STYLE_HEADING2;
}
get isHeading3Style() {
return this.style && this.style === CellValue.STYLE_HEADING3;
}
get isHeading4Style() {
return this.style && this.style === CellValue.STYLE_HEADING4;
}
get isInlineMediaStyle() {
return (this.style && (this.style === CellValue.STYLE_INLINE_MEDIA || this.style === CellValue.STYLE_INLINE_MEDIA2));
}
}
CellValue.STYLE_HEADING1 = 'textHeading1';
CellValue.STYLE_HEADING2 = 'textHeading2';
CellValue.STYLE_HEADING3 = 'textHeading3';
CellValue.STYLE_HEADING4 = 'textHeading4';
CellValue.STYLE_INLINE_MEDIA = 'inlineMedia';
CellValue.STYLE_INLINE_MEDIA2 = 'Image/Video';