Move numbering into sub folder
This commit is contained in:
@ -1,10 +1,11 @@
|
||||
import { Media } from "../media";
|
||||
import { Numbering } from "../numbering";
|
||||
import { IPropertiesOptions, Properties } from "../properties";
|
||||
import { Styles } from "../styles";
|
||||
import { DefaultStylesFactory } from "../styles/factory";
|
||||
import { Document } from "./document";
|
||||
import { Paragraph, Table } from "./index";
|
||||
import { Numbering } from "./numbering";
|
||||
import { Paragraph } from "./paragraph";
|
||||
import { Table } from "./table";
|
||||
|
||||
export class File {
|
||||
|
||||
|
@ -2,3 +2,4 @@ export * from "./document";
|
||||
export * from "./paragraph";
|
||||
export * from "./table";
|
||||
export * from "./file";
|
||||
export * from "./numbering";
|
||||
|
@ -1,4 +1,4 @@
|
||||
import { XmlAttributeComponent, XmlComponent } from "../docx/xml-components";
|
||||
import { XmlAttributeComponent, XmlComponent } from "../xml-components";
|
||||
import { Level } from "./level";
|
||||
import { MultiLevelType } from "./multi-level-type";
|
||||
|
@ -1,8 +1,8 @@
|
||||
import * as paragraph from "../docx/paragraph/formatting";
|
||||
import { ParagraphProperties } from "../docx/paragraph/properties";
|
||||
import * as formatting from "../docx/paragraph/run/formatting";
|
||||
import { RunProperties } from "../docx/paragraph/run/properties";
|
||||
import { Attributes, XmlAttributeComponent, XmlComponent } from "../docx/xml-components";
|
||||
import * as paragraph from "../paragraph/formatting";
|
||||
import { ParagraphProperties } from "../paragraph/properties";
|
||||
import * as formatting from "../paragraph/run/formatting";
|
||||
import { RunProperties } from "../paragraph/run/properties";
|
||||
import { Attributes, XmlAttributeComponent, XmlComponent } from "../xml-components";
|
||||
|
||||
interface ILevelAttributesProperties {
|
||||
ilvl?: number;
|
@ -1,4 +1,4 @@
|
||||
import { Attributes, XmlComponent } from "../docx/xml-components";
|
||||
import { Attributes, XmlComponent } from "../xml-components";
|
||||
|
||||
export class MultiLevelType extends XmlComponent {
|
||||
|
@ -1,4 +1,4 @@
|
||||
import { Attributes, XmlAttributeComponent, XmlComponent } from "../docx/xml-components";
|
||||
import { Attributes, XmlAttributeComponent, XmlComponent } from "../xml-components";
|
||||
import { LevelForOverride } from "./level";
|
||||
|
||||
class AbstractNumId extends XmlComponent {
|
@ -1,5 +1,5 @@
|
||||
import { expect } from "chai";
|
||||
import { Formatter } from "../export/formatter";
|
||||
import { Formatter } from "../../export/formatter";
|
||||
import { Numbering } from "./";
|
||||
import { AbstractNumbering } from "./abstract-numbering";
|
||||
import { LevelForOverride } from "./level";
|
@ -1,7 +1,7 @@
|
||||
import { DocumentAttributes } from "../docx/document/document-attributes";
|
||||
import { Indent } from "../docx/paragraph/formatting";
|
||||
import { RunFonts } from "../docx/paragraph/run/run-fonts";
|
||||
import { XmlComponent } from "../docx/xml-components";
|
||||
import { DocumentAttributes } from "../document/document-attributes";
|
||||
import { Indent } from "../paragraph/formatting";
|
||||
import { RunFonts } from "../paragraph/run/run-fonts";
|
||||
import { XmlComponent } from "../xml-components";
|
||||
import { AbstractNumbering } from "./abstract-numbering";
|
||||
import { Num } from "./num";
|
||||
|
@ -2,7 +2,7 @@ import { assert, expect } from "chai";
|
||||
|
||||
import * as docx from "../../docx";
|
||||
import { Formatter } from "../../export/formatter";
|
||||
import { Numbering } from "../../numbering";
|
||||
import { Numbering } from "../numbering";
|
||||
|
||||
describe("Paragraph", () => {
|
||||
let paragraph: docx.Paragraph;
|
||||
|
@ -1,6 +1,6 @@
|
||||
// http://officeopenxml.com/WPparagraph.php
|
||||
import { IData } from "../../media/data";
|
||||
import { Num } from "../../numbering/num";
|
||||
import { Num } from "../numbering/num";
|
||||
import { XmlComponent } from "../xml-components";
|
||||
import { PictureRun, Run, TextRun } from "./run";
|
||||
|
||||
|
@ -1,6 +1,5 @@
|
||||
export * from "./docx";
|
||||
export * from "./export";
|
||||
export { Numbering } from "./numbering";
|
||||
export { Styles } from "./styles";
|
||||
export { Media } from "./media";
|
||||
export * from "./export";
|
||||
|
Reference in New Issue
Block a user