@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 CHANGED
@@ -1 +1 @@
1
- Object.defineProperty(exports,Symbol.toStringTag,{value:`Module`});const e=require(`./xlsx-BjHnRtA7.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}});
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
@@ -1,4 +1,4 @@
1
- import { t as e } from "./xlsx-BnoJbkJM.js";
1
+ import { t as e } from "./xlsx-BMED2kI6.js";
2
2
  import { t } from "./pptx-nyHInjlO.js";
3
3
  import { t as n } from "./docx-C_zG3e0V.js";
4
4
  export { n as docx, t as pptx, e as xlsx };
@@ -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 {
@@ -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
  /**