xlsx-template-browser 0.2.1 → 0.3.1
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 +18 -1
- package/dist/index.cjs +2331 -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 +2293 -0
- package/dist/index.js.map +1 -0
- package/package.json +27 -4
- package/lib/excelHelpers.js +0 -149
- package/lib/helpers.js +0 -63
- package/lib/index.js +0 -31
- package/lib/main.js +0 -294
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,21 @@ 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.1
|
|
152
|
+
|
|
153
|
+
* Bugfix in types
|
|
154
|
+
* Proper extensions of rows and columns for tables, pivot tables, data validations,
|
|
155
|
+
and conitional formatting un case of multiple extensions
|
|
156
|
+
* Proper handling of undefined ${table:} values
|
|
157
|
+
|
|
158
|
+
### Version 0.3.0
|
|
159
|
+
|
|
160
|
+
* Performance is optimized
|
|
161
|
+
* The libary supports merged cells, tables, pivot tables, changes in comments,
|
|
162
|
+
URL rendering
|
|
163
|
+
|
|
147
164
|
## Alternatives
|
|
148
165
|
|
|
149
166
|
There are few altertantives for this library:
|