office-viewer 0.2.1 → 0.3.1
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/dist/index.css +500 -0
- package/dist/index.css.map +1 -0
- 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 +24 -21
- 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 +23 -20
- 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 +5 -1
- 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 +36 -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
|
@@ -0,0 +1,1836 @@
|
|
|
1
|
+
import { Attributes } from './Attributes';
|
|
2
|
+
export type ST_Lang = string;
|
|
3
|
+
export type ST_HexColorRGB = string;
|
|
4
|
+
export type ST_Panose = string;
|
|
5
|
+
export type ST_CalendarType = 'gregorian' | 'gregorianUs' | 'gregorianMeFrench' | 'gregorianArabic' | 'hijri' | 'hebrew' | 'taiwan' | 'japan' | 'thai' | 'korea' | 'saka' | 'gregorianXlitEnglish' | 'gregorianXlitFrench' | 'none';
|
|
6
|
+
export type ST_Guid = string;
|
|
7
|
+
export type ST_OnOff = boolean;
|
|
8
|
+
export type ST_String = string;
|
|
9
|
+
export type ST_XmlName = string;
|
|
10
|
+
export type ST_UnsignedDecimalNumber = number;
|
|
11
|
+
export type ST_TwipsMeasure = ST_UnsignedDecimalNumber | ST_PositiveUniversalMeasure;
|
|
12
|
+
export type ST_VerticalAlignRun = 'baseline' | 'superscript' | 'subscript';
|
|
13
|
+
export type ST_Xstring = string;
|
|
14
|
+
export type ST_XAlign = 'left' | 'center' | 'right' | 'inside' | 'outside';
|
|
15
|
+
export type ST_YAlign = 'inline' | 'top' | 'center' | 'bottom' | 'inside' | 'outside';
|
|
16
|
+
export type ST_ConformanceClass = 'strict' | 'transitional';
|
|
17
|
+
export type ST_UniversalMeasure = string;
|
|
18
|
+
export type ST_PositiveUniversalMeasure = ST_UniversalMeasure;
|
|
19
|
+
export type ST_Percentage = string;
|
|
20
|
+
export type ST_FixedPercentage = string;
|
|
21
|
+
export type ST_PositivePercentage = string;
|
|
22
|
+
export type ST_PositiveFixedPercentage = string;
|
|
23
|
+
export interface CT_OfficeArtExtension {
|
|
24
|
+
uri?: string;
|
|
25
|
+
}
|
|
26
|
+
export declare const CT_OfficeArtExtension_Attributes: Attributes;
|
|
27
|
+
export interface CT_OfficeArtExtensionList {
|
|
28
|
+
ext?: CT_OfficeArtExtension[];
|
|
29
|
+
}
|
|
30
|
+
export declare const CT_OfficeArtExtensionList_Attributes: Attributes;
|
|
31
|
+
export interface CT_AudioFile {
|
|
32
|
+
extLst?: CT_OfficeArtExtensionList;
|
|
33
|
+
contentType?: string;
|
|
34
|
+
}
|
|
35
|
+
export declare const CT_AudioFile_Attributes: Attributes;
|
|
36
|
+
export interface CT_VideoFile {
|
|
37
|
+
extLst?: CT_OfficeArtExtensionList;
|
|
38
|
+
contentType?: string;
|
|
39
|
+
}
|
|
40
|
+
export declare const CT_VideoFile_Attributes: Attributes;
|
|
41
|
+
export interface CT_QuickTimeFile {
|
|
42
|
+
extLst?: CT_OfficeArtExtensionList;
|
|
43
|
+
}
|
|
44
|
+
export declare const CT_QuickTimeFile_Attributes: Attributes;
|
|
45
|
+
export interface CT_AudioCDTime {
|
|
46
|
+
track?: number;
|
|
47
|
+
time?: number;
|
|
48
|
+
}
|
|
49
|
+
export declare const CT_AudioCDTime_Attributes: Attributes;
|
|
50
|
+
export interface CT_AudioCD {
|
|
51
|
+
st?: CT_AudioCDTime;
|
|
52
|
+
end?: CT_AudioCDTime;
|
|
53
|
+
extLst?: CT_OfficeArtExtensionList;
|
|
54
|
+
}
|
|
55
|
+
export declare const CT_AudioCD_Attributes: Attributes;
|
|
56
|
+
export type ST_StyleMatrixColumnIndex = number;
|
|
57
|
+
export type ST_FontCollectionIndex = 'major' | 'minor' | 'none';
|
|
58
|
+
export type ST_ColorSchemeIndex = 'dk1' | 'lt1' | 'dk2' | 'lt2' | 'accent1' | 'accent2' | 'accent3' | 'accent4' | 'accent5' | 'accent6' | 'hlink' | 'folHlink';
|
|
59
|
+
export interface CT_PositiveFixedPercentage {
|
|
60
|
+
val?: ST_PositiveFixedPercentage;
|
|
61
|
+
}
|
|
62
|
+
export declare const CT_PositiveFixedPercentage_Attributes: Attributes;
|
|
63
|
+
export interface CT_ComplementTransform {
|
|
64
|
+
}
|
|
65
|
+
export declare const CT_ComplementTransform_Attributes: Attributes;
|
|
66
|
+
export interface CT_InverseTransform {
|
|
67
|
+
}
|
|
68
|
+
export declare const CT_InverseTransform_Attributes: Attributes;
|
|
69
|
+
export interface CT_GrayscaleTransform {
|
|
70
|
+
}
|
|
71
|
+
export declare const CT_GrayscaleTransform_Attributes: Attributes;
|
|
72
|
+
export interface CT_FixedPercentage {
|
|
73
|
+
val?: ST_FixedPercentage;
|
|
74
|
+
}
|
|
75
|
+
export declare const CT_FixedPercentage_Attributes: Attributes;
|
|
76
|
+
export interface CT_PositivePercentage {
|
|
77
|
+
val?: ST_PositivePercentage;
|
|
78
|
+
}
|
|
79
|
+
export declare const CT_PositivePercentage_Attributes: Attributes;
|
|
80
|
+
export type ST_PositiveFixedAngle = ST_Angle;
|
|
81
|
+
export interface CT_PositiveFixedAngle {
|
|
82
|
+
val?: number;
|
|
83
|
+
}
|
|
84
|
+
export declare const CT_PositiveFixedAngle_Attributes: Attributes;
|
|
85
|
+
export type ST_Angle = number;
|
|
86
|
+
export interface CT_Angle {
|
|
87
|
+
val?: number;
|
|
88
|
+
}
|
|
89
|
+
export declare const CT_Angle_Attributes: Attributes;
|
|
90
|
+
export interface CT_Percentage {
|
|
91
|
+
val?: string;
|
|
92
|
+
}
|
|
93
|
+
export declare const CT_Percentage_Attributes: Attributes;
|
|
94
|
+
export interface CT_GammaTransform {
|
|
95
|
+
}
|
|
96
|
+
export declare const CT_GammaTransform_Attributes: Attributes;
|
|
97
|
+
export interface CT_InverseGammaTransform {
|
|
98
|
+
}
|
|
99
|
+
export declare const CT_InverseGammaTransform_Attributes: Attributes;
|
|
100
|
+
export interface CT_ScRgbColor {
|
|
101
|
+
tint?: CT_PositiveFixedPercentage;
|
|
102
|
+
shade?: CT_PositiveFixedPercentage;
|
|
103
|
+
comp?: CT_ComplementTransform;
|
|
104
|
+
inv?: CT_InverseTransform;
|
|
105
|
+
gray?: CT_GrayscaleTransform;
|
|
106
|
+
alpha?: CT_PositiveFixedPercentage;
|
|
107
|
+
alphaOff?: CT_FixedPercentage;
|
|
108
|
+
alphaMod?: CT_PositivePercentage;
|
|
109
|
+
hue?: CT_PositiveFixedAngle;
|
|
110
|
+
hueOff?: CT_Angle;
|
|
111
|
+
hueMod?: CT_PositivePercentage;
|
|
112
|
+
sat?: CT_Percentage;
|
|
113
|
+
satOff?: CT_Percentage;
|
|
114
|
+
satMod?: CT_Percentage;
|
|
115
|
+
lum?: CT_Percentage;
|
|
116
|
+
lumOff?: CT_Percentage;
|
|
117
|
+
lumMod?: CT_Percentage;
|
|
118
|
+
red?: CT_Percentage;
|
|
119
|
+
redOff?: CT_Percentage;
|
|
120
|
+
redMod?: CT_Percentage;
|
|
121
|
+
green?: CT_Percentage;
|
|
122
|
+
greenOff?: CT_Percentage;
|
|
123
|
+
greenMod?: CT_Percentage;
|
|
124
|
+
blue?: CT_Percentage;
|
|
125
|
+
blueOff?: CT_Percentage;
|
|
126
|
+
blueMod?: CT_Percentage;
|
|
127
|
+
gamma?: CT_GammaTransform;
|
|
128
|
+
invGamma?: CT_InverseGammaTransform;
|
|
129
|
+
r?: string;
|
|
130
|
+
g?: string;
|
|
131
|
+
b?: string;
|
|
132
|
+
}
|
|
133
|
+
export declare const CT_ScRgbColor_Attributes: Attributes;
|
|
134
|
+
export interface CT_SRgbColor {
|
|
135
|
+
tint?: CT_PositiveFixedPercentage;
|
|
136
|
+
shade?: CT_PositiveFixedPercentage;
|
|
137
|
+
comp?: CT_ComplementTransform;
|
|
138
|
+
inv?: CT_InverseTransform;
|
|
139
|
+
gray?: CT_GrayscaleTransform;
|
|
140
|
+
alpha?: CT_PositiveFixedPercentage;
|
|
141
|
+
alphaOff?: CT_FixedPercentage;
|
|
142
|
+
alphaMod?: CT_PositivePercentage;
|
|
143
|
+
hue?: CT_PositiveFixedAngle;
|
|
144
|
+
hueOff?: CT_Angle;
|
|
145
|
+
hueMod?: CT_PositivePercentage;
|
|
146
|
+
sat?: CT_Percentage;
|
|
147
|
+
satOff?: CT_Percentage;
|
|
148
|
+
satMod?: CT_Percentage;
|
|
149
|
+
lum?: CT_Percentage;
|
|
150
|
+
lumOff?: CT_Percentage;
|
|
151
|
+
lumMod?: CT_Percentage;
|
|
152
|
+
red?: CT_Percentage;
|
|
153
|
+
redOff?: CT_Percentage;
|
|
154
|
+
redMod?: CT_Percentage;
|
|
155
|
+
green?: CT_Percentage;
|
|
156
|
+
greenOff?: CT_Percentage;
|
|
157
|
+
greenMod?: CT_Percentage;
|
|
158
|
+
blue?: CT_Percentage;
|
|
159
|
+
blueOff?: CT_Percentage;
|
|
160
|
+
blueMod?: CT_Percentage;
|
|
161
|
+
gamma?: CT_GammaTransform;
|
|
162
|
+
invGamma?: CT_InverseGammaTransform;
|
|
163
|
+
val?: string;
|
|
164
|
+
}
|
|
165
|
+
export declare const CT_SRgbColor_Attributes: Attributes;
|
|
166
|
+
export interface CT_HslColor {
|
|
167
|
+
tint?: CT_PositiveFixedPercentage;
|
|
168
|
+
shade?: CT_PositiveFixedPercentage;
|
|
169
|
+
comp?: CT_ComplementTransform;
|
|
170
|
+
inv?: CT_InverseTransform;
|
|
171
|
+
gray?: CT_GrayscaleTransform;
|
|
172
|
+
alpha?: CT_PositiveFixedPercentage;
|
|
173
|
+
alphaOff?: CT_FixedPercentage;
|
|
174
|
+
alphaMod?: CT_PositivePercentage;
|
|
175
|
+
hue?: number;
|
|
176
|
+
hueOff?: CT_Angle;
|
|
177
|
+
hueMod?: CT_PositivePercentage;
|
|
178
|
+
sat?: string;
|
|
179
|
+
satOff?: CT_Percentage;
|
|
180
|
+
satMod?: CT_Percentage;
|
|
181
|
+
lum?: string;
|
|
182
|
+
lumOff?: CT_Percentage;
|
|
183
|
+
lumMod?: CT_Percentage;
|
|
184
|
+
red?: CT_Percentage;
|
|
185
|
+
redOff?: CT_Percentage;
|
|
186
|
+
redMod?: CT_Percentage;
|
|
187
|
+
green?: CT_Percentage;
|
|
188
|
+
greenOff?: CT_Percentage;
|
|
189
|
+
greenMod?: CT_Percentage;
|
|
190
|
+
blue?: CT_Percentage;
|
|
191
|
+
blueOff?: CT_Percentage;
|
|
192
|
+
blueMod?: CT_Percentage;
|
|
193
|
+
gamma?: CT_GammaTransform;
|
|
194
|
+
invGamma?: CT_InverseGammaTransform;
|
|
195
|
+
}
|
|
196
|
+
export declare const CT_HslColor_Attributes: Attributes;
|
|
197
|
+
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';
|
|
198
|
+
export interface CT_SystemColor {
|
|
199
|
+
tint?: CT_PositiveFixedPercentage;
|
|
200
|
+
shade?: CT_PositiveFixedPercentage;
|
|
201
|
+
comp?: CT_ComplementTransform;
|
|
202
|
+
inv?: CT_InverseTransform;
|
|
203
|
+
gray?: CT_GrayscaleTransform;
|
|
204
|
+
alpha?: CT_PositiveFixedPercentage;
|
|
205
|
+
alphaOff?: CT_FixedPercentage;
|
|
206
|
+
alphaMod?: CT_PositivePercentage;
|
|
207
|
+
hue?: CT_PositiveFixedAngle;
|
|
208
|
+
hueOff?: CT_Angle;
|
|
209
|
+
hueMod?: CT_PositivePercentage;
|
|
210
|
+
sat?: CT_Percentage;
|
|
211
|
+
satOff?: CT_Percentage;
|
|
212
|
+
satMod?: CT_Percentage;
|
|
213
|
+
lum?: CT_Percentage;
|
|
214
|
+
lumOff?: CT_Percentage;
|
|
215
|
+
lumMod?: CT_Percentage;
|
|
216
|
+
red?: CT_Percentage;
|
|
217
|
+
redOff?: CT_Percentage;
|
|
218
|
+
redMod?: CT_Percentage;
|
|
219
|
+
green?: CT_Percentage;
|
|
220
|
+
greenOff?: CT_Percentage;
|
|
221
|
+
greenMod?: CT_Percentage;
|
|
222
|
+
blue?: CT_Percentage;
|
|
223
|
+
blueOff?: CT_Percentage;
|
|
224
|
+
blueMod?: CT_Percentage;
|
|
225
|
+
gamma?: CT_GammaTransform;
|
|
226
|
+
invGamma?: CT_InverseGammaTransform;
|
|
227
|
+
val?: ST_SystemColorVal;
|
|
228
|
+
lastClr?: string;
|
|
229
|
+
}
|
|
230
|
+
export declare const CT_SystemColor_Attributes: Attributes;
|
|
231
|
+
export type ST_SchemeColorVal = 'bg1' | 'tx1' | 'bg2' | 'tx2' | 'accent1' | 'accent2' | 'accent3' | 'accent4' | 'accent5' | 'accent6' | 'hlink' | 'folHlink' | 'phClr' | 'dk1' | 'lt1' | 'dk2' | 'lt2';
|
|
232
|
+
export interface CT_SchemeColor {
|
|
233
|
+
tint?: CT_PositiveFixedPercentage;
|
|
234
|
+
shade?: CT_PositiveFixedPercentage;
|
|
235
|
+
comp?: CT_ComplementTransform;
|
|
236
|
+
inv?: CT_InverseTransform;
|
|
237
|
+
gray?: CT_GrayscaleTransform;
|
|
238
|
+
alpha?: CT_PositiveFixedPercentage;
|
|
239
|
+
alphaOff?: CT_FixedPercentage;
|
|
240
|
+
alphaMod?: CT_PositivePercentage;
|
|
241
|
+
hue?: CT_PositiveFixedAngle;
|
|
242
|
+
hueOff?: CT_Angle;
|
|
243
|
+
hueMod?: CT_PositivePercentage;
|
|
244
|
+
sat?: CT_Percentage;
|
|
245
|
+
satOff?: CT_Percentage;
|
|
246
|
+
satMod?: CT_Percentage;
|
|
247
|
+
lum?: CT_Percentage;
|
|
248
|
+
lumOff?: CT_Percentage;
|
|
249
|
+
lumMod?: CT_Percentage;
|
|
250
|
+
red?: CT_Percentage;
|
|
251
|
+
redOff?: CT_Percentage;
|
|
252
|
+
redMod?: CT_Percentage;
|
|
253
|
+
green?: CT_Percentage;
|
|
254
|
+
greenOff?: CT_Percentage;
|
|
255
|
+
greenMod?: CT_Percentage;
|
|
256
|
+
blue?: CT_Percentage;
|
|
257
|
+
blueOff?: CT_Percentage;
|
|
258
|
+
blueMod?: CT_Percentage;
|
|
259
|
+
gamma?: CT_GammaTransform;
|
|
260
|
+
invGamma?: CT_InverseGammaTransform;
|
|
261
|
+
val?: ST_SchemeColorVal;
|
|
262
|
+
}
|
|
263
|
+
export declare const CT_SchemeColor_Attributes: Attributes;
|
|
264
|
+
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';
|
|
265
|
+
export interface CT_PresetColor {
|
|
266
|
+
tint?: CT_PositiveFixedPercentage;
|
|
267
|
+
shade?: CT_PositiveFixedPercentage;
|
|
268
|
+
comp?: CT_ComplementTransform;
|
|
269
|
+
inv?: CT_InverseTransform;
|
|
270
|
+
gray?: CT_GrayscaleTransform;
|
|
271
|
+
alpha?: CT_PositiveFixedPercentage;
|
|
272
|
+
alphaOff?: CT_FixedPercentage;
|
|
273
|
+
alphaMod?: CT_PositivePercentage;
|
|
274
|
+
hue?: CT_PositiveFixedAngle;
|
|
275
|
+
hueOff?: CT_Angle;
|
|
276
|
+
hueMod?: CT_PositivePercentage;
|
|
277
|
+
sat?: CT_Percentage;
|
|
278
|
+
satOff?: CT_Percentage;
|
|
279
|
+
satMod?: CT_Percentage;
|
|
280
|
+
lum?: CT_Percentage;
|
|
281
|
+
lumOff?: CT_Percentage;
|
|
282
|
+
lumMod?: CT_Percentage;
|
|
283
|
+
red?: CT_Percentage;
|
|
284
|
+
redOff?: CT_Percentage;
|
|
285
|
+
redMod?: CT_Percentage;
|
|
286
|
+
green?: CT_Percentage;
|
|
287
|
+
greenOff?: CT_Percentage;
|
|
288
|
+
greenMod?: CT_Percentage;
|
|
289
|
+
blue?: CT_Percentage;
|
|
290
|
+
blueOff?: CT_Percentage;
|
|
291
|
+
blueMod?: CT_Percentage;
|
|
292
|
+
gamma?: CT_GammaTransform;
|
|
293
|
+
invGamma?: CT_InverseGammaTransform;
|
|
294
|
+
val?: ST_PresetColorVal;
|
|
295
|
+
}
|
|
296
|
+
export declare const CT_PresetColor_Attributes: Attributes;
|
|
297
|
+
export interface CT_Color {
|
|
298
|
+
scrgbClr?: CT_ScRgbColor;
|
|
299
|
+
srgbClr?: CT_SRgbColor;
|
|
300
|
+
hslClr?: CT_HslColor;
|
|
301
|
+
sysClr?: CT_SystemColor;
|
|
302
|
+
schemeClr?: CT_SchemeColor;
|
|
303
|
+
prstClr?: CT_PresetColor;
|
|
304
|
+
}
|
|
305
|
+
export declare const CT_Color_Attributes: Attributes;
|
|
306
|
+
export interface CT_ColorScheme {
|
|
307
|
+
dk1?: CT_Color;
|
|
308
|
+
lt1?: CT_Color;
|
|
309
|
+
dk2?: CT_Color;
|
|
310
|
+
lt2?: CT_Color;
|
|
311
|
+
accent1?: CT_Color;
|
|
312
|
+
accent2?: CT_Color;
|
|
313
|
+
accent3?: CT_Color;
|
|
314
|
+
accent4?: CT_Color;
|
|
315
|
+
accent5?: CT_Color;
|
|
316
|
+
accent6?: CT_Color;
|
|
317
|
+
hlink?: CT_Color;
|
|
318
|
+
folHlink?: CT_Color;
|
|
319
|
+
extLst?: CT_OfficeArtExtensionList;
|
|
320
|
+
name?: string;
|
|
321
|
+
}
|
|
322
|
+
export declare const CT_ColorScheme_Attributes: Attributes;
|
|
323
|
+
export interface CT_CustomColor {
|
|
324
|
+
scrgbClr?: CT_ScRgbColor;
|
|
325
|
+
srgbClr?: CT_SRgbColor;
|
|
326
|
+
hslClr?: CT_HslColor;
|
|
327
|
+
sysClr?: CT_SystemColor;
|
|
328
|
+
schemeClr?: CT_SchemeColor;
|
|
329
|
+
prstClr?: CT_PresetColor;
|
|
330
|
+
name?: string;
|
|
331
|
+
}
|
|
332
|
+
export declare const CT_CustomColor_Attributes: Attributes;
|
|
333
|
+
export type ST_TextTypeface = string;
|
|
334
|
+
export interface CT_SupplementalFont {
|
|
335
|
+
script?: string;
|
|
336
|
+
typeface?: string;
|
|
337
|
+
}
|
|
338
|
+
export declare const CT_SupplementalFont_Attributes: Attributes;
|
|
339
|
+
export interface CT_CustomColorList {
|
|
340
|
+
custClr?: CT_CustomColor[];
|
|
341
|
+
}
|
|
342
|
+
export declare const CT_CustomColorList_Attributes: Attributes;
|
|
343
|
+
export type ST_PitchFamily = number;
|
|
344
|
+
export interface CT_TextFont {
|
|
345
|
+
typeface?: string;
|
|
346
|
+
panose?: string;
|
|
347
|
+
pitchFamily?: number;
|
|
348
|
+
charset?: number;
|
|
349
|
+
}
|
|
350
|
+
export declare const CT_TextFont_Attributes: Attributes;
|
|
351
|
+
export interface CT_FontCollection {
|
|
352
|
+
latin?: CT_TextFont;
|
|
353
|
+
ea?: CT_TextFont;
|
|
354
|
+
cs?: CT_TextFont;
|
|
355
|
+
font?: CT_SupplementalFont[];
|
|
356
|
+
extLst?: CT_OfficeArtExtensionList;
|
|
357
|
+
}
|
|
358
|
+
export declare const CT_FontCollection_Attributes: Attributes;
|
|
359
|
+
export type ST_PositiveCoordinate = number;
|
|
360
|
+
export interface CT_BlurEffect {
|
|
361
|
+
rad?: number;
|
|
362
|
+
grow?: boolean;
|
|
363
|
+
}
|
|
364
|
+
export declare const CT_BlurEffect_Attributes: Attributes;
|
|
365
|
+
export interface CT_NoFillProperties {
|
|
366
|
+
}
|
|
367
|
+
export declare const CT_NoFillProperties_Attributes: Attributes;
|
|
368
|
+
export interface CT_SolidColorFillProperties {
|
|
369
|
+
scrgbClr?: CT_ScRgbColor;
|
|
370
|
+
srgbClr?: CT_SRgbColor;
|
|
371
|
+
hslClr?: CT_HslColor;
|
|
372
|
+
sysClr?: CT_SystemColor;
|
|
373
|
+
schemeClr?: CT_SchemeColor;
|
|
374
|
+
prstClr?: CT_PresetColor;
|
|
375
|
+
}
|
|
376
|
+
export declare const CT_SolidColorFillProperties_Attributes: Attributes;
|
|
377
|
+
export interface CT_GradientStop {
|
|
378
|
+
scrgbClr?: CT_ScRgbColor;
|
|
379
|
+
srgbClr?: CT_SRgbColor;
|
|
380
|
+
hslClr?: CT_HslColor;
|
|
381
|
+
sysClr?: CT_SystemColor;
|
|
382
|
+
schemeClr?: CT_SchemeColor;
|
|
383
|
+
prstClr?: CT_PresetColor;
|
|
384
|
+
pos?: ST_PositiveFixedPercentage;
|
|
385
|
+
}
|
|
386
|
+
export declare const CT_GradientStop_Attributes: Attributes;
|
|
387
|
+
export interface CT_GradientStopList {
|
|
388
|
+
gs?: CT_GradientStop[];
|
|
389
|
+
}
|
|
390
|
+
export declare const CT_GradientStopList_Attributes: Attributes;
|
|
391
|
+
export interface CT_LinearShadeProperties {
|
|
392
|
+
ang?: number;
|
|
393
|
+
scaled?: boolean;
|
|
394
|
+
}
|
|
395
|
+
export declare const CT_LinearShadeProperties_Attributes: Attributes;
|
|
396
|
+
export interface CT_RelativeRect {
|
|
397
|
+
l?: string;
|
|
398
|
+
t?: string;
|
|
399
|
+
r?: string;
|
|
400
|
+
b?: string;
|
|
401
|
+
}
|
|
402
|
+
export declare const CT_RelativeRect_Attributes: Attributes;
|
|
403
|
+
export type ST_PathShadeType = 'shape' | 'circle' | 'rect';
|
|
404
|
+
export interface CT_PathShadeProperties {
|
|
405
|
+
fillToRect?: CT_RelativeRect;
|
|
406
|
+
path?: ST_PathShadeType;
|
|
407
|
+
}
|
|
408
|
+
export declare const CT_PathShadeProperties_Attributes: Attributes;
|
|
409
|
+
export type ST_TileFlipMode = 'none' | 'x' | 'y' | 'xy';
|
|
410
|
+
export interface CT_GradientFillProperties {
|
|
411
|
+
gsLst?: CT_GradientStopList;
|
|
412
|
+
lin?: CT_LinearShadeProperties;
|
|
413
|
+
path?: CT_PathShadeProperties;
|
|
414
|
+
tileRect?: CT_RelativeRect;
|
|
415
|
+
flip?: ST_TileFlipMode;
|
|
416
|
+
rotWithShape?: boolean;
|
|
417
|
+
}
|
|
418
|
+
export declare const CT_GradientFillProperties_Attributes: Attributes;
|
|
419
|
+
export type ST_BlipCompression = 'email' | 'screen' | 'print' | 'hqprint' | 'none';
|
|
420
|
+
export interface CT_Blip {
|
|
421
|
+
extLst?: CT_OfficeArtExtensionList;
|
|
422
|
+
cstate?: ST_BlipCompression;
|
|
423
|
+
}
|
|
424
|
+
export declare const CT_Blip_Attributes: Attributes;
|
|
425
|
+
export type ST_Coordinate = ST_CoordinateUnqualified | ST_UniversalMeasure;
|
|
426
|
+
export type ST_RectAlignment = 'tl' | 't' | 'tr' | 'l' | 'ctr' | 'r' | 'bl' | 'b' | 'br';
|
|
427
|
+
export interface CT_TileInfoProperties {
|
|
428
|
+
tx?: ST_Coordinate;
|
|
429
|
+
ty?: ST_Coordinate;
|
|
430
|
+
sx?: string;
|
|
431
|
+
sy?: string;
|
|
432
|
+
flip?: ST_TileFlipMode;
|
|
433
|
+
algn?: ST_RectAlignment;
|
|
434
|
+
}
|
|
435
|
+
export declare const CT_TileInfoProperties_Attributes: Attributes;
|
|
436
|
+
export interface CT_StretchInfoProperties {
|
|
437
|
+
fillRect?: CT_RelativeRect;
|
|
438
|
+
}
|
|
439
|
+
export declare const CT_StretchInfoProperties_Attributes: Attributes;
|
|
440
|
+
export interface CT_BlipFillProperties {
|
|
441
|
+
blip?: CT_Blip;
|
|
442
|
+
srcRect?: CT_RelativeRect;
|
|
443
|
+
tile?: CT_TileInfoProperties;
|
|
444
|
+
stretch?: CT_StretchInfoProperties;
|
|
445
|
+
dpi?: number;
|
|
446
|
+
rotWithShape?: boolean;
|
|
447
|
+
}
|
|
448
|
+
export declare const CT_BlipFillProperties_Attributes: Attributes;
|
|
449
|
+
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';
|
|
450
|
+
export interface CT_PatternFillProperties {
|
|
451
|
+
fgClr?: CT_Color;
|
|
452
|
+
bgClr?: CT_Color;
|
|
453
|
+
prst?: ST_PresetPatternVal;
|
|
454
|
+
}
|
|
455
|
+
export declare const CT_PatternFillProperties_Attributes: Attributes;
|
|
456
|
+
export interface CT_GroupFillProperties {
|
|
457
|
+
}
|
|
458
|
+
export declare const CT_GroupFillProperties_Attributes: Attributes;
|
|
459
|
+
export type ST_BlendMode = 'over' | 'mult' | 'screen' | 'darken' | 'lighten';
|
|
460
|
+
export interface CT_FillOverlayEffect {
|
|
461
|
+
noFill?: CT_NoFillProperties;
|
|
462
|
+
solidFill?: CT_SolidColorFillProperties;
|
|
463
|
+
gradFill?: CT_GradientFillProperties;
|
|
464
|
+
blipFill?: CT_BlipFillProperties;
|
|
465
|
+
pattFill?: CT_PatternFillProperties;
|
|
466
|
+
grpFill?: CT_GroupFillProperties;
|
|
467
|
+
blend?: ST_BlendMode;
|
|
468
|
+
}
|
|
469
|
+
export declare const CT_FillOverlayEffect_Attributes: Attributes;
|
|
470
|
+
export interface CT_GlowEffect {
|
|
471
|
+
scrgbClr?: CT_ScRgbColor;
|
|
472
|
+
srgbClr?: CT_SRgbColor;
|
|
473
|
+
hslClr?: CT_HslColor;
|
|
474
|
+
sysClr?: CT_SystemColor;
|
|
475
|
+
schemeClr?: CT_SchemeColor;
|
|
476
|
+
prstClr?: CT_PresetColor;
|
|
477
|
+
rad?: number;
|
|
478
|
+
}
|
|
479
|
+
export declare const CT_GlowEffect_Attributes: Attributes;
|
|
480
|
+
export interface CT_InnerShadowEffect {
|
|
481
|
+
scrgbClr?: CT_ScRgbColor;
|
|
482
|
+
srgbClr?: CT_SRgbColor;
|
|
483
|
+
hslClr?: CT_HslColor;
|
|
484
|
+
sysClr?: CT_SystemColor;
|
|
485
|
+
schemeClr?: CT_SchemeColor;
|
|
486
|
+
prstClr?: CT_PresetColor;
|
|
487
|
+
blurRad?: number;
|
|
488
|
+
dist?: number;
|
|
489
|
+
dir?: number;
|
|
490
|
+
}
|
|
491
|
+
export declare const CT_InnerShadowEffect_Attributes: Attributes;
|
|
492
|
+
export type ST_FixedAngle = ST_Angle;
|
|
493
|
+
export interface CT_OuterShadowEffect {
|
|
494
|
+
scrgbClr?: CT_ScRgbColor;
|
|
495
|
+
srgbClr?: CT_SRgbColor;
|
|
496
|
+
hslClr?: CT_HslColor;
|
|
497
|
+
sysClr?: CT_SystemColor;
|
|
498
|
+
schemeClr?: CT_SchemeColor;
|
|
499
|
+
prstClr?: CT_PresetColor;
|
|
500
|
+
blurRad?: number;
|
|
501
|
+
dist?: number;
|
|
502
|
+
dir?: number;
|
|
503
|
+
sx?: string;
|
|
504
|
+
sy?: string;
|
|
505
|
+
kx?: number;
|
|
506
|
+
ky?: number;
|
|
507
|
+
algn?: ST_RectAlignment;
|
|
508
|
+
rotWithShape?: boolean;
|
|
509
|
+
}
|
|
510
|
+
export declare const CT_OuterShadowEffect_Attributes: Attributes;
|
|
511
|
+
export type ST_PresetShadowVal = 'shdw1' | 'shdw2' | 'shdw3' | 'shdw4' | 'shdw5' | 'shdw6' | 'shdw7' | 'shdw8' | 'shdw9' | 'shdw10' | 'shdw11' | 'shdw12' | 'shdw13' | 'shdw14' | 'shdw15' | 'shdw16' | 'shdw17' | 'shdw18' | 'shdw19' | 'shdw20';
|
|
512
|
+
export interface CT_PresetShadowEffect {
|
|
513
|
+
scrgbClr?: CT_ScRgbColor;
|
|
514
|
+
srgbClr?: CT_SRgbColor;
|
|
515
|
+
hslClr?: CT_HslColor;
|
|
516
|
+
sysClr?: CT_SystemColor;
|
|
517
|
+
schemeClr?: CT_SchemeColor;
|
|
518
|
+
prstClr?: CT_PresetColor;
|
|
519
|
+
prst?: ST_PresetShadowVal;
|
|
520
|
+
dist?: number;
|
|
521
|
+
dir?: number;
|
|
522
|
+
}
|
|
523
|
+
export declare const CT_PresetShadowEffect_Attributes: Attributes;
|
|
524
|
+
export interface CT_ReflectionEffect {
|
|
525
|
+
blurRad?: number;
|
|
526
|
+
stA?: ST_PositiveFixedPercentage;
|
|
527
|
+
stPos?: ST_PositiveFixedPercentage;
|
|
528
|
+
endA?: ST_PositiveFixedPercentage;
|
|
529
|
+
endPos?: ST_PositiveFixedPercentage;
|
|
530
|
+
dist?: number;
|
|
531
|
+
dir?: number;
|
|
532
|
+
fadeDir?: number;
|
|
533
|
+
sx?: string;
|
|
534
|
+
sy?: string;
|
|
535
|
+
kx?: number;
|
|
536
|
+
ky?: number;
|
|
537
|
+
algn?: ST_RectAlignment;
|
|
538
|
+
rotWithShape?: boolean;
|
|
539
|
+
}
|
|
540
|
+
export declare const CT_ReflectionEffect_Attributes: Attributes;
|
|
541
|
+
export interface CT_SoftEdgesEffect {
|
|
542
|
+
rad?: number;
|
|
543
|
+
}
|
|
544
|
+
export declare const CT_SoftEdgesEffect_Attributes: Attributes;
|
|
545
|
+
export interface CT_EffectList {
|
|
546
|
+
blur?: CT_BlurEffect;
|
|
547
|
+
fillOverlay?: CT_FillOverlayEffect;
|
|
548
|
+
glow?: CT_GlowEffect;
|
|
549
|
+
innerShdw?: CT_InnerShadowEffect;
|
|
550
|
+
outerShdw?: CT_OuterShadowEffect;
|
|
551
|
+
prstShdw?: CT_PresetShadowEffect;
|
|
552
|
+
reflection?: CT_ReflectionEffect;
|
|
553
|
+
softEdge?: CT_SoftEdgesEffect;
|
|
554
|
+
}
|
|
555
|
+
export declare const CT_EffectList_Attributes: Attributes;
|
|
556
|
+
export type ST_EffectContainerType = 'sib' | 'tree';
|
|
557
|
+
export interface CT_EffectContainer {
|
|
558
|
+
type?: ST_EffectContainerType;
|
|
559
|
+
name?: string;
|
|
560
|
+
}
|
|
561
|
+
export declare const CT_EffectContainer_Attributes: Attributes;
|
|
562
|
+
export interface CT_SphereCoords {
|
|
563
|
+
lat?: number;
|
|
564
|
+
lon?: number;
|
|
565
|
+
rev?: number;
|
|
566
|
+
}
|
|
567
|
+
export declare const CT_SphereCoords_Attributes: Attributes;
|
|
568
|
+
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';
|
|
569
|
+
export type ST_FOVAngle = ST_Angle;
|
|
570
|
+
export interface CT_Camera {
|
|
571
|
+
rot?: CT_SphereCoords;
|
|
572
|
+
prst?: ST_PresetCameraType;
|
|
573
|
+
fov?: number;
|
|
574
|
+
zoom?: ST_PositivePercentage;
|
|
575
|
+
}
|
|
576
|
+
export declare const CT_Camera_Attributes: Attributes;
|
|
577
|
+
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';
|
|
578
|
+
export type ST_LightRigDirection = 'tl' | 't' | 'tr' | 'l' | 'r' | 'bl' | 'b' | 'br';
|
|
579
|
+
export interface CT_LightRig {
|
|
580
|
+
rot?: CT_SphereCoords;
|
|
581
|
+
rig?: ST_LightRigType;
|
|
582
|
+
dir?: ST_LightRigDirection;
|
|
583
|
+
}
|
|
584
|
+
export declare const CT_LightRig_Attributes: Attributes;
|
|
585
|
+
export interface CT_Point3D {
|
|
586
|
+
x?: ST_Coordinate;
|
|
587
|
+
y?: ST_Coordinate;
|
|
588
|
+
z?: ST_Coordinate;
|
|
589
|
+
}
|
|
590
|
+
export declare const CT_Point3D_Attributes: Attributes;
|
|
591
|
+
export interface CT_Vector3D {
|
|
592
|
+
dx?: ST_Coordinate;
|
|
593
|
+
dy?: ST_Coordinate;
|
|
594
|
+
dz?: ST_Coordinate;
|
|
595
|
+
}
|
|
596
|
+
export declare const CT_Vector3D_Attributes: Attributes;
|
|
597
|
+
export interface CT_Backdrop {
|
|
598
|
+
anchor?: CT_Point3D;
|
|
599
|
+
norm?: CT_Vector3D;
|
|
600
|
+
up?: CT_Vector3D;
|
|
601
|
+
extLst?: CT_OfficeArtExtensionList;
|
|
602
|
+
}
|
|
603
|
+
export declare const CT_Backdrop_Attributes: Attributes;
|
|
604
|
+
export interface CT_Scene3D {
|
|
605
|
+
camera?: CT_Camera;
|
|
606
|
+
lightRig?: CT_LightRig;
|
|
607
|
+
backdrop?: CT_Backdrop;
|
|
608
|
+
extLst?: CT_OfficeArtExtensionList;
|
|
609
|
+
}
|
|
610
|
+
export declare const CT_Scene3D_Attributes: Attributes;
|
|
611
|
+
export type ST_BevelPresetType = 'relaxedInset' | 'circle' | 'slope' | 'cross' | 'angle' | 'softRound' | 'convex' | 'coolSlant' | 'divot' | 'riblet' | 'hardEdge' | 'artDeco';
|
|
612
|
+
export interface CT_Bevel {
|
|
613
|
+
w?: number;
|
|
614
|
+
h?: number;
|
|
615
|
+
prst?: ST_BevelPresetType;
|
|
616
|
+
}
|
|
617
|
+
export declare const CT_Bevel_Attributes: Attributes;
|
|
618
|
+
export type ST_PresetMaterialType = 'legacyMatte' | 'legacyPlastic' | 'legacyMetal' | 'legacyWireframe' | 'matte' | 'plastic' | 'metal' | 'warmMatte' | 'translucentPowder' | 'powder' | 'dkEdge' | 'softEdge' | 'clear' | 'flat' | 'softmetal';
|
|
619
|
+
export interface CT_Shape3D {
|
|
620
|
+
bevelT?: CT_Bevel;
|
|
621
|
+
bevelB?: CT_Bevel;
|
|
622
|
+
extrusionClr?: CT_Color;
|
|
623
|
+
contourClr?: CT_Color;
|
|
624
|
+
extLst?: CT_OfficeArtExtensionList;
|
|
625
|
+
z?: ST_Coordinate;
|
|
626
|
+
extrusionH?: number;
|
|
627
|
+
contourW?: number;
|
|
628
|
+
prstMaterial?: ST_PresetMaterialType;
|
|
629
|
+
}
|
|
630
|
+
export declare const CT_Shape3D_Attributes: Attributes;
|
|
631
|
+
export interface CT_EffectStyleItem {
|
|
632
|
+
effectLst?: CT_EffectList;
|
|
633
|
+
effectDag?: CT_EffectContainer;
|
|
634
|
+
scene3d?: CT_Scene3D;
|
|
635
|
+
sp3d?: CT_Shape3D;
|
|
636
|
+
}
|
|
637
|
+
export declare const CT_EffectStyleItem_Attributes: Attributes;
|
|
638
|
+
export interface CT_FontScheme {
|
|
639
|
+
majorFont?: CT_FontCollection;
|
|
640
|
+
minorFont?: CT_FontCollection;
|
|
641
|
+
extLst?: CT_OfficeArtExtensionList;
|
|
642
|
+
name?: string;
|
|
643
|
+
}
|
|
644
|
+
export declare const CT_FontScheme_Attributes: Attributes;
|
|
645
|
+
export interface CT_FillStyleList {
|
|
646
|
+
noFill?: CT_NoFillProperties;
|
|
647
|
+
solidFill?: CT_SolidColorFillProperties;
|
|
648
|
+
gradFill?: CT_GradientFillProperties;
|
|
649
|
+
blipFill?: CT_BlipFillProperties;
|
|
650
|
+
pattFill?: CT_PatternFillProperties;
|
|
651
|
+
grpFill?: CT_GroupFillProperties;
|
|
652
|
+
}
|
|
653
|
+
export declare const CT_FillStyleList_Attributes: Attributes;
|
|
654
|
+
export type ST_PresetLineDashVal = 'solid' | 'dot' | 'dash' | 'lgDash' | 'dashDot' | 'lgDashDot' | 'lgDashDotDot' | 'sysDash' | 'sysDot' | 'sysDashDot' | 'sysDashDotDot';
|
|
655
|
+
export interface CT_PresetLineDashProperties {
|
|
656
|
+
val?: ST_PresetLineDashVal;
|
|
657
|
+
}
|
|
658
|
+
export declare const CT_PresetLineDashProperties_Attributes: Attributes;
|
|
659
|
+
export interface CT_DashStop {
|
|
660
|
+
d?: ST_PositivePercentage;
|
|
661
|
+
sp?: ST_PositivePercentage;
|
|
662
|
+
}
|
|
663
|
+
export declare const CT_DashStop_Attributes: Attributes;
|
|
664
|
+
export interface CT_DashStopList {
|
|
665
|
+
ds?: CT_DashStop[];
|
|
666
|
+
}
|
|
667
|
+
export declare const CT_DashStopList_Attributes: Attributes;
|
|
668
|
+
export interface CT_LineJoinRound {
|
|
669
|
+
}
|
|
670
|
+
export declare const CT_LineJoinRound_Attributes: Attributes;
|
|
671
|
+
export interface CT_LineJoinBevel {
|
|
672
|
+
}
|
|
673
|
+
export declare const CT_LineJoinBevel_Attributes: Attributes;
|
|
674
|
+
export interface CT_LineJoinMiterProperties {
|
|
675
|
+
lim?: ST_PositivePercentage;
|
|
676
|
+
}
|
|
677
|
+
export declare const CT_LineJoinMiterProperties_Attributes: Attributes;
|
|
678
|
+
export type ST_LineEndType = 'none' | 'triangle' | 'stealth' | 'diamond' | 'oval' | 'arrow';
|
|
679
|
+
export type ST_LineEndWidth = 'sm' | 'med' | 'lg';
|
|
680
|
+
export type ST_LineEndLength = 'sm' | 'med' | 'lg';
|
|
681
|
+
export interface CT_LineEndProperties {
|
|
682
|
+
type?: ST_LineEndType;
|
|
683
|
+
w?: ST_LineEndWidth;
|
|
684
|
+
len?: ST_LineEndLength;
|
|
685
|
+
}
|
|
686
|
+
export declare const CT_LineEndProperties_Attributes: Attributes;
|
|
687
|
+
export type ST_LineWidth = ST_Coordinate32Unqualified;
|
|
688
|
+
export type ST_LineCap = 'rnd' | 'sq' | 'flat';
|
|
689
|
+
export type ST_CompoundLine = 'sng' | 'dbl' | 'thickThin' | 'thinThick' | 'tri';
|
|
690
|
+
export type ST_PenAlignment = 'ctr' | 'in';
|
|
691
|
+
export interface CT_LineProperties {
|
|
692
|
+
noFill?: CT_NoFillProperties;
|
|
693
|
+
solidFill?: CT_SolidColorFillProperties;
|
|
694
|
+
gradFill?: CT_GradientFillProperties;
|
|
695
|
+
pattFill?: CT_PatternFillProperties;
|
|
696
|
+
prstDash?: CT_PresetLineDashProperties;
|
|
697
|
+
custDash?: CT_DashStopList;
|
|
698
|
+
round?: CT_LineJoinRound;
|
|
699
|
+
bevel?: CT_LineJoinBevel;
|
|
700
|
+
miter?: CT_LineJoinMiterProperties;
|
|
701
|
+
headEnd?: CT_LineEndProperties;
|
|
702
|
+
tailEnd?: CT_LineEndProperties;
|
|
703
|
+
extLst?: CT_OfficeArtExtensionList;
|
|
704
|
+
w?: number;
|
|
705
|
+
cap?: ST_LineCap;
|
|
706
|
+
cmpd?: ST_CompoundLine;
|
|
707
|
+
algn?: ST_PenAlignment;
|
|
708
|
+
}
|
|
709
|
+
export declare const CT_LineProperties_Attributes: Attributes;
|
|
710
|
+
export interface CT_LineStyleList {
|
|
711
|
+
ln?: CT_LineProperties[];
|
|
712
|
+
}
|
|
713
|
+
export declare const CT_LineStyleList_Attributes: Attributes;
|
|
714
|
+
export interface CT_EffectStyleList {
|
|
715
|
+
effectStyle?: CT_EffectStyleItem[];
|
|
716
|
+
}
|
|
717
|
+
export declare const CT_EffectStyleList_Attributes: Attributes;
|
|
718
|
+
export interface CT_BackgroundFillStyleList {
|
|
719
|
+
noFill?: CT_NoFillProperties;
|
|
720
|
+
solidFill?: CT_SolidColorFillProperties;
|
|
721
|
+
gradFill?: CT_GradientFillProperties;
|
|
722
|
+
blipFill?: CT_BlipFillProperties;
|
|
723
|
+
pattFill?: CT_PatternFillProperties;
|
|
724
|
+
grpFill?: CT_GroupFillProperties;
|
|
725
|
+
}
|
|
726
|
+
export declare const CT_BackgroundFillStyleList_Attributes: Attributes;
|
|
727
|
+
export interface CT_StyleMatrix {
|
|
728
|
+
fillStyleLst?: CT_FillStyleList;
|
|
729
|
+
lnStyleLst?: CT_LineStyleList;
|
|
730
|
+
effectStyleLst?: CT_EffectStyleList;
|
|
731
|
+
bgFillStyleLst?: CT_BackgroundFillStyleList;
|
|
732
|
+
name?: string;
|
|
733
|
+
}
|
|
734
|
+
export declare const CT_StyleMatrix_Attributes: Attributes;
|
|
735
|
+
export interface CT_BaseStyles {
|
|
736
|
+
clrScheme?: CT_ColorScheme;
|
|
737
|
+
fontScheme?: CT_FontScheme;
|
|
738
|
+
fmtScheme?: CT_StyleMatrix;
|
|
739
|
+
extLst?: CT_OfficeArtExtensionList;
|
|
740
|
+
}
|
|
741
|
+
export declare const CT_BaseStyles_Attributes: Attributes;
|
|
742
|
+
export type ST_CoordinateUnqualified = number;
|
|
743
|
+
export type ST_Coordinate32 = ST_Coordinate32Unqualified | ST_UniversalMeasure;
|
|
744
|
+
export type ST_Coordinate32Unqualified = number;
|
|
745
|
+
export type ST_PositiveCoordinate32 = ST_Coordinate32Unqualified;
|
|
746
|
+
export interface CT_Ratio {
|
|
747
|
+
n?: number;
|
|
748
|
+
d?: number;
|
|
749
|
+
}
|
|
750
|
+
export declare const CT_Ratio_Attributes: Attributes;
|
|
751
|
+
export interface CT_Point2D {
|
|
752
|
+
x?: ST_Coordinate;
|
|
753
|
+
y?: ST_Coordinate;
|
|
754
|
+
}
|
|
755
|
+
export declare const CT_Point2D_Attributes: Attributes;
|
|
756
|
+
export interface CT_PositiveSize2D {
|
|
757
|
+
cx?: number;
|
|
758
|
+
cy?: number;
|
|
759
|
+
}
|
|
760
|
+
export declare const CT_PositiveSize2D_Attributes: Attributes;
|
|
761
|
+
export interface CT_Scale2D {
|
|
762
|
+
sx?: CT_Ratio;
|
|
763
|
+
sy?: CT_Ratio;
|
|
764
|
+
}
|
|
765
|
+
export declare const CT_Scale2D_Attributes: Attributes;
|
|
766
|
+
export interface CT_Transform2D {
|
|
767
|
+
off?: CT_Point2D;
|
|
768
|
+
ext?: CT_PositiveSize2D;
|
|
769
|
+
rot?: number;
|
|
770
|
+
flipH?: boolean;
|
|
771
|
+
flipV?: boolean;
|
|
772
|
+
}
|
|
773
|
+
export declare const CT_Transform2D_Attributes: Attributes;
|
|
774
|
+
export interface CT_GroupTransform2D {
|
|
775
|
+
off?: CT_Point2D;
|
|
776
|
+
ext?: CT_PositiveSize2D;
|
|
777
|
+
chOff?: CT_Point2D;
|
|
778
|
+
chExt?: CT_PositiveSize2D;
|
|
779
|
+
rot?: number;
|
|
780
|
+
flipH?: boolean;
|
|
781
|
+
flipV?: boolean;
|
|
782
|
+
}
|
|
783
|
+
export declare const CT_GroupTransform2D_Attributes: Attributes;
|
|
784
|
+
export interface CT_ColorMRU {
|
|
785
|
+
scrgbClr?: CT_ScRgbColor;
|
|
786
|
+
srgbClr?: CT_SRgbColor;
|
|
787
|
+
hslClr?: CT_HslColor;
|
|
788
|
+
sysClr?: CT_SystemColor;
|
|
789
|
+
schemeClr?: CT_SchemeColor;
|
|
790
|
+
prstClr?: CT_PresetColor;
|
|
791
|
+
}
|
|
792
|
+
export declare const CT_ColorMRU_Attributes: Attributes;
|
|
793
|
+
export type ST_BlackWhiteMode = 'clr' | 'auto' | 'gray' | 'ltGray' | 'invGray' | 'grayWhite' | 'blackGray' | 'blackWhite' | 'black' | 'white' | 'hidden';
|
|
794
|
+
export interface CT_EmbeddedWAVAudioFile {
|
|
795
|
+
name?: string;
|
|
796
|
+
}
|
|
797
|
+
export declare const CT_EmbeddedWAVAudioFile_Attributes: Attributes;
|
|
798
|
+
export interface CT_Hyperlink {
|
|
799
|
+
snd?: CT_EmbeddedWAVAudioFile;
|
|
800
|
+
extLst?: CT_OfficeArtExtensionList;
|
|
801
|
+
r_id?: string;
|
|
802
|
+
invalidUrl?: string;
|
|
803
|
+
action?: string;
|
|
804
|
+
tgtFrame?: string;
|
|
805
|
+
tooltip?: string;
|
|
806
|
+
history?: boolean;
|
|
807
|
+
highlightClick?: boolean;
|
|
808
|
+
endSnd?: boolean;
|
|
809
|
+
}
|
|
810
|
+
export declare const CT_Hyperlink_Attributes: Attributes;
|
|
811
|
+
export type ST_DrawingElementId = number;
|
|
812
|
+
export interface CT_ConnectorLocking {
|
|
813
|
+
extLst?: CT_OfficeArtExtensionList;
|
|
814
|
+
}
|
|
815
|
+
export declare const CT_ConnectorLocking_Attributes: Attributes;
|
|
816
|
+
export interface CT_ShapeLocking {
|
|
817
|
+
extLst?: CT_OfficeArtExtensionList;
|
|
818
|
+
noTextEdit?: boolean;
|
|
819
|
+
}
|
|
820
|
+
export declare const CT_ShapeLocking_Attributes: Attributes;
|
|
821
|
+
export interface CT_PictureLocking {
|
|
822
|
+
extLst?: CT_OfficeArtExtensionList;
|
|
823
|
+
noCrop?: boolean;
|
|
824
|
+
}
|
|
825
|
+
export declare const CT_PictureLocking_Attributes: Attributes;
|
|
826
|
+
export interface CT_GroupLocking {
|
|
827
|
+
extLst?: CT_OfficeArtExtensionList;
|
|
828
|
+
noGrp?: boolean;
|
|
829
|
+
noUngrp?: boolean;
|
|
830
|
+
noSelect?: boolean;
|
|
831
|
+
noRot?: boolean;
|
|
832
|
+
noChangeAspect?: boolean;
|
|
833
|
+
noMove?: boolean;
|
|
834
|
+
noResize?: boolean;
|
|
835
|
+
}
|
|
836
|
+
export declare const CT_GroupLocking_Attributes: Attributes;
|
|
837
|
+
export interface CT_GraphicalObjectFrameLocking {
|
|
838
|
+
extLst?: CT_OfficeArtExtensionList;
|
|
839
|
+
noGrp?: boolean;
|
|
840
|
+
noDrilldown?: boolean;
|
|
841
|
+
noSelect?: boolean;
|
|
842
|
+
noChangeAspect?: boolean;
|
|
843
|
+
noMove?: boolean;
|
|
844
|
+
noResize?: boolean;
|
|
845
|
+
}
|
|
846
|
+
export declare const CT_GraphicalObjectFrameLocking_Attributes: Attributes;
|
|
847
|
+
export interface CT_ContentPartLocking {
|
|
848
|
+
extLst?: CT_OfficeArtExtensionList;
|
|
849
|
+
}
|
|
850
|
+
export declare const CT_ContentPartLocking_Attributes: Attributes;
|
|
851
|
+
export interface CT_NonVisualDrawingProps {
|
|
852
|
+
hlinkClick?: CT_Hyperlink;
|
|
853
|
+
hlinkHover?: CT_Hyperlink;
|
|
854
|
+
extLst?: CT_OfficeArtExtensionList;
|
|
855
|
+
id?: number;
|
|
856
|
+
name?: string;
|
|
857
|
+
descr?: string;
|
|
858
|
+
hidden?: boolean;
|
|
859
|
+
title?: string;
|
|
860
|
+
}
|
|
861
|
+
export declare const CT_NonVisualDrawingProps_Attributes: Attributes;
|
|
862
|
+
export interface CT_NonVisualDrawingShapeProps {
|
|
863
|
+
spLocks?: CT_ShapeLocking;
|
|
864
|
+
extLst?: CT_OfficeArtExtensionList;
|
|
865
|
+
txBox?: boolean;
|
|
866
|
+
}
|
|
867
|
+
export declare const CT_NonVisualDrawingShapeProps_Attributes: Attributes;
|
|
868
|
+
export interface CT_Connection {
|
|
869
|
+
id?: number;
|
|
870
|
+
idx?: number;
|
|
871
|
+
}
|
|
872
|
+
export declare const CT_Connection_Attributes: Attributes;
|
|
873
|
+
export interface CT_NonVisualConnectorProperties {
|
|
874
|
+
cxnSpLocks?: CT_ConnectorLocking;
|
|
875
|
+
stCxn?: CT_Connection;
|
|
876
|
+
endCxn?: CT_Connection;
|
|
877
|
+
extLst?: CT_OfficeArtExtensionList;
|
|
878
|
+
}
|
|
879
|
+
export declare const CT_NonVisualConnectorProperties_Attributes: Attributes;
|
|
880
|
+
export interface CT_NonVisualPictureProperties {
|
|
881
|
+
picLocks?: CT_PictureLocking;
|
|
882
|
+
extLst?: CT_OfficeArtExtensionList;
|
|
883
|
+
preferRelativeResize?: boolean;
|
|
884
|
+
}
|
|
885
|
+
export declare const CT_NonVisualPictureProperties_Attributes: Attributes;
|
|
886
|
+
export interface CT_NonVisualGroupDrawingShapeProps {
|
|
887
|
+
grpSpLocks?: CT_GroupLocking;
|
|
888
|
+
extLst?: CT_OfficeArtExtensionList;
|
|
889
|
+
}
|
|
890
|
+
export declare const CT_NonVisualGroupDrawingShapeProps_Attributes: Attributes;
|
|
891
|
+
export interface CT_NonVisualGraphicFrameProperties {
|
|
892
|
+
graphicFrameLocks?: CT_GraphicalObjectFrameLocking;
|
|
893
|
+
extLst?: CT_OfficeArtExtensionList;
|
|
894
|
+
}
|
|
895
|
+
export declare const CT_NonVisualGraphicFrameProperties_Attributes: Attributes;
|
|
896
|
+
export interface CT_NonVisualContentPartProperties {
|
|
897
|
+
cpLocks?: CT_ContentPartLocking;
|
|
898
|
+
extLst?: CT_OfficeArtExtensionList;
|
|
899
|
+
isComment?: boolean;
|
|
900
|
+
}
|
|
901
|
+
export declare const CT_NonVisualContentPartProperties_Attributes: Attributes;
|
|
902
|
+
export interface CT_GraphicalObjectData {
|
|
903
|
+
uri?: string;
|
|
904
|
+
}
|
|
905
|
+
export declare const CT_GraphicalObjectData_Attributes: Attributes;
|
|
906
|
+
export interface CT_GraphicalObject {
|
|
907
|
+
graphicData?: CT_GraphicalObjectData[];
|
|
908
|
+
}
|
|
909
|
+
export declare const CT_GraphicalObject_Attributes: Attributes;
|
|
910
|
+
export type ST_ChartBuildStep = 'category' | 'ptInCategory' | 'series' | 'ptInSeries' | 'allPts' | 'gridLegend';
|
|
911
|
+
export type ST_DgmBuildStep = 'sp' | 'bg';
|
|
912
|
+
export interface CT_AnimationDgmElement {
|
|
913
|
+
id?: string;
|
|
914
|
+
bldStep?: ST_DgmBuildStep;
|
|
915
|
+
}
|
|
916
|
+
export declare const CT_AnimationDgmElement_Attributes: Attributes;
|
|
917
|
+
export interface CT_AnimationChartElement {
|
|
918
|
+
seriesIdx?: number;
|
|
919
|
+
categoryIdx?: number;
|
|
920
|
+
bldStep?: ST_ChartBuildStep;
|
|
921
|
+
}
|
|
922
|
+
export declare const CT_AnimationChartElement_Attributes: Attributes;
|
|
923
|
+
export interface CT_AnimationElementChoice {
|
|
924
|
+
dgm?: CT_AnimationDgmElement[];
|
|
925
|
+
chart?: CT_AnimationChartElement[];
|
|
926
|
+
}
|
|
927
|
+
export declare const CT_AnimationElementChoice_Attributes: Attributes;
|
|
928
|
+
export type ST_AnimationBuildType = 'allAtOnce';
|
|
929
|
+
export type ST_AnimationDgmOnlyBuildType = 'one' | 'lvlOne' | 'lvlAtOnce';
|
|
930
|
+
export type ST_AnimationDgmBuildType = ST_AnimationBuildType | ST_AnimationDgmOnlyBuildType;
|
|
931
|
+
export interface CT_AnimationDgmBuildProperties {
|
|
932
|
+
bld?: ST_AnimationDgmBuildType;
|
|
933
|
+
rev?: boolean;
|
|
934
|
+
}
|
|
935
|
+
export declare const CT_AnimationDgmBuildProperties_Attributes: Attributes;
|
|
936
|
+
export type ST_AnimationChartOnlyBuildType = 'series' | 'category' | 'seriesEl' | 'categoryEl';
|
|
937
|
+
export type ST_AnimationChartBuildType = ST_AnimationBuildType | ST_AnimationChartOnlyBuildType;
|
|
938
|
+
export interface CT_AnimationChartBuildProperties {
|
|
939
|
+
bld?: ST_AnimationChartBuildType;
|
|
940
|
+
animBg?: boolean;
|
|
941
|
+
}
|
|
942
|
+
export declare const CT_AnimationChartBuildProperties_Attributes: Attributes;
|
|
943
|
+
export interface CT_AnimationGraphicalObjectBuildProperties {
|
|
944
|
+
bldDgm?: CT_AnimationDgmBuildProperties[];
|
|
945
|
+
bldChart?: CT_AnimationChartBuildProperties[];
|
|
946
|
+
}
|
|
947
|
+
export declare const CT_AnimationGraphicalObjectBuildProperties_Attributes: Attributes;
|
|
948
|
+
export interface CT_BackgroundFormatting {
|
|
949
|
+
noFill?: CT_NoFillProperties;
|
|
950
|
+
solidFill?: CT_SolidColorFillProperties;
|
|
951
|
+
gradFill?: CT_GradientFillProperties;
|
|
952
|
+
blipFill?: CT_BlipFillProperties;
|
|
953
|
+
pattFill?: CT_PatternFillProperties;
|
|
954
|
+
grpFill?: CT_GroupFillProperties;
|
|
955
|
+
effectLst?: CT_EffectList;
|
|
956
|
+
effectDag?: CT_EffectContainer;
|
|
957
|
+
}
|
|
958
|
+
export declare const CT_BackgroundFormatting_Attributes: Attributes;
|
|
959
|
+
export interface CT_WholeE2oFormatting {
|
|
960
|
+
ln?: CT_LineProperties;
|
|
961
|
+
effectLst?: CT_EffectList;
|
|
962
|
+
effectDag?: CT_EffectContainer;
|
|
963
|
+
}
|
|
964
|
+
export declare const CT_WholeE2oFormatting_Attributes: Attributes;
|
|
965
|
+
export interface CT_GvmlUseShapeRectangle {
|
|
966
|
+
}
|
|
967
|
+
export declare const CT_GvmlUseShapeRectangle_Attributes: Attributes;
|
|
968
|
+
export type ST_GeomGuideName = string;
|
|
969
|
+
export type ST_GeomGuideFormula = string;
|
|
970
|
+
export interface CT_GeomGuide {
|
|
971
|
+
name?: string;
|
|
972
|
+
fmla?: string;
|
|
973
|
+
}
|
|
974
|
+
export declare const CT_GeomGuide_Attributes: Attributes;
|
|
975
|
+
export interface CT_GeomGuideList {
|
|
976
|
+
gd?: CT_GeomGuide[];
|
|
977
|
+
}
|
|
978
|
+
export declare const CT_GeomGuideList_Attributes: Attributes;
|
|
979
|
+
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';
|
|
980
|
+
export interface CT_PresetTextShape {
|
|
981
|
+
avLst?: CT_GeomGuideList;
|
|
982
|
+
prst?: ST_TextShapeType;
|
|
983
|
+
}
|
|
984
|
+
export declare const CT_PresetTextShape_Attributes: Attributes;
|
|
985
|
+
export interface CT_TextNoAutofit {
|
|
986
|
+
}
|
|
987
|
+
export declare const CT_TextNoAutofit_Attributes: Attributes;
|
|
988
|
+
export type ST_TextFontScalePercentOrPercentString = string;
|
|
989
|
+
export type ST_TextSpacingPercentOrPercentString = string;
|
|
990
|
+
export interface CT_TextNormalAutofit {
|
|
991
|
+
fontScale?: string;
|
|
992
|
+
lnSpcReduction?: string;
|
|
993
|
+
}
|
|
994
|
+
export declare const CT_TextNormalAutofit_Attributes: Attributes;
|
|
995
|
+
export interface CT_TextShapeAutofit {
|
|
996
|
+
}
|
|
997
|
+
export declare const CT_TextShapeAutofit_Attributes: Attributes;
|
|
998
|
+
export interface CT_FlatText {
|
|
999
|
+
z?: ST_Coordinate;
|
|
1000
|
+
}
|
|
1001
|
+
export declare const CT_FlatText_Attributes: Attributes;
|
|
1002
|
+
export type ST_TextVertOverflowType = 'overflow' | 'ellipsis' | 'clip';
|
|
1003
|
+
export type ST_TextHorzOverflowType = 'overflow' | 'clip';
|
|
1004
|
+
export type ST_TextVerticalType = 'horz' | 'vert' | 'vert270' | 'wordArtVert' | 'eaVert' | 'mongolianVert' | 'wordArtVertRtl';
|
|
1005
|
+
export type ST_TextWrappingType = 'none' | 'square';
|
|
1006
|
+
export type ST_TextColumnCount = number;
|
|
1007
|
+
export type ST_TextAnchoringType = 't' | 'ctr' | 'b' | 'just' | 'dist';
|
|
1008
|
+
export interface CT_TextBodyProperties {
|
|
1009
|
+
prstTxWarp?: CT_PresetTextShape;
|
|
1010
|
+
noAutofit?: CT_TextNoAutofit[];
|
|
1011
|
+
normAutofit?: CT_TextNormalAutofit[];
|
|
1012
|
+
spAutoFit?: CT_TextShapeAutofit[];
|
|
1013
|
+
scene3d?: CT_Scene3D;
|
|
1014
|
+
sp3d?: CT_Shape3D;
|
|
1015
|
+
flatTx?: CT_FlatText;
|
|
1016
|
+
extLst?: CT_OfficeArtExtensionList;
|
|
1017
|
+
rot?: number;
|
|
1018
|
+
spcFirstLastPara?: boolean;
|
|
1019
|
+
vertOverflow?: ST_TextVertOverflowType;
|
|
1020
|
+
horzOverflow?: ST_TextHorzOverflowType;
|
|
1021
|
+
vert?: ST_TextVerticalType;
|
|
1022
|
+
wrap?: ST_TextWrappingType;
|
|
1023
|
+
lIns?: ST_Coordinate32;
|
|
1024
|
+
tIns?: ST_Coordinate32;
|
|
1025
|
+
rIns?: ST_Coordinate32;
|
|
1026
|
+
bIns?: ST_Coordinate32;
|
|
1027
|
+
numCol?: number;
|
|
1028
|
+
spcCol?: number;
|
|
1029
|
+
rtlCol?: boolean;
|
|
1030
|
+
fromWordArt?: boolean;
|
|
1031
|
+
anchor?: ST_TextAnchoringType;
|
|
1032
|
+
anchorCtr?: boolean;
|
|
1033
|
+
forceAA?: boolean;
|
|
1034
|
+
upright?: boolean;
|
|
1035
|
+
compatLnSpc?: boolean;
|
|
1036
|
+
}
|
|
1037
|
+
export declare const CT_TextBodyProperties_Attributes: Attributes;
|
|
1038
|
+
export interface CT_TextSpacingPercent {
|
|
1039
|
+
val?: string;
|
|
1040
|
+
}
|
|
1041
|
+
export declare const CT_TextSpacingPercent_Attributes: Attributes;
|
|
1042
|
+
export type ST_TextSpacingPoint = number;
|
|
1043
|
+
export interface CT_TextSpacingPoint {
|
|
1044
|
+
val?: number;
|
|
1045
|
+
}
|
|
1046
|
+
export declare const CT_TextSpacingPoint_Attributes: Attributes;
|
|
1047
|
+
export interface CT_TextSpacing {
|
|
1048
|
+
spcPct?: CT_TextSpacingPercent[];
|
|
1049
|
+
spcPts?: CT_TextSpacingPoint[];
|
|
1050
|
+
}
|
|
1051
|
+
export declare const CT_TextSpacing_Attributes: Attributes;
|
|
1052
|
+
export interface CT_TextBulletColorFollowText {
|
|
1053
|
+
}
|
|
1054
|
+
export declare const CT_TextBulletColorFollowText_Attributes: Attributes;
|
|
1055
|
+
export interface CT_TextBulletSizeFollowText {
|
|
1056
|
+
}
|
|
1057
|
+
export declare const CT_TextBulletSizeFollowText_Attributes: Attributes;
|
|
1058
|
+
export type ST_TextBulletSizePercent = string;
|
|
1059
|
+
export interface CT_TextBulletSizePercent {
|
|
1060
|
+
val?: string;
|
|
1061
|
+
}
|
|
1062
|
+
export declare const CT_TextBulletSizePercent_Attributes: Attributes;
|
|
1063
|
+
export type ST_TextFontSize = number;
|
|
1064
|
+
export interface CT_TextBulletSizePoint {
|
|
1065
|
+
val?: number;
|
|
1066
|
+
}
|
|
1067
|
+
export declare const CT_TextBulletSizePoint_Attributes: Attributes;
|
|
1068
|
+
export interface CT_TextBulletTypefaceFollowText {
|
|
1069
|
+
}
|
|
1070
|
+
export declare const CT_TextBulletTypefaceFollowText_Attributes: Attributes;
|
|
1071
|
+
export interface CT_TextNoBullet {
|
|
1072
|
+
}
|
|
1073
|
+
export declare const CT_TextNoBullet_Attributes: Attributes;
|
|
1074
|
+
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';
|
|
1075
|
+
export type ST_TextBulletStartAtNum = number;
|
|
1076
|
+
export interface CT_TextAutonumberBullet {
|
|
1077
|
+
type?: ST_TextAutonumberScheme;
|
|
1078
|
+
startAt?: number;
|
|
1079
|
+
}
|
|
1080
|
+
export declare const CT_TextAutonumberBullet_Attributes: Attributes;
|
|
1081
|
+
export interface CT_TextCharBullet {
|
|
1082
|
+
char?: string;
|
|
1083
|
+
}
|
|
1084
|
+
export declare const CT_TextCharBullet_Attributes: Attributes;
|
|
1085
|
+
export interface CT_TextBlipBullet {
|
|
1086
|
+
blip?: CT_Blip;
|
|
1087
|
+
}
|
|
1088
|
+
export declare const CT_TextBlipBullet_Attributes: Attributes;
|
|
1089
|
+
export type ST_TextTabAlignType = 'l' | 'ctr' | 'r' | 'dec';
|
|
1090
|
+
export interface CT_TextTabStop {
|
|
1091
|
+
pos?: ST_Coordinate32;
|
|
1092
|
+
algn?: ST_TextTabAlignType;
|
|
1093
|
+
}
|
|
1094
|
+
export declare const CT_TextTabStop_Attributes: Attributes;
|
|
1095
|
+
export interface CT_TextTabStopList {
|
|
1096
|
+
tab?: CT_TextTabStop[];
|
|
1097
|
+
}
|
|
1098
|
+
export declare const CT_TextTabStopList_Attributes: Attributes;
|
|
1099
|
+
export interface CT_TextUnderlineLineFollowText {
|
|
1100
|
+
}
|
|
1101
|
+
export declare const CT_TextUnderlineLineFollowText_Attributes: Attributes;
|
|
1102
|
+
export interface CT_TextUnderlineFillFollowText {
|
|
1103
|
+
}
|
|
1104
|
+
export declare const CT_TextUnderlineFillFollowText_Attributes: Attributes;
|
|
1105
|
+
export interface CT_TextUnderlineFillGroupWrapper {
|
|
1106
|
+
}
|
|
1107
|
+
export declare const CT_TextUnderlineFillGroupWrapper_Attributes: Attributes;
|
|
1108
|
+
export interface CT_Boolean {
|
|
1109
|
+
val?: ST_OnOff;
|
|
1110
|
+
}
|
|
1111
|
+
export declare const CT_Boolean_Attributes: Attributes;
|
|
1112
|
+
export type ST_TextUnderlineType = 'none' | 'words' | 'sng' | 'dbl' | 'heavy' | 'dotted' | 'dottedHeavy' | 'dash' | 'dashHeavy' | 'dashLong' | 'dashLongHeavy' | 'dotDash' | 'dotDashHeavy' | 'dotDotDash' | 'dotDotDashHeavy' | 'wavy' | 'wavyHeavy' | 'wavyDbl';
|
|
1113
|
+
export type ST_TextStrikeType = 'noStrike' | 'sngStrike' | 'dblStrike';
|
|
1114
|
+
export type ST_TextNonNegativePoint = number;
|
|
1115
|
+
export type ST_TextCapsType = 'none' | 'small' | 'all';
|
|
1116
|
+
export type ST_TextPoint = ST_TextPointUnqualified | ST_UniversalMeasure;
|
|
1117
|
+
export interface CT_TextCharacterProperties {
|
|
1118
|
+
ln?: CT_LineProperties;
|
|
1119
|
+
noFill?: CT_NoFillProperties;
|
|
1120
|
+
solidFill?: CT_SolidColorFillProperties;
|
|
1121
|
+
gradFill?: CT_GradientFillProperties;
|
|
1122
|
+
blipFill?: CT_BlipFillProperties;
|
|
1123
|
+
pattFill?: CT_PatternFillProperties;
|
|
1124
|
+
grpFill?: CT_GroupFillProperties;
|
|
1125
|
+
effectLst?: CT_EffectList;
|
|
1126
|
+
effectDag?: CT_EffectContainer;
|
|
1127
|
+
highlight?: CT_Color;
|
|
1128
|
+
uLnTx?: CT_TextUnderlineLineFollowText[];
|
|
1129
|
+
uLn?: CT_LineProperties;
|
|
1130
|
+
uFillTx?: CT_TextUnderlineFillFollowText[];
|
|
1131
|
+
uFill?: CT_TextUnderlineFillGroupWrapper[];
|
|
1132
|
+
latin?: CT_TextFont;
|
|
1133
|
+
ea?: CT_TextFont;
|
|
1134
|
+
cs?: CT_TextFont;
|
|
1135
|
+
sym?: CT_TextFont;
|
|
1136
|
+
hlinkClick?: CT_Hyperlink;
|
|
1137
|
+
hlinkMouseOver?: CT_Hyperlink;
|
|
1138
|
+
rtl?: CT_Boolean[];
|
|
1139
|
+
extLst?: CT_OfficeArtExtensionList;
|
|
1140
|
+
kumimoji?: boolean;
|
|
1141
|
+
lang?: string;
|
|
1142
|
+
altLang?: string;
|
|
1143
|
+
sz?: number;
|
|
1144
|
+
b?: boolean;
|
|
1145
|
+
i?: boolean;
|
|
1146
|
+
u?: ST_TextUnderlineType;
|
|
1147
|
+
strike?: ST_TextStrikeType;
|
|
1148
|
+
kern?: number;
|
|
1149
|
+
cap?: ST_TextCapsType;
|
|
1150
|
+
spc?: ST_TextPoint;
|
|
1151
|
+
normalizeH?: boolean;
|
|
1152
|
+
baseline?: string;
|
|
1153
|
+
noProof?: boolean;
|
|
1154
|
+
dirty?: boolean;
|
|
1155
|
+
err?: boolean;
|
|
1156
|
+
smtClean?: boolean;
|
|
1157
|
+
smtId?: number;
|
|
1158
|
+
bmk?: string;
|
|
1159
|
+
}
|
|
1160
|
+
export declare const CT_TextCharacterProperties_Attributes: Attributes;
|
|
1161
|
+
export type ST_TextMargin = ST_Coordinate32Unqualified;
|
|
1162
|
+
export type ST_TextIndentLevelType = number;
|
|
1163
|
+
export type ST_TextIndent = ST_Coordinate32Unqualified;
|
|
1164
|
+
export type ST_TextAlignType = 'l' | 'ctr' | 'r' | 'just' | 'justLow' | 'dist' | 'thaiDist';
|
|
1165
|
+
export type ST_TextFontAlignType = 'auto' | 't' | 'ctr' | 'base' | 'b';
|
|
1166
|
+
export interface CT_TextParagraphProperties {
|
|
1167
|
+
lnSpc?: CT_TextSpacing;
|
|
1168
|
+
spcBef?: CT_TextSpacing;
|
|
1169
|
+
spcAft?: CT_TextSpacing;
|
|
1170
|
+
buClrTx?: CT_TextBulletColorFollowText;
|
|
1171
|
+
buClr?: CT_Color;
|
|
1172
|
+
buSzTx?: CT_TextBulletSizeFollowText[];
|
|
1173
|
+
buSzPct?: CT_TextBulletSizePercent[];
|
|
1174
|
+
buSzPts?: CT_TextBulletSizePoint[];
|
|
1175
|
+
buFontTx?: CT_TextBulletTypefaceFollowText[];
|
|
1176
|
+
buFont?: CT_TextFont[];
|
|
1177
|
+
buNone?: CT_TextNoBullet[];
|
|
1178
|
+
buAutoNum?: CT_TextAutonumberBullet[];
|
|
1179
|
+
buChar?: CT_TextCharBullet[];
|
|
1180
|
+
buBlip?: CT_TextBlipBullet[];
|
|
1181
|
+
tabLst?: CT_TextTabStopList;
|
|
1182
|
+
defRPr?: CT_TextCharacterProperties;
|
|
1183
|
+
extLst?: CT_OfficeArtExtensionList;
|
|
1184
|
+
marL?: number;
|
|
1185
|
+
marR?: number;
|
|
1186
|
+
lvl?: number;
|
|
1187
|
+
indent?: number;
|
|
1188
|
+
algn?: ST_TextAlignType;
|
|
1189
|
+
defTabSz?: ST_Coordinate32;
|
|
1190
|
+
rtl?: boolean;
|
|
1191
|
+
eaLnBrk?: boolean;
|
|
1192
|
+
fontAlgn?: ST_TextFontAlignType;
|
|
1193
|
+
latinLnBrk?: boolean;
|
|
1194
|
+
hangingPunct?: boolean;
|
|
1195
|
+
}
|
|
1196
|
+
export declare const CT_TextParagraphProperties_Attributes: Attributes;
|
|
1197
|
+
export interface CT_TextListStyle {
|
|
1198
|
+
defPPr?: CT_TextParagraphProperties;
|
|
1199
|
+
lvl1pPr?: CT_TextParagraphProperties;
|
|
1200
|
+
lvl2pPr?: CT_TextParagraphProperties;
|
|
1201
|
+
lvl3pPr?: CT_TextParagraphProperties;
|
|
1202
|
+
lvl4pPr?: CT_TextParagraphProperties;
|
|
1203
|
+
lvl5pPr?: CT_TextParagraphProperties;
|
|
1204
|
+
lvl6pPr?: CT_TextParagraphProperties;
|
|
1205
|
+
lvl7pPr?: CT_TextParagraphProperties;
|
|
1206
|
+
lvl8pPr?: CT_TextParagraphProperties;
|
|
1207
|
+
lvl9pPr?: CT_TextParagraphProperties;
|
|
1208
|
+
extLst?: CT_OfficeArtExtensionList;
|
|
1209
|
+
}
|
|
1210
|
+
export declare const CT_TextListStyle_Attributes: Attributes;
|
|
1211
|
+
export interface CT_RegularTextRun {
|
|
1212
|
+
rPr?: CT_TextCharacterProperties;
|
|
1213
|
+
t?: string;
|
|
1214
|
+
}
|
|
1215
|
+
export declare const CT_RegularTextRun_Attributes: Attributes;
|
|
1216
|
+
export interface CT_TextLineBreak {
|
|
1217
|
+
rPr?: CT_TextCharacterProperties;
|
|
1218
|
+
}
|
|
1219
|
+
export declare const CT_TextLineBreak_Attributes: Attributes;
|
|
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 declare const CT_TextField_Attributes: Attributes;
|
|
1228
|
+
export interface CT_TextParagraph {
|
|
1229
|
+
pPr?: CT_TextParagraphProperties;
|
|
1230
|
+
r?: CT_RegularTextRun[];
|
|
1231
|
+
br?: CT_TextLineBreak[];
|
|
1232
|
+
fld?: CT_TextField[];
|
|
1233
|
+
endParaRPr?: CT_TextCharacterProperties;
|
|
1234
|
+
}
|
|
1235
|
+
export declare const CT_TextParagraph_Attributes: Attributes;
|
|
1236
|
+
export interface CT_TextBody {
|
|
1237
|
+
bodyPr?: CT_TextBodyProperties;
|
|
1238
|
+
lstStyle?: CT_TextListStyle;
|
|
1239
|
+
p?: CT_TextParagraph[];
|
|
1240
|
+
}
|
|
1241
|
+
export declare const CT_TextBody_Attributes: Attributes;
|
|
1242
|
+
export interface CT_GvmlTextShape {
|
|
1243
|
+
txBody?: CT_TextBody;
|
|
1244
|
+
extLst?: CT_OfficeArtExtensionList;
|
|
1245
|
+
}
|
|
1246
|
+
export declare const CT_GvmlTextShape_Attributes: Attributes;
|
|
1247
|
+
export interface CT_GvmlShapeNonVisual {
|
|
1248
|
+
cNvPr?: CT_NonVisualDrawingProps;
|
|
1249
|
+
cNvSpPr?: CT_NonVisualDrawingShapeProps;
|
|
1250
|
+
}
|
|
1251
|
+
export declare const CT_GvmlShapeNonVisual_Attributes: Attributes;
|
|
1252
|
+
export type ST_AdjCoordinate = ST_Coordinate | ST_GeomGuideName;
|
|
1253
|
+
export interface CT_AdjPoint2D {
|
|
1254
|
+
x?: ST_AdjCoordinate;
|
|
1255
|
+
y?: ST_AdjCoordinate;
|
|
1256
|
+
}
|
|
1257
|
+
export declare const CT_AdjPoint2D_Attributes: Attributes;
|
|
1258
|
+
export interface CT_XYAdjustHandle {
|
|
1259
|
+
pos?: CT_AdjPoint2D;
|
|
1260
|
+
gdRefX?: string;
|
|
1261
|
+
minX?: ST_AdjCoordinate;
|
|
1262
|
+
maxX?: ST_AdjCoordinate;
|
|
1263
|
+
gdRefY?: string;
|
|
1264
|
+
minY?: ST_AdjCoordinate;
|
|
1265
|
+
maxY?: ST_AdjCoordinate;
|
|
1266
|
+
}
|
|
1267
|
+
export declare const CT_XYAdjustHandle_Attributes: Attributes;
|
|
1268
|
+
export type ST_AdjAngle = ST_Angle | ST_GeomGuideName;
|
|
1269
|
+
export interface CT_PolarAdjustHandle {
|
|
1270
|
+
pos?: CT_AdjPoint2D;
|
|
1271
|
+
gdRefR?: string;
|
|
1272
|
+
minR?: ST_AdjCoordinate;
|
|
1273
|
+
maxR?: ST_AdjCoordinate;
|
|
1274
|
+
gdRefAng?: string;
|
|
1275
|
+
minAng?: ST_AdjAngle;
|
|
1276
|
+
maxAng?: ST_AdjAngle;
|
|
1277
|
+
}
|
|
1278
|
+
export declare const CT_PolarAdjustHandle_Attributes: Attributes;
|
|
1279
|
+
export interface CT_AdjustHandleList {
|
|
1280
|
+
ahXY?: CT_XYAdjustHandle;
|
|
1281
|
+
ahPolar?: CT_PolarAdjustHandle;
|
|
1282
|
+
}
|
|
1283
|
+
export declare const CT_AdjustHandleList_Attributes: Attributes;
|
|
1284
|
+
export interface CT_ConnectionSite {
|
|
1285
|
+
pos?: CT_AdjPoint2D;
|
|
1286
|
+
ang?: ST_AdjAngle;
|
|
1287
|
+
}
|
|
1288
|
+
export declare const CT_ConnectionSite_Attributes: Attributes;
|
|
1289
|
+
export interface CT_ConnectionSiteList {
|
|
1290
|
+
cxn?: CT_ConnectionSite[];
|
|
1291
|
+
}
|
|
1292
|
+
export declare const CT_ConnectionSiteList_Attributes: Attributes;
|
|
1293
|
+
export interface CT_GeomRect {
|
|
1294
|
+
l?: ST_AdjCoordinate;
|
|
1295
|
+
t?: ST_AdjCoordinate;
|
|
1296
|
+
r?: ST_AdjCoordinate;
|
|
1297
|
+
b?: ST_AdjCoordinate;
|
|
1298
|
+
}
|
|
1299
|
+
export declare const CT_GeomRect_Attributes: Attributes;
|
|
1300
|
+
export interface CT_Path2DClose {
|
|
1301
|
+
}
|
|
1302
|
+
export declare const CT_Path2DClose_Attributes: Attributes;
|
|
1303
|
+
export interface CT_Path2DMoveTo {
|
|
1304
|
+
pt?: CT_AdjPoint2D;
|
|
1305
|
+
}
|
|
1306
|
+
export declare const CT_Path2DMoveTo_Attributes: Attributes;
|
|
1307
|
+
export interface CT_Path2DLineTo {
|
|
1308
|
+
pt?: CT_AdjPoint2D;
|
|
1309
|
+
}
|
|
1310
|
+
export declare const CT_Path2DLineTo_Attributes: Attributes;
|
|
1311
|
+
export interface CT_Path2DArcTo {
|
|
1312
|
+
wR?: ST_AdjCoordinate;
|
|
1313
|
+
hR?: ST_AdjCoordinate;
|
|
1314
|
+
stAng?: ST_AdjAngle;
|
|
1315
|
+
swAng?: ST_AdjAngle;
|
|
1316
|
+
}
|
|
1317
|
+
export declare const CT_Path2DArcTo_Attributes: Attributes;
|
|
1318
|
+
export interface CT_Path2DQuadBezierTo {
|
|
1319
|
+
pt?: CT_AdjPoint2D[];
|
|
1320
|
+
}
|
|
1321
|
+
export declare const CT_Path2DQuadBezierTo_Attributes: Attributes;
|
|
1322
|
+
export interface CT_Path2DCubicBezierTo {
|
|
1323
|
+
pt?: CT_AdjPoint2D[];
|
|
1324
|
+
}
|
|
1325
|
+
export declare const CT_Path2DCubicBezierTo_Attributes: Attributes;
|
|
1326
|
+
export type ST_PathFillMode = 'none' | 'norm' | 'lighten' | 'lightenLess' | 'darken' | 'darkenLess';
|
|
1327
|
+
export interface CT_Path2D {
|
|
1328
|
+
close?: CT_Path2DClose;
|
|
1329
|
+
moveTo?: CT_Path2DMoveTo;
|
|
1330
|
+
lnTo?: CT_Path2DLineTo;
|
|
1331
|
+
arcTo?: CT_Path2DArcTo;
|
|
1332
|
+
quadBezTo?: CT_Path2DQuadBezierTo;
|
|
1333
|
+
cubicBezTo?: CT_Path2DCubicBezierTo;
|
|
1334
|
+
w?: number;
|
|
1335
|
+
h?: number;
|
|
1336
|
+
fill?: ST_PathFillMode;
|
|
1337
|
+
stroke?: boolean;
|
|
1338
|
+
extrusionOk?: boolean;
|
|
1339
|
+
}
|
|
1340
|
+
export declare const CT_Path2D_Attributes: Attributes;
|
|
1341
|
+
export interface CT_Path2DList {
|
|
1342
|
+
path?: CT_Path2D[];
|
|
1343
|
+
}
|
|
1344
|
+
export declare const CT_Path2DList_Attributes: Attributes;
|
|
1345
|
+
export interface CT_CustomGeometry2D {
|
|
1346
|
+
avLst?: CT_GeomGuideList;
|
|
1347
|
+
gdLst?: CT_GeomGuideList;
|
|
1348
|
+
ahLst?: CT_AdjustHandleList;
|
|
1349
|
+
cxnLst?: CT_ConnectionSiteList;
|
|
1350
|
+
rect?: CT_GeomRect;
|
|
1351
|
+
pathLst?: CT_Path2DList;
|
|
1352
|
+
}
|
|
1353
|
+
export declare const CT_CustomGeometry2D_Attributes: Attributes;
|
|
1354
|
+
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';
|
|
1355
|
+
export interface CT_PresetGeometry2D {
|
|
1356
|
+
avLst?: CT_GeomGuideList;
|
|
1357
|
+
prst?: ST_ShapeType;
|
|
1358
|
+
}
|
|
1359
|
+
export declare const CT_PresetGeometry2D_Attributes: Attributes;
|
|
1360
|
+
export interface CT_ShapeProperties {
|
|
1361
|
+
xfrm?: CT_Transform2D;
|
|
1362
|
+
custGeom?: CT_CustomGeometry2D;
|
|
1363
|
+
prstGeom?: CT_PresetGeometry2D;
|
|
1364
|
+
noFill?: CT_NoFillProperties;
|
|
1365
|
+
solidFill?: CT_SolidColorFillProperties;
|
|
1366
|
+
gradFill?: CT_GradientFillProperties;
|
|
1367
|
+
blipFill?: CT_BlipFillProperties;
|
|
1368
|
+
pattFill?: CT_PatternFillProperties;
|
|
1369
|
+
grpFill?: CT_GroupFillProperties;
|
|
1370
|
+
ln?: CT_LineProperties;
|
|
1371
|
+
effectLst?: CT_EffectList;
|
|
1372
|
+
effectDag?: CT_EffectContainer;
|
|
1373
|
+
scene3d?: CT_Scene3D;
|
|
1374
|
+
sp3d?: CT_Shape3D;
|
|
1375
|
+
extLst?: CT_OfficeArtExtensionList;
|
|
1376
|
+
bwMode?: ST_BlackWhiteMode;
|
|
1377
|
+
}
|
|
1378
|
+
export declare const CT_ShapeProperties_Attributes: Attributes;
|
|
1379
|
+
export interface CT_StyleMatrixReference {
|
|
1380
|
+
scrgbClr?: CT_ScRgbColor;
|
|
1381
|
+
srgbClr?: CT_SRgbColor;
|
|
1382
|
+
hslClr?: CT_HslColor;
|
|
1383
|
+
sysClr?: CT_SystemColor;
|
|
1384
|
+
schemeClr?: CT_SchemeColor;
|
|
1385
|
+
prstClr?: CT_PresetColor;
|
|
1386
|
+
idx?: number;
|
|
1387
|
+
}
|
|
1388
|
+
export declare const CT_StyleMatrixReference_Attributes: Attributes;
|
|
1389
|
+
export interface CT_FontReference {
|
|
1390
|
+
scrgbClr?: CT_ScRgbColor;
|
|
1391
|
+
srgbClr?: CT_SRgbColor;
|
|
1392
|
+
hslClr?: CT_HslColor;
|
|
1393
|
+
sysClr?: CT_SystemColor;
|
|
1394
|
+
schemeClr?: CT_SchemeColor;
|
|
1395
|
+
prstClr?: CT_PresetColor;
|
|
1396
|
+
idx?: ST_FontCollectionIndex;
|
|
1397
|
+
}
|
|
1398
|
+
export declare const CT_FontReference_Attributes: Attributes;
|
|
1399
|
+
export interface CT_ShapeStyle {
|
|
1400
|
+
lnRef?: CT_StyleMatrixReference;
|
|
1401
|
+
fillRef?: CT_StyleMatrixReference;
|
|
1402
|
+
effectRef?: CT_StyleMatrixReference;
|
|
1403
|
+
fontRef?: CT_FontReference;
|
|
1404
|
+
}
|
|
1405
|
+
export declare const CT_ShapeStyle_Attributes: Attributes;
|
|
1406
|
+
export interface CT_GvmlShape {
|
|
1407
|
+
nvSpPr?: CT_GvmlShapeNonVisual;
|
|
1408
|
+
spPr?: CT_ShapeProperties;
|
|
1409
|
+
txSp?: CT_GvmlTextShape;
|
|
1410
|
+
style?: CT_ShapeStyle;
|
|
1411
|
+
extLst?: CT_OfficeArtExtensionList;
|
|
1412
|
+
}
|
|
1413
|
+
export declare const CT_GvmlShape_Attributes: Attributes;
|
|
1414
|
+
export interface CT_GvmlConnectorNonVisual {
|
|
1415
|
+
cNvPr?: CT_NonVisualDrawingProps;
|
|
1416
|
+
cNvCxnSpPr?: CT_NonVisualConnectorProperties;
|
|
1417
|
+
}
|
|
1418
|
+
export declare const CT_GvmlConnectorNonVisual_Attributes: Attributes;
|
|
1419
|
+
export interface CT_GvmlConnector {
|
|
1420
|
+
nvCxnSpPr?: CT_GvmlConnectorNonVisual;
|
|
1421
|
+
spPr?: CT_ShapeProperties;
|
|
1422
|
+
style?: CT_ShapeStyle;
|
|
1423
|
+
extLst?: CT_OfficeArtExtensionList;
|
|
1424
|
+
}
|
|
1425
|
+
export declare const CT_GvmlConnector_Attributes: Attributes;
|
|
1426
|
+
export interface CT_GvmlPictureNonVisual {
|
|
1427
|
+
cNvPr?: CT_NonVisualDrawingProps;
|
|
1428
|
+
cNvPicPr?: CT_NonVisualPictureProperties;
|
|
1429
|
+
}
|
|
1430
|
+
export declare const CT_GvmlPictureNonVisual_Attributes: Attributes;
|
|
1431
|
+
export interface CT_GvmlPicture {
|
|
1432
|
+
nvPicPr?: CT_GvmlPictureNonVisual;
|
|
1433
|
+
blipFill?: CT_BlipFillProperties;
|
|
1434
|
+
spPr?: CT_ShapeProperties;
|
|
1435
|
+
style?: CT_ShapeStyle;
|
|
1436
|
+
extLst?: CT_OfficeArtExtensionList;
|
|
1437
|
+
}
|
|
1438
|
+
export declare const CT_GvmlPicture_Attributes: Attributes;
|
|
1439
|
+
export interface CT_GvmlGraphicFrameNonVisual {
|
|
1440
|
+
cNvPr?: CT_NonVisualDrawingProps;
|
|
1441
|
+
cNvGraphicFramePr?: CT_NonVisualGraphicFrameProperties;
|
|
1442
|
+
}
|
|
1443
|
+
export declare const CT_GvmlGraphicFrameNonVisual_Attributes: Attributes;
|
|
1444
|
+
export interface CT_GvmlGraphicalObjectFrame {
|
|
1445
|
+
nvGraphicFramePr?: CT_GvmlGraphicFrameNonVisual;
|
|
1446
|
+
xfrm?: CT_Transform2D;
|
|
1447
|
+
extLst?: CT_OfficeArtExtensionList;
|
|
1448
|
+
}
|
|
1449
|
+
export declare const CT_GvmlGraphicalObjectFrame_Attributes: Attributes;
|
|
1450
|
+
export interface CT_GvmlGroupShapeNonVisual {
|
|
1451
|
+
cNvPr?: CT_NonVisualDrawingProps;
|
|
1452
|
+
cNvGrpSpPr?: CT_NonVisualGroupDrawingShapeProps;
|
|
1453
|
+
}
|
|
1454
|
+
export declare const CT_GvmlGroupShapeNonVisual_Attributes: Attributes;
|
|
1455
|
+
export interface CT_GroupShapeProperties {
|
|
1456
|
+
xfrm?: CT_GroupTransform2D;
|
|
1457
|
+
noFill?: CT_NoFillProperties;
|
|
1458
|
+
solidFill?: CT_SolidColorFillProperties;
|
|
1459
|
+
gradFill?: CT_GradientFillProperties;
|
|
1460
|
+
blipFill?: CT_BlipFillProperties;
|
|
1461
|
+
pattFill?: CT_PatternFillProperties;
|
|
1462
|
+
grpFill?: CT_GroupFillProperties;
|
|
1463
|
+
effectLst?: CT_EffectList;
|
|
1464
|
+
effectDag?: CT_EffectContainer;
|
|
1465
|
+
scene3d?: CT_Scene3D;
|
|
1466
|
+
extLst?: CT_OfficeArtExtensionList;
|
|
1467
|
+
bwMode?: ST_BlackWhiteMode;
|
|
1468
|
+
}
|
|
1469
|
+
export declare const CT_GroupShapeProperties_Attributes: Attributes;
|
|
1470
|
+
export interface CT_GvmlGroupShape {
|
|
1471
|
+
nvGrpSpPr?: CT_GvmlGroupShapeNonVisual;
|
|
1472
|
+
grpSpPr?: CT_GroupShapeProperties;
|
|
1473
|
+
extLst?: CT_OfficeArtExtensionList;
|
|
1474
|
+
}
|
|
1475
|
+
export declare const CT_GvmlGroupShape_Attributes: Attributes;
|
|
1476
|
+
export interface CT_AlphaBiLevelEffect {
|
|
1477
|
+
thresh?: ST_PositiveFixedPercentage;
|
|
1478
|
+
}
|
|
1479
|
+
export declare const CT_AlphaBiLevelEffect_Attributes: Attributes;
|
|
1480
|
+
export interface CT_AlphaCeilingEffect {
|
|
1481
|
+
}
|
|
1482
|
+
export declare const CT_AlphaCeilingEffect_Attributes: Attributes;
|
|
1483
|
+
export interface CT_AlphaFloorEffect {
|
|
1484
|
+
}
|
|
1485
|
+
export declare const CT_AlphaFloorEffect_Attributes: Attributes;
|
|
1486
|
+
export interface CT_AlphaInverseEffect {
|
|
1487
|
+
scrgbClr?: CT_ScRgbColor;
|
|
1488
|
+
srgbClr?: CT_SRgbColor;
|
|
1489
|
+
hslClr?: CT_HslColor;
|
|
1490
|
+
sysClr?: CT_SystemColor;
|
|
1491
|
+
schemeClr?: CT_SchemeColor;
|
|
1492
|
+
prstClr?: CT_PresetColor;
|
|
1493
|
+
}
|
|
1494
|
+
export declare const CT_AlphaInverseEffect_Attributes: Attributes;
|
|
1495
|
+
export interface CT_AlphaModulateFixedEffect {
|
|
1496
|
+
amt?: ST_PositivePercentage;
|
|
1497
|
+
}
|
|
1498
|
+
export declare const CT_AlphaModulateFixedEffect_Attributes: Attributes;
|
|
1499
|
+
export interface CT_AlphaOutsetEffect {
|
|
1500
|
+
rad?: ST_Coordinate;
|
|
1501
|
+
}
|
|
1502
|
+
export declare const CT_AlphaOutsetEffect_Attributes: Attributes;
|
|
1503
|
+
export interface CT_AlphaReplaceEffect {
|
|
1504
|
+
a?: ST_PositiveFixedPercentage;
|
|
1505
|
+
}
|
|
1506
|
+
export declare const CT_AlphaReplaceEffect_Attributes: Attributes;
|
|
1507
|
+
export interface CT_BiLevelEffect {
|
|
1508
|
+
thresh?: ST_PositiveFixedPercentage;
|
|
1509
|
+
}
|
|
1510
|
+
export declare const CT_BiLevelEffect_Attributes: Attributes;
|
|
1511
|
+
export interface CT_ColorChangeEffect {
|
|
1512
|
+
clrFrom?: CT_Color;
|
|
1513
|
+
clrTo?: CT_Color;
|
|
1514
|
+
useA?: boolean;
|
|
1515
|
+
}
|
|
1516
|
+
export declare const CT_ColorChangeEffect_Attributes: Attributes;
|
|
1517
|
+
export interface CT_ColorReplaceEffect {
|
|
1518
|
+
scrgbClr?: CT_ScRgbColor;
|
|
1519
|
+
srgbClr?: CT_SRgbColor;
|
|
1520
|
+
hslClr?: CT_HslColor;
|
|
1521
|
+
sysClr?: CT_SystemColor;
|
|
1522
|
+
schemeClr?: CT_SchemeColor;
|
|
1523
|
+
prstClr?: CT_PresetColor;
|
|
1524
|
+
}
|
|
1525
|
+
export declare const CT_ColorReplaceEffect_Attributes: Attributes;
|
|
1526
|
+
export interface CT_DuotoneEffect {
|
|
1527
|
+
scrgbClr?: CT_ScRgbColor;
|
|
1528
|
+
srgbClr?: CT_SRgbColor;
|
|
1529
|
+
hslClr?: CT_HslColor;
|
|
1530
|
+
sysClr?: CT_SystemColor;
|
|
1531
|
+
schemeClr?: CT_SchemeColor;
|
|
1532
|
+
prstClr?: CT_PresetColor;
|
|
1533
|
+
}
|
|
1534
|
+
export declare const CT_DuotoneEffect_Attributes: Attributes;
|
|
1535
|
+
export interface CT_GrayscaleEffect {
|
|
1536
|
+
}
|
|
1537
|
+
export declare const CT_GrayscaleEffect_Attributes: Attributes;
|
|
1538
|
+
export interface CT_HSLEffect {
|
|
1539
|
+
hue?: number;
|
|
1540
|
+
sat?: ST_FixedPercentage;
|
|
1541
|
+
lum?: ST_FixedPercentage;
|
|
1542
|
+
}
|
|
1543
|
+
export declare const CT_HSLEffect_Attributes: Attributes;
|
|
1544
|
+
export interface CT_LuminanceEffect {
|
|
1545
|
+
bright?: ST_FixedPercentage;
|
|
1546
|
+
contrast?: ST_FixedPercentage;
|
|
1547
|
+
}
|
|
1548
|
+
export declare const CT_LuminanceEffect_Attributes: Attributes;
|
|
1549
|
+
export interface CT_RelativeOffsetEffect {
|
|
1550
|
+
tx?: string;
|
|
1551
|
+
ty?: string;
|
|
1552
|
+
}
|
|
1553
|
+
export declare const CT_RelativeOffsetEffect_Attributes: Attributes;
|
|
1554
|
+
export interface CT_TintEffect {
|
|
1555
|
+
hue?: number;
|
|
1556
|
+
amt?: ST_FixedPercentage;
|
|
1557
|
+
}
|
|
1558
|
+
export declare const CT_TintEffect_Attributes: Attributes;
|
|
1559
|
+
export interface CT_TransformEffect {
|
|
1560
|
+
sx?: string;
|
|
1561
|
+
sy?: string;
|
|
1562
|
+
kx?: number;
|
|
1563
|
+
ky?: number;
|
|
1564
|
+
tx?: ST_Coordinate;
|
|
1565
|
+
ty?: ST_Coordinate;
|
|
1566
|
+
}
|
|
1567
|
+
export declare const CT_TransformEffect_Attributes: Attributes;
|
|
1568
|
+
export interface CT_FillProperties {
|
|
1569
|
+
noFill?: CT_NoFillProperties;
|
|
1570
|
+
solidFill?: CT_SolidColorFillProperties;
|
|
1571
|
+
gradFill?: CT_GradientFillProperties;
|
|
1572
|
+
blipFill?: CT_BlipFillProperties;
|
|
1573
|
+
pattFill?: CT_PatternFillProperties;
|
|
1574
|
+
grpFill?: CT_GroupFillProperties;
|
|
1575
|
+
}
|
|
1576
|
+
export declare const CT_FillProperties_Attributes: Attributes;
|
|
1577
|
+
export interface CT_FillEffect {
|
|
1578
|
+
noFill?: CT_NoFillProperties;
|
|
1579
|
+
solidFill?: CT_SolidColorFillProperties;
|
|
1580
|
+
gradFill?: CT_GradientFillProperties;
|
|
1581
|
+
blipFill?: CT_BlipFillProperties;
|
|
1582
|
+
pattFill?: CT_PatternFillProperties;
|
|
1583
|
+
grpFill?: CT_GroupFillProperties;
|
|
1584
|
+
}
|
|
1585
|
+
export declare const CT_FillEffect_Attributes: Attributes;
|
|
1586
|
+
export interface CT_EffectReference {
|
|
1587
|
+
ref?: string;
|
|
1588
|
+
}
|
|
1589
|
+
export declare const CT_EffectReference_Attributes: Attributes;
|
|
1590
|
+
export interface CT_AlphaModulateEffect {
|
|
1591
|
+
cont?: CT_EffectContainer;
|
|
1592
|
+
}
|
|
1593
|
+
export declare const CT_AlphaModulateEffect_Attributes: Attributes;
|
|
1594
|
+
export interface CT_BlendEffect {
|
|
1595
|
+
cont?: CT_EffectContainer;
|
|
1596
|
+
blend?: ST_BlendMode;
|
|
1597
|
+
}
|
|
1598
|
+
export declare const CT_BlendEffect_Attributes: Attributes;
|
|
1599
|
+
export interface CT_EffectProperties {
|
|
1600
|
+
effectLst?: CT_EffectList;
|
|
1601
|
+
effectDag?: CT_EffectContainer;
|
|
1602
|
+
}
|
|
1603
|
+
export declare const CT_EffectProperties_Attributes: Attributes;
|
|
1604
|
+
export type ST_ShapeID = string;
|
|
1605
|
+
export interface CT_DefaultShapeDefinition {
|
|
1606
|
+
spPr?: CT_ShapeProperties;
|
|
1607
|
+
bodyPr?: CT_TextBodyProperties;
|
|
1608
|
+
lstStyle?: CT_TextListStyle;
|
|
1609
|
+
style?: CT_ShapeStyle;
|
|
1610
|
+
extLst?: CT_OfficeArtExtensionList;
|
|
1611
|
+
}
|
|
1612
|
+
export declare const CT_DefaultShapeDefinition_Attributes: Attributes;
|
|
1613
|
+
export interface CT_ObjectStyleDefaults {
|
|
1614
|
+
spDef?: CT_DefaultShapeDefinition;
|
|
1615
|
+
lnDef?: CT_DefaultShapeDefinition;
|
|
1616
|
+
txDef?: CT_DefaultShapeDefinition;
|
|
1617
|
+
extLst?: CT_OfficeArtExtensionList;
|
|
1618
|
+
}
|
|
1619
|
+
export declare const CT_ObjectStyleDefaults_Attributes: Attributes;
|
|
1620
|
+
export interface CT_EmptyElement {
|
|
1621
|
+
}
|
|
1622
|
+
export declare const CT_EmptyElement_Attributes: Attributes;
|
|
1623
|
+
export interface CT_ColorMapping {
|
|
1624
|
+
extLst?: CT_OfficeArtExtensionList;
|
|
1625
|
+
bg1?: ST_ColorSchemeIndex;
|
|
1626
|
+
tx1?: ST_ColorSchemeIndex;
|
|
1627
|
+
bg2?: ST_ColorSchemeIndex;
|
|
1628
|
+
tx2?: ST_ColorSchemeIndex;
|
|
1629
|
+
accent1?: ST_ColorSchemeIndex;
|
|
1630
|
+
accent2?: ST_ColorSchemeIndex;
|
|
1631
|
+
accent3?: ST_ColorSchemeIndex;
|
|
1632
|
+
accent4?: ST_ColorSchemeIndex;
|
|
1633
|
+
accent5?: ST_ColorSchemeIndex;
|
|
1634
|
+
accent6?: ST_ColorSchemeIndex;
|
|
1635
|
+
hlink?: ST_ColorSchemeIndex;
|
|
1636
|
+
folHlink?: ST_ColorSchemeIndex;
|
|
1637
|
+
}
|
|
1638
|
+
export declare const CT_ColorMapping_Attributes: Attributes;
|
|
1639
|
+
export interface CT_ColorMappingOverride {
|
|
1640
|
+
}
|
|
1641
|
+
export declare const CT_ColorMappingOverride_Attributes: Attributes;
|
|
1642
|
+
export interface CT_ColorSchemeAndMapping {
|
|
1643
|
+
clrScheme?: CT_ColorScheme;
|
|
1644
|
+
clrMap?: CT_ColorMapping;
|
|
1645
|
+
}
|
|
1646
|
+
export declare const CT_ColorSchemeAndMapping_Attributes: Attributes;
|
|
1647
|
+
export interface CT_ColorSchemeList {
|
|
1648
|
+
extraClrScheme?: CT_ColorSchemeAndMapping[];
|
|
1649
|
+
}
|
|
1650
|
+
export declare const CT_ColorSchemeList_Attributes: Attributes;
|
|
1651
|
+
export interface CT_OfficeStyleSheet {
|
|
1652
|
+
themeElements?: CT_BaseStyles;
|
|
1653
|
+
objectDefaults?: CT_ObjectStyleDefaults;
|
|
1654
|
+
extraClrSchemeLst?: CT_ColorSchemeList;
|
|
1655
|
+
custClrLst?: CT_CustomColorList;
|
|
1656
|
+
extLst?: CT_OfficeArtExtensionList;
|
|
1657
|
+
name?: string;
|
|
1658
|
+
}
|
|
1659
|
+
export declare const CT_OfficeStyleSheet_Attributes: Attributes;
|
|
1660
|
+
export interface CT_BaseStylesOverride {
|
|
1661
|
+
clrScheme?: CT_ColorScheme;
|
|
1662
|
+
fontScheme?: CT_FontScheme;
|
|
1663
|
+
fmtScheme?: CT_StyleMatrix;
|
|
1664
|
+
}
|
|
1665
|
+
export declare const CT_BaseStylesOverride_Attributes: Attributes;
|
|
1666
|
+
export interface CT_ClipboardStyleSheet {
|
|
1667
|
+
themeElements?: CT_BaseStyles;
|
|
1668
|
+
clrMap?: CT_ColorMapping;
|
|
1669
|
+
}
|
|
1670
|
+
export declare const CT_ClipboardStyleSheet_Attributes: Attributes;
|
|
1671
|
+
export interface CT_Cell3D {
|
|
1672
|
+
bevel?: CT_Bevel;
|
|
1673
|
+
lightRig?: CT_LightRig;
|
|
1674
|
+
extLst?: CT_OfficeArtExtensionList;
|
|
1675
|
+
prstMaterial?: ST_PresetMaterialType;
|
|
1676
|
+
}
|
|
1677
|
+
export declare const CT_Cell3D_Attributes: Attributes;
|
|
1678
|
+
export interface CT_Headers {
|
|
1679
|
+
header?: string[][];
|
|
1680
|
+
}
|
|
1681
|
+
export declare const CT_Headers_Attributes: Attributes;
|
|
1682
|
+
export interface CT_TableCellProperties {
|
|
1683
|
+
lnL?: CT_LineProperties;
|
|
1684
|
+
lnR?: CT_LineProperties;
|
|
1685
|
+
lnT?: CT_LineProperties;
|
|
1686
|
+
lnB?: CT_LineProperties;
|
|
1687
|
+
lnTlToBr?: CT_LineProperties;
|
|
1688
|
+
lnBlToTr?: CT_LineProperties;
|
|
1689
|
+
cell3D?: CT_Cell3D;
|
|
1690
|
+
noFill?: CT_NoFillProperties;
|
|
1691
|
+
solidFill?: CT_SolidColorFillProperties;
|
|
1692
|
+
gradFill?: CT_GradientFillProperties;
|
|
1693
|
+
blipFill?: CT_BlipFillProperties;
|
|
1694
|
+
pattFill?: CT_PatternFillProperties;
|
|
1695
|
+
grpFill?: CT_GroupFillProperties;
|
|
1696
|
+
headers?: CT_Headers[];
|
|
1697
|
+
extLst?: CT_OfficeArtExtensionList;
|
|
1698
|
+
marL?: ST_Coordinate32;
|
|
1699
|
+
marR?: ST_Coordinate32;
|
|
1700
|
+
marT?: ST_Coordinate32;
|
|
1701
|
+
marB?: ST_Coordinate32;
|
|
1702
|
+
vert?: ST_TextVerticalType;
|
|
1703
|
+
anchor?: ST_TextAnchoringType;
|
|
1704
|
+
anchorCtr?: boolean;
|
|
1705
|
+
horzOverflow?: ST_TextHorzOverflowType;
|
|
1706
|
+
}
|
|
1707
|
+
export declare const CT_TableCellProperties_Attributes: Attributes;
|
|
1708
|
+
export interface CT_TableCol {
|
|
1709
|
+
extLst?: CT_OfficeArtExtensionList;
|
|
1710
|
+
w?: ST_Coordinate;
|
|
1711
|
+
}
|
|
1712
|
+
export declare const CT_TableCol_Attributes: Attributes;
|
|
1713
|
+
export interface CT_TableGrid {
|
|
1714
|
+
gridCol?: CT_TableCol[];
|
|
1715
|
+
}
|
|
1716
|
+
export declare const CT_TableGrid_Attributes: Attributes;
|
|
1717
|
+
export interface CT_TableCell {
|
|
1718
|
+
txBody?: CT_TextBody;
|
|
1719
|
+
tcPr?: CT_TableCellProperties;
|
|
1720
|
+
extLst?: CT_OfficeArtExtensionList;
|
|
1721
|
+
rowSpan?: number;
|
|
1722
|
+
gridSpan?: number;
|
|
1723
|
+
hMerge?: boolean;
|
|
1724
|
+
vMerge?: boolean;
|
|
1725
|
+
id?: string;
|
|
1726
|
+
}
|
|
1727
|
+
export declare const CT_TableCell_Attributes: Attributes;
|
|
1728
|
+
export interface CT_TableRow {
|
|
1729
|
+
tc?: CT_TableCell[];
|
|
1730
|
+
extLst?: CT_OfficeArtExtensionList;
|
|
1731
|
+
h?: ST_Coordinate;
|
|
1732
|
+
}
|
|
1733
|
+
export declare const CT_TableRow_Attributes: Attributes;
|
|
1734
|
+
export interface CT_TableProperties {
|
|
1735
|
+
noFill?: CT_NoFillProperties;
|
|
1736
|
+
solidFill?: CT_SolidColorFillProperties;
|
|
1737
|
+
gradFill?: CT_GradientFillProperties;
|
|
1738
|
+
blipFill?: CT_BlipFillProperties;
|
|
1739
|
+
pattFill?: CT_PatternFillProperties;
|
|
1740
|
+
grpFill?: CT_GroupFillProperties;
|
|
1741
|
+
effectLst?: CT_EffectList;
|
|
1742
|
+
effectDag?: CT_EffectContainer;
|
|
1743
|
+
extLst?: CT_OfficeArtExtensionList;
|
|
1744
|
+
rtl?: boolean;
|
|
1745
|
+
firstRow?: boolean;
|
|
1746
|
+
firstCol?: boolean;
|
|
1747
|
+
lastRow?: boolean;
|
|
1748
|
+
lastCol?: boolean;
|
|
1749
|
+
bandRow?: boolean;
|
|
1750
|
+
bandCol?: boolean;
|
|
1751
|
+
}
|
|
1752
|
+
export declare const CT_TableProperties_Attributes: Attributes;
|
|
1753
|
+
export interface CT_Table {
|
|
1754
|
+
tblPr?: CT_TableProperties;
|
|
1755
|
+
tblGrid?: CT_TableGrid;
|
|
1756
|
+
tr?: CT_TableRow[];
|
|
1757
|
+
}
|
|
1758
|
+
export declare const CT_Table_Attributes: Attributes;
|
|
1759
|
+
export interface CT_ThemeableLineStyle {
|
|
1760
|
+
ln?: CT_LineProperties;
|
|
1761
|
+
lnRef?: CT_StyleMatrixReference;
|
|
1762
|
+
}
|
|
1763
|
+
export declare const CT_ThemeableLineStyle_Attributes: Attributes;
|
|
1764
|
+
export type ST_OnOffStyleType = 'on' | 'off' | 'def';
|
|
1765
|
+
export interface CT_TableStyleTextStyle {
|
|
1766
|
+
font?: CT_FontCollection;
|
|
1767
|
+
fontRef?: CT_FontReference;
|
|
1768
|
+
scrgbClr?: CT_ScRgbColor;
|
|
1769
|
+
srgbClr?: CT_SRgbColor;
|
|
1770
|
+
hslClr?: CT_HslColor;
|
|
1771
|
+
sysClr?: CT_SystemColor;
|
|
1772
|
+
schemeClr?: CT_SchemeColor;
|
|
1773
|
+
prstClr?: CT_PresetColor;
|
|
1774
|
+
extLst?: CT_OfficeArtExtensionList;
|
|
1775
|
+
b?: ST_OnOffStyleType;
|
|
1776
|
+
i?: ST_OnOffStyleType;
|
|
1777
|
+
}
|
|
1778
|
+
export declare const CT_TableStyleTextStyle_Attributes: Attributes;
|
|
1779
|
+
export interface CT_TableCellBorderStyle {
|
|
1780
|
+
left?: CT_ThemeableLineStyle;
|
|
1781
|
+
right?: CT_ThemeableLineStyle;
|
|
1782
|
+
top?: CT_ThemeableLineStyle;
|
|
1783
|
+
bottom?: CT_ThemeableLineStyle;
|
|
1784
|
+
insideH?: CT_ThemeableLineStyle;
|
|
1785
|
+
insideV?: CT_ThemeableLineStyle;
|
|
1786
|
+
tl2br?: CT_ThemeableLineStyle;
|
|
1787
|
+
tr2bl?: CT_ThemeableLineStyle;
|
|
1788
|
+
extLst?: CT_OfficeArtExtensionList;
|
|
1789
|
+
}
|
|
1790
|
+
export declare const CT_TableCellBorderStyle_Attributes: Attributes;
|
|
1791
|
+
export interface CT_TableBackgroundStyle {
|
|
1792
|
+
fill?: CT_FillProperties;
|
|
1793
|
+
fillRef?: CT_StyleMatrixReference;
|
|
1794
|
+
effect?: CT_EffectProperties;
|
|
1795
|
+
effectRef?: CT_StyleMatrixReference;
|
|
1796
|
+
}
|
|
1797
|
+
export declare const CT_TableBackgroundStyle_Attributes: Attributes;
|
|
1798
|
+
export interface CT_TableStyleCellStyle {
|
|
1799
|
+
tcBdr?: CT_TableCellBorderStyle;
|
|
1800
|
+
fill?: CT_FillProperties;
|
|
1801
|
+
fillRef?: CT_StyleMatrixReference;
|
|
1802
|
+
cell3D?: CT_Cell3D;
|
|
1803
|
+
}
|
|
1804
|
+
export declare const CT_TableStyleCellStyle_Attributes: Attributes;
|
|
1805
|
+
export interface CT_TablePartStyle {
|
|
1806
|
+
tcTxStyle?: CT_TableStyleTextStyle;
|
|
1807
|
+
tcStyle?: CT_TableStyleCellStyle;
|
|
1808
|
+
}
|
|
1809
|
+
export declare const CT_TablePartStyle_Attributes: Attributes;
|
|
1810
|
+
export interface CT_TableStyle {
|
|
1811
|
+
tblBg?: CT_TableBackgroundStyle;
|
|
1812
|
+
wholeTbl?: CT_TablePartStyle;
|
|
1813
|
+
band1H?: CT_TablePartStyle;
|
|
1814
|
+
band2H?: CT_TablePartStyle;
|
|
1815
|
+
band1V?: CT_TablePartStyle;
|
|
1816
|
+
band2V?: CT_TablePartStyle;
|
|
1817
|
+
lastCol?: CT_TablePartStyle;
|
|
1818
|
+
firstCol?: CT_TablePartStyle;
|
|
1819
|
+
lastRow?: CT_TablePartStyle;
|
|
1820
|
+
seCell?: CT_TablePartStyle;
|
|
1821
|
+
swCell?: CT_TablePartStyle;
|
|
1822
|
+
firstRow?: CT_TablePartStyle;
|
|
1823
|
+
neCell?: CT_TablePartStyle;
|
|
1824
|
+
nwCell?: CT_TablePartStyle;
|
|
1825
|
+
extLst?: CT_OfficeArtExtensionList;
|
|
1826
|
+
styleId?: string;
|
|
1827
|
+
styleName?: string;
|
|
1828
|
+
}
|
|
1829
|
+
export declare const CT_TableStyle_Attributes: Attributes;
|
|
1830
|
+
export interface CT_TableStyleList {
|
|
1831
|
+
tblStyle?: CT_TableStyle[];
|
|
1832
|
+
def?: string;
|
|
1833
|
+
}
|
|
1834
|
+
export declare const CT_TableStyleList_Attributes: Attributes;
|
|
1835
|
+
export type ST_TextBulletSize = string;
|
|
1836
|
+
export type ST_TextPointUnqualified = number;
|