@silurus/ooxml 0.77.0 → 0.78.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.
Files changed (33) hide show
  1. package/README.md +2 -2
  2. package/dist/{canvas-viewer-mechanics-DTkBvITv.js → canvas-viewer-mechanics-ChxLdOJg.js} +1 -1
  3. package/dist/{document-pull-client-iWr8-S7P.js → document-pull-client-xsdVDuVD.js} +1799 -1769
  4. package/dist/{docx-B1gYS6eU.js → docx-CZC3j4s4.js} +14 -14
  5. package/dist/docx.mjs +3 -3
  6. package/dist/docx_parser_bg.wasm +0 -0
  7. package/dist/index.mjs +3 -3
  8. package/dist/{line-distribute-C1r2zvji.js → line-distribute-HuZyTARz.js} +133 -72
  9. package/dist/{line-metrics-BdCACYlq.js → line-metrics-z9AdgPaZ.js} +2722 -1842
  10. package/dist/node.mjs +7 -7
  11. package/dist/{pptx-CQjtK_o7.js → pptx-c3UgGKIs.js} +38 -38
  12. package/dist/pptx.mjs +4 -4
  13. package/dist/pptx_parser_bg.wasm +0 -0
  14. package/dist/render-worker-host-BzxTAscX.js +27 -0
  15. package/dist/render-worker-host-CBjWHxMb.js +27 -0
  16. package/dist/render-worker-host-Ivhx3KII.js +27 -0
  17. package/dist/{render-Ca80nlG5.js → render-yhFUeiYl.js} +1 -1
  18. package/dist/{resource-measurement-E_S_iau4.js → resource-measurement-5g27Av6n.js} +1 -1
  19. package/dist/{session-KvKxQAeL.js → session-BOuXp10X.js} +2 -2
  20. package/dist/{slide-pull-client-BXb67StB.js → slide-pull-client-DKckZrLx.js} +1172 -879
  21. package/dist/types/docx.d.ts +141 -8
  22. package/dist/types/index.d.ts +178 -14
  23. package/dist/types/node.d.ts +171 -8
  24. package/dist/types/pptx.d.ts +102 -8
  25. package/dist/types/xlsx.d.ts +161 -8
  26. package/dist/{worksheet-pull-client-YzjJMOns.js → worksheet-pull-client-CMDRPZ5E.js} +2 -2
  27. package/dist/{xlsx-RLCmd1Bm.js → xlsx-BAScjxlC.js} +1621 -1298
  28. package/dist/xlsx.mjs +4 -4
  29. package/dist/xlsx_parser_bg.wasm +0 -0
  30. package/package.json +1 -1
  31. package/dist/render-worker-host-BozYMmxO.js +0 -27
  32. package/dist/render-worker-host-C96AiK8e.js +0 -27
  33. package/dist/render-worker-host-EHG5j8FK.js +0 -27
@@ -10,7 +10,7 @@ interface MathRenderer {
10
10
  mathMLToSvg(mathml: string): Promise<MathSvg>;
11
11
  }
12
12
  //#endregion
13
- //#region dist/.types-work/hyperlink-BqgLAFOG.d.ts
13
+ //#region dist/.types-work/hyperlink-R5D7g--F.d.ts
14
14
  type MathStyle = 'roman' | 'italic' | 'bold' | 'boldItalic';
