xlsx-template-browser 0.2.0 → 0.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +11 -1
- package/dist/index.cjs +2287 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.cts +11 -0
- package/dist/index.d.ts +11 -0
- package/dist/index.js +2249 -0
- package/dist/index.js.map +1 -0
- package/package.json +26 -4
- package/lib/excelHelpers.js +0 -149
- package/lib/helpers.js +0 -63
- package/lib/index.js +0 -31
- package/lib/main.js +0 -289
package/README.md
CHANGED
|
@@ -129,7 +129,9 @@ To use the library, you need the code like this:
|
|
|
129
129
|
same number of insertions.
|
|
130
130
|
* Merged cells, named tables or named cells/ranges below rows where further
|
|
131
131
|
rows are inserted are moved down.
|
|
132
|
-
|
|
132
|
+
* Formulae are not adjusted.
|
|
133
|
+
* Tables, merged cells, conditional formatting, and data validation may
|
|
134
|
+
break if arrays are inserted from the left, as existing cells will be shifted
|
|
133
135
|
* As a corollary to this, it is not always easy to build formulae that refer
|
|
134
136
|
to cells in a table (e.g. summing all rows) where the exact number of rows
|
|
135
137
|
or columns is not known in advance. There are two strategies for dealing
|
|
@@ -144,6 +146,14 @@ To use the library, you need the code like this:
|
|
|
144
146
|
column in the table as a logical range.
|
|
145
147
|
* Placeholders only work in simple cells and tables.
|
|
146
148
|
|
|
149
|
+
## Changelog History
|
|
150
|
+
|
|
151
|
+
### Version 0.3.0
|
|
152
|
+
|
|
153
|
+
* Performance is optimized
|
|
154
|
+
* The libary supports merged cells, tables, pivot tables, changes in comments,
|
|
155
|
+
URL rendering
|
|
156
|
+
|
|
147
157
|
## Alternatives
|
|
148
158
|
|
|
149
159
|
There are few altertantives for this library:
|