@silurus/ooxml 0.78.0 → 0.79.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 (46) hide show
  1. package/README.md +39 -1
  2. package/THIRD_PARTY_NOTICES.md +13 -0
  3. package/dist/{canvas-viewer-mechanics-ChxLdOJg.js → canvas-viewer-mechanics-D9tsuHnG.js} +1 -1
  4. package/dist/chart-number-format-tjYUR9eS.js +435 -0
  5. package/dist/dash-Cyc-sevN.js +786 -0
  6. package/dist/{document-pull-client-xsdVDuVD.js → document-pull-client-YiU8M4LO.js} +3283 -3156
  7. package/dist/{docx-CZC3j4s4.js → docx-a1UpmRf8.js} +65 -56
  8. package/dist/docx.mjs +4 -4
  9. package/dist/docx_parser_bg.wasm +0 -0
  10. package/dist/index.mjs +3 -3
  11. package/dist/{line-distribute-HuZyTARz.js → line-distribute-pDqovJpT.js} +1 -1
  12. package/dist/{line-metrics-z9AdgPaZ.js → line-metrics-DjKxiIUD.js} +4097 -3184
  13. package/dist/math.mjs +1 -1
  14. package/dist/node.mjs +322 -322
  15. package/dist/{pptx-c3UgGKIs.js → pptx-t5ABdzfd.js} +192 -183
  16. package/dist/pptx.mjs +5 -5
  17. package/dist/pptx_parser_bg.wasm +0 -0
  18. package/dist/region-map.mjs +12708 -0
  19. package/dist/{render-yhFUeiYl.js → render-BjIEuFIG.js} +1 -1
  20. package/dist/render-worker-host-BB320snY.js +27 -0
  21. package/dist/render-worker-host-BjEPZBwf.js +27 -0
  22. package/dist/render-worker-host-hZ0o4OD7.js +27 -0
  23. package/dist/{resource-measurement-5g27Av6n.js → resource-measurement-D8EiTm_E.js} +1 -1
  24. package/dist/{session-BOuXp10X.js → session-Bhe_eY-s.js} +10 -10
  25. package/dist/{slide-pull-client-DKckZrLx.js → slide-pull-client-BQ8gJPTq.js} +626 -563
  26. package/dist/three-d.mjs +2158 -0
  27. package/dist/types/docx.d.ts +189 -16
  28. package/dist/types/index.d.ts +205 -20
  29. package/dist/types/math.d.ts +1 -1
  30. package/dist/types/node.d.ts +166 -1
  31. package/dist/types/pptx.d.ts +191 -16
  32. package/dist/types/region-map.d.ts +520 -0
  33. package/dist/types/three-d.d.ts +520 -0
  34. package/dist/types/xlsx.d.ts +195 -16
  35. package/dist/{worksheet-pull-client-CMDRPZ5E.js → worksheet-pull-client-T0EzdEEQ.js} +13 -13
  36. package/dist/{xlsx-BAScjxlC.js → xlsx-CsDDMJIK.js} +833 -770
  37. package/dist/xlsx.mjs +5 -5
  38. package/dist/xlsx_parser_bg.wasm +0 -0
  39. package/package.json +13 -1
  40. package/dist/render-worker-host-BzxTAscX.js +0 -27
  41. package/dist/render-worker-host-CBjWHxMb.js +0 -27
  42. package/dist/render-worker-host-Ivhx3KII.js +0 -27
  43. /package/dist/{highlight-rect-CAkCWJ37.js → highlight-rect-cCvVU-MW.js} +0 -0
  44. /package/dist/{mathjax-CMjda8Ip.js → mathjax-Dqo857oC.js} +0 -0
  45. /package/dist/{transfer-DCu4c2BL.js → transfer-3QEJrsJa.js} +0 -0
  46. /package/dist/{visible-index-CgyJLAS_.js → visible-index-CKvgpUrf.js} +0 -0
