@silurus/ooxml 0.80.3 → 0.81.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 (54) hide show
  1. package/README.md +57 -77
  2. package/dist/assets/render-worker-C2ACcLes.js +11 -0
  3. package/dist/assets/render-worker-Cx5uR77k.js +10 -0
  4. package/dist/assets/render-worker-DtU8oQZ7.js +24 -0
  5. package/dist/{canvas-viewer-mechanics-D-r6wHY_.js → canvas-viewer-mechanics-CqxKRGCp.js} +1 -1
  6. package/dist/chart-ex.mjs +1017 -0
  7. package/dist/{document-pull-client-vxk-Aomu.js → document-pull-client-Ux4a_ax8.js} +4540 -4412
  8. package/dist/{docx-DN0PRx2f.js → docx-SEyQ4gS-.js} +79 -75
  9. package/dist/docx.mjs +5 -4
  10. package/dist/docx_parser_bg.wasm +0 -0
  11. package/dist/index.mjs +3 -3
  12. package/dist/{line-distribute-Bvtp0Gt6.js → line-distribute-BBGvvwLt.js} +17 -16
  13. package/dist/{line-metrics-DdEJYxjx.js → line-metrics-Baz31mML.js} +663 -7488
  14. package/dist/math.mjs +2 -2
  15. package/dist/node.mjs +248 -247
  16. package/dist/plot-area-frame-Dg1VIpUU.js +3669 -0
  17. package/dist/{pptx-B-Laftl1.js → pptx-5lQrMvMR.js} +236 -232
  18. package/dist/pptx.mjs +6 -5
  19. package/dist/pptx_parser_bg.wasm +0 -0
  20. package/dist/region-map.mjs +102 -97
  21. package/dist/{render-CoqMHcbF.js → render-DEHjijQD.js} +1 -1
  22. package/dist/{render-worker-host-CYPhmBtX.js → render-worker-host-B1nbV_k7.js} +1 -1
  23. package/dist/{render-worker-host-GlLR1rtF.js → render-worker-host-Bze5M6k5.js} +1 -1
  24. package/dist/{render-worker-host-IuQFpoJM.js → render-worker-host-Dg_74V64.js} +1 -1
  25. package/dist/renderer-DuopJE1K.js +5855 -0
  26. package/dist/{renderer-module-contract-BNGz8HvO.js → renderer-module-contract-0bO_5SC0.js} +4 -3
  27. package/dist/{resource-measurement-CgMubiAI.js → resource-measurement-DRLp4nFt.js} +12 -11
  28. package/dist/{session-DkPblDiq.js → session-CNVc3VJ4.js} +8 -8
  29. package/dist/{slide-pull-client-m2blvngt.js → slide-pull-client-CzutXnGc.js} +888 -1082
  30. package/dist/three-d-BYiWCNlz.js +1345 -0
  31. package/dist/three-d.mjs +1238 -798
  32. package/dist/types/chart-ex.d.ts +949 -0
  33. package/dist/types/docx.d.ts +325 -18
  34. package/dist/types/index.d.ts +325 -26
  35. package/dist/types/math.d.ts +1 -1
  36. package/dist/types/node.d.ts +303 -14
  37. package/dist/types/pptx.d.ts +314 -22
  38. package/dist/types/region-map.d.ts +318 -6
  39. package/dist/types/three-d.d.ts +318 -6
  40. package/dist/types/xlsx.d.ts +317 -18
  41. package/dist/{worksheet-pull-client-BntP6RiO.js → worksheet-pull-client-Cxj3Ej0s.js} +19 -19
  42. package/dist/{xlsx-DqMe7J2C.js → xlsx-Bl3TIEVu.js} +1313 -1279
  43. package/dist/xlsx.mjs +6 -5
  44. package/dist/xlsx_parser_bg.wasm +0 -0
  45. package/package.json +7 -1
  46. package/dist/assets/render-worker-CRaEOHkw.js +0 -9
  47. package/dist/assets/render-worker-DQGLj5Zv.js +0 -22
  48. package/dist/assets/render-worker-rnrSLmqL.js +0 -8
  49. package/dist/chart-number-format-qLhnk6hj.js +0 -475
  50. package/dist/three-d-C28kqDym.js +0 -1086
  51. /package/dist/{highlight-rect-BuX5rWP4.js → highlight-rect-BqcZMHUE.js} +0 -0
  52. /package/dist/{mathjax-DgAl7Yi5.js → mathjax-DJa-Q93p.js} +0 -0
  53. /package/dist/{transfer-CKZ79zFw.js → transfer-D0U6Uhn4.js} +0 -0
  54. /package/dist/{visible-index-BjesVGhg.js → visible-index-DbDuGMCE.js} +0 -0
@@ -1,4 +1,4 @@
1
- //#region dist/.types-work/chart-Cv7Lx8lu.d.ts
1
+ //#region dist/.types-work/chart-Cf9PF1Kz.d.ts
2
2
  type MathStyle = 'roman' | 'italic' | 'bold' | 'boldItalic';
