added a new list paragraph style in the default style

This commit is contained in:
Dolan Miu
2016-05-19 09:54:36 +01:00
parent 57680159fc
commit 49e50fb6e3
2 changed files with 15 additions and 1 deletions

View File

@ -108,4 +108,14 @@ export class Heading6Style extends HeadingStyle {
constructor() {
super("Heading6", "Heading 6");
}
}
export class ListParagraph extends ParagraphStyle {
constructor() {
super("ListParagraph");
this.root.push(new Name("List Paragraph"));
this.root.push(new BasedOn("Normal"));
this.root.push(new QuickFormat());
}
}