@@ -0,0 +1,520 @@
1
+ //#region dist/.types-work/chart-Cxft04Nl.d.ts
2
+ interface SolidFill {
3
+ fillType: 'solid';
4
+ color: string;
5
+ }
6
+ interface GradientStop {
7
+ position: number;
8
+ color: string;
9
+ }
10
+ interface GradientFill {
11
+ fillType: 'gradient';
12
+ stops: GradientStop[];
13
+ angle: number;
14
+ gradType: string;
15
+ scaled?: boolean;
16
+ path?: 'shape' | 'circle' | 'rect' | string;
17
+ fillToRect?: FillRect;
18
+ tileRect?: FillRect;
19
+ flip?: 'none' | 'x' | 'y' | 'xy' | string;
20
+ rotWithShape?: boolean;
21
+ }
22
+ interface PatternFill {
23
+ fillType: 'pattern';
24
+ fg: string;
25
+ bg: string;
26
+ preset: string;
27
+ }
28
+ interface FillRect {
29
+ l?: number;
30
+ t?: number;
31
+ r?: number;
32
+ b?: number;
33
+ }
34
+ interface ChartSeries {
35
+ name: string;
36
+ chartexFormatIdx?: number | null;
37
+ color: string | null;
38
+ fillPattern?: PatternFill | null;
39
+ chartexStyle?: ChartExElementStyle | null;
40
+ lineColor?: string | null;
41
+ lineWidthEmu?: number | null;
42
+ threeDShape?: 'box' | 'cylinder' | 'cone' | 'coneToMax' | 'pyramid' | 'pyramidToMax' | string | null;
43
+ values: (number | null)[];
44
+ dataPointColors?: (string | null)[] | null;
45
+ dataLabelColors?: (string | null)[] | null;
46
+ labelColor?: string | null;
47
+ seriesType?: string | null;
48
+ useSecondaryAxis?: boolean | null;
49
+ categories?: string[] | null;
50
+ showMarker?: boolean | null;
51
+ valFormatCode?: string | null;
52
+ catFormatCode?: string | null;
53
+ catFormatCodes?: (string | null)[] | null;
54
+ markerSymbol?: string | null;
55
+ markerSize?: number | null;
56
+ markerFill?: string | null;
57
+ markerLine?: string | null;
58
+ markerLineWidthEmu?: number | null;
59
+ dataPointOverrides?: ChartDataPointOverride[] | null;
60
+ dataLabelOverrides?: ChartDataLabelOverride[] | null;
61
+ seriesDataLabels?: ChartSeriesDataLabels | null;
62
+ errBars?: ChartErrBars[] | null;
63
+ bubbleSizes?: (number | null)[] | null;
64
+ smooth?: boolean | null;
65
+ trendLines?: ChartTrendline[] | null;
66
+ lineHidden?: boolean | null;
67
+ }
68
+ interface ChartTrendline {
69
+ trendlineType: string;
70
+ order?: number | null;
71
+ period?: number | null;
72
+ forward?: number | null;
73
+ backward?: number | null;
74
+ intercept?: number | null;
75
+ dispRSqr?: boolean | null;
76
+ dispEq?: boolean | null;
77
+ labelManualLayout?: ChartManualLayout | null;
78
+ labelText?: string | null;
79
+ labelFontSizeHpt?: number | null;
80
+ labelFontBold?: boolean | null;
81
+ labelFontColor?: string | null;
82
+ labelFontFace?: string | null;
83
+ labelTextAlign?: string | null;
84
+ lineColor?: string | null;
85
+ lineWidthEmu?: number | null;
86
+ lineDash?: string | null;
87
+ lineHidden?: boolean | null;
88
+ }
89
+ interface ChartDataPointOverride {
90
+ idx: number;
91
+ color?: string;
92
+ fillHidden?: boolean;
93
+ lineColor?: string;
94
+ lineWidthEmu?: number;
95
+ lineDash?: string;
96
+ lineHidden?: boolean;
97
+ markerSymbol?: string;
98
+ markerSize?: number;
99
+ markerFill?: string;
100
+ markerLine?: string;
101
+ markerLineWidthEmu?: number;
102
+ explosion?: number;
103
+ }
104
+ interface ChartDataLabelOverride {
105
+ idx: number;
106
+ text: string;
107
+ richRuns?: ChartTextRun[];
108
+ position?: string;
109
+ fontColor?: string;
110
+ fontSizeHpt?: number;
111
+ fontBold?: boolean;
112
+ formatCode?: string;
113
+ separator?: string;
114
+ manualLayout?: ChartManualLayout;
115
+ labelBox?: ChartLabelBox;
116
+ showVal?: boolean;
117
+ showCatName?: boolean;
118
+ showSerName?: boolean;
119
+ showPercent?: boolean;
120
+ deleted?: boolean;
121
+ }
122
+ interface ChartLabelBox {
123
+ fill?: string;
124
+ borderColor?: string;
125
+ borderWidthEmu?: number;
126
+ }
127
+ interface ChartSeriesDataLabels {
128
+ showVal: boolean;
129
+ showCatName: boolean;
130
+ showSerName: boolean;
131
+ showPercent: boolean;
132
+ position?: string;
133
+ fontColor?: string;
134
+ formatCode?: string;
135
+ separator?: string;
136
+ fontBold?: boolean;
137
+ fontSizeHpt?: number;
138
+ labelBox?: ChartLabelBox;
139
+ showLeaderLines?: boolean;
140
+ leaderLineColor?: string;
141
+ leaderLineWidthEmu?: number;
142
+ }
143
+ interface ChartErrBars {
144
+ dir: string;
145
+ barType: string;
146
+ plus: (number | null)[];
147
+ minus: (number | null)[];
148
+ noEndCap: boolean;
149
+ color?: string;
150
+ lineWidthEmu?: number;
151
+ dash?: string;
152
+ }
153
+ 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;
154
+ interface ChartExElementStyle {
155
+ fillPaints?: Array<SolidFill | GradientFill | PatternFill | null> | null;
156
+ fillColors?: Array<string | null> | null;
157
+ fillHidden?: boolean | null;
158
+ fillNoStyle?: boolean | null;
159
+ lineColors?: Array<string | null> | null;
160
+ lineWidthEmu?: number | null;
161
+ lineHidden?: boolean | null;
162
+ lineNoStyle?: boolean | null;
163
+ lineDash?: string | null;
164
+ lineCap?: string | null;
165
+ lineJoin?: string | null;
166
+ fillColorIndex?: number | null;
167
+ lineColorIndex?: number | null;
168
+ }
169
+ interface ChartModel {
170
+ chartType: ChartType;
171
+ title: string | null;
172
+ titlePresent?: boolean;
173
+ categories: string[];
174
+ series: ChartSeries[];
175
+ chartTextBoxes?: ChartTextBox[] | null;
176
+ varyColors?: boolean | null;
177
+ showDataLabels: boolean;
178
+ valMin: number | null;
179
+ valMax: number | null;
180
+ catAxisTitle: string | null;
181
+ valAxisTitle: string | null;
182
+ catAxisHidden: boolean;
183
+ valAxisHidden: boolean;
184
+ catAxisLineHidden: boolean;
185
+ valAxisLineHidden: boolean;
186
+ plotAreaBg: string | null;
187
+ chartBg: string | null;
188
+ showLegend: boolean;
189
+ legendPos: 'r' | 'l' | 't' | 'b' | 'tr' | null;
190
+ catAxisCrossBetween: 'between' | 'midCat' | string;
191
+ valAxisMajorTickMark: 'cross' | 'out' | 'in' | 'none' | string;
192
+ catAxisMajorTickMark: 'cross' | 'out' | 'in' | 'none' | string;
193
+ valAxisMinorTickMark?: 'cross' | 'out' | 'in' | 'none' | string | null;
194
+ catAxisMinorTickMark?: 'cross' | 'out' | 'in' | 'none' | string | null;
195
+ titleFontSizeHpt: number | null;
196
+ titleFontColor: string | null;
197
+ titleFontFace: string | null;
198
+ catAxisFontSizeHpt: number | null;
199
+ valAxisFontSizeHpt: number | null;
200
+ catAxisFontColor?: string | null;
201
+ valAxisFontColor?: string | null;
202
+ dataLabelFontSizeHpt: number | null;
203
+ dataLabelFontBold?: boolean | null;
204
+ subtotalIndices: number[];
205
+ legendManualLayout?: LegendManualLayout | null;
206
+ valAxisFormatCode?: string | null;
207
+ barGapWidth?: number | null;
208
+ barOverlap?: number | null;
209
+ dataLabelPosition?: string | null;
210
+ dataLabelFontColor?: string | null;
211
+ dataLabelFormatCode?: string | null;
212
+ titleFontBold?: boolean | null;
213
+ catAxisFontBold?: boolean | null;
214
+ catAxisFontItalic?: boolean | null;
215
+ valAxisFontBold?: boolean | null;
216
+ valAxisFontItalic?: boolean | null;
217
+ catAxisTitleFontSizeHpt?: number | null;
218
+ catAxisTitleFontBold?: boolean | null;
219
+ catAxisTitleFontItalic?: boolean | null;
220
+ catAxisTitleFontColor?: string | null;
221
+ catAxisTitleRotation?: number | null;
222
+ catAxisTitleVerticalMode?: 'horz' | 'vert' | 'vert270' | 'wordArtVert' | 'eaVert' | 'mongolianVert' | 'wordArtVertRtl' | null;
223
+ catAxisTitleManualLayout?: ChartManualLayout | null;
224
+ valAxisTitleFontSizeHpt?: number | null;
225
+ valAxisTitleFontBold?: boolean | null;
226
+ valAxisTitleFontItalic?: boolean | null;
227
+ valAxisTitleFontColor?: string | null;
228
+ valAxisTitleRotation?: number | null;
229
+ valAxisTitleVerticalMode?: 'horz' | 'vert' | 'vert270' | 'wordArtVert' | 'eaVert' | 'mongolianVert' | 'wordArtVertRtl' | null;
230
+ valAxisTitleManualLayout?: ChartManualLayout | null;
231
+ catAxisFontFace?: string | null;
232
+ valAxisFontFace?: string | null;
233
+ catAxisTitleFontFace?: string | null;
234
+ valAxisTitleFontFace?: string | null;
235
+ dataLabelFontFace?: string | null;
236
+ legendFontFace?: string | null;
237
+ legendFontColor?: string | null;
238
+ legendFontSizeHpt?: number | null;
239
+ legendFontBold?: boolean | null;
240
+ themeMajorFontLatin?: string | null;
241
+ themeMinorFontLatin?: string | null;
242
+ chartBorderColor?: string | null;
243
+ chartBorderWidthEmu?: number | null;
244
+ catAxisCrosses?: string | null;
245
+ catAxisCrossesAt?: number | null;
246
+ valAxisCrosses?: string | null;
247
+ valAxisCrossesAt?: number | null;
248
+ catAxisLineColor?: string | null;
249
+ catAxisLineWidthEmu?: number | null;
250
+ valAxisLineColor?: string | null;
251
+ valAxisLineWidthEmu?: number | null;
252
+ catAxisFormatCode?: string | null;
253
+ catAxisMin?: number | null;
254
+ catAxisMax?: number | null;
255
+ titleManualLayout?: ChartManualLayout | null;
256
+ plotAreaManualLayout?: ChartManualLayout | null;
257
+ scatterStyle?: string | null;
258
+ bubbleScale?: number | null;
259
+ bubbleSizeRepresents?: 'area' | 'w' | null;
260
+ showNegativeBubbles?: boolean | null;
261
+ radarStyle?: string | null;
262
+ secondaryValAxis?: SecondaryValueAxis | null;
263
+ secondaryCatAxis?: SecondaryValueAxis | null;
264
+ date1904?: boolean;
265
+ holeSize?: number | null;
266
+ firstSliceAngle?: number | null;
267
+ dispBlanksAs?: string | null;
268
+ valAxisMajorGridlines?: boolean | null;
269
+ catAxisMajorGridlines?: boolean | null;
270
+ valAxisGridlineColor?: string | null;
271
+ valAxisGridlineWidthEmu?: number | null;
272
+ valAxisGridlineDash?: string | null;
273
+ catAxisGridlineColor?: string | null;
274
+ catAxisGridlineWidthEmu?: number | null;
275
+ catAxisGridlineDash?: string | null;
276
+ valAxisMinorGridlines?: boolean | null;
277
+ valAxisMinorGridlineColor?: string | null;
278
+ valAxisMinorGridlineWidthEmu?: number | null;
279
+ valAxisMinorGridlineDash?: string | null;
280
+ catAxisMinorGridlines?: boolean | null;
281
+ catAxisMinorGridlineColor?: string | null;
282
+ catAxisMinorGridlineWidthEmu?: number | null;
283
+ catAxisMinorGridlineDash?: string | null;
284
+ valAxisMajorUnit?: number | null;
285
+ valAxisMinorUnit?: number | null;
286
+ catAxisMajorUnit?: number | null;
287
+ catAxisMinorUnit?: number | null;
288
+ valAxisLogBase?: number | null;
289
+ catAxisLogBase?: number | null;
290
+ valAxisOrientation?: 'minMax' | 'maxMin' | string | null;
291
+ catAxisOrientation?: 'minMax' | 'maxMin' | string | null;
292
+ catAxisTickLabelPos?: string | null;
293
+ catAxisTickLabelSkip?: number | null;
294
+ catAxisTickMarkSkip?: number | null;
295
+ valAxisTickLabelPos?: string | null;
296
+ catAxisLabelRotation?: number | null;
297
+ stockHiLowLines?: boolean | null;
298
+ stockHiLowLineColor?: string | null;
299
+ stockUpDownBars?: boolean | null;
300
+ stockUpDownBarStyle?: ChartStockUpDownBarStyle | null;
301
+ ofPie?: ChartOfPie | null;
302
+ threeD?: ChartThreeD | null;
303
+ chartexBox?: ChartexBoxWhisker | null;
304
+ chartexSunburst?: ChartexSunburst | null;
305
+ chartexTreemap?: ChartexTreemap | null;
306
+ chartexRegionMap?: ChartexRegionMap | null;
307
+ chartexHistogramBinning?: ChartexHistogramBinning | null;
308
+ chartexAccents?: string[] | null;
309
+ chartexColorPalette?: Array<string | null> | null;
310
+ chartexColorStyleMethod?: string | null;
311
+ chartexDataPointStyle?: ChartExElementStyle | null;
312
+ chartexDataPointLineStyle?: ChartExElementStyle | null;
313
+ chartexSeriesLineStyle?: ChartExElementStyle | null;
314
+ chartexDataPointMarkerStyle?: ChartExElementStyle | null;
315
+ chartexMarkerSizePt?: number | null;
316
+ chartexMarkerSymbol?: string | null;
317
+ chartexConnectorLines?: boolean | null;
318
+ }
319
+ interface ChartStockBarPaint {
320
+ fillColor?: string | null;
321
+ fillHidden?: boolean | null;
322
+ lineColor?: string | null;
323
+ lineWidthEmu?: number | null;
324
+ lineHidden?: boolean | null;
325
+ }
326
+ interface ChartStockUpDownBarStyle {
327
+ gapWidthPercent: number;
328
+ up: ChartStockBarPaint;
329
+ down: ChartStockBarPaint;
330
+ }
331
+ interface ChartOfPie {
332
+ type: 'pie' | 'bar';
333
+ splitType: 'auto' | 'cust' | 'percent' | 'pos' | 'val';
334
+ splitPos?: number | null;
335
+ customSplitIndices?: number[] | null;
336
+ secondPieSizePercent: number;
337
+ gapWidthPercent: number;
338
+ seriesLines: boolean;
339
+ }
340
+ interface ChartThreeD {
341
+ rotationX?: number | null;
342
+ rotationY?: number | null;
343
+ heightPercent?: number | null;
344
+ depthPercent?: number | null;
345
+ perspective?: number | null;
346
+ rightAngleAxes?: boolean | null;
347
+ gapDepthPercent?: number | null;
348
+ shape?: string | null;
349
+ }
350
+ interface ChartTextRun {
351
+ text: string;
352
+ fontSizeHpt?: number | null;
353
+ bold?: boolean | null;
354
+ color?: string | null;
355
+ fontFace?: string | null;
356
+ }
357
+ interface ChartTextParagraph {
358
+ runs: ChartTextRun[];
359
+ align?: 'l' | 'ctr' | 'r' | 'just' | 'dist' | string | null;
360
+ }
361
+ interface ChartTextBox {
362
+ x: number;
363
+ y: number;
364
+ w: number;
365
+ h: number;
366
+ paragraphs: ChartTextParagraph[];
367
+ verticalAnchor?: 't' | 'ctr' | 'b' | 'just' | 'dist' | string | null;
368
+ wrap?: 'none' | 'square' | string | null;
369
+ lIns?: number;
370
+ tIns?: number;
371
+ rIns?: number;
372
+ bIns?: number;
373
+ }
374
+ interface ChartexBoxSeries {
375
+ name: string;
376
+ chartexFormatIdx?: number | null;
377
+ color?: string | null;
378
+ lineColor?: string | null;
379
+ lineWidthEmu?: number | null;
380
+ chartexStyle?: ChartExElementStyle | null;
381
+ valuesByCategory: number[][];
382
+ meanMarker: boolean;
383
+ meanLine: boolean;
384
+ showOutliers: boolean;
385
+ showNonoutliers: boolean;
386
+ quartileMethod: string;
387
+ }
388
+ interface ChartexBoxWhisker {
389
+ oneBoxPerSeries?: boolean;
390
+ categories: string[];
391
+ series: ChartexBoxSeries[];
392
+ }
393
+ interface ChartexSunburstRow {
394
+ path: string[];
395
+ size: number;
396
+ }
397
+ interface ChartexSunburst {
398
+ rows: ChartexSunburstRow[];
399
+ }
400
+ interface ChartexTreemap {
401
+ rows: ChartexSunburstRow[];
402
+ parentLabelLayout?: string | null;
403
+ }
404
+ interface ChartexRegionMapRow {
405
+ label: string;
406
+ entityId?: string | null;
407
+ value?: number | null;
408
+ }
409
+ interface ChartexGeography {
410
+ projectionType?: 'mercator' | 'miller' | 'robinson' | 'albers' | string | null;
411
+ viewedRegionType?: string | null;
412
+ cultureLanguage?: string | null;
413
+ cultureRegion?: string | null;
414
+ attribution?: string | null;
415
+ cacheProvider?: string | null;
416
+ cachePresent: boolean;
417
+ }
418
+ interface ChartexValueColorStop {
419
+ kind: 'extremeValue' | 'number' | 'percent' | string;
420
+ value?: number | null;
421
+ }
422
+ interface ChartexRegionMapColors {
423
+ stopCount?: 2 | 3 | null;
424
+ minColor?: string | null;
425
+ midColor?: string | null;
426
+ maxColor?: string | null;
427
+ minPosition?: ChartexValueColorStop | null;
428
+ midPosition?: ChartexValueColorStop | null;
429
+ maxPosition?: ChartexValueColorStop | null;
430
+ }
431
+ interface ChartexRegionMap {
432
+ rows: ChartexRegionMapRow[];
433
+ regionLabelLayout?: 'none' | 'bestFitOnly' | 'showAll' | null;
434
+ geography?: ChartexGeography | null;
435
+ colors?: ChartexRegionMapColors | null;
436
+ }
437
+ interface ChartexHistogramBinning {
438
+ binSize?: number | null;
439
+ binCount?: number | null;
440
+ intervalClosed?: 'l' | 'r' | null;
441
+ underflow?: number | null;
442
+ overflow?: number | null;
443
+ }
444
+ interface SecondaryValueAxis {
445
+ min: number | null;
446
+ max: number | null;
447
+ title: string | null;
448
+ hidden: boolean;
449
+ formatCode?: string | null;
450
+ fontColor?: string | null;
451
+ fontSizeHpt?: number | null;
452
+ fontItalic?: boolean | null;
453
+ fontBold?: boolean | null;
454
+ fontFace?: string | null;
455
+ lineColor?: string | null;
456
+ lineWidthEmu?: number | null;
457
+ lineHidden: boolean;
458
+ majorTickMark: string;
459
+ minorTickMark?: string | null;
460
+ minorGridlines?: boolean;
461
+ minorGridlineColor?: string | null;
462
+ minorGridlineWidthEmu?: number | null;
463
+ minorGridlineDash?: string | null;
464
+ majorGridlines?: boolean;
465
+ majorGridlineColor?: string | null;
466
+ majorGridlineWidthEmu?: number | null;
467
+ majorGridlineDash?: string | null;
468
+ majorUnit?: number | null;
469
+ minorUnit?: number | null;
470
+ logBase?: number | null;
471
+ orientation?: 'minMax' | 'maxMin' | string | null;
472
+ tickLabelPos?: string | null;
473
+ crosses?: string | null;
474
+ crossesAt?: number | null;
475
+ titleFontSizeHpt?: number | null;
476
+ titleFontBold?: boolean | null;
477
+ titleFontItalic?: boolean | null;
478
+ titleFontColor?: string | null;
479
+ titleFontFace?: string | null;
480
+ titleRotation?: number | null;
481
+ titleVerticalMode?: 'horz' | 'vert' | 'vert270' | 'wordArtVert' | 'eaVert' | 'mongolianVert' | 'wordArtVertRtl' | null;
482
+ titleManualLayout?: ChartManualLayout | null;
483
+ }
484
+ interface ChartManualLayout {
485
+ xMode?: string;
486
+ yMode?: string;
487
+ wMode?: string;
488
+ hMode?: string;
489
+ layoutTarget?: string;
490
+ x: number;
491
+ y: number;
492
+ w?: number;
493
+ h?: number;
494
+ }
495
+ interface LegendManualLayout {
496
+ xMode?: string;
497
+ yMode?: string;
498
+ wMode?: string;
499
+ hMode?: string;
500
+ x: number;
501
+ y: number;
502
+ w: number;
503
+ h: number;
504
+ }
505
+ interface ChartRect {
506
+ x: number;
507
+ y: number;
508
+ w: number;
509
+ h: number;
510
+ }
511
+ //#endregion
512
+ //#region dist/.types-work/three-d-contract-DdC3L2kZ.d.ts
513
+ interface ChartThreeDRenderer {
514
+ render(ctx: CanvasRenderingContext2D, chart: ChartModel, rect: ChartRect, ptToPx: number): boolean;
515
+ }
516
+ //#endregion
517
+ //#region dist/.types-work/three-d.d.ts
518
+ declare const threeD: ChartThreeDRenderer;
519
+ //#endregion
520
+ export { type ChartThreeDRenderer, threeD };