Dolan
2a5e3729e0
Merge pull request #371 from mforman1/Highlighting
...
Add Highlight and Shading to the properties
2019-08-06 12:47:34 +01:00
Forman
ebc7dca949
Fix tests
2019-08-06 13:39:05 +03:00
Forman
fa710d1ba6
Highlighting
2019-08-06 11:13:43 +03:00
Dolan
c2c05b0140
Adding some documentation
2019-08-03 13:42:24 +01:00
Steve Wainstead
6f6f1e249c
Removed artifact left over from (likely) the patch program
2019-08-01 11:12:07 -04:00
Dolan Miu
9938a8bcc0
Fix linting
2019-07-31 08:48:25 +01:00
Dolan Miu
ac5b15d0e3
Mandatory Sections
2019-07-31 08:48:02 +01:00
moritz-tr
ec5a678f05
fix: multiple def of header/footer attributes
2019-07-22 17:36:13 +02:00
Dolan Miu
bf80311ef7
Add new section method
2019-07-07 20:23:42 +01:00
Dolan
58346a8937
Section WIP
2019-07-07 03:54:29 +01:00
Dolan
f33d6da65a
Merge branch 'master' into feat/declaritive
...
# Conflicts:
# src/file/paragraph/formatting/border.spec.ts
# src/file/paragraph/links/outline-level.spec.ts
# src/file/paragraph/run/run.spec.ts
2019-07-02 01:33:41 +01:00
Dolan
cbbc4a80e7
FIx up API for column count
2019-06-28 01:57:43 +01:00
Dolan
1f51fd7a31
Remove usage of Utility
2019-06-27 01:35:58 +01:00
Dolan
120d97bc64
Remove Utility
2019-06-27 01:10:39 +01:00
Dolan
a531713214
Remove usage of Utility class
2019-06-26 22:12:18 +01:00
Dolan
564a055316
Remove jsonify method
2019-06-26 02:11:43 +01:00
Dolan
6c29c4fb1f
Merge pull request #343 from markcharyk/no-pretty-xml
...
Make prettified XML a Packer-wide configurable option
2019-06-26 00:44:33 +01:00
Dolan
edbb4ce9f2
Merge branch 'master' into feat/declaritive
2019-06-26 00:38:21 +01:00
Dolan
e2574ec23b
Turn methods into "add()"
2019-06-25 23:17:56 +01:00
Dolan
3ef8f5311d
Make fixed layout declaritive
2019-06-25 20:57:46 +01:00
Dolan
552580bc47
Merge pull request #340 from filippomuscolino/feat/row-height
...
Add table row height
2019-06-25 20:18:17 +01:00
fmuscolino
b08354494c
Improve tests
2019-06-25 14:48:45 +02:00
fmuscolino
f54b9a197d
Fix: add missing exports
2019-06-25 14:35:35 +02:00
fmuscolino
2d4412ce51
Add table row height
2019-06-25 12:02:53 +02:00
Dolan
b566b0f765
Simplify multiple addXXX methods into a single add method for Footer
2019-06-25 01:58:09 +01:00
Dolan
384d144a85
Simplify multiple addXXX methods into a single add method
2019-06-25 01:52:02 +01:00
Dolan
c97d15cb9f
Remove create table helper function
2019-06-25 01:21:28 +01:00
Dolan
dfe986331d
Make media return a picture run instead
2019-06-23 22:36:01 +01:00
Mark Charyk
72c32378c5
Make prettified XML a Packer-wide configurable option
...
The xml() function was being passed a flag for pretty printing the XML in word/document.xml. This was causing some parsers (not Word itself) to break when they didn't expect whitepsace. It was also causing some files to be prettified and others to be ugly. This ensures consistent prettification.
2019-06-21 13:53:01 -07:00
Zahra
1dfc27ba08
Multiple columns in a section
2019-06-21 01:22:27 +05:30
Dolan
7bc00926eb
Merge branch 'master' of github.com:dolanmiu/docx into feat/declaritive
2019-06-17 01:52:46 +01:00
Dolan
fb65bb4207
Turn Run into a declaritive API
2019-06-17 01:51:57 +01:00
Dolan
cb42c74a8d
Make Paragraph declaritive
2019-06-12 01:03:36 +01:00
Dolan
a5afce458d
Merge pull request #262 from aravindballa/master
...
Feature: add line numbers to section
2019-06-05 17:38:49 +01:00
Aravind Balla
2f687125d1
fix lint issue in section-properties.ts
2019-06-05 13:01:24 +05:30
Travis Fletcher
3a593a53d3
Fix tests
2019-05-16 11:15:20 -04:00
Travis Fletcher
31a9111667
Fix merging of 3+ cells vertically
2019-05-15 18:14:39 -04:00
Nick Georgiou
29f890918c
Fix spelling of "margin"
2019-04-18 13:55:18 +10:00
Bruce Duncan
77edf8862b
Added constant EMPTY_OBJECT (an empty sealed object) that is used to indicate to the xml
library that an empty XML element should be generated, and use it in the JSON hardcoded into the tests.
2019-04-10 13:47:38 -04:00
Bruce Duncan
bb1604cd8f
Turn back on no-null-keyword. Use empty object instead of null
to signal to the xml
library that an empty element should be produced. Update the related tests.
...
Related to #306
2019-04-10 01:28:37 -04:00
Bruce Duncan
816cb54b14
Optimize XML output by properly constructing objects to send to the xml library so that it can produce proper empty elements.
...
Rework the way attributes are stored in ImportedXmlComponent to match elsewhere (required allowing for a null xmlKeys in the XmlAttributeComponent interface).
Rework the way paragraphs get added to the end of table cells if needed.
The goal in both reworks is to not mess around with the objects output from `prepForXml` if we can avoid it.
Made the output of RunProperties, ParagraphProperties, TableCellProperties, TableRowProperties, and TableProperties all optional based on whether they contain any attributes or children. Changed code in PageBorders, TableCellMargin, and TableCellBorders that implemented this same thing by overriding `prepForXml` so that it uses the new XmlComponent subclass instead.
Removed commented out code that attempted to fix-up XML output and make proper empty elements.
Fixed all affected tests.
Turn off `no-null-keyword` in the linter as we need to use null to signal to the `xml` library to create an empty element with no attributes (`undefined` will not work in its place).
Fixes #306
2019-04-09 05:27:18 -04:00
Bruce Duncan
a2a01edc24
Change table cell margin type attribute form w:sz to w:type as per http://officeopenxml.com/WPtableCellMargins.php
...
Fixes #303
2019-04-08 13:50:40 -04:00
Dolan
193d0c4239
Merge pull request #299 from filippomuscolino/fix-duplicated-section
...
Fix: duplicated generation of last section properties
2019-04-05 01:07:10 +01:00
fmuscolino
272e2496f4
Fix duplicated generation of last section properties
2019-04-04 17:43:54 +02:00
Dolan
c6ab47e838
Add shading
2019-03-21 01:06:07 +00:00
Dolan
e67fd9cb2b
Add tests and margain
2019-03-18 23:50:21 +00:00
Dolan
2cb7d44a77
Work on new table API
2019-03-13 02:29:11 +00:00
Dolan
f3ba11b21c
Improving table api
2019-03-08 01:09:21 +00:00
Dolan
1486d3de56
Improve documentation
2019-03-07 01:01:01 +00:00
fmuscolino
f76471f553
Fix test
2019-03-06 13:33:50 +01:00