@silurus/ooxml 0.9.0 → 0.10.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/dist/index.cjs +1 -1
- package/dist/index.mjs +1 -1
- package/dist/types/index.d.ts +5 -0
- package/dist/types/xlsx.d.ts +5 -0
- package/dist/xlsx-BJUBRQc-.cjs +5 -0
- package/dist/xlsx-CLl6pKA0.js +1911 -0
- package/dist/xlsx.cjs +1 -1
- package/dist/xlsx.mjs +1 -1
- package/package.json +1 -1
- package/dist/xlsx-C_nrVEax.js +0 -1771
- package/dist/xlsx-DkV1Stwd.cjs +0 -5
package/dist/index.cjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
Object.defineProperty(exports,Symbol.toStringTag,{value:`Module`});const e=require(`./pptx-BGtPXrb6.cjs`),t=require(`./xlsx-
|
|
1
|
+
Object.defineProperty(exports,Symbol.toStringTag,{value:`Module`});const e=require(`./pptx-BGtPXrb6.cjs`),t=require(`./xlsx-BJUBRQc-.cjs`),n=require(`./docx-5SgqrF74.cjs`);Object.defineProperty(exports,`docx`,{enumerable:!0,get:function(){return n.t}}),Object.defineProperty(exports,`pptx`,{enumerable:!0,get:function(){return e.t}}),Object.defineProperty(exports,`xlsx`,{enumerable:!0,get:function(){return t.t}});
|
package/dist/index.mjs
CHANGED
package/dist/types/index.d.ts
CHANGED
|
@@ -82,6 +82,11 @@ declare interface Cell {
|
|
|
82
82
|
colRef: string;
|
|
83
83
|
value: CellValue;
|
|
84
84
|
styleIndex: number;
|
|
85
|
+
/** Raw `<f>` formula text (ECMA-376 §18.3.1.40), when present. The renderer
|
|
86
|
+
* uses this to recompute volatile functions (TODAY, NOW) at display time
|
|
87
|
+
* so the cached `<v>` — frozen when the file was last saved — doesn't
|
|
88
|
+
* show a stale date. */
|
|
89
|
+
formula?: string;
|
|
85
90
|
}
|
|
86
91
|
|
|
87
92
|
declare interface CellBorders {
|
package/dist/types/xlsx.d.ts
CHANGED
|
@@ -43,6 +43,11 @@ export declare interface Cell {
|
|
|
43
43
|
colRef: string;
|
|
44
44
|
value: CellValue;
|
|
45
45
|
styleIndex: number;
|
|
46
|
+
/** Raw `<f>` formula text (ECMA-376 §18.3.1.40), when present. The renderer
|
|
47
|
+
* uses this to recompute volatile functions (TODAY, NOW) at display time
|
|
48
|
+
* so the cached `<v>` — frozen when the file was last saved — doesn't
|
|
49
|
+
* show a stale date. */
|
|
50
|
+
formula?: string;
|
|
46
51
|
}
|
|
47
52
|
|
|
48
53
|
declare interface CellRange {
|