3
3
  interface MathRun {
4
4
  kind: 'run';
@@ -107,10 +107,20 @@ interface Duotone {
107
107
  clr1: string;
108
108
  clr2: string;
109
109
  }
110
+ interface SrcRect {
111
+ l: number;
112
+ t: number;
113
+ r: number;
114
+ b: number;
115
+ }
116
+ type Fill = SolidFill | NoFill | GradientFill | PatternFill | ImageFill;
110
117
  interface SolidFill {
111
118
  fillType: 'solid';
112
119
  color: string;
113
120
  }
121
+ interface NoFill {
122
+ fillType: 'none';
123
+ }
114
124
  interface GradientStop$1 {
115
125
  position: number;
116
126
  color: string;
@@ -140,13 +150,31 @@ interface FillRect {
140
150
  b?: number;
141
151
  }
142
152
  interface TileInfo {
143
- tx: number;
144
- ty: number;
145
- sx: number;
146
- sy: number;
147
- flip: string;
153
+ tx?: number;
154
+ ty?: number;
155
+ sx?: number;
156
+ sy?: number;
157
+ flip?: string;
148
158
  algn?: string;
149
159
  }
160
+ interface ImageFill {
161
+ fillType: 'image';
162
+ imagePath: string;
163
+ svgImagePath?: string;
164
+ mimeType: string;
165
+ dpi?: number;
166
+ rotWithShape?: boolean;
167
+ srcRect?: SrcRect;
168
+ fillRect?: FillRect;
169
+ stretch?: boolean;
170
+ tile?: TileInfo;
171
+ alpha?: number;
172
+ duotone?: Duotone;
173
+ }
174
+ interface DrawingMLCustomDashSegment {
175
+ dash: number;
176
+ space: number;
177
+ }
150
178
  interface ChartSeries {
151
179
  name: string;
152
180
  chartexFormatIdx?: number | null;
@@ -156,18 +184,24 @@ interface ChartSeries {
156
184
  automaticNegativeStyle?: boolean | null;
157
185
  invertedFill?: SolidFill | GradientFill | PatternFill | null;
158
186
  invertedFillHidden?: boolean | null;
187
+ invertedFillAuthored?: boolean | null;
159
188
  invertedLineColor?: string | null;
160
189
  invertedLineWidthEmu?: number | null;
161
190
  invertedLineHidden?: boolean | null;
191
+ invertedLineAuthored?: boolean | null;
162
192
  chartexStyle?: ChartExElementStyle | null;
163
193
  lineColor?: string | null;
164
194
  lineWidthEmu?: number | null;
165
195
  threeDShape?: 'box' | 'cylinder' | 'cone' | 'coneToMax' | 'pyramid' | 'pyramidToMax' | string | null;
166
196
  values: (number | null)[];
197
+ sourceHidden?: boolean[] | null;
167
198
  dataPointColors?: (string | null)[] | null;
199
+ explosion?: number | null;
168
200
  dataLabelColors?: (string | null)[] | null;
169
201
  labelColor?: string | null;
170
202
  seriesType?: string | null;
203
+ lineGroupIndex?: number | null;
204
+ areaGroupIndex?: number | null;
171
205
  barGroupIndex?: number | null;
172
206
  barGroupDirection?: 'bar' | 'col' | string | null;
173
207
  barGroupGrouping?: 'standard' | 'clustered' | 'stacked' | 'percentStacked' | string | null;
@@ -175,14 +209,18 @@ interface ChartSeries {
175
209
  barGroupOverlap?: number | null;
176
210
  useSecondaryAxis?: boolean | null;
177
211
  categories?: string[] | null;
212
+ bubbleXSourceIsString?: boolean | null;
178
213
  showMarker?: boolean | null;
179
214
  valFormatCode?: string | null;
180
215
  catFormatCode?: string | null;
181
216
  catFormatBuiltinId?: number | null;
182
217
  catFormatCodes?: (string | null)[] | null;
183
218
  markerSymbol?: string | null;
219
+ automaticMarkerSymbol?: string | null;
184
220
  markerSize?: number | null;
185
221
  markerFill?: string | null;
222
+ markerFillPaint?: Fill | null;
223
+ markerFillPaintAuthored?: boolean | null;
186
224
  markerLine?: string | null;
187
225
  markerLineWidthEmu?: number | null;
188
226
  dataPointOverrides?: ChartDataPointOverride[] | null;
@@ -190,6 +228,8 @@ interface ChartSeries {
190
228
  seriesDataLabels?: ChartSeriesDataLabels | null;
191
229
  errBars?: ChartErrBars[] | null;
192
230
  bubbleSizes?: (number | null)[] | null;
231
+ bubble3DGroupDefault?: boolean | null;
232
+ bubble3D?: boolean | null;
193
233
  smooth?: boolean | null;
194
234
  trendLines?: ChartTrendline[] | null;
195
235
  lineHidden?: boolean | null;
@@ -206,13 +246,27 @@ interface ChartTrendline {
206
246
  dispEq?: boolean | null;
207
247
  labelManualLayout?: ChartManualLayout | null;
208
248
  labelText?: string | null;
249
+ labelRichRuns?: ChartTextRun[] | null;
209
250
  labelFormatCode?: string | null;
210
251
  labelFormatSourceLinked?: boolean | null;
211
252
  labelFontSizeHpt?: number | null;
212
253
  labelFontBold?: boolean | null;
213
254
  labelFontItalic?: boolean | null;
214
255
  labelFontColor?: string | null;
256
+ labelFontPaintAuthored?: boolean | null;
257
+ labelFontHidden?: boolean | null;
215
258
  labelFontFace?: string | null;
259
+ labelFontLanguage?: string | null;
260
+ labelFontBaseline?: number | null;
261
+ labelTextRotation?: number | null;
262
+ labelTextWrap?: string | null;
263
+ labelTextVerticalAnchor?: string | null;
264
+ labelTextVerticalMode?: string | null;
265
+ labelTextLInsEmu?: number | null;
266
+ labelTextTInsEmu?: number | null;
267
+ labelTextRInsEmu?: number | null;
268
+ labelTextBInsEmu?: number | null;
269
+ labelTextBodyAuthored?: boolean | null;
216
270
  labelBox?: ChartLabelBox | null;
217
271
  labelTextAlign?: string | null;
218
272
  lineColor?: string | null;
@@ -224,6 +278,7 @@ interface ChartDataPointOverride {
224
278
  idx: number;
225
279
  color?: string;
226
280
  fillHidden?: boolean;
281
+ chartexStyle?: ChartExElementStyle | null;
227
282
  lineColor?: string;
228
283
  lineWidthEmu?: number;
229
284
  lineDash?: string;
@@ -231,8 +286,11 @@ interface ChartDataPointOverride {
231
286
  markerSymbol?: string;
232
287
  markerSize?: number;
233
288
  markerFill?: string;
289
+ markerFillPaint?: Fill | null;
290
+ markerFillPaintAuthored?: boolean | null;
234
291
  markerLine?: string;
235
292
  markerLineWidthEmu?: number;
293
+ bubble3D?: boolean | null;
236
294
  explosion?: number;
237
295
  }
238
296
  interface ChartDataLabelOverride {
@@ -241,9 +299,24 @@ interface ChartDataLabelOverride {
241
299
  richRuns?: ChartTextRun[];
242
300
  position?: string;
243
301
  fontColor?: string;
302
+ fontPaintAuthored?: boolean;
303
+ fontHidden?: boolean;
244
304
  fontSizeHpt?: number;
245
305
  fontFace?: string;
246
306
  fontBold?: boolean;
307
+ fontItalic?: boolean;
308
+ fontLanguage?: string;
309
+ fontBaseline?: number;
310
+ textRotation?: number;
311
+ textWrap?: string;
312
+ textVerticalAnchor?: string;
313
+ textVerticalMode?: string;
314
+ textLInsEmu?: number;
315
+ textTInsEmu?: number;
316
+ textRInsEmu?: number;
317
+ textBInsEmu?: number;
318
+ textBodyAuthored?: boolean;
319
+ textAlign?: 'l' | 'ctr' | 'r' | 'just' | 'dist' | string;
247
320
  formatCode?: string;
248
321
  separator?: string;
249
322
  manualLayout?: ChartManualLayout;
@@ -252,29 +325,63 @@ interface ChartDataLabelOverride {
252
325
  showCatName?: boolean;
253
326
  showSerName?: boolean;
254
327
  showPercent?: boolean;
328
+ showBubbleSize?: boolean;
329
+ showLegendKey?: boolean;
255
330
  deleted?: boolean;
256
331
  }
257
332
  interface ChartLabelBox {
258
333
  fill?: string;
334
+ fillPaint?: SolidFill | GradientFill | PatternFill | null;
335
+ fillHidden?: boolean | null;
336
+ fillPaintAuthored?: boolean | null;
259
337
  borderColor?: string;
338
+ borderFill?: SolidFill | GradientFill | PatternFill | null;
260
339
  borderWidthEmu?: number;
340
+ borderHidden?: boolean | null;
341
+ borderPaintAuthored?: boolean | null;
342
+ borderDash?: string | null;
343
+ borderDashAuthored?: boolean | null;
344
+ borderCustomDash?: ChartLineDashSegment[] | null;
345
+ borderCap?: string | null;
346
+ borderJoin?: string | null;
347
+ borderCompound?: string | null;
261
348
  }
262
349
  interface ChartSeriesDataLabels {
350
+ deleted?: boolean | null;
263
351
  showVal: boolean;
264
352
  showCatName: boolean;
265
353
  showSerName: boolean;
266
354
  showPercent: boolean;
355
+ showBubbleSize?: boolean;
356
+ showLegendKey?: boolean;
267
357
  position?: string;
268
358
  fontColor?: string;
359
+ fontPaintAuthored?: boolean;
360
+ fontHidden?: boolean;
269
361
  formatCode?: string;
270
362
  separator?: string;
271
363
  fontBold?: boolean;
364
+ fontItalic?: boolean;
365
+ fontLanguage?: string;
366
+ fontBaseline?: number;
272
367
  fontSizeHpt?: number;
273
368
  fontFace?: string;
369
+ textRotation?: number;
370
+ textWrap?: string;
371
+ textVerticalAnchor?: string;
372
+ textVerticalMode?: string;
373
+ textLInsEmu?: number;
374
+ textTInsEmu?: number;
375
+ textRInsEmu?: number;
376
+ textBInsEmu?: number;
377
+ textBodyAuthored?: boolean;
378
+ textAlign?: 'l' | 'ctr' | 'r' | 'just' | 'dist' | string;
274
379
  labelBox?: ChartLabelBox;
275
380
  showLeaderLines?: boolean;
276
381
  leaderLineColor?: string;
277
382
  leaderLineWidthEmu?: number;
383
+ leaderLineHidden?: boolean;
384
+ leaderLineDash?: string;
278
385
  }
279
386
  interface ChartErrBars {
280
387
  dir: string;
@@ -285,25 +392,73 @@ interface ChartErrBars {
285
392
  color?: string;
286
393
  lineWidthEmu?: number;
287
394
  dash?: string;
395
+ hidden?: boolean;
288
396
  }
289
397
  type ChartType = 'line' | 'stackedLine' | 'stackedLinePct' | 'clusteredBar' | 'clusteredBarH' | 'stackedBar' | 'stackedBarH' | 'stackedBarPct' | 'stackedBarHPct' | 'area' | 'stackedArea' | 'stackedAreaPct' | 'pie' | 'doughnut' | 'scatter' | 'bubble' | 'radar' | 'waterfall' | 'stock' | 'surface' | 'surface3D' | 'boxWhisker' | 'sunburst' | 'treemap' | string;
398
+ type ChartPlotGroupKind = 'area' | 'area3D' | 'line' | 'line3D' | 'stock' | 'radar' | 'scatter' | 'pie' | 'pie3D' | 'doughnut' | 'bar' | 'bar3D' | 'ofPie' | 'surface' | 'surface3D' | 'bubble';
399
+ type ChartPlotGroupAxisSlot = 'primary' | 'secondary' | 'none' | 'unresolved';
400
+ interface ChartPlotGroup {
401
+ kind: ChartPlotGroupKind;
402
+ seriesStart: number;
403
+ seriesCount: number;
404
+ categoryAxis: ChartPlotGroupAxisSlot;
405
+ valueAxis: ChartPlotGroupAxisSlot;
406
+ seriesAxis: ChartPlotGroupAxisSlot;
407
+ axisIds?: string[] | null;
408
+ grouping?: string | null;
409
+ barDirection?: string | null;
410
+ scatterStyle?: string | null;
411
+ radarStyle?: string | null;
412
+ gapWidth?: number | null;
413
+ overlap?: number | null;
414
+ bubbleScale?: number | null;
415
+ bubbleSizeRepresents?: 'area' | 'w' | null;
416
+ showNegativeBubbles?: boolean | null;
417
+ }
418
+ type ChartLineDashSegment = DrawingMLCustomDashSegment;
290
419
  interface ChartExElementStyle {
291
- fillPaints?: Array<SolidFill | GradientFill | PatternFill | null> | null;
420
+ fontSizeHpt?: number | null;
421
+ fontBold?: boolean | null;
422
+ fontItalic?: boolean | null;
423
+ fontColor?: string | null;
424
+ fontPaintAuthored?: boolean | null;
425
+ fontHidden?: boolean | null;
426
+ fontFace?: string | null;
427
+ fontLanguage?: string | null;
428
+ fontBaseline?: number | null;
429
+ textRotation?: number | null;
430
+ textWrap?: string | null;
431
+ textVerticalAnchor?: string | null;
432
+ textVerticalMode?: string | null;
433
+ textLInsEmu?: number | null;
434
+ textTInsEmu?: number | null;
435
+ textRInsEmu?: number | null;
436
+ textBInsEmu?: number | null;
437
+ textBodyAuthored?: boolean | null;
438
+ fillPaints?: Array<Fill | null> | null;
292
439
  fillColors?: Array<string | null> | null;
293
440
  fillHidden?: boolean | null;
441
+ fillPaintAuthored?: boolean | null;
294
442
  fillNoStyle?: boolean | null;
295
443
  lineColors?: Array<string | null> | null;
444
+ linePaints?: Array<SolidFill | GradientFill | PatternFill | null> | null;
445
+ linePaintAuthored?: boolean | null;
296
446
  lineWidthEmu?: number | null;
297
447
  lineHidden?: boolean | null;
298
448
  lineNoStyle?: boolean | null;
299
449
  lineDash?: string | null;
450
+ lineDashAuthored?: boolean | null;
451
+ lineCustomDash?: ChartLineDashSegment[] | null;
300
452
  lineCap?: string | null;
301
453
  lineJoin?: string | null;
454
+ lineCompound?: string | null;
302
455
  fillColorIndex?: number | null;
303
456
  lineColorIndex?: number | null;
304
457
  }
458
+ type ChartStyleRole = 'axisTitle' | 'categoryAxis' | 'chartArea' | 'dataLabel' | 'dataLabelCallout' | 'dataPoint' | 'dataPoint3D' | 'dataPointLine' | 'dataPointMarker' | 'dataPointWireframe' | 'dataTable' | 'downBar' | 'dropLine' | 'errorBar' | 'floor' | 'gridlineMajor' | 'gridlineMinor' | 'hiLoLine' | 'leaderLine' | 'legend' | 'plotArea' | 'plotArea3D' | 'seriesAxis' | 'seriesLine' | 'title' | 'trendline' | 'trendlineLabel' | 'upBar' | 'valueAxis' | 'wall';
305
459
  interface ChartSurfaceBandFormat {
306
460
  idx: number;
461
+ style?: ChartExElementStyle | null;
307
462
  fill?: SolidFill | GradientFill | PatternFill | null;
308
463
  fillHidden?: boolean | null;
309
464
  lineColor?: string | null;
@@ -320,8 +475,13 @@ interface ChartDataTable {
320
475
  fontColor?: string | null;
321
476
  fontBold?: boolean | null;
322
477
  fontItalic?: boolean | null;
478
+ fillColor?: string | null;
479
+ fill?: SolidFill | GradientFill | PatternFill | null;
480
+ fillHidden?: boolean | null;
481
+ fillPaintAuthored?: boolean | null;
323
482
  lineColor?: string | null;
324
483
  lineWidthEmu?: number | null;
484
+ lineDash?: string | null;
325
485
  lineHidden?: boolean | null;
326
486
  }
327
487
  interface ChartModel {
@@ -330,8 +490,10 @@ interface ChartModel {
330
490
  titleRichRuns?: ChartTextRun[] | null;
331
491
  titlePresent?: boolean;
332
492
  categories: string[];
493
+ categorySourceHidden?: boolean[] | null;
333
494
  categoryLevels?: string[][] | null;
334
495
  series: ChartSeries[];
496
+ plotGroups?: ChartPlotGroup[] | null;
335
497
  chartTextBoxes?: ChartTextBox[] | null;
336
498
  varyColors?: boolean | null;
337
499
  showDataLabels: boolean;
@@ -344,10 +506,32 @@ interface ChartModel {
344
506
  catAxisLineHidden: boolean;
345
507
  valAxisLineHidden: boolean;
346
508
  plotAreaBg: string | null;
509
+ plotAreaFill?: Fill | null;
510
+ plotAreaFillHidden?: boolean | null;
511
+ plotAreaFillPaintAuthored?: boolean | null;
512
+ plotAreaFillAutomatic?: boolean | null;
513
+ plotAreaLineColor?: string | null;
514
+ plotAreaLineFill?: SolidFill | GradientFill | PatternFill | null;
515
+ plotAreaLineWidthEmu?: number | null;
516
+ plotAreaLineDash?: string | null;
517
+ plotAreaLineDashAuthored?: boolean | null;
518
+ plotAreaLineCustomDash?: ChartLineDashSegment[] | null;
519
+ plotAreaLineCap?: string | null;
520
+ plotAreaLineJoin?: string | null;
521
+ plotAreaLineCompound?: string | null;
522
+ plotAreaLineHidden?: boolean | null;
523
+ plotAreaLinePaintAuthored?: boolean | null;
347
524
  chartBg: string | null;
525
+ chartFill?: Fill | null;
526
+ chartFillHidden?: boolean | null;
527
+ chartFillPaintAuthored?: boolean | null;
528
+ roundedCorners?: boolean | null;
529
+ plotVisibleOnly?: boolean | null;
348
530
  showLegend: boolean;
349
531
  dataTable?: ChartDataTable | null;
350
532
  legendPos: 'r' | 'l' | 't' | 'b' | 'tr' | null;
533
+ legendOverlay?: boolean | null;
534
+ legendEntries?: ChartLegendEntryOverride[] | null;
351
535
  catAxisCrossBetween: 'between' | 'midCat' | string;
352
536
  valAxisMajorTickMark: 'cross' | 'out' | 'in' | 'none' | string;
353
537
  catAxisMajorTickMark: 'cross' | 'out' | 'in' | 'none' | string;
@@ -384,6 +568,7 @@ interface ChartModel {
384
568
  catAxisTitleRotation?: number | null;
385
569
  catAxisTitleVerticalMode?: 'horz' | 'vert' | 'vert270' | 'wordArtVert' | 'eaVert' | 'mongolianVert' | 'wordArtVertRtl' | null;
386
570
  catAxisTitleManualLayout?: ChartManualLayout | null;
571
+ catAxisTitleTextVerticalInsetEmu?: number | null;
387
572
  valAxisTitleFontSizeHpt?: number | null;
388
573
  valAxisTitleFontBold?: boolean | null;
389
574
  valAxisTitleFontItalic?: boolean | null;
@@ -391,6 +576,7 @@ interface ChartModel {
391
576
  valAxisTitleRotation?: number | null;
392
577
  valAxisTitleVerticalMode?: 'horz' | 'vert' | 'vert270' | 'wordArtVert' | 'eaVert' | 'mongolianVert' | 'wordArtVertRtl' | null;
393
578
  valAxisTitleManualLayout?: ChartManualLayout | null;
579
+ valAxisTitleTextVerticalInsetEmu?: number | null;
394
580
  catAxisFontFace?: string | null;
395
581
  valAxisFontFace?: string | null;
396
582
  catAxisTitleFontFace?: string | null;
@@ -401,20 +587,45 @@ interface ChartModel {
401
587
  legendFontSizeHpt?: number | null;
402
588
  legendFontBold?: boolean | null;
403
589
  legendFillColor?: string | null;
590
+ legendFill?: Fill | null;
591
+ legendFillHidden?: boolean | null;
592
+ legendFillPaintAuthored?: boolean | null;
404
593
  legendLineColor?: string | null;
594
+ legendLineFill?: SolidFill | GradientFill | PatternFill | null;
405
595
  legendLineWidthEmu?: number | null;
596
+ legendLineDash?: string | null;
597
+ legendLineDashAuthored?: boolean | null;
598
+ legendLineCustomDash?: ChartLineDashSegment[] | null;
599
+ legendLineCap?: string | null;
600
+ legendLineJoin?: string | null;
601
+ legendLineCompound?: string | null;
602
+ legendLineHidden?: boolean | null;
603
+ legendLinePaintAuthored?: boolean | null;
406
604
  themeMajorFontLatin?: string | null;
407
605
  themeMinorFontLatin?: string | null;
408
606
  chartBorderColor?: string | null;
607
+ chartBorderLineFill?: SolidFill | GradientFill | PatternFill | null;
409
608
  chartBorderWidthEmu?: number | null;
609
+ chartBorderDash?: string | null;
610
+ chartBorderDashAuthored?: boolean | null;
611
+ chartBorderCustomDash?: ChartLineDashSegment[] | null;
612
+ chartBorderCap?: string | null;
613
+ chartBorderJoin?: string | null;
614
+ chartBorderCompound?: string | null;
615
+ chartBorderHidden?: boolean | null;
616
+ chartBorderPaintAuthored?: boolean | null;
410
617
  catAxisCrosses?: string | null;
411
618
  catAxisCrossesAt?: number | null;
412
619
  valAxisCrosses?: string | null;
413
620
  valAxisCrossesAt?: number | null;
414
621
  catAxisLineColor?: string | null;
415
622
  catAxisLineWidthEmu?: number | null;
623
+ catAxisLineDash?: string | null;
624
+ catAxisLinePaintAuthored?: boolean | null;
416
625
  valAxisLineColor?: string | null;
417
626
  valAxisLineWidthEmu?: number | null;
627
+ valAxisLineDash?: string | null;
628
+ valAxisLinePaintAuthored?: boolean | null;
418
629
  catAxisFormatCode?: string | null;
419
630
  catAxisMin?: number | null;
420
631
  catAxisMax?: number | null;
@@ -431,6 +642,7 @@ interface ChartModel {
431
642
  holeSize?: number | null;
432
643
  firstSliceAngle?: number | null;
433
644
  dispBlanksAs?: string | null;
645
+ showDataLabelsOverMax?: boolean | null;
434
646
  valAxisMajorGridlines?: boolean | null;
435
647
  catAxisMajorGridlines?: boolean | null;
436
648
  valAxisGridlineColor?: string | null;
@@ -463,12 +675,25 @@ interface ChartModel {
463
675
  catAxisTickLabelPos?: string | null;
464
676
  catAxisTickLabelSkip?: number | null;
465
677
  catAxisTickMarkSkip?: number | null;
678
+ catAxisLabelAlignment?: 'l' | 'ctr' | 'r' | string | null;
679
+ catAxisLabelOffsetPercent?: number | null;
466
680
  valAxisTickLabelPos?: string | null;
467
681
  catAxisLabelRotation?: number | null;
682
+ lineGroupDecorations?: ChartLineGroupDecorations[] | null;
683
+ areaGroupDecorations?: ChartAreaGroupDecorations[] | null;
684
+ barGroupDecorations?: ChartBarGroupDecorations[] | null;
685
+ stockDropLines?: ChartDecorationLineStyle | null;
686
+ stockHiLowLineStyle?: ChartDecorationLineStyle | null;
468
687
  stockHiLowLines?: boolean | null;
469
688
  stockHiLowLineColor?: string | null;
470
689
  stockUpDownBars?: boolean | null;
471
690
  stockUpDownBarStyle?: ChartStockUpDownBarStyle | null;
691
+ stockAutomaticStyle?: {
692
+ lineColor: string;
693
+ lineWidthEmu: number;
694
+ upFillColor: string;
695
+ downFillColor: string;
696
+ } | null;
472
697
  surfaceWireframe?: boolean | null;
473
698
  surfaceBandFormats?: ChartSurfaceBandFormat[] | null;
474
699
  legacyChartStyle?: number | null;
@@ -483,6 +708,11 @@ interface ChartModel {
483
708
  chartexAccents?: string[] | null;
484
709
  chartexColorPalette?: Array<string | null> | null;
485
710
  chartexColorStyleMethod?: string | null;
711
+ chartStyleRoles?: Partial<Record<ChartStyleRole, ChartExElementStyle>> | null;
712
+ chartStyleColorPalette?: Array<string | null> | null;
713
+ chartStyleColorMethod?: string | null;
714
+ chartStyleMarkerSizePt?: number | null;
715
+ chartStyleMarkerSymbol?: string | null;
486
716
  chartexDataPointStyle?: ChartExElementStyle | null;
487
717
  chartexDataPointLineStyle?: ChartExElementStyle | null;
488
718
  chartexSeriesLineStyle?: ChartExElementStyle | null;
@@ -493,9 +723,15 @@ interface ChartModel {
493
723
  }
494
724
  interface ChartStockBarPaint {
495
725
  fillColor?: string | null;
726
+ fill?: SolidFill | GradientFill | PatternFill | null;
727
+ fillPaintAuthored?: boolean | null;
496
728
  fillHidden?: boolean | null;
497
729
  lineColor?: string | null;
730
+ linePaintAuthored?: boolean | null;
498
731
  lineWidthEmu?: number | null;
732
+ lineDash?: string | null;
733
+ lineCap?: string | null;
734
+ lineJoin?: string | null;
499
735
  lineHidden?: boolean | null;
500
736
  }
501
737
  interface ChartStockUpDownBarStyle {
@@ -503,31 +739,76 @@ interface ChartStockUpDownBarStyle {
503
739
  up: ChartStockBarPaint;
504
740
  down: ChartStockBarPaint;
505
741
  }
742
+ interface ChartDecorationLineStyle {
743
+ color?: string | null;
744
+ paintAuthored?: boolean | null;
745
+ widthEmu?: number | null;
746
+ dash?: string | null;
747
+ cap?: string | null;
748
+ join?: string | null;
749
+ hidden?: boolean | null;
750
+ }
751
+ interface ChartLineGroupDecorations {
752
+ groupIndex: number;
753
+ dropLines?: ChartDecorationLineStyle | null;
754
+ hiLowLines?: ChartDecorationLineStyle | null;
755
+ upDownBars?: ChartStockUpDownBarStyle | null;
756
+ }
757
+ interface ChartAreaGroupDecorations {
758
+ groupIndex: number;
759
+ dropLines?: ChartDecorationLineStyle | null;
760
+ }
761
+ interface ChartBarGroupDecorations {
762
+ groupIndex: number;
763
+ seriesLines?: ChartDecorationLineStyle[] | null;
764
+ }
506
765
  interface ChartOfPie {
507
766
  type: 'pie' | 'bar';
508
767
  splitType: 'auto' | 'cust' | 'percent' | 'pos' | 'val';
768
+ splitTypeAuthored?: boolean | null;
509
769
  splitPos?: number | null;
770
+ splitPosAuthored?: boolean | null;
510
771
  customSplitIndices?: number[] | null;
511
772
  secondPieSizePercent: number;
512
773
  gapWidthPercent: number;
513
774
  seriesLines: boolean;
514
775
  }
515
776
  interface ChartThreeDSurface {
777
+ style?: ChartExElementStyle | null;
516
778
  fillColor?: string | null;
517
779
  fillHidden?: boolean | null;
518
780
  lineColor?: string | null;
519
781
  lineWidthEmu?: number | null;
520
782
  lineDash?: string | null;
521
783
  lineHidden?: boolean | null;
784
+ thicknessPercent?: number | null;
785
+ pictureOptions?: ChartThreeDPictureOptions | null;
786
+ }
787
+ interface ChartThreeDPictureOptions {
788
+ applyToFront?: boolean | null;
789
+ applyToSides?: boolean | null;
790
+ applyToEnd?: boolean | null;
791
+ pictureFormat?: 'stretch' | 'stack' | 'stackScale' | string | null;
792
+ pictureFormatAuthored?: boolean | null;
793
+ pictureStackUnit?: number | null;
794
+ pictureStackUnitAuthored?: boolean | null;
522
795
  }
523
796
  interface ChartThreeD {
797
+ view3DPresent?: boolean | null;
524
798
  rotationX?: number | null;
799
+ rotationXAuthored?: boolean | null;
525
800
  rotationY?: number | null;
801
+ rotationYAuthored?: boolean | null;
526
802
  heightPercent?: number | null;
803
+ heightPercentAuthored?: boolean | null;
527
804
  depthPercent?: number | null;
805
+ depthPercentAuthored?: boolean | null;
528
806
  perspective?: number | null;
807
+ perspectiveAuthored?: boolean | null;
529
808
  rightAngleAxes?: boolean | null;
809
+ rightAngleAxesAuthored?: boolean | null;
530
810
  gapDepthPercent?: number | null;
811
+ gapDepthPercentAuthored?: boolean | null;
531
812
  shape?: string | null;
532
813
  barGrouping?: 'standard' | 'clustered' | 'stacked' | 'percentStacked' | string | null;
533
814
  seriesAxis?: ChartThreeDSeriesAxis | null;
@@ -543,6 +824,7 @@ interface ChartThreeDSeriesAxis {
543
824
  tickLabelSkip?: number | null;
544
825
  tickMarkSkip?: number | null;
545
826
  majorTickMark: string;
827
+ minorTickMark?: string | null;
546
828
  fontColor?: string | null;
547
829
  fontSizeHpt?: number | null;
548
830
  fontBold?: boolean | null;
@@ -550,6 +832,8 @@ interface ChartThreeDSeriesAxis {
550
832
  fontFace?: string | null;
551
833
  lineColor?: string | null;
552
834
  lineWidthEmu?: number | null;
835
+ lineDash?: string | null;
836
+ linePaintAuthored?: boolean | null;
553
837
  lineHidden: boolean;
554
838
  titleFontSizeHpt?: number | null;
555
839
  titleFontBold?: boolean | null;
@@ -566,7 +850,12 @@ interface ChartTextRun {
566
850
  bold?: boolean | null;
567
851
  italic?: boolean | null;
568
852
  color?: string | null;
853
+ colorPaintAuthored?: boolean | null;
854
+ colorHidden?: boolean | null;
569
855
  fontFace?: string | null;
856
+ language?: string | null;
857
+ baseline?: number | null;
858
+ paragraphAlign?: 'l' | 'ctr' | 'r' | 'just' | 'dist' | string | null;
570
859
  }
571
860
  interface ChartTextParagraph {
572
861
  runs: ChartTextRun[];
@@ -669,6 +958,7 @@ interface SecondaryValueAxis {
669
958
  fontFace?: string | null;
670
959
  lineColor?: string | null;
671
960
  lineWidthEmu?: number | null;
961
+ lineDash?: string | null;
672
962
  lineHidden: boolean;
673
963
  majorTickMark: string;
674
964
  minorTickMark?: string | null;
@@ -685,6 +975,8 @@ interface SecondaryValueAxis {
685
975
  logBase?: number | null;
686
976
  orientation?: 'minMax' | 'maxMin' | string | null;
687
977
  tickLabelPos?: string | null;
978
+ labelAlignment?: 'l' | 'ctr' | 'r' | null;
979
+ labelOffsetPercent?: number | null;
688
980
  tickLabelSkip?: number | null;
689
981
  tickMarkSkip?: number | null;
690
982
  crosses?: string | null;
@@ -732,8 +1024,16 @@ interface LegendManualLayout {
732
1024
  hMode?: string;
733
1025
  x: number;
734
1026
  y: number;
735
- w: number;
736
- h: number;
1027
+ w?: number;
1028
+ h?: number;
1029
+ }
1030
+ interface ChartLegendEntryOverride {
1031
+ idx: number;
1032
+ deleted?: boolean | null;
1033
+ fontFace?: string | null;
1034
+ fontColor?: string | null;
1035
+ fontSizeHpt?: number | null;
1036
+ fontBold?: boolean | null;
737
1037
  }
738
1038
  interface ChartRect {
739
1039
  x: number;
@@ -742,7 +1042,12 @@ interface ChartRect {
742
1042
  h: number;
743
1043
  }
744
1044
  //#endregion
745
- //#region dist/.types-work/mathjax-D9Itb210.d.ts
1045
+ //#region dist/.types-work/chart-ex-contract-utZi_dg3.d.ts
1046
+ interface ChartExRenderer {
1047
+ render(ctx: CanvasRenderingContext2D, chart: ChartModel, rect: ChartRect, ptToPx: number, shapeRotationDeg?: number): boolean;
1048
+ }
1049
+ //#endregion
1050
+ //#region dist/.types-work/mathjax-i691C1H8.d.ts
746
1051
  interface MathSvg {
747
1052
  svg: string;
748
1053
  widthEm: number;
@@ -754,17 +1059,17 @@ interface MathRenderer {
754
1059
  mathMLToSvg(mathml: string): Promise<MathSvg>;
755
1060
  }
756
1061
  //#endregion
757
- //#region dist/.types-work/three-d-contract-BhPkqlow.d.ts
1062
+ //#region dist/.types-work/three-d-contract-ubTeeJB2.d.ts
758
1063
  interface ChartThreeDRenderer {
759
- render(ctx: CanvasRenderingContext2D, chart: ChartModel, rect: ChartRect, ptToPx: number): boolean;
1064
+ render(ctx: CanvasRenderingContext2D, chart: ChartModel, rect: ChartRect, ptToPx: number, shapeRotationDeg?: number): boolean;
760
1065
  }
761
1066
  //#endregion
762
- //#region dist/.types-work/region-map-contract-B6z5ZsH4.d.ts
1067
+ //#region dist/.types-work/region-map-contract-BjZYif26.d.ts
763
1068
  interface ChartRegionMapRenderer {
764
- render(ctx: CanvasRenderingContext2D, chart: ChartModel, rect: ChartRect, ptToPx: number): boolean;
1069
+ render(ctx: CanvasRenderingContext2D, chart: ChartModel, rect: ChartRect, ptToPx: number, shapeRotationDeg?: number): boolean;
765
1070
  }
766
1071
  //#endregion
767
- //#region dist/.types-work/hyperlink-EKY3amDQ.d.ts
1072
+ //#region dist/.types-work/hyperlink-DfGyAVo-.d.ts
768
1073
  type OoxmlErrorCode = 'encrypted' | 'invalid-password' | 'unsupported-encryption' | 'legacy-binary-format' | 'not-ooxml';
769
1074
  type OoxmlErrorStage = 'container' | 'decompression' | 'parsing' | 'serialization' | 'layout' | 'rendering' | 'worker';
770
1075
  declare class OoxmlError extends Error {
@@ -849,6 +1154,7 @@ interface LoadOptions$1 {
849
1154
  math?: MathRenderer;
850
1155
  threeD?: ChartThreeDRenderer;
851
1156
  regionMap?: ChartRegionMapRenderer;
1157
+ chartEx?: ChartExRenderer;
852
1158
  }
853
1159
  type OoxmlDecodedImageLimitMetric = 'image-pixels' | 'active-decoded-bytes';
854
1160
  declare class OoxmlDecodedImageLimitError extends RangeError {
@@ -869,7 +1175,7 @@ type HyperlinkTarget = {
869
1175
  };
870
1176
  declare function openExternalHyperlink(url: string, allowed?: readonly string[], win?: Pick<Window, 'open'> | undefined): boolean;
871
1177
  //#endregion
872
- //#region dist/.types-work/find-highlight-C-71IJpI.d.ts
1178
+ //#region dist/.types-work/find-highlight-CVToYCFx.d.ts
873
1179
  interface TextSelectionContextOptions {
874
1180
  readonly maxTextCharacters?: number;
875
1181
  readonly maxRunLocators?: number;
@@ -908,7 +1214,7 @@ interface FindHighlightColors {
908
1214
  active?: string;
909
1215
  }
910
1216
  //#endregion
911
- //#region dist/.types-work/docx-DQGDQyp3.d.ts
1217
+ //#region dist/.types-work/docx-cnFW2qy-.d.ts
912
1218
  interface DocxDocumentModel {
913
1219
  section: SectionProps;
914
1220
  body: BodyElement[];
@@ -1701,6 +2007,7 @@ declare class DocxDocument {
1701
2007
  private _mode;
1702
2008
  private _threeD;
1703
2009
  private _regionMap;
2010
+ private _chartEx;
1704
2011
  private _worker;
1705
2012
  private _bridge;
1706
2013
  private readonly _rawParts;
@@ -1967,4 +2274,4 @@ interface DocxHighlightMatch {
1967
2274
  type DocxHighlightColors = FindHighlightColors;
1968
2275
  declare function buildDocxHighlightLayer(layer: HTMLDivElement, runs: DocxTextRunInfo[], matches: DocxHighlightMatch[], cssWidth: number, cssHeight: number, measureForFont: (font: string) => (s: string) => number, colors?: DocxHighlightColors): void;
1969
2276
  //#endregion
1970
- export { type AnchorHostMetrics, type AutoResizeOptions, type BodyElement, type BorderSpec, type CellBorders, type CellElement, type ChartDataLabelOverride, type ChartDataPointOverride, type ChartDataTable, type ChartDisplayUnits, type ChartDisplayUnitsLabel, type ChartErrBars, type ChartExElementStyle, type ChartLabelBox, type ChartManualLayout, type ChartModel, type ChartOfPie, type ChartRect, type ChartRegionMapRenderer, type ChartRun, type ChartSeries, type ChartSeriesDataLabels, type ChartStockBarPaint, type ChartStockUpDownBarStyle, type ChartSurfaceBandFormat, type ChartTextBox, type ChartTextParagraph, type ChartTextRun, type ChartThreeD, type ChartThreeDRenderer, type ChartThreeDSeriesAxis, type ChartThreeDSurface, type ChartTrendline, type ChartType, type ChartexBoxSeries, type ChartexBoxWhisker, type ChartexGeography, type ChartexHistogramBinning, type ChartexRegionMap, type ChartexRegionMapColors, type ChartexRegionMapRow, type ChartexSunburst, type ChartexSunburstRow, type ChartexTreemap, type ChartexValueColorStop, type ColSpec, type CollectPageRunsOptions, type ColumnsSpec, type DocComment, type DocNote, type DocParagraph, type DocRevision, type DocRun, type DocSettings, type DocTable, type DocTableCell, type DocTableRow, DocxDocument, type DocxDocumentModel, type DocxElementContext, type DocxElementContextOptions, type DocxHighlightColors, type DocxHighlightMatch, type DocxMatchLocation, type DocxPagePoint, type DocxRunBorder, DocxScrollViewer, type DocxScrollViewerOptions, type DocxSelectionContext, type DocxSelectionContextOptions, type DocxSelectionRunLocator, type DocxSelectionSourceLocator, type DocxTextRun, type DocxTextRunInfo, type DocxTextSelectionContext, DocxViewer, type DocxViewerOptions, type Duotone, type EmbeddedFontRef, type FieldRun, type FillRect, type FindHighlightColors, type FindMatch, type FindMatchesOptions, type FramePr, type GradientFill, type GradientStop, type HeaderFooter, type HeadersFooters, type HyperlinkTarget, type ImageRun, type LegendManualLayout, type LineEnd, type LineNumbering, type LineSpacing, type LoadOptions, type MatchRunSlice, 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 NoteRef, type NumberingInfo, 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 PTabRun, type PageBorderEdge, type PageBorders, type PageNumType, type ParaBorderEdge, type ParagraphBorders, type PathCmd, type PatternFill, type RenderPageOptions, type RenderPageToBitmapOptions, type RubyAnnotation, type RunRevision, type SecondaryValueAxis, type SectionGeom, type SectionProps, type ShapeFill, type ShapeRun, type ShapeStrokeFill, type ShapeText, type ShapeTextRun, type SolidFill, type TabStop, type TableBorders, type TblpPr, type TextPath, type TextSelectionContextOptions, type TileInfo, type ViewerContextMenuEvent, type ZoomableViewer, autoResize, buildDocxHighlightLayer, buildDocxTextLayer, isOoxmlDecodedImageLimitError, noteText, openExternalHyperlink, readDocxTextSelectionContext };
2277
+ export { type AnchorHostMetrics, type AutoResizeOptions, type BodyElement, type BorderSpec, type CellBorders, type CellElement, type ChartAreaGroupDecorations, type ChartBarGroupDecorations, type ChartDataLabelOverride, type ChartDataPointOverride, type ChartDataTable, type ChartDecorationLineStyle, type ChartDisplayUnits, type ChartDisplayUnitsLabel, type ChartErrBars, type ChartExElementStyle, type ChartExRenderer, type ChartLabelBox, type ChartLegendEntryOverride, type ChartLineDashSegment, type ChartLineGroupDecorations, type ChartManualLayout, type ChartModel, type ChartOfPie, type ChartPlotGroup, type ChartPlotGroupAxisSlot, type ChartPlotGroupKind, type ChartRect, type ChartRegionMapRenderer, type ChartRun, type ChartSeries, type ChartSeriesDataLabels, type ChartStockBarPaint, type ChartStockUpDownBarStyle, type ChartSurfaceBandFormat, type ChartTextBox, type ChartTextParagraph, type ChartTextRun, type ChartThreeD, type ChartThreeDPictureOptions, type ChartThreeDRenderer, type ChartThreeDSeriesAxis, type ChartThreeDSurface, type ChartTrendline, type ChartType, type ChartexBoxSeries, type ChartexBoxWhisker, type ChartexGeography, type ChartexHistogramBinning, type ChartexRegionMap, type ChartexRegionMapColors, type ChartexRegionMapRow, type ChartexSunburst, type ChartexSunburstRow, type ChartexTreemap, type ChartexValueColorStop, type ColSpec, type CollectPageRunsOptions, type ColumnsSpec, type DocComment, type DocNote, type DocParagraph, type DocRevision, type DocRun, type DocSettings, type DocTable, type DocTableCell, type DocTableRow, DocxDocument, type DocxDocumentModel, type DocxElementContext, type DocxElementContextOptions, type DocxHighlightColors, type DocxHighlightMatch, type DocxMatchLocation, type DocxPagePoint, type DocxRunBorder, DocxScrollViewer, type DocxScrollViewerOptions, type DocxSelectionContext, type DocxSelectionContextOptions, type DocxSelectionRunLocator, type DocxSelectionSourceLocator, type DocxTextRun, type DocxTextRunInfo, type DocxTextSelectionContext, DocxViewer, type DocxViewerOptions, type DrawingMLCustomDashSegment, type Duotone, type EmbeddedFontRef, type FieldRun, type FillRect, type FindHighlightColors, type FindMatch, type FindMatchesOptions, type FramePr, type GradientFill, type GradientStop, type HeaderFooter, type HeadersFooters, type HyperlinkTarget, type ImageFill, type ImageRun, type LegendManualLayout, type LineEnd, type LineNumbering, type LineSpacing, type LoadOptions, type MatchRunSlice, 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 NoFill, type NoteRef, type NumberingInfo, 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 PTabRun, type PageBorderEdge, type PageBorders, type PageNumType, type ParaBorderEdge, type ParagraphBorders, type PathCmd, type PatternFill, type RenderPageOptions, type RenderPageToBitmapOptions, type RubyAnnotation, type RunRevision, type SecondaryValueAxis, type SectionGeom, type SectionProps, type ShapeFill, type ShapeRun, type ShapeStrokeFill, type ShapeText, type ShapeTextRun, type SolidFill, type SrcRect, type TabStop, type TableBorders, type TblpPr, type TextPath, type TextSelectionContextOptions, type TileInfo, type ViewerContextMenuEvent, type ZoomableViewer, autoResize, buildDocxHighlightLayer, buildDocxTextLayer, isOoxmlDecodedImageLimitError, noteText, openExternalHyperlink, readDocxTextSelectionContext };