@silurus/ooxml 0.76.1 → 0.76.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -517,7 +517,7 @@ interface FindHighlightColors {
517
517
  active?: string;
518
518
  }
519
519
  //#endregion
520
- //#region dist/.types-work/docx-C5SBoWU-.d.ts
520
+ //#region dist/.types-work/docx-BOSu_OHa.d.ts
521
521
  interface DocxDocumentModel {
522
522
  section: SectionProps;
523
523
  body: BodyElement[];
@@ -688,6 +688,7 @@ interface DocParagraph {
688
688
  markVanish?: boolean;
689
689
  widowControl?: boolean;
690
690
  overflowPunct?: boolean;
691
+ adjustRightInd?: boolean;
691
692
  borders?: ParagraphBorders | null;
692
693
  styleId?: string | null;
693
694
  defaultFontSize?: number;
@@ -736,7 +736,7 @@ interface FindHighlightColors {
736
736
  active?: string;
737
737
  }
738
738
  //#endregion
739
- //#region dist/.types-work/docx-C5SBoWU-.d.ts
739
+ //#region dist/.types-work/docx-BOSu_OHa.d.ts
740
740
  interface DocxDocumentModel {
741
741
  section: SectionProps;
742
742
  body: BodyElement[];
@@ -907,6 +907,7 @@ interface DocParagraph {
907
907
  markVanish?: boolean;
908
908
  widowControl?: boolean;
909
909
  overflowPunct?: boolean;
910
+ adjustRightInd?: boolean;
910
911
  borders?: ParagraphBorders | null;
911
912
  styleId?: string | null;
912
913
  defaultFontSize?: number;
@@ -2188,7 +2189,7 @@ declare namespace pptx_d_exports {
2188
2189
  export { AutoResizeOptions, Bevel3d, BlipBullet, Bullet, Camera3d, ChartElement, ChartModel, ChartSeries, DimOptions, Fill, FillRect, FindHighlightColors, FindMatch, FindMatchesOptions, Glow, GradientFill, GradientStop$1 as GradientStop, HiddenSlideMode, HyperlinkTarget, ImageFill, LightRig, LineBreak, LoadOptions$1 as LoadOptions, MediaElement, NoFill, OoxmlDecodedImageLimitError, OoxmlDecodedImageLimitMetric, OoxmlError, OoxmlErrorCode, OoxmlErrorSource, OoxmlErrorStage, OoxmlFormat, OoxmlResourceLimit, OoxmlResourceLimitError, OoxmlResourceLimitErrorDetails, OoxmlResourceLimits, OoxmlResourceMetric, OoxmlResourceMetrics, OoxmlResourceMetricsCheckpoint, OoxmlResourceName, OoxmlResourcePolicySnapshot, OoxmlResourceUsageSnapshot, OoxmlResourceViolation, Paragraph, PathCmd$2 as PathCmd, PictureElement, PptxComment, PptxHighlightColors, PptxHighlightMatch, PptxMatchLocation, PptxPresentation, PptxScrollViewer, PptxScrollViewerOptions, PptxTextRunInfo, PptxViewer, PptxViewerOptions, Presentation, PresentationHandle, Reflection, RenderOptions, RenderSlideOptions, RenderSlideToBitmapOptions, Rot3d, Scene3d, Shadow, ShapeElement, Slide, SlideElement, SoftEdge, SolidFill, Sp3d, SpaceLine, Stroke, TabStop$1 as TabStop, TableCell, TableElement, TableRow, TextBody, TextRect, TextRun, TextRunCallback, TextRunData, TileInfo, autoResize, buildPptxHighlightLayer, buildPptxTextLayer, isOoxmlDecodedImageLimitError, openExternalHyperlink, renderSlide };
2189
2190
  }
2190
2191
  //#endregion
2191
- //#region dist/.types-work/xlsx-D1NhipZN.d.ts
2192
+ //#region dist/.types-work/xlsx-DrRsBH8s.d.ts
2192
2193
  interface Workbook {
2193
2194
  sheets: SheetMeta[];
2194
2195
  date1904?: boolean;
@@ -2975,6 +2976,7 @@ type HiddenSheetMode = 'show' | 'skip' | 'dim';
2975
2976
  interface XlsxSheetViewerOptions extends LoadOptions$3 {
2976
2977
  cellScale?: number;
2977
2978
  resizable?: boolean;
2979
+ showScrollbars?: boolean;
2978
2980
  zoomMin?: number;
2979
2981
  zoomMax?: number;
2980
2982
  onScaleChange?: (scale: number) => void;
@@ -3061,6 +3063,7 @@ declare class XlsxViewerEngine implements ZoomableViewer {
3061
3063
  private sheetViews;
3062
3064
  private opts;
3063
3065
  private readonly _mountKind;
3066
+ private readonly _nativeScrollbars;
3064
3067
  private readonly _mode;
3065
3068
  private _borrowed;
3066
3069
  private preparedWorkbook;
@@ -3074,7 +3077,8 @@ declare class XlsxViewerEngine implements ZoomableViewer {
3074
3077
  private get selectionMode();
3075
3078
  private set selectionMode(value);
3076
3079
  private get isSelecting();
3077
- private set isSelecting(value);
3080
+ private get selectionPointerId();
3081
+ private beginSelectionDrag;
3078
3082
  private _pendingZoomAnchor;
3079
3083
  private readonly selectionController;
3080
3084
  private selectionOverlay;
@@ -3084,6 +3088,9 @@ declare class XlsxViewerEngine implements ZoomableViewer {
3084
3088
  private pendingTap;
3085
3089
  private pendingClick;
3086
3090
  private resizeDrag;
3091
+ private selectionAutoScrollPointer;
3092
+ private selectionAutoScrollFrame;
3093
+ private selectionAutoScrollLastTime;
3087
3094
  private commentPopup;
3088
3095
  private commentMap;
3089
3096
  private hyperlinkMap;
@@ -3183,6 +3190,12 @@ declare class XlsxViewerEngine implements ZoomableViewer {
3183
3190
  private renderCommentPopup;
3184
3191
  private hideCommentPopup;
3185
3192
  private applyPointerSelection;
3193
+ private viewportInputBounds;
3194
+ private extendDragSelection;
3195
+ private selectionAutoScrollSpeed;
3196
+ private trackSelectionAutoScroll;
3197
+ private runSelectionAutoScroll;
3198
+ private stopSelectionAutoScroll;
3186
3199
  private setupSelectionEvents;
3187
3200
  private buildTabs;
3188
3201
  private makeNavButton;
@@ -1090,6 +1090,7 @@ interface DocParagraph {
1090
1090
  markVanish?: boolean;
1091
1091
  widowControl?: boolean;
1092
1092
  overflowPunct?: boolean;
1093
+ adjustRightInd?: boolean;
1093
1094
  borders?: ParagraphBorders | null;
1094
1095
  styleId?: string | null;
1095
1096
  defaultFontSize?: number;
@@ -501,7 +501,7 @@ interface FindHighlightColors {
501
501
  active?: string;
502
502
  }
503
503
  //#endregion
504
- //#region dist/.types-work/xlsx-D1NhipZN.d.ts
504
+ //#region dist/.types-work/xlsx-DrRsBH8s.d.ts
505
505
  interface Workbook {
506
506
  sheets: SheetMeta[];
507
507
  date1904?: boolean;
@@ -1288,6 +1288,7 @@ type HiddenSheetMode = 'show' | 'skip' | 'dim';
1288
1288
  interface XlsxSheetViewerOptions extends LoadOptions$1 {
1289
1289
  cellScale?: number;
1290
1290
  resizable?: boolean;
1291
+ showScrollbars?: boolean;
1291
1292
  zoomMin?: number;
1292
1293
  zoomMax?: number;
1293
1294
  onScaleChange?: (scale: number) => void;
@@ -1374,6 +1375,7 @@ declare class XlsxViewerEngine implements ZoomableViewer {
1374
1375
  private sheetViews;
1375
1376
  private opts;
1376
1377
  private readonly _mountKind;
1378
+ private readonly _nativeScrollbars;
1377
1379
  private readonly _mode;
1378
1380
  private _borrowed;
1379
1381
  private preparedWorkbook;
@@ -1387,7 +1389,8 @@ declare class XlsxViewerEngine implements ZoomableViewer {
1387
1389
  private get selectionMode();
1388
1390
  private set selectionMode(value);
1389
1391
  private get isSelecting();
1390
- private set isSelecting(value);
1392
+ private get selectionPointerId();
1393
+ private beginSelectionDrag;
1391
1394
  private _pendingZoomAnchor;
1392
1395
  private readonly selectionController;
1393
1396
  private selectionOverlay;
@@ -1397,6 +1400,9 @@ declare class XlsxViewerEngine implements ZoomableViewer {
1397
1400
  private pendingTap;
1398
1401
  private pendingClick;
1399
1402
  private resizeDrag;
1403
+ private selectionAutoScrollPointer;
1404
+ private selectionAutoScrollFrame;
1405
+ private selectionAutoScrollLastTime;
1400
1406
  private commentPopup;
1401
1407
  private commentMap;
1402
1408
  private hyperlinkMap;
@@ -1496,6 +1502,12 @@ declare class XlsxViewerEngine implements ZoomableViewer {
1496
1502
  private renderCommentPopup;
1497
1503
  private hideCommentPopup;
1498
1504
  private applyPointerSelection;
1505
+ private viewportInputBounds;
1506
+ private extendDragSelection;
1507
+ private selectionAutoScrollSpeed;
1508
+ private trackSelectionAutoScroll;
1509
+ private runSelectionAutoScroll;
1510
+ private stopSelectionAutoScroll;
1499
1511
  private setupSelectionEvents;
1500
1512
  private buildTabs;
1501
1513
  private makeNavButton;