15
15
  interface MathRun {
16
16
  kind: 'run';
@@ -115,6 +115,68 @@ interface MathBorderBox {
115
115
  base: MathNode[];
116
116
  }
117
117
  type MathNode = MathRun | MathFraction | MathScript | MathNary | MathDelimiter | MathRadical | MathLimit | MathArray | MathGroupChr | MathBar | MathAccent | MathFunc | MathGroup | MathPhant | MathSPre | MathBox | MathBorderBox;
118
+ interface Duotone$1 {
119
+ clr1: string;
120
+ clr2: string;
121
+ }
122
+ type Fill = SolidFill | NoFill | GradientFill | PatternFill | ImageFill;
123
+ interface SolidFill {
124
+ fillType: 'solid';
125
+ color: string;
126
+ }
127
+ interface NoFill {
128
+ fillType: 'none';
129
+ }
130
+ interface GradientStop {
131
+ position: number;
132
+ color: string;
133
+ }
134
+ interface GradientFill {
135
+ fillType: 'gradient';
136
+ stops: GradientStop[];
137
+ angle: number;
138
+ gradType: string;
139
+ scaled?: boolean;
140
+ path?: 'shape' | 'circle' | 'rect' | string;
141
+ fillToRect?: FillRect;
142
+ tileRect?: FillRect;
143
+ flip?: 'none' | 'x' | 'y' | 'xy' | string;
144
+ rotWithShape?: boolean;
145
+ }
146
+ interface PatternFill {
147
+ fillType: 'pattern';
148
+ fg: string;
149
+ bg: string;
150
+ preset: string;
151
+ }
152
+ interface FillRect {
153
+ l?: number;
154
+ t?: number;
155
+ r?: number;
156
+ b?: number;
157
+ }
158
+ interface TileInfo {
159
+ tx: number;
160
+ ty: number;
161
+ sx: number;
162
+ sy: number;
163
+ flip: string;
164
+ algn?: string;
165
+ }
166
+ interface ImageFill {
167
+ fillType: 'image';
168
+ imagePath: string;
169
+ mimeType: string;
170
+ fillRect?: FillRect;
171
+ tile?: TileInfo;
172
+ alpha?: number;
173
+ duotone?: Duotone$1;
174
+ }
175
+ interface ArrowEnd {
176
+ type: string;
177
+ w: string;
178
+ len: string;
179
+ }
118
180
  type SpaceLine = {
119
181
  type: 'pct';
120
182
  val: number;
@@ -125,6 +187,9 @@ type SpaceLine = {
125
187
  interface ChartSeries {
126
188
  name: string;
127
189
  color: string | null;
190
+ fillPattern?: PatternFill | null;
191
+ lineColor?: string | null;
192
+ lineWidthEmu?: number | null;
128
193
  values: (number | null)[];
129
194
  dataPointColors?: (string | null)[] | null;
130
195
  dataLabelColors?: (string | null)[] | null;
@@ -134,6 +199,8 @@ interface ChartSeries {
134
199
  categories?: string[] | null;
135
200
  showMarker?: boolean | null;
136
201
  valFormatCode?: string | null;
202
+ catFormatCode?: string | null;
203
+ catFormatCodes?: (string | null)[] | null;
137
204
  markerSymbol?: string | null;
138
205
  markerSize?: number | null;
139
206
  markerFill?: string | null;
@@ -195,6 +262,7 @@ interface ChartSeriesDataLabels {
195
262
  position?: string;
196
263
  fontColor?: string;
197
264
  formatCode?: string;
265
+ separator?: string;
198
266
  fontBold?: boolean;
199
267
  fontSizeHpt?: number;
200
268
  labelBox?: ChartLabelBox;
@@ -212,12 +280,27 @@ interface ChartErrBars {
212
280
  lineWidthEmu?: number;
213
281
  dash?: string;
214
282
  }
215
- type ChartType = 'line' | 'stackedLine' | 'stackedLinePct' | 'clusteredBar' | 'clusteredBarH' | 'stackedBar' | 'stackedBarH' | 'stackedBarPct' | 'stackedBarHPct' | 'area' | 'stackedArea' | 'stackedAreaPct' | 'pie' | 'doughnut' | 'scatter' | 'bubble' | 'radar' | 'waterfall' | 'stock' | 'boxWhisker' | 'sunburst' | string;
283
+ type ChartType = 'line' | 'stackedLine' | 'stackedLinePct' | 'clusteredBar' | 'clusteredBarH' | 'stackedBar' | 'stackedBarH' | 'stackedBarPct' | 'stackedBarHPct' | 'area' | 'stackedArea' | 'stackedAreaPct' | 'pie' | 'doughnut' | 'scatter' | 'bubble' | 'radar' | 'waterfall' | 'stock' | 'boxWhisker' | 'sunburst' | 'treemap' | string;
284
+ interface ChartExElementStyle {
285
+ fillPaints?: Array<SolidFill | GradientFill | PatternFill | null> | null;
286
+ fillColors?: Array<string | null> | null;
287
+ fillHidden?: boolean | null;
288
+ lineColors?: Array<string | null> | null;
289
+ lineWidthEmu?: number | null;
290
+ lineHidden?: boolean | null;
291
+ lineDash?: string | null;
292
+ lineCap?: string | null;
293
+ lineJoin?: string | null;
294
+ fillColorIndex?: number | null;
295
+ lineColorIndex?: number | null;
296
+ }
216
297
  interface ChartModel {
217
298
  chartType: ChartType;
218
299
  title: string | null;
300
+ titlePresent?: boolean;
219
301
  categories: string[];
220
302
  series: ChartSeries[];
303
+ chartTextBoxes?: ChartTextBox[] | null;
221
304
  varyColors?: boolean | null;
222
305
  showDataLabels: boolean;
223
306
  valMin: number | null;
@@ -245,6 +328,7 @@ interface ChartModel {
245
328
  catAxisFontColor?: string | null;
246
329
  valAxisFontColor?: string | null;
247
330
  dataLabelFontSizeHpt: number | null;
331
+ dataLabelFontBold?: boolean | null;
248
332
  subtotalIndices: number[];
249
333
  legendManualLayout?: LegendManualLayout | null;
250
334
  valAxisFormatCode?: string | null;
@@ -289,8 +373,12 @@ interface ChartModel {
289
373
  titleManualLayout?: ChartManualLayout | null;
290
374
  plotAreaManualLayout?: ChartManualLayout | null;
291
375
  scatterStyle?: string | null;
376
+ bubbleScale?: number | null;
377
+ bubbleSizeRepresents?: 'area' | 'w' | null;
378
+ showNegativeBubbles?: boolean | null;
292
379
  radarStyle?: string | null;
293
380
  secondaryValAxis?: SecondaryValueAxis | null;
381
+ secondaryCatAxis?: SecondaryValueAxis | null;
294
382
  date1904?: boolean;
295
383
  holeSize?: number | null;
296
384
  firstSliceAngle?: number | null;
@@ -308,6 +396,8 @@ interface ChartModel {
308
396
  valAxisOrientation?: 'minMax' | 'maxMin' | string | null;
309
397
  catAxisOrientation?: 'minMax' | 'maxMin' | string | null;
310
398
  catAxisTickLabelPos?: string | null;
399
+ catAxisTickLabelSkip?: number | null;
400
+ catAxisTickMarkSkip?: number | null;
311
401
  valAxisTickLabelPos?: string | null;
312
402
  catAxisLabelRotation?: number | null;
313
403
  stockHiLowLines?: boolean | null;
@@ -315,11 +405,39 @@ interface ChartModel {
315
405
  stockUpDownBars?: boolean | null;
316
406
  chartexBox?: ChartexBoxWhisker | null;
317
407
  chartexSunburst?: ChartexSunburst | null;
408
+ chartexTreemap?: ChartexTreemap | null;
318
409
  chartexAccents?: string[] | null;
410
+ chartexColorPalette?: Array<string | null> | null;
411
+ chartexColorStyleMethod?: string | null;
412
+ chartexDataPointStyle?: ChartExElementStyle | null;
413
+ chartexDataPointLineStyle?: ChartExElementStyle | null;
414
+ chartexDataPointMarkerStyle?: ChartExElementStyle | null;
415
+ }
416
+ interface ChartTextRun {
417
+ text: string;
418
+ fontSizeHpt?: number | null;
419
+ bold?: boolean | null;
420
+ color?: string | null;
421
+ fontFace?: string | null;
422
+ }
423
+ interface ChartTextParagraph {
424
+ runs: ChartTextRun[];
425
+ align?: 'l' | 'ctr' | 'r' | 'just' | 'dist' | string | null;
426
+ }
427
+ interface ChartTextBox {
428
+ x: number;
429
+ y: number;
430
+ w: number;
431
+ h: number;
432
+ paragraphs: ChartTextParagraph[];
433
+ verticalAnchor?: 't' | 'ctr' | 'b' | 'just' | 'dist' | string | null;
434
+ wrap?: 'none' | 'square' | string | null;
319
435
  }
320
436
  interface ChartexBoxSeries {
321
437
  name: string;
322
438
  color?: string | null;
439
+ lineColor?: string | null;
440
+ lineWidthEmu?: number | null;
323
441
  valuesByCategory: number[][];
324
442
  meanMarker: boolean;
325
443
  meanLine: boolean;
@@ -338,6 +456,10 @@ interface ChartexSunburstRow {
338
456
  interface ChartexSunburst {
339
457
  rows: ChartexSunburstRow[];
340
458
  }
459
+ interface ChartexTreemap {
460
+ rows: ChartexSunburstRow[];
461
+ parentLabelLayout?: string | null;
462
+ }
341
463
  interface SecondaryValueAxis {
342
464
  min: number | null;
343
465
  max: number | null;
@@ -356,8 +478,10 @@ interface SecondaryValueAxis {
356
478
  titleFontColor?: string | null;
357
479
  }
358
480
  interface ChartManualLayout {
359
- xMode: string;
360
- yMode: string;
481
+ xMode?: string;
482
+ yMode?: string;
483
+ wMode?: string;
484
+ hMode?: string;
361
485
  layoutTarget?: string;
362
486
  x: number;
363
487
  y: number;
@@ -365,8 +489,10 @@ interface ChartManualLayout {
365
489
  h?: number;
366
490
  }
367
491
  interface LegendManualLayout {
368
- xMode: string;
369
- yMode: string;
492
+ xMode?: string;
493
+ yMode?: string;
494
+ wMode?: string;
495
+ hMode?: string;
370
496
  x: number;
371
497
  y: number;
372
498
  w: number;
@@ -510,7 +636,12 @@ interface FindHighlightColors {
510
636
  active?: string;
511
637
  }
512
638
  //#endregion
513
- //#region dist/.types-work/xlsx-DrlamDaR.d.ts
639
+ //#region dist/.types-work/xlsx-C3uqud8R.d.ts
640
+ type ShapeFill = Exclude<Fill, {
641
+ fillType: 'image';
642
+ } | {
643
+ fillType: 'none';
644
+ }>;
514
645
  interface Workbook {
515
646
  sheets: SheetMeta[];
516
647
  date1904?: boolean;
@@ -772,6 +903,7 @@ interface DataValidation {
772
903
  errorMessage?: string;
773
904
  }
774
905
  interface ChartAnchor {
906
+ zOrder?: number;
775
907
  fromCol: number;
776
908
  fromColOff: number;
777
909
  fromRow: number;
@@ -797,6 +929,7 @@ interface ShapeAnchor {
797
929
  shapes: ShapeInfo[];
798
930
  }
799
931
  interface ShapeInfo {
932
+ zOrder?: number;
800
933
  x: number;
801
934
  y: number;
802
935
  w: number;
@@ -805,8 +938,26 @@ interface ShapeInfo {
805
938
  flipH?: boolean;
806
939
  flipV?: boolean;
807
940
  fillColor?: string;
941
+ fill?: ShapeFill;
808
942
  strokeColor?: string;
809
943
  strokeWidth: number;
944
+ strokeFill?: Exclude<Fill, {
945
+ fillType: 'image';
946
+ } | {
947
+ fillType: 'none';
948
+ }>;
949
+ strokeDashStyle?: string;
950
+ strokeCustomDash?: Array<{
951
+ dash: number;
952
+ space: number;
953
+ }>;
954
+ strokeLineCap?: 'butt' | 'round' | 'square';
955
+ strokeLineJoin?: 'round' | 'bevel' | 'miter';
956
+ strokeMiterLimit?: number;
957
+ strokeAlignment?: 'ctr' | 'in';
958
+ strokeCmpd?: string;
959
+ strokeHeadEnd?: ArrowEnd;
960
+ strokeTailEnd?: ArrowEnd;
810
961
  geom: ShapeGeom;
811
962
  text?: ShapeText;
812
963
  }
@@ -912,6 +1063,7 @@ type PathCmd = {
912
1063
  op: 'close';
913
1064
  };
914
1065
  interface ImageAnchor {
1066
+ zOrder?: number;
915
1067
  fromCol: number;
916
1068
  fromColOff: number;
917
1069
  fromRow: number;
@@ -1529,6 +1681,7 @@ declare class XlsxViewerEngine implements ZoomableViewer {
1529
1681
  private paintCornerGutter;
1530
1682
  private onGutterPointerDown;
1531
1683
  private applyGroupToggle;
1684
+ private scrollOutlineSummaryToStart;
1532
1685
  private applyLevelButton;
1533
1686
  private setBandHidden;
1534
1687
  private recordSizeOverride;
@@ -1699,4 +1852,4 @@ declare class XlsxSheetViewer implements ZoomableViewer {
1699
1852
  }
1700
1853
  declare function resolveSharedStrings(ws: Worksheet, sharedStrings: SharedString[]): Worksheet;
1701
1854
  //#endregion
1702
- export { type AutoResizeOptions, type Border, type BorderEdge, type Cell, type CellAddress, type CellFill, type CellFont, type CellValue, type CellXf, type CfIcon, type CfRule, type CfStop, type CfValue, type ChartAnchor, type ChartDataLabelOverride, type ChartDataPointOverride, type ChartErrBars, type ChartLabelBox, type ChartManualLayout, type ChartModel, type ChartRect, type ChartSeries, type ChartSeriesDataLabels, type ChartTrendline, type ChartType, type ChartexBoxSeries, type ChartexBoxWhisker, type ChartexSunburst, type ChartexSunburstRow, type ConditionalFormat, type DataValidation, type DefinedName, type Duotone, type Dxf, type FindHighlightColors, type FindMatch, type FindMatchesOptions, type GradientFillSpec, type HiddenSheetMode, type Hyperlink, type HyperlinkTarget, type ImageAnchor, type LegendManualLayout, type LoadOptions, MAX_SELECTION_AREAS, MAX_SELECTION_CONTEXT_CELLS, MAX_SELECTION_CONTEXT_TEXT_CHARACTERS, type MathAccent, type MathArray, type MathBar, type MathBorderBox, type MathBox, type MathDelimiter, type MathFraction, type MathFunc, type MathGroup, type MathGroupChr, type MathLimit, type MathNary, type MathNode, type MathPhant, type MathRadical, type MathRenderer, type MathRun, type MathSPre, type MathScript, type MathStyle, type MathSvg, type MergeCell, type NumFmt, OoxmlDecodedImageLimitError, type OoxmlDecodedImageLimitMetric, OoxmlError, type OoxmlErrorCode, type OoxmlErrorStage, type OoxmlFormat, type OoxmlResourceLimit, OoxmlResourceLimitError, type OoxmlResourceLimitErrorDetails, type OoxmlResourceLimits, type OoxmlResourceMetric, type OoxmlResourceMetrics, type OoxmlResourceMetricsCheckpoint, type OoxmlResourceName, type OoxmlResourcePolicySnapshot, type OoxmlResourceUsageSnapshot, type OoxmlResourceViolation, type OutlinePr, type ParsedWorkbook, type PathCmd, type PathInfo, type PhoneticAlignment, type PhoneticProperties, type PhoneticRun, type PhoneticType, type PivotCacheSource, type PivotDataField, type PivotDiagnostic, type PivotLocation, type PivotMetadataStatus, type PivotPageField, type PivotPartialReason, type PivotTableMetadata, type RenderViewportToBitmapOptions, type ResolvedList, type Row, type Run, type RunFont, type SecondaryValueAxis, type ShapeAnchor, type ShapeGeom, type ShapeInfo, type ShapeParagraph, type ShapeText, type ShapeTextRun, type SharedString, type SheetMeta, type SheetVisibility, type SlicerAnchor, type SlicerElementStyle, type SlicerItem, type SlicerStyle, type SpaceLine, type Sparkline, type SparklineGroup, type Styles, type TableColumnInfo, type TableInfo, type ViewerContextMenuEvent, type ViewportRange, type Workbook, type Worksheet, type WorksheetCellRange, type XlsxComment, type XlsxCopyResult, type XlsxElementAnchorMarker, type XlsxElementContext, type XlsxMatchLocation, type XlsxRangeSelectionContext, type XlsxRenderViewportOptions, type XlsxScrollToCellOptions, type XlsxSelectionArea, type XlsxSelectionContext, type XlsxSelectionContextCell, type XlsxSelectionContextOptions, type XlsxSelectionInput, type XlsxSelectionState, XlsxSheetViewer, type XlsxSheetViewerOptions, type XlsxTextRunInfo, XlsxViewer, type XlsxViewerOptions, type XlsxViewportOffset, XlsxWorkbook, type ZoomableViewer, autoResize, isOoxmlDecodedImageLimitError, openExternalHyperlink, resolveSharedStrings };
1855
+ export { type ArrowEnd, type AutoResizeOptions, type Border, type BorderEdge, type Cell, type CellAddress, type CellFill, type CellFont, type CellValue, type CellXf, type CfIcon, type CfRule, type CfStop, type CfValue, type ChartAnchor, type ChartDataLabelOverride, type ChartDataPointOverride, type ChartErrBars, type ChartExElementStyle, type ChartLabelBox, type ChartManualLayout, type ChartModel, type ChartRect, type ChartSeries, type ChartSeriesDataLabels, type ChartTextBox, type ChartTextParagraph, type ChartTextRun, type ChartTrendline, type ChartType, type ChartexBoxSeries, type ChartexBoxWhisker, type ChartexSunburst, type ChartexSunburstRow, type ChartexTreemap, type ConditionalFormat, type DataValidation, type DefinedName, type Duotone, type Dxf, type FillRect, type FindHighlightColors, type FindMatch, type FindMatchesOptions, type GradientFill, type GradientFillSpec, type GradientStop, type HiddenSheetMode, type Hyperlink, type HyperlinkTarget, type ImageAnchor, type LegendManualLayout, type LoadOptions, MAX_SELECTION_AREAS, MAX_SELECTION_CONTEXT_CELLS, MAX_SELECTION_CONTEXT_TEXT_CHARACTERS, type MathAccent, type MathArray, type MathBar, type MathBorderBox, type MathBox, type MathDelimiter, type MathFraction, type MathFunc, type MathGroup, type MathGroupChr, type MathLimit, type MathNary, type MathNode, type MathPhant, type MathRadical, type MathRenderer, type MathRun, type MathSPre, type MathScript, type MathStyle, type MathSvg, type MergeCell, type NumFmt, OoxmlDecodedImageLimitError, type OoxmlDecodedImageLimitMetric, OoxmlError, type OoxmlErrorCode, type OoxmlErrorStage, type OoxmlFormat, type OoxmlResourceLimit, OoxmlResourceLimitError, type OoxmlResourceLimitErrorDetails, type OoxmlResourceLimits, type OoxmlResourceMetric, type OoxmlResourceMetrics, type OoxmlResourceMetricsCheckpoint, type OoxmlResourceName, type OoxmlResourcePolicySnapshot, type OoxmlResourceUsageSnapshot, type OoxmlResourceViolation, type OutlinePr, type ParsedWorkbook, type PathCmd, type PathInfo, type PatternFill, type PhoneticAlignment, type PhoneticProperties, type PhoneticRun, type PhoneticType, type PivotCacheSource, type PivotDataField, type PivotDiagnostic, type PivotLocation, type PivotMetadataStatus, type PivotPageField, type PivotPartialReason, type PivotTableMetadata, type RenderViewportToBitmapOptions, type ResolvedList, type Row, type Run, type RunFont, type SecondaryValueAxis, type ShapeAnchor, type ShapeFill, type ShapeGeom, type ShapeInfo, type ShapeParagraph, type ShapeText, type ShapeTextRun, type SharedString, type SheetMeta, type SheetVisibility, type SlicerAnchor, type SlicerElementStyle, type SlicerItem, type SlicerStyle, type SolidFill, type SpaceLine, type Sparkline, type SparklineGroup, type Styles, type TableColumnInfo, type TableInfo, type ViewerContextMenuEvent, type ViewportRange, type Workbook, type Worksheet, type WorksheetCellRange, type XlsxComment, type XlsxCopyResult, type XlsxElementAnchorMarker, type XlsxElementContext, type XlsxMatchLocation, type XlsxRangeSelectionContext, type XlsxRenderViewportOptions, type XlsxScrollToCellOptions, type XlsxSelectionArea, type XlsxSelectionContext, type XlsxSelectionContextCell, type XlsxSelectionContextOptions, type XlsxSelectionInput, type XlsxSelectionState, XlsxSheetViewer, type XlsxSheetViewerOptions, type XlsxTextRunInfo, XlsxViewer, type XlsxViewerOptions, type XlsxViewportOffset, XlsxWorkbook, type ZoomableViewer, autoResize, isOoxmlDecodedImageLimitError, openExternalHyperlink, resolveSharedStrings };
@@ -1,5 +1,5 @@
1
- import { $ as e, F as t, I as n, N as r, P as i, Q as a, X as o, Y as s, Z as c, et as l, hn as u, nt as d, ot as f, rt as p, tt as m } from "./line-metrics-BdCACYlq.js";
2
- import { n as h, r as g, t as _ } from "./resource-measurement-E_S_iau4.js";
1
+ import { $ as e, F as t, I as n, N as r, P as i, Q as a, X as o, Y as s, Z as c, et as l, gn as u, nt as d, ot as f, rt as p, tt as m } from "./line-metrics-z9AdgPaZ.js";
2
+ import { n as h, r as g, t as _ } from "./resource-measurement-5g27Av6n.js";
3
3
  import { t as v } from "./transfer-DCu4c2BL.js";
4
4
  //#region packages/xlsx/src/worksheet-resource-limits.ts
5
5
  var y = d, b = e, x = l, S = m, C = a, w = s, T = o, E = c, D = Object.freeze({