Merge branch 'master' into feat/h4buli-update

This commit is contained in:
Dolan
2018-05-08 01:23:56 +01:00
committed by GitHub
12 changed files with 150 additions and 7 deletions

View File

@ -9,6 +9,7 @@ import {
Heading4Style,
Heading5Style,
Heading6Style,
HyperlinkStyle,
ListParagraph,
TitleStyle,
} from "./style";
@ -62,6 +63,8 @@ export class DefaultStylesFactory {
// listParagraph.addParagraphProperty();
styles.push(listParagraph);
const hyperLinkStyle = new HyperlinkStyle();
styles.push(hyperLinkStyle);
return styles;
}
}