Increase readability for enums
This commit is contained in:
@ -18,12 +18,12 @@ const table = new Table({
|
|||||||
verticalAlign: VerticalAlign.CENTER,
|
verticalAlign: VerticalAlign.CENTER,
|
||||||
}),
|
}),
|
||||||
new TableCell({
|
new TableCell({
|
||||||
children: [new Paragraph({text: "bottom to top"}), new Paragraph({})],
|
children: [new Paragraph({ text: "bottom to top" }), new Paragraph({})],
|
||||||
textDirection: TextDirection.BOTTOMTOTOPLEFTTORIGHT
|
textDirection: TextDirection.BOTTOM_TO_TOP_LEFT_TO_RIGHT,
|
||||||
}),
|
}),
|
||||||
new TableCell({
|
new TableCell({
|
||||||
children: [new Paragraph({text: "top to bottom"}), new Paragraph({})],
|
children: [new Paragraph({ text: "top to bottom" }), new Paragraph({})],
|
||||||
textDirection: TextDirection.TOPTOBOTTOMRIGHTTOLEFT
|
textDirection: TextDirection.TOP_TO_BOTTOM_RIGHT_TO_LEFT,
|
||||||
}),
|
}),
|
||||||
],
|
],
|
||||||
}),
|
}),
|
||||||
|
@ -159,9 +159,9 @@ export class VAlign extends XmlComponent {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export enum TextDirection {
|
export enum TextDirection {
|
||||||
BOTTOMTOTOPLEFTTORIGHT = "btLr",
|
BOTTOM_TO_TOP_LEFT_TO_RIGHT = "btLr",
|
||||||
LEFTTORIGHTTOPTOBOTTOM = "lrTb",
|
LEFT_TO_RIGHT_TOP_TO_BOTTOM = "lrTb",
|
||||||
TOPTOBOTTOMRIGHTTOLEFT = "tbRl",
|
TOP_TO_BOTTOM_RIGHT_TO_LEFT = "tbRl",
|
||||||
}
|
}
|
||||||
|
|
||||||
class TDirectionAttributes extends XmlAttributeComponent<{ readonly val: TextDirection }> {
|
class TDirectionAttributes extends XmlAttributeComponent<{ readonly val: TextDirection }> {
|
||||||
|
@ -274,7 +274,7 @@ describe("TableCell", () => {
|
|||||||
it("should create with text direction", () => {
|
it("should create with text direction", () => {
|
||||||
const cell = new TableCell({
|
const cell = new TableCell({
|
||||||
children: [],
|
children: [],
|
||||||
textDirection: TextDirection.BOTTOMTOTOPLEFTTORIGHT,
|
textDirection: TextDirection.BOTTOM_TO_TOP_LEFT_TO_RIGHT,
|
||||||
});
|
});
|
||||||
|
|
||||||
const tree = new Formatter().format(cell);
|
const tree = new Formatter().format(cell);
|
||||||
|
Reference in New Issue
Block a user