@silurus/ooxml 0.24.0 → 0.24.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/index.cjs +1 -1
- package/dist/index.mjs +1 -1
- package/dist/types/index.d.ts +8 -0
- package/dist/types/xlsx.d.ts +8 -0
- package/dist/xlsx-BCjsF2z0.cjs +11 -0
- package/dist/xlsx-BMED2kI6.js +2907 -0
- package/dist/xlsx.cjs +1 -1
- package/dist/xlsx.mjs +1 -1
- package/package.json +1 -1
- package/dist/xlsx-BjHnRtA7.cjs +0 -11
- package/dist/xlsx-BnoJbkJM.js +0 -2887
package/dist/index.cjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
Object.defineProperty(exports,Symbol.toStringTag,{value:`Module`});const e=require(`./xlsx-
|
|
1
|
+
Object.defineProperty(exports,Symbol.toStringTag,{value:`Module`});const e=require(`./xlsx-BCjsF2z0.cjs`),t=require(`./pptx-Ywwc_EMp.cjs`),n=require(`./docx-DKPVLT6O.cjs`);Object.defineProperty(exports,`docx`,{enumerable:!0,get:function(){return n.t}}),Object.defineProperty(exports,`pptx`,{enumerable:!0,get:function(){return t.t}}),Object.defineProperty(exports,`xlsx`,{enumerable:!0,get:function(){return e.t}});
|
package/dist/index.mjs
CHANGED
package/dist/types/index.d.ts
CHANGED
|
@@ -1978,6 +1978,14 @@ declare interface Worksheet {
|
|
|
1978
1978
|
* Cross-sheet `<xm:f>` data references are resolved to numeric values at
|
|
1979
1979
|
* parse time, and theme + tint colors are flattened to `#RRGGBB`. */
|
|
1980
1980
|
sparklineGroups?: SparklineGroup[];
|
|
1981
|
+
/** Family name of the workbook's Normal-style font, resolved by the parser
|
|
1982
|
+
* from `<cellStyleXfs>[0].fontId` → `<fonts>[fontId].name.val`. The
|
|
1983
|
+
* renderer uses this together with `defaultFontSize` to compute the Max
|
|
1984
|
+
* Digit Width for column-width pixel conversion (ECMA-376 §18.3.1.13).
|
|
1985
|
+
* Workbook-wide value, denormalized onto every worksheet. */
|
|
1986
|
+
defaultFontFamily?: string;
|
|
1987
|
+
/** Point size of the workbook's Normal-style font (`<fonts>[N].sz.val`). */
|
|
1988
|
+
defaultFontSize?: number;
|
|
1981
1989
|
}
|
|
1982
1990
|
|
|
1983
1991
|
export declare namespace xlsx {
|
package/dist/types/xlsx.d.ts
CHANGED
|
@@ -811,6 +811,14 @@ export declare interface Worksheet {
|
|
|
811
811
|
* Cross-sheet `<xm:f>` data references are resolved to numeric values at
|
|
812
812
|
* parse time, and theme + tint colors are flattened to `#RRGGBB`. */
|
|
813
813
|
sparklineGroups?: SparklineGroup[];
|
|
814
|
+
/** Family name of the workbook's Normal-style font, resolved by the parser
|
|
815
|
+
* from `<cellStyleXfs>[0].fontId` → `<fonts>[fontId].name.val`. The
|
|
816
|
+
* renderer uses this together with `defaultFontSize` to compute the Max
|
|
817
|
+
* Digit Width for column-width pixel conversion (ECMA-376 §18.3.1.13).
|
|
818
|
+
* Workbook-wide value, denormalized onto every worksheet. */
|
|
819
|
+
defaultFontFamily?: string;
|
|
820
|
+
/** Point size of the workbook's Normal-style font (`<fonts>[N].sz.val`). */
|
|
821
|
+
defaultFontSize?: number;
|
|
814
822
|
}
|
|
815
823
|
|
|
816
824
|
/**
|