@office-kit/xlsx 0.9.1 → 0.9.2
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/dist/io.mjs +2 -2
- package/dist/{load-DeAQKGQN.mjs → load-BA30X4-M.mjs} +41 -18
- package/dist/load-BA30X4-M.mjs.map +1 -0
- package/dist/node.mjs +1 -1
- package/dist/{save-OTuS72yI.mjs → save-C9ChJfWM.mjs} +2 -2
- package/dist/{save-OTuS72yI.mjs.map → save-C9ChJfWM.mjs.map} +1 -1
- package/dist/streaming.mjs +2 -2
- package/dist/{stylesheet-writer-P1Hxoqzm.mjs → stylesheet-writer-DOGKBGEk.mjs} +48 -12
- package/dist/stylesheet-writer-DOGKBGEk.mjs.map +1 -0
- package/dist/worksheet/worksheet.d.ts +10 -2
- package/dist/worksheet-C6CWgvP5.mjs.map +1 -1
- package/package.json +1 -1
- package/dist/load-DeAQKGQN.mjs.map +0 -1
- package/dist/stylesheet-writer-P1Hxoqzm.mjs.map +0 -1
|
@@ -116,10 +116,18 @@ export interface Worksheet {
|
|
|
116
116
|
* via the existing relsExtras machinery).
|
|
117
117
|
*/
|
|
118
118
|
backgroundPictureRId?: string;
|
|
119
|
+
/**
|
|
120
|
+
* `<legacyDrawing r:id="…"/>` — VML drawing carrying form-control / shape
|
|
121
|
+
* overlays. Ignored on save when the sheet has `legacyComments`: Excel puts
|
|
122
|
+
* comment markers in the same VML, and the writer regenerates that part
|
|
123
|
+
* from the comment list instead. Otherwise re-emitted verbatim, with the
|
|
124
|
+
* rels link riding `relsExtras` and the VML part riding `passthrough`.
|
|
125
|
+
*/
|
|
126
|
+
legacyDrawingRId?: string;
|
|
119
127
|
/**
|
|
120
128
|
* `<legacyDrawingHF r:id="…"/>` — VML drawing used for header/footer
|
|
121
|
-
* background images on print. Parallel to legacyDrawing
|
|
122
|
-
*
|
|
129
|
+
* background images on print. Parallel to legacyDrawing; the rels link
|
|
130
|
+
* rides relsExtras.
|
|
123
131
|
*/
|
|
124
132
|
legacyDrawingHFRId?: string;
|
|
125
133
|
/**
|