Comparing version 0.2.8 to 0.2.9
@@ -42,3 +42,3 @@ /** | ||
this.model = model; | ||
this.map = { | ||
@@ -52,8 +52,8 @@ r: new RichTextXform(), | ||
utils.inherits(SharedStringXform, BaseXform, { | ||
write: function(xmlStream, model) { | ||
model = model || this.model; | ||
xmlStream.openNode('si'); | ||
if (model.richText) { | ||
if (model && _.has(model, 'richText') && model.richText) { | ||
var r = this.map.r; | ||
@@ -60,0 +60,0 @@ _.each(model.richText, function(text) { |
{ | ||
"name": "exceljs", | ||
"version": "0.2.8", | ||
"version": "0.2.9", | ||
"description": "Excel Workbook Manager - Read and Write xlsx and csv Files.", | ||
@@ -5,0 +5,0 @@ "private": false, |
@@ -14,9 +14,3 @@ # ExcelJS | ||
<ul> | ||
<li> | ||
<a href="rich-text">Rich Text Value</a> | ||
<ul><li>Cells now support <b><i>in-cell</i></b> formatting - Thanks to <a href="https://github.com/pvadam">Peter ADAM</a></li></ul> | ||
</li> | ||
<li>Fixed typo in README - Thanks to <a href="https://github.com/MRdNk">MRdNk</a></li> | ||
<li>Fixing emit in worksheet-reader - Thanks to <a href="https://github.com/alangunning">Alan Gunning</a></li> | ||
<li>Clearer Docs - Thanks to <a href="https://github.com/miensol">miensol</a></li> | ||
<li>Fixed "read property 'richText' of undefined error. Thanks to <a href="https://github.com/james075">james075</a></li> | ||
</ul> | ||
@@ -27,3 +21,3 @@ | ||
<ul> | ||
<li>I am part-way through refactoring the xml render/parse code because I'm finding underscore templates not up to the task. | ||
<li>I am still part-way through refactoring the xml render/parse code because I'm finding underscore templates not up to the task. | ||
The code looks a bit like a dog's breakfast right now and it's going to make pull-requests more difficult but I should | ||
@@ -1040,1 +1034,2 @@ have the refactoring complete by next release.</li> | ||
| 0.2.7 | <ul><li><a href="#data-validations">Data Validations</a><ul><li>Cells can now define validations that controls the valid values the cell can have</li></ul></li></ul> | | ||
| 0.2.8 | <ul><li><a href="rich-text">Rich Text Value</a><ul><li>Cells now support <b><i>in-cell</i></b> formatting - Thanks to <a href="https://github.com/pvadam">Peter ADAM</a></li></ul></li><li>Fixed typo in README - Thanks to <a href="https://github.com/MRdNk">MRdNk</a></li><li>Fixing emit in worksheet-reader - Thanks to <a href="https://github.com/alangunning">Alan Gunning</a></li><li>Clearer Docs - Thanks to <a href="https://github.com/miensol">miensol</a></li></ul> | |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
380679
1033