Merge branch 'master' into feat/refactor-bidi

# Conflicts:
#	demo/demo22.js
#	src/file/paragraph/run/run.ts
This commit is contained in:
Dolan
2018-08-08 20:20:22 +01:00
5 changed files with 56 additions and 5 deletions

View File

@ -14,6 +14,17 @@ export class Bold extends XmlComponent {
}
}
export class BoldComplexScript extends XmlComponent {
constructor() {
super("w:bCs");
this.root.push(
new Attributes({
val: true,
}),
);
}
}
export class Italics extends XmlComponent {
constructor() {
super("w:i");
@ -25,6 +36,17 @@ export class Italics extends XmlComponent {
}
}
export class ItalicsComplexScript extends XmlComponent {
constructor() {
super("w:iCs");
this.root.push(
new Attributes({
val: true,
}),
);
}
}
export class Caps extends XmlComponent {
constructor() {
super("w:caps");