@silurus/ooxml 0.81.0 → 0.82.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.
- package/README.md +4 -8
- package/dist/assets/render-worker-7-Zr7fSw.js +10 -0
- package/dist/assets/{render-worker-C2ACcLes.js → render-worker-B5gsW6b5.js} +4 -4
- package/dist/assets/{render-worker-DtU8oQZ7.js → render-worker-Dw_wQRIh.js} +1 -1
- package/dist/{canvas-viewer-mechanics-CqxKRGCp.js → canvas-viewer-mechanics-CS_qbr6T.js} +1 -1
- package/dist/chart-ex.mjs +4 -4
- package/dist/comment-occurrence-C34fWs_F.js +6 -0
- package/dist/comment-ui-runtime-BAe30Ct9.js +112 -0
- package/dist/comment-ui-runtime-BUCj4hWn.js +171 -0
- package/dist/comment-ui-runtime-F4a3te6p.js +2 -0
- package/dist/comments-Cf9W7r3M.js +241 -0
- package/dist/{document-pull-client-Ux4a_ax8.js → document-pull-client-BCgmytqI.js} +2205 -2192
- package/dist/{docx-SEyQ4gS-.js → docx-wokGKYfi.js} +674 -249
- package/dist/docx.mjs +6 -5
- package/dist/docx_parser_bg.wasm +0 -0
- package/dist/dom-interaction-boundary-C8F6HO5x.js +119 -0
- package/dist/highlight-rect-MaCt0om0.js +13 -0
- package/dist/index.mjs +3 -3
- package/dist/{line-distribute-BBGvvwLt.js → line-distribute-iXsUCIH-.js} +2 -2
- package/dist/{line-metrics-Baz31mML.js → line-metrics-B3syvDn2.js} +52 -52
- package/dist/math.mjs +2 -2
- package/dist/node.mjs +10 -10
- package/dist/{plot-area-frame-Dg1VIpUU.js → plot-area-frame-DHV02PJU.js} +591 -590
- package/dist/{pptx-5lQrMvMR.js → pptx-DU8L8I2T.js} +537 -243
- package/dist/pptx.mjs +6 -6
- package/dist/pptx_parser_bg.wasm +0 -0
- package/dist/read-only-comment-decoration-DcFevX_Q.js +96 -0
- package/dist/read-only-comment-margin-Dn2y55W6.js +189 -0
- package/dist/region-map.mjs +2 -2
- package/dist/{render-DEHjijQD.js → render-CenWM4g1.js} +1 -1
- package/dist/{render-worker-host-Dg_74V64.js → render-worker-host-BNENN3qP.js} +1 -1
- package/dist/{render-worker-host-B1nbV_k7.js → render-worker-host-BmH3kGSj.js} +1 -1
- package/dist/{render-worker-host-Bze5M6k5.js → render-worker-host-CmPBviYJ.js} +1 -1
- package/dist/{renderer-DuopJE1K.js → renderer-CYr9YTXM.js} +436 -435
- package/dist/{resource-measurement-DRLp4nFt.js → resource-measurement-CsW4_eYt.js} +2 -2
- package/dist/{session-CNVc3VJ4.js → session-Cky_swUj.js} +3 -3
- package/dist/{slide-pull-client-CzutXnGc.js → slide-pull-client-CqTVFb3W.js} +490 -383
- package/dist/source-key-BklvnEyQ.js +42 -0
- package/dist/{three-d-BYiWCNlz.js → three-d-7MaVzQuZ.js} +48 -47
- package/dist/three-d.mjs +324 -323
- package/dist/types/chart-ex.d.ts +2 -2
- package/dist/types/docx.d.ts +181 -19
- package/dist/types/index.d.ts +337 -26
- package/dist/types/math.d.ts +1 -1
- package/dist/types/node.d.ts +84 -10
- package/dist/types/pptx.d.ts +130 -11
- package/dist/types/region-map.d.ts +2 -2
- package/dist/types/three-d.d.ts +2 -2
- package/dist/types/xlsx.d.ts +76 -10
- package/dist/units-BzZ0gAxs.js +4 -0
- package/dist/{worksheet-pull-client-Cxj3Ej0s.js → worksheet-pull-client-CYtwXP5D.js} +3 -3
- package/dist/{xlsx-Bl3TIEVu.js → xlsx-DlV37-0j.js} +429 -218
- package/dist/xlsx.mjs +6 -6
- package/dist/xlsx_parser_bg.wasm +0 -0
- package/package.json +1 -1
- package/dist/assets/render-worker-Cx5uR77k.js +0 -10
- package/dist/highlight-rect-BqcZMHUE.js +0 -48
- /package/dist/{mathjax-DJa-Q93p.js → mathjax-DwIrafQ6.js} +0 -0
- /package/dist/{renderer-module-contract-0bO_5SC0.js → renderer-module-contract-DLbb7zY0.js} +0 -0
- /package/dist/{transfer-D0U6Uhn4.js → transfer-R6NjgBKD.js} +0 -0
- /package/dist/{visible-index-DbDuGMCE.js → visible-index-BFE3PWiY.js} +0 -0
package/dist/types/xlsx.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
//#region dist/.types-work/chart-
|
|
1
|
+
//#region dist/.types-work/chart-qJPl2r8m.d.ts
|
|
2
2
|
type MathStyle = 'roman' | 'italic' | 'bold' | 'boldItalic';
|
|
3
3
|
interface MathRun {
|
|
4
4
|
kind: 'run';
|
|
@@ -1054,12 +1054,12 @@ interface ChartRect {
|
|
|
1054
1054
|
h: number;
|
|
1055
1055
|
}
|
|
1056
1056
|
//#endregion
|
|
1057
|
-
//#region dist/.types-work/chart-ex-contract-
|
|
1057
|
+
//#region dist/.types-work/chart-ex-contract-Ba0xG5gE.d.ts
|
|
1058
1058
|
interface ChartExRenderer {
|
|
1059
1059
|
render(ctx: CanvasRenderingContext2D, chart: ChartModel, rect: ChartRect, ptToPx: number, shapeRotationDeg?: number): boolean;
|
|
1060
1060
|
}
|
|
1061
1061
|
//#endregion
|
|
1062
|
-
//#region dist/.types-work/mathjax-
|
|
1062
|
+
//#region dist/.types-work/mathjax-DwKoKmdb.d.ts
|
|
1063
1063
|
interface MathSvg {
|
|
1064
1064
|
svg: string;
|
|
1065
1065
|
widthEm: number;
|
|
@@ -1071,17 +1071,17 @@ interface MathRenderer {
|
|
|
1071
1071
|
mathMLToSvg(mathml: string): Promise<MathSvg>;
|
|
1072
1072
|
}
|
|
1073
1073
|
//#endregion
|
|
1074
|
-
//#region dist/.types-work/three-d-contract-
|
|
1074
|
+
//#region dist/.types-work/three-d-contract-D5bEzjMw.d.ts
|
|
1075
1075
|
interface ChartThreeDRenderer {
|
|
1076
1076
|
render(ctx: CanvasRenderingContext2D, chart: ChartModel, rect: ChartRect, ptToPx: number, shapeRotationDeg?: number): boolean;
|
|
1077
1077
|
}
|
|
1078
1078
|
//#endregion
|
|
1079
|
-
//#region dist/.types-work/region-map-contract-
|
|
1079
|
+
//#region dist/.types-work/region-map-contract-BFIR10oz.d.ts
|
|
1080
1080
|
interface ChartRegionMapRenderer {
|
|
1081
1081
|
render(ctx: CanvasRenderingContext2D, chart: ChartModel, rect: ChartRect, ptToPx: number, shapeRotationDeg?: number): boolean;
|
|
1082
1082
|
}
|
|
1083
1083
|
//#endregion
|
|
1084
|
-
//#region dist/.types-work/hyperlink-
|
|
1084
|
+
//#region dist/.types-work/hyperlink-CZoV-4B8.d.ts
|
|
1085
1085
|
type OoxmlErrorCode = 'encrypted' | 'invalid-password' | 'unsupported-encryption' | 'legacy-binary-format' | 'not-ooxml';
|
|
1086
1086
|
type OoxmlErrorStage = 'container' | 'decompression' | 'parsing' | 'serialization' | 'layout' | 'rendering' | 'worker';
|
|
1087
1087
|
declare class OoxmlError extends Error {
|
|
@@ -1187,11 +1187,25 @@ type HyperlinkTarget = {
|
|
|
1187
1187
|
};
|
|
1188
1188
|
declare function openExternalHyperlink(url: string, allowed?: readonly string[], win?: Pick<Window, 'open'> | undefined): boolean;
|
|
1189
1189
|
//#endregion
|
|
1190
|
-
//#region dist/.types-work/find-highlight-
|
|
1190
|
+
//#region dist/.types-work/find-highlight-DdGGQ_H7.d.ts
|
|
1191
1191
|
interface ViewerContextMenuEvent<TContext> {
|
|
1192
1192
|
readonly originalEvent: MouseEvent;
|
|
1193
1193
|
getContext(): Promise<TContext | null>;
|
|
1194
1194
|
}
|
|
1195
|
+
interface ViewerCommentsOptions {
|
|
1196
|
+
readonly includeResolved?: boolean;
|
|
1197
|
+
}
|
|
1198
|
+
interface ViewerCommentMessageContext {
|
|
1199
|
+
readonly id?: string;
|
|
1200
|
+
readonly author?: string;
|
|
1201
|
+
readonly date?: string;
|
|
1202
|
+
readonly text: string;
|
|
1203
|
+
readonly status?: 'active' | 'resolved' | 'closed';
|
|
1204
|
+
}
|
|
1205
|
+
interface ViewerCommentThreadContext {
|
|
1206
|
+
readonly root: ViewerCommentMessageContext;
|
|
1207
|
+
readonly replies: readonly ViewerCommentMessageContext[];
|
|
1208
|
+
}
|
|
1195
1209
|
interface AutoResizeOptions {
|
|
1196
1210
|
pauseWhenHidden?: boolean;
|
|
1197
1211
|
}
|
|
@@ -1217,7 +1231,7 @@ interface FindHighlightColors {
|
|
|
1217
1231
|
active?: string;
|
|
1218
1232
|
}
|
|
1219
1233
|
//#endregion
|
|
1220
|
-
//#region dist/.types-work/xlsx-
|
|
1234
|
+
//#region dist/.types-work/xlsx-Dx2KTVG5.d.ts
|
|
1221
1235
|
type ShapeFill = Exclude<Fill, {
|
|
1222
1236
|
fillType: 'image';
|
|
1223
1237
|
} | {
|
|
@@ -1479,9 +1493,25 @@ interface DefinedName {
|
|
|
1479
1493
|
formula: string;
|
|
1480
1494
|
}
|
|
1481
1495
|
interface XlsxComment {
|
|
1496
|
+
kind?: 'note' | 'thread';
|
|
1482
1497
|
cellRef: string;
|
|
1498
|
+
id?: string;
|
|
1499
|
+
personId?: string;
|
|
1483
1500
|
author?: string;
|
|
1501
|
+
date?: string;
|
|
1502
|
+
rootText?: string;
|
|
1484
1503
|
text: string;
|
|
1504
|
+
resolved?: boolean;
|
|
1505
|
+
replies?: XlsxCommentReply[];
|
|
1506
|
+
}
|
|
1507
|
+
interface XlsxCommentReply {
|
|
1508
|
+
id: string;
|
|
1509
|
+
parentId: string;
|
|
1510
|
+
personId: string;
|
|
1511
|
+
author?: string;
|
|
1512
|
+
date?: string;
|
|
1513
|
+
text: string;
|
|
1514
|
+
resolved?: boolean;
|
|
1485
1515
|
}
|
|
1486
1516
|
interface DataValidation {
|
|
1487
1517
|
sqref: string;
|
|
@@ -2003,6 +2033,7 @@ declare class XlsxWorkbook {
|
|
|
2003
2033
|
sheetVisibility(sheetIndex: number): SheetVisibility;
|
|
2004
2034
|
isHidden(sheetIndex: number): boolean;
|
|
2005
2035
|
getWorksheet(sheetIndex: number): Promise<Worksheet>;
|
|
2036
|
+
getComments(sheetIndex: number): Promise<readonly Readonly<XlsxComment>[]>;
|
|
2006
2037
|
getResourceMetrics(): Promise<OoxmlResourceMetrics>;
|
|
2007
2038
|
private loadWorksheet;
|
|
2008
2039
|
private loadWorksheetStream;
|
|
@@ -2059,6 +2090,7 @@ interface XlsxSelectionContextCell {
|
|
|
2059
2090
|
readonly valueType: 'empty' | 'text' | 'number' | 'bool' | 'error' | 'shared';
|
|
2060
2091
|
readonly value: string | number | boolean | null;
|
|
2061
2092
|
readonly formula?: string;
|
|
2093
|
+
readonly comment?: ViewerCommentThreadContext;
|
|
2062
2094
|
}
|
|
2063
2095
|
interface XlsxRangeSelectionContext {
|
|
2064
2096
|
readonly format: 'xlsx';
|
|
@@ -2112,6 +2144,7 @@ interface XlsxMatchLocation {
|
|
|
2112
2144
|
row: number;
|
|
2113
2145
|
col: number;
|
|
2114
2146
|
}
|
|
2147
|
+
interface XlsxCommentsOptions extends ViewerCommentsOptions {}
|
|
2115
2148
|
type HiddenSheetMode = 'show' | 'skip' | 'dim';
|
|
2116
2149
|
interface XlsxSheetViewerOptions extends LoadOptions {
|
|
2117
2150
|
cellScale?: number;
|
|
@@ -2131,6 +2164,7 @@ interface XlsxSheetViewerOptions extends LoadOptions {
|
|
|
2131
2164
|
enableHyperlinks?: boolean;
|
|
2132
2165
|
selectionColor?: string;
|
|
2133
2166
|
findHighlightColors?: FindHighlightColors;
|
|
2167
|
+
comments?: boolean | XlsxCommentsOptions;
|
|
2134
2168
|
hiddenSheetMode?: HiddenSheetMode;
|
|
2135
2169
|
onViewportChange?: (offset: XlsxViewportOffset) => void;
|
|
2136
2170
|
}
|
|
@@ -2141,6 +2175,12 @@ interface XlsxViewportOffset {
|
|
|
2141
2175
|
readonly x: number;
|
|
2142
2176
|
readonly y: number;
|
|
2143
2177
|
}
|
|
2178
|
+
interface XlsxCellViewportRect {
|
|
2179
|
+
readonly x: number;
|
|
2180
|
+
readonly y: number;
|
|
2181
|
+
readonly width: number;
|
|
2182
|
+
readonly height: number;
|
|
2183
|
+
}
|
|
2144
2184
|
interface XlsxScrollToCellOptions {
|
|
2145
2185
|
readonly align?: 'nearest' | 'start' | 'center' | 'end';
|
|
2146
2186
|
}
|
|
@@ -2168,6 +2208,7 @@ type XlsxViewerMount = {
|
|
|
2168
2208
|
readonly mode: CanvasViewerRenderMode;
|
|
2169
2209
|
};
|
|
2170
2210
|
declare class XlsxViewerEngine implements ZoomableViewer {
|
|
2211
|
+
private readonly container;
|
|
2171
2212
|
private readonly hostDocument;
|
|
2172
2213
|
private readonly hostWindow;
|
|
2173
2214
|
private readonly acquisition;
|
|
@@ -2208,6 +2249,9 @@ declare class XlsxViewerEngine implements ZoomableViewer {
|
|
|
2208
2249
|
private fontBinding;
|
|
2209
2250
|
private _hiddenSheetMode;
|
|
2210
2251
|
private currentWorksheet;
|
|
2252
|
+
private currentSourceComments;
|
|
2253
|
+
private commentNavigationGeneration;
|
|
2254
|
+
private sourceCommentMap;
|
|
2211
2255
|
private sheetViews;
|
|
2212
2256
|
private opts;
|
|
2213
2257
|
private readonly _mountKind;
|
|
@@ -2217,6 +2261,10 @@ declare class XlsxViewerEngine implements ZoomableViewer {
|
|
|
2217
2261
|
private preparedWorkbook;
|
|
2218
2262
|
private _destroyed;
|
|
2219
2263
|
private resizeObserver;
|
|
2264
|
+
private chromeColors;
|
|
2265
|
+
private chromeStyleObserver;
|
|
2266
|
+
private chromeSchemeMedia;
|
|
2267
|
+
private chromeSchemeListener;
|
|
2220
2268
|
private _lastViewportNotification;
|
|
2221
2269
|
private get anchorCell();
|
|
2222
2270
|
private get activeCell();
|
|
@@ -2252,12 +2300,19 @@ declare class XlsxViewerEngine implements ZoomableViewer {
|
|
|
2252
2300
|
private hyperlinkMap;
|
|
2253
2301
|
private commentPopupKey;
|
|
2254
2302
|
private commentPopupTimer;
|
|
2303
|
+
private commentPopupCell;
|
|
2304
|
+
private commentPopupPositionScheduled;
|
|
2305
|
+
private commentPopupResizeObserver;
|
|
2306
|
+
private commentUi;
|
|
2307
|
+
private commentPopupRenderGeneration;
|
|
2255
2308
|
private validationPanel;
|
|
2256
2309
|
private validationPanelKey;
|
|
2257
2310
|
private validationRequestGeneration;
|
|
2258
2311
|
private validationArrowRect;
|
|
2259
2312
|
private validationOutsideHandler;
|
|
2260
2313
|
constructor(container: HTMLElement, opts: XlsxViewerOptions | XlsxSheetViewerOptions | undefined, mount: XlsxViewerMount);
|
|
2314
|
+
private refreshChromeTheme;
|
|
2315
|
+
private installChromeThemeRefresh;
|
|
2261
2316
|
private _collectSheetCells;
|
|
2262
2317
|
load(source: string | ArrayBuffer): Promise<void>;
|
|
2263
2318
|
private activateWorkbook;
|
|
@@ -2314,7 +2369,10 @@ declare class XlsxViewerEngine implements ZoomableViewer {
|
|
|
2314
2369
|
getCellAt(clientX: number, clientY: number): CellAddress | null;
|
|
2315
2370
|
private elementContextViewport;
|
|
2316
2371
|
private elementContextAt;
|
|
2317
|
-
private
|
|
2372
|
+
private _cellRect;
|
|
2373
|
+
getCellViewportRect(cell: CellAddress | string): XlsxCellViewportRect | null;
|
|
2374
|
+
getComments(): readonly Readonly<XlsxComment>[];
|
|
2375
|
+
goToComment(sheetIndex: number, cellRef: string, options?: XlsxScrollToCellOptions): Promise<boolean>;
|
|
2318
2376
|
get selectionState(): XlsxSelectionState | null;
|
|
2319
2377
|
setSelection(input: XlsxSelectionInput): void;
|
|
2320
2378
|
getSelectionContext(options?: XlsxSelectionContextOptions): XlsxSelectionContext | null;
|
|
@@ -2351,12 +2409,17 @@ declare class XlsxViewerEngine implements ZoomableViewer {
|
|
|
2351
2409
|
private installValidationOutsideHandler;
|
|
2352
2410
|
private hideValidationPanel;
|
|
2353
2411
|
private buildCommentMap;
|
|
2412
|
+
private createCommentMap;
|
|
2413
|
+
private createVisibleSheetView;
|
|
2354
2414
|
private buildHyperlinkMap;
|
|
2355
2415
|
private hyperlinkAtCell;
|
|
2356
2416
|
private dispatchHyperlink;
|
|
2357
2417
|
private navigateInternalHyperlink;
|
|
2358
2418
|
private scheduleCommentPopup;
|
|
2419
|
+
private loadCommentUi;
|
|
2359
2420
|
private renderCommentPopup;
|
|
2421
|
+
private scheduleCommentPopupPosition;
|
|
2422
|
+
private positionCommentPopup;
|
|
2360
2423
|
private hideCommentPopup;
|
|
2361
2424
|
private applyPointerSelection;
|
|
2362
2425
|
private viewportInputBounds;
|
|
@@ -2431,6 +2494,9 @@ declare class XlsxSheetViewer implements ZoomableViewer {
|
|
|
2431
2494
|
fitWidth(): void;
|
|
2432
2495
|
fitPage(): void;
|
|
2433
2496
|
getCellAt(clientX: number, clientY: number): CellAddress | null;
|
|
2497
|
+
getCellViewportRect(cell: CellAddress | string): XlsxCellViewportRect | null;
|
|
2498
|
+
getComments(): readonly Readonly<XlsxComment>[];
|
|
2499
|
+
goToComment(sheetIndex: number, cellRef: string, options?: XlsxScrollToCellOptions): Promise<boolean>;
|
|
2434
2500
|
get selectionState(): XlsxSelectionState | null;
|
|
2435
2501
|
setSelection(selection: XlsxSelectionInput): void;
|
|
2436
2502
|
getSelectionContext(options?: XlsxSelectionContextOptions): XlsxSelectionContext | null;
|
|
@@ -2451,4 +2517,4 @@ declare class XlsxSheetViewer implements ZoomableViewer {
|
|
|
2451
2517
|
}
|
|
2452
2518
|
declare function resolveSharedStrings(ws: Worksheet, sharedStrings: SharedString[]): Worksheet;
|
|
2453
2519
|
//#endregion
|
|
2454
|
-
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 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 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 ConditionalFormat, type DataValidation, type DefinedName, type DrawingMLCustomDashSegment, 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 ImageFill, 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 NoFill, 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 SrcRect, type Styles, type TableColumnInfo, type TableInfo, type TileInfo, 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 };
|
|
2520
|
+
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 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 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 ConditionalFormat, type DataValidation, type DefinedName, type DrawingMLCustomDashSegment, 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 ImageFill, 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 NoFill, 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 SrcRect, type Styles, type TableColumnInfo, type TableInfo, type TileInfo, type ViewerCommentMessageContext, type ViewerCommentThreadContext, type ViewerContextMenuEvent, type ViewportRange, type Workbook, type Worksheet, type WorksheetCellRange, type XlsxCellViewportRect, type XlsxComment, type XlsxCommentReply, type XlsxCommentsOptions, 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,6 +1,6 @@
|
|
|
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, Yt as c, Z as l, et as u, nt as d, ot as f, rt as p, tt as m } from "./line-metrics-
|
|
2
|
-
import { n as h, r as g, t as _ } from "./resource-measurement-
|
|
3
|
-
import { t as v } from "./transfer-
|
|
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, Yt as c, Z as l, et as u, nt as d, ot as f, rt as p, tt as m } from "./line-metrics-B3syvDn2.js";
|
|
2
|
+
import { n as h, r as g, t as _ } from "./resource-measurement-CsW4_eYt.js";
|
|
3
|
+
import { t as v } from "./transfer-R6NjgBKD.js";
|
|
4
4
|
//#region packages/xlsx/src/worksheet-resource-limits.ts
|
|
5
5
|
var y = d, b = e, x = u, S = m, C = a, w = s, T = o, E = l, D = Object.freeze({
|
|
6
6
|
archiveEntryCount: 0,
|