office-viewer 0.2.0 → 0.3.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 +13 -3
- package/esm/Excel.d.ts +59 -0
- package/esm/Excel.js +200 -0
- package/esm/OfficeViewer.d.ts +10 -0
- package/esm/RenderOptions.d.ts +25 -0
- package/esm/UnSupport.d.ts +13 -0
- package/esm/UnSupport.js +33 -0
- package/esm/Word.d.ts +7 -24
- package/esm/Word.js +25 -22
- package/esm/common/__tests__/autoParse.test.d.ts +1 -0
- package/esm/common/autoParse.d.ts +9 -0
- package/esm/common/autoParse.js +192 -0
- package/esm/common/parseAttributes.d.ts +6 -0
- package/esm/common/parseAttributes.js +27 -0
- package/esm/common/parseChildren.d.ts +8 -0
- package/esm/common/parseContentType.d.ts +7 -0
- package/esm/common/parseContentType.js +50 -0
- package/esm/common/parseRelationship.d.ts +5 -0
- package/esm/common/parseRelationship.js +46 -0
- package/esm/createOfficeViewer.d.ts +16 -0
- package/esm/createOfficeViewer.js +98 -0
- package/esm/excel/StyleSheet.d.ts +8 -0
- package/esm/excel/StyleSheet.js +11 -0
- package/esm/excel/Workbook.d.ts +180 -0
- package/esm/excel/Workbook.js +209 -0
- package/esm/excel/data/LocalDataProvider.d.ts +146 -0
- package/esm/excel/data/LocalDataProvider.js +784 -0
- package/esm/excel/data/applyAutoFilter.d.ts +10 -0
- package/esm/excel/data/applyAutoFilter.js +86 -0
- package/esm/excel/data/autoFilter/CellValueNum.d.ts +5 -0
- package/esm/excel/data/autoFilter/__test__/customFilter.test.d.ts +1 -0
- package/esm/excel/data/autoFilter/__test__/filters.test.d.ts +1 -0
- package/esm/excel/data/autoFilter/__test__/sortByRange.test.d.ts +1 -0
- package/esm/excel/data/autoFilter/applySortState.d.ts +6 -0
- package/esm/excel/data/autoFilter/applySortState.js +36 -0
- package/esm/excel/data/autoFilter/customFilter.d.ts +6 -0
- package/esm/excel/data/autoFilter/customFilter.js +78 -0
- package/esm/excel/data/autoFilter/evalCustomFilter.d.ts +9 -0
- package/esm/excel/data/autoFilter/evalCustomFilter.js +61 -0
- package/esm/excel/data/autoFilter/filters.d.ts +3 -0
- package/esm/excel/data/autoFilter/filters.js +55 -0
- package/esm/excel/data/autoFilter/inDateGroupItems.d.ts +6 -0
- package/esm/excel/data/autoFilter/inDateGroupItems.js +71 -0
- package/esm/excel/data/autoFilter/sortByRange.d.ts +8 -0
- package/esm/excel/data/autoFilter/sortByRange.js +50 -0
- package/esm/excel/data/defaultFont.d.ts +25 -0
- package/esm/excel/data/defaultFont.js +27 -0
- package/esm/excel/data/getThemeColor.d.ts +2 -0
- package/esm/excel/data/getThemeColor.js +71 -0
- package/esm/excel/data/numfmt/amountInWords.d.ts +4 -0
- package/esm/excel/data/numfmt/amountInWords.js +39 -0
- package/esm/excel/data/numfmtExtend.d.ts +10 -0
- package/esm/excel/data/numfmtExtend.js +29 -0
- package/esm/excel/edit/Command.d.ts +19 -0
- package/esm/excel/edit/ui/CellEditor.d.ts +27 -0
- package/esm/excel/edit/ui/CellEditor.js +65 -0
- package/esm/excel/io/csv/emptyXLSX.d.ts +2 -0
- package/esm/excel/io/csv/emptyXLSX.js +6 -0
- package/esm/excel/io/excel/__tests__/parseSharedStrings.test.d.ts +1 -0
- package/esm/excel/io/excel/drawing/getRelationPath.d.ts +2 -0
- package/esm/excel/io/excel/drawing/getRelationPath.js +11 -0
- package/esm/excel/io/excel/drawing/parseAnchorCommon.d.ts +9 -0
- package/esm/excel/io/excel/drawing/parseAnchorCommon.js +78 -0
- package/esm/excel/io/excel/drawing/parseChart.d.ts +3 -0
- package/esm/excel/io/excel/drawing/parseChart.js +11 -0
- package/esm/excel/io/excel/drawing/parseDrawing.d.ts +8 -0
- package/esm/excel/io/excel/drawing/parseDrawing.js +103 -0
- package/esm/excel/io/excel/drawing/parsePic.d.ts +4 -0
- package/esm/excel/io/excel/drawing/parsePic.js +23 -0
- package/esm/excel/io/excel/drawing/parseShape.d.ts +4 -0
- package/esm/excel/io/excel/drawing/parseShape.js +159 -0
- package/esm/excel/io/excel/getRelPath.d.ts +4 -0
- package/esm/excel/io/excel/getRelPath.js +10 -0
- package/esm/excel/io/excel/initValueForContainsBlanks.d.ts +6 -0
- package/esm/excel/io/excel/initValueForContainsBlanks.js +58 -0
- package/esm/excel/io/excel/initValueForTable.d.ts +5 -0
- package/esm/excel/io/excel/initValueForTable.js +31 -0
- package/esm/excel/io/excel/parseDefinedNames.d.ts +5 -0
- package/esm/excel/io/excel/parseDefinedNames.js +11 -0
- package/esm/excel/io/excel/parseSharedStrings.d.ts +9 -0
- package/esm/excel/io/excel/parseSharedStrings.js +173 -0
- package/esm/excel/io/excel/parseSheet.d.ts +9 -0
- package/esm/excel/io/excel/parseSheet.js +84 -0
- package/esm/excel/io/excel/parseTableParts.d.ts +5 -0
- package/esm/excel/io/excel/parseTableParts.js +67 -0
- package/esm/excel/io/excel/parseTableStyleDef.d.ts +3 -0
- package/esm/excel/io/excel/parseTheme.d.ts +6 -0
- package/esm/excel/io/excel/parseTheme.js +42 -0
- package/esm/excel/io/excel/parseWorkbook.d.ts +8 -0
- package/esm/excel/io/excel/parseWorkbook.js +105 -0
- package/esm/excel/io/excel/parseWorkbookPr.d.ts +6 -0
- package/esm/excel/io/excel/parseWorkbookPr.js +13 -0
- package/esm/excel/io/excel/parseWorkbookView.d.ts +6 -0
- package/esm/excel/io/excel/parseWorkbookView.js +13 -0
- package/esm/excel/io/excel/parseWorksheet.d.ts +9 -0
- package/esm/excel/io/excel/parseWorksheet.js +207 -0
- package/esm/excel/io/excel/preset/defaultTheme.d.ts +1 -0
- package/esm/excel/io/excel/preset/defaultTheme.js +3 -0
- package/esm/excel/io/excel/preset/presetCellStyles.d.ts +3 -0
- package/esm/excel/io/excel/preset/presetIconSet.d.ts +6 -0
- package/esm/excel/io/excel/preset/presetIconSet.js +55 -0
- package/esm/excel/io/excel/preset/presetIcons.d.ts +3 -0
- package/esm/excel/io/excel/preset/presetIcons.js +44 -0
- package/esm/excel/io/excel/preset/presetTableStyles.d.ts +3 -0
- package/esm/excel/io/excel/preset/presetTableStyles.js +35117 -0
- package/esm/excel/io/excel/stylesheet/parseColor.d.ts +5 -0
- package/esm/excel/io/excel/stylesheet/parseColor.js +11 -0
- package/esm/excel/io/excel/util/Range.d.ts +66 -0
- package/esm/excel/io/excel/util/Range.js +120 -0
- package/esm/excel/io/excel/util/__tests__/makeBlankValue.test.d.ts +1 -0
- package/esm/excel/io/excel/util/decodeAddress.d.ts +11 -0
- package/esm/excel/io/excel/util/decodeAddress.js +63 -0
- package/esm/excel/io/excel/util/fromExcelDate.d.ts +14 -0
- package/esm/excel/io/excel/util/fromExcelDate.js +26 -0
- package/esm/excel/io/excel/util/lettersToNumber.d.ts +4 -0
- package/esm/excel/io/excel/util/makeBlankValue.d.ts +6 -0
- package/esm/excel/io/excel/util/makeBlankValue.js +21 -0
- package/esm/excel/io/excel/util/numberToLetters.d.ts +4 -0
- package/esm/excel/io/excel/util/numberToLetters.js +13 -0
- package/esm/excel/io/excel/worksheet/parseSheetData.d.ts +11 -0
- package/esm/excel/io/excel/worksheet/parseSheetData.js +154 -0
- package/esm/excel/io/parseExcel.d.ts +10 -0
- package/esm/excel/io/parseExcel.js +39 -0
- package/esm/excel/lang/en_US.d.ts +24 -0
- package/esm/excel/lang/en_US.js +25 -0
- package/esm/excel/lang/lang.d.ts +30 -0
- package/esm/excel/lang/lang.js +19 -0
- package/esm/excel/lang/zh_CN.d.ts +2 -0
- package/esm/excel/lang/zh_CN.js +25 -0
- package/esm/excel/print/printStyle.d.ts +4 -0
- package/esm/excel/print/printStyle.js +8 -0
- package/esm/excel/print/renderInIframe.d.ts +7 -0
- package/esm/excel/print/renderInIframe.js +26 -0
- package/esm/excel/render/Canvas.d.ts +108 -0
- package/esm/excel/render/Canvas.js +332 -0
- package/esm/excel/render/Consts.d.ts +20 -0
- package/esm/excel/render/Consts.js +22 -0
- package/esm/excel/render/ExcelRender.d.ts +120 -0
- package/esm/excel/render/ExcelRender.js +422 -0
- package/esm/excel/render/Icons.d.ts +13 -0
- package/esm/excel/render/Icons.js +15 -0
- package/esm/excel/render/IndexedColors.d.ts +1 -0
- package/esm/excel/render/IndexedColors.js +70 -0
- package/esm/excel/render/Line.d.ts +6 -0
- package/esm/excel/render/Rect.d.ts +17 -0
- package/esm/excel/render/Rect.js +20 -0
- package/esm/excel/render/ScrollBar.d.ts +54 -0
- package/esm/excel/render/ScrollBar.js +137 -0
- package/esm/excel/render/SelectionCanvas.d.ts +33 -0
- package/esm/excel/render/SelectionCanvas.js +92 -0
- package/esm/excel/render/SheetCanvas.d.ts +33 -0
- package/esm/excel/render/SheetCanvas.js +42 -0
- package/esm/excel/render/__test__/autoWrapText.test.d.ts +1 -0
- package/esm/excel/render/__test__/tokenizer.test.d.ts +1 -0
- package/esm/excel/render/autoFilter/AutoFilterIconUI.d.ts +33 -0
- package/esm/excel/render/autoFilter/AutoFilterIconUI.js +85 -0
- package/esm/excel/render/autoFilter/AutoFilterMenuUI.d.ts +13 -0
- package/esm/excel/render/autoFilter/AutoFilterMenuUI.js +34 -0
- package/esm/excel/render/autoFilter/filterColumn/CustomFiltersUI.d.ts +46 -0
- package/esm/excel/render/autoFilter/filterColumn/CustomFiltersUI.js +158 -0
- package/esm/excel/render/autoFilter/filterColumn/FilterColumnUI.d.ts +10 -0
- package/esm/excel/render/autoFilter/filterColumn/FilterColumnUI.js +47 -0
- package/esm/excel/render/autoFilter/filterColumn/FiltersUI.d.ts +10 -0
- package/esm/excel/render/autoFilter/filterColumn/FiltersUI.js +37 -0
- package/esm/excel/render/autoFilter/filterColumn/OperatorTypeUI.d.ts +5 -0
- package/esm/excel/render/autoFilter/filterColumn/buildOperatorOptions.d.ts +2 -0
- package/esm/excel/render/autoFilter/filterColumn/buildOperatorOptions.js +95 -0
- package/esm/excel/render/autoFilter/filterColumn/fromOperatorUI.d.ts +6 -0
- package/esm/excel/render/autoFilter/filterColumn/fromOperatorUI.js +48 -0
- package/esm/excel/render/autoFilter/filterColumn/getCustomFilters.d.ts +2 -0
- package/esm/excel/render/autoFilter/filterColumn/getCustomFilters.js +10 -0
- package/esm/excel/render/autoFilter/filterColumn/getFilterValues.d.ts +5 -0
- package/esm/excel/render/autoFilter/filterColumn/getFilterValues.js +31 -0
- package/esm/excel/render/autoFilter/filterColumn/hasFilterColumn.d.ts +5 -0
- package/esm/excel/render/autoFilter/filterColumn/hasFilterColumn.js +37 -0
- package/esm/excel/render/autoFilter/filterColumn/setCustomFilters.d.ts +5 -0
- package/esm/excel/render/autoFilter/filterColumn/setCustomFilters.js +19 -0
- package/esm/excel/render/autoFilter/filterColumn/setFilterValues.d.ts +6 -0
- package/esm/excel/render/autoFilter/filterColumn/setFilterValues.js +45 -0
- package/esm/excel/render/autoFilter/filterColumn/toOperatorUI.d.ts +6 -0
- package/esm/excel/render/autoFilter/filterColumn/toOperatorUI.js +30 -0
- package/esm/excel/render/autoFilter/renderAutoFilter.d.ts +2 -0
- package/esm/excel/render/autoFilter/renderAutoFilter.js +31 -0
- package/esm/excel/render/autoFilter/renderAutoFilterIcon.d.ts +6 -0
- package/esm/excel/render/autoFilter/renderAutoFilterIcon.js +52 -0
- package/esm/excel/render/autoFilter/sortState/ColumnSortOrder.d.ts +1 -0
- package/esm/excel/render/autoFilter/sortState/SortButtonUI.d.ts +12 -0
- package/esm/excel/render/autoFilter/sortState/SortButtonUI.js +41 -0
- package/esm/excel/render/autoFilter/sortState/SortStateUI.d.ts +22 -0
- package/esm/excel/render/autoFilter/sortState/SortStateUI.js +65 -0
- package/esm/excel/render/autoFilter/sortState/getColumnSortOrder.d.ts +6 -0
- package/esm/excel/render/autoFilter/sortState/getColumnSortOrder.js +36 -0
- package/esm/excel/render/autoFilter/sortState/setColumnSortOrder.d.ts +7 -0
- package/esm/excel/render/autoFilter/sortState/setColumnSortOrder.js +55 -0
- package/esm/excel/render/canvas/draw.d.ts +5 -0
- package/esm/excel/render/canvas/drawOffscreenCanvas.d.ts +6 -0
- package/esm/excel/render/canvas/drawOffscreenCanvas.js +14 -0
- package/esm/excel/render/canvas/setPixelRatio.d.ts +4 -0
- package/esm/excel/render/canvas/setPixelRatio.js +17 -0
- package/esm/excel/render/cell/CellInfoWithSize.d.ts +5 -0
- package/esm/excel/render/cell/LinkPosition.d.ts +14 -0
- package/esm/excel/render/cell/autoClip.d.ts +6 -0
- package/esm/excel/render/cell/autoClip.js +44 -0
- package/esm/excel/render/cell/autoWrapText.d.ts +24 -0
- package/esm/excel/render/cell/autoWrapText.js +157 -0
- package/esm/excel/render/cell/border/drawDoubleBorder.d.ts +2 -0
- package/esm/excel/render/cell/border/drawDoubleBorder.js +75 -0
- package/esm/excel/render/cell/border/setLineStyle.d.ts +5 -0
- package/esm/excel/render/cell/border/setLineStyle.js +43 -0
- package/esm/excel/render/cell/cellToMergeCell.d.ts +8 -0
- package/esm/excel/render/cell/cellToMergeCell.js +35 -0
- package/esm/excel/render/cell/checkFont.d.ts +8 -0
- package/esm/excel/render/cell/checkFont.js +31 -0
- package/esm/excel/render/cell/drawCell.d.ts +19 -0
- package/esm/excel/render/cell/drawCell.js +44 -0
- package/esm/excel/render/cell/drawCellBackground.d.ts +3 -0
- package/esm/excel/render/cell/drawCellBackground.js +11 -0
- package/esm/excel/render/cell/drawCellBorder.d.ts +6 -0
- package/esm/excel/render/cell/drawCellBorder.js +47 -0
- package/esm/excel/render/cell/drawCells.d.ts +9 -0
- package/esm/excel/render/cell/drawCells.js +54 -0
- package/esm/excel/render/cell/drawDataBar.d.ts +3 -0
- package/esm/excel/render/cell/drawDataBar.js +31 -0
- package/esm/excel/render/cell/drawDataBarX14.d.ts +7 -0
- package/esm/excel/render/cell/drawDataBarX14.js +48 -0
- package/esm/excel/render/cell/drawIconSet.d.ts +3 -0
- package/esm/excel/render/cell/drawIconSet.js +13 -0
- package/esm/excel/render/cell/drawMultiLineText.d.ts +8 -0
- package/esm/excel/render/cell/drawMultiLineText.js +107 -0
- package/esm/excel/render/cell/drawSingleLineRichText.d.ts +10 -0
- package/esm/excel/render/cell/drawSingleLineRichText.js +55 -0
- package/esm/excel/render/cell/drawSingleLineText.d.ts +17 -0
- package/esm/excel/render/cell/drawSingleLineText.js +73 -0
- package/esm/excel/render/cell/drawTextInCell.d.ts +15 -0
- package/esm/excel/render/cell/drawTextInCell.js +105 -0
- package/esm/excel/render/cell/frozen/drawFrozen.d.ts +17 -0
- package/esm/excel/render/cell/frozen/drawFrozen.js +45 -0
- package/esm/excel/render/cell/frozen/drawLeftFrozen.d.ts +10 -0
- package/esm/excel/render/cell/frozen/drawLeftFrozen.js +26 -0
- package/esm/excel/render/cell/frozen/drawTopFrozen.d.ts +10 -0
- package/esm/excel/render/cell/frozen/drawTopFrozen.js +26 -0
- package/esm/excel/render/cell/frozen/drawTopLeftFrozen.d.ts +14 -0
- package/esm/excel/render/cell/frozen/drawTopLeftFrozen.js +46 -0
- package/esm/excel/render/cell/frozen/getFrozenLeftViewPointRange.d.ts +14 -0
- package/esm/excel/render/cell/frozen/getFrozenLeftViewPointRange.js +32 -0
- package/esm/excel/render/cell/frozen/getFrozenRange.d.ts +5 -0
- package/esm/excel/render/cell/frozen/getFrozenRange.js +25 -0
- package/esm/excel/render/cell/frozen/getFrozenTopLeftViewPointRange.d.ts +5 -0
- package/esm/excel/render/cell/frozen/getFrozenTopLeftViewPointRange.js +22 -0
- package/esm/excel/render/cell/frozen/getFrozenTopViewPointRange.d.ts +14 -0
- package/esm/excel/render/cell/frozen/getFrozenTopViewPointRange.js +33 -0
- package/esm/excel/render/cell/genFontStr.d.ts +31 -0
- package/esm/excel/render/cell/genFontStr.js +61 -0
- package/esm/excel/render/cell/getBackgroundColor.d.ts +3 -0
- package/esm/excel/render/cell/getBackgroundColor.js +38 -0
- package/esm/excel/render/cell/isPointerOnLink.d.ts +5 -0
- package/esm/excel/render/cell/isPointerOnLink.js +39 -0
- package/esm/excel/render/cell/measureTextWithCache.d.ts +23 -0
- package/esm/excel/render/cell/measureTextWithCache.js +30 -0
- package/esm/excel/render/cell/tokenizer.d.ts +24 -0
- package/esm/excel/render/cell/tokenizer.js +94 -0
- package/esm/excel/render/dnd/DragState.d.ts +22 -0
- package/esm/excel/render/dnd/getMouseRelativePosition.d.ts +7 -0
- package/esm/excel/render/dnd/getMouseRelativePosition.js +11 -0
- package/esm/excel/render/dnd/handleDragCell.d.ts +4 -0
- package/esm/excel/render/dnd/handleDragCell.js +75 -0
- package/esm/excel/render/dnd/handleDragColGrid.d.ts +4 -0
- package/esm/excel/render/dnd/handleDragColGrid.js +23 -0
- package/esm/excel/render/dnd/handleDragColHeader.d.ts +4 -0
- package/esm/excel/render/dnd/handleDragColHeader.js +51 -0
- package/esm/excel/render/dnd/handleDragRowGrid.d.ts +4 -0
- package/esm/excel/render/dnd/handleDragRowGrid.js +23 -0
- package/esm/excel/render/dnd/handleDragRowHeader.d.ts +4 -0
- package/esm/excel/render/dnd/handleDragRowHeader.js +51 -0
- package/esm/excel/render/dnd/handleMousedown.d.ts +12 -0
- package/esm/excel/render/dnd/handleMousedown.js +74 -0
- package/esm/excel/render/dnd/handleMousemove.d.ts +4 -0
- package/esm/excel/render/dnd/handleMousemove.js +38 -0
- package/esm/excel/render/dnd/handleMouseup.d.ts +1 -0
- package/esm/excel/render/dnd/handleMouseup.js +17 -0
- package/esm/excel/render/dnd/mousedownCell.d.ts +10 -0
- package/esm/excel/render/dnd/mousedownCell.js +31 -0
- package/esm/excel/render/dnd/mousedownColHeader.d.ts +22 -0
- package/esm/excel/render/dnd/mousedownColHeader.js +29 -0
- package/esm/excel/render/dnd/mousedownCorner.d.ts +8 -0
- package/esm/excel/render/dnd/mousedownCorner.js +13 -0
- package/esm/excel/render/dnd/mousedownRowHeader.d.ts +22 -0
- package/esm/excel/render/dnd/mousedownRowHeader.js +29 -0
- package/esm/excel/render/dnd/removeEventListener.d.ts +4 -0
- package/esm/excel/render/dnd/removeEventListener.js +14 -0
- package/esm/excel/render/dnd/selectAll.d.ts +5 -0
- package/esm/excel/render/dnd/selectAll.js +26 -0
- package/esm/excel/render/drawing/BaseDrawingRender.d.ts +11 -0
- package/esm/excel/render/drawing/BaseDrawingRender.js +29 -0
- package/esm/excel/render/drawing/EChartsRender.d.ts +7 -0
- package/esm/excel/render/drawing/EChartsRender.js +20 -0
- package/esm/excel/render/drawing/PicRender.d.ts +6 -0
- package/esm/excel/render/drawing/PicRender.js +57 -0
- package/esm/excel/render/drawing/ResizeBox.d.ts +51 -0
- package/esm/excel/render/drawing/ResizeBox.js +83 -0
- package/esm/excel/render/drawing/chart/buildLabel.d.ts +63 -0
- package/esm/excel/render/drawing/chart/buildLabel.js +6 -0
- package/esm/excel/render/drawing/chart/calcPercentStacked.d.ts +5 -0
- package/esm/excel/render/drawing/chart/calcPercentStacked.js +43 -0
- package/esm/excel/render/drawing/chart/convertAxis.d.ts +11 -0
- package/esm/excel/render/drawing/chart/convertAxis.js +55 -0
- package/esm/excel/render/drawing/chart/convertLegend.d.ts +5 -0
- package/esm/excel/render/drawing/chart/convertLegend.js +38 -0
- package/esm/excel/render/drawing/chart/convertTitle.d.ts +8 -0
- package/esm/excel/render/drawing/chart/convertTitle.js +54 -0
- package/esm/excel/render/drawing/chart/fromAreaChart.d.ts +74 -0
- package/esm/excel/render/drawing/chart/fromAreaChart.js +51 -0
- package/esm/excel/render/drawing/chart/fromBarChart.d.ts +11 -0
- package/esm/excel/render/drawing/chart/fromBarChart.js +44 -0
- package/esm/excel/render/drawing/chart/fromDoughnutChart.d.ts +18 -0
- package/esm/excel/render/drawing/chart/fromDoughnutChart.js +48 -0
- package/esm/excel/render/drawing/chart/fromLineChart.d.ts +73 -0
- package/esm/excel/render/drawing/chart/fromLineChart.js +50 -0
- package/esm/excel/render/drawing/chart/fromPieChart.d.ts +10 -0
- package/esm/excel/render/drawing/chart/fromPieChart.js +40 -0
- package/esm/excel/render/drawing/chart/getData.d.ts +6 -0
- package/esm/excel/render/drawing/chart/getData.js +16 -0
- package/esm/excel/render/drawing/chart/getStack.d.ts +5 -0
- package/esm/excel/render/drawing/chart/getStack.js +17 -0
- package/esm/excel/render/drawing/convertToEChartOptions.d.ts +8 -0
- package/esm/excel/render/drawing/convertToEChartOptions.js +66 -0
- package/esm/excel/render/drawing/drawChart.d.ts +4 -0
- package/esm/excel/render/drawing/drawChart.js +49 -0
- package/esm/excel/render/drawing/drawDrawing.d.ts +8 -0
- package/esm/excel/render/drawing/drawDrawing.js +105 -0
- package/esm/excel/render/drawing/drawPic.d.ts +5 -0
- package/esm/excel/render/drawing/drawPic.js +68 -0
- package/esm/excel/render/drawing/drawShape.d.ts +9 -0
- package/esm/excel/render/drawing/drawShape.js +134 -0
- package/esm/excel/render/drawing/findPositionInViewRange.d.ts +7 -0
- package/esm/excel/render/drawing/findPositionInViewRange.js +28 -0
- package/esm/excel/render/drawing/getAbsoluteAnchorPosition.d.ts +11 -0
- package/esm/excel/render/drawing/getAbsoluteAnchorPosition.js +33 -0
- package/esm/excel/render/drawing/getOneCellAnchorPosition.d.ts +8 -0
- package/esm/excel/render/drawing/getOneCellAnchorPosition.js +31 -0
- package/esm/excel/render/drawing/getPositionByMaker.d.ts +11 -0
- package/esm/excel/render/drawing/getRectFromAnchorPoint.d.ts +18 -0
- package/esm/excel/render/drawing/getRectFromAnchorPoint.js +43 -0
- package/esm/excel/render/drawing/getTwoCellAnchorPosition.d.ts +8 -0
- package/esm/excel/render/drawing/getTwoCellAnchorPosition.js +37 -0
- package/esm/excel/render/formulaBar/FormulaBar.d.ts +29 -0
- package/esm/excel/render/formulaBar/FormulaBar.js +86 -0
- package/esm/excel/render/grid/drawGridLines.d.ts +12 -0
- package/esm/excel/render/grid/drawGridLines.js +40 -0
- package/esm/excel/render/header/drawRowColHeaders.d.ts +10 -0
- package/esm/excel/render/header/drawRowColHeaders.js +144 -0
- package/esm/excel/render/keyboard/handleCopy.d.ts +5 -0
- package/esm/excel/render/keyboard/handleCopy.js +19 -0
- package/esm/excel/render/keyboard/handleKeydown.d.ts +5 -0
- package/esm/excel/render/keyboard/handleKeydown.js +14 -0
- package/esm/excel/render/keyboard/handlePaste.d.ts +5 -0
- package/esm/excel/render/keyboard/handlePaste.js +16 -0
- package/esm/excel/render/keyboard/handleSelectAll.d.ts +5 -0
- package/esm/excel/render/keyboard/handleSelectAll.js +17 -0
- package/esm/excel/render/keyboard/handleSheetArrowKey.d.ts +5 -0
- package/esm/excel/render/keyboard/handleSheetArrowKey.js +41 -0
- package/esm/excel/render/scroll/Scroll.d.ts +7 -0
- package/esm/excel/render/selection/Position.d.ts +9 -0
- package/esm/excel/render/selection/SheetSelection.d.ts +29 -0
- package/esm/excel/render/selection/binarySearchSize.d.ts +8 -0
- package/esm/excel/render/selection/binarySearchSize.js +27 -0
- package/esm/excel/render/selection/buildHTML/buildBorder.d.ts +6 -0
- package/esm/excel/render/selection/buildHTML/buildBorder.js +36 -0
- package/esm/excel/render/selection/buildHTML/cellInfoToStyle.d.ts +6 -0
- package/esm/excel/render/selection/buildHTML/cellInfoToStyle.js +66 -0
- package/esm/excel/render/selection/buildHTML/rangeToHTML.d.ts +11 -0
- package/esm/excel/render/selection/buildHTML/rangeToHTML.js +64 -0
- package/esm/excel/render/selection/copySelection.d.ts +7 -0
- package/esm/excel/render/selection/copySelection.js +28 -0
- package/esm/excel/render/selection/drawAllSelection.d.ts +7 -0
- package/esm/excel/render/selection/drawAllSelection.js +17 -0
- package/esm/excel/render/selection/drawCellRanges.d.ts +10 -0
- package/esm/excel/render/selection/drawCellRanges.js +45 -0
- package/esm/excel/render/selection/drawCellSelection.d.ts +13 -0
- package/esm/excel/render/selection/drawCellSelection.js +77 -0
- package/esm/excel/render/selection/drawColSelection.d.ts +12 -0
- package/esm/excel/render/selection/drawColSelection.js +20 -0
- package/esm/excel/render/selection/drawRowSelection.d.ts +12 -0
- package/esm/excel/render/selection/drawRowSelection.js +21 -0
- package/esm/excel/render/selection/drawSelectionHeaderHighlight.d.ts +6 -0
- package/esm/excel/render/selection/drawSelectionHeaderHighlight.js +17 -0
- package/esm/excel/render/selection/findCell.d.ts +7 -0
- package/esm/excel/render/selection/findCell.js +15 -0
- package/esm/excel/render/selection/findInViewRange.d.ts +13 -0
- package/esm/excel/render/selection/findInViewRange.js +12 -0
- package/esm/excel/render/selection/findInViewRangeX.d.ts +10 -0
- package/esm/excel/render/selection/findInViewRangeX.js +42 -0
- package/esm/excel/render/selection/findInViewRangeY.d.ts +10 -0
- package/esm/excel/render/selection/findInViewRangeY.js +41 -0
- package/esm/excel/render/selection/getCellPosition.d.ts +43 -0
- package/esm/excel/render/selection/getCellPosition.js +131 -0
- package/esm/excel/render/selection/getRangePosition.d.ts +12 -0
- package/esm/excel/render/selection/getRangePosition.js +67 -0
- package/esm/excel/render/selection/hitTest.d.ts +41 -0
- package/esm/excel/render/selection/hitTest.js +46 -0
- package/esm/excel/render/selection/hitTestInRange.d.ts +7 -0
- package/esm/excel/render/selection/hitTestInRange.js +56 -0
- package/esm/excel/render/selection/updateCursor.d.ts +5 -0
- package/esm/excel/render/selection/updateCursor.js +22 -0
- package/esm/excel/render/sheetTab/SheetList.d.ts +43 -0
- package/esm/excel/render/sheetTab/SheetList.js +285 -0
- package/esm/excel/render/sheetTab/SheetTabBar.d.ts +8 -0
- package/esm/excel/render/sheetTab/SheetTabBar.js +20 -0
- package/esm/excel/render/sheetTab/StatusBar.d.ts +14 -0
- package/esm/excel/render/sheetTab/StatusBar.js +83 -0
- package/esm/excel/render/sheetTab/ZoomLevel.d.ts +6 -0
- package/esm/excel/render/sheetTab/ZoomLevel.js +39 -0
- package/esm/excel/render/sparkline/Numbers.d.ts +1 -0
- package/esm/excel/render/sparkline/applyColor.d.ts +7 -0
- package/esm/excel/render/sparkline/applyColor.js +36 -0
- package/esm/excel/render/sparkline/drawSparkline.d.ts +7 -0
- package/esm/excel/render/sparkline/drawSparkline.js +86 -0
- package/esm/excel/render/sparkline/renderColumn.d.ts +7 -0
- package/esm/excel/render/sparkline/renderColumn.js +47 -0
- package/esm/excel/render/sparkline/renderLine.d.ts +7 -0
- package/esm/excel/render/sparkline/renderLine.js +107 -0
- package/esm/excel/render/sparkline/renderSparkline.d.ts +9 -0
- package/esm/excel/render/sparkline/renderSparkline.js +59 -0
- package/esm/excel/render/sparkline/renderStacked.d.ts +7 -0
- package/esm/excel/render/sparkline/renderStacked.js +61 -0
- package/esm/excel/render/ui/Button.d.ts +7 -0
- package/esm/excel/render/ui/CheckBox.d.ts +16 -0
- package/esm/excel/render/ui/CheckBox.js +48 -0
- package/esm/excel/render/ui/CheckBoxList.d.ts +16 -0
- package/esm/excel/render/ui/CheckBoxList.js +109 -0
- package/esm/excel/render/ui/Divider.d.ts +3 -0
- package/esm/excel/render/ui/Divider.js +13 -0
- package/esm/excel/render/ui/Input.d.ts +11 -0
- package/esm/excel/render/ui/Input.js +48 -0
- package/esm/excel/render/ui/Radio.d.ts +11 -0
- package/esm/excel/render/ui/Radio.js +52 -0
- package/esm/excel/render/ui/Select.d.ts +13 -0
- package/esm/excel/render/ui/Select.js +29 -0
- package/esm/excel/render/widget/Widget.d.ts +29 -0
- package/esm/excel/sheet/BuiltInNumFmt.d.ts +5 -0
- package/esm/excel/sheet/BuiltInNumFmt.js +39 -0
- package/esm/excel/sheet/ColWidth.d.ts +19 -0
- package/esm/excel/sheet/ColWidth.js +30 -0
- package/esm/excel/sheet/ExcelRenderOptions.d.ts +149 -0
- package/esm/excel/sheet/RangeCache.d.ts +32 -0
- package/esm/excel/sheet/RangeCache.js +99 -0
- package/esm/excel/sheet/RowFilter.d.ts +3 -0
- package/esm/excel/sheet/Sheet.d.ts +280 -0
- package/esm/excel/sheet/Sheet.js +675 -0
- package/esm/excel/sheet/SheetBounding.d.ts +22 -0
- package/esm/excel/sheet/ViewRange.d.ts +52 -0
- package/esm/excel/sheet/__test__/applyDxf.test.d.ts +1 -0
- package/esm/excel/sheet/__test__/colWidth.test.d.ts +1 -0
- package/esm/excel/sheet/__test__/getViewRange.test.d.ts +1 -0
- package/esm/excel/sheet/applyConditionalFormat.d.ts +6 -0
- package/esm/excel/sheet/applyConditionalFormat.js +112 -0
- package/esm/excel/sheet/applyDxf.d.ts +6 -0
- package/esm/excel/sheet/applyDxf.js +20 -0
- package/esm/excel/sheet/applyTablePartsStyle.d.ts +6 -0
- package/esm/excel/sheet/applyTablePartsStyle.js +34 -0
- package/esm/excel/sheet/cfRule/__test__/aboveAverage.test.d.ts +1 -0
- package/esm/excel/sheet/cfRule/__test__/cellIs.test.d.ts +1 -0
- package/esm/excel/sheet/cfRule/__test__/top10.test.d.ts +1 -0
- package/esm/excel/sheet/cfRule/aboveAverage.d.ts +9 -0
- package/esm/excel/sheet/cfRule/aboveAverage.js +70 -0
- package/esm/excel/sheet/cfRule/applyCfRuleDxf.d.ts +7 -0
- package/esm/excel/sheet/cfRule/applyCfRuleDxf.js +13 -0
- package/esm/excel/sheet/cfRule/cellIs.d.ts +22 -0
- package/esm/excel/sheet/cfRule/cellIs.js +155 -0
- package/esm/excel/sheet/cfRule/colorScale.d.ts +8 -0
- package/esm/excel/sheet/cfRule/colorScale.js +141 -0
- package/esm/excel/sheet/cfRule/containsBlanks.d.ts +7 -0
- package/esm/excel/sheet/cfRule/containsBlanks.js +14 -0
- package/esm/excel/sheet/cfRule/containsErrors.d.ts +7 -0
- package/esm/excel/sheet/cfRule/containsErrors.js +15 -0
- package/esm/excel/sheet/cfRule/containsText.d.ts +7 -0
- package/esm/excel/sheet/cfRule/containsText.js +17 -0
- package/esm/excel/sheet/cfRule/dataBar.d.ts +8 -0
- package/esm/excel/sheet/cfRule/dataBar.js +232 -0
- package/esm/excel/sheet/cfRule/duplicateValues.d.ts +8 -0
- package/esm/excel/sheet/cfRule/duplicateValues.js +45 -0
- package/esm/excel/sheet/cfRule/getMinMax.d.ts +5 -0
- package/esm/excel/sheet/cfRule/getMinMax.js +37 -0
- package/esm/excel/sheet/cfRule/iconSet.d.ts +8 -0
- package/esm/excel/sheet/cfRule/iconSet.js +109 -0
- package/esm/excel/sheet/cfRule/notContainsText.d.ts +7 -0
- package/esm/excel/sheet/cfRule/notContainsText.js +17 -0
- package/esm/excel/sheet/cfRule/timePeriod.d.ts +9 -0
- package/esm/excel/sheet/cfRule/timePeriod.js +129 -0
- package/esm/excel/sheet/cfRule/top10.d.ts +9 -0
- package/esm/excel/sheet/cfRule/top10.js +72 -0
- package/esm/excel/sheet/cfRule/uniqueValues.d.ts +8 -0
- package/esm/excel/sheet/cfRule/uniqueValues.js +46 -0
- package/esm/excel/sheet/getCellAbsolutePosition.d.ts +10 -0
- package/esm/excel/sheet/getCellAbsolutePosition.js +41 -0
- package/esm/excel/sheet/getViewPointData.d.ts +24 -0
- package/esm/excel/sheet/getViewPointData.js +171 -0
- package/esm/excel/sheet/getViewRange.d.ts +68 -0
- package/esm/excel/sheet/getViewRange.js +193 -0
- package/esm/excel/sheet/table/__test__/calcTableRelativePosition.test.d.ts +1 -0
- package/esm/excel/sheet/table/applyTableStyle.d.ts +5 -0
- package/esm/excel/sheet/table/applyTableStyle.js +87 -0
- package/esm/excel/sheet/table/buildTableStyle.d.ts +13 -0
- package/esm/excel/sheet/table/buildTableStyle.js +68 -0
- package/esm/excel/sheet/table/calcTableRelativePosition.d.ts +11 -0
- package/esm/excel/sheet/table/calcTableRelativePosition.js +90 -0
- package/esm/excel/types/CT_Color.d.ts +9 -0
- package/esm/excel/types/CT_Color.js +20 -0
- package/esm/excel/types/CT_ExtensionList.d.ts +6 -0
- package/esm/excel/types/CT_ExtensionList.js +11 -0
- package/esm/excel/types/CT_Theme.d.ts +15 -0
- package/esm/excel/types/CellInfo.d.ts +57 -0
- package/esm/excel/types/CellValue.d.ts +14 -0
- package/esm/excel/types/DataBarDisplay.d.ts +58 -0
- package/esm/excel/types/ExcelFile.d.ts +12 -0
- package/esm/excel/types/Ext.d.ts +10 -0
- package/esm/excel/types/Ext.js +21 -0
- package/esm/excel/types/FontSize.d.ts +7 -0
- package/esm/excel/types/FontStyle.d.ts +16 -0
- package/esm/excel/types/IChartSpace.d.ts +7 -0
- package/esm/excel/types/IDataProvider.d.ts +158 -0
- package/esm/excel/types/IDrawing.d.ts +51 -0
- package/esm/excel/types/IRElt.d.ts +11 -0
- package/esm/excel/types/IRPrElt.d.ts +28 -0
- package/esm/excel/types/IRelationship.d.ts +10 -0
- package/esm/excel/types/ISheet.d.ts +14 -0
- package/esm/excel/types/ISheet.js +16 -0
- package/esm/excel/types/IWorkbook.d.ts +41 -0
- package/esm/excel/types/IWorksheet.d.ts +37 -0
- package/esm/excel/types/RangeRef.d.ts +21 -0
- package/esm/excel/types/RichText.d.ts +7 -0
- package/esm/excel/types/StringItem.d.ts +5 -0
- package/esm/excel/types/TableStyleDef.d.ts +8 -0
- package/esm/excel/types/X14CF/CT_Cfvo.d.ts +8 -0
- package/esm/excel/types/X14CF/CT_Cfvo.js +14 -0
- package/esm/excel/types/X14CF/ST_CfvoType.d.ts +1 -0
- package/esm/excel/types/X14CF/X14CfRule.d.ts +10 -0
- package/esm/excel/types/X14CF/X14CfRule.js +21 -0
- package/esm/excel/types/X14CF/X14ConditionalFormatting.d.ts +6 -0
- package/esm/excel/types/X14CF/X14ConditionalFormatting.js +11 -0
- package/esm/excel/types/X14CF/X14ConditionalFormattings.d.ts +6 -0
- package/esm/excel/types/X14CF/X14ConditionalFormattings.js +11 -0
- package/esm/excel/types/X14CF/X14DataBar.d.ts +18 -0
- package/esm/excel/types/X14CF/X14DataBar.js +54 -0
- package/esm/excel/types/X14CF/X14IconSet.d.ts +11 -0
- package/esm/excel/types/X14CF/X14IconSet.js +27 -0
- package/esm/excel/types/X14Sparkline/X14Sparkline.d.ts +6 -0
- package/esm/excel/types/X14Sparkline/X14Sparkline.js +10 -0
- package/esm/excel/types/X14Sparkline/X14SparklineGroup.d.ts +35 -0
- package/esm/excel/types/X14Sparkline/X14SparklineGroup.js +108 -0
- package/esm/excel/types/X14Sparkline/X14SparklineGroups.d.ts +6 -0
- package/esm/excel/types/X14Sparkline/X14SparklineGroups.js +11 -0
- package/esm/excel/types/X14Sparkline/x14:sparklines.d.ts +6 -0
- package/esm/excel/types/X14Sparkline/x14_sparklines.js +11 -0
- package/esm/excel/types/worksheet/CellData.d.ts +56 -0
- package/esm/excel/types/worksheet/CellData.js +38 -0
- package/esm/excel/types/worksheet/ICell.d.ts +39 -0
- package/esm/excel/types/worksheet/ICell.js +22 -0
- package/esm/index.d.ts +3 -1
- package/esm/index.js +2 -0
- package/esm/openxml/Attributes.d.ts +33 -0
- package/esm/openxml/Attributes.js +3 -0
- package/esm/openxml/ChartTypes.d.ts +2971 -0
- package/esm/openxml/ChartTypes.js +5154 -0
- package/esm/openxml/ContentType.d.ts +5 -0
- package/esm/openxml/ContentType.js +1 -1
- package/esm/openxml/DMLTypes.d.ts +1836 -0
- package/esm/openxml/DMLTypes.js +2849 -0
- package/esm/openxml/ExcelTypes.d.ts +5147 -0
- package/esm/openxml/ExcelTypes.js +5362 -0
- package/esm/openxml/Style.js +3 -3
- package/esm/openxml/Theme.js +1 -1
- package/esm/openxml/Types.d.ts +2757 -95
- package/esm/openxml/colorNameMap.d.ts +6 -0
- package/esm/openxml/drawing/Blip.d.ts +1 -1
- package/esm/openxml/drawing/CustomGeom.js +1 -1
- package/esm/openxml/drawing/Drawing.js +1 -1
- package/esm/openxml/drawing/Geom.js +1 -1
- package/esm/openxml/drawing/ShapeProperties.d.ts +1 -0
- package/esm/openxml/drawing/ShapeProperties.js +7 -7
- package/esm/openxml/drawing/Transform.js +1 -1
- package/esm/openxml/drawing/svg/shapeToSVG.d.ts +11 -2
- package/esm/openxml/drawing/svg/shapeToSVG.js +6 -6
- package/esm/openxml/word/Body.js +2 -2
- package/esm/openxml/word/Header.js +2 -2
- package/esm/openxml/word/Hyperlink.d.ts +1 -1
- package/esm/openxml/word/Note.js +1 -1
- package/esm/openxml/word/Paragraph.js +2 -2
- package/esm/openxml/word/Run.js +1 -1
- package/esm/openxml/word/Section.js +1 -1
- package/esm/openxml/word/Tab.js +1 -1
- package/esm/openxml/word/WDocument.js +1 -1
- package/esm/openxml/word/wps/WPS.js +2 -2
- package/esm/openxml/word/wps/WPSStyle.js +4 -4
- package/esm/package/PackageParser.d.ts +4 -0
- package/esm/package/XMLPackageParser.d.ts +5 -1
- package/esm/package/ZipPackageParser.d.ts +5 -1
- package/esm/package/ZipPackageParser.js +30 -2
- package/esm/util/EventEmitter.d.ts +38 -0
- package/esm/util/EventEmitter.js +112 -0
- package/esm/util/H.d.ts +7 -0
- package/esm/util/H.js +69 -0
- package/esm/util/LRUCache.d.ts +17 -0
- package/esm/util/LinkedMap.d.ts +40 -0
- package/esm/util/__tests__/autoSpace.test.d.ts +1 -0
- package/esm/util/__tests__/color.test.d.ts +1 -0
- package/esm/util/__tests__/replaceVar.test.d.ts +2 -0
- package/esm/util/__tests__/xml.test.d.ts +1 -0
- package/esm/util/arrayBufferToString.d.ts +1 -0
- package/esm/util/arrayBufferToString.js +7 -0
- package/esm/util/base64ToArrayBuffer.d.ts +1 -0
- package/esm/util/base64ToArrayBuffer.js +10 -0
- package/esm/util/binarySearch.d.ts +5 -0
- package/esm/util/binarySearch.js +23 -0
- package/esm/util/color.d.ts +5 -0
- package/esm/util/color.js +101 -1
- package/esm/util/createObject.d.ts +0 -1
- package/esm/util/createObject.js +2 -10
- package/esm/util/debounce.d.ts +1 -0
- package/esm/util/debounce.js +15 -0
- package/esm/util/emuToPx.d.ts +4 -0
- package/esm/util/emuToPx.js +14 -0
- package/esm/util/escapeHTML.d.ts +4 -0
- package/esm/util/escapeHTML.js +13 -0
- package/esm/util/fileType.d.ts +1 -0
- package/esm/util/fileType.js +17 -1
- package/esm/util/getChineseDay.d.ts +4 -0
- package/esm/util/isFontAvailable.d.ts +5 -0
- package/esm/util/isFontAvailable.js +37 -0
- package/esm/util/isNumeric.d.ts +4 -0
- package/esm/util/isNumeric.js +8 -0
- package/esm/util/isObject.d.ts +6 -0
- package/esm/util/isObject.js +10 -0
- package/esm/util/isValidURL.d.ts +4 -0
- package/esm/util/isValidURL.js +18 -0
- package/esm/util/isVisible.d.ts +4 -0
- package/esm/util/joinPath.d.ts +6 -0
- package/esm/util/joinPath.js +27 -0
- package/esm/util/mergeRun.js +1 -1
- package/esm/util/number.d.ts +9 -0
- package/esm/util/number.js +20 -0
- package/esm/util/objectEqual.d.ts +4 -0
- package/esm/util/objectEqual.js +13 -0
- package/esm/util/onClickOutside.d.ts +4 -0
- package/esm/util/onClickOutside.js +13 -0
- package/esm/util/ptToPx.d.ts +4 -0
- package/esm/util/ptToPx.js +10 -0
- package/esm/util/px2pt.d.ts +1 -0
- package/esm/util/px2pt.js +5 -0
- package/esm/util/runWorker.d.ts +6 -0
- package/esm/util/saxes.d.ts +638 -0
- package/esm/util/saxes.js +2077 -0
- package/esm/util/stringToArray.d.ts +10 -0
- package/esm/util/stringToArray.js +84 -0
- package/esm/util/stripNumber.d.ts +4 -0
- package/esm/util/stripNumber.js +14 -0
- package/esm/util/throttle.d.ts +5 -0
- package/esm/util/xml.d.ts +44 -0
- package/esm/util/xml.js +85 -1
- package/esm/util/xmlchars/xml/1.0/ed4.d.ts +31 -0
- package/esm/util/xmlchars/xml/1.0/ed5.d.ts +51 -0
- package/esm/util/xmlchars/xml/1.0/ed5.js +89 -0
- package/esm/util/xmlchars/xml/1.1/ed2.d.ts +73 -0
- package/esm/util/xmlchars/xml/1.1/ed2.js +21 -0
- package/esm/util/xmlchars/xmlns/1.0/ed3.d.ts +28 -0
- package/esm/util/xmlchars/xmlns/1.0/ed3.js +57 -0
- package/esm/word/parse/Footnotes.d.ts +3 -0
- package/esm/word/parse/Footnotes.js +25 -0
- package/esm/word/parse/modifyColor.js +106 -0
- package/esm/word/parse/parseBorder.d.ts +13 -0
- package/esm/word/parse/parseBorder.js +59 -0
- package/esm/word/parse/parseCellMargin.d.ts +2 -0
- package/esm/word/parse/parseChildColor.d.ts +4 -0
- package/esm/word/parse/parseChildColor.js +66 -0
- package/esm/word/parse/parseColor.d.ts +26 -0
- package/esm/word/parse/parseColor.js +126 -0
- package/esm/word/parse/parseEndnotes.d.ts +3 -0
- package/esm/word/parse/parseEndnotes.js +25 -0
- package/esm/word/parse/parseFont.d.ts +7 -0
- package/esm/word/parse/parseInd.d.ts +5 -0
- package/esm/word/parse/parseInsideBorders.d.ts +9 -0
- package/esm/word/parse/parsePr.d.ts +11 -0
- package/esm/word/parse/parsePr.js +424 -0
- package/esm/word/parse/parseShape.d.ts +10 -0
- package/esm/word/parse/parseShape.js +239 -0
- package/esm/word/parse/parseSpacing.d.ts +7 -0
- package/esm/word/parse/parseTable.d.ts +3 -0
- package/esm/word/parse/parseTable.js +62 -0
- package/esm/word/parse/parseTablePr.d.ts +3 -0
- package/esm/word/parse/parseTablePr.js +185 -0
- package/esm/word/parse/parseTc.d.ts +10 -0
- package/esm/word/parse/parseTc.js +64 -0
- package/esm/word/parse/parseTcPr.d.ts +5 -0
- package/esm/word/parse/parseTcPr.js +99 -0
- package/esm/word/parse/parseTextDirection.d.ts +2 -0
- package/esm/word/parse/parseTr.d.ts +6 -0
- package/esm/word/parse/parseTr.js +49 -0
- package/esm/word/parse/parseTrHeight.d.ts +2 -0
- package/esm/word/parse/parseTrPr.d.ts +3 -0
- package/esm/word/parse/parseTrPr.js +59 -0
- package/esm/word/render/fixAbsolutePosition.d.ts +8 -0
- package/esm/word/render/renderBody.d.ts +10 -0
- package/esm/word/render/renderBody.js +207 -0
- package/esm/word/render/renderBookmark.d.ts +6 -0
- package/esm/word/render/renderBookmark.js +17 -0
- package/esm/word/render/renderBr.d.ts +8 -0
- package/esm/word/render/renderBr.js +16 -0
- package/esm/word/render/renderCustGeom.d.ts +4 -0
- package/esm/word/render/renderCustGeom.js +10 -0
- package/esm/word/render/renderDocument.d.ts +7 -0
- package/esm/word/render/renderDocument.js +14 -0
- package/esm/word/render/renderDrawing.d.ts +9 -0
- package/esm/word/render/renderDrawing.js +255 -0
- package/esm/word/render/renderFont.d.ts +5 -0
- package/esm/word/render/renderFont.js +39 -0
- package/esm/word/render/renderGeom.d.ts +4 -0
- package/esm/word/render/renderGeom.js +14 -0
- package/esm/word/render/renderHeader.d.ts +6 -0
- package/esm/word/render/renderHeader.js +40 -0
- package/esm/word/render/renderHyperLink.d.ts +7 -0
- package/esm/word/render/renderHyperLink.js +44 -0
- package/esm/word/render/renderInlineText.d.ts +6 -0
- package/esm/word/render/renderInlineText.js +39 -0
- package/esm/word/render/renderInstrText.d.ts +8 -0
- package/esm/word/render/renderInstrText.js +40 -0
- package/esm/word/render/renderMath.d.ts +3 -0
- package/esm/word/render/renderMath.js +7 -0
- package/esm/word/render/renderNoBreakHyphen.js +9 -0
- package/esm/word/render/renderNotes.d.ts +5 -0
- package/esm/word/render/renderNotes.js +77 -0
- package/esm/word/render/renderNumbering.d.ts +7 -0
- package/esm/word/render/renderNumbering.js +159 -0
- package/esm/word/render/renderParagraph.d.ts +7 -0
- package/esm/word/render/renderParagraph.js +97 -0
- package/esm/word/render/renderPict.d.ts +6 -0
- package/esm/word/render/renderRuby.d.ts +6 -0
- package/esm/word/render/renderRuby.js +53 -0
- package/esm/word/render/renderRun.d.ts +16 -0
- package/esm/word/render/renderRun.js +146 -0
- package/esm/word/render/renderSection.d.ts +7 -0
- package/esm/word/render/renderSection.js +110 -0
- package/esm/word/render/renderSeparator.js +9 -0
- package/esm/word/render/renderSoftHyphen.js +9 -0
- package/esm/word/render/renderStyle.d.ts +13 -0
- package/esm/word/render/renderStyle.js +195 -0
- package/esm/word/render/renderSym.d.ts +3 -0
- package/esm/word/render/renderSym.js +10 -0
- package/esm/word/render/renderTab.d.ts +8 -0
- package/esm/word/render/renderTab.js +23 -0
- package/esm/word/render/renderTable.d.ts +6 -0
- package/esm/word/render/renderTable.js +189 -0
- package/esm/word/render/setElementStyle.d.ts +6 -0
- package/esm/word/render/setElementStyle.js +26 -0
- package/lib/Excel.d.ts +59 -0
- package/lib/Excel.js +222 -0
- package/lib/OfficeViewer.d.ts +10 -0
- package/lib/RenderOptions.d.ts +25 -0
- package/lib/UnSupport.d.ts +13 -0
- package/lib/UnSupport.js +37 -0
- package/lib/Word.d.ts +7 -24
- package/lib/Word.js +24 -21
- package/lib/common/__tests__/autoParse.test.d.ts +1 -0
- package/lib/common/autoParse.d.ts +9 -0
- package/lib/common/autoParse.js +196 -0
- package/lib/common/parseAttributes.d.ts +6 -0
- package/lib/common/parseAttributes.js +31 -0
- package/lib/common/parseChildren.d.ts +8 -0
- package/lib/common/parseContentType.d.ts +7 -0
- package/lib/common/parseContentType.js +54 -0
- package/lib/common/parseRelationship.d.ts +5 -0
- package/lib/common/parseRelationship.js +50 -0
- package/lib/createOfficeViewer.d.ts +16 -0
- package/lib/createOfficeViewer.js +102 -0
- package/lib/excel/StyleSheet.d.ts +8 -0
- package/lib/excel/StyleSheet.js +15 -0
- package/lib/excel/Workbook.d.ts +180 -0
- package/lib/excel/Workbook.js +213 -0
- package/lib/excel/data/LocalDataProvider.d.ts +146 -0
- package/lib/excel/data/LocalDataProvider.js +792 -0
- package/lib/excel/data/applyAutoFilter.d.ts +10 -0
- package/lib/excel/data/applyAutoFilter.js +90 -0
- package/lib/excel/data/autoFilter/CellValueNum.d.ts +5 -0
- package/lib/excel/data/autoFilter/__test__/customFilter.test.d.ts +1 -0
- package/lib/excel/data/autoFilter/__test__/filters.test.d.ts +1 -0
- package/lib/excel/data/autoFilter/__test__/sortByRange.test.d.ts +1 -0
- package/lib/excel/data/autoFilter/applySortState.d.ts +6 -0
- package/lib/excel/data/autoFilter/applySortState.js +40 -0
- package/lib/excel/data/autoFilter/customFilter.d.ts +6 -0
- package/lib/excel/data/autoFilter/customFilter.js +82 -0
- package/lib/excel/data/autoFilter/evalCustomFilter.d.ts +9 -0
- package/lib/excel/data/autoFilter/evalCustomFilter.js +65 -0
- package/lib/excel/data/autoFilter/filters.d.ts +3 -0
- package/lib/excel/data/autoFilter/filters.js +59 -0
- package/lib/excel/data/autoFilter/inDateGroupItems.d.ts +6 -0
- package/lib/excel/data/autoFilter/inDateGroupItems.js +75 -0
- package/lib/excel/data/autoFilter/sortByRange.d.ts +8 -0
- package/lib/excel/data/autoFilter/sortByRange.js +55 -0
- package/lib/excel/data/defaultFont.d.ts +25 -0
- package/lib/excel/data/defaultFont.js +31 -0
- package/lib/excel/data/getThemeColor.d.ts +2 -0
- package/lib/excel/data/getThemeColor.js +75 -0
- package/lib/excel/data/numfmt/amountInWords.d.ts +4 -0
- package/lib/excel/data/numfmt/amountInWords.js +43 -0
- package/lib/excel/data/numfmtExtend.d.ts +10 -0
- package/lib/excel/data/numfmtExtend.js +33 -0
- package/lib/excel/edit/Command.d.ts +19 -0
- package/lib/excel/edit/ui/CellEditor.d.ts +27 -0
- package/lib/excel/edit/ui/CellEditor.js +69 -0
- package/lib/excel/io/csv/emptyXLSX.d.ts +2 -0
- package/lib/excel/io/csv/emptyXLSX.js +10 -0
- package/lib/excel/io/excel/__tests__/parseSharedStrings.test.d.ts +1 -0
- package/lib/excel/io/excel/drawing/getRelationPath.d.ts +2 -0
- package/lib/excel/io/excel/drawing/getRelationPath.js +15 -0
- package/lib/excel/io/excel/drawing/parseAnchorCommon.d.ts +9 -0
- package/lib/excel/io/excel/drawing/parseAnchorCommon.js +82 -0
- package/lib/excel/io/excel/drawing/parseChart.d.ts +3 -0
- package/lib/excel/io/excel/drawing/parseChart.js +15 -0
- package/lib/excel/io/excel/drawing/parseDrawing.d.ts +8 -0
- package/lib/excel/io/excel/drawing/parseDrawing.js +107 -0
- package/lib/excel/io/excel/drawing/parsePic.d.ts +4 -0
- package/lib/excel/io/excel/drawing/parsePic.js +27 -0
- package/lib/excel/io/excel/drawing/parseShape.d.ts +4 -0
- package/lib/excel/io/excel/drawing/parseShape.js +163 -0
- package/lib/excel/io/excel/getRelPath.d.ts +4 -0
- package/lib/excel/io/excel/getRelPath.js +14 -0
- package/lib/excel/io/excel/initValueForContainsBlanks.d.ts +6 -0
- package/lib/excel/io/excel/initValueForContainsBlanks.js +62 -0
- package/lib/excel/io/excel/initValueForTable.d.ts +5 -0
- package/lib/excel/io/excel/initValueForTable.js +35 -0
- package/lib/excel/io/excel/parseDefinedNames.d.ts +5 -0
- package/lib/excel/io/excel/parseDefinedNames.js +15 -0
- package/lib/excel/io/excel/parseSharedStrings.d.ts +9 -0
- package/lib/excel/io/excel/parseSharedStrings.js +177 -0
- package/lib/excel/io/excel/parseSheet.d.ts +9 -0
- package/lib/excel/io/excel/parseSheet.js +88 -0
- package/lib/excel/io/excel/parseTableParts.d.ts +5 -0
- package/lib/excel/io/excel/parseTableParts.js +71 -0
- package/lib/excel/io/excel/parseTableStyleDef.d.ts +3 -0
- package/lib/excel/io/excel/parseTheme.d.ts +6 -0
- package/lib/excel/io/excel/parseTheme.js +46 -0
- package/lib/excel/io/excel/parseWorkbook.d.ts +8 -0
- package/lib/excel/io/excel/parseWorkbook.js +109 -0
- package/lib/excel/io/excel/parseWorkbookPr.d.ts +6 -0
- package/lib/excel/io/excel/parseWorkbookPr.js +17 -0
- package/lib/excel/io/excel/parseWorkbookView.d.ts +6 -0
- package/lib/excel/io/excel/parseWorkbookView.js +17 -0
- package/lib/excel/io/excel/parseWorksheet.d.ts +9 -0
- package/lib/excel/io/excel/parseWorksheet.js +211 -0
- package/lib/excel/io/excel/preset/defaultTheme.d.ts +1 -0
- package/lib/excel/io/excel/preset/defaultTheme.js +7 -0
- package/lib/excel/io/excel/preset/presetCellStyles.d.ts +3 -0
- package/lib/excel/io/excel/preset/presetIconSet.d.ts +6 -0
- package/lib/excel/io/excel/preset/presetIconSet.js +59 -0
- package/lib/excel/io/excel/preset/presetIcons.d.ts +3 -0
- package/lib/excel/io/excel/preset/presetIcons.js +48 -0
- package/lib/excel/io/excel/preset/presetTableStyles.d.ts +3 -0
- package/lib/excel/io/excel/preset/presetTableStyles.js +35121 -0
- package/lib/excel/io/excel/stylesheet/parseColor.d.ts +5 -0
- package/lib/excel/io/excel/stylesheet/parseColor.js +15 -0
- package/lib/excel/io/excel/util/Range.d.ts +66 -0
- package/lib/excel/io/excel/util/Range.js +132 -0
- package/lib/excel/io/excel/util/__tests__/makeBlankValue.test.d.ts +1 -0
- package/lib/excel/io/excel/util/decodeAddress.d.ts +11 -0
- package/lib/excel/io/excel/util/decodeAddress.js +67 -0
- package/lib/excel/io/excel/util/fromExcelDate.d.ts +14 -0
- package/lib/excel/io/excel/util/fromExcelDate.js +30 -0
- package/lib/excel/io/excel/util/lettersToNumber.d.ts +4 -0
- package/lib/excel/io/excel/util/makeBlankValue.d.ts +6 -0
- package/lib/excel/io/excel/util/makeBlankValue.js +25 -0
- package/lib/excel/io/excel/util/numberToLetters.d.ts +4 -0
- package/lib/excel/io/excel/util/numberToLetters.js +17 -0
- package/lib/excel/io/excel/worksheet/parseSheetData.d.ts +11 -0
- package/lib/excel/io/excel/worksheet/parseSheetData.js +158 -0
- package/lib/excel/io/parseExcel.d.ts +10 -0
- package/lib/excel/io/parseExcel.js +43 -0
- package/lib/excel/lang/en_US.d.ts +24 -0
- package/lib/excel/lang/en_US.js +29 -0
- package/lib/excel/lang/lang.d.ts +30 -0
- package/lib/excel/lang/lang.js +23 -0
- package/lib/excel/lang/zh_CN.d.ts +2 -0
- package/lib/excel/lang/zh_CN.js +29 -0
- package/lib/excel/print/printStyle.d.ts +4 -0
- package/lib/excel/print/printStyle.js +12 -0
- package/lib/excel/print/renderInIframe.d.ts +7 -0
- package/lib/excel/print/renderInIframe.js +30 -0
- package/lib/excel/render/Canvas.d.ts +108 -0
- package/lib/excel/render/Canvas.js +336 -0
- package/lib/excel/render/Consts.d.ts +20 -0
- package/lib/excel/render/Consts.js +30 -0
- package/lib/excel/render/ExcelRender.d.ts +120 -0
- package/lib/excel/render/ExcelRender.js +426 -0
- package/lib/excel/render/Icons.d.ts +13 -0
- package/lib/excel/render/Icons.js +19 -0
- package/lib/excel/render/IndexedColors.d.ts +1 -0
- package/lib/excel/render/IndexedColors.js +74 -0
- package/lib/excel/render/Line.d.ts +6 -0
- package/lib/excel/render/Rect.d.ts +17 -0
- package/lib/excel/render/Rect.js +25 -0
- package/lib/excel/render/ScrollBar.d.ts +54 -0
- package/lib/excel/render/ScrollBar.js +141 -0
- package/lib/excel/render/SelectionCanvas.d.ts +33 -0
- package/lib/excel/render/SelectionCanvas.js +96 -0
- package/lib/excel/render/SheetCanvas.d.ts +33 -0
- package/lib/excel/render/SheetCanvas.js +46 -0
- package/lib/excel/render/__test__/autoWrapText.test.d.ts +1 -0
- package/lib/excel/render/__test__/tokenizer.test.d.ts +1 -0
- package/lib/excel/render/autoFilter/AutoFilterIconUI.d.ts +33 -0
- package/lib/excel/render/autoFilter/AutoFilterIconUI.js +89 -0
- package/lib/excel/render/autoFilter/AutoFilterMenuUI.d.ts +13 -0
- package/lib/excel/render/autoFilter/AutoFilterMenuUI.js +38 -0
- package/lib/excel/render/autoFilter/filterColumn/CustomFiltersUI.d.ts +46 -0
- package/lib/excel/render/autoFilter/filterColumn/CustomFiltersUI.js +162 -0
- package/lib/excel/render/autoFilter/filterColumn/FilterColumnUI.d.ts +10 -0
- package/lib/excel/render/autoFilter/filterColumn/FilterColumnUI.js +51 -0
- package/lib/excel/render/autoFilter/filterColumn/FiltersUI.d.ts +10 -0
- package/lib/excel/render/autoFilter/filterColumn/FiltersUI.js +41 -0
- package/lib/excel/render/autoFilter/filterColumn/OperatorTypeUI.d.ts +5 -0
- package/lib/excel/render/autoFilter/filterColumn/buildOperatorOptions.d.ts +2 -0
- package/lib/excel/render/autoFilter/filterColumn/buildOperatorOptions.js +99 -0
- package/lib/excel/render/autoFilter/filterColumn/fromOperatorUI.d.ts +6 -0
- package/lib/excel/render/autoFilter/filterColumn/fromOperatorUI.js +52 -0
- package/lib/excel/render/autoFilter/filterColumn/getCustomFilters.d.ts +2 -0
- package/lib/excel/render/autoFilter/filterColumn/getCustomFilters.js +14 -0
- package/lib/excel/render/autoFilter/filterColumn/getFilterValues.d.ts +5 -0
- package/lib/excel/render/autoFilter/filterColumn/getFilterValues.js +35 -0
- package/lib/excel/render/autoFilter/filterColumn/hasFilterColumn.d.ts +5 -0
- package/lib/excel/render/autoFilter/filterColumn/hasFilterColumn.js +41 -0
- package/lib/excel/render/autoFilter/filterColumn/setCustomFilters.d.ts +5 -0
- package/lib/excel/render/autoFilter/filterColumn/setCustomFilters.js +23 -0
- package/lib/excel/render/autoFilter/filterColumn/setFilterValues.d.ts +6 -0
- package/lib/excel/render/autoFilter/filterColumn/setFilterValues.js +49 -0
- package/lib/excel/render/autoFilter/filterColumn/toOperatorUI.d.ts +6 -0
- package/lib/excel/render/autoFilter/filterColumn/toOperatorUI.js +34 -0
- package/lib/excel/render/autoFilter/renderAutoFilter.d.ts +2 -0
- package/lib/excel/render/autoFilter/renderAutoFilter.js +35 -0
- package/lib/excel/render/autoFilter/renderAutoFilterIcon.d.ts +6 -0
- package/lib/excel/render/autoFilter/renderAutoFilterIcon.js +56 -0
- package/lib/excel/render/autoFilter/sortState/ColumnSortOrder.d.ts +1 -0
- package/lib/excel/render/autoFilter/sortState/SortButtonUI.d.ts +12 -0
- package/lib/excel/render/autoFilter/sortState/SortButtonUI.js +45 -0
- package/lib/excel/render/autoFilter/sortState/SortStateUI.d.ts +22 -0
- package/lib/excel/render/autoFilter/sortState/SortStateUI.js +69 -0
- package/lib/excel/render/autoFilter/sortState/getColumnSortOrder.d.ts +6 -0
- package/lib/excel/render/autoFilter/sortState/getColumnSortOrder.js +40 -0
- package/lib/excel/render/autoFilter/sortState/setColumnSortOrder.d.ts +7 -0
- package/lib/excel/render/autoFilter/sortState/setColumnSortOrder.js +59 -0
- package/lib/excel/render/canvas/draw.d.ts +5 -0
- package/lib/excel/render/canvas/drawOffscreenCanvas.d.ts +6 -0
- package/lib/excel/render/canvas/drawOffscreenCanvas.js +18 -0
- package/lib/excel/render/canvas/setPixelRatio.d.ts +4 -0
- package/lib/excel/render/canvas/setPixelRatio.js +21 -0
- package/lib/excel/render/cell/CellInfoWithSize.d.ts +5 -0
- package/lib/excel/render/cell/LinkPosition.d.ts +14 -0
- package/lib/excel/render/cell/autoClip.d.ts +6 -0
- package/lib/excel/render/cell/autoClip.js +48 -0
- package/lib/excel/render/cell/autoWrapText.d.ts +24 -0
- package/lib/excel/render/cell/autoWrapText.js +161 -0
- package/lib/excel/render/cell/border/drawDoubleBorder.d.ts +2 -0
- package/lib/excel/render/cell/border/drawDoubleBorder.js +79 -0
- package/lib/excel/render/cell/border/setLineStyle.d.ts +5 -0
- package/lib/excel/render/cell/border/setLineStyle.js +47 -0
- package/lib/excel/render/cell/cellToMergeCell.d.ts +8 -0
- package/lib/excel/render/cell/cellToMergeCell.js +39 -0
- package/lib/excel/render/cell/checkFont.d.ts +8 -0
- package/lib/excel/render/cell/checkFont.js +36 -0
- package/lib/excel/render/cell/drawCell.d.ts +19 -0
- package/lib/excel/render/cell/drawCell.js +48 -0
- package/lib/excel/render/cell/drawCellBackground.d.ts +3 -0
- package/lib/excel/render/cell/drawCellBackground.js +15 -0
- package/lib/excel/render/cell/drawCellBorder.d.ts +6 -0
- package/lib/excel/render/cell/drawCellBorder.js +51 -0
- package/lib/excel/render/cell/drawCells.d.ts +9 -0
- package/lib/excel/render/cell/drawCells.js +58 -0
- package/lib/excel/render/cell/drawDataBar.d.ts +3 -0
- package/lib/excel/render/cell/drawDataBar.js +35 -0
- package/lib/excel/render/cell/drawDataBarX14.d.ts +7 -0
- package/lib/excel/render/cell/drawDataBarX14.js +52 -0
- package/lib/excel/render/cell/drawIconSet.d.ts +3 -0
- package/lib/excel/render/cell/drawIconSet.js +17 -0
- package/lib/excel/render/cell/drawMultiLineText.d.ts +8 -0
- package/lib/excel/render/cell/drawMultiLineText.js +111 -0
- package/lib/excel/render/cell/drawSingleLineRichText.d.ts +10 -0
- package/lib/excel/render/cell/drawSingleLineRichText.js +59 -0
- package/lib/excel/render/cell/drawSingleLineText.d.ts +17 -0
- package/lib/excel/render/cell/drawSingleLineText.js +77 -0
- package/lib/excel/render/cell/drawTextInCell.d.ts +15 -0
- package/lib/excel/render/cell/drawTextInCell.js +109 -0
- package/lib/excel/render/cell/frozen/drawFrozen.d.ts +17 -0
- package/lib/excel/render/cell/frozen/drawFrozen.js +49 -0
- package/lib/excel/render/cell/frozen/drawLeftFrozen.d.ts +10 -0
- package/lib/excel/render/cell/frozen/drawLeftFrozen.js +30 -0
- package/lib/excel/render/cell/frozen/drawTopFrozen.d.ts +10 -0
- package/lib/excel/render/cell/frozen/drawTopFrozen.js +30 -0
- package/lib/excel/render/cell/frozen/drawTopLeftFrozen.d.ts +14 -0
- package/lib/excel/render/cell/frozen/drawTopLeftFrozen.js +50 -0
- package/lib/excel/render/cell/frozen/getFrozenLeftViewPointRange.d.ts +14 -0
- package/lib/excel/render/cell/frozen/getFrozenLeftViewPointRange.js +36 -0
- package/lib/excel/render/cell/frozen/getFrozenRange.d.ts +5 -0
- package/lib/excel/render/cell/frozen/getFrozenRange.js +29 -0
- package/lib/excel/render/cell/frozen/getFrozenTopLeftViewPointRange.d.ts +5 -0
- package/lib/excel/render/cell/frozen/getFrozenTopLeftViewPointRange.js +26 -0
- package/lib/excel/render/cell/frozen/getFrozenTopViewPointRange.d.ts +14 -0
- package/lib/excel/render/cell/frozen/getFrozenTopViewPointRange.js +37 -0
- package/lib/excel/render/cell/genFontStr.d.ts +31 -0
- package/lib/excel/render/cell/genFontStr.js +68 -0
- package/lib/excel/render/cell/getBackgroundColor.d.ts +3 -0
- package/lib/excel/render/cell/getBackgroundColor.js +42 -0
- package/lib/excel/render/cell/isPointerOnLink.d.ts +5 -0
- package/lib/excel/render/cell/isPointerOnLink.js +43 -0
- package/lib/excel/render/cell/measureTextWithCache.d.ts +23 -0
- package/lib/excel/render/cell/measureTextWithCache.js +35 -0
- package/lib/excel/render/cell/tokenizer.d.ts +24 -0
- package/lib/excel/render/cell/tokenizer.js +98 -0
- package/lib/excel/render/dnd/DragState.d.ts +22 -0
- package/lib/excel/render/dnd/getMouseRelativePosition.d.ts +7 -0
- package/lib/excel/render/dnd/getMouseRelativePosition.js +15 -0
- package/lib/excel/render/dnd/handleDragCell.d.ts +4 -0
- package/lib/excel/render/dnd/handleDragCell.js +79 -0
- package/lib/excel/render/dnd/handleDragColGrid.d.ts +4 -0
- package/lib/excel/render/dnd/handleDragColGrid.js +27 -0
- package/lib/excel/render/dnd/handleDragColHeader.d.ts +4 -0
- package/lib/excel/render/dnd/handleDragColHeader.js +55 -0
- package/lib/excel/render/dnd/handleDragRowGrid.d.ts +4 -0
- package/lib/excel/render/dnd/handleDragRowGrid.js +27 -0
- package/lib/excel/render/dnd/handleDragRowHeader.d.ts +4 -0
- package/lib/excel/render/dnd/handleDragRowHeader.js +55 -0
- package/lib/excel/render/dnd/handleMousedown.d.ts +12 -0
- package/lib/excel/render/dnd/handleMousedown.js +80 -0
- package/lib/excel/render/dnd/handleMousemove.d.ts +4 -0
- package/lib/excel/render/dnd/handleMousemove.js +42 -0
- package/lib/excel/render/dnd/handleMouseup.d.ts +1 -0
- package/lib/excel/render/dnd/handleMouseup.js +21 -0
- package/lib/excel/render/dnd/mousedownCell.d.ts +10 -0
- package/lib/excel/render/dnd/mousedownCell.js +35 -0
- package/lib/excel/render/dnd/mousedownColHeader.d.ts +22 -0
- package/lib/excel/render/dnd/mousedownColHeader.js +33 -0
- package/lib/excel/render/dnd/mousedownCorner.d.ts +8 -0
- package/lib/excel/render/dnd/mousedownCorner.js +17 -0
- package/lib/excel/render/dnd/mousedownRowHeader.d.ts +22 -0
- package/lib/excel/render/dnd/mousedownRowHeader.js +33 -0
- package/lib/excel/render/dnd/removeEventListener.d.ts +4 -0
- package/lib/excel/render/dnd/removeEventListener.js +18 -0
- package/lib/excel/render/dnd/selectAll.d.ts +5 -0
- package/lib/excel/render/dnd/selectAll.js +30 -0
- package/lib/excel/render/drawing/BaseDrawingRender.d.ts +11 -0
- package/lib/excel/render/drawing/BaseDrawingRender.js +33 -0
- package/lib/excel/render/drawing/EChartsRender.d.ts +7 -0
- package/lib/excel/render/drawing/EChartsRender.js +42 -0
- package/lib/excel/render/drawing/PicRender.d.ts +6 -0
- package/lib/excel/render/drawing/PicRender.js +61 -0
- package/lib/excel/render/drawing/ResizeBox.d.ts +51 -0
- package/lib/excel/render/drawing/ResizeBox.js +87 -0
- package/lib/excel/render/drawing/chart/buildLabel.d.ts +63 -0
- package/lib/excel/render/drawing/chart/buildLabel.js +10 -0
- package/lib/excel/render/drawing/chart/calcPercentStacked.d.ts +5 -0
- package/lib/excel/render/drawing/chart/calcPercentStacked.js +47 -0
- package/lib/excel/render/drawing/chart/convertAxis.d.ts +11 -0
- package/lib/excel/render/drawing/chart/convertAxis.js +59 -0
- package/lib/excel/render/drawing/chart/convertLegend.d.ts +5 -0
- package/lib/excel/render/drawing/chart/convertLegend.js +42 -0
- package/lib/excel/render/drawing/chart/convertTitle.d.ts +8 -0
- package/lib/excel/render/drawing/chart/convertTitle.js +58 -0
- package/lib/excel/render/drawing/chart/fromAreaChart.d.ts +74 -0
- package/lib/excel/render/drawing/chart/fromAreaChart.js +55 -0
- package/lib/excel/render/drawing/chart/fromBarChart.d.ts +11 -0
- package/lib/excel/render/drawing/chart/fromBarChart.js +48 -0
- package/lib/excel/render/drawing/chart/fromDoughnutChart.d.ts +18 -0
- package/lib/excel/render/drawing/chart/fromDoughnutChart.js +52 -0
- package/lib/excel/render/drawing/chart/fromLineChart.d.ts +73 -0
- package/lib/excel/render/drawing/chart/fromLineChart.js +54 -0
- package/lib/excel/render/drawing/chart/fromPieChart.d.ts +10 -0
- package/lib/excel/render/drawing/chart/fromPieChart.js +44 -0
- package/lib/excel/render/drawing/chart/getData.d.ts +6 -0
- package/lib/excel/render/drawing/chart/getData.js +20 -0
- package/lib/excel/render/drawing/chart/getStack.d.ts +5 -0
- package/lib/excel/render/drawing/chart/getStack.js +21 -0
- package/lib/excel/render/drawing/convertToEChartOptions.d.ts +8 -0
- package/lib/excel/render/drawing/convertToEChartOptions.js +70 -0
- package/lib/excel/render/drawing/drawChart.d.ts +4 -0
- package/lib/excel/render/drawing/drawChart.js +53 -0
- package/lib/excel/render/drawing/drawDrawing.d.ts +8 -0
- package/lib/excel/render/drawing/drawDrawing.js +109 -0
- package/lib/excel/render/drawing/drawPic.d.ts +5 -0
- package/lib/excel/render/drawing/drawPic.js +72 -0
- package/lib/excel/render/drawing/drawShape.d.ts +9 -0
- package/lib/excel/render/drawing/drawShape.js +138 -0
- package/lib/excel/render/drawing/findPositionInViewRange.d.ts +7 -0
- package/lib/excel/render/drawing/findPositionInViewRange.js +32 -0
- package/lib/excel/render/drawing/getAbsoluteAnchorPosition.d.ts +11 -0
- package/lib/excel/render/drawing/getAbsoluteAnchorPosition.js +37 -0
- package/lib/excel/render/drawing/getOneCellAnchorPosition.d.ts +8 -0
- package/lib/excel/render/drawing/getOneCellAnchorPosition.js +35 -0
- package/lib/excel/render/drawing/getPositionByMaker.d.ts +11 -0
- package/lib/excel/render/drawing/getRectFromAnchorPoint.d.ts +18 -0
- package/lib/excel/render/drawing/getRectFromAnchorPoint.js +48 -0
- package/lib/excel/render/drawing/getTwoCellAnchorPosition.d.ts +8 -0
- package/lib/excel/render/drawing/getTwoCellAnchorPosition.js +41 -0
- package/lib/excel/render/formulaBar/FormulaBar.d.ts +29 -0
- package/lib/excel/render/formulaBar/FormulaBar.js +90 -0
- package/lib/excel/render/grid/drawGridLines.d.ts +12 -0
- package/lib/excel/render/grid/drawGridLines.js +45 -0
- package/lib/excel/render/header/drawRowColHeaders.d.ts +10 -0
- package/lib/excel/render/header/drawRowColHeaders.js +148 -0
- package/lib/excel/render/keyboard/handleCopy.d.ts +5 -0
- package/lib/excel/render/keyboard/handleCopy.js +23 -0
- package/lib/excel/render/keyboard/handleKeydown.d.ts +5 -0
- package/lib/excel/render/keyboard/handleKeydown.js +18 -0
- package/lib/excel/render/keyboard/handlePaste.d.ts +5 -0
- package/lib/excel/render/keyboard/handlePaste.js +20 -0
- package/lib/excel/render/keyboard/handleSelectAll.d.ts +5 -0
- package/lib/excel/render/keyboard/handleSelectAll.js +21 -0
- package/lib/excel/render/keyboard/handleSheetArrowKey.d.ts +5 -0
- package/lib/excel/render/keyboard/handleSheetArrowKey.js +45 -0
- package/lib/excel/render/scroll/Scroll.d.ts +7 -0
- package/lib/excel/render/selection/Position.d.ts +9 -0
- package/lib/excel/render/selection/SheetSelection.d.ts +29 -0
- package/lib/excel/render/selection/binarySearchSize.d.ts +8 -0
- package/lib/excel/render/selection/binarySearchSize.js +31 -0
- package/lib/excel/render/selection/buildHTML/buildBorder.d.ts +6 -0
- package/lib/excel/render/selection/buildHTML/buildBorder.js +40 -0
- package/lib/excel/render/selection/buildHTML/cellInfoToStyle.d.ts +6 -0
- package/lib/excel/render/selection/buildHTML/cellInfoToStyle.js +70 -0
- package/lib/excel/render/selection/buildHTML/rangeToHTML.d.ts +11 -0
- package/lib/excel/render/selection/buildHTML/rangeToHTML.js +68 -0
- package/lib/excel/render/selection/copySelection.d.ts +7 -0
- package/lib/excel/render/selection/copySelection.js +32 -0
- package/lib/excel/render/selection/drawAllSelection.d.ts +7 -0
- package/lib/excel/render/selection/drawAllSelection.js +21 -0
- package/lib/excel/render/selection/drawCellRanges.d.ts +10 -0
- package/lib/excel/render/selection/drawCellRanges.js +49 -0
- package/lib/excel/render/selection/drawCellSelection.d.ts +13 -0
- package/lib/excel/render/selection/drawCellSelection.js +81 -0
- package/lib/excel/render/selection/drawColSelection.d.ts +12 -0
- package/lib/excel/render/selection/drawColSelection.js +24 -0
- package/lib/excel/render/selection/drawRowSelection.d.ts +12 -0
- package/lib/excel/render/selection/drawRowSelection.js +25 -0
- package/lib/excel/render/selection/drawSelectionHeaderHighlight.d.ts +6 -0
- package/lib/excel/render/selection/drawSelectionHeaderHighlight.js +21 -0
- package/lib/excel/render/selection/findCell.d.ts +7 -0
- package/lib/excel/render/selection/findCell.js +19 -0
- package/lib/excel/render/selection/findInViewRange.d.ts +13 -0
- package/lib/excel/render/selection/findInViewRange.js +16 -0
- package/lib/excel/render/selection/findInViewRangeX.d.ts +10 -0
- package/lib/excel/render/selection/findInViewRangeX.js +46 -0
- package/lib/excel/render/selection/findInViewRangeY.d.ts +10 -0
- package/lib/excel/render/selection/findInViewRangeY.js +45 -0
- package/lib/excel/render/selection/getCellPosition.d.ts +43 -0
- package/lib/excel/render/selection/getCellPosition.js +137 -0
- package/lib/excel/render/selection/getRangePosition.d.ts +12 -0
- package/lib/excel/render/selection/getRangePosition.js +71 -0
- package/lib/excel/render/selection/hitTest.d.ts +41 -0
- package/lib/excel/render/selection/hitTest.js +50 -0
- package/lib/excel/render/selection/hitTestInRange.d.ts +7 -0
- package/lib/excel/render/selection/hitTestInRange.js +60 -0
- package/lib/excel/render/selection/updateCursor.d.ts +5 -0
- package/lib/excel/render/selection/updateCursor.js +26 -0
- package/lib/excel/render/sheetTab/SheetList.d.ts +43 -0
- package/lib/excel/render/sheetTab/SheetList.js +289 -0
- package/lib/excel/render/sheetTab/SheetTabBar.d.ts +8 -0
- package/lib/excel/render/sheetTab/SheetTabBar.js +24 -0
- package/lib/excel/render/sheetTab/StatusBar.d.ts +14 -0
- package/lib/excel/render/sheetTab/StatusBar.js +87 -0
- package/lib/excel/render/sheetTab/ZoomLevel.d.ts +6 -0
- package/lib/excel/render/sheetTab/ZoomLevel.js +43 -0
- package/lib/excel/render/sparkline/Numbers.d.ts +1 -0
- package/lib/excel/render/sparkline/applyColor.d.ts +7 -0
- package/lib/excel/render/sparkline/applyColor.js +40 -0
- package/lib/excel/render/sparkline/drawSparkline.d.ts +7 -0
- package/lib/excel/render/sparkline/drawSparkline.js +90 -0
- package/lib/excel/render/sparkline/renderColumn.d.ts +7 -0
- package/lib/excel/render/sparkline/renderColumn.js +51 -0
- package/lib/excel/render/sparkline/renderLine.d.ts +7 -0
- package/lib/excel/render/sparkline/renderLine.js +111 -0
- package/lib/excel/render/sparkline/renderSparkline.d.ts +9 -0
- package/lib/excel/render/sparkline/renderSparkline.js +63 -0
- package/lib/excel/render/sparkline/renderStacked.d.ts +7 -0
- package/lib/excel/render/sparkline/renderStacked.js +65 -0
- package/lib/excel/render/ui/Button.d.ts +7 -0
- package/lib/excel/render/ui/CheckBox.d.ts +16 -0
- package/lib/excel/render/ui/CheckBox.js +52 -0
- package/lib/excel/render/ui/CheckBoxList.d.ts +16 -0
- package/lib/excel/render/ui/CheckBoxList.js +113 -0
- package/lib/excel/render/ui/Divider.d.ts +3 -0
- package/lib/excel/render/ui/Divider.js +17 -0
- package/lib/excel/render/ui/Input.d.ts +11 -0
- package/lib/excel/render/ui/Input.js +52 -0
- package/lib/excel/render/ui/Radio.d.ts +11 -0
- package/lib/excel/render/ui/Radio.js +56 -0
- package/lib/excel/render/ui/Select.d.ts +13 -0
- package/lib/excel/render/ui/Select.js +33 -0
- package/lib/excel/render/widget/Widget.d.ts +29 -0
- package/lib/excel/sheet/BuiltInNumFmt.d.ts +5 -0
- package/lib/excel/sheet/BuiltInNumFmt.js +43 -0
- package/lib/excel/sheet/ColWidth.d.ts +19 -0
- package/lib/excel/sheet/ColWidth.js +36 -0
- package/lib/excel/sheet/ExcelRenderOptions.d.ts +149 -0
- package/lib/excel/sheet/RangeCache.d.ts +32 -0
- package/lib/excel/sheet/RangeCache.js +105 -0
- package/lib/excel/sheet/RowFilter.d.ts +3 -0
- package/lib/excel/sheet/Sheet.d.ts +280 -0
- package/lib/excel/sheet/Sheet.js +679 -0
- package/lib/excel/sheet/SheetBounding.d.ts +22 -0
- package/lib/excel/sheet/ViewRange.d.ts +52 -0
- package/lib/excel/sheet/__test__/applyDxf.test.d.ts +1 -0
- package/lib/excel/sheet/__test__/colWidth.test.d.ts +1 -0
- package/lib/excel/sheet/__test__/getViewRange.test.d.ts +1 -0
- package/lib/excel/sheet/applyConditionalFormat.d.ts +6 -0
- package/lib/excel/sheet/applyConditionalFormat.js +116 -0
- package/lib/excel/sheet/applyDxf.d.ts +6 -0
- package/lib/excel/sheet/applyDxf.js +24 -0
- package/lib/excel/sheet/applyTablePartsStyle.d.ts +6 -0
- package/lib/excel/sheet/applyTablePartsStyle.js +38 -0
- package/lib/excel/sheet/cfRule/__test__/aboveAverage.test.d.ts +1 -0
- package/lib/excel/sheet/cfRule/__test__/cellIs.test.d.ts +1 -0
- package/lib/excel/sheet/cfRule/__test__/top10.test.d.ts +1 -0
- package/lib/excel/sheet/cfRule/aboveAverage.d.ts +9 -0
- package/lib/excel/sheet/cfRule/aboveAverage.js +75 -0
- package/lib/excel/sheet/cfRule/applyCfRuleDxf.d.ts +7 -0
- package/lib/excel/sheet/cfRule/applyCfRuleDxf.js +17 -0
- package/lib/excel/sheet/cfRule/cellIs.d.ts +22 -0
- package/lib/excel/sheet/cfRule/cellIs.js +171 -0
- package/lib/excel/sheet/cfRule/colorScale.d.ts +8 -0
- package/lib/excel/sheet/cfRule/colorScale.js +145 -0
- package/lib/excel/sheet/cfRule/containsBlanks.d.ts +7 -0
- package/lib/excel/sheet/cfRule/containsBlanks.js +18 -0
- package/lib/excel/sheet/cfRule/containsErrors.d.ts +7 -0
- package/lib/excel/sheet/cfRule/containsErrors.js +19 -0
- package/lib/excel/sheet/cfRule/containsText.d.ts +7 -0
- package/lib/excel/sheet/cfRule/containsText.js +21 -0
- package/lib/excel/sheet/cfRule/dataBar.d.ts +8 -0
- package/lib/excel/sheet/cfRule/dataBar.js +236 -0
- package/lib/excel/sheet/cfRule/duplicateValues.d.ts +8 -0
- package/lib/excel/sheet/cfRule/duplicateValues.js +49 -0
- package/lib/excel/sheet/cfRule/getMinMax.d.ts +5 -0
- package/lib/excel/sheet/cfRule/getMinMax.js +41 -0
- package/lib/excel/sheet/cfRule/iconSet.d.ts +8 -0
- package/lib/excel/sheet/cfRule/iconSet.js +113 -0
- package/lib/excel/sheet/cfRule/notContainsText.d.ts +7 -0
- package/lib/excel/sheet/cfRule/notContainsText.js +21 -0
- package/lib/excel/sheet/cfRule/timePeriod.d.ts +9 -0
- package/lib/excel/sheet/cfRule/timePeriod.js +134 -0
- package/lib/excel/sheet/cfRule/top10.d.ts +9 -0
- package/lib/excel/sheet/cfRule/top10.js +77 -0
- package/lib/excel/sheet/cfRule/uniqueValues.d.ts +8 -0
- package/lib/excel/sheet/cfRule/uniqueValues.js +50 -0
- package/lib/excel/sheet/getCellAbsolutePosition.d.ts +10 -0
- package/lib/excel/sheet/getCellAbsolutePosition.js +45 -0
- package/lib/excel/sheet/getViewPointData.d.ts +24 -0
- package/lib/excel/sheet/getViewPointData.js +176 -0
- package/lib/excel/sheet/getViewRange.d.ts +68 -0
- package/lib/excel/sheet/getViewRange.js +199 -0
- package/lib/excel/sheet/table/__test__/calcTableRelativePosition.test.d.ts +1 -0
- package/lib/excel/sheet/table/applyTableStyle.d.ts +5 -0
- package/lib/excel/sheet/table/applyTableStyle.js +91 -0
- package/lib/excel/sheet/table/buildTableStyle.d.ts +13 -0
- package/lib/excel/sheet/table/buildTableStyle.js +72 -0
- package/lib/excel/sheet/table/calcTableRelativePosition.d.ts +11 -0
- package/lib/excel/sheet/table/calcTableRelativePosition.js +94 -0
- package/lib/excel/types/CT_Color.d.ts +9 -0
- package/lib/excel/types/CT_Color.js +24 -0
- package/lib/excel/types/CT_ExtensionList.d.ts +6 -0
- package/lib/excel/types/CT_ExtensionList.js +15 -0
- package/lib/excel/types/CT_Theme.d.ts +15 -0
- package/lib/excel/types/CellInfo.d.ts +57 -0
- package/lib/excel/types/CellValue.d.ts +14 -0
- package/lib/excel/types/DataBarDisplay.d.ts +58 -0
- package/lib/excel/types/ExcelFile.d.ts +12 -0
- package/lib/excel/types/Ext.d.ts +10 -0
- package/lib/excel/types/Ext.js +25 -0
- package/lib/excel/types/FontSize.d.ts +7 -0
- package/lib/excel/types/FontStyle.d.ts +16 -0
- package/lib/excel/types/IChartSpace.d.ts +7 -0
- package/lib/excel/types/IDataProvider.d.ts +158 -0
- package/lib/excel/types/IDrawing.d.ts +51 -0
- package/lib/excel/types/IRElt.d.ts +11 -0
- package/lib/excel/types/IRPrElt.d.ts +28 -0
- package/lib/excel/types/IRelationship.d.ts +10 -0
- package/lib/excel/types/ISheet.d.ts +14 -0
- package/lib/excel/types/ISheet.js +20 -0
- package/lib/excel/types/IWorkbook.d.ts +41 -0
- package/lib/excel/types/IWorksheet.d.ts +37 -0
- package/lib/excel/types/RangeRef.d.ts +21 -0
- package/lib/excel/types/RichText.d.ts +7 -0
- package/lib/excel/types/StringItem.d.ts +5 -0
- package/lib/excel/types/TableStyleDef.d.ts +8 -0
- package/lib/excel/types/X14CF/CT_Cfvo.d.ts +8 -0
- package/lib/excel/types/X14CF/CT_Cfvo.js +18 -0
- package/lib/excel/types/X14CF/ST_CfvoType.d.ts +1 -0
- package/lib/excel/types/X14CF/X14CfRule.d.ts +10 -0
- package/lib/excel/types/X14CF/X14CfRule.js +25 -0
- package/lib/excel/types/X14CF/X14ConditionalFormatting.d.ts +6 -0
- package/lib/excel/types/X14CF/X14ConditionalFormatting.js +15 -0
- package/lib/excel/types/X14CF/X14ConditionalFormattings.d.ts +6 -0
- package/lib/excel/types/X14CF/X14ConditionalFormattings.js +15 -0
- package/lib/excel/types/X14CF/X14DataBar.d.ts +18 -0
- package/lib/excel/types/X14CF/X14DataBar.js +58 -0
- package/lib/excel/types/X14CF/X14IconSet.d.ts +11 -0
- package/lib/excel/types/X14CF/X14IconSet.js +31 -0
- package/lib/excel/types/X14Sparkline/X14Sparkline.d.ts +6 -0
- package/lib/excel/types/X14Sparkline/X14Sparkline.js +14 -0
- package/lib/excel/types/X14Sparkline/X14SparklineGroup.d.ts +35 -0
- package/lib/excel/types/X14Sparkline/X14SparklineGroup.js +112 -0
- package/lib/excel/types/X14Sparkline/X14SparklineGroups.d.ts +6 -0
- package/lib/excel/types/X14Sparkline/X14SparklineGroups.js +15 -0
- package/lib/excel/types/X14Sparkline/x14:sparklines.d.ts +6 -0
- package/lib/excel/types/X14Sparkline/x14_sparklines.js +15 -0
- package/lib/excel/types/worksheet/CellData.d.ts +56 -0
- package/lib/excel/types/worksheet/CellData.js +43 -0
- package/lib/excel/types/worksheet/ICell.d.ts +39 -0
- package/lib/excel/types/worksheet/ICell.js +26 -0
- package/lib/index.d.ts +3 -1
- package/lib/index.js +4 -0
- package/lib/openxml/Attributes.d.ts +33 -0
- package/lib/openxml/Attributes.js +7 -0
- package/lib/openxml/ChartTypes.d.ts +2971 -0
- package/lib/openxml/ChartTypes.js +5416 -0
- package/lib/openxml/ContentType.d.ts +5 -0
- package/lib/openxml/ContentType.js +1 -1
- package/lib/openxml/DMLTypes.d.ts +1836 -0
- package/lib/openxml/DMLTypes.js +2988 -0
- package/lib/openxml/ExcelTypes.d.ts +5147 -0
- package/lib/openxml/ExcelTypes.js +5617 -0
- package/lib/openxml/Style.js +3 -3
- package/lib/openxml/Theme.js +1 -1
- package/lib/openxml/Types.d.ts +2757 -95
- package/lib/openxml/colorNameMap.d.ts +6 -0
- package/lib/openxml/drawing/Blip.d.ts +1 -1
- package/lib/openxml/drawing/CustomGeom.js +1 -1
- package/lib/openxml/drawing/Drawing.js +1 -1
- package/lib/openxml/drawing/Geom.js +1 -1
- package/lib/openxml/drawing/ShapeProperties.d.ts +1 -0
- package/lib/openxml/drawing/ShapeProperties.js +7 -6
- package/lib/openxml/drawing/Transform.js +1 -1
- package/lib/openxml/drawing/svg/shapeToSVG.d.ts +11 -2
- package/lib/openxml/drawing/svg/shapeToSVG.js +6 -6
- package/lib/openxml/word/Body.js +2 -2
- package/lib/openxml/word/Header.js +2 -2
- package/lib/openxml/word/Hyperlink.d.ts +1 -1
- package/lib/openxml/word/Note.js +1 -1
- package/lib/openxml/word/Paragraph.js +2 -2
- package/lib/openxml/word/Run.js +1 -1
- package/lib/openxml/word/Section.js +1 -1
- package/lib/openxml/word/Tab.js +1 -1
- package/lib/openxml/word/WDocument.js +1 -1
- package/lib/openxml/word/wps/WPS.js +2 -2
- package/lib/openxml/word/wps/WPSStyle.js +4 -4
- package/lib/package/PackageParser.d.ts +4 -0
- package/lib/package/XMLPackageParser.d.ts +4 -0
- package/lib/package/ZipPackageParser.d.ts +5 -1
- package/lib/package/ZipPackageParser.js +30 -2
- package/lib/util/EventEmitter.d.ts +38 -0
- package/lib/util/EventEmitter.js +116 -0
- package/lib/util/H.d.ts +7 -0
- package/lib/util/H.js +73 -0
- package/lib/util/LRUCache.d.ts +17 -0
- package/lib/util/LinkedMap.d.ts +40 -0
- package/lib/util/__tests__/autoSpace.test.d.ts +1 -0
- package/lib/util/__tests__/color.test.d.ts +1 -0
- package/lib/util/__tests__/replaceVar.test.d.ts +2 -0
- package/lib/util/__tests__/xml.test.d.ts +1 -0
- package/lib/util/arrayBufferToString.d.ts +1 -0
- package/lib/util/arrayBufferToString.js +11 -0
- package/lib/util/base64ToArrayBuffer.d.ts +1 -0
- package/lib/util/base64ToArrayBuffer.js +14 -0
- package/lib/util/binarySearch.d.ts +5 -0
- package/lib/util/binarySearch.js +27 -0
- package/lib/util/color.d.ts +5 -0
- package/lib/util/color.js +102 -0
- package/lib/util/createObject.d.ts +0 -1
- package/lib/util/createObject.js +2 -11
- package/lib/util/debounce.d.ts +1 -0
- package/lib/util/debounce.js +19 -0
- package/lib/util/emuToPx.d.ts +4 -0
- package/lib/util/emuToPx.js +18 -0
- package/lib/util/escapeHTML.d.ts +4 -0
- package/lib/util/escapeHTML.js +17 -0
- package/lib/util/fileType.d.ts +1 -0
- package/lib/util/fileType.js +17 -0
- package/lib/util/getChineseDay.d.ts +4 -0
- package/lib/util/isFontAvailable.d.ts +5 -0
- package/lib/util/isFontAvailable.js +41 -0
- package/lib/util/isNumeric.d.ts +4 -0
- package/lib/util/isNumeric.js +12 -0
- package/lib/util/isObject.d.ts +6 -0
- package/lib/util/isObject.js +14 -0
- package/lib/util/isValidURL.d.ts +4 -0
- package/lib/util/isValidURL.js +22 -0
- package/lib/util/isVisible.d.ts +4 -0
- package/lib/util/joinPath.d.ts +6 -0
- package/lib/util/joinPath.js +31 -0
- package/lib/util/mergeRun.js +1 -1
- package/lib/util/number.d.ts +9 -0
- package/lib/util/number.js +28 -0
- package/lib/util/objectEqual.d.ts +4 -0
- package/lib/util/objectEqual.js +17 -0
- package/lib/util/onClickOutside.d.ts +4 -0
- package/lib/util/onClickOutside.js +17 -0
- package/lib/util/ptToPx.d.ts +4 -0
- package/lib/util/ptToPx.js +14 -0
- package/lib/util/px2pt.d.ts +1 -0
- package/lib/util/px2pt.js +9 -0
- package/lib/util/runWorker.d.ts +6 -0
- package/lib/util/saxes.d.ts +638 -0
- package/lib/util/saxes.js +2081 -0
- package/lib/util/stringToArray.d.ts +10 -0
- package/lib/util/stringToArray.js +88 -0
- package/lib/util/stripNumber.d.ts +4 -0
- package/lib/util/stripNumber.js +18 -0
- package/lib/util/throttle.d.ts +5 -0
- package/lib/util/xml.d.ts +44 -0
- package/lib/util/xml.js +86 -0
- package/lib/util/xmlchars/xml/1.0/ed4.d.ts +31 -0
- package/lib/util/xmlchars/xml/1.0/ed5.d.ts +51 -0
- package/lib/util/xmlchars/xml/1.0/ed5.js +100 -0
- package/lib/util/xmlchars/xml/1.1/ed2.d.ts +73 -0
- package/lib/util/xmlchars/xml/1.1/ed2.js +25 -0
- package/lib/util/xmlchars/xmlns/1.0/ed3.d.ts +28 -0
- package/lib/util/xmlchars/xmlns/1.0/ed3.js +65 -0
- package/lib/word/parse/Footnotes.d.ts +3 -0
- package/lib/word/parse/Footnotes.js +29 -0
- package/lib/word/parse/modifyColor.js +110 -0
- package/lib/word/parse/parseBorder.d.ts +13 -0
- package/lib/word/parse/parseBorder.js +64 -0
- package/lib/word/parse/parseCellMargin.d.ts +2 -0
- package/lib/word/parse/parseChildColor.d.ts +4 -0
- package/lib/word/parse/parseChildColor.js +70 -0
- package/lib/word/parse/parseColor.d.ts +26 -0
- package/lib/word/parse/parseColor.js +133 -0
- package/lib/word/parse/parseEndnotes.d.ts +3 -0
- package/lib/word/parse/parseEndnotes.js +29 -0
- package/lib/word/parse/parseFont.d.ts +7 -0
- package/lib/word/parse/parseInd.d.ts +5 -0
- package/lib/word/parse/parseInsideBorders.d.ts +9 -0
- package/lib/word/parse/parsePr.d.ts +11 -0
- package/lib/word/parse/parsePr.js +428 -0
- package/lib/word/parse/parseShape.d.ts +10 -0
- package/lib/word/parse/parseShape.js +247 -0
- package/lib/word/parse/parseSpacing.d.ts +7 -0
- package/lib/word/parse/parseTable.d.ts +3 -0
- package/lib/word/parse/parseTable.js +66 -0
- package/lib/word/parse/parseTablePr.d.ts +3 -0
- package/lib/word/parse/parseTablePr.js +189 -0
- package/lib/word/parse/parseTc.d.ts +10 -0
- package/lib/word/parse/parseTc.js +68 -0
- package/lib/word/parse/parseTcPr.d.ts +5 -0
- package/lib/word/parse/parseTcPr.js +104 -0
- package/lib/word/parse/parseTextDirection.d.ts +2 -0
- package/lib/word/parse/parseTr.d.ts +6 -0
- package/lib/word/parse/parseTr.js +53 -0
- package/lib/word/parse/parseTrHeight.d.ts +2 -0
- package/lib/word/parse/parseTrPr.d.ts +3 -0
- package/lib/word/parse/parseTrPr.js +63 -0
- package/lib/word/render/fixAbsolutePosition.d.ts +8 -0
- package/lib/word/render/renderBody.d.ts +10 -0
- package/lib/word/render/renderBody.js +211 -0
- package/lib/word/render/renderBookmark.d.ts +6 -0
- package/lib/word/render/renderBookmark.js +21 -0
- package/lib/word/render/renderBr.d.ts +8 -0
- package/lib/word/render/renderBr.js +20 -0
- package/lib/word/render/renderCustGeom.d.ts +4 -0
- package/lib/word/render/renderCustGeom.js +14 -0
- package/lib/word/render/renderDocument.d.ts +7 -0
- package/lib/word/render/renderDocument.js +18 -0
- package/lib/word/render/renderDrawing.d.ts +9 -0
- package/lib/word/render/renderDrawing.js +259 -0
- package/lib/word/render/renderFont.d.ts +5 -0
- package/lib/word/render/renderFont.js +43 -0
- package/lib/word/render/renderGeom.d.ts +4 -0
- package/lib/word/render/renderGeom.js +18 -0
- package/lib/word/render/renderHeader.d.ts +6 -0
- package/lib/word/render/renderHeader.js +44 -0
- package/lib/word/render/renderHyperLink.d.ts +7 -0
- package/lib/word/render/renderHyperLink.js +48 -0
- package/lib/word/render/renderInlineText.d.ts +6 -0
- package/lib/word/render/renderInlineText.js +43 -0
- package/lib/word/render/renderInstrText.d.ts +8 -0
- package/lib/word/render/renderInstrText.js +44 -0
- package/lib/word/render/renderMath.d.ts +3 -0
- package/lib/word/render/renderMath.js +11 -0
- package/lib/word/render/renderNoBreakHyphen.js +13 -0
- package/lib/word/render/renderNotes.d.ts +5 -0
- package/lib/word/render/renderNotes.js +81 -0
- package/lib/word/render/renderNumbering.d.ts +7 -0
- package/lib/word/render/renderNumbering.js +163 -0
- package/lib/word/render/renderParagraph.d.ts +7 -0
- package/lib/word/render/renderParagraph.js +101 -0
- package/lib/word/render/renderPict.d.ts +6 -0
- package/lib/word/render/renderRuby.d.ts +6 -0
- package/lib/word/render/renderRuby.js +57 -0
- package/lib/word/render/renderRun.d.ts +16 -0
- package/lib/word/render/renderRun.js +151 -0
- package/lib/word/render/renderSection.d.ts +7 -0
- package/lib/word/render/renderSection.js +114 -0
- package/lib/word/render/renderSeparator.js +13 -0
- package/lib/word/render/renderSoftHyphen.js +13 -0
- package/lib/word/render/renderStyle.d.ts +13 -0
- package/lib/word/render/renderStyle.js +200 -0
- package/lib/word/render/renderSym.d.ts +3 -0
- package/lib/word/render/renderSym.js +14 -0
- package/lib/word/render/renderTab.d.ts +8 -0
- package/lib/word/render/renderTab.js +27 -0
- package/lib/word/render/renderTable.d.ts +6 -0
- package/lib/word/render/renderTable.js +193 -0
- package/lib/word/render/setElementStyle.d.ts +6 -0
- package/lib/word/render/setElementStyle.js +30 -0
- package/package.json +37 -18
- package/esm/parse/Footnotes.d.ts +0 -3
- package/esm/parse/Footnotes.js +0 -25
- package/esm/parse/colorNameMap.d.ts +0 -6
- package/esm/parse/modifyColor.js +0 -106
- package/esm/parse/parseBorder.d.ts +0 -13
- package/esm/parse/parseBorder.js +0 -59
- package/esm/parse/parseCellMargin.d.ts +0 -2
- package/esm/parse/parseChildColor.d.ts +0 -5
- package/esm/parse/parseChildColor.js +0 -66
- package/esm/parse/parseColor.d.ts +0 -26
- package/esm/parse/parseColor.js +0 -126
- package/esm/parse/parseEndnotes.d.ts +0 -3
- package/esm/parse/parseEndnotes.js +0 -25
- package/esm/parse/parseFont.d.ts +0 -7
- package/esm/parse/parseInd.d.ts +0 -5
- package/esm/parse/parseInsideBorders.d.ts +0 -9
- package/esm/parse/parsePr.d.ts +0 -11
- package/esm/parse/parsePr.js +0 -422
- package/esm/parse/parseShape.d.ts +0 -10
- package/esm/parse/parseShape.js +0 -239
- package/esm/parse/parseSpacing.d.ts +0 -7
- package/esm/parse/parseTable.d.ts +0 -3
- package/esm/parse/parseTable.js +0 -62
- package/esm/parse/parseTablePr.d.ts +0 -3
- package/esm/parse/parseTablePr.js +0 -185
- package/esm/parse/parseTc.d.ts +0 -10
- package/esm/parse/parseTc.js +0 -64
- package/esm/parse/parseTcPr.d.ts +0 -5
- package/esm/parse/parseTcPr.js +0 -99
- package/esm/parse/parseTextDirection.d.ts +0 -2
- package/esm/parse/parseTr.d.ts +0 -6
- package/esm/parse/parseTr.js +0 -49
- package/esm/parse/parseTrHeight.d.ts +0 -2
- package/esm/parse/parseTrPr.d.ts +0 -3
- package/esm/parse/parseTrPr.js +0 -59
- package/esm/render/fixAbsolutePosition.d.ts +0 -8
- package/esm/render/renderBody.d.ts +0 -10
- package/esm/render/renderBody.js +0 -207
- package/esm/render/renderBookmark.d.ts +0 -6
- package/esm/render/renderBookmark.js +0 -17
- package/esm/render/renderBr.d.ts +0 -8
- package/esm/render/renderBr.js +0 -16
- package/esm/render/renderCustGeom.d.ts +0 -4
- package/esm/render/renderCustGeom.js +0 -10
- package/esm/render/renderDocument.d.ts +0 -7
- package/esm/render/renderDocument.js +0 -14
- package/esm/render/renderDrawing.d.ts +0 -9
- package/esm/render/renderDrawing.js +0 -255
- package/esm/render/renderFont.d.ts +0 -5
- package/esm/render/renderFont.js +0 -39
- package/esm/render/renderGeom.d.ts +0 -4
- package/esm/render/renderGeom.js +0 -14
- package/esm/render/renderHeader.d.ts +0 -6
- package/esm/render/renderHeader.js +0 -40
- package/esm/render/renderHyperLink.d.ts +0 -7
- package/esm/render/renderHyperLink.js +0 -44
- package/esm/render/renderInlineText.d.ts +0 -6
- package/esm/render/renderInlineText.js +0 -39
- package/esm/render/renderInstrText.d.ts +0 -8
- package/esm/render/renderInstrText.js +0 -40
- package/esm/render/renderMath.d.ts +0 -3
- package/esm/render/renderMath.js +0 -7
- package/esm/render/renderNoBreakHyphen.js +0 -9
- package/esm/render/renderNotes.d.ts +0 -5
- package/esm/render/renderNotes.js +0 -77
- package/esm/render/renderNumbering.d.ts +0 -7
- package/esm/render/renderNumbering.js +0 -159
- package/esm/render/renderParagraph.d.ts +0 -7
- package/esm/render/renderParagraph.js +0 -97
- package/esm/render/renderPict.d.ts +0 -6
- package/esm/render/renderRuby.d.ts +0 -6
- package/esm/render/renderRuby.js +0 -53
- package/esm/render/renderRun.d.ts +0 -16
- package/esm/render/renderRun.js +0 -146
- package/esm/render/renderSection.d.ts +0 -7
- package/esm/render/renderSection.js +0 -110
- package/esm/render/renderSeparator.js +0 -9
- package/esm/render/renderSoftHyphen.js +0 -9
- package/esm/render/renderStyle.d.ts +0 -13
- package/esm/render/renderStyle.js +0 -195
- package/esm/render/renderSym.d.ts +0 -3
- package/esm/render/renderSym.js +0 -10
- package/esm/render/renderTab.d.ts +0 -8
- package/esm/render/renderTab.js +0 -23
- package/esm/render/renderTable.d.ts +0 -6
- package/esm/render/renderTable.js +0 -189
- package/esm/render/setElementStyle.d.ts +0 -6
- package/esm/render/setElementStyle.js +0 -26
- package/lib/parse/Footnotes.d.ts +0 -3
- package/lib/parse/Footnotes.js +0 -29
- package/lib/parse/colorNameMap.d.ts +0 -6
- package/lib/parse/modifyColor.js +0 -110
- package/lib/parse/parseBorder.d.ts +0 -13
- package/lib/parse/parseBorder.js +0 -64
- package/lib/parse/parseCellMargin.d.ts +0 -2
- package/lib/parse/parseChildColor.d.ts +0 -5
- package/lib/parse/parseChildColor.js +0 -70
- package/lib/parse/parseColor.d.ts +0 -26
- package/lib/parse/parseColor.js +0 -133
- package/lib/parse/parseEndnotes.d.ts +0 -3
- package/lib/parse/parseEndnotes.js +0 -29
- package/lib/parse/parseFont.d.ts +0 -7
- package/lib/parse/parseInd.d.ts +0 -5
- package/lib/parse/parseInsideBorders.d.ts +0 -9
- package/lib/parse/parsePr.d.ts +0 -11
- package/lib/parse/parsePr.js +0 -426
- package/lib/parse/parseShape.d.ts +0 -10
- package/lib/parse/parseShape.js +0 -247
- package/lib/parse/parseSpacing.d.ts +0 -7
- package/lib/parse/parseTable.d.ts +0 -3
- package/lib/parse/parseTable.js +0 -66
- package/lib/parse/parseTablePr.d.ts +0 -3
- package/lib/parse/parseTablePr.js +0 -189
- package/lib/parse/parseTc.d.ts +0 -10
- package/lib/parse/parseTc.js +0 -68
- package/lib/parse/parseTcPr.d.ts +0 -5
- package/lib/parse/parseTcPr.js +0 -104
- package/lib/parse/parseTextDirection.d.ts +0 -2
- package/lib/parse/parseTr.d.ts +0 -6
- package/lib/parse/parseTr.js +0 -53
- package/lib/parse/parseTrHeight.d.ts +0 -2
- package/lib/parse/parseTrPr.d.ts +0 -3
- package/lib/parse/parseTrPr.js +0 -63
- package/lib/render/fixAbsolutePosition.d.ts +0 -8
- package/lib/render/renderBody.d.ts +0 -10
- package/lib/render/renderBody.js +0 -211
- package/lib/render/renderBookmark.d.ts +0 -6
- package/lib/render/renderBookmark.js +0 -21
- package/lib/render/renderBr.d.ts +0 -8
- package/lib/render/renderBr.js +0 -20
- package/lib/render/renderCustGeom.d.ts +0 -4
- package/lib/render/renderCustGeom.js +0 -14
- package/lib/render/renderDocument.d.ts +0 -7
- package/lib/render/renderDocument.js +0 -18
- package/lib/render/renderDrawing.d.ts +0 -9
- package/lib/render/renderDrawing.js +0 -259
- package/lib/render/renderFont.d.ts +0 -5
- package/lib/render/renderFont.js +0 -43
- package/lib/render/renderGeom.d.ts +0 -4
- package/lib/render/renderGeom.js +0 -18
- package/lib/render/renderHeader.d.ts +0 -6
- package/lib/render/renderHeader.js +0 -44
- package/lib/render/renderHyperLink.d.ts +0 -7
- package/lib/render/renderHyperLink.js +0 -48
- package/lib/render/renderInlineText.d.ts +0 -6
- package/lib/render/renderInlineText.js +0 -43
- package/lib/render/renderInstrText.d.ts +0 -8
- package/lib/render/renderInstrText.js +0 -44
- package/lib/render/renderMath.d.ts +0 -3
- package/lib/render/renderMath.js +0 -11
- package/lib/render/renderNoBreakHyphen.js +0 -13
- package/lib/render/renderNotes.d.ts +0 -5
- package/lib/render/renderNotes.js +0 -81
- package/lib/render/renderNumbering.d.ts +0 -7
- package/lib/render/renderNumbering.js +0 -163
- package/lib/render/renderParagraph.d.ts +0 -7
- package/lib/render/renderParagraph.js +0 -101
- package/lib/render/renderPict.d.ts +0 -6
- package/lib/render/renderRuby.d.ts +0 -6
- package/lib/render/renderRuby.js +0 -57
- package/lib/render/renderRun.d.ts +0 -16
- package/lib/render/renderRun.js +0 -151
- package/lib/render/renderSection.d.ts +0 -7
- package/lib/render/renderSection.js +0 -114
- package/lib/render/renderSeparator.js +0 -13
- package/lib/render/renderSoftHyphen.js +0 -13
- package/lib/render/renderStyle.d.ts +0 -13
- package/lib/render/renderStyle.js +0 -200
- package/lib/render/renderSym.d.ts +0 -3
- package/lib/render/renderSym.js +0 -14
- package/lib/render/renderTab.d.ts +0 -8
- package/lib/render/renderTab.js +0 -27
- package/lib/render/renderTable.d.ts +0 -6
- package/lib/render/renderTable.js +0 -193
- package/lib/render/setElementStyle.d.ts +0 -6
- package/lib/render/setElementStyle.js +0 -30
- /package/esm/{parse → openxml}/colorNameMap.js +0 -0
- /package/esm/{parse → word/parse}/jcToTextAlign.d.ts +0 -0
- /package/esm/{parse → word/parse}/jcToTextAlign.js +0 -0
- /package/esm/{parse → word/parse}/mergeSdt.d.ts +0 -0
- /package/esm/{parse → word/parse}/mergeSdt.js +0 -0
- /package/esm/{parse → word/parse}/modifyColor.d.ts +0 -0
- /package/esm/{parse → word/parse}/parseCellMargin.js +0 -0
- /package/esm/{parse → word/parse}/parseFont.js +0 -0
- /package/esm/{parse → word/parse}/parseInd.js +0 -0
- /package/esm/{parse → word/parse}/parseInsideBorders.js +0 -0
- /package/esm/{parse → word/parse}/parseRelationship.d.ts +0 -0
- /package/esm/{parse → word/parse}/parseRelationship.js +0 -0
- /package/esm/{parse → word/parse}/parseSdt.d.ts +0 -0
- /package/esm/{parse → word/parse}/parseSize.d.ts +0 -0
- /package/esm/{parse → word/parse}/parseSize.js +0 -0
- /package/esm/{parse → word/parse}/parseSpacing.js +0 -0
- /package/esm/{parse → word/parse}/parseTblWidth.d.ts +0 -0
- /package/esm/{parse → word/parse}/parseTblWidth.js +0 -0
- /package/esm/{parse → word/parse}/parseTextDirection.js +0 -0
- /package/esm/{parse → word/parse}/parseTrHeight.js +0 -0
- /package/esm/{render → word/render}/renderNoBreakHyphen.d.ts +0 -0
- /package/esm/{render → word/render}/renderPict.js +0 -0
- /package/esm/{render → word/render}/renderSeparator.d.ts +0 -0
- /package/esm/{render → word/render}/renderSoftHyphen.d.ts +0 -0
- /package/esm/{render → word/render}/zindex.d.ts +0 -0
- /package/lib/{parse → openxml}/colorNameMap.js +0 -0
- /package/lib/{parse → word/parse}/jcToTextAlign.d.ts +0 -0
- /package/lib/{parse → word/parse}/jcToTextAlign.js +0 -0
- /package/lib/{parse → word/parse}/mergeSdt.d.ts +0 -0
- /package/lib/{parse → word/parse}/mergeSdt.js +0 -0
- /package/lib/{parse → word/parse}/modifyColor.d.ts +0 -0
- /package/lib/{parse → word/parse}/parseCellMargin.js +0 -0
- /package/lib/{parse → word/parse}/parseFont.js +0 -0
- /package/lib/{parse → word/parse}/parseInd.js +0 -0
- /package/lib/{parse → word/parse}/parseInsideBorders.js +0 -0
- /package/lib/{parse → word/parse}/parseRelationship.d.ts +0 -0
- /package/lib/{parse → word/parse}/parseRelationship.js +0 -0
- /package/lib/{parse → word/parse}/parseSdt.d.ts +0 -0
- /package/lib/{parse → word/parse}/parseSize.d.ts +0 -0
- /package/lib/{parse → word/parse}/parseSize.js +0 -0
- /package/lib/{parse → word/parse}/parseSpacing.js +0 -0
- /package/lib/{parse → word/parse}/parseTblWidth.d.ts +0 -0
- /package/lib/{parse → word/parse}/parseTblWidth.js +0 -0
- /package/lib/{parse → word/parse}/parseTextDirection.js +0 -0
- /package/lib/{parse → word/parse}/parseTrHeight.js +0 -0
- /package/lib/{render → word/render}/renderNoBreakHyphen.d.ts +0 -0
- /package/lib/{render → word/render}/renderPict.js +0 -0
- /package/lib/{render → word/render}/renderSeparator.d.ts +0 -0
- /package/lib/{render → word/render}/renderSoftHyphen.d.ts +0 -0
- /package/lib/{render → word/render}/zindex.d.ts +0 -0
package/esm/openxml/Types.d.ts
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
/** generated by tools/xsd2ts.ts, do not edit */
|
|
2
1
|
export type ST_Lang = string;
|
|
3
2
|
export type ST_HexColorRGB = string;
|
|
4
3
|
export type ST_Panose = string;
|
|
@@ -17,203 +16,2866 @@ export type ST_ConformanceClass = 'strict' | 'transitional';
|
|
|
17
16
|
export type ST_UniversalMeasure = string;
|
|
18
17
|
export type ST_PositiveUniversalMeasure = ST_UniversalMeasure;
|
|
19
18
|
export type ST_Percentage = string;
|
|
20
|
-
export type ST_FixedPercentage =
|
|
21
|
-
export type ST_PositivePercentage =
|
|
22
|
-
export type ST_PositiveFixedPercentage =
|
|
19
|
+
export type ST_FixedPercentage = string;
|
|
20
|
+
export type ST_PositivePercentage = string;
|
|
21
|
+
export type ST_PositiveFixedPercentage = string;
|
|
22
|
+
export interface CT_OfficeArtExtensionList {
|
|
23
|
+
}
|
|
24
|
+
export interface CT_AudioFile {
|
|
25
|
+
extLst: CT_OfficeArtExtensionList;
|
|
26
|
+
contentType: string;
|
|
27
|
+
}
|
|
28
|
+
export interface CT_VideoFile {
|
|
29
|
+
extLst: CT_OfficeArtExtensionList;
|
|
30
|
+
contentType: string;
|
|
31
|
+
}
|
|
32
|
+
export interface CT_QuickTimeFile {
|
|
33
|
+
extLst: CT_OfficeArtExtensionList;
|
|
34
|
+
}
|
|
35
|
+
export interface CT_AudioCDTime {
|
|
36
|
+
track: number;
|
|
37
|
+
time: number;
|
|
38
|
+
}
|
|
39
|
+
export interface CT_AudioCD {
|
|
40
|
+
st: CT_AudioCDTime;
|
|
41
|
+
end: CT_AudioCDTime;
|
|
42
|
+
extLst: CT_OfficeArtExtensionList;
|
|
43
|
+
}
|
|
44
|
+
export type ST_StyleMatrixColumnIndex = number;
|
|
45
|
+
export type ST_FontCollectionIndex = 'major' | 'minor' | 'none';
|
|
46
|
+
export type ST_ColorSchemeIndex = 'dk1' | 'lt1' | 'dk2' | 'lt2' | 'accent1' | 'accent2' | 'accent3' | 'accent4' | 'accent5' | 'accent6' | 'hlink' | 'folHlink';
|
|
47
|
+
export type ST_HexColor = ST_HexColorAuto | ST_HexColorRGB;
|
|
48
|
+
export type ST_ThemeColor = 'dark1' | 'light1' | 'dark2' | 'light2' | 'accent1' | 'accent2' | 'accent3' | 'accent4' | 'accent5' | 'accent6' | 'hyperlink' | 'followedHyperlink' | 'none' | 'background1' | 'text1' | 'background2' | 'text2';
|
|
49
|
+
export type ST_UcharHexNumber = string;
|
|
50
|
+
export interface CT_Color {
|
|
51
|
+
val: ST_HexColor;
|
|
52
|
+
themeColor: ST_ThemeColor;
|
|
53
|
+
themeTint: string;
|
|
54
|
+
themeShade: string;
|
|
55
|
+
}
|
|
56
|
+
export interface CT_ColorScheme {
|
|
57
|
+
dk1: CT_Color;
|
|
58
|
+
lt1: CT_Color;
|
|
59
|
+
dk2: CT_Color;
|
|
60
|
+
lt2: CT_Color;
|
|
61
|
+
accent1: CT_Color;
|
|
62
|
+
accent2: CT_Color;
|
|
63
|
+
accent3: CT_Color;
|
|
64
|
+
accent4: CT_Color;
|
|
65
|
+
accent5: CT_Color;
|
|
66
|
+
accent6: CT_Color;
|
|
67
|
+
hlink: CT_Color;
|
|
68
|
+
folHlink: CT_Color;
|
|
69
|
+
extLst: CT_OfficeArtExtensionList;
|
|
70
|
+
name: string;
|
|
71
|
+
}
|
|
72
|
+
export interface CT_CustomColor {
|
|
73
|
+
name: string;
|
|
74
|
+
}
|
|
75
|
+
export type ST_TextTypeface = string;
|
|
76
|
+
export interface CT_SupplementalFont {
|
|
77
|
+
script: string;
|
|
78
|
+
typeface: string;
|
|
79
|
+
}
|
|
80
|
+
export interface CT_CustomColorList {
|
|
81
|
+
custClr: CT_CustomColor[];
|
|
82
|
+
}
|
|
83
|
+
export type ST_PitchFamily = number;
|
|
84
|
+
export interface CT_TextFont {
|
|
85
|
+
typeface: string;
|
|
86
|
+
panose: string;
|
|
87
|
+
pitchFamily: number;
|
|
88
|
+
charset: number;
|
|
89
|
+
}
|
|
90
|
+
export interface CT_FontCollection {
|
|
91
|
+
latin: CT_TextFont;
|
|
92
|
+
ea: CT_TextFont;
|
|
93
|
+
cs: CT_TextFont;
|
|
94
|
+
font: CT_SupplementalFont[];
|
|
95
|
+
extLst: CT_OfficeArtExtensionList;
|
|
96
|
+
}
|
|
97
|
+
export type ST_PositiveFixedAngle = ST_Angle;
|
|
98
|
+
export interface CT_SphereCoords {
|
|
99
|
+
lat: number;
|
|
100
|
+
lon: number;
|
|
101
|
+
rev: number;
|
|
102
|
+
}
|
|
103
|
+
export type ST_PresetCameraType = 'legacyObliqueTopLeft' | 'legacyObliqueTop' | 'legacyObliqueTopRight' | 'legacyObliqueLeft' | 'legacyObliqueFront' | 'legacyObliqueRight' | 'legacyObliqueBottomLeft' | 'legacyObliqueBottom' | 'legacyObliqueBottomRight' | 'legacyPerspectiveTopLeft' | 'legacyPerspectiveTop' | 'legacyPerspectiveTopRight' | 'legacyPerspectiveLeft' | 'legacyPerspectiveFront' | 'legacyPerspectiveRight' | 'legacyPerspectiveBottomLeft' | 'legacyPerspectiveBottom' | 'legacyPerspectiveBottomRight' | 'orthographicFront' | 'isometricTopUp' | 'isometricTopDown' | 'isometricBottomUp' | 'isometricBottomDown' | 'isometricLeftUp' | 'isometricLeftDown' | 'isometricRightUp' | 'isometricRightDown' | 'isometricOffAxis1Left' | 'isometricOffAxis1Right' | 'isometricOffAxis1Top' | 'isometricOffAxis2Left' | 'isometricOffAxis2Right' | 'isometricOffAxis2Top' | 'isometricOffAxis3Left' | 'isometricOffAxis3Right' | 'isometricOffAxis3Bottom' | 'isometricOffAxis4Left' | 'isometricOffAxis4Right' | 'isometricOffAxis4Bottom' | 'obliqueTopLeft' | 'obliqueTop' | 'obliqueTopRight' | 'obliqueLeft' | 'obliqueRight' | 'obliqueBottomLeft' | 'obliqueBottom' | 'obliqueBottomRight' | 'perspectiveFront' | 'perspectiveLeft' | 'perspectiveRight' | 'perspectiveAbove' | 'perspectiveBelow' | 'perspectiveAboveLeftFacing' | 'perspectiveAboveRightFacing' | 'perspectiveContrastingLeftFacing' | 'perspectiveContrastingRightFacing' | 'perspectiveHeroicLeftFacing' | 'perspectiveHeroicRightFacing' | 'perspectiveHeroicExtremeLeftFacing' | 'perspectiveHeroicExtremeRightFacing' | 'perspectiveRelaxed' | 'perspectiveRelaxedModerately';
|
|
104
|
+
export type ST_FOVAngle = ST_Angle;
|
|
105
|
+
export interface CT_Camera {
|
|
106
|
+
rot: CT_SphereCoords;
|
|
107
|
+
prst: ST_PresetCameraType;
|
|
108
|
+
fov: number;
|
|
109
|
+
zoom: ST_PositivePercentage;
|
|
110
|
+
}
|
|
111
|
+
export type ST_LightRigType = 'legacyFlat1' | 'legacyFlat2' | 'legacyFlat3' | 'legacyFlat4' | 'legacyNormal1' | 'legacyNormal2' | 'legacyNormal3' | 'legacyNormal4' | 'legacyHarsh1' | 'legacyHarsh2' | 'legacyHarsh3' | 'legacyHarsh4' | 'threePt' | 'balanced' | 'soft' | 'harsh' | 'flood' | 'contrasting' | 'morning' | 'sunrise' | 'sunset' | 'chilly' | 'freezing' | 'flat' | 'twoPt' | 'glow' | 'brightRoom';
|
|
112
|
+
export type ST_LightRigDirection = 'tl' | 't' | 'tr' | 'l' | 'r' | 'bl' | 'b' | 'br';
|
|
113
|
+
export interface CT_LightRig {
|
|
114
|
+
rot: CT_SphereCoords;
|
|
115
|
+
rig: ST_LightRigType;
|
|
116
|
+
dir: ST_LightRigDirection;
|
|
117
|
+
}
|
|
118
|
+
export type ST_Coordinate = ST_CoordinateUnqualified | ST_UniversalMeasure;
|
|
119
|
+
export interface CT_Point3D {
|
|
120
|
+
x: ST_Coordinate;
|
|
121
|
+
y: ST_Coordinate;
|
|
122
|
+
z: ST_Coordinate;
|
|
123
|
+
}
|
|
124
|
+
export interface CT_Vector3D {
|
|
125
|
+
dx: ST_Coordinate;
|
|
126
|
+
dy: ST_Coordinate;
|
|
127
|
+
dz: ST_Coordinate;
|
|
128
|
+
}
|
|
129
|
+
export interface CT_Backdrop {
|
|
130
|
+
anchor: CT_Point3D;
|
|
131
|
+
norm: CT_Vector3D;
|
|
132
|
+
up: CT_Vector3D;
|
|
133
|
+
extLst: CT_OfficeArtExtensionList;
|
|
134
|
+
}
|
|
135
|
+
export interface CT_Scene3D {
|
|
136
|
+
camera: CT_Camera;
|
|
137
|
+
lightRig: CT_LightRig;
|
|
138
|
+
backdrop: CT_Backdrop;
|
|
139
|
+
extLst: CT_OfficeArtExtensionList;
|
|
140
|
+
}
|
|
141
|
+
export type ST_PositiveCoordinate = number;
|
|
142
|
+
export type ST_BevelPresetType = 'relaxedInset' | 'circle' | 'slope' | 'cross' | 'angle' | 'softRound' | 'convex' | 'coolSlant' | 'divot' | 'riblet' | 'hardEdge' | 'artDeco';
|
|
143
|
+
export interface CT_Bevel {
|
|
144
|
+
w: number;
|
|
145
|
+
h: number;
|
|
146
|
+
prst: ST_BevelPresetType;
|
|
147
|
+
}
|
|
148
|
+
export type ST_PresetMaterialType = 'legacyMatte' | 'legacyPlastic' | 'legacyMetal' | 'legacyWireframe' | 'matte' | 'plastic' | 'metal' | 'warmMatte' | 'translucentPowder' | 'powder' | 'dkEdge' | 'softEdge' | 'clear' | 'flat' | 'softmetal';
|
|
149
|
+
export interface CT_Shape3D {
|
|
150
|
+
bevelT: CT_Bevel;
|
|
151
|
+
bevelB: CT_Bevel;
|
|
152
|
+
extrusionClr: CT_Color;
|
|
153
|
+
contourClr: CT_Color;
|
|
154
|
+
extLst: CT_OfficeArtExtensionList;
|
|
155
|
+
z: ST_Coordinate;
|
|
156
|
+
extrusionH: number;
|
|
157
|
+
contourW: number;
|
|
158
|
+
prstMaterial: ST_PresetMaterialType;
|
|
159
|
+
}
|
|
160
|
+
export interface CT_EffectStyleItem {
|
|
161
|
+
scene3d: CT_Scene3D;
|
|
162
|
+
sp3d: CT_Shape3D;
|
|
163
|
+
}
|
|
164
|
+
export interface CT_FontScheme {
|
|
165
|
+
majorFont: CT_FontCollection;
|
|
166
|
+
minorFont: CT_FontCollection;
|
|
167
|
+
extLst: CT_OfficeArtExtensionList;
|
|
168
|
+
name: string;
|
|
169
|
+
}
|
|
170
|
+
export interface CT_FillStyleList {
|
|
171
|
+
}
|
|
172
|
+
export type ST_LineEndType = 'none' | 'triangle' | 'stealth' | 'diamond' | 'oval' | 'arrow';
|
|
173
|
+
export type ST_LineEndWidth = 'sm' | 'med' | 'lg';
|
|
174
|
+
export type ST_LineEndLength = 'sm' | 'med' | 'lg';
|
|
175
|
+
export interface CT_LineEndProperties {
|
|
176
|
+
type: ST_LineEndType;
|
|
177
|
+
w: ST_LineEndWidth;
|
|
178
|
+
len: ST_LineEndLength;
|
|
179
|
+
}
|
|
180
|
+
export type ST_LineWidth = ST_Coordinate32Unqualified;
|
|
181
|
+
export type ST_LineCap = 'rnd' | 'sq' | 'flat';
|
|
182
|
+
export type ST_CompoundLine = 'sng' | 'dbl' | 'thickThin' | 'thinThick' | 'tri';
|
|
183
|
+
export type ST_PenAlignment = 'ctr' | 'in';
|
|
184
|
+
export interface CT_LineProperties {
|
|
185
|
+
headEnd: CT_LineEndProperties;
|
|
186
|
+
tailEnd: CT_LineEndProperties;
|
|
187
|
+
extLst: CT_OfficeArtExtensionList;
|
|
188
|
+
w: number;
|
|
189
|
+
cap: ST_LineCap;
|
|
190
|
+
cmpd: ST_CompoundLine;
|
|
191
|
+
algn: ST_PenAlignment;
|
|
192
|
+
}
|
|
193
|
+
export interface CT_LineStyleList {
|
|
194
|
+
ln: CT_LineProperties[];
|
|
195
|
+
}
|
|
196
|
+
export interface CT_EffectStyleList {
|
|
197
|
+
effectStyle: CT_EffectStyleItem[];
|
|
198
|
+
}
|
|
199
|
+
export interface CT_BackgroundFillStyleList {
|
|
200
|
+
}
|
|
201
|
+
export interface CT_StyleMatrix {
|
|
202
|
+
fillStyleLst: CT_FillStyleList;
|
|
203
|
+
lnStyleLst: CT_LineStyleList;
|
|
204
|
+
effectStyleLst: CT_EffectStyleList;
|
|
205
|
+
bgFillStyleLst: CT_BackgroundFillStyleList;
|
|
206
|
+
name: string;
|
|
207
|
+
}
|
|
208
|
+
export interface CT_BaseStyles {
|
|
209
|
+
clrScheme: CT_ColorScheme;
|
|
210
|
+
fontScheme: CT_FontScheme;
|
|
211
|
+
fmtScheme: CT_StyleMatrix;
|
|
212
|
+
extLst: CT_OfficeArtExtensionList;
|
|
213
|
+
}
|
|
214
|
+
export interface CT_OfficeArtExtension {
|
|
215
|
+
uri: string;
|
|
216
|
+
}
|
|
217
|
+
export type ST_CoordinateUnqualified = number;
|
|
218
|
+
export type ST_Coordinate32 = ST_Coordinate32Unqualified | ST_UniversalMeasure;
|
|
219
|
+
export type ST_Coordinate32Unqualified = number;
|
|
220
|
+
export type ST_PositiveCoordinate32 = ST_Coordinate32Unqualified;
|
|
221
|
+
export type ST_Angle = number;
|
|
222
|
+
export interface CT_Angle {
|
|
223
|
+
val: number;
|
|
224
|
+
}
|
|
225
|
+
export type ST_FixedAngle = ST_Angle;
|
|
226
|
+
export interface CT_PositiveFixedAngle {
|
|
227
|
+
val: number;
|
|
228
|
+
}
|
|
229
|
+
export interface CT_Percentage {
|
|
230
|
+
val: string;
|
|
231
|
+
}
|
|
232
|
+
export interface CT_PositivePercentage {
|
|
233
|
+
val: ST_PositivePercentage;
|
|
234
|
+
}
|
|
235
|
+
export interface CT_FixedPercentage {
|
|
236
|
+
val: ST_FixedPercentage;
|
|
237
|
+
}
|
|
238
|
+
export interface CT_PositiveFixedPercentage {
|
|
239
|
+
val: ST_PositiveFixedPercentage;
|
|
240
|
+
}
|
|
241
|
+
export interface CT_Ratio {
|
|
242
|
+
n: number;
|
|
243
|
+
d: number;
|
|
244
|
+
}
|
|
245
|
+
export interface CT_Point2D {
|
|
246
|
+
x: ST_Coordinate;
|
|
247
|
+
y: ST_Coordinate;
|
|
248
|
+
}
|
|
249
|
+
export interface CT_PositiveSize2D {
|
|
250
|
+
cx: number;
|
|
251
|
+
cy: number;
|
|
252
|
+
}
|
|
253
|
+
export interface CT_ComplementTransform {
|
|
254
|
+
}
|
|
255
|
+
export interface CT_InverseTransform {
|
|
256
|
+
}
|
|
257
|
+
export interface CT_GrayscaleTransform {
|
|
258
|
+
}
|
|
259
|
+
export interface CT_GammaTransform {
|
|
260
|
+
}
|
|
261
|
+
export interface CT_InverseGammaTransform {
|
|
262
|
+
}
|
|
263
|
+
export interface CT_ScRgbColor {
|
|
264
|
+
r: string;
|
|
265
|
+
g: string;
|
|
266
|
+
b: string;
|
|
267
|
+
}
|
|
268
|
+
export interface CT_SRgbColor {
|
|
269
|
+
val: string;
|
|
270
|
+
}
|
|
271
|
+
export interface CT_HslColor {
|
|
272
|
+
hue: number;
|
|
273
|
+
sat: string;
|
|
274
|
+
lum: string;
|
|
275
|
+
}
|
|
276
|
+
export type ST_SystemColorVal = 'scrollBar' | 'background' | 'activeCaption' | 'inactiveCaption' | 'menu' | 'window' | 'windowFrame' | 'menuText' | 'windowText' | 'captionText' | 'activeBorder' | 'inactiveBorder' | 'appWorkspace' | 'highlight' | 'highlightText' | 'btnFace' | 'btnShadow' | 'grayText' | 'btnText' | 'inactiveCaptionText' | 'btnHighlight' | '3dDkShadow' | '3dLight' | 'infoText' | 'infoBk' | 'hotLight' | 'gradientActiveCaption' | 'gradientInactiveCaption' | 'menuHighlight' | 'menuBar';
|
|
277
|
+
export interface CT_SystemColor {
|
|
278
|
+
val: ST_SystemColorVal;
|
|
279
|
+
lastClr: string;
|
|
280
|
+
}
|
|
281
|
+
export type ST_SchemeColorVal = 'bg1' | 'tx1' | 'bg2' | 'tx2' | 'accent1' | 'accent2' | 'accent3' | 'accent4' | 'accent5' | 'accent6' | 'hlink' | 'folHlink' | 'phClr' | 'dk1' | 'lt1' | 'dk2' | 'lt2';
|
|
282
|
+
export interface CT_SchemeColor {
|
|
283
|
+
val: ST_SchemeColorVal;
|
|
284
|
+
}
|
|
285
|
+
export type ST_PresetColorVal = 'aliceBlue' | 'antiqueWhite' | 'aqua' | 'aquamarine' | 'azure' | 'beige' | 'bisque' | 'black' | 'blanchedAlmond' | 'blue' | 'blueViolet' | 'brown' | 'burlyWood' | 'cadetBlue' | 'chartreuse' | 'chocolate' | 'coral' | 'cornflowerBlue' | 'cornsilk' | 'crimson' | 'cyan' | 'darkBlue' | 'darkCyan' | 'darkGoldenrod' | 'darkGray' | 'darkGrey' | 'darkGreen' | 'darkKhaki' | 'darkMagenta' | 'darkOliveGreen' | 'darkOrange' | 'darkOrchid' | 'darkRed' | 'darkSalmon' | 'darkSeaGreen' | 'darkSlateBlue' | 'darkSlateGray' | 'darkSlateGrey' | 'darkTurquoise' | 'darkViolet' | 'dkBlue' | 'dkCyan' | 'dkGoldenrod' | 'dkGray' | 'dkGrey' | 'dkGreen' | 'dkKhaki' | 'dkMagenta' | 'dkOliveGreen' | 'dkOrange' | 'dkOrchid' | 'dkRed' | 'dkSalmon' | 'dkSeaGreen' | 'dkSlateBlue' | 'dkSlateGray' | 'dkSlateGrey' | 'dkTurquoise' | 'dkViolet' | 'deepPink' | 'deepSkyBlue' | 'dimGray' | 'dimGrey' | 'dodgerBlue' | 'firebrick' | 'floralWhite' | 'forestGreen' | 'fuchsia' | 'gainsboro' | 'ghostWhite' | 'gold' | 'goldenrod' | 'gray' | 'grey' | 'green' | 'greenYellow' | 'honeydew' | 'hotPink' | 'indianRed' | 'indigo' | 'ivory' | 'khaki' | 'lavender' | 'lavenderBlush' | 'lawnGreen' | 'lemonChiffon' | 'lightBlue' | 'lightCoral' | 'lightCyan' | 'lightGoldenrodYellow' | 'lightGray' | 'lightGrey' | 'lightGreen' | 'lightPink' | 'lightSalmon' | 'lightSeaGreen' | 'lightSkyBlue' | 'lightSlateGray' | 'lightSlateGrey' | 'lightSteelBlue' | 'lightYellow' | 'ltBlue' | 'ltCoral' | 'ltCyan' | 'ltGoldenrodYellow' | 'ltGray' | 'ltGrey' | 'ltGreen' | 'ltPink' | 'ltSalmon' | 'ltSeaGreen' | 'ltSkyBlue' | 'ltSlateGray' | 'ltSlateGrey' | 'ltSteelBlue' | 'ltYellow' | 'lime' | 'limeGreen' | 'linen' | 'magenta' | 'maroon' | 'medAquamarine' | 'medBlue' | 'medOrchid' | 'medPurple' | 'medSeaGreen' | 'medSlateBlue' | 'medSpringGreen' | 'medTurquoise' | 'medVioletRed' | 'mediumAquamarine' | 'mediumBlue' | 'mediumOrchid' | 'mediumPurple' | 'mediumSeaGreen' | 'mediumSlateBlue' | 'mediumSpringGreen' | 'mediumTurquoise' | 'mediumVioletRed' | 'midnightBlue' | 'mintCream' | 'mistyRose' | 'moccasin' | 'navajoWhite' | 'navy' | 'oldLace' | 'olive' | 'oliveDrab' | 'orange' | 'orangeRed' | 'orchid' | 'paleGoldenrod' | 'paleGreen' | 'paleTurquoise' | 'paleVioletRed' | 'papayaWhip' | 'peachPuff' | 'peru' | 'pink' | 'plum' | 'powderBlue' | 'purple' | 'red' | 'rosyBrown' | 'royalBlue' | 'saddleBrown' | 'salmon' | 'sandyBrown' | 'seaGreen' | 'seaShell' | 'sienna' | 'silver' | 'skyBlue' | 'slateBlue' | 'slateGray' | 'slateGrey' | 'snow' | 'springGreen' | 'steelBlue' | 'tan' | 'teal' | 'thistle' | 'tomato' | 'turquoise' | 'violet' | 'wheat' | 'white' | 'whiteSmoke' | 'yellow' | 'yellowGreen';
|
|
286
|
+
export interface CT_PresetColor {
|
|
287
|
+
val: ST_PresetColorVal;
|
|
288
|
+
}
|
|
289
|
+
export interface CT_Scale2D {
|
|
290
|
+
sx: CT_Ratio;
|
|
291
|
+
sy: CT_Ratio;
|
|
292
|
+
}
|
|
293
|
+
export interface CT_Transform2D {
|
|
294
|
+
off: CT_Point2D;
|
|
295
|
+
ext: CT_PositiveSize2D;
|
|
296
|
+
rot: number;
|
|
297
|
+
flipH: boolean;
|
|
298
|
+
flipV: boolean;
|
|
299
|
+
}
|
|
300
|
+
export interface CT_GroupTransform2D {
|
|
301
|
+
off: CT_Point2D;
|
|
302
|
+
ext: CT_PositiveSize2D;
|
|
303
|
+
chOff: CT_Point2D;
|
|
304
|
+
chExt: CT_PositiveSize2D;
|
|
305
|
+
rot: number;
|
|
306
|
+
flipH: boolean;
|
|
307
|
+
flipV: boolean;
|
|
308
|
+
}
|
|
309
|
+
export interface CT_RelativeRect {
|
|
310
|
+
l: string;
|
|
311
|
+
t: string;
|
|
312
|
+
r: string;
|
|
313
|
+
b: string;
|
|
314
|
+
}
|
|
315
|
+
export type ST_RectAlignment = 'tl' | 't' | 'tr' | 'l' | 'ctr' | 'r' | 'bl' | 'b' | 'br';
|
|
316
|
+
export interface CT_ColorMRU {
|
|
317
|
+
}
|
|
318
|
+
export type ST_BlackWhiteMode = 'clr' | 'auto' | 'gray' | 'ltGray' | 'invGray' | 'grayWhite' | 'blackGray' | 'blackWhite' | 'black' | 'white' | 'hidden';
|
|
319
|
+
export interface CT_EmbeddedWAVAudioFile {
|
|
320
|
+
name: string;
|
|
321
|
+
}
|
|
322
|
+
export interface CT_Hyperlink {
|
|
323
|
+
snd: CT_EmbeddedWAVAudioFile;
|
|
324
|
+
extLst: CT_OfficeArtExtensionList;
|
|
325
|
+
r_id: string;
|
|
326
|
+
invalidUrl: string;
|
|
327
|
+
action: string;
|
|
328
|
+
tgtFrame: string;
|
|
329
|
+
tooltip: string;
|
|
330
|
+
history: boolean;
|
|
331
|
+
highlightClick: boolean;
|
|
332
|
+
endSnd: boolean;
|
|
333
|
+
}
|
|
334
|
+
export type ST_DrawingElementId = number;
|
|
335
|
+
export interface CT_ConnectorLocking {
|
|
336
|
+
extLst: CT_OfficeArtExtensionList;
|
|
337
|
+
}
|
|
338
|
+
export interface CT_ShapeLocking {
|
|
339
|
+
extLst: CT_OfficeArtExtensionList;
|
|
340
|
+
noTextEdit: boolean;
|
|
341
|
+
}
|
|
342
|
+
export interface CT_PictureLocking {
|
|
343
|
+
extLst: CT_OfficeArtExtensionList;
|
|
344
|
+
noCrop: boolean;
|
|
345
|
+
}
|
|
346
|
+
export interface CT_GroupLocking {
|
|
347
|
+
extLst: CT_OfficeArtExtensionList;
|
|
348
|
+
noGrp: boolean;
|
|
349
|
+
noUngrp: boolean;
|
|
350
|
+
noSelect: boolean;
|
|
351
|
+
noRot: boolean;
|
|
352
|
+
noChangeAspect: boolean;
|
|
353
|
+
noMove: boolean;
|
|
354
|
+
noResize: boolean;
|
|
355
|
+
}
|
|
356
|
+
export interface CT_GraphicalObjectFrameLocking {
|
|
357
|
+
extLst: CT_OfficeArtExtensionList;
|
|
358
|
+
noGrp: boolean;
|
|
359
|
+
noDrilldown: boolean;
|
|
360
|
+
noSelect: boolean;
|
|
361
|
+
noChangeAspect: boolean;
|
|
362
|
+
noMove: boolean;
|
|
363
|
+
noResize: boolean;
|
|
364
|
+
}
|
|
365
|
+
export interface CT_ContentPartLocking {
|
|
366
|
+
extLst: CT_OfficeArtExtensionList;
|
|
367
|
+
}
|
|
368
|
+
export interface CT_NonVisualDrawingProps {
|
|
369
|
+
hlinkClick: CT_Hyperlink;
|
|
370
|
+
hlinkHover: CT_Hyperlink;
|
|
371
|
+
extLst: CT_OfficeArtExtensionList;
|
|
372
|
+
id: number;
|
|
373
|
+
name: string;
|
|
374
|
+
descr: string;
|
|
375
|
+
hidden: boolean;
|
|
376
|
+
title: string;
|
|
377
|
+
}
|
|
378
|
+
export interface CT_NonVisualDrawingShapeProps {
|
|
379
|
+
spLocks: CT_ShapeLocking;
|
|
380
|
+
extLst: CT_OfficeArtExtensionList;
|
|
381
|
+
txBox: boolean;
|
|
382
|
+
}
|
|
383
|
+
export interface CT_Connection {
|
|
384
|
+
id: number;
|
|
385
|
+
idx: number;
|
|
386
|
+
}
|
|
387
|
+
export interface CT_NonVisualConnectorProperties {
|
|
388
|
+
cxnSpLocks: CT_ConnectorLocking;
|
|
389
|
+
stCxn: CT_Connection;
|
|
390
|
+
endCxn: CT_Connection;
|
|
391
|
+
extLst: CT_OfficeArtExtensionList;
|
|
392
|
+
}
|
|
393
|
+
export interface CT_NonVisualPictureProperties {
|
|
394
|
+
picLocks: CT_PictureLocking;
|
|
395
|
+
extLst: CT_OfficeArtExtensionList;
|
|
396
|
+
preferRelativeResize: boolean;
|
|
397
|
+
}
|
|
398
|
+
export interface CT_NonVisualGroupDrawingShapeProps {
|
|
399
|
+
grpSpLocks: CT_GroupLocking;
|
|
400
|
+
extLst: CT_OfficeArtExtensionList;
|
|
401
|
+
}
|
|
402
|
+
export interface CT_NonVisualGraphicFrameProperties {
|
|
403
|
+
graphicFrameLocks: CT_GraphicalObjectFrameLocking;
|
|
404
|
+
extLst: CT_OfficeArtExtensionList;
|
|
405
|
+
}
|
|
406
|
+
export interface CT_NonVisualContentPartProperties {
|
|
407
|
+
cpLocks: CT_ContentPartLocking;
|
|
408
|
+
extLst: CT_OfficeArtExtensionList;
|
|
409
|
+
isComment: boolean;
|
|
410
|
+
}
|
|
411
|
+
export interface CT_GraphicalObjectData {
|
|
412
|
+
uri: string;
|
|
413
|
+
}
|
|
414
|
+
export interface CT_GraphicalObject {
|
|
415
|
+
graphicData: CT_GraphicalObjectData[];
|
|
416
|
+
}
|
|
417
|
+
export type ST_ChartBuildStep = 'category' | 'ptInCategory' | 'series' | 'ptInSeries' | 'allPts' | 'gridLegend';
|
|
418
|
+
export type ST_DgmBuildStep = 'sp' | 'bg';
|
|
419
|
+
export interface CT_AnimationDgmElement {
|
|
420
|
+
id: string;
|
|
421
|
+
bldStep: ST_DgmBuildStep;
|
|
422
|
+
}
|
|
423
|
+
export interface CT_AnimationChartElement {
|
|
424
|
+
seriesIdx: number;
|
|
425
|
+
categoryIdx: number;
|
|
426
|
+
bldStep: ST_ChartBuildStep;
|
|
427
|
+
}
|
|
428
|
+
export interface CT_AnimationElementChoice {
|
|
429
|
+
dgm: CT_AnimationDgmElement[];
|
|
430
|
+
chart: CT_AnimationChartElement[];
|
|
431
|
+
}
|
|
432
|
+
export type ST_AnimationBuildType = 'allAtOnce';
|
|
433
|
+
export type ST_AnimationDgmOnlyBuildType = 'one' | 'lvlOne' | 'lvlAtOnce';
|
|
434
|
+
export type ST_AnimationDgmBuildType = ST_AnimationBuildType | ST_AnimationDgmOnlyBuildType;
|
|
435
|
+
export interface CT_AnimationDgmBuildProperties {
|
|
436
|
+
bld: ST_AnimationDgmBuildType;
|
|
437
|
+
rev: boolean;
|
|
438
|
+
}
|
|
439
|
+
export type ST_AnimationChartOnlyBuildType = 'series' | 'category' | 'seriesEl' | 'categoryEl';
|
|
440
|
+
export type ST_AnimationChartBuildType = ST_AnimationBuildType | ST_AnimationChartOnlyBuildType;
|
|
441
|
+
export interface CT_AnimationChartBuildProperties {
|
|
442
|
+
bld: ST_AnimationChartBuildType;
|
|
443
|
+
animBg: boolean;
|
|
444
|
+
}
|
|
445
|
+
export interface CT_AnimationGraphicalObjectBuildProperties {
|
|
446
|
+
bldDgm: CT_AnimationDgmBuildProperties[];
|
|
447
|
+
bldChart: CT_AnimationChartBuildProperties[];
|
|
448
|
+
}
|
|
449
|
+
export interface CT_BackgroundFormatting {
|
|
450
|
+
}
|
|
451
|
+
export interface CT_WholeE2oFormatting {
|
|
452
|
+
ln: CT_LineProperties;
|
|
453
|
+
}
|
|
454
|
+
export interface CT_GvmlUseShapeRectangle {
|
|
455
|
+
}
|
|
456
|
+
export type ST_GeomGuideName = string;
|
|
457
|
+
export type ST_GeomGuideFormula = string;
|
|
458
|
+
export interface CT_GeomGuide {
|
|
459
|
+
name: string;
|
|
460
|
+
fmla: string;
|
|
461
|
+
}
|
|
462
|
+
export interface CT_GeomGuideList {
|
|
463
|
+
gd: CT_GeomGuide[];
|
|
464
|
+
}
|
|
465
|
+
export type ST_TextShapeType = 'textNoShape' | 'textPlain' | 'textStop' | 'textTriangle' | 'textTriangleInverted' | 'textChevron' | 'textChevronInverted' | 'textRingInside' | 'textRingOutside' | 'textArchUp' | 'textArchDown' | 'textCircle' | 'textButton' | 'textArchUpPour' | 'textArchDownPour' | 'textCirclePour' | 'textButtonPour' | 'textCurveUp' | 'textCurveDown' | 'textCanUp' | 'textCanDown' | 'textWave1' | 'textWave2' | 'textDoubleWave1' | 'textWave4' | 'textInflate' | 'textDeflate' | 'textInflateBottom' | 'textDeflateBottom' | 'textInflateTop' | 'textDeflateTop' | 'textDeflateInflate' | 'textDeflateInflateDeflate' | 'textFadeRight' | 'textFadeLeft' | 'textFadeUp' | 'textFadeDown' | 'textSlantUp' | 'textSlantDown' | 'textCascadeUp' | 'textCascadeDown';
|
|
466
|
+
export interface CT_PresetTextShape {
|
|
467
|
+
avLst: CT_GeomGuideList;
|
|
468
|
+
prst: ST_TextShapeType;
|
|
469
|
+
}
|
|
470
|
+
export type ST_TextVertOverflowType = 'overflow' | 'ellipsis' | 'clip';
|
|
471
|
+
export type ST_TextHorzOverflowType = 'overflow' | 'clip';
|
|
472
|
+
export type ST_TextVerticalType = 'horz' | 'vert' | 'vert270' | 'wordArtVert' | 'eaVert' | 'mongolianVert' | 'wordArtVertRtl';
|
|
473
|
+
export type ST_TextWrappingType = 'none' | 'square';
|
|
474
|
+
export type ST_TextColumnCount = number;
|
|
475
|
+
export type ST_TextAnchoringType = 't' | 'ctr' | 'b' | 'just' | 'dist';
|
|
476
|
+
export interface CT_TextBodyProperties {
|
|
477
|
+
prstTxWarp: CT_PresetTextShape;
|
|
478
|
+
scene3d: CT_Scene3D;
|
|
479
|
+
extLst: CT_OfficeArtExtensionList;
|
|
480
|
+
rot: number;
|
|
481
|
+
spcFirstLastPara: boolean;
|
|
482
|
+
vertOverflow: ST_TextVertOverflowType;
|
|
483
|
+
horzOverflow: ST_TextHorzOverflowType;
|
|
484
|
+
vert: ST_TextVerticalType;
|
|
485
|
+
wrap: ST_TextWrappingType;
|
|
486
|
+
lIns: ST_Coordinate32;
|
|
487
|
+
tIns: ST_Coordinate32;
|
|
488
|
+
rIns: ST_Coordinate32;
|
|
489
|
+
bIns: ST_Coordinate32;
|
|
490
|
+
numCol: number;
|
|
491
|
+
spcCol: number;
|
|
492
|
+
rtlCol: boolean;
|
|
493
|
+
fromWordArt: boolean;
|
|
494
|
+
anchor: ST_TextAnchoringType;
|
|
495
|
+
anchorCtr: boolean;
|
|
496
|
+
forceAA: boolean;
|
|
497
|
+
upright: boolean;
|
|
498
|
+
compatLnSpc: boolean;
|
|
499
|
+
}
|
|
500
|
+
export type ST_TextSpacingPercentOrPercentString = string;
|
|
501
|
+
export interface CT_TextSpacingPercent {
|
|
502
|
+
val: string;
|
|
503
|
+
}
|
|
504
|
+
export type ST_TextSpacingPoint = number;
|
|
505
|
+
export interface CT_TextSpacingPoint {
|
|
506
|
+
val: number;
|
|
507
|
+
}
|
|
508
|
+
export interface CT_TextSpacing {
|
|
509
|
+
spcPct: CT_TextSpacingPercent[];
|
|
510
|
+
spcPts: CT_TextSpacingPoint[];
|
|
511
|
+
}
|
|
512
|
+
export type ST_TextTabAlignType = 'l' | 'ctr' | 'r' | 'dec';
|
|
513
|
+
export interface CT_TextTabStop {
|
|
514
|
+
pos: ST_Coordinate32;
|
|
515
|
+
algn: ST_TextTabAlignType;
|
|
516
|
+
}
|
|
517
|
+
export interface CT_TextTabStopList {
|
|
518
|
+
tab: CT_TextTabStop[];
|
|
519
|
+
}
|
|
520
|
+
export interface CT_Boolean {
|
|
521
|
+
val: ST_OnOff;
|
|
522
|
+
}
|
|
523
|
+
export type ST_TextFontSize = number;
|
|
524
|
+
export type ST_TextUnderlineType = 'none' | 'words' | 'sng' | 'dbl' | 'heavy' | 'dotted' | 'dottedHeavy' | 'dash' | 'dashHeavy' | 'dashLong' | 'dashLongHeavy' | 'dotDash' | 'dotDashHeavy' | 'dotDotDash' | 'dotDotDashHeavy' | 'wavy' | 'wavyHeavy' | 'wavyDbl';
|
|
525
|
+
export type ST_TextStrikeType = 'noStrike' | 'sngStrike' | 'dblStrike';
|
|
526
|
+
export type ST_TextNonNegativePoint = number;
|
|
527
|
+
export type ST_TextCapsType = 'none' | 'small' | 'all';
|
|
528
|
+
export type ST_TextPoint = ST_TextPointUnqualified | ST_UniversalMeasure;
|
|
529
|
+
export interface CT_TextCharacterProperties {
|
|
530
|
+
ln: CT_LineProperties;
|
|
531
|
+
highlight: CT_Color;
|
|
532
|
+
latin: CT_TextFont;
|
|
533
|
+
ea: CT_TextFont;
|
|
534
|
+
cs: CT_TextFont;
|
|
535
|
+
sym: CT_TextFont;
|
|
536
|
+
hlinkClick: CT_Hyperlink;
|
|
537
|
+
hlinkMouseOver: CT_Hyperlink;
|
|
538
|
+
rtl: CT_Boolean[];
|
|
539
|
+
extLst: CT_OfficeArtExtensionList;
|
|
540
|
+
kumimoji: boolean;
|
|
541
|
+
lang: string;
|
|
542
|
+
altLang: string;
|
|
543
|
+
sz: number;
|
|
544
|
+
b: boolean;
|
|
545
|
+
i: boolean;
|
|
546
|
+
u: ST_TextUnderlineType;
|
|
547
|
+
strike: ST_TextStrikeType;
|
|
548
|
+
kern: number;
|
|
549
|
+
cap: ST_TextCapsType;
|
|
550
|
+
spc: ST_TextPoint;
|
|
551
|
+
normalizeH: boolean;
|
|
552
|
+
baseline: string;
|
|
553
|
+
noProof: boolean;
|
|
554
|
+
dirty: boolean;
|
|
555
|
+
err: boolean;
|
|
556
|
+
smtClean: boolean;
|
|
557
|
+
smtId: number;
|
|
558
|
+
bmk: string;
|
|
559
|
+
}
|
|
560
|
+
export type ST_TextMargin = ST_Coordinate32Unqualified;
|
|
561
|
+
export type ST_TextIndentLevelType = number;
|
|
562
|
+
export type ST_TextIndent = ST_Coordinate32Unqualified;
|
|
563
|
+
export type ST_TextAlignType = 'l' | 'ctr' | 'r' | 'just' | 'justLow' | 'dist' | 'thaiDist';
|
|
564
|
+
export type ST_TextFontAlignType = 'auto' | 't' | 'ctr' | 'base' | 'b';
|
|
565
|
+
export interface CT_TextParagraphProperties {
|
|
566
|
+
lnSpc: CT_TextSpacing;
|
|
567
|
+
spcBef: CT_TextSpacing;
|
|
568
|
+
spcAft: CT_TextSpacing;
|
|
569
|
+
tabLst: CT_TextTabStopList;
|
|
570
|
+
defRPr: CT_TextCharacterProperties;
|
|
571
|
+
extLst: CT_OfficeArtExtensionList;
|
|
572
|
+
marL: number;
|
|
573
|
+
marR: number;
|
|
574
|
+
lvl: number;
|
|
575
|
+
indent: number;
|
|
576
|
+
algn: ST_TextAlignType;
|
|
577
|
+
defTabSz: ST_Coordinate32;
|
|
578
|
+
rtl: boolean;
|
|
579
|
+
eaLnBrk: boolean;
|
|
580
|
+
fontAlgn: ST_TextFontAlignType;
|
|
581
|
+
latinLnBrk: boolean;
|
|
582
|
+
hangingPunct: boolean;
|
|
583
|
+
}
|
|
584
|
+
export interface CT_TextListStyle {
|
|
585
|
+
defPPr: CT_TextParagraphProperties;
|
|
586
|
+
lvl1pPr: CT_TextParagraphProperties;
|
|
587
|
+
lvl2pPr: CT_TextParagraphProperties;
|
|
588
|
+
lvl3pPr: CT_TextParagraphProperties;
|
|
589
|
+
lvl4pPr: CT_TextParagraphProperties;
|
|
590
|
+
lvl5pPr: CT_TextParagraphProperties;
|
|
591
|
+
lvl6pPr: CT_TextParagraphProperties;
|
|
592
|
+
lvl7pPr: CT_TextParagraphProperties;
|
|
593
|
+
lvl8pPr: CT_TextParagraphProperties;
|
|
594
|
+
lvl9pPr: CT_TextParagraphProperties;
|
|
595
|
+
extLst: CT_OfficeArtExtensionList;
|
|
596
|
+
}
|
|
597
|
+
export interface CT_TextParagraph {
|
|
598
|
+
pPr: CT_TextParagraphProperties;
|
|
599
|
+
endParaRPr: CT_TextCharacterProperties;
|
|
600
|
+
}
|
|
601
|
+
export interface CT_TextBody {
|
|
602
|
+
bodyPr: CT_TextBodyProperties;
|
|
603
|
+
lstStyle: CT_TextListStyle;
|
|
604
|
+
p: CT_TextParagraph[];
|
|
605
|
+
}
|
|
606
|
+
export interface CT_GvmlTextShape {
|
|
607
|
+
txBody: CT_TextBody;
|
|
608
|
+
extLst: CT_OfficeArtExtensionList;
|
|
609
|
+
}
|
|
610
|
+
export interface CT_GvmlShapeNonVisual {
|
|
611
|
+
cNvPr: CT_NonVisualDrawingProps;
|
|
612
|
+
cNvSpPr: CT_NonVisualDrawingShapeProps;
|
|
613
|
+
}
|
|
614
|
+
export interface CT_ShapeProperties {
|
|
615
|
+
xfrm: CT_Transform2D;
|
|
616
|
+
ln: CT_LineProperties;
|
|
617
|
+
scene3d: CT_Scene3D;
|
|
618
|
+
sp3d: CT_Shape3D;
|
|
619
|
+
extLst: CT_OfficeArtExtensionList;
|
|
620
|
+
bwMode: ST_BlackWhiteMode;
|
|
621
|
+
}
|
|
622
|
+
export interface CT_StyleMatrixReference {
|
|
623
|
+
idx: number;
|
|
624
|
+
}
|
|
625
|
+
export interface CT_FontReference {
|
|
626
|
+
idx: ST_FontCollectionIndex;
|
|
627
|
+
}
|
|
628
|
+
export interface CT_ShapeStyle {
|
|
629
|
+
lnRef: CT_StyleMatrixReference;
|
|
630
|
+
fillRef: CT_StyleMatrixReference;
|
|
631
|
+
effectRef: CT_StyleMatrixReference;
|
|
632
|
+
fontRef: CT_FontReference;
|
|
633
|
+
}
|
|
634
|
+
export interface CT_GvmlShape {
|
|
635
|
+
nvSpPr: CT_GvmlShapeNonVisual;
|
|
636
|
+
spPr: CT_ShapeProperties;
|
|
637
|
+
txSp: CT_GvmlTextShape;
|
|
638
|
+
style: CT_ShapeStyle;
|
|
639
|
+
extLst: CT_OfficeArtExtensionList;
|
|
640
|
+
}
|
|
641
|
+
export interface CT_GvmlConnectorNonVisual {
|
|
642
|
+
cNvPr: CT_NonVisualDrawingProps;
|
|
643
|
+
cNvCxnSpPr: CT_NonVisualConnectorProperties;
|
|
644
|
+
}
|
|
645
|
+
export interface CT_GvmlConnector {
|
|
646
|
+
nvCxnSpPr: CT_GvmlConnectorNonVisual;
|
|
647
|
+
spPr: CT_ShapeProperties;
|
|
648
|
+
style: CT_ShapeStyle;
|
|
649
|
+
extLst: CT_OfficeArtExtensionList;
|
|
650
|
+
}
|
|
651
|
+
export interface CT_GvmlPictureNonVisual {
|
|
652
|
+
cNvPr: CT_NonVisualDrawingProps;
|
|
653
|
+
cNvPicPr: CT_NonVisualPictureProperties;
|
|
654
|
+
}
|
|
655
|
+
export type ST_BlipCompression = 'email' | 'screen' | 'print' | 'hqprint' | 'none';
|
|
656
|
+
export interface CT_Blip {
|
|
657
|
+
extLst: CT_OfficeArtExtensionList;
|
|
658
|
+
cstate: ST_BlipCompression;
|
|
659
|
+
}
|
|
660
|
+
export interface CT_BlipFillProperties {
|
|
661
|
+
blip: CT_Blip;
|
|
662
|
+
srcRect: CT_RelativeRect;
|
|
663
|
+
dpi: number;
|
|
664
|
+
rotWithShape: boolean;
|
|
665
|
+
}
|
|
666
|
+
export interface CT_GvmlPicture {
|
|
667
|
+
nvPicPr: CT_GvmlPictureNonVisual;
|
|
668
|
+
blipFill: CT_BlipFillProperties;
|
|
669
|
+
spPr: CT_ShapeProperties;
|
|
670
|
+
style: CT_ShapeStyle;
|
|
671
|
+
extLst: CT_OfficeArtExtensionList;
|
|
672
|
+
}
|
|
673
|
+
export interface CT_GvmlGraphicFrameNonVisual {
|
|
674
|
+
cNvPr: CT_NonVisualDrawingProps;
|
|
675
|
+
cNvGraphicFramePr: CT_NonVisualGraphicFrameProperties;
|
|
676
|
+
}
|
|
677
|
+
export interface CT_GvmlGraphicalObjectFrame {
|
|
678
|
+
nvGraphicFramePr: CT_GvmlGraphicFrameNonVisual;
|
|
679
|
+
xfrm: CT_Transform2D;
|
|
680
|
+
extLst: CT_OfficeArtExtensionList;
|
|
681
|
+
}
|
|
682
|
+
export interface CT_GvmlGroupShapeNonVisual {
|
|
683
|
+
cNvPr: CT_NonVisualDrawingProps;
|
|
684
|
+
cNvGrpSpPr: CT_NonVisualGroupDrawingShapeProps;
|
|
685
|
+
}
|
|
686
|
+
export interface CT_GroupShapeProperties {
|
|
687
|
+
xfrm: CT_GroupTransform2D;
|
|
688
|
+
scene3d: CT_Scene3D;
|
|
689
|
+
extLst: CT_OfficeArtExtensionList;
|
|
690
|
+
bwMode: ST_BlackWhiteMode;
|
|
691
|
+
}
|
|
692
|
+
export interface CT_GvmlGroupShape {
|
|
693
|
+
nvGrpSpPr: CT_GvmlGroupShapeNonVisual;
|
|
694
|
+
grpSpPr: CT_GroupShapeProperties;
|
|
695
|
+
extLst: CT_OfficeArtExtensionList;
|
|
696
|
+
}
|
|
697
|
+
export interface CT_FlatText {
|
|
698
|
+
z: ST_Coordinate;
|
|
699
|
+
}
|
|
700
|
+
export interface CT_AlphaBiLevelEffect {
|
|
701
|
+
thresh: ST_PositiveFixedPercentage;
|
|
702
|
+
}
|
|
703
|
+
export interface CT_AlphaCeilingEffect {
|
|
704
|
+
}
|
|
705
|
+
export interface CT_AlphaFloorEffect {
|
|
706
|
+
}
|
|
707
|
+
export interface CT_AlphaInverseEffect {
|
|
708
|
+
}
|
|
709
|
+
export interface CT_AlphaModulateFixedEffect {
|
|
710
|
+
amt: ST_PositivePercentage;
|
|
711
|
+
}
|
|
712
|
+
export interface CT_AlphaOutsetEffect {
|
|
713
|
+
rad: ST_Coordinate;
|
|
714
|
+
}
|
|
715
|
+
export interface CT_AlphaReplaceEffect {
|
|
716
|
+
a: ST_PositiveFixedPercentage;
|
|
717
|
+
}
|
|
718
|
+
export interface CT_BiLevelEffect {
|
|
719
|
+
thresh: ST_PositiveFixedPercentage;
|
|
720
|
+
}
|
|
721
|
+
export interface CT_BlurEffect {
|
|
722
|
+
rad: number;
|
|
723
|
+
grow: boolean;
|
|
724
|
+
}
|
|
725
|
+
export interface CT_ColorChangeEffect {
|
|
726
|
+
clrFrom: CT_Color;
|
|
727
|
+
clrTo: CT_Color;
|
|
728
|
+
useA: boolean;
|
|
729
|
+
}
|
|
730
|
+
export interface CT_ColorReplaceEffect {
|
|
731
|
+
}
|
|
732
|
+
export interface CT_DuotoneEffect {
|
|
733
|
+
}
|
|
734
|
+
export interface CT_GlowEffect {
|
|
735
|
+
rad: number;
|
|
736
|
+
}
|
|
737
|
+
export interface CT_GrayscaleEffect {
|
|
738
|
+
}
|
|
739
|
+
export interface CT_HSLEffect {
|
|
740
|
+
hue: number;
|
|
741
|
+
sat: ST_FixedPercentage;
|
|
742
|
+
lum: ST_FixedPercentage;
|
|
743
|
+
}
|
|
744
|
+
export interface CT_InnerShadowEffect {
|
|
745
|
+
blurRad: number;
|
|
746
|
+
dist: number;
|
|
747
|
+
dir: number;
|
|
748
|
+
}
|
|
749
|
+
export interface CT_LuminanceEffect {
|
|
750
|
+
bright: ST_FixedPercentage;
|
|
751
|
+
contrast: ST_FixedPercentage;
|
|
752
|
+
}
|
|
753
|
+
export interface CT_OuterShadowEffect {
|
|
754
|
+
blurRad: number;
|
|
755
|
+
dist: number;
|
|
756
|
+
dir: number;
|
|
757
|
+
sx: string;
|
|
758
|
+
sy: string;
|
|
759
|
+
kx: number;
|
|
760
|
+
ky: number;
|
|
761
|
+
algn: ST_RectAlignment;
|
|
762
|
+
rotWithShape: boolean;
|
|
763
|
+
}
|
|
764
|
+
export type ST_PresetShadowVal = 'shdw1' | 'shdw2' | 'shdw3' | 'shdw4' | 'shdw5' | 'shdw6' | 'shdw7' | 'shdw8' | 'shdw9' | 'shdw10' | 'shdw11' | 'shdw12' | 'shdw13' | 'shdw14' | 'shdw15' | 'shdw16' | 'shdw17' | 'shdw18' | 'shdw19' | 'shdw20';
|
|
765
|
+
export interface CT_PresetShadowEffect {
|
|
766
|
+
prst: ST_PresetShadowVal;
|
|
767
|
+
dist: number;
|
|
768
|
+
dir: number;
|
|
769
|
+
}
|
|
770
|
+
export interface CT_ReflectionEffect {
|
|
771
|
+
blurRad: number;
|
|
772
|
+
stA: ST_PositiveFixedPercentage;
|
|
773
|
+
stPos: ST_PositiveFixedPercentage;
|
|
774
|
+
endA: ST_PositiveFixedPercentage;
|
|
775
|
+
endPos: ST_PositiveFixedPercentage;
|
|
776
|
+
dist: number;
|
|
777
|
+
dir: number;
|
|
778
|
+
fadeDir: number;
|
|
779
|
+
sx: string;
|
|
780
|
+
sy: string;
|
|
781
|
+
kx: number;
|
|
782
|
+
ky: number;
|
|
783
|
+
algn: ST_RectAlignment;
|
|
784
|
+
rotWithShape: boolean;
|
|
785
|
+
}
|
|
786
|
+
export interface CT_RelativeOffsetEffect {
|
|
787
|
+
tx: string;
|
|
788
|
+
ty: string;
|
|
789
|
+
}
|
|
790
|
+
export interface CT_SoftEdgesEffect {
|
|
791
|
+
rad: number;
|
|
792
|
+
}
|
|
793
|
+
export interface CT_TintEffect {
|
|
794
|
+
hue: number;
|
|
795
|
+
amt: ST_FixedPercentage;
|
|
796
|
+
}
|
|
797
|
+
export interface CT_TransformEffect {
|
|
798
|
+
sx: string;
|
|
799
|
+
sy: string;
|
|
800
|
+
kx: number;
|
|
801
|
+
ky: number;
|
|
802
|
+
tx: ST_Coordinate;
|
|
803
|
+
ty: ST_Coordinate;
|
|
804
|
+
}
|
|
805
|
+
export interface CT_NoFillProperties {
|
|
806
|
+
}
|
|
807
|
+
export interface CT_SolidColorFillProperties {
|
|
808
|
+
}
|
|
809
|
+
export interface CT_LinearShadeProperties {
|
|
810
|
+
ang: number;
|
|
811
|
+
scaled: boolean;
|
|
812
|
+
}
|
|
813
|
+
export type ST_PathShadeType = 'shape' | 'circle' | 'rect';
|
|
814
|
+
export interface CT_PathShadeProperties {
|
|
815
|
+
fillToRect: CT_RelativeRect;
|
|
816
|
+
path: ST_PathShadeType;
|
|
817
|
+
}
|
|
818
|
+
export type ST_TileFlipMode = 'none' | 'x' | 'y' | 'xy';
|
|
819
|
+
export interface CT_GradientStop {
|
|
820
|
+
pos: ST_PositiveFixedPercentage;
|
|
821
|
+
}
|
|
822
|
+
export interface CT_GradientStopList {
|
|
823
|
+
gs: CT_GradientStop[];
|
|
824
|
+
}
|
|
825
|
+
export interface CT_GradientFillProperties {
|
|
826
|
+
gsLst: CT_GradientStopList;
|
|
827
|
+
tileRect: CT_RelativeRect;
|
|
828
|
+
flip: ST_TileFlipMode;
|
|
829
|
+
rotWithShape: boolean;
|
|
830
|
+
}
|
|
831
|
+
export interface CT_TileInfoProperties {
|
|
832
|
+
tx: ST_Coordinate;
|
|
833
|
+
ty: ST_Coordinate;
|
|
834
|
+
sx: string;
|
|
835
|
+
sy: string;
|
|
836
|
+
flip: ST_TileFlipMode;
|
|
837
|
+
algn: ST_RectAlignment;
|
|
838
|
+
}
|
|
839
|
+
export interface CT_StretchInfoProperties {
|
|
840
|
+
fillRect: CT_RelativeRect;
|
|
841
|
+
}
|
|
842
|
+
export type ST_PresetPatternVal = 'pct5' | 'pct10' | 'pct20' | 'pct25' | 'pct30' | 'pct40' | 'pct50' | 'pct60' | 'pct70' | 'pct75' | 'pct80' | 'pct90' | 'horz' | 'vert' | 'ltHorz' | 'ltVert' | 'dkHorz' | 'dkVert' | 'narHorz' | 'narVert' | 'dashHorz' | 'dashVert' | 'cross' | 'dnDiag' | 'upDiag' | 'ltDnDiag' | 'ltUpDiag' | 'dkDnDiag' | 'dkUpDiag' | 'wdDnDiag' | 'wdUpDiag' | 'dashDnDiag' | 'dashUpDiag' | 'diagCross' | 'smCheck' | 'lgCheck' | 'smGrid' | 'lgGrid' | 'dotGrid' | 'smConfetti' | 'lgConfetti' | 'horzBrick' | 'diagBrick' | 'solidDmnd' | 'openDmnd' | 'dotDmnd' | 'plaid' | 'sphere' | 'weave' | 'divot' | 'shingle' | 'wave' | 'trellis' | 'zigZag';
|
|
843
|
+
export interface CT_PatternFillProperties {
|
|
844
|
+
fgClr: CT_Color;
|
|
845
|
+
bgClr: CT_Color;
|
|
846
|
+
prst: ST_PresetPatternVal;
|
|
847
|
+
}
|
|
848
|
+
export interface CT_GroupFillProperties {
|
|
849
|
+
}
|
|
850
|
+
export interface CT_FillProperties {
|
|
851
|
+
}
|
|
852
|
+
export interface CT_FillEffect {
|
|
853
|
+
}
|
|
854
|
+
export type ST_BlendMode = 'over' | 'mult' | 'screen' | 'darken' | 'lighten';
|
|
855
|
+
export interface CT_FillOverlayEffect {
|
|
856
|
+
blend: ST_BlendMode;
|
|
857
|
+
}
|
|
858
|
+
export interface CT_EffectReference {
|
|
859
|
+
ref: string;
|
|
860
|
+
}
|
|
861
|
+
export type ST_EffectContainerType = 'sib' | 'tree';
|
|
862
|
+
export interface CT_EffectContainer {
|
|
863
|
+
type: ST_EffectContainerType;
|
|
864
|
+
name: string;
|
|
865
|
+
}
|
|
866
|
+
export interface CT_AlphaModulateEffect {
|
|
867
|
+
cont: CT_EffectContainer;
|
|
868
|
+
}
|
|
869
|
+
export interface CT_BlendEffect {
|
|
870
|
+
cont: CT_EffectContainer;
|
|
871
|
+
blend: ST_BlendMode;
|
|
872
|
+
}
|
|
873
|
+
export interface CT_EffectList {
|
|
874
|
+
blur: CT_BlurEffect;
|
|
875
|
+
fillOverlay: CT_FillOverlayEffect;
|
|
876
|
+
glow: CT_GlowEffect;
|
|
877
|
+
innerShdw: CT_InnerShadowEffect;
|
|
878
|
+
outerShdw: CT_OuterShadowEffect;
|
|
879
|
+
prstShdw: CT_PresetShadowEffect;
|
|
880
|
+
reflection: CT_ReflectionEffect;
|
|
881
|
+
softEdge: CT_SoftEdgesEffect;
|
|
882
|
+
}
|
|
883
|
+
export interface CT_EffectProperties {
|
|
884
|
+
}
|
|
885
|
+
export type ST_ShapeType = 'line' | 'lineInv' | 'triangle' | 'rtTriangle' | 'rect' | 'diamond' | 'parallelogram' | 'trapezoid' | 'nonIsoscelesTrapezoid' | 'pentagon' | 'hexagon' | 'heptagon' | 'octagon' | 'decagon' | 'dodecagon' | 'star4' | 'star5' | 'star6' | 'star7' | 'star8' | 'star10' | 'star12' | 'star16' | 'star24' | 'star32' | 'roundRect' | 'round1Rect' | 'round2SameRect' | 'round2DiagRect' | 'snipRoundRect' | 'snip1Rect' | 'snip2SameRect' | 'snip2DiagRect' | 'plaque' | 'ellipse' | 'teardrop' | 'homePlate' | 'chevron' | 'pieWedge' | 'pie' | 'blockArc' | 'donut' | 'noSmoking' | 'rightArrow' | 'leftArrow' | 'upArrow' | 'downArrow' | 'stripedRightArrow' | 'notchedRightArrow' | 'bentUpArrow' | 'leftRightArrow' | 'upDownArrow' | 'leftUpArrow' | 'leftRightUpArrow' | 'quadArrow' | 'leftArrowCallout' | 'rightArrowCallout' | 'upArrowCallout' | 'downArrowCallout' | 'leftRightArrowCallout' | 'upDownArrowCallout' | 'quadArrowCallout' | 'bentArrow' | 'uturnArrow' | 'circularArrow' | 'leftCircularArrow' | 'leftRightCircularArrow' | 'curvedRightArrow' | 'curvedLeftArrow' | 'curvedUpArrow' | 'curvedDownArrow' | 'swooshArrow' | 'cube' | 'can' | 'lightningBolt' | 'heart' | 'sun' | 'moon' | 'smileyFace' | 'irregularSeal1' | 'irregularSeal2' | 'foldedCorner' | 'bevel' | 'frame' | 'halfFrame' | 'corner' | 'diagStripe' | 'chord' | 'arc' | 'leftBracket' | 'rightBracket' | 'leftBrace' | 'rightBrace' | 'bracketPair' | 'bracePair' | 'straightConnector1' | 'bentConnector2' | 'bentConnector3' | 'bentConnector4' | 'bentConnector5' | 'curvedConnector2' | 'curvedConnector3' | 'curvedConnector4' | 'curvedConnector5' | 'callout1' | 'callout2' | 'callout3' | 'accentCallout1' | 'accentCallout2' | 'accentCallout3' | 'borderCallout1' | 'borderCallout2' | 'borderCallout3' | 'accentBorderCallout1' | 'accentBorderCallout2' | 'accentBorderCallout3' | 'wedgeRectCallout' | 'wedgeRoundRectCallout' | 'wedgeEllipseCallout' | 'cloudCallout' | 'cloud' | 'ribbon' | 'ribbon2' | 'ellipseRibbon' | 'ellipseRibbon2' | 'leftRightRibbon' | 'verticalScroll' | 'horizontalScroll' | 'wave' | 'doubleWave' | 'plus' | 'flowChartProcess' | 'flowChartDecision' | 'flowChartInputOutput' | 'flowChartPredefinedProcess' | 'flowChartInternalStorage' | 'flowChartDocument' | 'flowChartMultidocument' | 'flowChartTerminator' | 'flowChartPreparation' | 'flowChartManualInput' | 'flowChartManualOperation' | 'flowChartConnector' | 'flowChartPunchedCard' | 'flowChartPunchedTape' | 'flowChartSummingJunction' | 'flowChartOr' | 'flowChartCollate' | 'flowChartSort' | 'flowChartExtract' | 'flowChartMerge' | 'flowChartOfflineStorage' | 'flowChartOnlineStorage' | 'flowChartMagneticTape' | 'flowChartMagneticDisk' | 'flowChartMagneticDrum' | 'flowChartDisplay' | 'flowChartDelay' | 'flowChartAlternateProcess' | 'flowChartOffpageConnector' | 'actionButtonBlank' | 'actionButtonHome' | 'actionButtonHelp' | 'actionButtonInformation' | 'actionButtonForwardNext' | 'actionButtonBackPrevious' | 'actionButtonEnd' | 'actionButtonBeginning' | 'actionButtonReturn' | 'actionButtonDocument' | 'actionButtonSound' | 'actionButtonMovie' | 'gear6' | 'gear9' | 'funnel' | 'mathPlus' | 'mathMinus' | 'mathMultiply' | 'mathDivide' | 'mathEqual' | 'mathNotEqual' | 'cornerTabs' | 'squareTabs' | 'plaqueTabs' | 'chartX' | 'chartStar' | 'chartPlus';
|
|
886
|
+
export type ST_AdjCoordinate = ST_Coordinate | ST_GeomGuideName;
|
|
887
|
+
export type ST_AdjAngle = ST_Angle | ST_GeomGuideName;
|
|
888
|
+
export interface CT_AdjPoint2D {
|
|
889
|
+
x: ST_AdjCoordinate;
|
|
890
|
+
y: ST_AdjCoordinate;
|
|
891
|
+
}
|
|
892
|
+
export interface CT_GeomRect {
|
|
893
|
+
l: ST_AdjCoordinate;
|
|
894
|
+
t: ST_AdjCoordinate;
|
|
895
|
+
r: ST_AdjCoordinate;
|
|
896
|
+
b: ST_AdjCoordinate;
|
|
897
|
+
}
|
|
898
|
+
export interface CT_XYAdjustHandle {
|
|
899
|
+
pos: CT_AdjPoint2D;
|
|
900
|
+
gdRefX: string;
|
|
901
|
+
minX: ST_AdjCoordinate;
|
|
902
|
+
maxX: ST_AdjCoordinate;
|
|
903
|
+
gdRefY: string;
|
|
904
|
+
minY: ST_AdjCoordinate;
|
|
905
|
+
maxY: ST_AdjCoordinate;
|
|
906
|
+
}
|
|
907
|
+
export interface CT_PolarAdjustHandle {
|
|
908
|
+
pos: CT_AdjPoint2D;
|
|
909
|
+
gdRefR: string;
|
|
910
|
+
minR: ST_AdjCoordinate;
|
|
911
|
+
maxR: ST_AdjCoordinate;
|
|
912
|
+
gdRefAng: string;
|
|
913
|
+
minAng: ST_AdjAngle;
|
|
914
|
+
maxAng: ST_AdjAngle;
|
|
915
|
+
}
|
|
916
|
+
export interface CT_ConnectionSite {
|
|
917
|
+
pos: CT_AdjPoint2D;
|
|
918
|
+
ang: ST_AdjAngle;
|
|
919
|
+
}
|
|
920
|
+
export interface CT_AdjustHandleList {
|
|
921
|
+
ahXY: CT_XYAdjustHandle;
|
|
922
|
+
ahPolar: CT_PolarAdjustHandle;
|
|
923
|
+
}
|
|
924
|
+
export interface CT_ConnectionSiteList {
|
|
925
|
+
cxn: CT_ConnectionSite[];
|
|
926
|
+
}
|
|
927
|
+
export interface CT_Path2DMoveTo {
|
|
928
|
+
pt: CT_AdjPoint2D;
|
|
929
|
+
}
|
|
930
|
+
export interface CT_Path2DLineTo {
|
|
931
|
+
pt: CT_AdjPoint2D;
|
|
932
|
+
}
|
|
933
|
+
export interface CT_Path2DArcTo {
|
|
934
|
+
wR: ST_AdjCoordinate;
|
|
935
|
+
hR: ST_AdjCoordinate;
|
|
936
|
+
stAng: ST_AdjAngle;
|
|
937
|
+
swAng: ST_AdjAngle;
|
|
938
|
+
}
|
|
939
|
+
export interface CT_Path2DQuadBezierTo {
|
|
940
|
+
pt: CT_AdjPoint2D[];
|
|
941
|
+
}
|
|
942
|
+
export interface CT_Path2DCubicBezierTo {
|
|
943
|
+
pt: CT_AdjPoint2D[];
|
|
944
|
+
}
|
|
945
|
+
export interface CT_Path2DClose {
|
|
946
|
+
}
|
|
947
|
+
export type ST_PathFillMode = 'none' | 'norm' | 'lighten' | 'lightenLess' | 'darken' | 'darkenLess';
|
|
948
|
+
export interface CT_Path2D {
|
|
949
|
+
close: CT_Path2DClose;
|
|
950
|
+
moveTo: CT_Path2DMoveTo;
|
|
951
|
+
lnTo: CT_Path2DLineTo;
|
|
952
|
+
arcTo: CT_Path2DArcTo;
|
|
953
|
+
quadBezTo: CT_Path2DQuadBezierTo;
|
|
954
|
+
cubicBezTo: CT_Path2DCubicBezierTo;
|
|
955
|
+
w: number;
|
|
956
|
+
h: number;
|
|
957
|
+
fill: ST_PathFillMode;
|
|
958
|
+
stroke: boolean;
|
|
959
|
+
extrusionOk: boolean;
|
|
960
|
+
}
|
|
961
|
+
export interface CT_Path2DList {
|
|
962
|
+
path: CT_Path2D[];
|
|
963
|
+
}
|
|
964
|
+
export interface CT_PresetGeometry2D {
|
|
965
|
+
avLst: CT_GeomGuideList;
|
|
966
|
+
prst: ST_ShapeType;
|
|
967
|
+
}
|
|
968
|
+
export interface CT_CustomGeometry2D {
|
|
969
|
+
avLst: CT_GeomGuideList;
|
|
970
|
+
gdLst: CT_GeomGuideList;
|
|
971
|
+
ahLst: CT_AdjustHandleList;
|
|
972
|
+
cxnLst: CT_ConnectionSiteList;
|
|
973
|
+
rect: CT_GeomRect;
|
|
974
|
+
pathLst: CT_Path2DList;
|
|
975
|
+
}
|
|
976
|
+
export interface CT_LineJoinBevel {
|
|
977
|
+
}
|
|
978
|
+
export interface CT_LineJoinRound {
|
|
979
|
+
}
|
|
980
|
+
export interface CT_LineJoinMiterProperties {
|
|
981
|
+
lim: ST_PositivePercentage;
|
|
982
|
+
}
|
|
983
|
+
export type ST_PresetLineDashVal = 'solid' | 'dot' | 'dash' | 'lgDash' | 'dashDot' | 'lgDashDot' | 'lgDashDotDot' | 'sysDash' | 'sysDot' | 'sysDashDot' | 'sysDashDotDot';
|
|
984
|
+
export interface CT_PresetLineDashProperties {
|
|
985
|
+
val: ST_PresetLineDashVal;
|
|
986
|
+
}
|
|
987
|
+
export interface CT_DashStop {
|
|
988
|
+
d: ST_PositivePercentage;
|
|
989
|
+
sp: ST_PositivePercentage;
|
|
990
|
+
}
|
|
991
|
+
export interface CT_DashStopList {
|
|
992
|
+
ds: CT_DashStop[];
|
|
993
|
+
}
|
|
994
|
+
export type ST_ShapeID = string;
|
|
995
|
+
export interface CT_DefaultShapeDefinition {
|
|
996
|
+
spPr: CT_ShapeProperties;
|
|
997
|
+
bodyPr: CT_TextBodyProperties;
|
|
998
|
+
lstStyle: CT_TextListStyle;
|
|
999
|
+
style: CT_ShapeStyle;
|
|
1000
|
+
extLst: CT_OfficeArtExtensionList;
|
|
1001
|
+
}
|
|
1002
|
+
export interface CT_ObjectStyleDefaults {
|
|
1003
|
+
spDef: CT_DefaultShapeDefinition;
|
|
1004
|
+
lnDef: CT_DefaultShapeDefinition;
|
|
1005
|
+
txDef: CT_DefaultShapeDefinition;
|
|
1006
|
+
extLst: CT_OfficeArtExtensionList;
|
|
1007
|
+
}
|
|
1008
|
+
export interface CT_EmptyElement {
|
|
1009
|
+
}
|
|
1010
|
+
export interface CT_ColorMapping {
|
|
1011
|
+
extLst: CT_OfficeArtExtensionList;
|
|
1012
|
+
bg1: ST_ColorSchemeIndex;
|
|
1013
|
+
tx1: ST_ColorSchemeIndex;
|
|
1014
|
+
bg2: ST_ColorSchemeIndex;
|
|
1015
|
+
tx2: ST_ColorSchemeIndex;
|
|
1016
|
+
accent1: ST_ColorSchemeIndex;
|
|
1017
|
+
accent2: ST_ColorSchemeIndex;
|
|
1018
|
+
accent3: ST_ColorSchemeIndex;
|
|
1019
|
+
accent4: ST_ColorSchemeIndex;
|
|
1020
|
+
accent5: ST_ColorSchemeIndex;
|
|
1021
|
+
accent6: ST_ColorSchemeIndex;
|
|
1022
|
+
hlink: ST_ColorSchemeIndex;
|
|
1023
|
+
folHlink: ST_ColorSchemeIndex;
|
|
1024
|
+
}
|
|
1025
|
+
export interface CT_ColorMappingOverride {
|
|
1026
|
+
}
|
|
1027
|
+
export interface CT_ColorSchemeAndMapping {
|
|
1028
|
+
clrScheme: CT_ColorScheme;
|
|
1029
|
+
clrMap: CT_ColorMapping;
|
|
1030
|
+
}
|
|
1031
|
+
export interface CT_ColorSchemeList {
|
|
1032
|
+
extraClrScheme: CT_ColorSchemeAndMapping[];
|
|
1033
|
+
}
|
|
1034
|
+
export interface CT_OfficeStyleSheet {
|
|
1035
|
+
themeElements: CT_BaseStyles;
|
|
1036
|
+
objectDefaults: CT_ObjectStyleDefaults;
|
|
1037
|
+
extraClrSchemeLst: CT_ColorSchemeList;
|
|
1038
|
+
custClrLst: CT_CustomColorList;
|
|
1039
|
+
extLst: CT_OfficeArtExtensionList;
|
|
1040
|
+
name: string;
|
|
1041
|
+
}
|
|
1042
|
+
export interface CT_BaseStylesOverride {
|
|
1043
|
+
clrScheme: CT_ColorScheme;
|
|
1044
|
+
fontScheme: CT_FontScheme;
|
|
1045
|
+
fmtScheme: CT_StyleMatrix;
|
|
1046
|
+
}
|
|
1047
|
+
export interface CT_ClipboardStyleSheet {
|
|
1048
|
+
themeElements: CT_BaseStyles;
|
|
1049
|
+
clrMap: CT_ColorMapping;
|
|
1050
|
+
}
|
|
1051
|
+
export interface CT_Cell3D {
|
|
1052
|
+
bevel: CT_Bevel;
|
|
1053
|
+
lightRig: CT_LightRig;
|
|
1054
|
+
extLst: CT_OfficeArtExtensionList;
|
|
1055
|
+
prstMaterial: ST_PresetMaterialType;
|
|
1056
|
+
}
|
|
1057
|
+
export interface CT_String {
|
|
1058
|
+
val: string;
|
|
1059
|
+
}
|
|
1060
|
+
export interface CT_Headers {
|
|
1061
|
+
header: CT_String[];
|
|
1062
|
+
}
|
|
1063
|
+
export interface CT_TableCellProperties {
|
|
1064
|
+
lnL: CT_LineProperties;
|
|
1065
|
+
lnR: CT_LineProperties;
|
|
1066
|
+
lnT: CT_LineProperties;
|
|
1067
|
+
lnB: CT_LineProperties;
|
|
1068
|
+
lnTlToBr: CT_LineProperties;
|
|
1069
|
+
lnBlToTr: CT_LineProperties;
|
|
1070
|
+
cell3D: CT_Cell3D;
|
|
1071
|
+
headers: CT_Headers[];
|
|
1072
|
+
extLst: CT_OfficeArtExtensionList;
|
|
1073
|
+
marL: ST_Coordinate32;
|
|
1074
|
+
marR: ST_Coordinate32;
|
|
1075
|
+
marT: ST_Coordinate32;
|
|
1076
|
+
marB: ST_Coordinate32;
|
|
1077
|
+
vert: ST_TextVerticalType;
|
|
1078
|
+
anchor: ST_TextAnchoringType;
|
|
1079
|
+
anchorCtr: boolean;
|
|
1080
|
+
horzOverflow: ST_TextHorzOverflowType;
|
|
1081
|
+
}
|
|
1082
|
+
export interface CT_TableCol {
|
|
1083
|
+
extLst: CT_OfficeArtExtensionList;
|
|
1084
|
+
w: ST_Coordinate;
|
|
1085
|
+
}
|
|
1086
|
+
export interface CT_TableGrid {
|
|
1087
|
+
gridCol: CT_TableCol[];
|
|
1088
|
+
}
|
|
1089
|
+
export interface CT_TableCell {
|
|
1090
|
+
txBody: CT_TextBody;
|
|
1091
|
+
tcPr: CT_TableCellProperties;
|
|
1092
|
+
extLst: CT_OfficeArtExtensionList;
|
|
1093
|
+
rowSpan: number;
|
|
1094
|
+
gridSpan: number;
|
|
1095
|
+
hMerge: boolean;
|
|
1096
|
+
vMerge: boolean;
|
|
1097
|
+
id: string;
|
|
1098
|
+
}
|
|
1099
|
+
export interface CT_TableRow {
|
|
1100
|
+
tc: CT_TableCell[];
|
|
1101
|
+
extLst: CT_OfficeArtExtensionList;
|
|
1102
|
+
h: ST_Coordinate;
|
|
1103
|
+
}
|
|
1104
|
+
export interface CT_TableProperties {
|
|
1105
|
+
extLst: CT_OfficeArtExtensionList;
|
|
1106
|
+
rtl: boolean;
|
|
1107
|
+
firstRow: boolean;
|
|
1108
|
+
firstCol: boolean;
|
|
1109
|
+
lastRow: boolean;
|
|
1110
|
+
lastCol: boolean;
|
|
1111
|
+
bandRow: boolean;
|
|
1112
|
+
bandCol: boolean;
|
|
1113
|
+
}
|
|
1114
|
+
export interface CT_Table {
|
|
1115
|
+
tblPr: CT_TableProperties;
|
|
1116
|
+
tblGrid: CT_TableGrid;
|
|
1117
|
+
tr: CT_TableRow[];
|
|
1118
|
+
}
|
|
1119
|
+
export interface CT_ThemeableLineStyle {
|
|
1120
|
+
ln: CT_LineProperties;
|
|
1121
|
+
lnRef: CT_StyleMatrixReference;
|
|
1122
|
+
}
|
|
1123
|
+
export type ST_OnOffStyleType = 'on' | 'off' | 'def';
|
|
1124
|
+
export interface CT_TableStyleTextStyle {
|
|
1125
|
+
extLst: CT_OfficeArtExtensionList;
|
|
1126
|
+
b: ST_OnOffStyleType;
|
|
1127
|
+
i: ST_OnOffStyleType;
|
|
1128
|
+
}
|
|
1129
|
+
export interface CT_TableCellBorderStyle {
|
|
1130
|
+
left: CT_ThemeableLineStyle;
|
|
1131
|
+
right: CT_ThemeableLineStyle;
|
|
1132
|
+
top: CT_ThemeableLineStyle;
|
|
1133
|
+
bottom: CT_ThemeableLineStyle;
|
|
1134
|
+
insideH: CT_ThemeableLineStyle;
|
|
1135
|
+
insideV: CT_ThemeableLineStyle;
|
|
1136
|
+
tl2br: CT_ThemeableLineStyle;
|
|
1137
|
+
tr2bl: CT_ThemeableLineStyle;
|
|
1138
|
+
extLst: CT_OfficeArtExtensionList;
|
|
1139
|
+
}
|
|
1140
|
+
export interface CT_TableBackgroundStyle {
|
|
1141
|
+
}
|
|
1142
|
+
export interface CT_TableStyleCellStyle {
|
|
1143
|
+
tcBdr: CT_TableCellBorderStyle;
|
|
1144
|
+
cell3D: CT_Cell3D;
|
|
1145
|
+
}
|
|
1146
|
+
export interface CT_TablePartStyle {
|
|
1147
|
+
tcTxStyle: CT_TableStyleTextStyle;
|
|
1148
|
+
tcStyle: CT_TableStyleCellStyle;
|
|
1149
|
+
}
|
|
1150
|
+
export interface CT_TableStyle {
|
|
1151
|
+
tblBg: CT_TableBackgroundStyle;
|
|
1152
|
+
wholeTbl: CT_TablePartStyle;
|
|
1153
|
+
band1H: CT_TablePartStyle;
|
|
1154
|
+
band2H: CT_TablePartStyle;
|
|
1155
|
+
band1V: CT_TablePartStyle;
|
|
1156
|
+
band2V: CT_TablePartStyle;
|
|
1157
|
+
lastCol: CT_TablePartStyle;
|
|
1158
|
+
firstCol: CT_TablePartStyle;
|
|
1159
|
+
lastRow: CT_TablePartStyle;
|
|
1160
|
+
seCell: CT_TablePartStyle;
|
|
1161
|
+
swCell: CT_TablePartStyle;
|
|
1162
|
+
firstRow: CT_TablePartStyle;
|
|
1163
|
+
neCell: CT_TablePartStyle;
|
|
1164
|
+
nwCell: CT_TablePartStyle;
|
|
1165
|
+
extLst: CT_OfficeArtExtensionList;
|
|
1166
|
+
styleId: string;
|
|
1167
|
+
styleName: string;
|
|
1168
|
+
}
|
|
1169
|
+
export interface CT_TableStyleList {
|
|
1170
|
+
tblStyle: CT_TableStyle[];
|
|
1171
|
+
def: string;
|
|
1172
|
+
}
|
|
1173
|
+
export type ST_TextFontScalePercentOrPercentString = string;
|
|
1174
|
+
export interface CT_TextNormalAutofit {
|
|
1175
|
+
fontScale: string;
|
|
1176
|
+
lnSpcReduction: string;
|
|
1177
|
+
}
|
|
1178
|
+
export interface CT_TextShapeAutofit {
|
|
1179
|
+
}
|
|
1180
|
+
export interface CT_TextNoAutofit {
|
|
1181
|
+
}
|
|
1182
|
+
export type ST_TextBulletStartAtNum = number;
|
|
1183
|
+
export type ST_TextAutonumberScheme = 'alphaLcParenBoth' | 'alphaUcParenBoth' | 'alphaLcParenR' | 'alphaUcParenR' | 'alphaLcPeriod' | 'alphaUcPeriod' | 'arabicParenBoth' | 'arabicParenR' | 'arabicPeriod' | 'arabicPlain' | 'romanLcParenBoth' | 'romanUcParenBoth' | 'romanLcParenR' | 'romanUcParenR' | 'romanLcPeriod' | 'romanUcPeriod' | 'circleNumDbPlain' | 'circleNumWdBlackPlain' | 'circleNumWdWhitePlain' | 'arabicDbPeriod' | 'arabicDbPlain' | 'ea1ChsPeriod' | 'ea1ChsPlain' | 'ea1ChtPeriod' | 'ea1ChtPlain' | 'ea1JpnChsDbPeriod' | 'ea1JpnKorPlain' | 'ea1JpnKorPeriod' | 'arabic1Minus' | 'arabic2Minus' | 'hebrew2Minus' | 'thaiAlphaPeriod' | 'thaiAlphaParenR' | 'thaiAlphaParenBoth' | 'thaiNumPeriod' | 'thaiNumParenR' | 'thaiNumParenBoth' | 'hindiAlphaPeriod' | 'hindiNumPeriod' | 'hindiNumParenR' | 'hindiAlpha1Period';
|
|
1184
|
+
export interface CT_TextBulletColorFollowText {
|
|
1185
|
+
}
|
|
1186
|
+
export type ST_TextBulletSize = string;
|
|
1187
|
+
export type ST_TextBulletSizePercent = string;
|
|
1188
|
+
export interface CT_TextBulletSizeFollowText {
|
|
1189
|
+
}
|
|
1190
|
+
export interface CT_TextBulletSizePercent {
|
|
1191
|
+
val: string;
|
|
1192
|
+
}
|
|
1193
|
+
export interface CT_TextBulletSizePoint {
|
|
1194
|
+
val: number;
|
|
1195
|
+
}
|
|
1196
|
+
export interface CT_TextBulletTypefaceFollowText {
|
|
1197
|
+
}
|
|
1198
|
+
export interface CT_TextAutonumberBullet {
|
|
1199
|
+
type: ST_TextAutonumberScheme;
|
|
1200
|
+
startAt: number;
|
|
1201
|
+
}
|
|
1202
|
+
export interface CT_TextCharBullet {
|
|
1203
|
+
char: string;
|
|
1204
|
+
}
|
|
1205
|
+
export interface CT_TextBlipBullet {
|
|
1206
|
+
blip: CT_Blip;
|
|
1207
|
+
}
|
|
1208
|
+
export interface CT_TextNoBullet {
|
|
1209
|
+
}
|
|
1210
|
+
export type ST_TextPointUnqualified = number;
|
|
1211
|
+
export interface CT_TextUnderlineLineFollowText {
|
|
1212
|
+
}
|
|
1213
|
+
export interface CT_TextUnderlineFillFollowText {
|
|
1214
|
+
}
|
|
1215
|
+
export interface CT_TextUnderlineFillGroupWrapper {
|
|
1216
|
+
}
|
|
1217
|
+
export interface CT_TextLineBreak {
|
|
1218
|
+
rPr: CT_TextCharacterProperties;
|
|
1219
|
+
}
|
|
1220
|
+
export interface CT_TextField {
|
|
1221
|
+
rPr: CT_TextCharacterProperties;
|
|
1222
|
+
pPr: CT_TextParagraphProperties;
|
|
1223
|
+
t: string;
|
|
1224
|
+
id: string;
|
|
1225
|
+
type: string;
|
|
1226
|
+
}
|
|
1227
|
+
export interface CT_RegularTextRun {
|
|
1228
|
+
rPr: CT_TextCharacterProperties;
|
|
1229
|
+
t: string;
|
|
1230
|
+
}
|
|
1231
|
+
export interface CT_Empty {
|
|
1232
|
+
}
|
|
1233
|
+
export interface CT_OnOff {
|
|
1234
|
+
val: ST_OnOff;
|
|
1235
|
+
}
|
|
23
1236
|
export type ST_LongHexNumber = string;
|
|
1237
|
+
export interface CT_LongHexNumber {
|
|
1238
|
+
val: string;
|
|
1239
|
+
}
|
|
24
1240
|
export type ST_ShortHexNumber = string;
|
|
25
|
-
export
|
|
26
|
-
|
|
1241
|
+
export interface CT_Charset {
|
|
1242
|
+
characterSet: string;
|
|
1243
|
+
}
|
|
1244
|
+
export type ST_DecimalNumberOrPercent = string;
|
|
27
1245
|
export type ST_DecimalNumber = number;
|
|
1246
|
+
export interface CT_DecimalNumber {
|
|
1247
|
+
val: number;
|
|
1248
|
+
}
|
|
1249
|
+
export interface CT_UnsignedDecimalNumber {
|
|
1250
|
+
val: number;
|
|
1251
|
+
}
|
|
1252
|
+
export interface CT_DecimalNumberOrPrecent {
|
|
1253
|
+
val: string;
|
|
1254
|
+
}
|
|
1255
|
+
export interface CT_TwipsMeasure {
|
|
1256
|
+
val: ST_TwipsMeasure;
|
|
1257
|
+
}
|
|
28
1258
|
export type ST_SignedTwipsMeasure = number | ST_UniversalMeasure;
|
|
1259
|
+
export interface CT_SignedTwipsMeasure {
|
|
1260
|
+
val: ST_SignedTwipsMeasure;
|
|
1261
|
+
}
|
|
29
1262
|
export type ST_PixelsMeasure = ST_UnsignedDecimalNumber;
|
|
1263
|
+
export interface CT_PixelsMeasure {
|
|
1264
|
+
val: number;
|
|
1265
|
+
}
|
|
30
1266
|
export type ST_HpsMeasure = ST_UnsignedDecimalNumber | ST_PositiveUniversalMeasure;
|
|
1267
|
+
export interface CT_HpsMeasure {
|
|
1268
|
+
val: ST_HpsMeasure;
|
|
1269
|
+
}
|
|
31
1270
|
export type ST_SignedHpsMeasure = number | ST_UniversalMeasure;
|
|
1271
|
+
export interface CT_SignedHpsMeasure {
|
|
1272
|
+
val: ST_SignedHpsMeasure;
|
|
1273
|
+
}
|
|
32
1274
|
export type ST_DateTime = string;
|
|
33
1275
|
export type ST_MacroName = string;
|
|
1276
|
+
export interface CT_MacroName {
|
|
1277
|
+
val: string;
|
|
1278
|
+
}
|
|
34
1279
|
export type ST_EighthPointMeasure = ST_UnsignedDecimalNumber;
|
|
35
1280
|
export type ST_PointMeasure = ST_UnsignedDecimalNumber;
|
|
36
|
-
export type ST_TextScale =
|
|
1281
|
+
export type ST_TextScale = string;
|
|
37
1282
|
export type ST_TextScalePercent = string;
|
|
1283
|
+
export interface CT_TextScale {
|
|
1284
|
+
val: string;
|
|
1285
|
+
}
|
|
38
1286
|
export type ST_HighlightColor = 'black' | 'blue' | 'cyan' | 'green' | 'magenta' | 'red' | 'yellow' | 'white' | 'darkBlue' | 'darkCyan' | 'darkGreen' | 'darkMagenta' | 'darkRed' | 'darkYellow' | 'darkGray' | 'lightGray' | 'none';
|
|
1287
|
+
export interface CT_Highlight {
|
|
1288
|
+
val: ST_HighlightColor;
|
|
1289
|
+
}
|
|
39
1290
|
export type ST_HexColorAuto = 'auto';
|
|
40
|
-
export
|
|
1291
|
+
export interface CT_Lang {
|
|
1292
|
+
val: string;
|
|
1293
|
+
}
|
|
1294
|
+
export interface CT_Guid {
|
|
1295
|
+
val: string;
|
|
1296
|
+
}
|
|
41
1297
|
export type ST_Underline = 'single' | 'words' | 'double' | 'thick' | 'dotted' | 'dottedHeavy' | 'dash' | 'dashedHeavy' | 'dashLong' | 'dashLongHeavy' | 'dotDash' | 'dashDotHeavy' | 'dotDotDash' | 'dashDotDotHeavy' | 'wave' | 'wavyHeavy' | 'wavyDouble' | 'none';
|
|
1298
|
+
export interface CT_Underline {
|
|
1299
|
+
val: ST_Underline;
|
|
1300
|
+
color: ST_HexColor;
|
|
1301
|
+
themeColor: ST_ThemeColor;
|
|
1302
|
+
themeTint: string;
|
|
1303
|
+
themeShade: string;
|
|
1304
|
+
}
|
|
42
1305
|
export type ST_TextEffect = 'blinkBackground' | 'lights' | 'antsBlack' | 'antsRed' | 'shimmer' | 'sparkle' | 'none';
|
|
1306
|
+
export interface CT_TextEffect {
|
|
1307
|
+
val: ST_TextEffect;
|
|
1308
|
+
}
|
|
43
1309
|
export type ST_Border = 'nil' | 'none' | 'single' | 'thick' | 'double' | 'dotted' | 'dashed' | 'dotDash' | 'dotDotDash' | 'triple' | 'thinThickSmallGap' | 'thickThinSmallGap' | 'thinThickThinSmallGap' | 'thinThickMediumGap' | 'thickThinMediumGap' | 'thinThickThinMediumGap' | 'thinThickLargeGap' | 'thickThinLargeGap' | 'thinThickThinLargeGap' | 'wave' | 'doubleWave' | 'dashSmallGap' | 'dashDotStroked' | 'threeDEmboss' | 'threeDEngrave' | 'outset' | 'inset' | 'apples' | 'archedScallops' | 'babyPacifier' | 'babyRattle' | 'balloons3Colors' | 'balloonsHotAir' | 'basicBlackDashes' | 'basicBlackDots' | 'basicBlackSquares' | 'basicThinLines' | 'basicWhiteDashes' | 'basicWhiteDots' | 'basicWhiteSquares' | 'basicWideInline' | 'basicWideMidline' | 'basicWideOutline' | 'bats' | 'birds' | 'birdsFlight' | 'cabins' | 'cakeSlice' | 'candyCorn' | 'celticKnotwork' | 'certificateBanner' | 'chainLink' | 'champagneBottle' | 'checkedBarBlack' | 'checkedBarColor' | 'checkered' | 'christmasTree' | 'circlesLines' | 'circlesRectangles' | 'classicalWave' | 'clocks' | 'compass' | 'confetti' | 'confettiGrays' | 'confettiOutline' | 'confettiStreamers' | 'confettiWhite' | 'cornerTriangles' | 'couponCutoutDashes' | 'couponCutoutDots' | 'crazyMaze' | 'creaturesButterfly' | 'creaturesFish' | 'creaturesInsects' | 'creaturesLadyBug' | 'crossStitch' | 'cup' | 'decoArch' | 'decoArchColor' | 'decoBlocks' | 'diamondsGray' | 'doubleD' | 'doubleDiamonds' | 'earth1' | 'earth2' | 'earth3' | 'eclipsingSquares1' | 'eclipsingSquares2' | 'eggsBlack' | 'fans' | 'film' | 'firecrackers' | 'flowersBlockPrint' | 'flowersDaisies' | 'flowersModern1' | 'flowersModern2' | 'flowersPansy' | 'flowersRedRose' | 'flowersRoses' | 'flowersTeacup' | 'flowersTiny' | 'gems' | 'gingerbreadMan' | 'gradient' | 'handmade1' | 'handmade2' | 'heartBalloon' | 'heartGray' | 'hearts' | 'heebieJeebies' | 'holly' | 'houseFunky' | 'hypnotic' | 'iceCreamCones' | 'lightBulb' | 'lightning1' | 'lightning2' | 'mapPins' | 'mapleLeaf' | 'mapleMuffins' | 'marquee' | 'marqueeToothed' | 'moons' | 'mosaic' | 'musicNotes' | 'northwest' | 'ovals' | 'packages' | 'palmsBlack' | 'palmsColor' | 'paperClips' | 'papyrus' | 'partyFavor' | 'partyGlass' | 'pencils' | 'people' | 'peopleWaving' | 'peopleHats' | 'poinsettias' | 'postageStamp' | 'pumpkin1' | 'pushPinNote2' | 'pushPinNote1' | 'pyramids' | 'pyramidsAbove' | 'quadrants' | 'rings' | 'safari' | 'sawtooth' | 'sawtoothGray' | 'scaredCat' | 'seattle' | 'shadowedSquares' | 'sharksTeeth' | 'shorebirdTracks' | 'skyrocket' | 'snowflakeFancy' | 'snowflakes' | 'sombrero' | 'southwest' | 'stars' | 'starsTop' | 'stars3d' | 'starsBlack' | 'starsShadowed' | 'sun' | 'swirligig' | 'tornPaper' | 'tornPaperBlack' | 'trees' | 'triangleParty' | 'triangles' | 'triangle1' | 'triangle2' | 'triangleCircle1' | 'triangleCircle2' | 'shapes1' | 'shapes2' | 'twistedLines1' | 'twistedLines2' | 'vine' | 'waveline' | 'weavingAngles' | 'weavingBraid' | 'weavingRibbon' | 'weavingStrips' | 'whiteFlowers' | 'woodwork' | 'xIllusions' | 'zanyTriangles' | 'zigZag' | 'zigZagStitch' | 'custom';
|
|
1310
|
+
export interface CT_Border {
|
|
1311
|
+
val: ST_Border;
|
|
1312
|
+
color: ST_HexColor;
|
|
1313
|
+
themeColor: ST_ThemeColor;
|
|
1314
|
+
themeTint: string;
|
|
1315
|
+
themeShade: string;
|
|
1316
|
+
sz: number;
|
|
1317
|
+
space: number;
|
|
1318
|
+
shadow: ST_OnOff;
|
|
1319
|
+
frame: ST_OnOff;
|
|
1320
|
+
}
|
|
44
1321
|
export type ST_Shd = 'nil' | 'clear' | 'solid' | 'horzStripe' | 'vertStripe' | 'reverseDiagStripe' | 'diagStripe' | 'horzCross' | 'diagCross' | 'thinHorzStripe' | 'thinVertStripe' | 'thinReverseDiagStripe' | 'thinDiagStripe' | 'thinHorzCross' | 'thinDiagCross' | 'pct5' | 'pct10' | 'pct12' | 'pct15' | 'pct20' | 'pct25' | 'pct30' | 'pct35' | 'pct37' | 'pct40' | 'pct45' | 'pct50' | 'pct55' | 'pct60' | 'pct62' | 'pct65' | 'pct70' | 'pct75' | 'pct80' | 'pct85' | 'pct87' | 'pct90' | 'pct95';
|
|
1322
|
+
export interface CT_Shd {
|
|
1323
|
+
val: ST_Shd;
|
|
1324
|
+
color: ST_HexColor;
|
|
1325
|
+
themeColor: ST_ThemeColor;
|
|
1326
|
+
themeTint: string;
|
|
1327
|
+
themeShade: string;
|
|
1328
|
+
fill: ST_HexColor;
|
|
1329
|
+
themeFill: ST_ThemeColor;
|
|
1330
|
+
themeFillTint: string;
|
|
1331
|
+
themeFillShade: string;
|
|
1332
|
+
}
|
|
1333
|
+
export interface CT_VerticalAlignRun {
|
|
1334
|
+
val: ST_VerticalAlignRun;
|
|
1335
|
+
}
|
|
1336
|
+
export interface CT_FitText {
|
|
1337
|
+
val: ST_TwipsMeasure;
|
|
1338
|
+
id: number;
|
|
1339
|
+
}
|
|
45
1340
|
export type ST_Em = 'none' | 'dot' | 'comma' | 'circle' | 'underDot';
|
|
1341
|
+
export interface CT_Em {
|
|
1342
|
+
val: ST_Em;
|
|
1343
|
+
}
|
|
1344
|
+
export interface CT_Language {
|
|
1345
|
+
val: string;
|
|
1346
|
+
eastAsia: string;
|
|
1347
|
+
bidi: string;
|
|
1348
|
+
}
|
|
46
1349
|
export type ST_CombineBrackets = 'none' | 'round' | 'square' | 'angle' | 'curly';
|
|
1350
|
+
export interface CT_EastAsianLayout {
|
|
1351
|
+
id: number;
|
|
1352
|
+
combine: ST_OnOff;
|
|
1353
|
+
combineBrackets: ST_CombineBrackets;
|
|
1354
|
+
vert: ST_OnOff;
|
|
1355
|
+
vertCompress: ST_OnOff;
|
|
1356
|
+
}
|
|
47
1357
|
export type ST_HeightRule = 'auto' | 'exact' | 'atLeast';
|
|
48
1358
|
export type ST_Wrap = 'auto' | 'notBeside' | 'around' | 'tight' | 'through' | 'none';
|
|
49
1359
|
export type ST_VAnchor = 'text' | 'margin' | 'page';
|
|
50
1360
|
export type ST_HAnchor = 'text' | 'margin' | 'page';
|
|
51
1361
|
export type ST_DropCap = 'none' | 'drop' | 'margin';
|
|
1362
|
+
export interface CT_FramePr {
|
|
1363
|
+
dropCap: ST_DropCap;
|
|
1364
|
+
lines: number;
|
|
1365
|
+
w: ST_TwipsMeasure;
|
|
1366
|
+
h: ST_TwipsMeasure;
|
|
1367
|
+
vSpace: ST_TwipsMeasure;
|
|
1368
|
+
hSpace: ST_TwipsMeasure;
|
|
1369
|
+
wrap: ST_Wrap;
|
|
1370
|
+
hAnchor: ST_HAnchor;
|
|
1371
|
+
vAnchor: ST_VAnchor;
|
|
1372
|
+
x: ST_SignedTwipsMeasure;
|
|
1373
|
+
xAlign: ST_XAlign;
|
|
1374
|
+
y: ST_SignedTwipsMeasure;
|
|
1375
|
+
yAlign: ST_YAlign;
|
|
1376
|
+
hRule: ST_HeightRule;
|
|
1377
|
+
anchorLock: ST_OnOff;
|
|
1378
|
+
}
|
|
52
1379
|
export type ST_TabJc = 'clear' | 'start' | 'center' | 'end' | 'decimal' | 'bar' | 'num';
|
|
53
1380
|
export type ST_TabTlc = 'none' | 'dot' | 'hyphen' | 'underscore' | 'heavy' | 'middleDot';
|
|
1381
|
+
export interface CT_TabStop {
|
|
1382
|
+
val: ST_TabJc;
|
|
1383
|
+
leader: ST_TabTlc;
|
|
1384
|
+
pos: ST_SignedTwipsMeasure;
|
|
1385
|
+
}
|
|
54
1386
|
export type ST_LineSpacingRule = 'auto' | 'exact' | 'atLeast';
|
|
1387
|
+
export interface CT_Spacing {
|
|
1388
|
+
before: ST_TwipsMeasure;
|
|
1389
|
+
beforeLines: number;
|
|
1390
|
+
beforeAutospacing: ST_OnOff;
|
|
1391
|
+
after: ST_TwipsMeasure;
|
|
1392
|
+
afterLines: number;
|
|
1393
|
+
afterAutospacing: ST_OnOff;
|
|
1394
|
+
line: ST_SignedTwipsMeasure;
|
|
1395
|
+
lineRule: ST_LineSpacingRule;
|
|
1396
|
+
}
|
|
1397
|
+
export interface CT_Ind {
|
|
1398
|
+
start: ST_SignedTwipsMeasure;
|
|
1399
|
+
startChars: number;
|
|
1400
|
+
end: ST_SignedTwipsMeasure;
|
|
1401
|
+
endChars: number;
|
|
1402
|
+
hanging: ST_TwipsMeasure;
|
|
1403
|
+
hangingChars: number;
|
|
1404
|
+
firstLine: ST_TwipsMeasure;
|
|
1405
|
+
firstLineChars: number;
|
|
1406
|
+
}
|
|
55
1407
|
export type ST_Jc = 'start' | 'center' | 'end' | 'both' | 'mediumKashida' | 'distribute' | 'numTab' | 'highKashida' | 'lowKashida' | 'thaiDistribute';
|
|
56
1408
|
export type ST_JcTable = 'center' | 'end' | 'start';
|
|
1409
|
+
export interface CT_Jc {
|
|
1410
|
+
val: ST_Jc;
|
|
1411
|
+
}
|
|
1412
|
+
export interface CT_JcTable {
|
|
1413
|
+
val: ST_JcTable;
|
|
1414
|
+
}
|
|
57
1415
|
export type ST_View = 'none' | 'print' | 'outline' | 'masterPages' | 'normal' | 'web';
|
|
1416
|
+
export interface CT_View {
|
|
1417
|
+
val: ST_View;
|
|
1418
|
+
}
|
|
58
1419
|
export type ST_Zoom = 'none' | 'fullPage' | 'bestFit' | 'textFit';
|
|
1420
|
+
export interface CT_Zoom {
|
|
1421
|
+
val: ST_Zoom;
|
|
1422
|
+
percent: string;
|
|
1423
|
+
}
|
|
1424
|
+
export interface CT_WritingStyle {
|
|
1425
|
+
lang: string;
|
|
1426
|
+
vendorID: string;
|
|
1427
|
+
dllVersion: string;
|
|
1428
|
+
nlCheck: ST_OnOff;
|
|
1429
|
+
checkStyle: ST_OnOff;
|
|
1430
|
+
appName: string;
|
|
1431
|
+
}
|
|
59
1432
|
export type ST_Proof = 'clean' | 'dirty';
|
|
1433
|
+
export interface CT_Proof {
|
|
1434
|
+
spelling: ST_Proof;
|
|
1435
|
+
grammar: ST_Proof;
|
|
1436
|
+
}
|
|
60
1437
|
export type ST_DocType = string;
|
|
1438
|
+
export interface CT_DocType {
|
|
1439
|
+
val: string;
|
|
1440
|
+
}
|
|
61
1441
|
export type ST_DocProtect = 'none' | 'readOnly' | 'comments' | 'trackedChanges' | 'forms';
|
|
1442
|
+
export interface CT_DocProtect {
|
|
1443
|
+
edit: ST_DocProtect;
|
|
1444
|
+
formatting: ST_OnOff;
|
|
1445
|
+
enforcement: ST_OnOff;
|
|
1446
|
+
}
|
|
62
1447
|
export type ST_MailMergeDocType = 'catalog' | 'envelopes' | 'mailingLabels' | 'formLetters' | 'email' | 'fax';
|
|
1448
|
+
export interface CT_MailMergeDocType {
|
|
1449
|
+
val: ST_MailMergeDocType;
|
|
1450
|
+
}
|
|
63
1451
|
export type ST_MailMergeDataType = string;
|
|
1452
|
+
export interface CT_MailMergeDataType {
|
|
1453
|
+
val: string;
|
|
1454
|
+
}
|
|
64
1455
|
export type ST_MailMergeDest = 'newDocument' | 'printer' | 'email' | 'fax';
|
|
1456
|
+
export interface CT_MailMergeDest {
|
|
1457
|
+
val: ST_MailMergeDest;
|
|
1458
|
+
}
|
|
65
1459
|
export type ST_MailMergeOdsoFMDFieldType = 'null' | 'dbColumn';
|
|
1460
|
+
export interface CT_MailMergeOdsoFMDFieldType {
|
|
1461
|
+
val: ST_MailMergeOdsoFMDFieldType;
|
|
1462
|
+
}
|
|
1463
|
+
export interface CT_TrackChangesView {
|
|
1464
|
+
markup: ST_OnOff;
|
|
1465
|
+
comments: ST_OnOff;
|
|
1466
|
+
insDel: ST_OnOff;
|
|
1467
|
+
formatting: ST_OnOff;
|
|
1468
|
+
inkAnnotations: ST_OnOff;
|
|
1469
|
+
}
|
|
1470
|
+
export interface CT_Kinsoku {
|
|
1471
|
+
lang: string;
|
|
1472
|
+
val: string;
|
|
1473
|
+
}
|
|
66
1474
|
export type ST_TextDirection = 'tb' | 'rl' | 'lr' | 'tbV' | 'rlV' | 'lrV';
|
|
1475
|
+
export interface CT_TextDirection {
|
|
1476
|
+
val: ST_TextDirection;
|
|
1477
|
+
}
|
|
67
1478
|
export type ST_TextAlignment = 'top' | 'center' | 'baseline' | 'bottom' | 'auto';
|
|
1479
|
+
export interface CT_TextAlignment {
|
|
1480
|
+
val: ST_TextAlignment;
|
|
1481
|
+
}
|
|
68
1482
|
export type ST_DisplacedByCustomXml = 'next' | 'prev';
|
|
69
1483
|
export type ST_AnnotationVMerge = 'cont' | 'rest';
|
|
1484
|
+
export interface CT_Markup {
|
|
1485
|
+
id: number;
|
|
1486
|
+
}
|
|
1487
|
+
export interface CT_TrackChange {
|
|
1488
|
+
}
|
|
1489
|
+
export interface CT_CellMergeTrackChange {
|
|
1490
|
+
}
|
|
1491
|
+
export interface CT_TrackChangeRange {
|
|
1492
|
+
}
|
|
1493
|
+
export interface CT_MarkupRange {
|
|
1494
|
+
}
|
|
1495
|
+
export interface CT_BookmarkRange {
|
|
1496
|
+
}
|
|
1497
|
+
export interface CT_Bookmark {
|
|
1498
|
+
}
|
|
1499
|
+
export interface CT_MoveBookmark {
|
|
1500
|
+
}
|
|
1501
|
+
export interface CT_Comment {
|
|
1502
|
+
}
|
|
1503
|
+
export interface CT_TblPrExChange {
|
|
1504
|
+
}
|
|
1505
|
+
export interface CT_TcPrChange {
|
|
1506
|
+
}
|
|
1507
|
+
export interface CT_TrPrChange {
|
|
1508
|
+
}
|
|
1509
|
+
export interface CT_TblGridChange {
|
|
1510
|
+
}
|
|
1511
|
+
export interface CT_TblPrChange {
|
|
1512
|
+
}
|
|
1513
|
+
export interface CT_SectPrChange {
|
|
1514
|
+
}
|
|
1515
|
+
export interface CT_PPrChange {
|
|
1516
|
+
}
|
|
1517
|
+
export interface CT_RPrChange {
|
|
1518
|
+
}
|
|
1519
|
+
export interface CT_ParaRPrChange {
|
|
1520
|
+
}
|
|
1521
|
+
export interface CT_RunTrackChange {
|
|
1522
|
+
}
|
|
1523
|
+
export interface CT_NumPr {
|
|
1524
|
+
ilvl: CT_DecimalNumber[];
|
|
1525
|
+
numId: CT_DecimalNumber[];
|
|
1526
|
+
ins: CT_TrackChange[];
|
|
1527
|
+
}
|
|
1528
|
+
export interface CT_PBdr {
|
|
1529
|
+
top: CT_Border[];
|
|
1530
|
+
left: CT_Border[];
|
|
1531
|
+
bottom: CT_Border[];
|
|
1532
|
+
right: CT_Border[];
|
|
1533
|
+
between: CT_Border[];
|
|
1534
|
+
bar: CT_Border[];
|
|
1535
|
+
}
|
|
1536
|
+
export interface CT_Tabs {
|
|
1537
|
+
tab: CT_TabStop[];
|
|
1538
|
+
}
|
|
70
1539
|
export type ST_TextboxTightWrap = 'none' | 'allLines' | 'firstAndLastLine' | 'firstLineOnly' | 'lastLineOnly';
|
|
1540
|
+
export interface CT_TextboxTightWrap {
|
|
1541
|
+
val: ST_TextboxTightWrap;
|
|
1542
|
+
}
|
|
1543
|
+
export interface CT_PPr {
|
|
1544
|
+
}
|
|
1545
|
+
export interface CT_Cnf {
|
|
1546
|
+
firstRow: ST_OnOff;
|
|
1547
|
+
lastRow: ST_OnOff;
|
|
1548
|
+
firstColumn: ST_OnOff;
|
|
1549
|
+
lastColumn: ST_OnOff;
|
|
1550
|
+
oddVBand: ST_OnOff;
|
|
1551
|
+
evenVBand: ST_OnOff;
|
|
1552
|
+
oddHBand: ST_OnOff;
|
|
1553
|
+
evenHBand: ST_OnOff;
|
|
1554
|
+
firstRowFirstColumn: ST_OnOff;
|
|
1555
|
+
firstRowLastColumn: ST_OnOff;
|
|
1556
|
+
lastRowFirstColumn: ST_OnOff;
|
|
1557
|
+
lastRowLastColumn: ST_OnOff;
|
|
1558
|
+
}
|
|
1559
|
+
export interface CT_PPrBase {
|
|
1560
|
+
pStyle: CT_String[];
|
|
1561
|
+
keepNext: CT_OnOff[];
|
|
1562
|
+
keepLines: CT_OnOff[];
|
|
1563
|
+
pageBreakBefore: CT_OnOff[];
|
|
1564
|
+
framePr: CT_FramePr[];
|
|
1565
|
+
widowControl: CT_OnOff[];
|
|
1566
|
+
numPr: CT_NumPr[];
|
|
1567
|
+
suppressLineNumbers: CT_OnOff[];
|
|
1568
|
+
pBdr: CT_PBdr[];
|
|
1569
|
+
shd: CT_Shd[];
|
|
1570
|
+
tabs: CT_Tabs[];
|
|
1571
|
+
suppressAutoHyphens: CT_OnOff[];
|
|
1572
|
+
kinsoku: CT_OnOff[];
|
|
1573
|
+
wordWrap: CT_OnOff[];
|
|
1574
|
+
overflowPunct: CT_OnOff[];
|
|
1575
|
+
topLinePunct: CT_OnOff[];
|
|
1576
|
+
autoSpaceDE: CT_OnOff[];
|
|
1577
|
+
autoSpaceDN: CT_OnOff[];
|
|
1578
|
+
bidi: CT_OnOff[];
|
|
1579
|
+
adjustRightInd: CT_OnOff[];
|
|
1580
|
+
snapToGrid: CT_OnOff[];
|
|
1581
|
+
spacing: CT_Spacing[];
|
|
1582
|
+
ind: CT_Ind[];
|
|
1583
|
+
contextualSpacing: CT_OnOff[];
|
|
1584
|
+
mirrorIndents: CT_OnOff[];
|
|
1585
|
+
suppressOverlap: CT_OnOff[];
|
|
1586
|
+
jc: CT_Jc[];
|
|
1587
|
+
textDirection: CT_TextDirection[];
|
|
1588
|
+
textAlignment: CT_TextAlignment[];
|
|
1589
|
+
textboxTightWrap: CT_TextboxTightWrap[];
|
|
1590
|
+
outlineLvl: CT_DecimalNumber[];
|
|
1591
|
+
divId: CT_DecimalNumber[];
|
|
1592
|
+
cnfStyle: CT_Cnf;
|
|
1593
|
+
}
|
|
1594
|
+
export interface CT_PPrGeneral {
|
|
1595
|
+
}
|
|
1596
|
+
export interface CT_Control {
|
|
1597
|
+
name: string;
|
|
1598
|
+
shapeid: string;
|
|
1599
|
+
r_id: string;
|
|
1600
|
+
}
|
|
1601
|
+
export interface CT_Drawing {
|
|
1602
|
+
}
|
|
1603
|
+
export interface CT_Background {
|
|
1604
|
+
drawing: CT_Drawing[];
|
|
1605
|
+
color: ST_HexColor;
|
|
1606
|
+
themeColor: ST_ThemeColor;
|
|
1607
|
+
themeTint: string;
|
|
1608
|
+
themeShade: string;
|
|
1609
|
+
}
|
|
1610
|
+
export interface CT_Rel {
|
|
1611
|
+
r_id: string;
|
|
1612
|
+
}
|
|
1613
|
+
export interface CT_Object {
|
|
1614
|
+
drawing: CT_Drawing[];
|
|
1615
|
+
dxaOrig: ST_TwipsMeasure;
|
|
1616
|
+
dyaOrig: ST_TwipsMeasure;
|
|
1617
|
+
}
|
|
71
1618
|
export type ST_ObjectDrawAspect = 'content' | 'icon';
|
|
1619
|
+
export interface CT_ObjectEmbed {
|
|
1620
|
+
drawAspect: ST_ObjectDrawAspect;
|
|
1621
|
+
r_id: string;
|
|
1622
|
+
progId: string;
|
|
1623
|
+
shapeId: string;
|
|
1624
|
+
fieldCodes: string;
|
|
1625
|
+
}
|
|
1626
|
+
export interface CT_ObjectLink {
|
|
1627
|
+
}
|
|
72
1628
|
export type ST_ObjectUpdateMode = 'always' | 'onCall';
|
|
1629
|
+
export interface CT_SimpleField {
|
|
1630
|
+
instr: string;
|
|
1631
|
+
fldLock: ST_OnOff;
|
|
1632
|
+
dirty: ST_OnOff;
|
|
1633
|
+
}
|
|
73
1634
|
export type ST_FldCharType = 'begin' | 'separate' | 'end';
|
|
74
1635
|
export type ST_InfoTextType = 'text' | 'autoText';
|
|
75
1636
|
export type ST_FFHelpTextVal = string;
|
|
76
1637
|
export type ST_FFStatusTextVal = string;
|
|
77
1638
|
export type ST_FFName = string;
|
|
78
1639
|
export type ST_FFTextType = 'regular' | 'number' | 'date' | 'currentTime' | 'currentDate' | 'calculated';
|
|
1640
|
+
export interface CT_FFTextType {
|
|
1641
|
+
val: ST_FFTextType;
|
|
1642
|
+
}
|
|
1643
|
+
export interface CT_FFName {
|
|
1644
|
+
val: string;
|
|
1645
|
+
}
|
|
1646
|
+
export interface CT_FFHelpText {
|
|
1647
|
+
type: ST_InfoTextType;
|
|
1648
|
+
val: string;
|
|
1649
|
+
}
|
|
1650
|
+
export interface CT_FFStatusText {
|
|
1651
|
+
type: ST_InfoTextType;
|
|
1652
|
+
val: string;
|
|
1653
|
+
}
|
|
1654
|
+
export interface CT_FFData {
|
|
1655
|
+
name: CT_FFName[];
|
|
1656
|
+
label: CT_DecimalNumber[];
|
|
1657
|
+
tabIndex: CT_UnsignedDecimalNumber[];
|
|
1658
|
+
enabled: CT_OnOff[];
|
|
1659
|
+
calcOnExit: CT_OnOff[];
|
|
1660
|
+
entryMacro: CT_MacroName;
|
|
1661
|
+
exitMacro: CT_MacroName;
|
|
1662
|
+
helpText: CT_FFHelpText;
|
|
1663
|
+
statusText: CT_FFStatusText;
|
|
1664
|
+
}
|
|
1665
|
+
export interface CT_FldChar {
|
|
1666
|
+
ffData: CT_FFData;
|
|
1667
|
+
fldCharType: ST_FldCharType;
|
|
1668
|
+
fldLock: ST_OnOff;
|
|
1669
|
+
dirty: ST_OnOff;
|
|
1670
|
+
}
|
|
1671
|
+
export interface CT_FFCheckBox {
|
|
1672
|
+
default: CT_OnOff[];
|
|
1673
|
+
checked: CT_OnOff[];
|
|
1674
|
+
}
|
|
1675
|
+
export interface CT_FFDDList {
|
|
1676
|
+
result: CT_DecimalNumber[];
|
|
1677
|
+
default: CT_DecimalNumber[];
|
|
1678
|
+
listEntry: CT_String[];
|
|
1679
|
+
}
|
|
1680
|
+
export interface CT_FFTextInput {
|
|
1681
|
+
type: CT_FFTextType[];
|
|
1682
|
+
default: CT_String[];
|
|
1683
|
+
maxLength: CT_DecimalNumber[];
|
|
1684
|
+
format: CT_String[];
|
|
1685
|
+
}
|
|
79
1686
|
export type ST_SectionMark = 'nextPage' | 'nextColumn' | 'continuous' | 'evenPage' | 'oddPage';
|
|
1687
|
+
export interface CT_SectType {
|
|
1688
|
+
val: ST_SectionMark;
|
|
1689
|
+
}
|
|
1690
|
+
export interface CT_PaperSource {
|
|
1691
|
+
first: number;
|
|
1692
|
+
other: number;
|
|
1693
|
+
}
|
|
80
1694
|
export type ST_NumberFormat = 'decimal' | 'upperRoman' | 'lowerRoman' | 'upperLetter' | 'lowerLetter' | 'ordinal' | 'cardinalText' | 'ordinalText' | 'hex' | 'chicago' | 'ideographDigital' | 'japaneseCounting' | 'aiueo' | 'iroha' | 'decimalFullWidth' | 'decimalHalfWidth' | 'japaneseLegal' | 'japaneseDigitalTenThousand' | 'decimalEnclosedCircle' | 'decimalFullWidth2' | 'aiueoFullWidth' | 'irohaFullWidth' | 'decimalZero' | 'bullet' | 'ganada' | 'chosung' | 'decimalEnclosedFullstop' | 'decimalEnclosedParen' | 'decimalEnclosedCircleChinese' | 'ideographEnclosedCircle' | 'ideographTraditional' | 'ideographZodiac' | 'ideographZodiacTraditional' | 'taiwaneseCounting' | 'ideographLegalTraditional' | 'taiwaneseCountingThousand' | 'taiwaneseDigital' | 'chineseCounting' | 'chineseLegalSimplified' | 'chineseCountingThousand' | 'koreanDigital' | 'koreanCounting' | 'koreanLegal' | 'koreanDigital2' | 'vietnameseCounting' | 'russianLower' | 'russianUpper' | 'none' | 'numberInDash' | 'hebrew1' | 'hebrew2' | 'arabicAlpha' | 'arabicAbjad' | 'hindiVowels' | 'hindiConsonants' | 'hindiNumbers' | 'hindiCounting' | 'thaiLetters' | 'thaiNumbers' | 'thaiCounting' | 'bahtText' | 'dollarText' | 'custom';
|
|
81
1695
|
export type ST_PageOrientation = 'portrait' | 'landscape';
|
|
1696
|
+
export interface CT_PageSz {
|
|
1697
|
+
w: ST_TwipsMeasure;
|
|
1698
|
+
h: ST_TwipsMeasure;
|
|
1699
|
+
orient: ST_PageOrientation;
|
|
1700
|
+
code: number;
|
|
1701
|
+
}
|
|
1702
|
+
export interface CT_PageMar {
|
|
1703
|
+
top: ST_SignedTwipsMeasure;
|
|
1704
|
+
right: ST_TwipsMeasure;
|
|
1705
|
+
bottom: ST_SignedTwipsMeasure;
|
|
1706
|
+
left: ST_TwipsMeasure;
|
|
1707
|
+
header: ST_TwipsMeasure;
|
|
1708
|
+
footer: ST_TwipsMeasure;
|
|
1709
|
+
gutter: ST_TwipsMeasure;
|
|
1710
|
+
}
|
|
82
1711
|
export type ST_PageBorderZOrder = 'front' | 'back';
|
|
83
1712
|
export type ST_PageBorderDisplay = 'allPages' | 'firstPage' | 'notFirstPage';
|
|
84
1713
|
export type ST_PageBorderOffset = 'page' | 'text';
|
|
1714
|
+
export interface CT_TopPageBorder {
|
|
1715
|
+
}
|
|
1716
|
+
export interface CT_PageBorder {
|
|
1717
|
+
}
|
|
1718
|
+
export interface CT_BottomPageBorder {
|
|
1719
|
+
}
|
|
1720
|
+
export interface CT_PageBorders {
|
|
1721
|
+
top: CT_TopPageBorder[];
|
|
1722
|
+
left: CT_PageBorder[];
|
|
1723
|
+
bottom: CT_BottomPageBorder[];
|
|
1724
|
+
right: CT_PageBorder[];
|
|
1725
|
+
zOrder: ST_PageBorderZOrder;
|
|
1726
|
+
display: ST_PageBorderDisplay;
|
|
1727
|
+
offsetFrom: ST_PageBorderOffset;
|
|
1728
|
+
}
|
|
85
1729
|
export type ST_ChapterSep = 'hyphen' | 'period' | 'colon' | 'emDash' | 'enDash';
|
|
86
1730
|
export type ST_LineNumberRestart = 'newPage' | 'newSection' | 'continuous';
|
|
1731
|
+
export interface CT_LineNumber {
|
|
1732
|
+
countBy: number;
|
|
1733
|
+
start: number;
|
|
1734
|
+
distance: ST_TwipsMeasure;
|
|
1735
|
+
restart: ST_LineNumberRestart;
|
|
1736
|
+
}
|
|
1737
|
+
export interface CT_PageNumber {
|
|
1738
|
+
fmt: ST_NumberFormat;
|
|
1739
|
+
start: number;
|
|
1740
|
+
chapStyle: number;
|
|
1741
|
+
chapSep: ST_ChapterSep;
|
|
1742
|
+
}
|
|
1743
|
+
export interface CT_Column {
|
|
1744
|
+
w: ST_TwipsMeasure;
|
|
1745
|
+
space: ST_TwipsMeasure;
|
|
1746
|
+
}
|
|
1747
|
+
export interface CT_Columns {
|
|
1748
|
+
col: CT_Column[];
|
|
1749
|
+
equalWidth: ST_OnOff;
|
|
1750
|
+
space: ST_TwipsMeasure;
|
|
1751
|
+
num: number;
|
|
1752
|
+
sep: ST_OnOff;
|
|
1753
|
+
}
|
|
87
1754
|
export type ST_VerticalJc = 'top' | 'center' | 'both' | 'bottom';
|
|
1755
|
+
export interface CT_VerticalJc {
|
|
1756
|
+
val: ST_VerticalJc;
|
|
1757
|
+
}
|
|
88
1758
|
export type ST_DocGrid = 'default' | 'lines' | 'linesAndChars' | 'snapToChars';
|
|
1759
|
+
export interface CT_DocGrid {
|
|
1760
|
+
type: ST_DocGrid;
|
|
1761
|
+
linePitch: number;
|
|
1762
|
+
charSpace: number;
|
|
1763
|
+
}
|
|
89
1764
|
export type ST_HdrFtr = 'even' | 'default' | 'first';
|
|
90
1765
|
export type ST_FtnEdn = 'normal' | 'separator' | 'continuationSeparator' | 'continuationNotice';
|
|
1766
|
+
export interface CT_HdrFtrRef {
|
|
1767
|
+
}
|
|
1768
|
+
export interface CT_HdrFtr {
|
|
1769
|
+
}
|
|
1770
|
+
export interface CT_SectPrBase {
|
|
1771
|
+
}
|
|
1772
|
+
export interface CT_SectPr {
|
|
1773
|
+
sectPrChange: CT_SectPrChange[];
|
|
1774
|
+
}
|
|
91
1775
|
export type ST_BrType = 'page' | 'column' | 'textWrapping';
|
|
92
1776
|
export type ST_BrClear = 'none' | 'left' | 'right' | 'all';
|
|
1777
|
+
export interface CT_Br {
|
|
1778
|
+
type: ST_BrType;
|
|
1779
|
+
clear: ST_BrClear;
|
|
1780
|
+
}
|
|
93
1781
|
export type ST_PTabAlignment = 'left' | 'center' | 'right';
|
|
94
1782
|
export type ST_PTabRelativeTo = 'margin' | 'indent';
|
|
95
1783
|
export type ST_PTabLeader = 'none' | 'dot' | 'hyphen' | 'underscore' | 'middleDot';
|
|
1784
|
+
export interface CT_PTab {
|
|
1785
|
+
alignment: ST_PTabAlignment;
|
|
1786
|
+
relativeTo: ST_PTabRelativeTo;
|
|
1787
|
+
leader: ST_PTabLeader;
|
|
1788
|
+
}
|
|
1789
|
+
export interface CT_Sym {
|
|
1790
|
+
font: string;
|
|
1791
|
+
char: string;
|
|
1792
|
+
}
|
|
96
1793
|
export type ST_ProofErr = 'spellStart' | 'spellEnd' | 'gramStart' | 'gramEnd';
|
|
1794
|
+
export interface CT_ProofErr {
|
|
1795
|
+
type: ST_ProofErr;
|
|
1796
|
+
}
|
|
97
1797
|
export type ST_EdGrp = 'none' | 'everyone' | 'administrators' | 'contributors' | 'editors' | 'owners' | 'current';
|
|
1798
|
+
export interface CT_Perm {
|
|
1799
|
+
id: string;
|
|
1800
|
+
displacedByCustomXml: ST_DisplacedByCustomXml;
|
|
1801
|
+
}
|
|
1802
|
+
export interface CT_PermStart {
|
|
1803
|
+
}
|
|
1804
|
+
export interface CT_Text {
|
|
1805
|
+
}
|
|
1806
|
+
export interface CT_R {
|
|
1807
|
+
rsidRPr: string;
|
|
1808
|
+
rsidDel: string;
|
|
1809
|
+
rsidR: string;
|
|
1810
|
+
}
|
|
98
1811
|
export type ST_Hint = 'default' | 'eastAsia';
|
|
99
1812
|
export type ST_Theme = 'majorEastAsia' | 'majorBidi' | 'majorAscii' | 'majorHAnsi' | 'minorEastAsia' | 'minorBidi' | 'minorAscii' | 'minorHAnsi';
|
|
1813
|
+
export interface CT_Fonts {
|
|
1814
|
+
hint: ST_Hint;
|
|
1815
|
+
ascii: string;
|
|
1816
|
+
hAnsi: string;
|
|
1817
|
+
eastAsia: string;
|
|
1818
|
+
cs: string;
|
|
1819
|
+
asciiTheme: ST_Theme;
|
|
1820
|
+
hAnsiTheme: ST_Theme;
|
|
1821
|
+
eastAsiaTheme: ST_Theme;
|
|
1822
|
+
cstheme: ST_Theme;
|
|
1823
|
+
}
|
|
1824
|
+
export interface CT_RPr {
|
|
1825
|
+
}
|
|
1826
|
+
export interface CT_MathCtrlIns {
|
|
1827
|
+
}
|
|
1828
|
+
export interface CT_MathCtrlDel {
|
|
1829
|
+
}
|
|
1830
|
+
export interface CT_RPrOriginal {
|
|
1831
|
+
}
|
|
1832
|
+
export interface CT_ParaRPrOriginal {
|
|
1833
|
+
}
|
|
1834
|
+
export interface CT_ParaRPr {
|
|
1835
|
+
rPrChange: CT_ParaRPrChange[];
|
|
1836
|
+
}
|
|
1837
|
+
export interface CT_AltChunkPr {
|
|
1838
|
+
matchSrc: CT_OnOff;
|
|
1839
|
+
}
|
|
1840
|
+
export interface CT_AltChunk {
|
|
1841
|
+
altChunkPr: CT_AltChunkPr;
|
|
1842
|
+
r_id: string;
|
|
1843
|
+
}
|
|
100
1844
|
export type ST_RubyAlign = 'center' | 'distributeLetter' | 'distributeSpace' | 'left' | 'right' | 'rightVertical';
|
|
1845
|
+
export interface CT_RubyAlign {
|
|
1846
|
+
val: ST_RubyAlign;
|
|
1847
|
+
}
|
|
1848
|
+
export interface CT_RubyPr {
|
|
1849
|
+
rubyAlign: CT_RubyAlign[];
|
|
1850
|
+
hps: CT_HpsMeasure[];
|
|
1851
|
+
hpsRaise: CT_HpsMeasure[];
|
|
1852
|
+
hpsBaseText: CT_HpsMeasure[];
|
|
1853
|
+
lid: CT_Lang[];
|
|
1854
|
+
dirty: CT_OnOff[];
|
|
1855
|
+
}
|
|
1856
|
+
export interface CT_RubyContent {
|
|
1857
|
+
}
|
|
1858
|
+
export interface CT_Ruby {
|
|
1859
|
+
rubyPr: CT_RubyPr[];
|
|
1860
|
+
rt: CT_RubyContent[];
|
|
1861
|
+
rubyBase: CT_RubyContent[];
|
|
1862
|
+
}
|
|
101
1863
|
export type ST_Lock = 'sdtLocked' | 'contentLocked' | 'unlocked' | 'sdtContentLocked';
|
|
1864
|
+
export interface CT_Lock {
|
|
1865
|
+
val: ST_Lock;
|
|
1866
|
+
}
|
|
1867
|
+
export interface CT_SdtListItem {
|
|
1868
|
+
displayText: string;
|
|
1869
|
+
value: string;
|
|
1870
|
+
}
|
|
102
1871
|
export type ST_SdtDateMappingType = 'text' | 'date' | 'dateTime';
|
|
1872
|
+
export interface CT_SdtDateMappingType {
|
|
1873
|
+
val: ST_SdtDateMappingType;
|
|
1874
|
+
}
|
|
1875
|
+
export interface CT_CalendarType {
|
|
1876
|
+
val: ST_CalendarType;
|
|
1877
|
+
}
|
|
1878
|
+
export interface CT_SdtDate {
|
|
1879
|
+
dateFormat: CT_String[];
|
|
1880
|
+
lid: CT_Lang[];
|
|
1881
|
+
storeMappedDataAs: CT_SdtDateMappingType[];
|
|
1882
|
+
calendar: CT_CalendarType[];
|
|
1883
|
+
fullDate: string;
|
|
1884
|
+
}
|
|
1885
|
+
export interface CT_SdtComboBox {
|
|
1886
|
+
listItem: CT_SdtListItem[];
|
|
1887
|
+
lastValue: string;
|
|
1888
|
+
}
|
|
1889
|
+
export interface CT_SdtDocPart {
|
|
1890
|
+
docPartGallery: CT_String[];
|
|
1891
|
+
docPartCategory: CT_String[];
|
|
1892
|
+
docPartUnique: CT_OnOff[];
|
|
1893
|
+
}
|
|
1894
|
+
export interface CT_SdtDropDownList {
|
|
1895
|
+
listItem: CT_SdtListItem[];
|
|
1896
|
+
lastValue: string;
|
|
1897
|
+
}
|
|
1898
|
+
export interface CT_Placeholder {
|
|
1899
|
+
docPart: CT_String[];
|
|
1900
|
+
}
|
|
1901
|
+
export interface CT_SdtText {
|
|
1902
|
+
multiLine: ST_OnOff;
|
|
1903
|
+
}
|
|
1904
|
+
export interface CT_DataBinding {
|
|
1905
|
+
prefixMappings: string;
|
|
1906
|
+
xpath: string;
|
|
1907
|
+
storeItemID: string;
|
|
1908
|
+
}
|
|
1909
|
+
export interface CT_SdtPr {
|
|
1910
|
+
rPr: CT_RPr[];
|
|
1911
|
+
alias: CT_String[];
|
|
1912
|
+
tag: CT_String[];
|
|
1913
|
+
id: CT_DecimalNumber[];
|
|
1914
|
+
lock: CT_Lock[];
|
|
1915
|
+
placeholder: CT_Placeholder[];
|
|
1916
|
+
temporary: CT_OnOff[];
|
|
1917
|
+
showingPlcHdr: CT_OnOff[];
|
|
1918
|
+
dataBinding: CT_DataBinding[];
|
|
1919
|
+
label: CT_DecimalNumber[];
|
|
1920
|
+
tabIndex: CT_UnsignedDecimalNumber[];
|
|
1921
|
+
}
|
|
1922
|
+
export interface CT_SdtEndPr {
|
|
1923
|
+
rPr: CT_RPr[];
|
|
1924
|
+
}
|
|
103
1925
|
export type ST_Direction = 'ltr' | 'rtl';
|
|
1926
|
+
export interface CT_DirContentRun {
|
|
1927
|
+
val: ST_Direction;
|
|
1928
|
+
}
|
|
1929
|
+
export interface CT_BdoContentRun {
|
|
1930
|
+
val: ST_Direction;
|
|
1931
|
+
}
|
|
1932
|
+
export interface CT_SdtContentRun {
|
|
1933
|
+
}
|
|
1934
|
+
export interface CT_SdtContentBlock {
|
|
1935
|
+
}
|
|
1936
|
+
export interface CT_SdtContentRow {
|
|
1937
|
+
}
|
|
1938
|
+
export interface CT_SdtContentCell {
|
|
1939
|
+
}
|
|
1940
|
+
export interface CT_SdtBlock {
|
|
1941
|
+
sdtPr: CT_SdtPr;
|
|
1942
|
+
sdtEndPr: CT_SdtEndPr;
|
|
1943
|
+
sdtContent: CT_SdtContentBlock;
|
|
1944
|
+
}
|
|
1945
|
+
export interface CT_SdtRun {
|
|
1946
|
+
sdtPr: CT_SdtPr;
|
|
1947
|
+
sdtEndPr: CT_SdtEndPr;
|
|
1948
|
+
sdtContent: CT_SdtContentRun;
|
|
1949
|
+
}
|
|
1950
|
+
export interface CT_SdtCell {
|
|
1951
|
+
sdtPr: CT_SdtPr;
|
|
1952
|
+
sdtEndPr: CT_SdtEndPr;
|
|
1953
|
+
sdtContent: CT_SdtContentCell;
|
|
1954
|
+
}
|
|
1955
|
+
export interface CT_SdtRow {
|
|
1956
|
+
sdtPr: CT_SdtPr;
|
|
1957
|
+
sdtEndPr: CT_SdtEndPr;
|
|
1958
|
+
sdtContent: CT_SdtContentRow;
|
|
1959
|
+
}
|
|
1960
|
+
export interface CT_Attr {
|
|
1961
|
+
uri: string;
|
|
1962
|
+
name: string;
|
|
1963
|
+
val: string;
|
|
1964
|
+
}
|
|
1965
|
+
export interface CT_CustomXmlPr {
|
|
1966
|
+
placeholder: CT_String[];
|
|
1967
|
+
attr: CT_Attr[];
|
|
1968
|
+
}
|
|
1969
|
+
export interface CT_CustomXmlRun {
|
|
1970
|
+
customXmlPr: CT_CustomXmlPr;
|
|
1971
|
+
uri: string;
|
|
1972
|
+
element: string;
|
|
1973
|
+
}
|
|
1974
|
+
export interface CT_SmartTagPr {
|
|
1975
|
+
attr: CT_Attr[];
|
|
1976
|
+
}
|
|
1977
|
+
export interface CT_SmartTagRun {
|
|
1978
|
+
smartTagPr: CT_SmartTagPr;
|
|
1979
|
+
uri: string;
|
|
1980
|
+
element: string;
|
|
1981
|
+
}
|
|
1982
|
+
export interface CT_CustomXmlBlock {
|
|
1983
|
+
customXmlPr: CT_CustomXmlPr;
|
|
1984
|
+
uri: string;
|
|
1985
|
+
element: string;
|
|
1986
|
+
}
|
|
1987
|
+
export interface CT_CustomXmlRow {
|
|
1988
|
+
customXmlPr: CT_CustomXmlPr;
|
|
1989
|
+
uri: string;
|
|
1990
|
+
element: string;
|
|
1991
|
+
}
|
|
1992
|
+
export interface CT_CustomXmlCell {
|
|
1993
|
+
customXmlPr: CT_CustomXmlPr;
|
|
1994
|
+
uri: string;
|
|
1995
|
+
element: string;
|
|
1996
|
+
}
|
|
1997
|
+
export interface CT_P {
|
|
1998
|
+
pPr: CT_PPr[];
|
|
1999
|
+
rsidRPr: string;
|
|
2000
|
+
rsidR: string;
|
|
2001
|
+
rsidDel: string;
|
|
2002
|
+
rsidP: string;
|
|
2003
|
+
rsidRDefault: string;
|
|
2004
|
+
}
|
|
104
2005
|
export type ST_TblWidth = 'nil' | 'pct' | 'dxa' | 'auto';
|
|
2006
|
+
export interface CT_Height {
|
|
2007
|
+
val: ST_TwipsMeasure;
|
|
2008
|
+
hRule: ST_HeightRule;
|
|
2009
|
+
}
|
|
105
2010
|
export type ST_MeasurementOrPercent = ST_DecimalNumberOrPercent | ST_UniversalMeasure;
|
|
2011
|
+
export interface CT_TblWidth {
|
|
2012
|
+
w: ST_MeasurementOrPercent;
|
|
2013
|
+
type: ST_TblWidth;
|
|
2014
|
+
}
|
|
2015
|
+
export interface CT_TblGridCol {
|
|
2016
|
+
w: ST_TwipsMeasure;
|
|
2017
|
+
}
|
|
2018
|
+
export interface CT_TblGridBase {
|
|
2019
|
+
gridCol: CT_TblGridCol[];
|
|
2020
|
+
}
|
|
2021
|
+
export interface CT_TblGrid {
|
|
2022
|
+
}
|
|
2023
|
+
export interface CT_TcBorders {
|
|
2024
|
+
top: CT_Border[];
|
|
2025
|
+
start: CT_Border[];
|
|
2026
|
+
bottom: CT_Border[];
|
|
2027
|
+
end: CT_Border[];
|
|
2028
|
+
insideH: CT_Border[];
|
|
2029
|
+
insideV: CT_Border[];
|
|
2030
|
+
tl2br: CT_Border[];
|
|
2031
|
+
tr2bl: CT_Border[];
|
|
2032
|
+
}
|
|
2033
|
+
export interface CT_TcMar {
|
|
2034
|
+
top: CT_TblWidth;
|
|
2035
|
+
start: CT_TblWidth;
|
|
2036
|
+
bottom: CT_TblWidth;
|
|
2037
|
+
end: CT_TblWidth;
|
|
2038
|
+
}
|
|
106
2039
|
export type ST_Merge = 'continue' | 'restart';
|
|
2040
|
+
export interface CT_VMerge {
|
|
2041
|
+
val: ST_Merge;
|
|
2042
|
+
}
|
|
2043
|
+
export interface CT_TcPrBase {
|
|
2044
|
+
cnfStyle: CT_Cnf;
|
|
2045
|
+
tcW: CT_TblWidth;
|
|
2046
|
+
gridSpan: CT_DecimalNumber[];
|
|
2047
|
+
vMerge: CT_VMerge[];
|
|
2048
|
+
tcBorders: CT_TcBorders;
|
|
2049
|
+
shd: CT_Shd[];
|
|
2050
|
+
noWrap: CT_OnOff[];
|
|
2051
|
+
tcMar: CT_TcMar;
|
|
2052
|
+
textDirection: CT_TextDirection;
|
|
2053
|
+
tcFitText: CT_OnOff;
|
|
2054
|
+
vAlign: CT_VerticalJc[];
|
|
2055
|
+
hideMark: CT_OnOff[];
|
|
2056
|
+
headers: CT_Headers[];
|
|
2057
|
+
}
|
|
2058
|
+
export interface CT_TcPr {
|
|
2059
|
+
}
|
|
2060
|
+
export interface CT_TcPrInner {
|
|
2061
|
+
}
|
|
2062
|
+
export interface CT_Tc {
|
|
2063
|
+
tcPr: CT_TcPr;
|
|
2064
|
+
id: string;
|
|
2065
|
+
}
|
|
2066
|
+
export interface CT_TrPrBase {
|
|
2067
|
+
cnfStyle: CT_Cnf;
|
|
2068
|
+
divId: CT_DecimalNumber[];
|
|
2069
|
+
gridBefore: CT_DecimalNumber[];
|
|
2070
|
+
gridAfter: CT_DecimalNumber[];
|
|
2071
|
+
wBefore: CT_TblWidth;
|
|
2072
|
+
wAfter: CT_TblWidth;
|
|
2073
|
+
cantSplit: CT_OnOff[];
|
|
2074
|
+
trHeight: CT_Height[];
|
|
2075
|
+
tblHeader: CT_OnOff[];
|
|
2076
|
+
tblCellSpacing: CT_TblWidth;
|
|
2077
|
+
jc: CT_JcTable;
|
|
2078
|
+
hidden: CT_OnOff[];
|
|
2079
|
+
}
|
|
2080
|
+
export interface CT_TrPr {
|
|
2081
|
+
}
|
|
2082
|
+
export interface CT_TblPrEx {
|
|
2083
|
+
}
|
|
2084
|
+
export interface CT_Row {
|
|
2085
|
+
tblPrEx: CT_TblPrEx;
|
|
2086
|
+
trPr: CT_TrPr;
|
|
2087
|
+
rsidRPr: string;
|
|
2088
|
+
rsidR: string;
|
|
2089
|
+
rsidDel: string;
|
|
2090
|
+
rsidTr: string;
|
|
2091
|
+
}
|
|
107
2092
|
export type ST_TblLayoutType = 'fixed' | 'autofit';
|
|
2093
|
+
export interface CT_TblLayoutType {
|
|
2094
|
+
type: ST_TblLayoutType;
|
|
2095
|
+
}
|
|
108
2096
|
export type ST_TblOverlap = 'never' | 'overlap';
|
|
2097
|
+
export interface CT_TblOverlap {
|
|
2098
|
+
val: ST_TblOverlap;
|
|
2099
|
+
}
|
|
2100
|
+
export interface CT_TblPPr {
|
|
2101
|
+
leftFromText: ST_TwipsMeasure;
|
|
2102
|
+
rightFromText: ST_TwipsMeasure;
|
|
2103
|
+
topFromText: ST_TwipsMeasure;
|
|
2104
|
+
bottomFromText: ST_TwipsMeasure;
|
|
2105
|
+
vertAnchor: ST_VAnchor;
|
|
2106
|
+
horzAnchor: ST_HAnchor;
|
|
2107
|
+
tblpXSpec: ST_XAlign;
|
|
2108
|
+
tblpX: ST_SignedTwipsMeasure;
|
|
2109
|
+
tblpYSpec: ST_YAlign;
|
|
2110
|
+
tblpY: ST_SignedTwipsMeasure;
|
|
2111
|
+
}
|
|
2112
|
+
export interface CT_TblCellMar {
|
|
2113
|
+
top: CT_TblWidth;
|
|
2114
|
+
start: CT_TblWidth;
|
|
2115
|
+
bottom: CT_TblWidth;
|
|
2116
|
+
end: CT_TblWidth;
|
|
2117
|
+
}
|
|
2118
|
+
export interface CT_TblBorders {
|
|
2119
|
+
top: CT_Border[];
|
|
2120
|
+
start: CT_Border[];
|
|
2121
|
+
bottom: CT_Border[];
|
|
2122
|
+
end: CT_Border[];
|
|
2123
|
+
insideH: CT_Border[];
|
|
2124
|
+
insideV: CT_Border[];
|
|
2125
|
+
}
|
|
2126
|
+
export interface CT_TblLook {
|
|
2127
|
+
firstRow: ST_OnOff;
|
|
2128
|
+
lastRow: ST_OnOff;
|
|
2129
|
+
firstColumn: ST_OnOff;
|
|
2130
|
+
lastColumn: ST_OnOff;
|
|
2131
|
+
noHBand: ST_OnOff;
|
|
2132
|
+
noVBand: ST_OnOff;
|
|
2133
|
+
}
|
|
2134
|
+
export interface CT_TblPrBase {
|
|
2135
|
+
tblStyle: CT_String[];
|
|
2136
|
+
tblpPr: CT_TblPPr;
|
|
2137
|
+
tblOverlap: CT_TblOverlap;
|
|
2138
|
+
bidiVisual: CT_OnOff;
|
|
2139
|
+
tblStyleRowBandSize: CT_DecimalNumber;
|
|
2140
|
+
tblStyleColBandSize: CT_DecimalNumber;
|
|
2141
|
+
tblW: CT_TblWidth;
|
|
2142
|
+
jc: CT_JcTable;
|
|
2143
|
+
tblCellSpacing: CT_TblWidth;
|
|
2144
|
+
tblInd: CT_TblWidth;
|
|
2145
|
+
tblBorders: CT_TblBorders;
|
|
2146
|
+
shd: CT_Shd;
|
|
2147
|
+
tblLayout: CT_TblLayoutType;
|
|
2148
|
+
tblCellMar: CT_TblCellMar;
|
|
2149
|
+
tblLook: CT_TblLook;
|
|
2150
|
+
tblCaption: CT_String;
|
|
2151
|
+
tblDescription: CT_String;
|
|
2152
|
+
}
|
|
2153
|
+
export interface CT_TblPr {
|
|
2154
|
+
}
|
|
2155
|
+
export interface CT_TblPrExBase {
|
|
2156
|
+
tblW: CT_TblWidth;
|
|
2157
|
+
jc: CT_JcTable;
|
|
2158
|
+
tblCellSpacing: CT_TblWidth;
|
|
2159
|
+
tblInd: CT_TblWidth;
|
|
2160
|
+
tblBorders: CT_TblBorders;
|
|
2161
|
+
shd: CT_Shd;
|
|
2162
|
+
tblLayout: CT_TblLayoutType;
|
|
2163
|
+
tblCellMar: CT_TblCellMar;
|
|
2164
|
+
tblLook: CT_TblLook;
|
|
2165
|
+
}
|
|
2166
|
+
export interface CT_Tbl {
|
|
2167
|
+
tblPr: CT_TblPr[];
|
|
2168
|
+
tblGrid: CT_TblGrid[];
|
|
2169
|
+
}
|
|
109
2170
|
export type ST_FtnPos = 'pageBottom' | 'beneathText' | 'sectEnd' | 'docEnd';
|
|
2171
|
+
export interface CT_FtnPos {
|
|
2172
|
+
val: ST_FtnPos;
|
|
2173
|
+
}
|
|
110
2174
|
export type ST_EdnPos = 'sectEnd' | 'docEnd';
|
|
2175
|
+
export interface CT_EdnPos {
|
|
2176
|
+
val: ST_EdnPos;
|
|
2177
|
+
}
|
|
2178
|
+
export interface CT_NumFmt {
|
|
2179
|
+
val: ST_NumberFormat;
|
|
2180
|
+
format: string;
|
|
2181
|
+
}
|
|
111
2182
|
export type ST_RestartNumber = 'continuous' | 'eachSect' | 'eachPage';
|
|
2183
|
+
export interface CT_NumRestart {
|
|
2184
|
+
val: ST_RestartNumber;
|
|
2185
|
+
}
|
|
2186
|
+
export interface CT_FtnEdnRef {
|
|
2187
|
+
customMarkFollows: ST_OnOff;
|
|
2188
|
+
id: number;
|
|
2189
|
+
}
|
|
2190
|
+
export interface CT_FtnEdnSepRef {
|
|
2191
|
+
id: number;
|
|
2192
|
+
}
|
|
2193
|
+
export interface CT_FtnEdn {
|
|
2194
|
+
type: ST_FtnEdn;
|
|
2195
|
+
id: number;
|
|
2196
|
+
}
|
|
2197
|
+
export interface CT_FtnProps {
|
|
2198
|
+
pos: CT_FtnPos[];
|
|
2199
|
+
numFmt: CT_NumFmt[];
|
|
2200
|
+
}
|
|
2201
|
+
export interface CT_EdnProps {
|
|
2202
|
+
pos: CT_EdnPos[];
|
|
2203
|
+
numFmt: CT_NumFmt[];
|
|
2204
|
+
}
|
|
2205
|
+
export interface CT_FtnDocProps {
|
|
2206
|
+
}
|
|
2207
|
+
export interface CT_EdnDocProps {
|
|
2208
|
+
}
|
|
2209
|
+
export interface CT_Base64Binary {
|
|
2210
|
+
val: string;
|
|
2211
|
+
}
|
|
2212
|
+
export interface CT_RecipientData {
|
|
2213
|
+
active: CT_OnOff[];
|
|
2214
|
+
column: CT_DecimalNumber[];
|
|
2215
|
+
uniqueTag: CT_Base64Binary[];
|
|
2216
|
+
}
|
|
2217
|
+
export interface CT_Recipients {
|
|
2218
|
+
recipientData: CT_RecipientData[];
|
|
2219
|
+
}
|
|
2220
|
+
export interface CT_OdsoFieldMapData {
|
|
2221
|
+
type: CT_MailMergeOdsoFMDFieldType[];
|
|
2222
|
+
name: CT_String[];
|
|
2223
|
+
mappedName: CT_String[];
|
|
2224
|
+
column: CT_DecimalNumber[];
|
|
2225
|
+
lid: CT_Lang[];
|
|
2226
|
+
dynamicAddress: CT_OnOff[];
|
|
2227
|
+
}
|
|
112
2228
|
export type ST_MailMergeSourceType = 'database' | 'addressBook' | 'document1' | 'document2' | 'text' | 'email' | 'native' | 'legacy' | 'master';
|
|
113
|
-
export
|
|
2229
|
+
export interface CT_MailMergeSourceType {
|
|
2230
|
+
val: ST_MailMergeSourceType;
|
|
2231
|
+
}
|
|
2232
|
+
export interface CT_Odso {
|
|
2233
|
+
udl: CT_String[];
|
|
2234
|
+
table: CT_String[];
|
|
2235
|
+
src: CT_Rel[];
|
|
2236
|
+
colDelim: CT_DecimalNumber[];
|
|
2237
|
+
type: CT_MailMergeSourceType[];
|
|
2238
|
+
fHdr: CT_OnOff[];
|
|
2239
|
+
fieldMapData: CT_OdsoFieldMapData[];
|
|
2240
|
+
recipientData: CT_Rel[];
|
|
2241
|
+
}
|
|
2242
|
+
export interface CT_MailMerge {
|
|
2243
|
+
mainDocumentType: CT_MailMergeDocType[];
|
|
2244
|
+
linkToQuery: CT_OnOff[];
|
|
2245
|
+
dataType: CT_MailMergeDataType[];
|
|
2246
|
+
connectString: CT_String[];
|
|
2247
|
+
query: CT_String[];
|
|
2248
|
+
dataSource: CT_Rel[];
|
|
2249
|
+
headerSource: CT_Rel[];
|
|
2250
|
+
doNotSuppressBlankLines: CT_OnOff[];
|
|
2251
|
+
destination: CT_MailMergeDest[];
|
|
2252
|
+
addressFieldName: CT_String[];
|
|
2253
|
+
mailSubject: CT_String[];
|
|
2254
|
+
mailAsAttachment: CT_OnOff[];
|
|
2255
|
+
viewMergedData: CT_OnOff[];
|
|
2256
|
+
activeRecord: CT_DecimalNumber[];
|
|
2257
|
+
checkErrors: CT_DecimalNumber[];
|
|
2258
|
+
odso: CT_Odso[];
|
|
2259
|
+
}
|
|
2260
|
+
export type ST_TargetScreenSz = '544x376' | '640x480' | '720x512' | '800x600' | '1024x768' | '1152x882' | '1152x900' | '1280x1024' | '1600x1200' | '1800x1440' | '1920x1200';
|
|
2261
|
+
export interface CT_TargetScreenSz {
|
|
2262
|
+
val: ST_TargetScreenSz;
|
|
2263
|
+
}
|
|
2264
|
+
export interface CT_CompatSetting {
|
|
2265
|
+
name: string;
|
|
2266
|
+
uri: string;
|
|
2267
|
+
val: string;
|
|
2268
|
+
}
|
|
2269
|
+
export interface CT_Compat {
|
|
2270
|
+
spaceForUL: CT_OnOff[];
|
|
2271
|
+
balanceSingleByteDoubleByteWidth: CT_OnOff[];
|
|
2272
|
+
doNotLeaveBackslashAlone: CT_OnOff[];
|
|
2273
|
+
ulTrailSpace: CT_OnOff[];
|
|
2274
|
+
doNotExpandShiftReturn: CT_OnOff[];
|
|
2275
|
+
adjustLineHeightInTable: CT_OnOff[];
|
|
2276
|
+
applyBreakingRules: CT_OnOff[];
|
|
2277
|
+
compatSetting: CT_CompatSetting[];
|
|
2278
|
+
}
|
|
2279
|
+
export interface CT_DocVar {
|
|
2280
|
+
name: string;
|
|
2281
|
+
val: string;
|
|
2282
|
+
}
|
|
2283
|
+
export interface CT_DocVars {
|
|
2284
|
+
docVar: CT_DocVar[];
|
|
2285
|
+
}
|
|
2286
|
+
export interface CT_DocRsids {
|
|
2287
|
+
rsidRoot: CT_LongHexNumber;
|
|
2288
|
+
rsid: CT_LongHexNumber[];
|
|
2289
|
+
}
|
|
114
2290
|
export type ST_CharacterSpacing = 'doNotCompress' | 'compressPunctuation' | 'compressPunctuationAndJapaneseKana';
|
|
2291
|
+
export interface CT_CharacterSpacing {
|
|
2292
|
+
val: ST_CharacterSpacing;
|
|
2293
|
+
}
|
|
2294
|
+
export interface CT_SaveThroughXslt {
|
|
2295
|
+
r_id: string;
|
|
2296
|
+
solutionID: string;
|
|
2297
|
+
}
|
|
2298
|
+
export interface CT_RPrDefault {
|
|
2299
|
+
rPr: CT_RPr[];
|
|
2300
|
+
}
|
|
2301
|
+
export interface CT_PPrDefault {
|
|
2302
|
+
pPr: CT_PPrGeneral[];
|
|
2303
|
+
}
|
|
2304
|
+
export interface CT_DocDefaults {
|
|
2305
|
+
rPrDefault: CT_RPrDefault[];
|
|
2306
|
+
pPrDefault: CT_PPrDefault[];
|
|
2307
|
+
}
|
|
115
2308
|
export type ST_WmlColorSchemeIndex = 'dark1' | 'light1' | 'dark2' | 'light2' | 'accent1' | 'accent2' | 'accent3' | 'accent4' | 'accent5' | 'accent6' | 'hyperlink' | 'followedHyperlink';
|
|
2309
|
+
export interface CT_ColorSchemeMapping {
|
|
2310
|
+
bg1: ST_WmlColorSchemeIndex;
|
|
2311
|
+
t1: ST_WmlColorSchemeIndex;
|
|
2312
|
+
bg2: ST_WmlColorSchemeIndex;
|
|
2313
|
+
t2: ST_WmlColorSchemeIndex;
|
|
2314
|
+
accent1: ST_WmlColorSchemeIndex;
|
|
2315
|
+
accent2: ST_WmlColorSchemeIndex;
|
|
2316
|
+
accent3: ST_WmlColorSchemeIndex;
|
|
2317
|
+
accent4: ST_WmlColorSchemeIndex;
|
|
2318
|
+
accent5: ST_WmlColorSchemeIndex;
|
|
2319
|
+
accent6: ST_WmlColorSchemeIndex;
|
|
2320
|
+
hyperlink: ST_WmlColorSchemeIndex;
|
|
2321
|
+
followedHyperlink: ST_WmlColorSchemeIndex;
|
|
2322
|
+
}
|
|
2323
|
+
export interface CT_ReadingModeInkLockDown {
|
|
2324
|
+
actualPg: ST_OnOff;
|
|
2325
|
+
w: number;
|
|
2326
|
+
h: number;
|
|
2327
|
+
fontSz: string;
|
|
2328
|
+
}
|
|
2329
|
+
export interface CT_WriteProtection {
|
|
2330
|
+
recommended: ST_OnOff;
|
|
2331
|
+
}
|
|
2332
|
+
export interface CT_StylePaneFilter {
|
|
2333
|
+
allStyles: ST_OnOff;
|
|
2334
|
+
customStyles: ST_OnOff;
|
|
2335
|
+
latentStyles: ST_OnOff;
|
|
2336
|
+
stylesInUse: ST_OnOff;
|
|
2337
|
+
headingStyles: ST_OnOff;
|
|
2338
|
+
numberingStyles: ST_OnOff;
|
|
2339
|
+
tableStyles: ST_OnOff;
|
|
2340
|
+
directFormattingOnRuns: ST_OnOff;
|
|
2341
|
+
directFormattingOnParagraphs: ST_OnOff;
|
|
2342
|
+
directFormattingOnNumbering: ST_OnOff;
|
|
2343
|
+
directFormattingOnTables: ST_OnOff;
|
|
2344
|
+
clearFormatting: ST_OnOff;
|
|
2345
|
+
top3HeadingStyles: ST_OnOff;
|
|
2346
|
+
visibleStyles: ST_OnOff;
|
|
2347
|
+
alternateStyleNames: ST_OnOff;
|
|
2348
|
+
}
|
|
116
2349
|
export type ST_StyleSort = 'name' | 'priority' | 'default' | 'font' | 'basedOn' | 'type';
|
|
117
|
-
export
|
|
2350
|
+
export interface CT_StyleSort {
|
|
2351
|
+
val: ST_StyleSort;
|
|
2352
|
+
}
|
|
2353
|
+
export type ST_CaptionPos = 'above' | 'below' | 'left' | 'right';
|
|
2354
|
+
export interface CT_Caption {
|
|
2355
|
+
name: string;
|
|
2356
|
+
pos: ST_CaptionPos;
|
|
2357
|
+
chapNum: ST_OnOff;
|
|
2358
|
+
heading: number;
|
|
2359
|
+
noLabel: ST_OnOff;
|
|
2360
|
+
numFmt: ST_NumberFormat;
|
|
2361
|
+
sep: ST_ChapterSep;
|
|
2362
|
+
}
|
|
2363
|
+
export interface CT_AutoCaption {
|
|
2364
|
+
name: string;
|
|
2365
|
+
caption: string;
|
|
2366
|
+
}
|
|
2367
|
+
export interface CT_AutoCaptions {
|
|
2368
|
+
autoCaption: CT_AutoCaption[];
|
|
2369
|
+
}
|
|
2370
|
+
export interface CT_Captions {
|
|
2371
|
+
caption: CT_Caption[];
|
|
2372
|
+
autoCaptions: CT_AutoCaptions;
|
|
2373
|
+
}
|
|
2374
|
+
export interface CT_SmartTagType {
|
|
2375
|
+
namespaceuri: string;
|
|
2376
|
+
name: string;
|
|
2377
|
+
url: string;
|
|
2378
|
+
}
|
|
2379
|
+
export interface CT_Settings {
|
|
2380
|
+
writeProtection: CT_WriteProtection[];
|
|
2381
|
+
view: CT_View[];
|
|
2382
|
+
zoom: CT_Zoom[];
|
|
2383
|
+
removePersonalInformation: CT_OnOff[];
|
|
2384
|
+
removeDateAndTime: CT_OnOff[];
|
|
2385
|
+
doNotDisplayPageBoundaries: CT_OnOff[];
|
|
2386
|
+
displayBackgroundShape: CT_OnOff[];
|
|
2387
|
+
printPostScriptOverText: CT_OnOff[];
|
|
2388
|
+
printFractionalCharacterWidth: CT_OnOff[];
|
|
2389
|
+
printFormsData: CT_OnOff[];
|
|
2390
|
+
embedTrueTypeFonts: CT_OnOff[];
|
|
2391
|
+
embedSystemFonts: CT_OnOff[];
|
|
2392
|
+
saveSubsetFonts: CT_OnOff[];
|
|
2393
|
+
saveFormsData: CT_OnOff[];
|
|
2394
|
+
mirrorMargins: CT_OnOff[];
|
|
2395
|
+
alignBordersAndEdges: CT_OnOff[];
|
|
2396
|
+
bordersDoNotSurroundHeader: CT_OnOff[];
|
|
2397
|
+
bordersDoNotSurroundFooter: CT_OnOff[];
|
|
2398
|
+
gutterAtTop: CT_OnOff[];
|
|
2399
|
+
hideSpellingErrors: CT_OnOff[];
|
|
2400
|
+
hideGrammaticalErrors: CT_OnOff[];
|
|
2401
|
+
activeWritingStyle: CT_WritingStyle[];
|
|
2402
|
+
proofState: CT_Proof[];
|
|
2403
|
+
formsDesign: CT_OnOff[];
|
|
2404
|
+
attachedTemplate: CT_Rel[];
|
|
2405
|
+
linkStyles: CT_OnOff[];
|
|
2406
|
+
stylePaneFormatFilter: CT_StylePaneFilter[];
|
|
2407
|
+
stylePaneSortMethod: CT_StyleSort[];
|
|
2408
|
+
documentType: CT_DocType[];
|
|
2409
|
+
mailMerge: CT_MailMerge[];
|
|
2410
|
+
revisionView: CT_TrackChangesView[];
|
|
2411
|
+
trackRevisions: CT_OnOff[];
|
|
2412
|
+
doNotTrackMoves: CT_OnOff[];
|
|
2413
|
+
doNotTrackFormatting: CT_OnOff[];
|
|
2414
|
+
documentProtection: CT_DocProtect[];
|
|
2415
|
+
autoFormatOverride: CT_OnOff[];
|
|
2416
|
+
styleLockTheme: CT_OnOff[];
|
|
2417
|
+
styleLockQFSet: CT_OnOff[];
|
|
2418
|
+
defaultTabStop: CT_TwipsMeasure[];
|
|
2419
|
+
autoHyphenation: CT_OnOff[];
|
|
2420
|
+
consecutiveHyphenLimit: CT_DecimalNumber[];
|
|
2421
|
+
hyphenationZone: CT_TwipsMeasure[];
|
|
2422
|
+
doNotHyphenateCaps: CT_OnOff[];
|
|
2423
|
+
showEnvelope: CT_OnOff[];
|
|
2424
|
+
summaryLength: CT_DecimalNumberOrPrecent[];
|
|
2425
|
+
clickAndTypeStyle: CT_String[];
|
|
2426
|
+
defaultTableStyle: CT_String[];
|
|
2427
|
+
evenAndOddHeaders: CT_OnOff[];
|
|
2428
|
+
bookFoldRevPrinting: CT_OnOff[];
|
|
2429
|
+
bookFoldPrinting: CT_OnOff[];
|
|
2430
|
+
bookFoldPrintingSheets: CT_DecimalNumber[];
|
|
2431
|
+
drawingGridHorizontalSpacing: CT_TwipsMeasure[];
|
|
2432
|
+
drawingGridVerticalSpacing: CT_TwipsMeasure[];
|
|
2433
|
+
displayHorizontalDrawingGridEvery: CT_DecimalNumber[];
|
|
2434
|
+
displayVerticalDrawingGridEvery: CT_DecimalNumber[];
|
|
2435
|
+
doNotUseMarginsForDrawingGridOrigin: CT_OnOff[];
|
|
2436
|
+
drawingGridHorizontalOrigin: CT_TwipsMeasure[];
|
|
2437
|
+
drawingGridVerticalOrigin: CT_TwipsMeasure[];
|
|
2438
|
+
doNotShadeFormData: CT_OnOff[];
|
|
2439
|
+
noPunctuationKerning: CT_OnOff[];
|
|
2440
|
+
characterSpacingControl: CT_CharacterSpacing[];
|
|
2441
|
+
printTwoOnOne: CT_OnOff[];
|
|
2442
|
+
strictFirstAndLastChars: CT_OnOff[];
|
|
2443
|
+
noLineBreaksAfter: CT_Kinsoku[];
|
|
2444
|
+
noLineBreaksBefore: CT_Kinsoku[];
|
|
2445
|
+
savePreviewPicture: CT_OnOff[];
|
|
2446
|
+
doNotValidateAgainstSchema: CT_OnOff[];
|
|
2447
|
+
saveInvalidXml: CT_OnOff[];
|
|
2448
|
+
ignoreMixedContent: CT_OnOff[];
|
|
2449
|
+
alwaysShowPlaceholderText: CT_OnOff[];
|
|
2450
|
+
doNotDemarcateInvalidXml: CT_OnOff[];
|
|
2451
|
+
saveXmlDataOnly: CT_OnOff[];
|
|
2452
|
+
useXSLTWhenSaving: CT_OnOff[];
|
|
2453
|
+
saveThroughXslt: CT_SaveThroughXslt[];
|
|
2454
|
+
showXMLTags: CT_OnOff[];
|
|
2455
|
+
alwaysMergeEmptyNamespace: CT_OnOff[];
|
|
2456
|
+
updateFields: CT_OnOff[];
|
|
2457
|
+
footnotePr: CT_FtnDocProps[];
|
|
2458
|
+
endnotePr: CT_EdnDocProps[];
|
|
2459
|
+
compat: CT_Compat[];
|
|
2460
|
+
docVars: CT_DocVars[];
|
|
2461
|
+
rsids: CT_DocRsids[];
|
|
2462
|
+
attachedSchema: CT_String[];
|
|
2463
|
+
themeFontLang: CT_Language;
|
|
2464
|
+
clrSchemeMapping: CT_ColorSchemeMapping[];
|
|
2465
|
+
doNotIncludeSubdocsInStats: CT_OnOff[];
|
|
2466
|
+
doNotAutoCompressPictures: CT_OnOff[];
|
|
2467
|
+
forceUpgrade: CT_Empty;
|
|
2468
|
+
captions: CT_Captions;
|
|
2469
|
+
readModeInkLockDown: CT_ReadingModeInkLockDown[];
|
|
2470
|
+
smartTagType: CT_SmartTagType[];
|
|
2471
|
+
doNotEmbedSmartTags: CT_OnOff[];
|
|
2472
|
+
decimalSymbol: CT_String;
|
|
2473
|
+
listSeparator: CT_String;
|
|
2474
|
+
}
|
|
2475
|
+
export interface CT_FramesetSplitbar {
|
|
2476
|
+
w: CT_TwipsMeasure[];
|
|
2477
|
+
color: CT_Color[];
|
|
2478
|
+
noBorder: CT_OnOff[];
|
|
2479
|
+
flatBorders: CT_OnOff[];
|
|
2480
|
+
}
|
|
118
2481
|
export type ST_FrameLayout = 'rows' | 'cols' | 'none';
|
|
2482
|
+
export interface CT_FrameLayout {
|
|
2483
|
+
val: ST_FrameLayout;
|
|
2484
|
+
}
|
|
2485
|
+
export interface CT_Frameset {
|
|
2486
|
+
sz: CT_String[];
|
|
2487
|
+
framesetSplitbar: CT_FramesetSplitbar[];
|
|
2488
|
+
frameLayout: CT_FrameLayout[];
|
|
2489
|
+
title: CT_String[];
|
|
2490
|
+
}
|
|
2491
|
+
export interface CT_OptimizeForBrowser {
|
|
2492
|
+
}
|
|
2493
|
+
export interface CT_WebSettings {
|
|
2494
|
+
frameset: CT_Frameset[];
|
|
2495
|
+
divs: CT_Divs[];
|
|
2496
|
+
encoding: CT_String[];
|
|
2497
|
+
optimizeForBrowser: CT_OptimizeForBrowser[];
|
|
2498
|
+
allowPNG: CT_OnOff[];
|
|
2499
|
+
doNotRelyOnCSS: CT_OnOff[];
|
|
2500
|
+
doNotSaveAsSingleFile: CT_OnOff[];
|
|
2501
|
+
doNotOrganizeInFolder: CT_OnOff[];
|
|
2502
|
+
doNotUseLongFileNames: CT_OnOff[];
|
|
2503
|
+
pixelsPerInch: CT_DecimalNumber[];
|
|
2504
|
+
targetScreenSz: CT_TargetScreenSz[];
|
|
2505
|
+
saveSmartTagsAsXml: CT_OnOff[];
|
|
2506
|
+
}
|
|
2507
|
+
export type ST_FrameScrollbar = 'on' | 'off' | 'auto';
|
|
2508
|
+
export interface CT_FrameScrollbar {
|
|
2509
|
+
val: ST_FrameScrollbar;
|
|
2510
|
+
}
|
|
2511
|
+
export interface CT_Frame {
|
|
2512
|
+
sz: CT_String[];
|
|
2513
|
+
name: CT_String[];
|
|
2514
|
+
title: CT_String[];
|
|
2515
|
+
longDesc: CT_Rel[];
|
|
2516
|
+
sourceFileName: CT_Rel[];
|
|
2517
|
+
marW: CT_PixelsMeasure[];
|
|
2518
|
+
marH: CT_PixelsMeasure[];
|
|
2519
|
+
scrollbar: CT_FrameScrollbar[];
|
|
2520
|
+
noResizeAllowed: CT_OnOff[];
|
|
2521
|
+
linkedToFile: CT_OnOff[];
|
|
2522
|
+
}
|
|
2523
|
+
export interface CT_NumPicBullet {
|
|
2524
|
+
drawing: CT_Drawing[];
|
|
2525
|
+
numPicBulletId: number;
|
|
2526
|
+
}
|
|
119
2527
|
export type ST_LevelSuffix = 'tab' | 'space' | 'nothing';
|
|
2528
|
+
export interface CT_LevelSuffix {
|
|
2529
|
+
val: ST_LevelSuffix;
|
|
2530
|
+
}
|
|
2531
|
+
export interface CT_LevelText {
|
|
2532
|
+
val: string;
|
|
2533
|
+
null: ST_OnOff;
|
|
2534
|
+
}
|
|
2535
|
+
export interface CT_Lvl {
|
|
2536
|
+
start: CT_DecimalNumber[];
|
|
2537
|
+
numFmt: CT_NumFmt[];
|
|
2538
|
+
lvlRestart: CT_DecimalNumber[];
|
|
2539
|
+
pStyle: CT_String[];
|
|
2540
|
+
isLgl: CT_OnOff[];
|
|
2541
|
+
suff: CT_LevelSuffix[];
|
|
2542
|
+
lvlText: CT_LevelText[];
|
|
2543
|
+
lvlPicBulletId: CT_DecimalNumber[];
|
|
2544
|
+
lvlJc: CT_Jc[];
|
|
2545
|
+
pPr: CT_PPrGeneral[];
|
|
2546
|
+
rPr: CT_RPr[];
|
|
2547
|
+
ilvl: number;
|
|
2548
|
+
tplc: string;
|
|
2549
|
+
tentative: ST_OnOff;
|
|
2550
|
+
}
|
|
120
2551
|
export type ST_MultiLevelType = 'singleLevel' | 'multilevel' | 'hybridMultilevel';
|
|
2552
|
+
export interface CT_MultiLevelType {
|
|
2553
|
+
val: ST_MultiLevelType;
|
|
2554
|
+
}
|
|
2555
|
+
export interface CT_AbstractNum {
|
|
2556
|
+
nsid: CT_LongHexNumber[];
|
|
2557
|
+
multiLevelType: CT_MultiLevelType[];
|
|
2558
|
+
tmpl: CT_LongHexNumber[];
|
|
2559
|
+
name: CT_String[];
|
|
2560
|
+
styleLink: CT_String[];
|
|
2561
|
+
numStyleLink: CT_String[];
|
|
2562
|
+
lvl: CT_Lvl[];
|
|
2563
|
+
abstractNumId: number;
|
|
2564
|
+
}
|
|
2565
|
+
export interface CT_NumLvl {
|
|
2566
|
+
startOverride: CT_DecimalNumber[];
|
|
2567
|
+
lvl: CT_Lvl;
|
|
2568
|
+
ilvl: number;
|
|
2569
|
+
}
|
|
2570
|
+
export interface CT_Num {
|
|
2571
|
+
abstractNumId: CT_DecimalNumber[];
|
|
2572
|
+
lvlOverride: CT_NumLvl[];
|
|
2573
|
+
numId: number;
|
|
2574
|
+
}
|
|
2575
|
+
export interface CT_Numbering {
|
|
2576
|
+
numPicBullet: CT_NumPicBullet[];
|
|
2577
|
+
abstractNum: CT_AbstractNum[];
|
|
2578
|
+
num: CT_Num[];
|
|
2579
|
+
numIdMacAtCleanup: CT_DecimalNumber[];
|
|
2580
|
+
}
|
|
121
2581
|
export type ST_TblStyleOverrideType = 'wholeTable' | 'firstRow' | 'lastRow' | 'firstCol' | 'lastCol' | 'band1Vert' | 'band2Vert' | 'band1Horz' | 'band2Horz' | 'neCell' | 'nwCell' | 'seCell' | 'swCell';
|
|
2582
|
+
export interface CT_TblStylePr {
|
|
2583
|
+
pPr: CT_PPrGeneral[];
|
|
2584
|
+
rPr: CT_RPr[];
|
|
2585
|
+
tblPr: CT_TblPrBase[];
|
|
2586
|
+
trPr: CT_TrPr;
|
|
2587
|
+
tcPr: CT_TcPr;
|
|
2588
|
+
type: ST_TblStyleOverrideType;
|
|
2589
|
+
}
|
|
122
2590
|
export type ST_StyleType = 'paragraph' | 'character' | 'table' | 'numbering';
|
|
2591
|
+
export interface CT_Style {
|
|
2592
|
+
name: CT_String;
|
|
2593
|
+
aliases: CT_String[];
|
|
2594
|
+
basedOn: CT_String[];
|
|
2595
|
+
next: CT_String[];
|
|
2596
|
+
link: CT_String[];
|
|
2597
|
+
autoRedefine: CT_OnOff[];
|
|
2598
|
+
hidden: CT_OnOff[];
|
|
2599
|
+
uiPriority: CT_DecimalNumber[];
|
|
2600
|
+
semiHidden: CT_OnOff[];
|
|
2601
|
+
unhideWhenUsed: CT_OnOff[];
|
|
2602
|
+
qFormat: CT_OnOff[];
|
|
2603
|
+
locked: CT_OnOff[];
|
|
2604
|
+
personal: CT_OnOff[];
|
|
2605
|
+
personalCompose: CT_OnOff[];
|
|
2606
|
+
personalReply: CT_OnOff[];
|
|
2607
|
+
rsid: CT_LongHexNumber[];
|
|
2608
|
+
pPr: CT_PPrGeneral;
|
|
2609
|
+
rPr: CT_RPr;
|
|
2610
|
+
tblPr: CT_TblPrBase;
|
|
2611
|
+
trPr: CT_TrPr;
|
|
2612
|
+
tcPr: CT_TcPr;
|
|
2613
|
+
tblStylePr: CT_TblStylePr[];
|
|
2614
|
+
type: ST_StyleType;
|
|
2615
|
+
styleId: string;
|
|
2616
|
+
default: ST_OnOff;
|
|
2617
|
+
customStyle: ST_OnOff;
|
|
2618
|
+
}
|
|
2619
|
+
export interface CT_LsdException {
|
|
2620
|
+
name: string;
|
|
2621
|
+
locked: ST_OnOff;
|
|
2622
|
+
uiPriority: number;
|
|
2623
|
+
semiHidden: ST_OnOff;
|
|
2624
|
+
unhideWhenUsed: ST_OnOff;
|
|
2625
|
+
qFormat: ST_OnOff;
|
|
2626
|
+
}
|
|
2627
|
+
export interface CT_LatentStyles {
|
|
2628
|
+
lsdException: CT_LsdException[];
|
|
2629
|
+
defLockedState: ST_OnOff;
|
|
2630
|
+
defUIPriority: number;
|
|
2631
|
+
defSemiHidden: ST_OnOff;
|
|
2632
|
+
defUnhideWhenUsed: ST_OnOff;
|
|
2633
|
+
defQFormat: ST_OnOff;
|
|
2634
|
+
count: number;
|
|
2635
|
+
}
|
|
2636
|
+
export interface CT_Styles {
|
|
2637
|
+
docDefaults: CT_DocDefaults[];
|
|
2638
|
+
latentStyles: CT_LatentStyles;
|
|
2639
|
+
style: CT_Style[];
|
|
2640
|
+
}
|
|
2641
|
+
export interface CT_Panose {
|
|
2642
|
+
val: string;
|
|
2643
|
+
}
|
|
123
2644
|
export type ST_FontFamily = 'decorative' | 'modern' | 'roman' | 'script' | 'swiss' | 'auto';
|
|
2645
|
+
export interface CT_FontFamily {
|
|
2646
|
+
val: ST_FontFamily;
|
|
2647
|
+
}
|
|
124
2648
|
export type ST_Pitch = 'fixed' | 'variable' | 'default';
|
|
125
|
-
export
|
|
2649
|
+
export interface CT_Pitch {
|
|
2650
|
+
val: ST_Pitch;
|
|
2651
|
+
}
|
|
2652
|
+
export interface CT_FontSig {
|
|
2653
|
+
usb0: string;
|
|
2654
|
+
usb1: string;
|
|
2655
|
+
usb2: string;
|
|
2656
|
+
usb3: string;
|
|
2657
|
+
csb0: string;
|
|
2658
|
+
csb1: string;
|
|
2659
|
+
}
|
|
2660
|
+
export interface CT_FontRel {
|
|
2661
|
+
}
|
|
2662
|
+
export interface CT_Font {
|
|
2663
|
+
altName: CT_String;
|
|
2664
|
+
panose1: CT_Panose;
|
|
2665
|
+
charset: CT_Charset;
|
|
2666
|
+
family: CT_FontFamily;
|
|
2667
|
+
notTrueType: CT_OnOff;
|
|
2668
|
+
pitch: CT_Pitch;
|
|
2669
|
+
sig: CT_FontSig;
|
|
2670
|
+
embedRegular: CT_FontRel;
|
|
2671
|
+
embedBold: CT_FontRel;
|
|
2672
|
+
embedItalic: CT_FontRel;
|
|
2673
|
+
embedBoldItalic: CT_FontRel;
|
|
2674
|
+
name: string;
|
|
2675
|
+
}
|
|
2676
|
+
export interface CT_FontsList {
|
|
2677
|
+
font: CT_Font[];
|
|
2678
|
+
}
|
|
2679
|
+
export interface CT_DivBdr {
|
|
2680
|
+
top: CT_Border[];
|
|
2681
|
+
left: CT_Border[];
|
|
2682
|
+
bottom: CT_Border[];
|
|
2683
|
+
right: CT_Border[];
|
|
2684
|
+
}
|
|
2685
|
+
export interface CT_Div {
|
|
2686
|
+
blockQuote: CT_OnOff[];
|
|
2687
|
+
bodyDiv: CT_OnOff[];
|
|
2688
|
+
marLeft: CT_SignedTwipsMeasure[];
|
|
2689
|
+
marRight: CT_SignedTwipsMeasure[];
|
|
2690
|
+
marTop: CT_SignedTwipsMeasure[];
|
|
2691
|
+
marBottom: CT_SignedTwipsMeasure[];
|
|
2692
|
+
divBdr: CT_DivBdr[];
|
|
2693
|
+
divsChild: CT_Divs[];
|
|
2694
|
+
id: number;
|
|
2695
|
+
}
|
|
2696
|
+
export interface CT_Divs {
|
|
2697
|
+
div: CT_Div[];
|
|
2698
|
+
}
|
|
2699
|
+
export interface CT_Body {
|
|
2700
|
+
sectPr: CT_SectPr;
|
|
2701
|
+
}
|
|
2702
|
+
export interface CT_Comments {
|
|
2703
|
+
comment: CT_Comment[];
|
|
2704
|
+
}
|
|
2705
|
+
export interface CT_Footnotes {
|
|
2706
|
+
footnote: CT_FtnEdn[];
|
|
2707
|
+
}
|
|
2708
|
+
export interface CT_Endnotes {
|
|
2709
|
+
endnote: CT_FtnEdn[];
|
|
2710
|
+
}
|
|
126
2711
|
export type ST_DocPartBehavior = 'content' | 'p' | 'pg';
|
|
2712
|
+
export interface CT_DocPartBehavior {
|
|
2713
|
+
val: ST_DocPartBehavior;
|
|
2714
|
+
}
|
|
2715
|
+
export interface CT_DocPartBehaviors {
|
|
2716
|
+
behavior: CT_DocPartBehavior[];
|
|
2717
|
+
}
|
|
127
2718
|
export type ST_DocPartType = 'none' | 'normal' | 'autoExp' | 'toolbar' | 'speller' | 'formFld' | 'bbPlcHdr';
|
|
2719
|
+
export interface CT_DocPartType {
|
|
2720
|
+
val: ST_DocPartType;
|
|
2721
|
+
}
|
|
2722
|
+
export interface CT_DocPartTypes {
|
|
2723
|
+
type: CT_DocPartType[];
|
|
2724
|
+
all: ST_OnOff;
|
|
2725
|
+
}
|
|
128
2726
|
export type ST_DocPartGallery = 'placeholder' | 'any' | 'default' | 'docParts' | 'coverPg' | 'eq' | 'ftrs' | 'hdrs' | 'pgNum' | 'tbls' | 'watermarks' | 'autoTxt' | 'txtBox' | 'pgNumT' | 'pgNumB' | 'pgNumMargins' | 'tblOfContents' | 'bib' | 'custQuickParts' | 'custCoverPg' | 'custEq' | 'custFtrs' | 'custHdrs' | 'custPgNum' | 'custTbls' | 'custWatermarks' | 'custAutoTxt' | 'custTxtBox' | 'custPgNumT' | 'custPgNumB' | 'custPgNumMargins' | 'custTblOfContents' | 'custBib' | 'custom1' | 'custom2' | 'custom3' | 'custom4' | 'custom5';
|
|
129
|
-
export
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
export
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
export
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
export
|
|
141
|
-
|
|
142
|
-
export
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
export
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
export
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
export
|
|
153
|
-
|
|
154
|
-
export
|
|
155
|
-
|
|
156
|
-
export
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
export type ST_PathShadeType = 'shape' | 'circle' | 'rect';
|
|
163
|
-
export type ST_TileFlipMode = 'none' | 'x' | 'y' | 'xy';
|
|
164
|
-
export type ST_BlipCompression = 'email' | 'screen' | 'print' | 'hqprint' | 'none';
|
|
165
|
-
export type ST_PresetPatternVal = 'pct5' | 'pct10' | 'pct20' | 'pct25' | 'pct30' | 'pct40' | 'pct50' | 'pct60' | 'pct70' | 'pct75' | 'pct80' | 'pct90' | 'horz' | 'vert' | 'ltHorz' | 'ltVert' | 'dkHorz' | 'dkVert' | 'narHorz' | 'narVert' | 'dashHorz' | 'dashVert' | 'cross' | 'dnDiag' | 'upDiag' | 'ltDnDiag' | 'ltUpDiag' | 'dkDnDiag' | 'dkUpDiag' | 'wdDnDiag' | 'wdUpDiag' | 'dashDnDiag' | 'dashUpDiag' | 'diagCross' | 'smCheck' | 'lgCheck' | 'smGrid' | 'lgGrid' | 'dotGrid' | 'smConfetti' | 'lgConfetti' | 'horzBrick' | 'diagBrick' | 'solidDmnd' | 'openDmnd' | 'dotDmnd' | 'plaid' | 'sphere' | 'weave' | 'divot' | 'shingle' | 'wave' | 'trellis' | 'zigZag';
|
|
166
|
-
export type ST_BlendMode = 'over' | 'mult' | 'screen' | 'darken' | 'lighten';
|
|
167
|
-
export type ST_EffectContainerType = 'sib' | 'tree';
|
|
168
|
-
export type ST_ShapeType = 'line' | 'lineInv' | 'triangle' | 'rtTriangle' | 'rect' | 'diamond' | 'parallelogram' | 'trapezoid' | 'nonIsoscelesTrapezoid' | 'pentagon' | 'hexagon' | 'heptagon' | 'octagon' | 'decagon' | 'dodecagon' | 'star4' | 'star5' | 'star6' | 'star7' | 'star8' | 'star10' | 'star12' | 'star16' | 'star24' | 'star32' | 'roundRect' | 'round1Rect' | 'round2SameRect' | 'round2DiagRect' | 'snipRoundRect' | 'snip1Rect' | 'snip2SameRect' | 'snip2DiagRect' | 'plaque' | 'ellipse' | 'teardrop' | 'homePlate' | 'chevron' | 'pieWedge' | 'pie' | 'blockArc' | 'donut' | 'noSmoking' | 'rightArrow' | 'leftArrow' | 'upArrow' | 'downArrow' | 'stripedRightArrow' | 'notchedRightArrow' | 'bentUpArrow' | 'leftRightArrow' | 'upDownArrow' | 'leftUpArrow' | 'leftRightUpArrow' | 'quadArrow' | 'leftArrowCallout' | 'rightArrowCallout' | 'upArrowCallout' | 'downArrowCallout' | 'leftRightArrowCallout' | 'upDownArrowCallout' | 'quadArrowCallout' | 'bentArrow' | 'uturnArrow' | 'circularArrow' | 'leftCircularArrow' | 'leftRightCircularArrow' | 'curvedRightArrow' | 'curvedLeftArrow' | 'curvedUpArrow' | 'curvedDownArrow' | 'swooshArrow' | 'cube' | 'can' | 'lightningBolt' | 'heart' | 'sun' | 'moon' | 'smileyFace' | 'irregularSeal1' | 'irregularSeal2' | 'foldedCorner' | 'bevel' | 'frame' | 'halfFrame' | 'corner' | 'diagStripe' | 'chord' | 'arc' | 'leftBracket' | 'rightBracket' | 'leftBrace' | 'rightBrace' | 'bracketPair' | 'bracePair' | 'straightConnector1' | 'bentConnector2' | 'bentConnector3' | 'bentConnector4' | 'bentConnector5' | 'curvedConnector2' | 'curvedConnector3' | 'curvedConnector4' | 'curvedConnector5' | 'callout1' | 'callout2' | 'callout3' | 'accentCallout1' | 'accentCallout2' | 'accentCallout3' | 'borderCallout1' | 'borderCallout2' | 'borderCallout3' | 'accentBorderCallout1' | 'accentBorderCallout2' | 'accentBorderCallout3' | 'wedgeRectCallout' | 'wedgeRoundRectCallout' | 'wedgeEllipseCallout' | 'cloudCallout' | 'cloud' | 'ribbon' | 'ribbon2' | 'ellipseRibbon' | 'ellipseRibbon2' | 'leftRightRibbon' | 'verticalScroll' | 'horizontalScroll' | 'wave' | 'doubleWave' | 'plus' | 'flowChartProcess' | 'flowChartDecision' | 'flowChartInputOutput' | 'flowChartPredefinedProcess' | 'flowChartInternalStorage' | 'flowChartDocument' | 'flowChartMultidocument' | 'flowChartTerminator' | 'flowChartPreparation' | 'flowChartManualInput' | 'flowChartManualOperation' | 'flowChartConnector' | 'flowChartPunchedCard' | 'flowChartPunchedTape' | 'flowChartSummingJunction' | 'flowChartOr' | 'flowChartCollate' | 'flowChartSort' | 'flowChartExtract' | 'flowChartMerge' | 'flowChartOfflineStorage' | 'flowChartOnlineStorage' | 'flowChartMagneticTape' | 'flowChartMagneticDisk' | 'flowChartMagneticDrum' | 'flowChartDisplay' | 'flowChartDelay' | 'flowChartAlternateProcess' | 'flowChartOffpageConnector' | 'actionButtonBlank' | 'actionButtonHome' | 'actionButtonHelp' | 'actionButtonInformation' | 'actionButtonForwardNext' | 'actionButtonBackPrevious' | 'actionButtonEnd' | 'actionButtonBeginning' | 'actionButtonReturn' | 'actionButtonDocument' | 'actionButtonSound' | 'actionButtonMovie' | 'gear6' | 'gear9' | 'funnel' | 'mathPlus' | 'mathMinus' | 'mathMultiply' | 'mathDivide' | 'mathEqual' | 'mathNotEqual' | 'cornerTabs' | 'squareTabs' | 'plaqueTabs' | 'chartX' | 'chartStar' | 'chartPlus';
|
|
169
|
-
export type ST_TextShapeType = 'textNoShape' | 'textPlain' | 'textStop' | 'textTriangle' | 'textTriangleInverted' | 'textChevron' | 'textChevronInverted' | 'textRingInside' | 'textRingOutside' | 'textArchUp' | 'textArchDown' | 'textCircle' | 'textButton' | 'textArchUpPour' | 'textArchDownPour' | 'textCirclePour' | 'textButtonPour' | 'textCurveUp' | 'textCurveDown' | 'textCanUp' | 'textCanDown' | 'textWave1' | 'textWave2' | 'textDoubleWave1' | 'textWave4' | 'textInflate' | 'textDeflate' | 'textInflateBottom' | 'textDeflateBottom' | 'textInflateTop' | 'textDeflateTop' | 'textDeflateInflate' | 'textDeflateInflateDeflate' | 'textFadeRight' | 'textFadeLeft' | 'textFadeUp' | 'textFadeDown' | 'textSlantUp' | 'textSlantDown' | 'textCascadeUp' | 'textCascadeDown';
|
|
170
|
-
export type ST_GeomGuideName = string;
|
|
171
|
-
export type ST_GeomGuideFormula = string;
|
|
172
|
-
export type ST_AdjCoordinate = ST_Coordinate | ST_GeomGuideName;
|
|
173
|
-
export type ST_AdjAngle = ST_Angle | ST_GeomGuideName;
|
|
174
|
-
export type ST_PathFillMode = 'none' | 'norm' | 'lighten' | 'lightenLess' | 'darken' | 'darkenLess';
|
|
175
|
-
export type ST_LineEndType = 'none' | 'triangle' | 'stealth' | 'diamond' | 'oval' | 'arrow';
|
|
176
|
-
export type ST_LineEndWidth = 'sm' | 'med' | 'lg';
|
|
177
|
-
export type ST_LineEndLength = 'sm' | 'med' | 'lg';
|
|
178
|
-
export type ST_PresetLineDashVal = 'solid' | 'dot' | 'dash' | 'lgDash' | 'dashDot' | 'lgDashDot' | 'lgDashDotDot' | 'sysDash' | 'sysDot' | 'sysDashDot' | 'sysDashDotDot';
|
|
179
|
-
export type ST_LineCap = 'rnd' | 'sq' | 'flat';
|
|
180
|
-
export type ST_LineWidth = ST_Coordinate32Unqualified;
|
|
181
|
-
export type ST_PenAlignment = 'ctr' | 'in';
|
|
182
|
-
export type ST_CompoundLine = 'sng' | 'dbl' | 'thickThin' | 'thinThick' | 'tri';
|
|
183
|
-
export type ST_ShapeID = string;
|
|
184
|
-
export type ST_OnOffStyleType = 'on' | 'off' | 'def';
|
|
185
|
-
export type ST_TextAnchoringType = 't' | 'ctr' | 'b' | 'just' | 'dist';
|
|
186
|
-
export type ST_TextVertOverflowType = 'overflow' | 'ellipsis' | 'clip';
|
|
187
|
-
export type ST_TextHorzOverflowType = 'overflow' | 'clip';
|
|
188
|
-
export type ST_TextVerticalType = 'horz' | 'vert' | 'vert270' | 'wordArtVert' | 'eaVert' | 'mongolianVert' | 'wordArtVertRtl';
|
|
189
|
-
export type ST_TextWrappingType = 'none' | 'square';
|
|
190
|
-
export type ST_TextColumnCount = number;
|
|
191
|
-
export type ST_TextFontScalePercentOrPercentString = ST_Percentage;
|
|
192
|
-
export type ST_TextBulletStartAtNum = number;
|
|
193
|
-
export type ST_TextAutonumberScheme = 'alphaLcParenBoth' | 'alphaUcParenBoth' | 'alphaLcParenR' | 'alphaUcParenR' | 'alphaLcPeriod' | 'alphaUcPeriod' | 'arabicParenBoth' | 'arabicParenR' | 'arabicPeriod' | 'arabicPlain' | 'romanLcParenBoth' | 'romanUcParenBoth' | 'romanLcParenR' | 'romanUcParenR' | 'romanLcPeriod' | 'romanUcPeriod' | 'circleNumDbPlain' | 'circleNumWdBlackPlain' | 'circleNumWdWhitePlain' | 'arabicDbPeriod' | 'arabicDbPlain' | 'ea1ChsPeriod' | 'ea1ChsPlain' | 'ea1ChtPeriod' | 'ea1ChtPlain' | 'ea1JpnChsDbPeriod' | 'ea1JpnKorPlain' | 'ea1JpnKorPeriod' | 'arabic1Minus' | 'arabic2Minus' | 'hebrew2Minus' | 'thaiAlphaPeriod' | 'thaiAlphaParenR' | 'thaiAlphaParenBoth' | 'thaiNumPeriod' | 'thaiNumParenR' | 'thaiNumParenBoth' | 'hindiAlphaPeriod' | 'hindiNumPeriod' | 'hindiNumParenR' | 'hindiAlpha1Period';
|
|
194
|
-
export type ST_TextBulletSize = ST_TextBulletSizePercent;
|
|
195
|
-
export type ST_TextBulletSizePercent = string;
|
|
196
|
-
export type ST_TextPoint = ST_TextPointUnqualified | ST_UniversalMeasure;
|
|
197
|
-
export type ST_TextPointUnqualified = number;
|
|
198
|
-
export type ST_TextNonNegativePoint = number;
|
|
199
|
-
export type ST_TextFontSize = number;
|
|
200
|
-
export type ST_TextTypeface = string;
|
|
201
|
-
export type ST_PitchFamily = number;
|
|
202
|
-
export type ST_TextUnderlineType = 'none' | 'words' | 'sng' | 'dbl' | 'heavy' | 'dotted' | 'dottedHeavy' | 'dash' | 'dashHeavy' | 'dashLong' | 'dashLongHeavy' | 'dotDash' | 'dotDashHeavy' | 'dotDotDash' | 'dotDotDashHeavy' | 'wavy' | 'wavyHeavy' | 'wavyDbl';
|
|
203
|
-
export type ST_TextStrikeType = 'noStrike' | 'sngStrike' | 'dblStrike';
|
|
204
|
-
export type ST_TextCapsType = 'none' | 'small' | 'all';
|
|
205
|
-
export type ST_TextSpacingPoint = number;
|
|
206
|
-
export type ST_TextSpacingPercentOrPercentString = ST_Percentage;
|
|
207
|
-
export type ST_TextMargin = ST_Coordinate32Unqualified;
|
|
208
|
-
export type ST_TextIndent = ST_Coordinate32Unqualified;
|
|
209
|
-
export type ST_TextTabAlignType = 'l' | 'ctr' | 'r' | 'dec';
|
|
210
|
-
export type ST_TextAlignType = 'l' | 'ctr' | 'r' | 'just' | 'justLow' | 'dist' | 'thaiDist';
|
|
211
|
-
export type ST_TextFontAlignType = 'auto' | 't' | 'ctr' | 'base' | 'b';
|
|
212
|
-
export type ST_TextIndentLevelType = number;
|
|
2727
|
+
export interface CT_DocPartGallery {
|
|
2728
|
+
val: ST_DocPartGallery;
|
|
2729
|
+
}
|
|
2730
|
+
export interface CT_DocPartCategory {
|
|
2731
|
+
name: CT_String;
|
|
2732
|
+
gallery: CT_DocPartGallery;
|
|
2733
|
+
}
|
|
2734
|
+
export interface CT_DocPartName {
|
|
2735
|
+
val: string;
|
|
2736
|
+
decorated: ST_OnOff;
|
|
2737
|
+
}
|
|
2738
|
+
export interface CT_DocPartPr {
|
|
2739
|
+
}
|
|
2740
|
+
export interface CT_DocPart {
|
|
2741
|
+
docPartPr: CT_DocPartPr[];
|
|
2742
|
+
docPartBody: CT_Body[];
|
|
2743
|
+
}
|
|
2744
|
+
export interface CT_DocParts {
|
|
2745
|
+
docPart: CT_DocPart[];
|
|
2746
|
+
}
|
|
2747
|
+
export interface CT_DocumentBase {
|
|
2748
|
+
background: CT_Background[];
|
|
2749
|
+
}
|
|
2750
|
+
export interface CT_Document {
|
|
2751
|
+
}
|
|
2752
|
+
export interface CT_GlossaryDocument {
|
|
2753
|
+
}
|
|
2754
|
+
export interface CT_EffectExtent {
|
|
2755
|
+
l: ST_Coordinate;
|
|
2756
|
+
t: ST_Coordinate;
|
|
2757
|
+
r: ST_Coordinate;
|
|
2758
|
+
b: ST_Coordinate;
|
|
2759
|
+
}
|
|
213
2760
|
export type ST_WrapDistance = number;
|
|
2761
|
+
export interface CT_Inline {
|
|
2762
|
+
extent: CT_PositiveSize2D[];
|
|
2763
|
+
effectExtent: CT_EffectExtent[];
|
|
2764
|
+
docPr: CT_NonVisualDrawingProps;
|
|
2765
|
+
cNvGraphicFramePr: CT_NonVisualGraphicFrameProperties;
|
|
2766
|
+
distT: number;
|
|
2767
|
+
distB: number;
|
|
2768
|
+
distL: number;
|
|
2769
|
+
distR: number;
|
|
2770
|
+
}
|
|
214
2771
|
export type ST_WrapText = 'bothSides' | 'left' | 'right' | 'largest';
|
|
2772
|
+
export interface CT_WrapPath {
|
|
2773
|
+
start: CT_Point2D;
|
|
2774
|
+
lineTo: CT_Point2D[];
|
|
2775
|
+
edited: boolean;
|
|
2776
|
+
}
|
|
2777
|
+
export interface CT_WrapNone {
|
|
2778
|
+
}
|
|
2779
|
+
export interface CT_WrapSquare {
|
|
2780
|
+
effectExtent: CT_EffectExtent[];
|
|
2781
|
+
wrapText: ST_WrapText;
|
|
2782
|
+
distT: number;
|
|
2783
|
+
distB: number;
|
|
2784
|
+
distL: number;
|
|
2785
|
+
distR: number;
|
|
2786
|
+
}
|
|
2787
|
+
export interface CT_WrapTight {
|
|
2788
|
+
wrapPolygon: CT_WrapPath;
|
|
2789
|
+
wrapText: ST_WrapText;
|
|
2790
|
+
distL: number;
|
|
2791
|
+
distR: number;
|
|
2792
|
+
}
|
|
2793
|
+
export interface CT_WrapThrough {
|
|
2794
|
+
wrapPolygon: CT_WrapPath;
|
|
2795
|
+
wrapText: ST_WrapText;
|
|
2796
|
+
distL: number;
|
|
2797
|
+
distR: number;
|
|
2798
|
+
}
|
|
2799
|
+
export interface CT_WrapTopBottom {
|
|
2800
|
+
effectExtent: CT_EffectExtent[];
|
|
2801
|
+
distT: number;
|
|
2802
|
+
distB: number;
|
|
2803
|
+
}
|
|
215
2804
|
export type ST_PositionOffset = number;
|
|
216
2805
|
export type ST_AlignH = 'left' | 'right' | 'center' | 'inside' | 'outside';
|
|
217
2806
|
export type ST_RelFromH = 'margin' | 'page' | 'column' | 'character' | 'leftMargin' | 'rightMargin' | 'insideMargin' | 'outsideMargin';
|
|
2807
|
+
export interface CT_PosH {
|
|
2808
|
+
relativeFrom: ST_RelFromH;
|
|
2809
|
+
}
|
|
218
2810
|
export type ST_AlignV = 'top' | 'bottom' | 'center' | 'inside' | 'outside';
|
|
219
2811
|
export type ST_RelFromV = 'margin' | 'page' | 'paragraph' | 'line' | 'topMargin' | 'bottomMargin' | 'insideMargin' | 'outsideMargin';
|
|
2812
|
+
export interface CT_PosV {
|
|
2813
|
+
relativeFrom: ST_RelFromV;
|
|
2814
|
+
}
|
|
2815
|
+
export interface CT_Anchor {
|
|
2816
|
+
simplePos: boolean;
|
|
2817
|
+
positionH: CT_PosH[];
|
|
2818
|
+
positionV: CT_PosV[];
|
|
2819
|
+
extent: CT_PositiveSize2D[];
|
|
2820
|
+
effectExtent: CT_EffectExtent[];
|
|
2821
|
+
docPr: CT_NonVisualDrawingProps;
|
|
2822
|
+
cNvGraphicFramePr: CT_NonVisualGraphicFrameProperties;
|
|
2823
|
+
distT: number;
|
|
2824
|
+
distB: number;
|
|
2825
|
+
distL: number;
|
|
2826
|
+
distR: number;
|
|
2827
|
+
relativeHeight: number;
|
|
2828
|
+
behindDoc: boolean;
|
|
2829
|
+
locked: boolean;
|
|
2830
|
+
layoutInCell: boolean;
|
|
2831
|
+
hidden: boolean;
|
|
2832
|
+
allowOverlap: boolean;
|
|
2833
|
+
}
|
|
2834
|
+
export interface CT_TxbxContent {
|
|
2835
|
+
}
|
|
2836
|
+
export interface CT_TextboxInfo {
|
|
2837
|
+
txbxContent: CT_TxbxContent;
|
|
2838
|
+
extLst: CT_OfficeArtExtensionList;
|
|
2839
|
+
id: number;
|
|
2840
|
+
}
|
|
2841
|
+
export interface CT_LinkedTextboxInformation {
|
|
2842
|
+
extLst: CT_OfficeArtExtensionList;
|
|
2843
|
+
id: number;
|
|
2844
|
+
seq: number;
|
|
2845
|
+
}
|
|
2846
|
+
export interface CT_WordprocessingShape {
|
|
2847
|
+
cNvPr: CT_NonVisualDrawingProps;
|
|
2848
|
+
spPr: CT_ShapeProperties;
|
|
2849
|
+
style: CT_ShapeStyle;
|
|
2850
|
+
extLst: CT_OfficeArtExtensionList;
|
|
2851
|
+
bodyPr: CT_TextBodyProperties;
|
|
2852
|
+
normalEastAsianFlow: boolean;
|
|
2853
|
+
}
|
|
2854
|
+
export interface CT_GraphicFrame {
|
|
2855
|
+
cNvPr: CT_NonVisualDrawingProps;
|
|
2856
|
+
cNvFrPr: CT_NonVisualGraphicFrameProperties;
|
|
2857
|
+
xfrm: CT_Transform2D;
|
|
2858
|
+
extLst: CT_OfficeArtExtensionList;
|
|
2859
|
+
}
|
|
2860
|
+
export interface CT_WordprocessingContentPartNonVisual {
|
|
2861
|
+
cNvPr: CT_NonVisualDrawingProps;
|
|
2862
|
+
cNvContentPartPr: CT_NonVisualContentPartProperties;
|
|
2863
|
+
}
|
|
2864
|
+
export interface CT_WordprocessingContentPart {
|
|
2865
|
+
nvContentPartPr: CT_WordprocessingContentPartNonVisual;
|
|
2866
|
+
xfrm: CT_Transform2D;
|
|
2867
|
+
extLst: CT_OfficeArtExtensionList;
|
|
2868
|
+
bwMode: ST_BlackWhiteMode;
|
|
2869
|
+
r_id: string;
|
|
2870
|
+
}
|
|
2871
|
+
export interface CT_WordprocessingGroup {
|
|
2872
|
+
cNvPr: CT_NonVisualDrawingProps;
|
|
2873
|
+
cNvGrpSpPr: CT_NonVisualGroupDrawingShapeProps;
|
|
2874
|
+
grpSpPr: CT_GroupShapeProperties;
|
|
2875
|
+
extLst: CT_OfficeArtExtensionList;
|
|
2876
|
+
}
|
|
2877
|
+
export interface CT_WordprocessingCanvas {
|
|
2878
|
+
bg: CT_BackgroundFormatting;
|
|
2879
|
+
whole: CT_WholeE2oFormatting;
|
|
2880
|
+
extLst: CT_OfficeArtExtensionList;
|
|
2881
|
+
}
|