office-viewer 0.2.1 → 0.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +13 -3
- package/esm/Excel.d.ts +59 -0
- package/esm/Excel.js +200 -0
- package/esm/OfficeViewer.d.ts +10 -0
- package/esm/RenderOptions.d.ts +25 -0
- package/esm/UnSupport.d.ts +13 -0
- package/esm/UnSupport.js +33 -0
- package/esm/Word.d.ts +7 -24
- package/esm/Word.js +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,2971 @@
|
|
|
1
|
+
import { Attributes } from './Attributes';
|
|
2
|
+
import { CT_ExtensionList } from './../excel/types/CT_ExtensionList';
|
|
3
|
+
export type ST_Lang = string;
|
|
4
|
+
export type ST_HexColorRGB = string;
|
|
5
|
+
export type ST_Panose = string;
|
|
6
|
+
export type ST_CalendarType = 'gregorian' | 'gregorianUs' | 'gregorianMeFrench' | 'gregorianArabic' | 'hijri' | 'hebrew' | 'taiwan' | 'japan' | 'thai' | 'korea' | 'saka' | 'gregorianXlitEnglish' | 'gregorianXlitFrench' | 'none';
|
|
7
|
+
export type ST_Guid = string;
|
|
8
|
+
export type ST_OnOff = boolean;
|
|
9
|
+
export type ST_String = string;
|
|
10
|
+
export type ST_XmlName = string;
|
|
11
|
+
export type ST_UnsignedDecimalNumber = number;
|
|
12
|
+
export type ST_TwipsMeasure = ST_UnsignedDecimalNumber | ST_PositiveUniversalMeasure;
|
|
13
|
+
export type ST_VerticalAlignRun = 'baseline' | 'superscript' | 'subscript';
|
|
14
|
+
export type ST_Xstring = string;
|
|
15
|
+
export type ST_XAlign = 'left' | 'center' | 'right' | 'inside' | 'outside';
|
|
16
|
+
export type ST_YAlign = 'inline' | 'top' | 'center' | 'bottom' | 'inside' | 'outside';
|
|
17
|
+
export type ST_ConformanceClass = 'strict' | 'transitional';
|
|
18
|
+
export type ST_UniversalMeasure = string;
|
|
19
|
+
export type ST_PositiveUniversalMeasure = ST_UniversalMeasure;
|
|
20
|
+
export type ST_Percentage = string;
|
|
21
|
+
export type ST_FixedPercentage = string;
|
|
22
|
+
export type ST_PositivePercentage = string;
|
|
23
|
+
export type ST_PositiveFixedPercentage = string;
|
|
24
|
+
export interface CT_OfficeArtExtension {
|
|
25
|
+
__any__?: any;
|
|
26
|
+
uri?: string;
|
|
27
|
+
}
|
|
28
|
+
export declare const CT_OfficeArtExtension_Attributes: Attributes;
|
|
29
|
+
export interface CT_OfficeArtExtensionList {
|
|
30
|
+
ext?: CT_OfficeArtExtension[];
|
|
31
|
+
}
|
|
32
|
+
export declare const CT_OfficeArtExtensionList_Attributes: Attributes;
|
|
33
|
+
export interface CT_AudioFile {
|
|
34
|
+
extLst?: CT_OfficeArtExtensionList;
|
|
35
|
+
contentType?: string;
|
|
36
|
+
}
|
|
37
|
+
export declare const CT_AudioFile_Attributes: Attributes;
|
|
38
|
+
export interface CT_VideoFile {
|
|
39
|
+
extLst?: CT_OfficeArtExtensionList;
|
|
40
|
+
contentType?: string;
|
|
41
|
+
}
|
|
42
|
+
export declare const CT_VideoFile_Attributes: Attributes;
|
|
43
|
+
export interface CT_QuickTimeFile {
|
|
44
|
+
extLst?: CT_OfficeArtExtensionList;
|
|
45
|
+
}
|
|
46
|
+
export declare const CT_QuickTimeFile_Attributes: Attributes;
|
|
47
|
+
export interface CT_AudioCDTime {
|
|
48
|
+
track?: number;
|
|
49
|
+
time?: number;
|
|
50
|
+
}
|
|
51
|
+
export declare const CT_AudioCDTime_Attributes: Attributes;
|
|
52
|
+
export interface CT_AudioCD {
|
|
53
|
+
st?: CT_AudioCDTime;
|
|
54
|
+
end?: CT_AudioCDTime;
|
|
55
|
+
extLst?: CT_OfficeArtExtensionList;
|
|
56
|
+
}
|
|
57
|
+
export declare const CT_AudioCD_Attributes: Attributes;
|
|
58
|
+
export type ST_StyleMatrixColumnIndex = number;
|
|
59
|
+
export type ST_FontCollectionIndex = 'major' | 'minor' | 'none';
|
|
60
|
+
export type ST_ColorSchemeIndex = 'dk1' | 'lt1' | 'dk2' | 'lt2' | 'accent1' | 'accent2' | 'accent3' | 'accent4' | 'accent5' | 'accent6' | 'hlink' | 'folHlink';
|
|
61
|
+
export interface CT_PositiveFixedPercentage {
|
|
62
|
+
val?: ST_PositiveFixedPercentage;
|
|
63
|
+
}
|
|
64
|
+
export declare const CT_PositiveFixedPercentage_Attributes: Attributes;
|
|
65
|
+
export interface CT_ComplementTransform {
|
|
66
|
+
}
|
|
67
|
+
export declare const CT_ComplementTransform_Attributes: Attributes;
|
|
68
|
+
export interface CT_InverseTransform {
|
|
69
|
+
}
|
|
70
|
+
export declare const CT_InverseTransform_Attributes: Attributes;
|
|
71
|
+
export interface CT_GrayscaleTransform {
|
|
72
|
+
}
|
|
73
|
+
export declare const CT_GrayscaleTransform_Attributes: Attributes;
|
|
74
|
+
export interface CT_FixedPercentage {
|
|
75
|
+
val?: ST_FixedPercentage;
|
|
76
|
+
}
|
|
77
|
+
export declare const CT_FixedPercentage_Attributes: Attributes;
|
|
78
|
+
export interface CT_PositivePercentage {
|
|
79
|
+
val?: ST_PositivePercentage;
|
|
80
|
+
}
|
|
81
|
+
export declare const CT_PositivePercentage_Attributes: Attributes;
|
|
82
|
+
export type ST_PositiveFixedAngle = ST_Angle;
|
|
83
|
+
export interface CT_PositiveFixedAngle {
|
|
84
|
+
val?: number;
|
|
85
|
+
}
|
|
86
|
+
export declare const CT_PositiveFixedAngle_Attributes: Attributes;
|
|
87
|
+
export type ST_Angle = number;
|
|
88
|
+
export interface CT_Angle {
|
|
89
|
+
val?: number;
|
|
90
|
+
}
|
|
91
|
+
export declare const CT_Angle_Attributes: Attributes;
|
|
92
|
+
export interface CT_Percentage {
|
|
93
|
+
val?: string;
|
|
94
|
+
}
|
|
95
|
+
export declare const CT_Percentage_Attributes: Attributes;
|
|
96
|
+
export interface CT_GammaTransform {
|
|
97
|
+
}
|
|
98
|
+
export declare const CT_GammaTransform_Attributes: Attributes;
|
|
99
|
+
export interface CT_InverseGammaTransform {
|
|
100
|
+
}
|
|
101
|
+
export declare const CT_InverseGammaTransform_Attributes: Attributes;
|
|
102
|
+
export interface CT_ScRgbColor {
|
|
103
|
+
tint?: CT_PositiveFixedPercentage;
|
|
104
|
+
shade?: CT_PositiveFixedPercentage;
|
|
105
|
+
comp?: CT_ComplementTransform;
|
|
106
|
+
inv?: CT_InverseTransform;
|
|
107
|
+
gray?: CT_GrayscaleTransform;
|
|
108
|
+
alpha?: CT_PositiveFixedPercentage;
|
|
109
|
+
alphaOff?: CT_FixedPercentage;
|
|
110
|
+
alphaMod?: CT_PositivePercentage;
|
|
111
|
+
hue?: CT_PositiveFixedAngle;
|
|
112
|
+
hueOff?: CT_Angle;
|
|
113
|
+
hueMod?: CT_PositivePercentage;
|
|
114
|
+
sat?: CT_Percentage;
|
|
115
|
+
satOff?: CT_Percentage;
|
|
116
|
+
satMod?: CT_Percentage;
|
|
117
|
+
lum?: CT_Percentage;
|
|
118
|
+
lumOff?: CT_Percentage;
|
|
119
|
+
lumMod?: CT_Percentage;
|
|
120
|
+
red?: CT_Percentage;
|
|
121
|
+
redOff?: CT_Percentage;
|
|
122
|
+
redMod?: CT_Percentage;
|
|
123
|
+
green?: CT_Percentage;
|
|
124
|
+
greenOff?: CT_Percentage;
|
|
125
|
+
greenMod?: CT_Percentage;
|
|
126
|
+
blue?: CT_Percentage;
|
|
127
|
+
blueOff?: CT_Percentage;
|
|
128
|
+
blueMod?: CT_Percentage;
|
|
129
|
+
gamma?: CT_GammaTransform;
|
|
130
|
+
invGamma?: CT_InverseGammaTransform;
|
|
131
|
+
r?: string;
|
|
132
|
+
g?: string;
|
|
133
|
+
b?: string;
|
|
134
|
+
}
|
|
135
|
+
export declare const CT_ScRgbColor_Attributes: Attributes;
|
|
136
|
+
export interface CT_SRgbColor {
|
|
137
|
+
tint?: CT_PositiveFixedPercentage;
|
|
138
|
+
shade?: CT_PositiveFixedPercentage;
|
|
139
|
+
comp?: CT_ComplementTransform;
|
|
140
|
+
inv?: CT_InverseTransform;
|
|
141
|
+
gray?: CT_GrayscaleTransform;
|
|
142
|
+
alpha?: CT_PositiveFixedPercentage;
|
|
143
|
+
alphaOff?: CT_FixedPercentage;
|
|
144
|
+
alphaMod?: CT_PositivePercentage;
|
|
145
|
+
hue?: CT_PositiveFixedAngle;
|
|
146
|
+
hueOff?: CT_Angle;
|
|
147
|
+
hueMod?: CT_PositivePercentage;
|
|
148
|
+
sat?: CT_Percentage;
|
|
149
|
+
satOff?: CT_Percentage;
|
|
150
|
+
satMod?: CT_Percentage;
|
|
151
|
+
lum?: CT_Percentage;
|
|
152
|
+
lumOff?: CT_Percentage;
|
|
153
|
+
lumMod?: CT_Percentage;
|
|
154
|
+
red?: CT_Percentage;
|
|
155
|
+
redOff?: CT_Percentage;
|
|
156
|
+
redMod?: CT_Percentage;
|
|
157
|
+
green?: CT_Percentage;
|
|
158
|
+
greenOff?: CT_Percentage;
|
|
159
|
+
greenMod?: CT_Percentage;
|
|
160
|
+
blue?: CT_Percentage;
|
|
161
|
+
blueOff?: CT_Percentage;
|
|
162
|
+
blueMod?: CT_Percentage;
|
|
163
|
+
gamma?: CT_GammaTransform;
|
|
164
|
+
invGamma?: CT_InverseGammaTransform;
|
|
165
|
+
val?: string;
|
|
166
|
+
}
|
|
167
|
+
export declare const CT_SRgbColor_Attributes: Attributes;
|
|
168
|
+
export interface CT_HslColor {
|
|
169
|
+
tint?: CT_PositiveFixedPercentage;
|
|
170
|
+
shade?: CT_PositiveFixedPercentage;
|
|
171
|
+
comp?: CT_ComplementTransform;
|
|
172
|
+
inv?: CT_InverseTransform;
|
|
173
|
+
gray?: CT_GrayscaleTransform;
|
|
174
|
+
alpha?: CT_PositiveFixedPercentage;
|
|
175
|
+
alphaOff?: CT_FixedPercentage;
|
|
176
|
+
alphaMod?: CT_PositivePercentage;
|
|
177
|
+
hue?: number;
|
|
178
|
+
hueOff?: CT_Angle;
|
|
179
|
+
hueMod?: CT_PositivePercentage;
|
|
180
|
+
sat?: string;
|
|
181
|
+
satOff?: CT_Percentage;
|
|
182
|
+
satMod?: CT_Percentage;
|
|
183
|
+
lum?: string;
|
|
184
|
+
lumOff?: CT_Percentage;
|
|
185
|
+
lumMod?: CT_Percentage;
|
|
186
|
+
red?: CT_Percentage;
|
|
187
|
+
redOff?: CT_Percentage;
|
|
188
|
+
redMod?: CT_Percentage;
|
|
189
|
+
green?: CT_Percentage;
|
|
190
|
+
greenOff?: CT_Percentage;
|
|
191
|
+
greenMod?: CT_Percentage;
|
|
192
|
+
blue?: CT_Percentage;
|
|
193
|
+
blueOff?: CT_Percentage;
|
|
194
|
+
blueMod?: CT_Percentage;
|
|
195
|
+
gamma?: CT_GammaTransform;
|
|
196
|
+
invGamma?: CT_InverseGammaTransform;
|
|
197
|
+
}
|
|
198
|
+
export declare const CT_HslColor_Attributes: Attributes;
|
|
199
|
+
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';
|
|
200
|
+
export interface CT_SystemColor {
|
|
201
|
+
tint?: CT_PositiveFixedPercentage;
|
|
202
|
+
shade?: CT_PositiveFixedPercentage;
|
|
203
|
+
comp?: CT_ComplementTransform;
|
|
204
|
+
inv?: CT_InverseTransform;
|
|
205
|
+
gray?: CT_GrayscaleTransform;
|
|
206
|
+
alpha?: CT_PositiveFixedPercentage;
|
|
207
|
+
alphaOff?: CT_FixedPercentage;
|
|
208
|
+
alphaMod?: CT_PositivePercentage;
|
|
209
|
+
hue?: CT_PositiveFixedAngle;
|
|
210
|
+
hueOff?: CT_Angle;
|
|
211
|
+
hueMod?: CT_PositivePercentage;
|
|
212
|
+
sat?: CT_Percentage;
|
|
213
|
+
satOff?: CT_Percentage;
|
|
214
|
+
satMod?: CT_Percentage;
|
|
215
|
+
lum?: CT_Percentage;
|
|
216
|
+
lumOff?: CT_Percentage;
|
|
217
|
+
lumMod?: CT_Percentage;
|
|
218
|
+
red?: CT_Percentage;
|
|
219
|
+
redOff?: CT_Percentage;
|
|
220
|
+
redMod?: CT_Percentage;
|
|
221
|
+
green?: CT_Percentage;
|
|
222
|
+
greenOff?: CT_Percentage;
|
|
223
|
+
greenMod?: CT_Percentage;
|
|
224
|
+
blue?: CT_Percentage;
|
|
225
|
+
blueOff?: CT_Percentage;
|
|
226
|
+
blueMod?: CT_Percentage;
|
|
227
|
+
gamma?: CT_GammaTransform;
|
|
228
|
+
invGamma?: CT_InverseGammaTransform;
|
|
229
|
+
val?: ST_SystemColorVal;
|
|
230
|
+
lastClr?: string;
|
|
231
|
+
}
|
|
232
|
+
export declare const CT_SystemColor_Attributes: Attributes;
|
|
233
|
+
export type ST_SchemeColorVal = 'bg1' | 'tx1' | 'bg2' | 'tx2' | 'accent1' | 'accent2' | 'accent3' | 'accent4' | 'accent5' | 'accent6' | 'hlink' | 'folHlink' | 'phClr' | 'dk1' | 'lt1' | 'dk2' | 'lt2';
|
|
234
|
+
export interface CT_SchemeColor {
|
|
235
|
+
tint?: CT_PositiveFixedPercentage;
|
|
236
|
+
shade?: CT_PositiveFixedPercentage;
|
|
237
|
+
comp?: CT_ComplementTransform;
|
|
238
|
+
inv?: CT_InverseTransform;
|
|
239
|
+
gray?: CT_GrayscaleTransform;
|
|
240
|
+
alpha?: CT_PositiveFixedPercentage;
|
|
241
|
+
alphaOff?: CT_FixedPercentage;
|
|
242
|
+
alphaMod?: CT_PositivePercentage;
|
|
243
|
+
hue?: CT_PositiveFixedAngle;
|
|
244
|
+
hueOff?: CT_Angle;
|
|
245
|
+
hueMod?: CT_PositivePercentage;
|
|
246
|
+
sat?: CT_Percentage;
|
|
247
|
+
satOff?: CT_Percentage;
|
|
248
|
+
satMod?: CT_Percentage;
|
|
249
|
+
lum?: CT_Percentage;
|
|
250
|
+
lumOff?: CT_Percentage;
|
|
251
|
+
lumMod?: CT_Percentage;
|
|
252
|
+
red?: CT_Percentage;
|
|
253
|
+
redOff?: CT_Percentage;
|
|
254
|
+
redMod?: CT_Percentage;
|
|
255
|
+
green?: CT_Percentage;
|
|
256
|
+
greenOff?: CT_Percentage;
|
|
257
|
+
greenMod?: CT_Percentage;
|
|
258
|
+
blue?: CT_Percentage;
|
|
259
|
+
blueOff?: CT_Percentage;
|
|
260
|
+
blueMod?: CT_Percentage;
|
|
261
|
+
gamma?: CT_GammaTransform;
|
|
262
|
+
invGamma?: CT_InverseGammaTransform;
|
|
263
|
+
val?: ST_SchemeColorVal;
|
|
264
|
+
}
|
|
265
|
+
export declare const CT_SchemeColor_Attributes: Attributes;
|
|
266
|
+
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';
|
|
267
|
+
export interface CT_PresetColor {
|
|
268
|
+
tint?: CT_PositiveFixedPercentage;
|
|
269
|
+
shade?: CT_PositiveFixedPercentage;
|
|
270
|
+
comp?: CT_ComplementTransform;
|
|
271
|
+
inv?: CT_InverseTransform;
|
|
272
|
+
gray?: CT_GrayscaleTransform;
|
|
273
|
+
alpha?: CT_PositiveFixedPercentage;
|
|
274
|
+
alphaOff?: CT_FixedPercentage;
|
|
275
|
+
alphaMod?: CT_PositivePercentage;
|
|
276
|
+
hue?: CT_PositiveFixedAngle;
|
|
277
|
+
hueOff?: CT_Angle;
|
|
278
|
+
hueMod?: CT_PositivePercentage;
|
|
279
|
+
sat?: CT_Percentage;
|
|
280
|
+
satOff?: CT_Percentage;
|
|
281
|
+
satMod?: CT_Percentage;
|
|
282
|
+
lum?: CT_Percentage;
|
|
283
|
+
lumOff?: CT_Percentage;
|
|
284
|
+
lumMod?: CT_Percentage;
|
|
285
|
+
red?: CT_Percentage;
|
|
286
|
+
redOff?: CT_Percentage;
|
|
287
|
+
redMod?: CT_Percentage;
|
|
288
|
+
green?: CT_Percentage;
|
|
289
|
+
greenOff?: CT_Percentage;
|
|
290
|
+
greenMod?: CT_Percentage;
|
|
291
|
+
blue?: CT_Percentage;
|
|
292
|
+
blueOff?: CT_Percentage;
|
|
293
|
+
blueMod?: CT_Percentage;
|
|
294
|
+
gamma?: CT_GammaTransform;
|
|
295
|
+
invGamma?: CT_InverseGammaTransform;
|
|
296
|
+
val?: ST_PresetColorVal;
|
|
297
|
+
}
|
|
298
|
+
export declare const CT_PresetColor_Attributes: Attributes;
|
|
299
|
+
export interface CT_Color {
|
|
300
|
+
scrgbClr?: CT_ScRgbColor;
|
|
301
|
+
srgbClr?: CT_SRgbColor;
|
|
302
|
+
hslClr?: CT_HslColor;
|
|
303
|
+
sysClr?: CT_SystemColor;
|
|
304
|
+
schemeClr?: CT_SchemeColor;
|
|
305
|
+
prstClr?: CT_PresetColor;
|
|
306
|
+
}
|
|
307
|
+
export declare const CT_Color_Attributes: Attributes;
|
|
308
|
+
export interface CT_ColorScheme {
|
|
309
|
+
dk1?: CT_Color;
|
|
310
|
+
lt1?: CT_Color;
|
|
311
|
+
dk2?: CT_Color;
|
|
312
|
+
lt2?: CT_Color;
|
|
313
|
+
accent1?: CT_Color;
|
|
314
|
+
accent2?: CT_Color;
|
|
315
|
+
accent3?: CT_Color;
|
|
316
|
+
accent4?: CT_Color;
|
|
317
|
+
accent5?: CT_Color;
|
|
318
|
+
accent6?: CT_Color;
|
|
319
|
+
hlink?: CT_Color;
|
|
320
|
+
folHlink?: CT_Color;
|
|
321
|
+
extLst?: CT_OfficeArtExtensionList;
|
|
322
|
+
name?: string;
|
|
323
|
+
}
|
|
324
|
+
export declare const CT_ColorScheme_Attributes: Attributes;
|
|
325
|
+
export interface CT_CustomColor {
|
|
326
|
+
scrgbClr?: CT_ScRgbColor;
|
|
327
|
+
srgbClr?: CT_SRgbColor;
|
|
328
|
+
hslClr?: CT_HslColor;
|
|
329
|
+
sysClr?: CT_SystemColor;
|
|
330
|
+
schemeClr?: CT_SchemeColor;
|
|
331
|
+
prstClr?: CT_PresetColor;
|
|
332
|
+
name?: string;
|
|
333
|
+
}
|
|
334
|
+
export declare const CT_CustomColor_Attributes: Attributes;
|
|
335
|
+
export type ST_TextTypeface = string;
|
|
336
|
+
export interface CT_SupplementalFont {
|
|
337
|
+
script?: string;
|
|
338
|
+
typeface?: string;
|
|
339
|
+
}
|
|
340
|
+
export declare const CT_SupplementalFont_Attributes: Attributes;
|
|
341
|
+
export interface CT_CustomColorList {
|
|
342
|
+
custClr?: CT_CustomColor[];
|
|
343
|
+
}
|
|
344
|
+
export declare const CT_CustomColorList_Attributes: Attributes;
|
|
345
|
+
export type ST_PitchFamily = number;
|
|
346
|
+
export interface CT_TextFont {
|
|
347
|
+
typeface?: string;
|
|
348
|
+
panose?: string;
|
|
349
|
+
pitchFamily?: number;
|
|
350
|
+
charset?: number;
|
|
351
|
+
}
|
|
352
|
+
export declare const CT_TextFont_Attributes: Attributes;
|
|
353
|
+
export interface CT_FontCollection {
|
|
354
|
+
latin?: CT_TextFont;
|
|
355
|
+
ea?: CT_TextFont;
|
|
356
|
+
cs?: CT_TextFont;
|
|
357
|
+
font?: CT_SupplementalFont[];
|
|
358
|
+
extLst?: CT_OfficeArtExtensionList;
|
|
359
|
+
}
|
|
360
|
+
export declare const CT_FontCollection_Attributes: Attributes;
|
|
361
|
+
export type CT_EffectStyleItem = any;
|
|
362
|
+
export declare const CT_EffectStyleItem_Attributes: Attributes;
|
|
363
|
+
export type CT_EffectList = any;
|
|
364
|
+
export declare const CT_EffectList_Attributes: Attributes;
|
|
365
|
+
export type ST_PositiveCoordinate = number;
|
|
366
|
+
export interface CT_BlurEffect {
|
|
367
|
+
rad?: number;
|
|
368
|
+
grow?: boolean;
|
|
369
|
+
}
|
|
370
|
+
export declare const CT_BlurEffect_Attributes: Attributes;
|
|
371
|
+
export type CT_FillOverlayEffect = any;
|
|
372
|
+
export declare const CT_FillOverlayEffect_Attributes: Attributes;
|
|
373
|
+
export interface CT_NoFillProperties {
|
|
374
|
+
}
|
|
375
|
+
export declare const CT_NoFillProperties_Attributes: Attributes;
|
|
376
|
+
export interface CT_SolidColorFillProperties {
|
|
377
|
+
scrgbClr?: CT_ScRgbColor;
|
|
378
|
+
srgbClr?: CT_SRgbColor;
|
|
379
|
+
hslClr?: CT_HslColor;
|
|
380
|
+
sysClr?: CT_SystemColor;
|
|
381
|
+
schemeClr?: CT_SchemeColor;
|
|
382
|
+
prstClr?: CT_PresetColor;
|
|
383
|
+
}
|
|
384
|
+
export declare const CT_SolidColorFillProperties_Attributes: Attributes;
|
|
385
|
+
export interface CT_GradientStop {
|
|
386
|
+
scrgbClr?: CT_ScRgbColor;
|
|
387
|
+
srgbClr?: CT_SRgbColor;
|
|
388
|
+
hslClr?: CT_HslColor;
|
|
389
|
+
sysClr?: CT_SystemColor;
|
|
390
|
+
schemeClr?: CT_SchemeColor;
|
|
391
|
+
prstClr?: CT_PresetColor;
|
|
392
|
+
pos?: ST_PositiveFixedPercentage;
|
|
393
|
+
}
|
|
394
|
+
export declare const CT_GradientStop_Attributes: Attributes;
|
|
395
|
+
export interface CT_GradientStopList {
|
|
396
|
+
gs?: CT_GradientStop[];
|
|
397
|
+
}
|
|
398
|
+
export declare const CT_GradientStopList_Attributes: Attributes;
|
|
399
|
+
export interface CT_LinearShadeProperties {
|
|
400
|
+
ang?: number;
|
|
401
|
+
scaled?: boolean;
|
|
402
|
+
}
|
|
403
|
+
export declare const CT_LinearShadeProperties_Attributes: Attributes;
|
|
404
|
+
export interface CT_RelativeRect {
|
|
405
|
+
l?: string;
|
|
406
|
+
t?: string;
|
|
407
|
+
r?: string;
|
|
408
|
+
b?: string;
|
|
409
|
+
}
|
|
410
|
+
export declare const CT_RelativeRect_Attributes: Attributes;
|
|
411
|
+
export type ST_PathShadeType = 'shape' | 'circle' | 'rect';
|
|
412
|
+
export interface CT_PathShadeProperties {
|
|
413
|
+
fillToRect?: CT_RelativeRect;
|
|
414
|
+
path?: ST_PathShadeType;
|
|
415
|
+
}
|
|
416
|
+
export declare const CT_PathShadeProperties_Attributes: Attributes;
|
|
417
|
+
export type ST_TileFlipMode = 'none' | 'x' | 'y' | 'xy';
|
|
418
|
+
export interface CT_GradientFillProperties {
|
|
419
|
+
gsLst?: CT_GradientStopList;
|
|
420
|
+
lin?: CT_LinearShadeProperties;
|
|
421
|
+
path?: CT_PathShadeProperties;
|
|
422
|
+
tileRect?: CT_RelativeRect;
|
|
423
|
+
flip?: ST_TileFlipMode;
|
|
424
|
+
rotWithShape?: boolean;
|
|
425
|
+
}
|
|
426
|
+
export declare const CT_GradientFillProperties_Attributes: Attributes;
|
|
427
|
+
export type CT_BlipFillProperties = any;
|
|
428
|
+
export declare const CT_BlipFillProperties_Attributes: Attributes;
|
|
429
|
+
export interface CT_AlphaBiLevelEffect {
|
|
430
|
+
thresh?: ST_PositiveFixedPercentage;
|
|
431
|
+
}
|
|
432
|
+
export declare const CT_AlphaBiLevelEffect_Attributes: Attributes;
|
|
433
|
+
export interface CT_AlphaCeilingEffect {
|
|
434
|
+
}
|
|
435
|
+
export declare const CT_AlphaCeilingEffect_Attributes: Attributes;
|
|
436
|
+
export interface CT_AlphaFloorEffect {
|
|
437
|
+
}
|
|
438
|
+
export declare const CT_AlphaFloorEffect_Attributes: Attributes;
|
|
439
|
+
export interface CT_AlphaInverseEffect {
|
|
440
|
+
scrgbClr?: CT_ScRgbColor;
|
|
441
|
+
srgbClr?: CT_SRgbColor;
|
|
442
|
+
hslClr?: CT_HslColor;
|
|
443
|
+
sysClr?: CT_SystemColor;
|
|
444
|
+
schemeClr?: CT_SchemeColor;
|
|
445
|
+
prstClr?: CT_PresetColor;
|
|
446
|
+
}
|
|
447
|
+
export declare const CT_AlphaInverseEffect_Attributes: Attributes;
|
|
448
|
+
export type ST_EffectContainerType = 'sib' | 'tree';
|
|
449
|
+
export interface CT_EffectContainer {
|
|
450
|
+
type?: ST_EffectContainerType;
|
|
451
|
+
name?: string;
|
|
452
|
+
}
|
|
453
|
+
export declare const CT_EffectContainer_Attributes: Attributes;
|
|
454
|
+
export interface CT_AlphaModulateEffect {
|
|
455
|
+
cont?: CT_EffectContainer;
|
|
456
|
+
}
|
|
457
|
+
export declare const CT_AlphaModulateEffect_Attributes: Attributes;
|
|
458
|
+
export interface CT_AlphaModulateFixedEffect {
|
|
459
|
+
amt?: ST_PositivePercentage;
|
|
460
|
+
}
|
|
461
|
+
export declare const CT_AlphaModulateFixedEffect_Attributes: Attributes;
|
|
462
|
+
export interface CT_AlphaReplaceEffect {
|
|
463
|
+
a?: ST_PositiveFixedPercentage;
|
|
464
|
+
}
|
|
465
|
+
export declare const CT_AlphaReplaceEffect_Attributes: Attributes;
|
|
466
|
+
export interface CT_BiLevelEffect {
|
|
467
|
+
thresh?: ST_PositiveFixedPercentage;
|
|
468
|
+
}
|
|
469
|
+
export declare const CT_BiLevelEffect_Attributes: Attributes;
|
|
470
|
+
export interface CT_ColorChangeEffect {
|
|
471
|
+
clrFrom?: CT_Color;
|
|
472
|
+
clrTo?: CT_Color;
|
|
473
|
+
useA?: boolean;
|
|
474
|
+
}
|
|
475
|
+
export declare const CT_ColorChangeEffect_Attributes: Attributes;
|
|
476
|
+
export interface CT_ColorReplaceEffect {
|
|
477
|
+
scrgbClr?: CT_ScRgbColor;
|
|
478
|
+
srgbClr?: CT_SRgbColor;
|
|
479
|
+
hslClr?: CT_HslColor;
|
|
480
|
+
sysClr?: CT_SystemColor;
|
|
481
|
+
schemeClr?: CT_SchemeColor;
|
|
482
|
+
prstClr?: CT_PresetColor;
|
|
483
|
+
}
|
|
484
|
+
export declare const CT_ColorReplaceEffect_Attributes: Attributes;
|
|
485
|
+
export interface CT_DuotoneEffect {
|
|
486
|
+
scrgbClr?: CT_ScRgbColor;
|
|
487
|
+
srgbClr?: CT_SRgbColor;
|
|
488
|
+
hslClr?: CT_HslColor;
|
|
489
|
+
sysClr?: CT_SystemColor;
|
|
490
|
+
schemeClr?: CT_SchemeColor;
|
|
491
|
+
prstClr?: CT_PresetColor;
|
|
492
|
+
}
|
|
493
|
+
export declare const CT_DuotoneEffect_Attributes: Attributes;
|
|
494
|
+
export interface CT_GrayscaleEffect {
|
|
495
|
+
}
|
|
496
|
+
export declare const CT_GrayscaleEffect_Attributes: Attributes;
|
|
497
|
+
export interface CT_HSLEffect {
|
|
498
|
+
hue?: number;
|
|
499
|
+
sat?: ST_FixedPercentage;
|
|
500
|
+
lum?: ST_FixedPercentage;
|
|
501
|
+
}
|
|
502
|
+
export declare const CT_HSLEffect_Attributes: Attributes;
|
|
503
|
+
export interface CT_LuminanceEffect {
|
|
504
|
+
bright?: ST_FixedPercentage;
|
|
505
|
+
contrast?: ST_FixedPercentage;
|
|
506
|
+
}
|
|
507
|
+
export declare const CT_LuminanceEffect_Attributes: Attributes;
|
|
508
|
+
export interface CT_TintEffect {
|
|
509
|
+
hue?: number;
|
|
510
|
+
amt?: ST_FixedPercentage;
|
|
511
|
+
}
|
|
512
|
+
export declare const CT_TintEffect_Attributes: Attributes;
|
|
513
|
+
export type ST_BlipCompression = 'email' | 'screen' | 'print' | 'hqprint' | 'none';
|
|
514
|
+
export interface CT_Blip {
|
|
515
|
+
alphaBiLevel?: CT_AlphaBiLevelEffect;
|
|
516
|
+
alphaCeiling?: CT_AlphaCeilingEffect;
|
|
517
|
+
alphaFloor?: CT_AlphaFloorEffect;
|
|
518
|
+
alphaInv?: CT_AlphaInverseEffect;
|
|
519
|
+
alphaMod?: CT_AlphaModulateEffect;
|
|
520
|
+
alphaModFix?: CT_AlphaModulateFixedEffect;
|
|
521
|
+
alphaRepl?: CT_AlphaReplaceEffect;
|
|
522
|
+
biLevel?: CT_BiLevelEffect;
|
|
523
|
+
blur?: CT_BlurEffect;
|
|
524
|
+
clrChange?: CT_ColorChangeEffect;
|
|
525
|
+
clrRepl?: CT_ColorReplaceEffect;
|
|
526
|
+
duotone?: CT_DuotoneEffect;
|
|
527
|
+
fillOverlay?: CT_FillOverlayEffect;
|
|
528
|
+
grayscl?: CT_GrayscaleEffect;
|
|
529
|
+
hsl?: CT_HSLEffect;
|
|
530
|
+
lum?: CT_LuminanceEffect;
|
|
531
|
+
tint?: CT_TintEffect;
|
|
532
|
+
extLst?: CT_OfficeArtExtensionList;
|
|
533
|
+
cstate?: ST_BlipCompression;
|
|
534
|
+
}
|
|
535
|
+
export declare const CT_Blip_Attributes: Attributes;
|
|
536
|
+
export type ST_Coordinate = ST_CoordinateUnqualified | ST_UniversalMeasure;
|
|
537
|
+
export type ST_RectAlignment = 'tl' | 't' | 'tr' | 'l' | 'ctr' | 'r' | 'bl' | 'b' | 'br';
|
|
538
|
+
export interface CT_TileInfoProperties {
|
|
539
|
+
tx?: ST_Coordinate;
|
|
540
|
+
ty?: ST_Coordinate;
|
|
541
|
+
sx?: string;
|
|
542
|
+
sy?: string;
|
|
543
|
+
flip?: ST_TileFlipMode;
|
|
544
|
+
algn?: ST_RectAlignment;
|
|
545
|
+
}
|
|
546
|
+
export declare const CT_TileInfoProperties_Attributes: Attributes;
|
|
547
|
+
export interface CT_StretchInfoProperties {
|
|
548
|
+
fillRect?: CT_RelativeRect;
|
|
549
|
+
}
|
|
550
|
+
export declare const CT_StretchInfoProperties_Attributes: Attributes;
|
|
551
|
+
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';
|
|
552
|
+
export interface CT_PatternFillProperties {
|
|
553
|
+
fgClr?: CT_Color;
|
|
554
|
+
bgClr?: CT_Color;
|
|
555
|
+
prst?: ST_PresetPatternVal;
|
|
556
|
+
}
|
|
557
|
+
export declare const CT_PatternFillProperties_Attributes: Attributes;
|
|
558
|
+
export interface CT_GroupFillProperties {
|
|
559
|
+
}
|
|
560
|
+
export declare const CT_GroupFillProperties_Attributes: Attributes;
|
|
561
|
+
export type ST_BlendMode = 'over' | 'mult' | 'screen' | 'darken' | 'lighten';
|
|
562
|
+
export interface CT_GlowEffect {
|
|
563
|
+
scrgbClr?: CT_ScRgbColor;
|
|
564
|
+
srgbClr?: CT_SRgbColor;
|
|
565
|
+
hslClr?: CT_HslColor;
|
|
566
|
+
sysClr?: CT_SystemColor;
|
|
567
|
+
schemeClr?: CT_SchemeColor;
|
|
568
|
+
prstClr?: CT_PresetColor;
|
|
569
|
+
rad?: number;
|
|
570
|
+
}
|
|
571
|
+
export declare const CT_GlowEffect_Attributes: Attributes;
|
|
572
|
+
export interface CT_InnerShadowEffect {
|
|
573
|
+
scrgbClr?: CT_ScRgbColor;
|
|
574
|
+
srgbClr?: CT_SRgbColor;
|
|
575
|
+
hslClr?: CT_HslColor;
|
|
576
|
+
sysClr?: CT_SystemColor;
|
|
577
|
+
schemeClr?: CT_SchemeColor;
|
|
578
|
+
prstClr?: CT_PresetColor;
|
|
579
|
+
blurRad?: number;
|
|
580
|
+
dist?: number;
|
|
581
|
+
dir?: number;
|
|
582
|
+
}
|
|
583
|
+
export declare const CT_InnerShadowEffect_Attributes: Attributes;
|
|
584
|
+
export type ST_FixedAngle = ST_Angle;
|
|
585
|
+
export interface CT_OuterShadowEffect {
|
|
586
|
+
scrgbClr?: CT_ScRgbColor;
|
|
587
|
+
srgbClr?: CT_SRgbColor;
|
|
588
|
+
hslClr?: CT_HslColor;
|
|
589
|
+
sysClr?: CT_SystemColor;
|
|
590
|
+
schemeClr?: CT_SchemeColor;
|
|
591
|
+
prstClr?: CT_PresetColor;
|
|
592
|
+
blurRad?: number;
|
|
593
|
+
dist?: number;
|
|
594
|
+
dir?: number;
|
|
595
|
+
sx?: string;
|
|
596
|
+
sy?: string;
|
|
597
|
+
kx?: number;
|
|
598
|
+
ky?: number;
|
|
599
|
+
algn?: ST_RectAlignment;
|
|
600
|
+
rotWithShape?: boolean;
|
|
601
|
+
}
|
|
602
|
+
export declare const CT_OuterShadowEffect_Attributes: Attributes;
|
|
603
|
+
export type ST_PresetShadowVal = 'shdw1' | 'shdw2' | 'shdw3' | 'shdw4' | 'shdw5' | 'shdw6' | 'shdw7' | 'shdw8' | 'shdw9' | 'shdw10' | 'shdw11' | 'shdw12' | 'shdw13' | 'shdw14' | 'shdw15' | 'shdw16' | 'shdw17' | 'shdw18' | 'shdw19' | 'shdw20';
|
|
604
|
+
export interface CT_PresetShadowEffect {
|
|
605
|
+
scrgbClr?: CT_ScRgbColor;
|
|
606
|
+
srgbClr?: CT_SRgbColor;
|
|
607
|
+
hslClr?: CT_HslColor;
|
|
608
|
+
sysClr?: CT_SystemColor;
|
|
609
|
+
schemeClr?: CT_SchemeColor;
|
|
610
|
+
prstClr?: CT_PresetColor;
|
|
611
|
+
prst?: ST_PresetShadowVal;
|
|
612
|
+
dist?: number;
|
|
613
|
+
dir?: number;
|
|
614
|
+
}
|
|
615
|
+
export declare const CT_PresetShadowEffect_Attributes: Attributes;
|
|
616
|
+
export interface CT_ReflectionEffect {
|
|
617
|
+
blurRad?: number;
|
|
618
|
+
stA?: ST_PositiveFixedPercentage;
|
|
619
|
+
stPos?: ST_PositiveFixedPercentage;
|
|
620
|
+
endA?: ST_PositiveFixedPercentage;
|
|
621
|
+
endPos?: ST_PositiveFixedPercentage;
|
|
622
|
+
dist?: number;
|
|
623
|
+
dir?: number;
|
|
624
|
+
fadeDir?: number;
|
|
625
|
+
sx?: string;
|
|
626
|
+
sy?: string;
|
|
627
|
+
kx?: number;
|
|
628
|
+
ky?: number;
|
|
629
|
+
algn?: ST_RectAlignment;
|
|
630
|
+
rotWithShape?: boolean;
|
|
631
|
+
}
|
|
632
|
+
export declare const CT_ReflectionEffect_Attributes: Attributes;
|
|
633
|
+
export interface CT_SoftEdgesEffect {
|
|
634
|
+
rad?: number;
|
|
635
|
+
}
|
|
636
|
+
export declare const CT_SoftEdgesEffect_Attributes: Attributes;
|
|
637
|
+
export interface CT_SphereCoords {
|
|
638
|
+
lat?: number;
|
|
639
|
+
lon?: number;
|
|
640
|
+
rev?: number;
|
|
641
|
+
}
|
|
642
|
+
export declare const CT_SphereCoords_Attributes: Attributes;
|
|
643
|
+
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';
|
|
644
|
+
export type ST_FOVAngle = ST_Angle;
|
|
645
|
+
export interface CT_Camera {
|
|
646
|
+
rot?: CT_SphereCoords;
|
|
647
|
+
prst?: ST_PresetCameraType;
|
|
648
|
+
fov?: number;
|
|
649
|
+
zoom?: ST_PositivePercentage;
|
|
650
|
+
}
|
|
651
|
+
export declare const CT_Camera_Attributes: Attributes;
|
|
652
|
+
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';
|
|
653
|
+
export type ST_LightRigDirection = 'tl' | 't' | 'tr' | 'l' | 'r' | 'bl' | 'b' | 'br';
|
|
654
|
+
export interface CT_LightRig {
|
|
655
|
+
rot?: CT_SphereCoords;
|
|
656
|
+
rig?: ST_LightRigType;
|
|
657
|
+
dir?: ST_LightRigDirection;
|
|
658
|
+
}
|
|
659
|
+
export declare const CT_LightRig_Attributes: Attributes;
|
|
660
|
+
export interface CT_Point3D {
|
|
661
|
+
x?: ST_Coordinate;
|
|
662
|
+
y?: ST_Coordinate;
|
|
663
|
+
z?: ST_Coordinate;
|
|
664
|
+
}
|
|
665
|
+
export declare const CT_Point3D_Attributes: Attributes;
|
|
666
|
+
export interface CT_Vector3D {
|
|
667
|
+
dx?: ST_Coordinate;
|
|
668
|
+
dy?: ST_Coordinate;
|
|
669
|
+
dz?: ST_Coordinate;
|
|
670
|
+
}
|
|
671
|
+
export declare const CT_Vector3D_Attributes: Attributes;
|
|
672
|
+
export interface CT_Backdrop {
|
|
673
|
+
anchor?: CT_Point3D;
|
|
674
|
+
norm?: CT_Vector3D;
|
|
675
|
+
up?: CT_Vector3D;
|
|
676
|
+
extLst?: CT_OfficeArtExtensionList;
|
|
677
|
+
}
|
|
678
|
+
export declare const CT_Backdrop_Attributes: Attributes;
|
|
679
|
+
export interface CT_Scene3D {
|
|
680
|
+
camera?: CT_Camera;
|
|
681
|
+
lightRig?: CT_LightRig;
|
|
682
|
+
backdrop?: CT_Backdrop;
|
|
683
|
+
extLst?: CT_OfficeArtExtensionList;
|
|
684
|
+
}
|
|
685
|
+
export declare const CT_Scene3D_Attributes: Attributes;
|
|
686
|
+
export type ST_BevelPresetType = 'relaxedInset' | 'circle' | 'slope' | 'cross' | 'angle' | 'softRound' | 'convex' | 'coolSlant' | 'divot' | 'riblet' | 'hardEdge' | 'artDeco';
|
|
687
|
+
export interface CT_Bevel {
|
|
688
|
+
w?: number;
|
|
689
|
+
h?: number;
|
|
690
|
+
prst?: ST_BevelPresetType;
|
|
691
|
+
}
|
|
692
|
+
export declare const CT_Bevel_Attributes: Attributes;
|
|
693
|
+
export type ST_PresetMaterialType = 'legacyMatte' | 'legacyPlastic' | 'legacyMetal' | 'legacyWireframe' | 'matte' | 'plastic' | 'metal' | 'warmMatte' | 'translucentPowder' | 'powder' | 'dkEdge' | 'softEdge' | 'clear' | 'flat' | 'softmetal';
|
|
694
|
+
export interface CT_Shape3D {
|
|
695
|
+
bevelT?: CT_Bevel;
|
|
696
|
+
bevelB?: CT_Bevel;
|
|
697
|
+
extrusionClr?: CT_Color;
|
|
698
|
+
contourClr?: CT_Color;
|
|
699
|
+
extLst?: CT_OfficeArtExtensionList;
|
|
700
|
+
z?: ST_Coordinate;
|
|
701
|
+
extrusionH?: number;
|
|
702
|
+
contourW?: number;
|
|
703
|
+
prstMaterial?: ST_PresetMaterialType;
|
|
704
|
+
}
|
|
705
|
+
export declare const CT_Shape3D_Attributes: Attributes;
|
|
706
|
+
export interface CT_FontScheme {
|
|
707
|
+
majorFont?: CT_FontCollection;
|
|
708
|
+
minorFont?: CT_FontCollection;
|
|
709
|
+
extLst?: CT_OfficeArtExtensionList;
|
|
710
|
+
name?: string;
|
|
711
|
+
}
|
|
712
|
+
export declare const CT_FontScheme_Attributes: Attributes;
|
|
713
|
+
export interface CT_FillStyleList {
|
|
714
|
+
noFill?: CT_NoFillProperties;
|
|
715
|
+
solidFill?: CT_SolidColorFillProperties;
|
|
716
|
+
gradFill?: CT_GradientFillProperties;
|
|
717
|
+
blipFill?: CT_BlipFillProperties;
|
|
718
|
+
pattFill?: CT_PatternFillProperties;
|
|
719
|
+
grpFill?: CT_GroupFillProperties;
|
|
720
|
+
}
|
|
721
|
+
export declare const CT_FillStyleList_Attributes: Attributes;
|
|
722
|
+
export type ST_PresetLineDashVal = 'solid' | 'dot' | 'dash' | 'lgDash' | 'dashDot' | 'lgDashDot' | 'lgDashDotDot' | 'sysDash' | 'sysDot' | 'sysDashDot' | 'sysDashDotDot';
|
|
723
|
+
export interface CT_PresetLineDashProperties {
|
|
724
|
+
val?: ST_PresetLineDashVal;
|
|
725
|
+
}
|
|
726
|
+
export declare const CT_PresetLineDashProperties_Attributes: Attributes;
|
|
727
|
+
export interface CT_DashStop {
|
|
728
|
+
d?: ST_PositivePercentage;
|
|
729
|
+
sp?: ST_PositivePercentage;
|
|
730
|
+
}
|
|
731
|
+
export declare const CT_DashStop_Attributes: Attributes;
|
|
732
|
+
export interface CT_DashStopList {
|
|
733
|
+
ds?: CT_DashStop[];
|
|
734
|
+
}
|
|
735
|
+
export declare const CT_DashStopList_Attributes: Attributes;
|
|
736
|
+
export interface CT_LineJoinRound {
|
|
737
|
+
}
|
|
738
|
+
export declare const CT_LineJoinRound_Attributes: Attributes;
|
|
739
|
+
export interface CT_LineJoinBevel {
|
|
740
|
+
}
|
|
741
|
+
export declare const CT_LineJoinBevel_Attributes: Attributes;
|
|
742
|
+
export interface CT_LineJoinMiterProperties {
|
|
743
|
+
lim?: ST_PositivePercentage;
|
|
744
|
+
}
|
|
745
|
+
export declare const CT_LineJoinMiterProperties_Attributes: Attributes;
|
|
746
|
+
export type ST_LineEndType = 'none' | 'triangle' | 'stealth' | 'diamond' | 'oval' | 'arrow';
|
|
747
|
+
export type ST_LineEndWidth = 'sm' | 'med' | 'lg';
|
|
748
|
+
export type ST_LineEndLength = 'sm' | 'med' | 'lg';
|
|
749
|
+
export interface CT_LineEndProperties {
|
|
750
|
+
type?: ST_LineEndType;
|
|
751
|
+
w?: ST_LineEndWidth;
|
|
752
|
+
len?: ST_LineEndLength;
|
|
753
|
+
}
|
|
754
|
+
export declare const CT_LineEndProperties_Attributes: Attributes;
|
|
755
|
+
export type ST_LineWidth = ST_Coordinate32Unqualified;
|
|
756
|
+
export type ST_LineCap = 'rnd' | 'sq' | 'flat';
|
|
757
|
+
export type ST_CompoundLine = 'sng' | 'dbl' | 'thickThin' | 'thinThick' | 'tri';
|
|
758
|
+
export type ST_PenAlignment = 'ctr' | 'in';
|
|
759
|
+
export interface CT_LineProperties {
|
|
760
|
+
noFill?: CT_NoFillProperties;
|
|
761
|
+
solidFill?: CT_SolidColorFillProperties;
|
|
762
|
+
gradFill?: CT_GradientFillProperties;
|
|
763
|
+
pattFill?: CT_PatternFillProperties;
|
|
764
|
+
prstDash?: CT_PresetLineDashProperties;
|
|
765
|
+
custDash?: CT_DashStopList;
|
|
766
|
+
round?: CT_LineJoinRound;
|
|
767
|
+
bevel?: CT_LineJoinBevel;
|
|
768
|
+
miter?: CT_LineJoinMiterProperties;
|
|
769
|
+
headEnd?: CT_LineEndProperties;
|
|
770
|
+
tailEnd?: CT_LineEndProperties;
|
|
771
|
+
extLst?: CT_OfficeArtExtensionList;
|
|
772
|
+
w?: number;
|
|
773
|
+
cap?: ST_LineCap;
|
|
774
|
+
cmpd?: ST_CompoundLine;
|
|
775
|
+
algn?: ST_PenAlignment;
|
|
776
|
+
}
|
|
777
|
+
export declare const CT_LineProperties_Attributes: Attributes;
|
|
778
|
+
export interface CT_LineStyleList {
|
|
779
|
+
ln?: CT_LineProperties[];
|
|
780
|
+
}
|
|
781
|
+
export declare const CT_LineStyleList_Attributes: Attributes;
|
|
782
|
+
export interface CT_EffectStyleList {
|
|
783
|
+
effectStyle?: CT_EffectStyleItem[];
|
|
784
|
+
}
|
|
785
|
+
export declare const CT_EffectStyleList_Attributes: Attributes;
|
|
786
|
+
export interface CT_BackgroundFillStyleList {
|
|
787
|
+
noFill?: CT_NoFillProperties;
|
|
788
|
+
solidFill?: CT_SolidColorFillProperties;
|
|
789
|
+
gradFill?: CT_GradientFillProperties;
|
|
790
|
+
blipFill?: CT_BlipFillProperties;
|
|
791
|
+
pattFill?: CT_PatternFillProperties;
|
|
792
|
+
grpFill?: CT_GroupFillProperties;
|
|
793
|
+
}
|
|
794
|
+
export declare const CT_BackgroundFillStyleList_Attributes: Attributes;
|
|
795
|
+
export interface CT_StyleMatrix {
|
|
796
|
+
fillStyleLst?: CT_FillStyleList;
|
|
797
|
+
lnStyleLst?: CT_LineStyleList;
|
|
798
|
+
effectStyleLst?: CT_EffectStyleList;
|
|
799
|
+
bgFillStyleLst?: CT_BackgroundFillStyleList;
|
|
800
|
+
name?: string;
|
|
801
|
+
}
|
|
802
|
+
export declare const CT_StyleMatrix_Attributes: Attributes;
|
|
803
|
+
export interface CT_BaseStyles {
|
|
804
|
+
clrScheme?: CT_ColorScheme;
|
|
805
|
+
fontScheme?: CT_FontScheme;
|
|
806
|
+
fmtScheme?: CT_StyleMatrix;
|
|
807
|
+
extLst?: CT_OfficeArtExtensionList;
|
|
808
|
+
}
|
|
809
|
+
export declare const CT_BaseStyles_Attributes: Attributes;
|
|
810
|
+
export type ST_CoordinateUnqualified = number;
|
|
811
|
+
export type ST_Coordinate32 = ST_Coordinate32Unqualified | ST_UniversalMeasure;
|
|
812
|
+
export type ST_Coordinate32Unqualified = number;
|
|
813
|
+
export type ST_PositiveCoordinate32 = ST_Coordinate32Unqualified;
|
|
814
|
+
export interface CT_Ratio {
|
|
815
|
+
n?: number;
|
|
816
|
+
d?: number;
|
|
817
|
+
}
|
|
818
|
+
export declare const CT_Ratio_Attributes: Attributes;
|
|
819
|
+
export interface CT_Point2D {
|
|
820
|
+
x?: ST_Coordinate;
|
|
821
|
+
y?: ST_Coordinate;
|
|
822
|
+
}
|
|
823
|
+
export declare const CT_Point2D_Attributes: Attributes;
|
|
824
|
+
export interface CT_PositiveSize2D {
|
|
825
|
+
cx?: number;
|
|
826
|
+
cy?: number;
|
|
827
|
+
}
|
|
828
|
+
export declare const CT_PositiveSize2D_Attributes: Attributes;
|
|
829
|
+
export interface CT_Scale2D {
|
|
830
|
+
sx?: CT_Ratio;
|
|
831
|
+
sy?: CT_Ratio;
|
|
832
|
+
}
|
|
833
|
+
export declare const CT_Scale2D_Attributes: Attributes;
|
|
834
|
+
export interface CT_Transform2D {
|
|
835
|
+
off?: CT_Point2D;
|
|
836
|
+
ext?: CT_PositiveSize2D;
|
|
837
|
+
rot?: number;
|
|
838
|
+
flipH?: boolean;
|
|
839
|
+
flipV?: boolean;
|
|
840
|
+
}
|
|
841
|
+
export declare const CT_Transform2D_Attributes: Attributes;
|
|
842
|
+
export interface CT_GroupTransform2D {
|
|
843
|
+
off?: CT_Point2D;
|
|
844
|
+
ext?: CT_PositiveSize2D;
|
|
845
|
+
chOff?: CT_Point2D;
|
|
846
|
+
chExt?: CT_PositiveSize2D;
|
|
847
|
+
rot?: number;
|
|
848
|
+
flipH?: boolean;
|
|
849
|
+
flipV?: boolean;
|
|
850
|
+
}
|
|
851
|
+
export declare const CT_GroupTransform2D_Attributes: Attributes;
|
|
852
|
+
export interface CT_ColorMRU {
|
|
853
|
+
scrgbClr?: CT_ScRgbColor;
|
|
854
|
+
srgbClr?: CT_SRgbColor;
|
|
855
|
+
hslClr?: CT_HslColor;
|
|
856
|
+
sysClr?: CT_SystemColor;
|
|
857
|
+
schemeClr?: CT_SchemeColor;
|
|
858
|
+
prstClr?: CT_PresetColor;
|
|
859
|
+
}
|
|
860
|
+
export declare const CT_ColorMRU_Attributes: Attributes;
|
|
861
|
+
export type ST_BlackWhiteMode = 'clr' | 'auto' | 'gray' | 'ltGray' | 'invGray' | 'grayWhite' | 'blackGray' | 'blackWhite' | 'black' | 'white' | 'hidden';
|
|
862
|
+
export interface CT_EmbeddedWAVAudioFile {
|
|
863
|
+
name?: string;
|
|
864
|
+
}
|
|
865
|
+
export declare const CT_EmbeddedWAVAudioFile_Attributes: Attributes;
|
|
866
|
+
export interface CT_Hyperlink {
|
|
867
|
+
'snd'?: CT_EmbeddedWAVAudioFile;
|
|
868
|
+
'extLst'?: CT_OfficeArtExtensionList;
|
|
869
|
+
'r:id'?: string;
|
|
870
|
+
'invalidUrl'?: string;
|
|
871
|
+
'action'?: string;
|
|
872
|
+
'tgtFrame'?: string;
|
|
873
|
+
'tooltip'?: string;
|
|
874
|
+
'history'?: boolean;
|
|
875
|
+
'highlightClick'?: boolean;
|
|
876
|
+
'endSnd'?: boolean;
|
|
877
|
+
}
|
|
878
|
+
export declare const CT_Hyperlink_Attributes: Attributes;
|
|
879
|
+
export type ST_DrawingElementId = number;
|
|
880
|
+
export interface CT_ConnectorLocking {
|
|
881
|
+
extLst?: CT_OfficeArtExtensionList;
|
|
882
|
+
}
|
|
883
|
+
export declare const CT_ConnectorLocking_Attributes: Attributes;
|
|
884
|
+
export interface CT_ShapeLocking {
|
|
885
|
+
extLst?: CT_OfficeArtExtensionList;
|
|
886
|
+
noTextEdit?: boolean;
|
|
887
|
+
}
|
|
888
|
+
export declare const CT_ShapeLocking_Attributes: Attributes;
|
|
889
|
+
export interface CT_PictureLocking {
|
|
890
|
+
extLst?: CT_OfficeArtExtensionList;
|
|
891
|
+
noCrop?: boolean;
|
|
892
|
+
}
|
|
893
|
+
export declare const CT_PictureLocking_Attributes: Attributes;
|
|
894
|
+
export interface CT_GroupLocking {
|
|
895
|
+
extLst?: CT_OfficeArtExtensionList;
|
|
896
|
+
noGrp?: boolean;
|
|
897
|
+
noUngrp?: boolean;
|
|
898
|
+
noSelect?: boolean;
|
|
899
|
+
noRot?: boolean;
|
|
900
|
+
noChangeAspect?: boolean;
|
|
901
|
+
noMove?: boolean;
|
|
902
|
+
noResize?: boolean;
|
|
903
|
+
}
|
|
904
|
+
export declare const CT_GroupLocking_Attributes: Attributes;
|
|
905
|
+
export interface CT_GraphicalObjectFrameLocking {
|
|
906
|
+
extLst?: CT_OfficeArtExtensionList;
|
|
907
|
+
noGrp?: boolean;
|
|
908
|
+
noDrilldown?: boolean;
|
|
909
|
+
noSelect?: boolean;
|
|
910
|
+
noChangeAspect?: boolean;
|
|
911
|
+
noMove?: boolean;
|
|
912
|
+
noResize?: boolean;
|
|
913
|
+
}
|
|
914
|
+
export declare const CT_GraphicalObjectFrameLocking_Attributes: Attributes;
|
|
915
|
+
export interface CT_ContentPartLocking {
|
|
916
|
+
extLst?: CT_OfficeArtExtensionList;
|
|
917
|
+
}
|
|
918
|
+
export declare const CT_ContentPartLocking_Attributes: Attributes;
|
|
919
|
+
export interface CT_NonVisualDrawingProps {
|
|
920
|
+
hlinkClick?: CT_Hyperlink;
|
|
921
|
+
hlinkHover?: CT_Hyperlink;
|
|
922
|
+
extLst?: CT_OfficeArtExtensionList;
|
|
923
|
+
id?: number;
|
|
924
|
+
name?: string;
|
|
925
|
+
descr?: string;
|
|
926
|
+
hidden?: boolean;
|
|
927
|
+
title?: string;
|
|
928
|
+
}
|
|
929
|
+
export declare const CT_NonVisualDrawingProps_Attributes: Attributes;
|
|
930
|
+
export interface CT_NonVisualDrawingShapeProps {
|
|
931
|
+
spLocks?: CT_ShapeLocking;
|
|
932
|
+
extLst?: CT_OfficeArtExtensionList;
|
|
933
|
+
txBox?: boolean;
|
|
934
|
+
}
|
|
935
|
+
export declare const CT_NonVisualDrawingShapeProps_Attributes: Attributes;
|
|
936
|
+
export interface CT_Connection {
|
|
937
|
+
id?: number;
|
|
938
|
+
idx?: number;
|
|
939
|
+
}
|
|
940
|
+
export declare const CT_Connection_Attributes: Attributes;
|
|
941
|
+
export interface CT_NonVisualConnectorProperties {
|
|
942
|
+
cxnSpLocks?: CT_ConnectorLocking;
|
|
943
|
+
stCxn?: CT_Connection;
|
|
944
|
+
endCxn?: CT_Connection;
|
|
945
|
+
extLst?: CT_OfficeArtExtensionList;
|
|
946
|
+
}
|
|
947
|
+
export declare const CT_NonVisualConnectorProperties_Attributes: Attributes;
|
|
948
|
+
export interface CT_NonVisualPictureProperties {
|
|
949
|
+
picLocks?: CT_PictureLocking;
|
|
950
|
+
extLst?: CT_OfficeArtExtensionList;
|
|
951
|
+
preferRelativeResize?: boolean;
|
|
952
|
+
}
|
|
953
|
+
export declare const CT_NonVisualPictureProperties_Attributes: Attributes;
|
|
954
|
+
export interface CT_NonVisualGroupDrawingShapeProps {
|
|
955
|
+
grpSpLocks?: CT_GroupLocking;
|
|
956
|
+
extLst?: CT_OfficeArtExtensionList;
|
|
957
|
+
}
|
|
958
|
+
export declare const CT_NonVisualGroupDrawingShapeProps_Attributes: Attributes;
|
|
959
|
+
export interface CT_NonVisualGraphicFrameProperties {
|
|
960
|
+
graphicFrameLocks?: CT_GraphicalObjectFrameLocking;
|
|
961
|
+
extLst?: CT_OfficeArtExtensionList;
|
|
962
|
+
}
|
|
963
|
+
export declare const CT_NonVisualGraphicFrameProperties_Attributes: Attributes;
|
|
964
|
+
export interface CT_NonVisualContentPartProperties {
|
|
965
|
+
cpLocks?: CT_ContentPartLocking;
|
|
966
|
+
extLst?: CT_OfficeArtExtensionList;
|
|
967
|
+
isComment?: boolean;
|
|
968
|
+
}
|
|
969
|
+
export declare const CT_NonVisualContentPartProperties_Attributes: Attributes;
|
|
970
|
+
export interface CT_GraphicalObjectData {
|
|
971
|
+
__any__?: any;
|
|
972
|
+
uri?: string;
|
|
973
|
+
}
|
|
974
|
+
export declare const CT_GraphicalObjectData_Attributes: Attributes;
|
|
975
|
+
export interface CT_GraphicalObject {
|
|
976
|
+
graphicData?: CT_GraphicalObjectData[];
|
|
977
|
+
}
|
|
978
|
+
export declare const CT_GraphicalObject_Attributes: Attributes;
|
|
979
|
+
export type ST_ChartBuildStep = 'category' | 'ptInCategory' | 'series' | 'ptInSeries' | 'allPts' | 'gridLegend';
|
|
980
|
+
export type ST_DgmBuildStep = 'sp' | 'bg';
|
|
981
|
+
export interface CT_AnimationDgmElement {
|
|
982
|
+
id?: string;
|
|
983
|
+
bldStep?: ST_DgmBuildStep;
|
|
984
|
+
}
|
|
985
|
+
export declare const CT_AnimationDgmElement_Attributes: Attributes;
|
|
986
|
+
export interface CT_AnimationChartElement {
|
|
987
|
+
seriesIdx?: number;
|
|
988
|
+
categoryIdx?: number;
|
|
989
|
+
bldStep?: ST_ChartBuildStep;
|
|
990
|
+
}
|
|
991
|
+
export declare const CT_AnimationChartElement_Attributes: Attributes;
|
|
992
|
+
export interface CT_AnimationElementChoice {
|
|
993
|
+
dgm?: CT_AnimationDgmElement[];
|
|
994
|
+
chart?: CT_AnimationChartElement[];
|
|
995
|
+
}
|
|
996
|
+
export declare const CT_AnimationElementChoice_Attributes: Attributes;
|
|
997
|
+
export type ST_AnimationBuildType = 'allAtOnce';
|
|
998
|
+
export type ST_AnimationDgmOnlyBuildType = 'one' | 'lvlOne' | 'lvlAtOnce';
|
|
999
|
+
export type ST_AnimationDgmBuildType = ST_AnimationBuildType | ST_AnimationDgmOnlyBuildType;
|
|
1000
|
+
export interface CT_AnimationDgmBuildProperties {
|
|
1001
|
+
bld?: ST_AnimationDgmBuildType;
|
|
1002
|
+
rev?: boolean;
|
|
1003
|
+
}
|
|
1004
|
+
export declare const CT_AnimationDgmBuildProperties_Attributes: Attributes;
|
|
1005
|
+
export type ST_AnimationChartOnlyBuildType = 'series' | 'category' | 'seriesEl' | 'categoryEl';
|
|
1006
|
+
export type ST_AnimationChartBuildType = ST_AnimationBuildType | ST_AnimationChartOnlyBuildType;
|
|
1007
|
+
export interface CT_AnimationChartBuildProperties {
|
|
1008
|
+
bld?: ST_AnimationChartBuildType;
|
|
1009
|
+
animBg?: boolean;
|
|
1010
|
+
}
|
|
1011
|
+
export declare const CT_AnimationChartBuildProperties_Attributes: Attributes;
|
|
1012
|
+
export interface CT_AnimationGraphicalObjectBuildProperties {
|
|
1013
|
+
bldDgm?: CT_AnimationDgmBuildProperties[];
|
|
1014
|
+
bldChart?: CT_AnimationChartBuildProperties[];
|
|
1015
|
+
}
|
|
1016
|
+
export declare const CT_AnimationGraphicalObjectBuildProperties_Attributes: Attributes;
|
|
1017
|
+
export interface CT_BackgroundFormatting {
|
|
1018
|
+
noFill?: CT_NoFillProperties;
|
|
1019
|
+
solidFill?: CT_SolidColorFillProperties;
|
|
1020
|
+
gradFill?: CT_GradientFillProperties;
|
|
1021
|
+
blipFill?: CT_BlipFillProperties;
|
|
1022
|
+
pattFill?: CT_PatternFillProperties;
|
|
1023
|
+
grpFill?: CT_GroupFillProperties;
|
|
1024
|
+
effectLst?: CT_EffectList;
|
|
1025
|
+
effectDag?: CT_EffectContainer;
|
|
1026
|
+
}
|
|
1027
|
+
export declare const CT_BackgroundFormatting_Attributes: Attributes;
|
|
1028
|
+
export interface CT_WholeE2oFormatting {
|
|
1029
|
+
ln?: CT_LineProperties;
|
|
1030
|
+
effectLst?: CT_EffectList;
|
|
1031
|
+
effectDag?: CT_EffectContainer;
|
|
1032
|
+
}
|
|
1033
|
+
export declare const CT_WholeE2oFormatting_Attributes: Attributes;
|
|
1034
|
+
export interface CT_GvmlUseShapeRectangle {
|
|
1035
|
+
}
|
|
1036
|
+
export declare const CT_GvmlUseShapeRectangle_Attributes: Attributes;
|
|
1037
|
+
export type ST_GeomGuideName = string;
|
|
1038
|
+
export type ST_GeomGuideFormula = string;
|
|
1039
|
+
export interface CT_GeomGuide {
|
|
1040
|
+
name?: string;
|
|
1041
|
+
fmla?: string;
|
|
1042
|
+
}
|
|
1043
|
+
export declare const CT_GeomGuide_Attributes: Attributes;
|
|
1044
|
+
export interface CT_GeomGuideList {
|
|
1045
|
+
gd?: CT_GeomGuide[];
|
|
1046
|
+
}
|
|
1047
|
+
export declare const CT_GeomGuideList_Attributes: Attributes;
|
|
1048
|
+
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';
|
|
1049
|
+
export interface CT_PresetTextShape {
|
|
1050
|
+
avLst?: CT_GeomGuideList;
|
|
1051
|
+
prst?: ST_TextShapeType;
|
|
1052
|
+
}
|
|
1053
|
+
export declare const CT_PresetTextShape_Attributes: Attributes;
|
|
1054
|
+
export interface CT_TextNoAutofit {
|
|
1055
|
+
}
|
|
1056
|
+
export declare const CT_TextNoAutofit_Attributes: Attributes;
|
|
1057
|
+
export type ST_TextFontScalePercentOrPercentString = string;
|
|
1058
|
+
export type ST_TextSpacingPercentOrPercentString = string;
|
|
1059
|
+
export interface CT_TextNormalAutofit {
|
|
1060
|
+
fontScale?: string;
|
|
1061
|
+
lnSpcReduction?: string;
|
|
1062
|
+
}
|
|
1063
|
+
export declare const CT_TextNormalAutofit_Attributes: Attributes;
|
|
1064
|
+
export interface CT_TextShapeAutofit {
|
|
1065
|
+
}
|
|
1066
|
+
export declare const CT_TextShapeAutofit_Attributes: Attributes;
|
|
1067
|
+
export interface CT_FlatText {
|
|
1068
|
+
z?: ST_Coordinate;
|
|
1069
|
+
}
|
|
1070
|
+
export declare const CT_FlatText_Attributes: Attributes;
|
|
1071
|
+
export type ST_TextVertOverflowType = 'overflow' | 'ellipsis' | 'clip';
|
|
1072
|
+
export type ST_TextHorzOverflowType = 'overflow' | 'clip';
|
|
1073
|
+
export type ST_TextVerticalType = 'horz' | 'vert' | 'vert270' | 'wordArtVert' | 'eaVert' | 'mongolianVert' | 'wordArtVertRtl';
|
|
1074
|
+
export type ST_TextWrappingType = 'none' | 'square';
|
|
1075
|
+
export type ST_TextColumnCount = number;
|
|
1076
|
+
export type ST_TextAnchoringType = 't' | 'ctr' | 'b' | 'just' | 'dist';
|
|
1077
|
+
export interface CT_TextBodyProperties {
|
|
1078
|
+
prstTxWarp?: CT_PresetTextShape;
|
|
1079
|
+
noAutofit?: CT_TextNoAutofit[];
|
|
1080
|
+
normAutofit?: CT_TextNormalAutofit[];
|
|
1081
|
+
spAutoFit?: CT_TextShapeAutofit[];
|
|
1082
|
+
scene3d?: CT_Scene3D;
|
|
1083
|
+
sp3d?: CT_Shape3D;
|
|
1084
|
+
flatTx?: CT_FlatText;
|
|
1085
|
+
extLst?: CT_OfficeArtExtensionList;
|
|
1086
|
+
rot?: number;
|
|
1087
|
+
spcFirstLastPara?: boolean;
|
|
1088
|
+
vertOverflow?: ST_TextVertOverflowType;
|
|
1089
|
+
horzOverflow?: ST_TextHorzOverflowType;
|
|
1090
|
+
vert?: ST_TextVerticalType;
|
|
1091
|
+
wrap?: ST_TextWrappingType;
|
|
1092
|
+
lIns?: ST_Coordinate32;
|
|
1093
|
+
tIns?: ST_Coordinate32;
|
|
1094
|
+
rIns?: ST_Coordinate32;
|
|
1095
|
+
bIns?: ST_Coordinate32;
|
|
1096
|
+
numCol?: number;
|
|
1097
|
+
spcCol?: number;
|
|
1098
|
+
rtlCol?: boolean;
|
|
1099
|
+
fromWordArt?: boolean;
|
|
1100
|
+
anchor?: ST_TextAnchoringType;
|
|
1101
|
+
anchorCtr?: boolean;
|
|
1102
|
+
forceAA?: boolean;
|
|
1103
|
+
upright?: boolean;
|
|
1104
|
+
compatLnSpc?: boolean;
|
|
1105
|
+
}
|
|
1106
|
+
export declare const CT_TextBodyProperties_Attributes: Attributes;
|
|
1107
|
+
export interface CT_TextSpacingPercent {
|
|
1108
|
+
val?: string;
|
|
1109
|
+
}
|
|
1110
|
+
export declare const CT_TextSpacingPercent_Attributes: Attributes;
|
|
1111
|
+
export type ST_TextSpacingPoint = number;
|
|
1112
|
+
export interface CT_TextSpacingPoint {
|
|
1113
|
+
val?: number;
|
|
1114
|
+
}
|
|
1115
|
+
export declare const CT_TextSpacingPoint_Attributes: Attributes;
|
|
1116
|
+
export interface CT_TextSpacing {
|
|
1117
|
+
spcPct?: CT_TextSpacingPercent[];
|
|
1118
|
+
spcPts?: CT_TextSpacingPoint[];
|
|
1119
|
+
}
|
|
1120
|
+
export declare const CT_TextSpacing_Attributes: Attributes;
|
|
1121
|
+
export interface CT_TextBulletColorFollowText {
|
|
1122
|
+
}
|
|
1123
|
+
export declare const CT_TextBulletColorFollowText_Attributes: Attributes;
|
|
1124
|
+
export interface CT_TextBulletSizeFollowText {
|
|
1125
|
+
}
|
|
1126
|
+
export declare const CT_TextBulletSizeFollowText_Attributes: Attributes;
|
|
1127
|
+
export type ST_TextBulletSizePercent = string;
|
|
1128
|
+
export interface CT_TextBulletSizePercent {
|
|
1129
|
+
val?: string;
|
|
1130
|
+
}
|
|
1131
|
+
export declare const CT_TextBulletSizePercent_Attributes: Attributes;
|
|
1132
|
+
export type ST_TextFontSize = number;
|
|
1133
|
+
export interface CT_TextBulletSizePoint {
|
|
1134
|
+
val?: number;
|
|
1135
|
+
}
|
|
1136
|
+
export declare const CT_TextBulletSizePoint_Attributes: Attributes;
|
|
1137
|
+
export interface CT_TextBulletTypefaceFollowText {
|
|
1138
|
+
}
|
|
1139
|
+
export declare const CT_TextBulletTypefaceFollowText_Attributes: Attributes;
|
|
1140
|
+
export interface CT_TextNoBullet {
|
|
1141
|
+
}
|
|
1142
|
+
export declare const CT_TextNoBullet_Attributes: Attributes;
|
|
1143
|
+
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';
|
|
1144
|
+
export type ST_TextBulletStartAtNum = number;
|
|
1145
|
+
export interface CT_TextAutonumberBullet {
|
|
1146
|
+
type?: ST_TextAutonumberScheme;
|
|
1147
|
+
startAt?: number;
|
|
1148
|
+
}
|
|
1149
|
+
export declare const CT_TextAutonumberBullet_Attributes: Attributes;
|
|
1150
|
+
export interface CT_TextCharBullet {
|
|
1151
|
+
char?: string;
|
|
1152
|
+
}
|
|
1153
|
+
export declare const CT_TextCharBullet_Attributes: Attributes;
|
|
1154
|
+
export interface CT_TextBlipBullet {
|
|
1155
|
+
blip?: CT_Blip;
|
|
1156
|
+
}
|
|
1157
|
+
export declare const CT_TextBlipBullet_Attributes: Attributes;
|
|
1158
|
+
export type ST_TextTabAlignType = 'l' | 'ctr' | 'r' | 'dec';
|
|
1159
|
+
export interface CT_TextTabStop {
|
|
1160
|
+
pos?: ST_Coordinate32;
|
|
1161
|
+
algn?: ST_TextTabAlignType;
|
|
1162
|
+
}
|
|
1163
|
+
export declare const CT_TextTabStop_Attributes: Attributes;
|
|
1164
|
+
export interface CT_TextTabStopList {
|
|
1165
|
+
tab?: CT_TextTabStop[];
|
|
1166
|
+
}
|
|
1167
|
+
export declare const CT_TextTabStopList_Attributes: Attributes;
|
|
1168
|
+
export interface CT_TextUnderlineLineFollowText {
|
|
1169
|
+
}
|
|
1170
|
+
export declare const CT_TextUnderlineLineFollowText_Attributes: Attributes;
|
|
1171
|
+
export interface CT_TextUnderlineFillFollowText {
|
|
1172
|
+
}
|
|
1173
|
+
export declare const CT_TextUnderlineFillFollowText_Attributes: Attributes;
|
|
1174
|
+
export interface CT_TextUnderlineFillGroupWrapper {
|
|
1175
|
+
}
|
|
1176
|
+
export declare const CT_TextUnderlineFillGroupWrapper_Attributes: Attributes;
|
|
1177
|
+
export interface CT_Boolean {
|
|
1178
|
+
val?: boolean;
|
|
1179
|
+
}
|
|
1180
|
+
export declare const CT_Boolean_Attributes: Attributes;
|
|
1181
|
+
export type ST_TextUnderlineType = 'none' | 'words' | 'sng' | 'dbl' | 'heavy' | 'dotted' | 'dottedHeavy' | 'dash' | 'dashHeavy' | 'dashLong' | 'dashLongHeavy' | 'dotDash' | 'dotDashHeavy' | 'dotDotDash' | 'dotDotDashHeavy' | 'wavy' | 'wavyHeavy' | 'wavyDbl';
|
|
1182
|
+
export type ST_TextStrikeType = 'noStrike' | 'sngStrike' | 'dblStrike';
|
|
1183
|
+
export type ST_TextNonNegativePoint = number;
|
|
1184
|
+
export type ST_TextCapsType = 'none' | 'small' | 'all';
|
|
1185
|
+
export type ST_TextPoint = ST_TextPointUnqualified | ST_UniversalMeasure;
|
|
1186
|
+
export interface CT_TextCharacterProperties {
|
|
1187
|
+
ln?: CT_LineProperties;
|
|
1188
|
+
noFill?: CT_NoFillProperties;
|
|
1189
|
+
solidFill?: CT_SolidColorFillProperties;
|
|
1190
|
+
gradFill?: CT_GradientFillProperties;
|
|
1191
|
+
blipFill?: CT_BlipFillProperties;
|
|
1192
|
+
pattFill?: CT_PatternFillProperties;
|
|
1193
|
+
grpFill?: CT_GroupFillProperties;
|
|
1194
|
+
effectLst?: CT_EffectList;
|
|
1195
|
+
effectDag?: CT_EffectContainer;
|
|
1196
|
+
highlight?: CT_Color;
|
|
1197
|
+
uLnTx?: CT_TextUnderlineLineFollowText[];
|
|
1198
|
+
uLn?: CT_LineProperties;
|
|
1199
|
+
uFillTx?: CT_TextUnderlineFillFollowText[];
|
|
1200
|
+
uFill?: CT_TextUnderlineFillGroupWrapper[];
|
|
1201
|
+
latin?: CT_TextFont;
|
|
1202
|
+
ea?: CT_TextFont;
|
|
1203
|
+
cs?: CT_TextFont;
|
|
1204
|
+
sym?: CT_TextFont;
|
|
1205
|
+
hlinkClick?: CT_Hyperlink;
|
|
1206
|
+
hlinkMouseOver?: CT_Hyperlink;
|
|
1207
|
+
rtl?: CT_Boolean[];
|
|
1208
|
+
extLst?: CT_OfficeArtExtensionList;
|
|
1209
|
+
kumimoji?: boolean;
|
|
1210
|
+
lang?: string;
|
|
1211
|
+
altLang?: string;
|
|
1212
|
+
sz?: number;
|
|
1213
|
+
b?: boolean;
|
|
1214
|
+
i?: boolean;
|
|
1215
|
+
u?: ST_TextUnderlineType;
|
|
1216
|
+
strike?: ST_TextStrikeType;
|
|
1217
|
+
kern?: number;
|
|
1218
|
+
cap?: ST_TextCapsType;
|
|
1219
|
+
spc?: ST_TextPoint;
|
|
1220
|
+
normalizeH?: boolean;
|
|
1221
|
+
baseline?: string;
|
|
1222
|
+
noProof?: boolean;
|
|
1223
|
+
dirty?: boolean;
|
|
1224
|
+
err?: boolean;
|
|
1225
|
+
smtClean?: boolean;
|
|
1226
|
+
smtId?: number;
|
|
1227
|
+
bmk?: string;
|
|
1228
|
+
}
|
|
1229
|
+
export declare const CT_TextCharacterProperties_Attributes: Attributes;
|
|
1230
|
+
export type ST_TextMargin = ST_Coordinate32Unqualified;
|
|
1231
|
+
export type ST_TextIndentLevelType = number;
|
|
1232
|
+
export type ST_TextIndent = ST_Coordinate32Unqualified;
|
|
1233
|
+
export type ST_TextAlignType = 'l' | 'ctr' | 'r' | 'just' | 'justLow' | 'dist' | 'thaiDist';
|
|
1234
|
+
export type ST_TextFontAlignType = 'auto' | 't' | 'ctr' | 'base' | 'b';
|
|
1235
|
+
export interface CT_TextParagraphProperties {
|
|
1236
|
+
lnSpc?: CT_TextSpacing;
|
|
1237
|
+
spcBef?: CT_TextSpacing;
|
|
1238
|
+
spcAft?: CT_TextSpacing;
|
|
1239
|
+
buClrTx?: CT_TextBulletColorFollowText;
|
|
1240
|
+
buClr?: CT_Color;
|
|
1241
|
+
buSzTx?: CT_TextBulletSizeFollowText[];
|
|
1242
|
+
buSzPct?: CT_TextBulletSizePercent[];
|
|
1243
|
+
buSzPts?: CT_TextBulletSizePoint[];
|
|
1244
|
+
buFontTx?: CT_TextBulletTypefaceFollowText[];
|
|
1245
|
+
buFont?: CT_TextFont[];
|
|
1246
|
+
buNone?: CT_TextNoBullet[];
|
|
1247
|
+
buAutoNum?: CT_TextAutonumberBullet[];
|
|
1248
|
+
buChar?: CT_TextCharBullet[];
|
|
1249
|
+
buBlip?: CT_TextBlipBullet[];
|
|
1250
|
+
tabLst?: CT_TextTabStopList;
|
|
1251
|
+
defRPr?: CT_TextCharacterProperties;
|
|
1252
|
+
extLst?: CT_OfficeArtExtensionList;
|
|
1253
|
+
marL?: number;
|
|
1254
|
+
marR?: number;
|
|
1255
|
+
lvl?: number;
|
|
1256
|
+
indent?: number;
|
|
1257
|
+
algn?: ST_TextAlignType;
|
|
1258
|
+
defTabSz?: ST_Coordinate32;
|
|
1259
|
+
rtl?: boolean;
|
|
1260
|
+
eaLnBrk?: boolean;
|
|
1261
|
+
fontAlgn?: ST_TextFontAlignType;
|
|
1262
|
+
latinLnBrk?: boolean;
|
|
1263
|
+
hangingPunct?: boolean;
|
|
1264
|
+
}
|
|
1265
|
+
export declare const CT_TextParagraphProperties_Attributes: Attributes;
|
|
1266
|
+
export interface CT_TextListStyle {
|
|
1267
|
+
defPPr?: CT_TextParagraphProperties;
|
|
1268
|
+
lvl1pPr?: CT_TextParagraphProperties;
|
|
1269
|
+
lvl2pPr?: CT_TextParagraphProperties;
|
|
1270
|
+
lvl3pPr?: CT_TextParagraphProperties;
|
|
1271
|
+
lvl4pPr?: CT_TextParagraphProperties;
|
|
1272
|
+
lvl5pPr?: CT_TextParagraphProperties;
|
|
1273
|
+
lvl6pPr?: CT_TextParagraphProperties;
|
|
1274
|
+
lvl7pPr?: CT_TextParagraphProperties;
|
|
1275
|
+
lvl8pPr?: CT_TextParagraphProperties;
|
|
1276
|
+
lvl9pPr?: CT_TextParagraphProperties;
|
|
1277
|
+
extLst?: CT_OfficeArtExtensionList;
|
|
1278
|
+
}
|
|
1279
|
+
export declare const CT_TextListStyle_Attributes: Attributes;
|
|
1280
|
+
export interface CT_RegularTextRun {
|
|
1281
|
+
rPr?: CT_TextCharacterProperties;
|
|
1282
|
+
t?: string;
|
|
1283
|
+
}
|
|
1284
|
+
export declare const CT_RegularTextRun_Attributes: Attributes;
|
|
1285
|
+
export interface CT_TextLineBreak {
|
|
1286
|
+
rPr?: CT_TextCharacterProperties;
|
|
1287
|
+
}
|
|
1288
|
+
export declare const CT_TextLineBreak_Attributes: Attributes;
|
|
1289
|
+
export interface CT_TextField {
|
|
1290
|
+
rPr?: CT_TextCharacterProperties;
|
|
1291
|
+
pPr?: CT_TextParagraphProperties;
|
|
1292
|
+
t?: string;
|
|
1293
|
+
id?: string;
|
|
1294
|
+
type?: string;
|
|
1295
|
+
}
|
|
1296
|
+
export declare const CT_TextField_Attributes: Attributes;
|
|
1297
|
+
export interface CT_TextParagraph {
|
|
1298
|
+
pPr?: CT_TextParagraphProperties;
|
|
1299
|
+
r?: CT_RegularTextRun[];
|
|
1300
|
+
br?: CT_TextLineBreak[];
|
|
1301
|
+
fld?: CT_TextField[];
|
|
1302
|
+
endParaRPr?: CT_TextCharacterProperties;
|
|
1303
|
+
}
|
|
1304
|
+
export declare const CT_TextParagraph_Attributes: Attributes;
|
|
1305
|
+
export interface CT_TextBody {
|
|
1306
|
+
bodyPr?: CT_TextBodyProperties;
|
|
1307
|
+
lstStyle?: CT_TextListStyle;
|
|
1308
|
+
p?: CT_TextParagraph[];
|
|
1309
|
+
}
|
|
1310
|
+
export declare const CT_TextBody_Attributes: Attributes;
|
|
1311
|
+
export interface CT_GvmlTextShape {
|
|
1312
|
+
txBody?: CT_TextBody;
|
|
1313
|
+
useSpRect?: CT_GvmlUseShapeRectangle;
|
|
1314
|
+
xfrm?: CT_Transform2D;
|
|
1315
|
+
extLst?: CT_OfficeArtExtensionList;
|
|
1316
|
+
}
|
|
1317
|
+
export declare const CT_GvmlTextShape_Attributes: Attributes;
|
|
1318
|
+
export interface CT_GvmlShapeNonVisual {
|
|
1319
|
+
cNvPr?: CT_NonVisualDrawingProps;
|
|
1320
|
+
cNvSpPr?: CT_NonVisualDrawingShapeProps;
|
|
1321
|
+
}
|
|
1322
|
+
export declare const CT_GvmlShapeNonVisual_Attributes: Attributes;
|
|
1323
|
+
export type ST_AdjCoordinate = ST_Coordinate | ST_GeomGuideName;
|
|
1324
|
+
export interface CT_AdjPoint2D {
|
|
1325
|
+
x?: ST_AdjCoordinate;
|
|
1326
|
+
y?: ST_AdjCoordinate;
|
|
1327
|
+
}
|
|
1328
|
+
export declare const CT_AdjPoint2D_Attributes: Attributes;
|
|
1329
|
+
export interface CT_XYAdjustHandle {
|
|
1330
|
+
pos?: CT_AdjPoint2D;
|
|
1331
|
+
gdRefX?: string;
|
|
1332
|
+
minX?: ST_AdjCoordinate;
|
|
1333
|
+
maxX?: ST_AdjCoordinate;
|
|
1334
|
+
gdRefY?: string;
|
|
1335
|
+
minY?: ST_AdjCoordinate;
|
|
1336
|
+
maxY?: ST_AdjCoordinate;
|
|
1337
|
+
}
|
|
1338
|
+
export declare const CT_XYAdjustHandle_Attributes: Attributes;
|
|
1339
|
+
export type ST_AdjAngle = ST_Angle | ST_GeomGuideName;
|
|
1340
|
+
export interface CT_PolarAdjustHandle {
|
|
1341
|
+
pos?: CT_AdjPoint2D;
|
|
1342
|
+
gdRefR?: string;
|
|
1343
|
+
minR?: ST_AdjCoordinate;
|
|
1344
|
+
maxR?: ST_AdjCoordinate;
|
|
1345
|
+
gdRefAng?: string;
|
|
1346
|
+
minAng?: ST_AdjAngle;
|
|
1347
|
+
maxAng?: ST_AdjAngle;
|
|
1348
|
+
}
|
|
1349
|
+
export declare const CT_PolarAdjustHandle_Attributes: Attributes;
|
|
1350
|
+
export interface CT_AdjustHandleList {
|
|
1351
|
+
ahXY?: CT_XYAdjustHandle;
|
|
1352
|
+
ahPolar?: CT_PolarAdjustHandle;
|
|
1353
|
+
}
|
|
1354
|
+
export declare const CT_AdjustHandleList_Attributes: Attributes;
|
|
1355
|
+
export interface CT_ConnectionSite {
|
|
1356
|
+
pos?: CT_AdjPoint2D;
|
|
1357
|
+
ang?: ST_AdjAngle;
|
|
1358
|
+
}
|
|
1359
|
+
export declare const CT_ConnectionSite_Attributes: Attributes;
|
|
1360
|
+
export interface CT_ConnectionSiteList {
|
|
1361
|
+
cxn?: CT_ConnectionSite[];
|
|
1362
|
+
}
|
|
1363
|
+
export declare const CT_ConnectionSiteList_Attributes: Attributes;
|
|
1364
|
+
export interface CT_GeomRect {
|
|
1365
|
+
l?: ST_AdjCoordinate;
|
|
1366
|
+
t?: ST_AdjCoordinate;
|
|
1367
|
+
r?: ST_AdjCoordinate;
|
|
1368
|
+
b?: ST_AdjCoordinate;
|
|
1369
|
+
}
|
|
1370
|
+
export declare const CT_GeomRect_Attributes: Attributes;
|
|
1371
|
+
export interface CT_Path2DClose {
|
|
1372
|
+
}
|
|
1373
|
+
export declare const CT_Path2DClose_Attributes: Attributes;
|
|
1374
|
+
export interface CT_Path2DMoveTo {
|
|
1375
|
+
pt?: CT_AdjPoint2D;
|
|
1376
|
+
}
|
|
1377
|
+
export declare const CT_Path2DMoveTo_Attributes: Attributes;
|
|
1378
|
+
export interface CT_Path2DLineTo {
|
|
1379
|
+
pt?: CT_AdjPoint2D;
|
|
1380
|
+
}
|
|
1381
|
+
export declare const CT_Path2DLineTo_Attributes: Attributes;
|
|
1382
|
+
export interface CT_Path2DArcTo {
|
|
1383
|
+
wR?: ST_AdjCoordinate;
|
|
1384
|
+
hR?: ST_AdjCoordinate;
|
|
1385
|
+
stAng?: ST_AdjAngle;
|
|
1386
|
+
swAng?: ST_AdjAngle;
|
|
1387
|
+
}
|
|
1388
|
+
export declare const CT_Path2DArcTo_Attributes: Attributes;
|
|
1389
|
+
export interface CT_Path2DQuadBezierTo {
|
|
1390
|
+
pt?: CT_AdjPoint2D[];
|
|
1391
|
+
}
|
|
1392
|
+
export declare const CT_Path2DQuadBezierTo_Attributes: Attributes;
|
|
1393
|
+
export interface CT_Path2DCubicBezierTo {
|
|
1394
|
+
pt?: CT_AdjPoint2D[];
|
|
1395
|
+
}
|
|
1396
|
+
export declare const CT_Path2DCubicBezierTo_Attributes: Attributes;
|
|
1397
|
+
export type ST_PathFillMode = 'none' | 'norm' | 'lighten' | 'lightenLess' | 'darken' | 'darkenLess';
|
|
1398
|
+
export interface CT_Path2D {
|
|
1399
|
+
close?: CT_Path2DClose;
|
|
1400
|
+
moveTo?: CT_Path2DMoveTo;
|
|
1401
|
+
lnTo?: CT_Path2DLineTo;
|
|
1402
|
+
arcTo?: CT_Path2DArcTo;
|
|
1403
|
+
quadBezTo?: CT_Path2DQuadBezierTo;
|
|
1404
|
+
cubicBezTo?: CT_Path2DCubicBezierTo;
|
|
1405
|
+
w?: number;
|
|
1406
|
+
h?: number;
|
|
1407
|
+
fill?: ST_PathFillMode;
|
|
1408
|
+
stroke?: boolean;
|
|
1409
|
+
extrusionOk?: boolean;
|
|
1410
|
+
}
|
|
1411
|
+
export declare const CT_Path2D_Attributes: Attributes;
|
|
1412
|
+
export interface CT_Path2DList {
|
|
1413
|
+
path?: CT_Path2D[];
|
|
1414
|
+
}
|
|
1415
|
+
export declare const CT_Path2DList_Attributes: Attributes;
|
|
1416
|
+
export interface CT_CustomGeometry2D {
|
|
1417
|
+
avLst?: CT_GeomGuideList;
|
|
1418
|
+
gdLst?: CT_GeomGuideList;
|
|
1419
|
+
ahLst?: CT_AdjustHandleList;
|
|
1420
|
+
cxnLst?: CT_ConnectionSiteList;
|
|
1421
|
+
rect?: CT_GeomRect;
|
|
1422
|
+
pathLst?: CT_Path2DList;
|
|
1423
|
+
}
|
|
1424
|
+
export declare const CT_CustomGeometry2D_Attributes: Attributes;
|
|
1425
|
+
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';
|
|
1426
|
+
export interface CT_PresetGeometry2D {
|
|
1427
|
+
avLst?: CT_GeomGuideList;
|
|
1428
|
+
prst?: ST_ShapeType;
|
|
1429
|
+
}
|
|
1430
|
+
export declare const CT_PresetGeometry2D_Attributes: Attributes;
|
|
1431
|
+
export interface CT_ShapeProperties {
|
|
1432
|
+
xfrm?: CT_Transform2D;
|
|
1433
|
+
custGeom?: CT_CustomGeometry2D;
|
|
1434
|
+
prstGeom?: CT_PresetGeometry2D;
|
|
1435
|
+
noFill?: CT_NoFillProperties;
|
|
1436
|
+
solidFill?: CT_SolidColorFillProperties;
|
|
1437
|
+
gradFill?: CT_GradientFillProperties;
|
|
1438
|
+
blipFill?: CT_BlipFillProperties;
|
|
1439
|
+
pattFill?: CT_PatternFillProperties;
|
|
1440
|
+
grpFill?: CT_GroupFillProperties;
|
|
1441
|
+
ln?: CT_LineProperties;
|
|
1442
|
+
effectLst?: CT_EffectList;
|
|
1443
|
+
effectDag?: CT_EffectContainer;
|
|
1444
|
+
scene3d?: CT_Scene3D;
|
|
1445
|
+
sp3d?: CT_Shape3D;
|
|
1446
|
+
extLst?: CT_OfficeArtExtensionList;
|
|
1447
|
+
bwMode?: ST_BlackWhiteMode;
|
|
1448
|
+
}
|
|
1449
|
+
export declare const CT_ShapeProperties_Attributes: Attributes;
|
|
1450
|
+
export interface CT_StyleMatrixReference {
|
|
1451
|
+
scrgbClr?: CT_ScRgbColor;
|
|
1452
|
+
srgbClr?: CT_SRgbColor;
|
|
1453
|
+
hslClr?: CT_HslColor;
|
|
1454
|
+
sysClr?: CT_SystemColor;
|
|
1455
|
+
schemeClr?: CT_SchemeColor;
|
|
1456
|
+
prstClr?: CT_PresetColor;
|
|
1457
|
+
idx?: number;
|
|
1458
|
+
}
|
|
1459
|
+
export declare const CT_StyleMatrixReference_Attributes: Attributes;
|
|
1460
|
+
export interface CT_FontReference {
|
|
1461
|
+
scrgbClr?: CT_ScRgbColor;
|
|
1462
|
+
srgbClr?: CT_SRgbColor;
|
|
1463
|
+
hslClr?: CT_HslColor;
|
|
1464
|
+
sysClr?: CT_SystemColor;
|
|
1465
|
+
schemeClr?: CT_SchemeColor;
|
|
1466
|
+
prstClr?: CT_PresetColor;
|
|
1467
|
+
idx?: ST_FontCollectionIndex;
|
|
1468
|
+
}
|
|
1469
|
+
export declare const CT_FontReference_Attributes: Attributes;
|
|
1470
|
+
export interface CT_ShapeStyle {
|
|
1471
|
+
lnRef?: CT_StyleMatrixReference;
|
|
1472
|
+
fillRef?: CT_StyleMatrixReference;
|
|
1473
|
+
effectRef?: CT_StyleMatrixReference;
|
|
1474
|
+
fontRef?: CT_FontReference;
|
|
1475
|
+
}
|
|
1476
|
+
export declare const CT_ShapeStyle_Attributes: Attributes;
|
|
1477
|
+
export interface CT_GvmlShape {
|
|
1478
|
+
nvSpPr?: CT_GvmlShapeNonVisual;
|
|
1479
|
+
spPr?: CT_ShapeProperties;
|
|
1480
|
+
txSp?: CT_GvmlTextShape;
|
|
1481
|
+
style?: CT_ShapeStyle;
|
|
1482
|
+
extLst?: CT_OfficeArtExtensionList;
|
|
1483
|
+
}
|
|
1484
|
+
export declare const CT_GvmlShape_Attributes: Attributes;
|
|
1485
|
+
export interface CT_GvmlConnectorNonVisual {
|
|
1486
|
+
cNvPr?: CT_NonVisualDrawingProps;
|
|
1487
|
+
cNvCxnSpPr?: CT_NonVisualConnectorProperties;
|
|
1488
|
+
}
|
|
1489
|
+
export declare const CT_GvmlConnectorNonVisual_Attributes: Attributes;
|
|
1490
|
+
export interface CT_GvmlConnector {
|
|
1491
|
+
nvCxnSpPr?: CT_GvmlConnectorNonVisual;
|
|
1492
|
+
spPr?: CT_ShapeProperties;
|
|
1493
|
+
style?: CT_ShapeStyle;
|
|
1494
|
+
extLst?: CT_OfficeArtExtensionList;
|
|
1495
|
+
}
|
|
1496
|
+
export declare const CT_GvmlConnector_Attributes: Attributes;
|
|
1497
|
+
export interface CT_GvmlPictureNonVisual {
|
|
1498
|
+
cNvPr?: CT_NonVisualDrawingProps;
|
|
1499
|
+
cNvPicPr?: CT_NonVisualPictureProperties;
|
|
1500
|
+
}
|
|
1501
|
+
export declare const CT_GvmlPictureNonVisual_Attributes: Attributes;
|
|
1502
|
+
export interface CT_GvmlPicture {
|
|
1503
|
+
nvPicPr?: CT_GvmlPictureNonVisual;
|
|
1504
|
+
blipFill?: CT_BlipFillProperties;
|
|
1505
|
+
spPr?: CT_ShapeProperties;
|
|
1506
|
+
style?: CT_ShapeStyle;
|
|
1507
|
+
extLst?: CT_OfficeArtExtensionList;
|
|
1508
|
+
}
|
|
1509
|
+
export declare const CT_GvmlPicture_Attributes: Attributes;
|
|
1510
|
+
export interface CT_GvmlGraphicFrameNonVisual {
|
|
1511
|
+
cNvPr?: CT_NonVisualDrawingProps;
|
|
1512
|
+
cNvGraphicFramePr?: CT_NonVisualGraphicFrameProperties;
|
|
1513
|
+
}
|
|
1514
|
+
export declare const CT_GvmlGraphicFrameNonVisual_Attributes: Attributes;
|
|
1515
|
+
export interface CT_GvmlGraphicalObjectFrame {
|
|
1516
|
+
nvGraphicFramePr?: CT_GvmlGraphicFrameNonVisual;
|
|
1517
|
+
xfrm?: CT_Transform2D;
|
|
1518
|
+
extLst?: CT_OfficeArtExtensionList;
|
|
1519
|
+
}
|
|
1520
|
+
export declare const CT_GvmlGraphicalObjectFrame_Attributes: Attributes;
|
|
1521
|
+
export interface CT_GvmlGroupShapeNonVisual {
|
|
1522
|
+
cNvPr?: CT_NonVisualDrawingProps;
|
|
1523
|
+
cNvGrpSpPr?: CT_NonVisualGroupDrawingShapeProps;
|
|
1524
|
+
}
|
|
1525
|
+
export declare const CT_GvmlGroupShapeNonVisual_Attributes: Attributes;
|
|
1526
|
+
export type CT_GvmlGroupShape = any;
|
|
1527
|
+
export declare const CT_GvmlGroupShape_Attributes: Attributes;
|
|
1528
|
+
export interface CT_GroupShapeProperties {
|
|
1529
|
+
xfrm?: CT_GroupTransform2D;
|
|
1530
|
+
noFill?: CT_NoFillProperties;
|
|
1531
|
+
solidFill?: CT_SolidColorFillProperties;
|
|
1532
|
+
gradFill?: CT_GradientFillProperties;
|
|
1533
|
+
blipFill?: CT_BlipFillProperties;
|
|
1534
|
+
pattFill?: CT_PatternFillProperties;
|
|
1535
|
+
grpFill?: CT_GroupFillProperties;
|
|
1536
|
+
effectLst?: CT_EffectList;
|
|
1537
|
+
effectDag?: CT_EffectContainer;
|
|
1538
|
+
scene3d?: CT_Scene3D;
|
|
1539
|
+
extLst?: CT_OfficeArtExtensionList;
|
|
1540
|
+
bwMode?: ST_BlackWhiteMode;
|
|
1541
|
+
}
|
|
1542
|
+
export declare const CT_GroupShapeProperties_Attributes: Attributes;
|
|
1543
|
+
export interface CT_AlphaOutsetEffect {
|
|
1544
|
+
rad?: ST_Coordinate;
|
|
1545
|
+
}
|
|
1546
|
+
export declare const CT_AlphaOutsetEffect_Attributes: Attributes;
|
|
1547
|
+
export interface CT_RelativeOffsetEffect {
|
|
1548
|
+
tx?: string;
|
|
1549
|
+
ty?: string;
|
|
1550
|
+
}
|
|
1551
|
+
export declare const CT_RelativeOffsetEffect_Attributes: Attributes;
|
|
1552
|
+
export interface CT_TransformEffect {
|
|
1553
|
+
sx?: string;
|
|
1554
|
+
sy?: string;
|
|
1555
|
+
kx?: number;
|
|
1556
|
+
ky?: number;
|
|
1557
|
+
tx?: ST_Coordinate;
|
|
1558
|
+
ty?: ST_Coordinate;
|
|
1559
|
+
}
|
|
1560
|
+
export declare const CT_TransformEffect_Attributes: Attributes;
|
|
1561
|
+
export interface CT_FillProperties {
|
|
1562
|
+
noFill?: CT_NoFillProperties;
|
|
1563
|
+
solidFill?: CT_SolidColorFillProperties;
|
|
1564
|
+
gradFill?: CT_GradientFillProperties;
|
|
1565
|
+
blipFill?: CT_BlipFillProperties;
|
|
1566
|
+
pattFill?: CT_PatternFillProperties;
|
|
1567
|
+
grpFill?: CT_GroupFillProperties;
|
|
1568
|
+
}
|
|
1569
|
+
export declare const CT_FillProperties_Attributes: Attributes;
|
|
1570
|
+
export interface CT_FillEffect {
|
|
1571
|
+
noFill?: CT_NoFillProperties;
|
|
1572
|
+
solidFill?: CT_SolidColorFillProperties;
|
|
1573
|
+
gradFill?: CT_GradientFillProperties;
|
|
1574
|
+
blipFill?: CT_BlipFillProperties;
|
|
1575
|
+
pattFill?: CT_PatternFillProperties;
|
|
1576
|
+
grpFill?: CT_GroupFillProperties;
|
|
1577
|
+
}
|
|
1578
|
+
export declare const CT_FillEffect_Attributes: Attributes;
|
|
1579
|
+
export interface CT_EffectReference {
|
|
1580
|
+
ref?: string;
|
|
1581
|
+
}
|
|
1582
|
+
export declare const CT_EffectReference_Attributes: Attributes;
|
|
1583
|
+
export interface CT_BlendEffect {
|
|
1584
|
+
cont?: CT_EffectContainer;
|
|
1585
|
+
blend?: ST_BlendMode;
|
|
1586
|
+
}
|
|
1587
|
+
export declare const CT_BlendEffect_Attributes: Attributes;
|
|
1588
|
+
export interface CT_EffectProperties {
|
|
1589
|
+
effectLst?: CT_EffectList;
|
|
1590
|
+
effectDag?: CT_EffectContainer;
|
|
1591
|
+
}
|
|
1592
|
+
export declare const CT_EffectProperties_Attributes: Attributes;
|
|
1593
|
+
export type ST_ShapeID = string;
|
|
1594
|
+
export interface CT_DefaultShapeDefinition {
|
|
1595
|
+
spPr?: CT_ShapeProperties;
|
|
1596
|
+
bodyPr?: CT_TextBodyProperties;
|
|
1597
|
+
lstStyle?: CT_TextListStyle;
|
|
1598
|
+
style?: CT_ShapeStyle;
|
|
1599
|
+
extLst?: CT_OfficeArtExtensionList;
|
|
1600
|
+
}
|
|
1601
|
+
export declare const CT_DefaultShapeDefinition_Attributes: Attributes;
|
|
1602
|
+
export interface CT_ObjectStyleDefaults {
|
|
1603
|
+
spDef?: CT_DefaultShapeDefinition;
|
|
1604
|
+
lnDef?: CT_DefaultShapeDefinition;
|
|
1605
|
+
txDef?: CT_DefaultShapeDefinition;
|
|
1606
|
+
extLst?: CT_OfficeArtExtensionList;
|
|
1607
|
+
}
|
|
1608
|
+
export declare const CT_ObjectStyleDefaults_Attributes: Attributes;
|
|
1609
|
+
export interface CT_EmptyElement {
|
|
1610
|
+
}
|
|
1611
|
+
export declare const CT_EmptyElement_Attributes: Attributes;
|
|
1612
|
+
export interface CT_ColorMapping {
|
|
1613
|
+
extLst?: CT_OfficeArtExtensionList;
|
|
1614
|
+
bg1?: ST_ColorSchemeIndex;
|
|
1615
|
+
tx1?: ST_ColorSchemeIndex;
|
|
1616
|
+
bg2?: ST_ColorSchemeIndex;
|
|
1617
|
+
tx2?: ST_ColorSchemeIndex;
|
|
1618
|
+
accent1?: ST_ColorSchemeIndex;
|
|
1619
|
+
accent2?: ST_ColorSchemeIndex;
|
|
1620
|
+
accent3?: ST_ColorSchemeIndex;
|
|
1621
|
+
accent4?: ST_ColorSchemeIndex;
|
|
1622
|
+
accent5?: ST_ColorSchemeIndex;
|
|
1623
|
+
accent6?: ST_ColorSchemeIndex;
|
|
1624
|
+
hlink?: ST_ColorSchemeIndex;
|
|
1625
|
+
folHlink?: ST_ColorSchemeIndex;
|
|
1626
|
+
}
|
|
1627
|
+
export declare const CT_ColorMapping_Attributes: Attributes;
|
|
1628
|
+
export interface CT_ColorMappingOverride {
|
|
1629
|
+
masterClrMapping?: CT_EmptyElement[];
|
|
1630
|
+
overrideClrMapping?: CT_ColorMapping[];
|
|
1631
|
+
}
|
|
1632
|
+
export declare const CT_ColorMappingOverride_Attributes: Attributes;
|
|
1633
|
+
export interface CT_ColorSchemeAndMapping {
|
|
1634
|
+
clrScheme?: CT_ColorScheme;
|
|
1635
|
+
clrMap?: CT_ColorMapping;
|
|
1636
|
+
}
|
|
1637
|
+
export declare const CT_ColorSchemeAndMapping_Attributes: Attributes;
|
|
1638
|
+
export interface CT_ColorSchemeList {
|
|
1639
|
+
extraClrScheme?: CT_ColorSchemeAndMapping[];
|
|
1640
|
+
}
|
|
1641
|
+
export declare const CT_ColorSchemeList_Attributes: Attributes;
|
|
1642
|
+
export interface CT_OfficeStyleSheet {
|
|
1643
|
+
themeElements?: CT_BaseStyles;
|
|
1644
|
+
objectDefaults?: CT_ObjectStyleDefaults;
|
|
1645
|
+
extraClrSchemeLst?: CT_ColorSchemeList;
|
|
1646
|
+
custClrLst?: CT_CustomColorList;
|
|
1647
|
+
extLst?: CT_OfficeArtExtensionList;
|
|
1648
|
+
name?: string;
|
|
1649
|
+
}
|
|
1650
|
+
export declare const CT_OfficeStyleSheet_Attributes: Attributes;
|
|
1651
|
+
export interface CT_BaseStylesOverride {
|
|
1652
|
+
clrScheme?: CT_ColorScheme;
|
|
1653
|
+
fontScheme?: CT_FontScheme;
|
|
1654
|
+
fmtScheme?: CT_StyleMatrix;
|
|
1655
|
+
}
|
|
1656
|
+
export declare const CT_BaseStylesOverride_Attributes: Attributes;
|
|
1657
|
+
export interface CT_ClipboardStyleSheet {
|
|
1658
|
+
themeElements?: CT_BaseStyles;
|
|
1659
|
+
clrMap?: CT_ColorMapping;
|
|
1660
|
+
}
|
|
1661
|
+
export declare const CT_ClipboardStyleSheet_Attributes: Attributes;
|
|
1662
|
+
export interface CT_Cell3D {
|
|
1663
|
+
bevel?: CT_Bevel;
|
|
1664
|
+
lightRig?: CT_LightRig;
|
|
1665
|
+
extLst?: CT_OfficeArtExtensionList;
|
|
1666
|
+
prstMaterial?: ST_PresetMaterialType;
|
|
1667
|
+
}
|
|
1668
|
+
export declare const CT_Cell3D_Attributes: Attributes;
|
|
1669
|
+
export interface CT_Headers {
|
|
1670
|
+
header?: string[];
|
|
1671
|
+
}
|
|
1672
|
+
export declare const CT_Headers_Attributes: Attributes;
|
|
1673
|
+
export interface CT_TableCellProperties {
|
|
1674
|
+
lnL?: CT_LineProperties;
|
|
1675
|
+
lnR?: CT_LineProperties;
|
|
1676
|
+
lnT?: CT_LineProperties;
|
|
1677
|
+
lnB?: CT_LineProperties;
|
|
1678
|
+
lnTlToBr?: CT_LineProperties;
|
|
1679
|
+
lnBlToTr?: CT_LineProperties;
|
|
1680
|
+
cell3D?: CT_Cell3D;
|
|
1681
|
+
noFill?: CT_NoFillProperties;
|
|
1682
|
+
solidFill?: CT_SolidColorFillProperties;
|
|
1683
|
+
gradFill?: CT_GradientFillProperties;
|
|
1684
|
+
blipFill?: CT_BlipFillProperties;
|
|
1685
|
+
pattFill?: CT_PatternFillProperties;
|
|
1686
|
+
grpFill?: CT_GroupFillProperties;
|
|
1687
|
+
headers?: CT_Headers[];
|
|
1688
|
+
extLst?: CT_OfficeArtExtensionList;
|
|
1689
|
+
marL?: ST_Coordinate32;
|
|
1690
|
+
marR?: ST_Coordinate32;
|
|
1691
|
+
marT?: ST_Coordinate32;
|
|
1692
|
+
marB?: ST_Coordinate32;
|
|
1693
|
+
vert?: ST_TextVerticalType;
|
|
1694
|
+
anchor?: ST_TextAnchoringType;
|
|
1695
|
+
anchorCtr?: boolean;
|
|
1696
|
+
horzOverflow?: ST_TextHorzOverflowType;
|
|
1697
|
+
}
|
|
1698
|
+
export declare const CT_TableCellProperties_Attributes: Attributes;
|
|
1699
|
+
export interface CT_TableCol {
|
|
1700
|
+
extLst?: CT_OfficeArtExtensionList;
|
|
1701
|
+
w?: ST_Coordinate;
|
|
1702
|
+
}
|
|
1703
|
+
export declare const CT_TableCol_Attributes: Attributes;
|
|
1704
|
+
export interface CT_TableGrid {
|
|
1705
|
+
gridCol?: CT_TableCol[];
|
|
1706
|
+
}
|
|
1707
|
+
export declare const CT_TableGrid_Attributes: Attributes;
|
|
1708
|
+
export interface CT_TableCell {
|
|
1709
|
+
txBody?: CT_TextBody;
|
|
1710
|
+
tcPr?: CT_TableCellProperties;
|
|
1711
|
+
extLst?: CT_OfficeArtExtensionList;
|
|
1712
|
+
rowSpan?: number;
|
|
1713
|
+
gridSpan?: number;
|
|
1714
|
+
hMerge?: boolean;
|
|
1715
|
+
vMerge?: boolean;
|
|
1716
|
+
id?: string;
|
|
1717
|
+
}
|
|
1718
|
+
export declare const CT_TableCell_Attributes: Attributes;
|
|
1719
|
+
export interface CT_TableRow {
|
|
1720
|
+
tc?: CT_TableCell[];
|
|
1721
|
+
extLst?: CT_OfficeArtExtensionList;
|
|
1722
|
+
h?: ST_Coordinate;
|
|
1723
|
+
}
|
|
1724
|
+
export declare const CT_TableRow_Attributes: Attributes;
|
|
1725
|
+
export interface CT_TableBackgroundStyle {
|
|
1726
|
+
fill?: CT_FillProperties;
|
|
1727
|
+
fillRef?: CT_StyleMatrixReference;
|
|
1728
|
+
effect?: CT_EffectProperties;
|
|
1729
|
+
effectRef?: CT_StyleMatrixReference;
|
|
1730
|
+
}
|
|
1731
|
+
export declare const CT_TableBackgroundStyle_Attributes: Attributes;
|
|
1732
|
+
export type ST_OnOffStyleType = 'on' | 'off' | 'def';
|
|
1733
|
+
export interface CT_TableStyleTextStyle {
|
|
1734
|
+
font?: CT_FontCollection;
|
|
1735
|
+
fontRef?: CT_FontReference;
|
|
1736
|
+
scrgbClr?: CT_ScRgbColor;
|
|
1737
|
+
srgbClr?: CT_SRgbColor;
|
|
1738
|
+
hslClr?: CT_HslColor;
|
|
1739
|
+
sysClr?: CT_SystemColor;
|
|
1740
|
+
schemeClr?: CT_SchemeColor;
|
|
1741
|
+
prstClr?: CT_PresetColor;
|
|
1742
|
+
extLst?: CT_OfficeArtExtensionList;
|
|
1743
|
+
b?: ST_OnOffStyleType;
|
|
1744
|
+
i?: ST_OnOffStyleType;
|
|
1745
|
+
}
|
|
1746
|
+
export declare const CT_TableStyleTextStyle_Attributes: Attributes;
|
|
1747
|
+
export interface CT_ThemeableLineStyle {
|
|
1748
|
+
ln?: CT_LineProperties;
|
|
1749
|
+
lnRef?: CT_StyleMatrixReference;
|
|
1750
|
+
}
|
|
1751
|
+
export declare const CT_ThemeableLineStyle_Attributes: Attributes;
|
|
1752
|
+
export interface CT_TableCellBorderStyle {
|
|
1753
|
+
left?: CT_ThemeableLineStyle;
|
|
1754
|
+
right?: CT_ThemeableLineStyle;
|
|
1755
|
+
top?: CT_ThemeableLineStyle;
|
|
1756
|
+
bottom?: CT_ThemeableLineStyle;
|
|
1757
|
+
insideH?: CT_ThemeableLineStyle;
|
|
1758
|
+
insideV?: CT_ThemeableLineStyle;
|
|
1759
|
+
tl2br?: CT_ThemeableLineStyle;
|
|
1760
|
+
tr2bl?: CT_ThemeableLineStyle;
|
|
1761
|
+
extLst?: CT_OfficeArtExtensionList;
|
|
1762
|
+
}
|
|
1763
|
+
export declare const CT_TableCellBorderStyle_Attributes: Attributes;
|
|
1764
|
+
export interface CT_TableStyleCellStyle {
|
|
1765
|
+
tcBdr?: CT_TableCellBorderStyle;
|
|
1766
|
+
fill?: CT_FillProperties;
|
|
1767
|
+
fillRef?: CT_StyleMatrixReference;
|
|
1768
|
+
cell3D?: CT_Cell3D;
|
|
1769
|
+
}
|
|
1770
|
+
export declare const CT_TableStyleCellStyle_Attributes: Attributes;
|
|
1771
|
+
export interface CT_TablePartStyle {
|
|
1772
|
+
tcTxStyle?: CT_TableStyleTextStyle;
|
|
1773
|
+
tcStyle?: CT_TableStyleCellStyle;
|
|
1774
|
+
}
|
|
1775
|
+
export declare const CT_TablePartStyle_Attributes: Attributes;
|
|
1776
|
+
export interface CT_TableStyle {
|
|
1777
|
+
tblBg?: CT_TableBackgroundStyle;
|
|
1778
|
+
wholeTbl?: CT_TablePartStyle;
|
|
1779
|
+
band1H?: CT_TablePartStyle;
|
|
1780
|
+
band2H?: CT_TablePartStyle;
|
|
1781
|
+
band1V?: CT_TablePartStyle;
|
|
1782
|
+
band2V?: CT_TablePartStyle;
|
|
1783
|
+
lastCol?: CT_TablePartStyle;
|
|
1784
|
+
firstCol?: CT_TablePartStyle;
|
|
1785
|
+
lastRow?: CT_TablePartStyle;
|
|
1786
|
+
seCell?: CT_TablePartStyle;
|
|
1787
|
+
swCell?: CT_TablePartStyle;
|
|
1788
|
+
firstRow?: CT_TablePartStyle;
|
|
1789
|
+
neCell?: CT_TablePartStyle;
|
|
1790
|
+
nwCell?: CT_TablePartStyle;
|
|
1791
|
+
extLst?: CT_OfficeArtExtensionList;
|
|
1792
|
+
styleId?: string;
|
|
1793
|
+
styleName?: string;
|
|
1794
|
+
}
|
|
1795
|
+
export declare const CT_TableStyle_Attributes: Attributes;
|
|
1796
|
+
export interface CT_TableProperties {
|
|
1797
|
+
noFill?: CT_NoFillProperties;
|
|
1798
|
+
solidFill?: CT_SolidColorFillProperties;
|
|
1799
|
+
gradFill?: CT_GradientFillProperties;
|
|
1800
|
+
blipFill?: CT_BlipFillProperties;
|
|
1801
|
+
pattFill?: CT_PatternFillProperties;
|
|
1802
|
+
grpFill?: CT_GroupFillProperties;
|
|
1803
|
+
effectLst?: CT_EffectList;
|
|
1804
|
+
effectDag?: CT_EffectContainer;
|
|
1805
|
+
tableStyle?: CT_TableStyle[];
|
|
1806
|
+
tableStyleId?: string[];
|
|
1807
|
+
extLst?: CT_OfficeArtExtensionList;
|
|
1808
|
+
rtl?: boolean;
|
|
1809
|
+
firstRow?: boolean;
|
|
1810
|
+
firstCol?: boolean;
|
|
1811
|
+
lastRow?: boolean;
|
|
1812
|
+
lastCol?: boolean;
|
|
1813
|
+
bandRow?: boolean;
|
|
1814
|
+
bandCol?: boolean;
|
|
1815
|
+
}
|
|
1816
|
+
export declare const CT_TableProperties_Attributes: Attributes;
|
|
1817
|
+
export interface CT_Table {
|
|
1818
|
+
tblPr?: CT_TableProperties;
|
|
1819
|
+
tblGrid?: CT_TableGrid;
|
|
1820
|
+
tr?: CT_TableRow[];
|
|
1821
|
+
}
|
|
1822
|
+
export declare const CT_Table_Attributes: Attributes;
|
|
1823
|
+
export interface CT_TableStyleList {
|
|
1824
|
+
tblStyle?: CT_TableStyle[];
|
|
1825
|
+
def?: string;
|
|
1826
|
+
}
|
|
1827
|
+
export declare const CT_TableStyleList_Attributes: Attributes;
|
|
1828
|
+
export type ST_TextBulletSize = string;
|
|
1829
|
+
export type ST_TextPointUnqualified = number;
|
|
1830
|
+
export type ST_MarkerCoordinate = number;
|
|
1831
|
+
export interface CT_ShapeNonVisual {
|
|
1832
|
+
cNvPr?: CT_NonVisualDrawingProps;
|
|
1833
|
+
cNvSpPr?: CT_NonVisualDrawingShapeProps;
|
|
1834
|
+
}
|
|
1835
|
+
export declare const CT_ShapeNonVisual_Attributes: Attributes;
|
|
1836
|
+
export interface CT_ConnectorNonVisual {
|
|
1837
|
+
cNvPr?: CT_NonVisualDrawingProps;
|
|
1838
|
+
cNvCxnSpPr?: CT_NonVisualConnectorProperties;
|
|
1839
|
+
}
|
|
1840
|
+
export declare const CT_ConnectorNonVisual_Attributes: Attributes;
|
|
1841
|
+
export interface CT_Connector {
|
|
1842
|
+
nvCxnSpPr?: CT_ConnectorNonVisual;
|
|
1843
|
+
spPr?: CT_ShapeProperties;
|
|
1844
|
+
style?: CT_ShapeStyle;
|
|
1845
|
+
macro?: string;
|
|
1846
|
+
fPublished?: boolean;
|
|
1847
|
+
}
|
|
1848
|
+
export declare const CT_Connector_Attributes: Attributes;
|
|
1849
|
+
export interface CT_PictureNonVisual {
|
|
1850
|
+
cNvPr?: CT_NonVisualDrawingProps;
|
|
1851
|
+
cNvPicPr?: CT_NonVisualPictureProperties;
|
|
1852
|
+
}
|
|
1853
|
+
export declare const CT_PictureNonVisual_Attributes: Attributes;
|
|
1854
|
+
export interface CT_Picture {
|
|
1855
|
+
nvPicPr?: CT_PictureNonVisual;
|
|
1856
|
+
blipFill?: CT_BlipFillProperties;
|
|
1857
|
+
spPr?: CT_ShapeProperties;
|
|
1858
|
+
style?: CT_ShapeStyle;
|
|
1859
|
+
macro?: string;
|
|
1860
|
+
fPublished?: boolean;
|
|
1861
|
+
}
|
|
1862
|
+
export declare const CT_Picture_Attributes: Attributes;
|
|
1863
|
+
export interface CT_GraphicFrameNonVisual {
|
|
1864
|
+
cNvPr?: CT_NonVisualDrawingProps;
|
|
1865
|
+
cNvGraphicFramePr?: CT_NonVisualGraphicFrameProperties;
|
|
1866
|
+
}
|
|
1867
|
+
export declare const CT_GraphicFrameNonVisual_Attributes: Attributes;
|
|
1868
|
+
export interface CT_GraphicFrame {
|
|
1869
|
+
nvGraphicFramePr?: CT_GraphicFrameNonVisual;
|
|
1870
|
+
xfrm?: CT_Transform2D;
|
|
1871
|
+
macro?: string;
|
|
1872
|
+
fPublished?: boolean;
|
|
1873
|
+
}
|
|
1874
|
+
export declare const CT_GraphicFrame_Attributes: Attributes;
|
|
1875
|
+
export interface CT_GroupShapeNonVisual {
|
|
1876
|
+
cNvPr?: CT_NonVisualDrawingProps;
|
|
1877
|
+
cNvGrpSpPr?: CT_NonVisualGroupDrawingShapeProps;
|
|
1878
|
+
}
|
|
1879
|
+
export declare const CT_GroupShapeNonVisual_Attributes: Attributes;
|
|
1880
|
+
export type CT_GroupShape = any;
|
|
1881
|
+
export declare const CT_GroupShape_Attributes: Attributes;
|
|
1882
|
+
export type ST_Shape = 'cone' | 'coneToMax' | 'box' | 'cylinder' | 'pyramid' | 'pyramidToMax';
|
|
1883
|
+
export interface CT_Shape {
|
|
1884
|
+
val?: ST_Shape;
|
|
1885
|
+
}
|
|
1886
|
+
export declare const CT_Shape_Attributes: Attributes;
|
|
1887
|
+
export type ST_MarkerStyle = 'circle' | 'dash' | 'diamond' | 'dot' | 'none' | 'picture' | 'plus' | 'square' | 'star' | 'triangle' | 'x' | 'auto';
|
|
1888
|
+
export interface CT_MarkerStyle {
|
|
1889
|
+
val?: ST_MarkerStyle;
|
|
1890
|
+
}
|
|
1891
|
+
export declare const CT_MarkerStyle_Attributes: Attributes;
|
|
1892
|
+
export type ST_MarkerSize = number;
|
|
1893
|
+
export interface CT_MarkerSize {
|
|
1894
|
+
val?: number;
|
|
1895
|
+
}
|
|
1896
|
+
export declare const CT_MarkerSize_Attributes: Attributes;
|
|
1897
|
+
export interface CT_Marker {
|
|
1898
|
+
symbol?: CT_MarkerStyle;
|
|
1899
|
+
size?: CT_MarkerSize;
|
|
1900
|
+
spPr?: CT_ShapeProperties;
|
|
1901
|
+
extLst?: CT_ExtensionList;
|
|
1902
|
+
}
|
|
1903
|
+
export declare const CT_Marker_Attributes: Attributes;
|
|
1904
|
+
export interface CT_RelSizeAnchor {
|
|
1905
|
+
from?: CT_Marker[];
|
|
1906
|
+
to?: CT_Marker[];
|
|
1907
|
+
sp?: CT_Shape[];
|
|
1908
|
+
grpSp?: CT_GroupShape[];
|
|
1909
|
+
graphicFrame?: CT_GraphicFrame[];
|
|
1910
|
+
cxnSp?: CT_Connector[];
|
|
1911
|
+
pic?: CT_Picture[];
|
|
1912
|
+
}
|
|
1913
|
+
export declare const CT_RelSizeAnchor_Attributes: Attributes;
|
|
1914
|
+
export interface CT_AbsSizeAnchor {
|
|
1915
|
+
from?: CT_Marker[];
|
|
1916
|
+
ext?: CT_PositiveSize2D[];
|
|
1917
|
+
sp?: CT_Shape[];
|
|
1918
|
+
grpSp?: CT_GroupShape[];
|
|
1919
|
+
graphicFrame?: CT_GraphicFrame[];
|
|
1920
|
+
cxnSp?: CT_Connector[];
|
|
1921
|
+
pic?: CT_Picture[];
|
|
1922
|
+
}
|
|
1923
|
+
export declare const CT_AbsSizeAnchor_Attributes: Attributes;
|
|
1924
|
+
export interface CT_Drawing {
|
|
1925
|
+
relSizeAnchor?: CT_RelSizeAnchor[];
|
|
1926
|
+
absSizeAnchor?: CT_AbsSizeAnchor[];
|
|
1927
|
+
}
|
|
1928
|
+
export declare const CT_Drawing_Attributes: Attributes;
|
|
1929
|
+
export interface CT_Double {
|
|
1930
|
+
val?: number;
|
|
1931
|
+
}
|
|
1932
|
+
export declare const CT_Double_Attributes: Attributes;
|
|
1933
|
+
export interface CT_UnsignedInt {
|
|
1934
|
+
val?: number;
|
|
1935
|
+
}
|
|
1936
|
+
export declare const CT_UnsignedInt_Attributes: Attributes;
|
|
1937
|
+
export interface CT_RelId {
|
|
1938
|
+
'r:id'?: string;
|
|
1939
|
+
}
|
|
1940
|
+
export declare const CT_RelId_Attributes: Attributes;
|
|
1941
|
+
export interface CT_NumVal {
|
|
1942
|
+
v?: string;
|
|
1943
|
+
idx?: number;
|
|
1944
|
+
formatCode?: string;
|
|
1945
|
+
}
|
|
1946
|
+
export declare const CT_NumVal_Attributes: Attributes;
|
|
1947
|
+
export interface CT_NumData {
|
|
1948
|
+
formatCode?: string;
|
|
1949
|
+
ptCount?: CT_UnsignedInt;
|
|
1950
|
+
pt?: CT_NumVal[];
|
|
1951
|
+
extLst?: CT_ExtensionList;
|
|
1952
|
+
}
|
|
1953
|
+
export declare const CT_NumData_Attributes: Attributes;
|
|
1954
|
+
export interface CT_NumRef {
|
|
1955
|
+
f?: string;
|
|
1956
|
+
numCache?: CT_NumData;
|
|
1957
|
+
extLst?: CT_ExtensionList;
|
|
1958
|
+
}
|
|
1959
|
+
export declare const CT_NumRef_Attributes: Attributes;
|
|
1960
|
+
export interface CT_NumDataSource {
|
|
1961
|
+
numRef?: CT_NumRef;
|
|
1962
|
+
numLit?: CT_NumData;
|
|
1963
|
+
}
|
|
1964
|
+
export declare const CT_NumDataSource_Attributes: Attributes;
|
|
1965
|
+
export interface CT_StrVal {
|
|
1966
|
+
v?: string;
|
|
1967
|
+
idx?: number;
|
|
1968
|
+
}
|
|
1969
|
+
export declare const CT_StrVal_Attributes: Attributes;
|
|
1970
|
+
export interface CT_StrData {
|
|
1971
|
+
ptCount?: CT_UnsignedInt;
|
|
1972
|
+
pt?: CT_StrVal[];
|
|
1973
|
+
extLst?: CT_ExtensionList;
|
|
1974
|
+
}
|
|
1975
|
+
export declare const CT_StrData_Attributes: Attributes;
|
|
1976
|
+
export interface CT_StrRef {
|
|
1977
|
+
f?: string;
|
|
1978
|
+
strCache?: CT_StrData;
|
|
1979
|
+
extLst?: CT_ExtensionList;
|
|
1980
|
+
}
|
|
1981
|
+
export declare const CT_StrRef_Attributes: Attributes;
|
|
1982
|
+
export interface CT_Tx {
|
|
1983
|
+
strRef?: CT_StrRef;
|
|
1984
|
+
rich?: CT_TextBody;
|
|
1985
|
+
}
|
|
1986
|
+
export declare const CT_Tx_Attributes: Attributes;
|
|
1987
|
+
export interface CT_TextLanguageID {
|
|
1988
|
+
val?: string;
|
|
1989
|
+
}
|
|
1990
|
+
export declare const CT_TextLanguageID_Attributes: Attributes;
|
|
1991
|
+
export interface CT_Lvl {
|
|
1992
|
+
pt?: CT_StrVal[];
|
|
1993
|
+
}
|
|
1994
|
+
export declare const CT_Lvl_Attributes: Attributes;
|
|
1995
|
+
export interface CT_MultiLvlStrData {
|
|
1996
|
+
ptCount?: CT_UnsignedInt;
|
|
1997
|
+
lvl?: CT_Lvl[];
|
|
1998
|
+
extLst?: CT_ExtensionList;
|
|
1999
|
+
}
|
|
2000
|
+
export declare const CT_MultiLvlStrData_Attributes: Attributes;
|
|
2001
|
+
export interface CT_MultiLvlStrRef {
|
|
2002
|
+
f?: string;
|
|
2003
|
+
multiLvlStrCache?: CT_MultiLvlStrData;
|
|
2004
|
+
extLst?: CT_ExtensionList;
|
|
2005
|
+
}
|
|
2006
|
+
export declare const CT_MultiLvlStrRef_Attributes: Attributes;
|
|
2007
|
+
export interface CT_AxDataSource {
|
|
2008
|
+
multiLvlStrRef?: CT_MultiLvlStrRef;
|
|
2009
|
+
numRef?: CT_NumRef;
|
|
2010
|
+
numLit?: CT_NumData;
|
|
2011
|
+
strRef?: CT_StrRef;
|
|
2012
|
+
strLit?: CT_StrData;
|
|
2013
|
+
}
|
|
2014
|
+
export declare const CT_AxDataSource_Attributes: Attributes;
|
|
2015
|
+
export interface CT_SerTx {
|
|
2016
|
+
strRef?: CT_StrRef;
|
|
2017
|
+
v?: string;
|
|
2018
|
+
}
|
|
2019
|
+
export declare const CT_SerTx_Attributes: Attributes;
|
|
2020
|
+
export type ST_LayoutTarget = 'inner' | 'outer';
|
|
2021
|
+
export interface CT_LayoutTarget {
|
|
2022
|
+
val?: ST_LayoutTarget;
|
|
2023
|
+
}
|
|
2024
|
+
export declare const CT_LayoutTarget_Attributes: Attributes;
|
|
2025
|
+
export type ST_LayoutMode = 'edge' | 'factor';
|
|
2026
|
+
export interface CT_LayoutMode {
|
|
2027
|
+
val?: ST_LayoutMode;
|
|
2028
|
+
}
|
|
2029
|
+
export declare const CT_LayoutMode_Attributes: Attributes;
|
|
2030
|
+
export interface CT_ManualLayout {
|
|
2031
|
+
layoutTarget?: CT_LayoutTarget;
|
|
2032
|
+
xMode?: CT_LayoutMode;
|
|
2033
|
+
yMode?: CT_LayoutMode;
|
|
2034
|
+
wMode?: CT_LayoutMode;
|
|
2035
|
+
hMode?: CT_LayoutMode;
|
|
2036
|
+
x?: CT_Double;
|
|
2037
|
+
y?: CT_Double;
|
|
2038
|
+
w?: CT_Double;
|
|
2039
|
+
h?: CT_Double;
|
|
2040
|
+
extLst?: CT_ExtensionList;
|
|
2041
|
+
}
|
|
2042
|
+
export declare const CT_ManualLayout_Attributes: Attributes;
|
|
2043
|
+
export interface CT_Layout {
|
|
2044
|
+
manualLayout?: CT_ManualLayout;
|
|
2045
|
+
extLst?: CT_ExtensionList;
|
|
2046
|
+
}
|
|
2047
|
+
export declare const CT_Layout_Attributes: Attributes;
|
|
2048
|
+
export interface CT_Title {
|
|
2049
|
+
tx?: CT_Tx;
|
|
2050
|
+
layout?: CT_Layout;
|
|
2051
|
+
overlay?: CT_Boolean;
|
|
2052
|
+
spPr?: CT_ShapeProperties;
|
|
2053
|
+
txPr?: CT_TextBody;
|
|
2054
|
+
extLst?: CT_ExtensionList;
|
|
2055
|
+
}
|
|
2056
|
+
export declare const CT_Title_Attributes: Attributes;
|
|
2057
|
+
export type ST_RotX = number;
|
|
2058
|
+
export interface CT_RotX {
|
|
2059
|
+
val?: number;
|
|
2060
|
+
}
|
|
2061
|
+
export declare const CT_RotX_Attributes: Attributes;
|
|
2062
|
+
export type ST_HPercent = string;
|
|
2063
|
+
export type ST_HPercentWithSymbol = string;
|
|
2064
|
+
export interface CT_HPercent {
|
|
2065
|
+
val?: string;
|
|
2066
|
+
}
|
|
2067
|
+
export declare const CT_HPercent_Attributes: Attributes;
|
|
2068
|
+
export type ST_RotY = number;
|
|
2069
|
+
export interface CT_RotY {
|
|
2070
|
+
val?: number;
|
|
2071
|
+
}
|
|
2072
|
+
export declare const CT_RotY_Attributes: Attributes;
|
|
2073
|
+
export type ST_DepthPercent = string;
|
|
2074
|
+
export type ST_DepthPercentWithSymbol = string;
|
|
2075
|
+
export interface CT_DepthPercent {
|
|
2076
|
+
val?: string;
|
|
2077
|
+
}
|
|
2078
|
+
export declare const CT_DepthPercent_Attributes: Attributes;
|
|
2079
|
+
export type ST_Perspective = number;
|
|
2080
|
+
export interface CT_Perspective {
|
|
2081
|
+
val?: number;
|
|
2082
|
+
}
|
|
2083
|
+
export declare const CT_Perspective_Attributes: Attributes;
|
|
2084
|
+
export interface CT_View3D {
|
|
2085
|
+
rotX?: CT_RotX;
|
|
2086
|
+
hPercent?: CT_HPercent;
|
|
2087
|
+
rotY?: CT_RotY;
|
|
2088
|
+
depthPercent?: CT_DepthPercent;
|
|
2089
|
+
rAngAx?: CT_Boolean;
|
|
2090
|
+
perspective?: CT_Perspective;
|
|
2091
|
+
extLst?: CT_ExtensionList;
|
|
2092
|
+
}
|
|
2093
|
+
export declare const CT_View3D_Attributes: Attributes;
|
|
2094
|
+
export type ST_Thickness = string;
|
|
2095
|
+
export interface CT_Thickness {
|
|
2096
|
+
val?: string;
|
|
2097
|
+
}
|
|
2098
|
+
export declare const CT_Thickness_Attributes: Attributes;
|
|
2099
|
+
export type ST_PictureFormat = 'stretch' | 'stack' | 'stackScale';
|
|
2100
|
+
export interface CT_PictureFormat {
|
|
2101
|
+
val?: ST_PictureFormat;
|
|
2102
|
+
}
|
|
2103
|
+
export declare const CT_PictureFormat_Attributes: Attributes;
|
|
2104
|
+
export type ST_PictureStackUnit = number;
|
|
2105
|
+
export interface CT_PictureStackUnit {
|
|
2106
|
+
val?: number;
|
|
2107
|
+
}
|
|
2108
|
+
export declare const CT_PictureStackUnit_Attributes: Attributes;
|
|
2109
|
+
export interface CT_PictureOptions {
|
|
2110
|
+
applyToFront?: CT_Boolean;
|
|
2111
|
+
applyToSides?: CT_Boolean;
|
|
2112
|
+
applyToEnd?: CT_Boolean;
|
|
2113
|
+
pictureFormat?: CT_PictureFormat;
|
|
2114
|
+
pictureStackUnit?: CT_PictureStackUnit;
|
|
2115
|
+
}
|
|
2116
|
+
export declare const CT_PictureOptions_Attributes: Attributes;
|
|
2117
|
+
export interface CT_Surface {
|
|
2118
|
+
thickness?: CT_Thickness;
|
|
2119
|
+
spPr?: CT_ShapeProperties;
|
|
2120
|
+
pictureOptions?: CT_PictureOptions;
|
|
2121
|
+
extLst?: CT_ExtensionList;
|
|
2122
|
+
}
|
|
2123
|
+
export declare const CT_Surface_Attributes: Attributes;
|
|
2124
|
+
export type ST_ThicknessPercent = string;
|
|
2125
|
+
export interface CT_DTable {
|
|
2126
|
+
showHorzBorder?: CT_Boolean;
|
|
2127
|
+
showVertBorder?: CT_Boolean;
|
|
2128
|
+
showOutline?: CT_Boolean;
|
|
2129
|
+
showKeys?: CT_Boolean;
|
|
2130
|
+
spPr?: CT_ShapeProperties;
|
|
2131
|
+
txPr?: CT_TextBody;
|
|
2132
|
+
extLst?: CT_ExtensionList;
|
|
2133
|
+
}
|
|
2134
|
+
export declare const CT_DTable_Attributes: Attributes;
|
|
2135
|
+
export type ST_GapAmount = string;
|
|
2136
|
+
export type ST_GapAmountPercent = string;
|
|
2137
|
+
export interface CT_GapAmount {
|
|
2138
|
+
val?: string;
|
|
2139
|
+
}
|
|
2140
|
+
export declare const CT_GapAmount_Attributes: Attributes;
|
|
2141
|
+
export type ST_Overlap = string;
|
|
2142
|
+
export type ST_OverlapPercent = string;
|
|
2143
|
+
export interface CT_Overlap {
|
|
2144
|
+
val?: string;
|
|
2145
|
+
}
|
|
2146
|
+
export declare const CT_Overlap_Attributes: Attributes;
|
|
2147
|
+
export type ST_BubbleScale = string;
|
|
2148
|
+
export type ST_BubbleScalePercent = string;
|
|
2149
|
+
export interface CT_BubbleScale {
|
|
2150
|
+
val?: string;
|
|
2151
|
+
}
|
|
2152
|
+
export declare const CT_BubbleScale_Attributes: Attributes;
|
|
2153
|
+
export type ST_SizeRepresents = 'area' | 'w';
|
|
2154
|
+
export interface CT_SizeRepresents {
|
|
2155
|
+
val?: ST_SizeRepresents;
|
|
2156
|
+
}
|
|
2157
|
+
export declare const CT_SizeRepresents_Attributes: Attributes;
|
|
2158
|
+
export type ST_FirstSliceAng = number;
|
|
2159
|
+
export interface CT_FirstSliceAng {
|
|
2160
|
+
val?: number;
|
|
2161
|
+
}
|
|
2162
|
+
export declare const CT_FirstSliceAng_Attributes: Attributes;
|
|
2163
|
+
export type ST_HoleSize = string;
|
|
2164
|
+
export type ST_HoleSizePercent = string;
|
|
2165
|
+
export interface CT_HoleSize {
|
|
2166
|
+
val?: string;
|
|
2167
|
+
}
|
|
2168
|
+
export declare const CT_HoleSize_Attributes: Attributes;
|
|
2169
|
+
export type ST_SplitType = 'auto' | 'cust' | 'percent' | 'pos' | 'val';
|
|
2170
|
+
export interface CT_SplitType {
|
|
2171
|
+
val?: ST_SplitType;
|
|
2172
|
+
}
|
|
2173
|
+
export declare const CT_SplitType_Attributes: Attributes;
|
|
2174
|
+
export interface CT_CustSplit {
|
|
2175
|
+
secondPiePt?: CT_UnsignedInt[];
|
|
2176
|
+
}
|
|
2177
|
+
export declare const CT_CustSplit_Attributes: Attributes;
|
|
2178
|
+
export type ST_SecondPieSize = string;
|
|
2179
|
+
export type ST_SecondPieSizePercent = string;
|
|
2180
|
+
export interface CT_SecondPieSize {
|
|
2181
|
+
val?: string;
|
|
2182
|
+
}
|
|
2183
|
+
export declare const CT_SecondPieSize_Attributes: Attributes;
|
|
2184
|
+
export interface CT_NumFmt {
|
|
2185
|
+
formatCode?: string;
|
|
2186
|
+
sourceLinked?: boolean;
|
|
2187
|
+
}
|
|
2188
|
+
export declare const CT_NumFmt_Attributes: Attributes;
|
|
2189
|
+
export type ST_LblAlgn = 'ctr' | 'l' | 'r';
|
|
2190
|
+
export interface CT_LblAlgn {
|
|
2191
|
+
val?: ST_LblAlgn;
|
|
2192
|
+
}
|
|
2193
|
+
export declare const CT_LblAlgn_Attributes: Attributes;
|
|
2194
|
+
export type ST_DLblPos = 'bestFit' | 'b' | 'ctr' | 'inBase' | 'inEnd' | 'l' | 'outEnd' | 'r' | 't';
|
|
2195
|
+
export interface CT_DLblPos {
|
|
2196
|
+
val?: ST_DLblPos;
|
|
2197
|
+
}
|
|
2198
|
+
export declare const CT_DLblPos_Attributes: Attributes;
|
|
2199
|
+
export interface CT_DLbl {
|
|
2200
|
+
idx?: CT_UnsignedInt;
|
|
2201
|
+
delete?: CT_Boolean;
|
|
2202
|
+
extLst?: CT_ExtensionList;
|
|
2203
|
+
}
|
|
2204
|
+
export declare const CT_DLbl_Attributes: Attributes;
|
|
2205
|
+
export interface CT_DLbls {
|
|
2206
|
+
dLbl?: CT_DLbl[];
|
|
2207
|
+
delete?: CT_Boolean;
|
|
2208
|
+
extLst?: CT_ExtensionList;
|
|
2209
|
+
}
|
|
2210
|
+
export declare const CT_DLbls_Attributes: Attributes;
|
|
2211
|
+
export interface CT_DPt {
|
|
2212
|
+
idx?: CT_UnsignedInt;
|
|
2213
|
+
invertIfNegative?: CT_Boolean;
|
|
2214
|
+
marker?: CT_Marker;
|
|
2215
|
+
bubble3D?: CT_Boolean;
|
|
2216
|
+
explosion?: CT_UnsignedInt;
|
|
2217
|
+
spPr?: CT_ShapeProperties;
|
|
2218
|
+
pictureOptions?: CT_PictureOptions;
|
|
2219
|
+
extLst?: CT_ExtensionList;
|
|
2220
|
+
}
|
|
2221
|
+
export declare const CT_DPt_Attributes: Attributes;
|
|
2222
|
+
export type ST_TrendlineType = 'exp' | 'linear' | 'log' | 'movingAvg' | 'poly' | 'power';
|
|
2223
|
+
export interface CT_TrendlineType {
|
|
2224
|
+
val?: ST_TrendlineType;
|
|
2225
|
+
}
|
|
2226
|
+
export declare const CT_TrendlineType_Attributes: Attributes;
|
|
2227
|
+
export type ST_Order = number;
|
|
2228
|
+
export interface CT_Order {
|
|
2229
|
+
val?: number;
|
|
2230
|
+
}
|
|
2231
|
+
export declare const CT_Order_Attributes: Attributes;
|
|
2232
|
+
export type ST_Period = number;
|
|
2233
|
+
export interface CT_Period {
|
|
2234
|
+
val?: number;
|
|
2235
|
+
}
|
|
2236
|
+
export declare const CT_Period_Attributes: Attributes;
|
|
2237
|
+
export interface CT_TrendlineLbl {
|
|
2238
|
+
layout?: CT_Layout;
|
|
2239
|
+
tx?: CT_Tx;
|
|
2240
|
+
numFmt?: CT_NumFmt;
|
|
2241
|
+
spPr?: CT_ShapeProperties;
|
|
2242
|
+
txPr?: CT_TextBody;
|
|
2243
|
+
extLst?: CT_ExtensionList;
|
|
2244
|
+
}
|
|
2245
|
+
export declare const CT_TrendlineLbl_Attributes: Attributes;
|
|
2246
|
+
export interface CT_Trendline {
|
|
2247
|
+
name?: string;
|
|
2248
|
+
spPr?: CT_ShapeProperties;
|
|
2249
|
+
trendlineType?: CT_TrendlineType;
|
|
2250
|
+
order?: CT_Order;
|
|
2251
|
+
period?: CT_Period;
|
|
2252
|
+
forward?: CT_Double;
|
|
2253
|
+
backward?: CT_Double;
|
|
2254
|
+
intercept?: CT_Double;
|
|
2255
|
+
dispRSqr?: CT_Boolean;
|
|
2256
|
+
dispEq?: CT_Boolean;
|
|
2257
|
+
trendlineLbl?: CT_TrendlineLbl;
|
|
2258
|
+
extLst?: CT_ExtensionList;
|
|
2259
|
+
}
|
|
2260
|
+
export declare const CT_Trendline_Attributes: Attributes;
|
|
2261
|
+
export type ST_ErrDir = 'x' | 'y';
|
|
2262
|
+
export interface CT_ErrDir {
|
|
2263
|
+
val?: ST_ErrDir;
|
|
2264
|
+
}
|
|
2265
|
+
export declare const CT_ErrDir_Attributes: Attributes;
|
|
2266
|
+
export type ST_ErrBarType = 'both' | 'minus' | 'plus';
|
|
2267
|
+
export interface CT_ErrBarType {
|
|
2268
|
+
val?: ST_ErrBarType;
|
|
2269
|
+
}
|
|
2270
|
+
export declare const CT_ErrBarType_Attributes: Attributes;
|
|
2271
|
+
export type ST_ErrValType = 'cust' | 'fixedVal' | 'percentage' | 'stdDev' | 'stdErr';
|
|
2272
|
+
export interface CT_ErrValType {
|
|
2273
|
+
val?: ST_ErrValType;
|
|
2274
|
+
}
|
|
2275
|
+
export declare const CT_ErrValType_Attributes: Attributes;
|
|
2276
|
+
export interface CT_ErrBars {
|
|
2277
|
+
errDir?: CT_ErrDir;
|
|
2278
|
+
errBarType?: CT_ErrBarType;
|
|
2279
|
+
errValType?: CT_ErrValType;
|
|
2280
|
+
noEndCap?: CT_Boolean;
|
|
2281
|
+
plus?: CT_NumDataSource;
|
|
2282
|
+
minus?: CT_NumDataSource;
|
|
2283
|
+
val?: CT_Double;
|
|
2284
|
+
spPr?: CT_ShapeProperties;
|
|
2285
|
+
extLst?: CT_ExtensionList;
|
|
2286
|
+
}
|
|
2287
|
+
export declare const CT_ErrBars_Attributes: Attributes;
|
|
2288
|
+
export interface CT_UpDownBar {
|
|
2289
|
+
spPr?: CT_ShapeProperties;
|
|
2290
|
+
}
|
|
2291
|
+
export declare const CT_UpDownBar_Attributes: Attributes;
|
|
2292
|
+
export interface CT_UpDownBars {
|
|
2293
|
+
gapWidth?: CT_GapAmount;
|
|
2294
|
+
upBars?: CT_UpDownBar;
|
|
2295
|
+
downBars?: CT_UpDownBar;
|
|
2296
|
+
extLst?: CT_ExtensionList;
|
|
2297
|
+
}
|
|
2298
|
+
export declare const CT_UpDownBars_Attributes: Attributes;
|
|
2299
|
+
export interface CT_LineSer {
|
|
2300
|
+
idx?: CT_UnsignedInt;
|
|
2301
|
+
order?: CT_UnsignedInt;
|
|
2302
|
+
tx?: CT_SerTx;
|
|
2303
|
+
spPr?: CT_ShapeProperties;
|
|
2304
|
+
marker?: CT_Marker;
|
|
2305
|
+
dPt?: CT_DPt[];
|
|
2306
|
+
dLbls?: CT_DLbls;
|
|
2307
|
+
trendline?: CT_Trendline[];
|
|
2308
|
+
errBars?: CT_ErrBars;
|
|
2309
|
+
cat?: CT_AxDataSource;
|
|
2310
|
+
val?: CT_NumDataSource;
|
|
2311
|
+
smooth?: CT_Boolean;
|
|
2312
|
+
extLst?: CT_ExtensionList;
|
|
2313
|
+
}
|
|
2314
|
+
export declare const CT_LineSer_Attributes: Attributes;
|
|
2315
|
+
export interface CT_ScatterSer {
|
|
2316
|
+
idx?: CT_UnsignedInt;
|
|
2317
|
+
order?: CT_UnsignedInt;
|
|
2318
|
+
tx?: CT_SerTx;
|
|
2319
|
+
spPr?: CT_ShapeProperties;
|
|
2320
|
+
marker?: CT_Marker;
|
|
2321
|
+
dPt?: CT_DPt[];
|
|
2322
|
+
dLbls?: CT_DLbls;
|
|
2323
|
+
trendline?: CT_Trendline[];
|
|
2324
|
+
errBars?: CT_ErrBars[];
|
|
2325
|
+
xVal?: CT_AxDataSource;
|
|
2326
|
+
yVal?: CT_NumDataSource;
|
|
2327
|
+
smooth?: CT_Boolean;
|
|
2328
|
+
extLst?: CT_ExtensionList;
|
|
2329
|
+
}
|
|
2330
|
+
export declare const CT_ScatterSer_Attributes: Attributes;
|
|
2331
|
+
export interface CT_RadarSer {
|
|
2332
|
+
idx?: CT_UnsignedInt;
|
|
2333
|
+
order?: CT_UnsignedInt;
|
|
2334
|
+
tx?: CT_SerTx;
|
|
2335
|
+
spPr?: CT_ShapeProperties;
|
|
2336
|
+
marker?: CT_Marker;
|
|
2337
|
+
dPt?: CT_DPt[];
|
|
2338
|
+
dLbls?: CT_DLbls;
|
|
2339
|
+
cat?: CT_AxDataSource;
|
|
2340
|
+
val?: CT_NumDataSource;
|
|
2341
|
+
extLst?: CT_ExtensionList;
|
|
2342
|
+
}
|
|
2343
|
+
export declare const CT_RadarSer_Attributes: Attributes;
|
|
2344
|
+
export interface CT_BarSer {
|
|
2345
|
+
idx?: CT_UnsignedInt;
|
|
2346
|
+
order?: CT_UnsignedInt;
|
|
2347
|
+
tx?: CT_SerTx;
|
|
2348
|
+
spPr?: CT_ShapeProperties;
|
|
2349
|
+
invertIfNegative?: CT_Boolean;
|
|
2350
|
+
pictureOptions?: CT_PictureOptions;
|
|
2351
|
+
dPt?: CT_DPt[];
|
|
2352
|
+
dLbls?: CT_DLbls;
|
|
2353
|
+
trendline?: CT_Trendline[];
|
|
2354
|
+
errBars?: CT_ErrBars;
|
|
2355
|
+
cat?: CT_AxDataSource;
|
|
2356
|
+
val?: CT_NumDataSource;
|
|
2357
|
+
shape?: CT_Shape;
|
|
2358
|
+
extLst?: CT_ExtensionList;
|
|
2359
|
+
}
|
|
2360
|
+
export declare const CT_BarSer_Attributes: Attributes;
|
|
2361
|
+
export interface CT_AreaSer {
|
|
2362
|
+
idx?: CT_UnsignedInt;
|
|
2363
|
+
order?: CT_UnsignedInt;
|
|
2364
|
+
tx?: CT_SerTx;
|
|
2365
|
+
spPr?: CT_ShapeProperties;
|
|
2366
|
+
pictureOptions?: CT_PictureOptions;
|
|
2367
|
+
dPt?: CT_DPt[];
|
|
2368
|
+
dLbls?: CT_DLbls;
|
|
2369
|
+
trendline?: CT_Trendline[];
|
|
2370
|
+
errBars?: CT_ErrBars[];
|
|
2371
|
+
cat?: CT_AxDataSource;
|
|
2372
|
+
val?: CT_NumDataSource;
|
|
2373
|
+
extLst?: CT_ExtensionList;
|
|
2374
|
+
}
|
|
2375
|
+
export declare const CT_AreaSer_Attributes: Attributes;
|
|
2376
|
+
export interface CT_PieSer {
|
|
2377
|
+
idx?: CT_UnsignedInt;
|
|
2378
|
+
order?: CT_UnsignedInt;
|
|
2379
|
+
tx?: CT_SerTx;
|
|
2380
|
+
spPr?: CT_ShapeProperties;
|
|
2381
|
+
explosion?: CT_UnsignedInt;
|
|
2382
|
+
dPt?: CT_DPt[];
|
|
2383
|
+
dLbls?: CT_DLbls;
|
|
2384
|
+
cat?: CT_AxDataSource;
|
|
2385
|
+
val?: CT_NumDataSource;
|
|
2386
|
+
extLst?: CT_ExtensionList;
|
|
2387
|
+
}
|
|
2388
|
+
export declare const CT_PieSer_Attributes: Attributes;
|
|
2389
|
+
export interface CT_BubbleSer {
|
|
2390
|
+
idx?: CT_UnsignedInt;
|
|
2391
|
+
order?: CT_UnsignedInt;
|
|
2392
|
+
tx?: CT_SerTx;
|
|
2393
|
+
spPr?: CT_ShapeProperties;
|
|
2394
|
+
invertIfNegative?: CT_Boolean;
|
|
2395
|
+
dPt?: CT_DPt[];
|
|
2396
|
+
dLbls?: CT_DLbls;
|
|
2397
|
+
trendline?: CT_Trendline[];
|
|
2398
|
+
errBars?: CT_ErrBars[];
|
|
2399
|
+
xVal?: CT_AxDataSource;
|
|
2400
|
+
yVal?: CT_NumDataSource;
|
|
2401
|
+
bubbleSize?: CT_NumDataSource;
|
|
2402
|
+
bubble3D?: CT_Boolean;
|
|
2403
|
+
extLst?: CT_ExtensionList;
|
|
2404
|
+
}
|
|
2405
|
+
export declare const CT_BubbleSer_Attributes: Attributes;
|
|
2406
|
+
export interface CT_SurfaceSer {
|
|
2407
|
+
idx?: CT_UnsignedInt;
|
|
2408
|
+
order?: CT_UnsignedInt;
|
|
2409
|
+
tx?: CT_SerTx;
|
|
2410
|
+
spPr?: CT_ShapeProperties;
|
|
2411
|
+
cat?: CT_AxDataSource;
|
|
2412
|
+
val?: CT_NumDataSource;
|
|
2413
|
+
extLst?: CT_ExtensionList;
|
|
2414
|
+
}
|
|
2415
|
+
export declare const CT_SurfaceSer_Attributes: Attributes;
|
|
2416
|
+
export type ST_Grouping = 'percentStacked' | 'standard' | 'stacked';
|
|
2417
|
+
export interface CT_Grouping {
|
|
2418
|
+
val?: ST_Grouping;
|
|
2419
|
+
}
|
|
2420
|
+
export declare const CT_Grouping_Attributes: Attributes;
|
|
2421
|
+
export interface CT_ChartLines {
|
|
2422
|
+
spPr?: CT_ShapeProperties;
|
|
2423
|
+
}
|
|
2424
|
+
export declare const CT_ChartLines_Attributes: Attributes;
|
|
2425
|
+
export interface CT_LineChart {
|
|
2426
|
+
grouping?: CT_Grouping;
|
|
2427
|
+
varyColors?: CT_Boolean;
|
|
2428
|
+
ser?: CT_LineSer[];
|
|
2429
|
+
dLbls?: CT_DLbls;
|
|
2430
|
+
dropLines?: CT_ChartLines;
|
|
2431
|
+
hiLowLines?: CT_ChartLines;
|
|
2432
|
+
upDownBars?: CT_UpDownBars;
|
|
2433
|
+
marker?: CT_Boolean;
|
|
2434
|
+
smooth?: CT_Boolean;
|
|
2435
|
+
axId?: CT_UnsignedInt[];
|
|
2436
|
+
extLst?: CT_ExtensionList;
|
|
2437
|
+
}
|
|
2438
|
+
export declare const CT_LineChart_Attributes: Attributes;
|
|
2439
|
+
export interface CT_Line3DChart {
|
|
2440
|
+
grouping?: CT_Grouping;
|
|
2441
|
+
varyColors?: CT_Boolean;
|
|
2442
|
+
ser?: CT_LineSer[];
|
|
2443
|
+
dLbls?: CT_DLbls;
|
|
2444
|
+
dropLines?: CT_ChartLines;
|
|
2445
|
+
gapDepth?: CT_GapAmount;
|
|
2446
|
+
axId?: CT_UnsignedInt[];
|
|
2447
|
+
extLst?: CT_ExtensionList;
|
|
2448
|
+
}
|
|
2449
|
+
export declare const CT_Line3DChart_Attributes: Attributes;
|
|
2450
|
+
export interface CT_StockChart {
|
|
2451
|
+
ser?: CT_LineSer[];
|
|
2452
|
+
dLbls?: CT_DLbls;
|
|
2453
|
+
dropLines?: CT_ChartLines;
|
|
2454
|
+
hiLowLines?: CT_ChartLines;
|
|
2455
|
+
upDownBars?: CT_UpDownBars;
|
|
2456
|
+
axId?: CT_UnsignedInt[];
|
|
2457
|
+
extLst?: CT_ExtensionList;
|
|
2458
|
+
}
|
|
2459
|
+
export declare const CT_StockChart_Attributes: Attributes;
|
|
2460
|
+
export type ST_ScatterStyle = 'none' | 'line' | 'lineMarker' | 'marker' | 'smooth' | 'smoothMarker';
|
|
2461
|
+
export interface CT_ScatterStyle {
|
|
2462
|
+
val?: ST_ScatterStyle;
|
|
2463
|
+
}
|
|
2464
|
+
export declare const CT_ScatterStyle_Attributes: Attributes;
|
|
2465
|
+
export interface CT_ScatterChart {
|
|
2466
|
+
scatterStyle?: CT_ScatterStyle;
|
|
2467
|
+
varyColors?: CT_Boolean;
|
|
2468
|
+
ser?: CT_ScatterSer[];
|
|
2469
|
+
dLbls?: CT_DLbls;
|
|
2470
|
+
axId?: CT_UnsignedInt[];
|
|
2471
|
+
extLst?: CT_ExtensionList;
|
|
2472
|
+
}
|
|
2473
|
+
export declare const CT_ScatterChart_Attributes: Attributes;
|
|
2474
|
+
export type ST_RadarStyle = 'standard' | 'marker' | 'filled';
|
|
2475
|
+
export interface CT_RadarStyle {
|
|
2476
|
+
val?: ST_RadarStyle;
|
|
2477
|
+
}
|
|
2478
|
+
export declare const CT_RadarStyle_Attributes: Attributes;
|
|
2479
|
+
export interface CT_RadarChart {
|
|
2480
|
+
radarStyle?: CT_RadarStyle;
|
|
2481
|
+
varyColors?: CT_Boolean;
|
|
2482
|
+
ser?: CT_RadarSer[];
|
|
2483
|
+
dLbls?: CT_DLbls;
|
|
2484
|
+
axId?: CT_UnsignedInt[];
|
|
2485
|
+
extLst?: CT_ExtensionList;
|
|
2486
|
+
}
|
|
2487
|
+
export declare const CT_RadarChart_Attributes: Attributes;
|
|
2488
|
+
export type ST_BarGrouping = 'percentStacked' | 'clustered' | 'standard' | 'stacked';
|
|
2489
|
+
export interface CT_BarGrouping {
|
|
2490
|
+
val?: ST_BarGrouping;
|
|
2491
|
+
}
|
|
2492
|
+
export declare const CT_BarGrouping_Attributes: Attributes;
|
|
2493
|
+
export type ST_BarDir = 'bar' | 'col';
|
|
2494
|
+
export interface CT_BarDir {
|
|
2495
|
+
val?: ST_BarDir;
|
|
2496
|
+
}
|
|
2497
|
+
export declare const CT_BarDir_Attributes: Attributes;
|
|
2498
|
+
export interface CT_BarChart {
|
|
2499
|
+
barDir?: CT_BarDir;
|
|
2500
|
+
grouping?: CT_BarGrouping;
|
|
2501
|
+
varyColors?: CT_Boolean;
|
|
2502
|
+
ser?: CT_BarSer[];
|
|
2503
|
+
dLbls?: CT_DLbls;
|
|
2504
|
+
gapWidth?: CT_GapAmount;
|
|
2505
|
+
overlap?: CT_Overlap;
|
|
2506
|
+
serLines?: CT_ChartLines[];
|
|
2507
|
+
axId?: CT_UnsignedInt[];
|
|
2508
|
+
extLst?: CT_ExtensionList;
|
|
2509
|
+
}
|
|
2510
|
+
export declare const CT_BarChart_Attributes: Attributes;
|
|
2511
|
+
export interface CT_Bar3DChart {
|
|
2512
|
+
barDir?: CT_BarDir;
|
|
2513
|
+
grouping?: CT_BarGrouping;
|
|
2514
|
+
varyColors?: CT_Boolean;
|
|
2515
|
+
ser?: CT_BarSer[];
|
|
2516
|
+
dLbls?: CT_DLbls;
|
|
2517
|
+
gapWidth?: CT_GapAmount;
|
|
2518
|
+
gapDepth?: CT_GapAmount;
|
|
2519
|
+
shape?: CT_Shape;
|
|
2520
|
+
axId?: CT_UnsignedInt[];
|
|
2521
|
+
extLst?: CT_ExtensionList;
|
|
2522
|
+
}
|
|
2523
|
+
export declare const CT_Bar3DChart_Attributes: Attributes;
|
|
2524
|
+
export interface CT_AreaChart {
|
|
2525
|
+
grouping?: CT_Grouping;
|
|
2526
|
+
varyColors?: CT_Boolean;
|
|
2527
|
+
ser?: CT_AreaSer[];
|
|
2528
|
+
dLbls?: CT_DLbls;
|
|
2529
|
+
dropLines?: CT_ChartLines;
|
|
2530
|
+
axId?: CT_UnsignedInt[];
|
|
2531
|
+
extLst?: CT_ExtensionList;
|
|
2532
|
+
}
|
|
2533
|
+
export declare const CT_AreaChart_Attributes: Attributes;
|
|
2534
|
+
export interface CT_Area3DChart {
|
|
2535
|
+
grouping?: CT_Grouping;
|
|
2536
|
+
varyColors?: CT_Boolean;
|
|
2537
|
+
ser?: CT_AreaSer[];
|
|
2538
|
+
dLbls?: CT_DLbls;
|
|
2539
|
+
dropLines?: CT_ChartLines;
|
|
2540
|
+
gapDepth?: CT_GapAmount;
|
|
2541
|
+
axId?: CT_UnsignedInt[];
|
|
2542
|
+
extLst?: CT_ExtensionList;
|
|
2543
|
+
}
|
|
2544
|
+
export declare const CT_Area3DChart_Attributes: Attributes;
|
|
2545
|
+
export interface CT_PieChart {
|
|
2546
|
+
varyColors?: CT_Boolean;
|
|
2547
|
+
ser?: CT_PieSer[];
|
|
2548
|
+
dLbls?: CT_DLbls;
|
|
2549
|
+
firstSliceAng?: CT_FirstSliceAng;
|
|
2550
|
+
extLst?: CT_ExtensionList;
|
|
2551
|
+
}
|
|
2552
|
+
export declare const CT_PieChart_Attributes: Attributes;
|
|
2553
|
+
export interface CT_Pie3DChart {
|
|
2554
|
+
varyColors?: CT_Boolean;
|
|
2555
|
+
ser?: CT_PieSer[];
|
|
2556
|
+
dLbls?: CT_DLbls;
|
|
2557
|
+
extLst?: CT_ExtensionList;
|
|
2558
|
+
}
|
|
2559
|
+
export declare const CT_Pie3DChart_Attributes: Attributes;
|
|
2560
|
+
export interface CT_DoughnutChart {
|
|
2561
|
+
varyColors?: CT_Boolean;
|
|
2562
|
+
ser?: CT_PieSer[];
|
|
2563
|
+
dLbls?: CT_DLbls;
|
|
2564
|
+
firstSliceAng?: CT_FirstSliceAng;
|
|
2565
|
+
holeSize?: CT_HoleSize;
|
|
2566
|
+
extLst?: CT_ExtensionList;
|
|
2567
|
+
}
|
|
2568
|
+
export declare const CT_DoughnutChart_Attributes: Attributes;
|
|
2569
|
+
export type ST_OfPieType = 'pie' | 'bar';
|
|
2570
|
+
export interface CT_OfPieType {
|
|
2571
|
+
val?: ST_OfPieType;
|
|
2572
|
+
}
|
|
2573
|
+
export declare const CT_OfPieType_Attributes: Attributes;
|
|
2574
|
+
export interface CT_OfPieChart {
|
|
2575
|
+
ofPieType?: CT_OfPieType;
|
|
2576
|
+
varyColors?: CT_Boolean;
|
|
2577
|
+
ser?: CT_PieSer[];
|
|
2578
|
+
dLbls?: CT_DLbls;
|
|
2579
|
+
gapWidth?: CT_GapAmount;
|
|
2580
|
+
splitType?: CT_SplitType;
|
|
2581
|
+
splitPos?: CT_Double;
|
|
2582
|
+
custSplit?: CT_CustSplit;
|
|
2583
|
+
secondPieSize?: CT_SecondPieSize;
|
|
2584
|
+
serLines?: CT_ChartLines[];
|
|
2585
|
+
extLst?: CT_ExtensionList;
|
|
2586
|
+
}
|
|
2587
|
+
export declare const CT_OfPieChart_Attributes: Attributes;
|
|
2588
|
+
export interface CT_BubbleChart {
|
|
2589
|
+
varyColors?: CT_Boolean;
|
|
2590
|
+
ser?: CT_BubbleSer[];
|
|
2591
|
+
dLbls?: CT_DLbls;
|
|
2592
|
+
bubble3D?: CT_Boolean;
|
|
2593
|
+
bubbleScale?: CT_BubbleScale;
|
|
2594
|
+
showNegBubbles?: CT_Boolean;
|
|
2595
|
+
sizeRepresents?: CT_SizeRepresents;
|
|
2596
|
+
axId?: CT_UnsignedInt[];
|
|
2597
|
+
extLst?: CT_ExtensionList;
|
|
2598
|
+
}
|
|
2599
|
+
export declare const CT_BubbleChart_Attributes: Attributes;
|
|
2600
|
+
export interface CT_BandFmt {
|
|
2601
|
+
idx?: CT_UnsignedInt;
|
|
2602
|
+
spPr?: CT_ShapeProperties;
|
|
2603
|
+
}
|
|
2604
|
+
export declare const CT_BandFmt_Attributes: Attributes;
|
|
2605
|
+
export interface CT_BandFmts {
|
|
2606
|
+
bandFmt?: CT_BandFmt[];
|
|
2607
|
+
}
|
|
2608
|
+
export declare const CT_BandFmts_Attributes: Attributes;
|
|
2609
|
+
export interface CT_SurfaceChart {
|
|
2610
|
+
wireframe?: CT_Boolean;
|
|
2611
|
+
ser?: CT_SurfaceSer[];
|
|
2612
|
+
bandFmts?: CT_BandFmts;
|
|
2613
|
+
axId?: CT_UnsignedInt[];
|
|
2614
|
+
extLst?: CT_ExtensionList;
|
|
2615
|
+
}
|
|
2616
|
+
export declare const CT_SurfaceChart_Attributes: Attributes;
|
|
2617
|
+
export interface CT_Surface3DChart {
|
|
2618
|
+
wireframe?: CT_Boolean;
|
|
2619
|
+
ser?: CT_SurfaceSer[];
|
|
2620
|
+
bandFmts?: CT_BandFmts;
|
|
2621
|
+
axId?: CT_UnsignedInt[];
|
|
2622
|
+
extLst?: CT_ExtensionList;
|
|
2623
|
+
}
|
|
2624
|
+
export declare const CT_Surface3DChart_Attributes: Attributes;
|
|
2625
|
+
export type ST_AxPos = 'b' | 'l' | 'r' | 't';
|
|
2626
|
+
export interface CT_AxPos {
|
|
2627
|
+
val?: ST_AxPos;
|
|
2628
|
+
}
|
|
2629
|
+
export declare const CT_AxPos_Attributes: Attributes;
|
|
2630
|
+
export type ST_Crosses = 'autoZero' | 'max' | 'min';
|
|
2631
|
+
export interface CT_Crosses {
|
|
2632
|
+
val?: ST_Crosses;
|
|
2633
|
+
}
|
|
2634
|
+
export declare const CT_Crosses_Attributes: Attributes;
|
|
2635
|
+
export type ST_CrossBetween = 'between' | 'midCat';
|
|
2636
|
+
export interface CT_CrossBetween {
|
|
2637
|
+
val?: ST_CrossBetween;
|
|
2638
|
+
}
|
|
2639
|
+
export declare const CT_CrossBetween_Attributes: Attributes;
|
|
2640
|
+
export type ST_TickMark = 'cross' | 'in' | 'none' | 'out';
|
|
2641
|
+
export interface CT_TickMark {
|
|
2642
|
+
val?: ST_TickMark;
|
|
2643
|
+
}
|
|
2644
|
+
export declare const CT_TickMark_Attributes: Attributes;
|
|
2645
|
+
export type ST_TickLblPos = 'high' | 'low' | 'nextTo' | 'none';
|
|
2646
|
+
export interface CT_TickLblPos {
|
|
2647
|
+
val?: ST_TickLblPos;
|
|
2648
|
+
}
|
|
2649
|
+
export declare const CT_TickLblPos_Attributes: Attributes;
|
|
2650
|
+
export type ST_Skip = number;
|
|
2651
|
+
export interface CT_Skip {
|
|
2652
|
+
val?: number;
|
|
2653
|
+
}
|
|
2654
|
+
export declare const CT_Skip_Attributes: Attributes;
|
|
2655
|
+
export type ST_TimeUnit = 'days' | 'months' | 'years';
|
|
2656
|
+
export interface CT_TimeUnit {
|
|
2657
|
+
val?: ST_TimeUnit;
|
|
2658
|
+
}
|
|
2659
|
+
export declare const CT_TimeUnit_Attributes: Attributes;
|
|
2660
|
+
export type ST_AxisUnit = number;
|
|
2661
|
+
export interface CT_AxisUnit {
|
|
2662
|
+
val?: number;
|
|
2663
|
+
}
|
|
2664
|
+
export declare const CT_AxisUnit_Attributes: Attributes;
|
|
2665
|
+
export type ST_BuiltInUnit = 'hundreds' | 'thousands' | 'tenThousands' | 'hundredThousands' | 'millions' | 'tenMillions' | 'hundredMillions' | 'billions' | 'trillions';
|
|
2666
|
+
export interface CT_BuiltInUnit {
|
|
2667
|
+
val?: ST_BuiltInUnit;
|
|
2668
|
+
}
|
|
2669
|
+
export declare const CT_BuiltInUnit_Attributes: Attributes;
|
|
2670
|
+
export interface CT_DispUnitsLbl {
|
|
2671
|
+
layout?: CT_Layout;
|
|
2672
|
+
tx?: CT_Tx;
|
|
2673
|
+
spPr?: CT_ShapeProperties;
|
|
2674
|
+
txPr?: CT_TextBody;
|
|
2675
|
+
}
|
|
2676
|
+
export declare const CT_DispUnitsLbl_Attributes: Attributes;
|
|
2677
|
+
export interface CT_DispUnits {
|
|
2678
|
+
custUnit?: CT_Double;
|
|
2679
|
+
builtInUnit?: CT_BuiltInUnit;
|
|
2680
|
+
dispUnitsLbl?: CT_DispUnitsLbl;
|
|
2681
|
+
extLst?: CT_ExtensionList;
|
|
2682
|
+
}
|
|
2683
|
+
export declare const CT_DispUnits_Attributes: Attributes;
|
|
2684
|
+
export type ST_Orientation = 'maxMin' | 'minMax';
|
|
2685
|
+
export interface CT_Orientation {
|
|
2686
|
+
val?: ST_Orientation;
|
|
2687
|
+
}
|
|
2688
|
+
export declare const CT_Orientation_Attributes: Attributes;
|
|
2689
|
+
export type ST_LogBase = number;
|
|
2690
|
+
export interface CT_LogBase {
|
|
2691
|
+
val?: number;
|
|
2692
|
+
}
|
|
2693
|
+
export declare const CT_LogBase_Attributes: Attributes;
|
|
2694
|
+
export interface CT_Scaling {
|
|
2695
|
+
logBase?: CT_LogBase;
|
|
2696
|
+
orientation?: CT_Orientation;
|
|
2697
|
+
max?: CT_Double;
|
|
2698
|
+
min?: CT_Double;
|
|
2699
|
+
extLst?: CT_ExtensionList;
|
|
2700
|
+
}
|
|
2701
|
+
export declare const CT_Scaling_Attributes: Attributes;
|
|
2702
|
+
export type ST_LblOffset = string;
|
|
2703
|
+
export type ST_LblOffsetPercent = string;
|
|
2704
|
+
export interface CT_LblOffset {
|
|
2705
|
+
val?: string;
|
|
2706
|
+
}
|
|
2707
|
+
export declare const CT_LblOffset_Attributes: Attributes;
|
|
2708
|
+
export interface CT_CatAx {
|
|
2709
|
+
axId?: CT_UnsignedInt;
|
|
2710
|
+
scaling?: CT_Scaling;
|
|
2711
|
+
delete?: CT_Boolean;
|
|
2712
|
+
axPos?: CT_AxPos;
|
|
2713
|
+
majorGridlines?: CT_ChartLines;
|
|
2714
|
+
minorGridlines?: CT_ChartLines;
|
|
2715
|
+
title?: CT_Title;
|
|
2716
|
+
numFmt?: CT_NumFmt;
|
|
2717
|
+
majorTickMark?: CT_TickMark;
|
|
2718
|
+
minorTickMark?: CT_TickMark;
|
|
2719
|
+
tickLblPos?: CT_TickLblPos;
|
|
2720
|
+
spPr?: CT_ShapeProperties;
|
|
2721
|
+
txPr?: CT_TextBody;
|
|
2722
|
+
crossAx?: CT_UnsignedInt;
|
|
2723
|
+
crosses?: CT_Crosses;
|
|
2724
|
+
crossesAt?: CT_Double;
|
|
2725
|
+
auto?: CT_Boolean;
|
|
2726
|
+
lblAlgn?: CT_LblAlgn;
|
|
2727
|
+
lblOffset?: CT_LblOffset;
|
|
2728
|
+
tickLblSkip?: CT_Skip;
|
|
2729
|
+
tickMarkSkip?: CT_Skip;
|
|
2730
|
+
noMultiLvlLbl?: CT_Boolean;
|
|
2731
|
+
extLst?: CT_ExtensionList;
|
|
2732
|
+
}
|
|
2733
|
+
export declare const CT_CatAx_Attributes: Attributes;
|
|
2734
|
+
export interface CT_DateAx {
|
|
2735
|
+
axId?: CT_UnsignedInt;
|
|
2736
|
+
scaling?: CT_Scaling;
|
|
2737
|
+
delete?: CT_Boolean;
|
|
2738
|
+
axPos?: CT_AxPos;
|
|
2739
|
+
majorGridlines?: CT_ChartLines;
|
|
2740
|
+
minorGridlines?: CT_ChartLines;
|
|
2741
|
+
title?: CT_Title;
|
|
2742
|
+
numFmt?: CT_NumFmt;
|
|
2743
|
+
majorTickMark?: CT_TickMark;
|
|
2744
|
+
minorTickMark?: CT_TickMark;
|
|
2745
|
+
tickLblPos?: CT_TickLblPos;
|
|
2746
|
+
spPr?: CT_ShapeProperties;
|
|
2747
|
+
txPr?: CT_TextBody;
|
|
2748
|
+
crossAx?: CT_UnsignedInt;
|
|
2749
|
+
crosses?: CT_Crosses;
|
|
2750
|
+
crossesAt?: CT_Double;
|
|
2751
|
+
auto?: CT_Boolean;
|
|
2752
|
+
lblOffset?: CT_LblOffset;
|
|
2753
|
+
baseTimeUnit?: CT_TimeUnit;
|
|
2754
|
+
majorUnit?: CT_AxisUnit;
|
|
2755
|
+
majorTimeUnit?: CT_TimeUnit;
|
|
2756
|
+
minorUnit?: CT_AxisUnit;
|
|
2757
|
+
minorTimeUnit?: CT_TimeUnit;
|
|
2758
|
+
extLst?: CT_ExtensionList;
|
|
2759
|
+
}
|
|
2760
|
+
export declare const CT_DateAx_Attributes: Attributes;
|
|
2761
|
+
export interface CT_SerAx {
|
|
2762
|
+
axId?: CT_UnsignedInt;
|
|
2763
|
+
scaling?: CT_Scaling;
|
|
2764
|
+
delete?: CT_Boolean;
|
|
2765
|
+
axPos?: CT_AxPos;
|
|
2766
|
+
majorGridlines?: CT_ChartLines;
|
|
2767
|
+
minorGridlines?: CT_ChartLines;
|
|
2768
|
+
title?: CT_Title;
|
|
2769
|
+
numFmt?: CT_NumFmt;
|
|
2770
|
+
majorTickMark?: CT_TickMark;
|
|
2771
|
+
minorTickMark?: CT_TickMark;
|
|
2772
|
+
tickLblPos?: CT_TickLblPos;
|
|
2773
|
+
spPr?: CT_ShapeProperties;
|
|
2774
|
+
txPr?: CT_TextBody;
|
|
2775
|
+
crossAx?: CT_UnsignedInt;
|
|
2776
|
+
crosses?: CT_Crosses;
|
|
2777
|
+
crossesAt?: CT_Double;
|
|
2778
|
+
tickLblSkip?: CT_Skip;
|
|
2779
|
+
tickMarkSkip?: CT_Skip;
|
|
2780
|
+
extLst?: CT_ExtensionList;
|
|
2781
|
+
}
|
|
2782
|
+
export declare const CT_SerAx_Attributes: Attributes;
|
|
2783
|
+
export interface CT_ValAx {
|
|
2784
|
+
axId?: CT_UnsignedInt;
|
|
2785
|
+
scaling?: CT_Scaling;
|
|
2786
|
+
delete?: CT_Boolean;
|
|
2787
|
+
axPos?: CT_AxPos;
|
|
2788
|
+
majorGridlines?: CT_ChartLines;
|
|
2789
|
+
minorGridlines?: CT_ChartLines;
|
|
2790
|
+
title?: CT_Title;
|
|
2791
|
+
numFmt?: CT_NumFmt;
|
|
2792
|
+
majorTickMark?: CT_TickMark;
|
|
2793
|
+
minorTickMark?: CT_TickMark;
|
|
2794
|
+
tickLblPos?: CT_TickLblPos;
|
|
2795
|
+
spPr?: CT_ShapeProperties;
|
|
2796
|
+
txPr?: CT_TextBody;
|
|
2797
|
+
crossAx?: CT_UnsignedInt;
|
|
2798
|
+
crosses?: CT_Crosses;
|
|
2799
|
+
crossesAt?: CT_Double;
|
|
2800
|
+
crossBetween?: CT_CrossBetween;
|
|
2801
|
+
majorUnit?: CT_AxisUnit;
|
|
2802
|
+
minorUnit?: CT_AxisUnit;
|
|
2803
|
+
dispUnits?: CT_DispUnits;
|
|
2804
|
+
extLst?: CT_ExtensionList;
|
|
2805
|
+
}
|
|
2806
|
+
export declare const CT_ValAx_Attributes: Attributes;
|
|
2807
|
+
export interface CT_PlotArea {
|
|
2808
|
+
layout?: CT_Layout;
|
|
2809
|
+
areaChart?: CT_AreaChart;
|
|
2810
|
+
area3DChart?: CT_Area3DChart;
|
|
2811
|
+
lineChart?: CT_LineChart;
|
|
2812
|
+
line3DChart?: CT_Line3DChart;
|
|
2813
|
+
stockChart?: CT_StockChart;
|
|
2814
|
+
radarChart?: CT_RadarChart;
|
|
2815
|
+
scatterChart?: CT_ScatterChart;
|
|
2816
|
+
pieChart?: CT_PieChart;
|
|
2817
|
+
pie3DChart?: CT_Pie3DChart;
|
|
2818
|
+
doughnutChart?: CT_DoughnutChart;
|
|
2819
|
+
barChart?: CT_BarChart;
|
|
2820
|
+
bar3DChart?: CT_Bar3DChart;
|
|
2821
|
+
ofPieChart?: CT_OfPieChart;
|
|
2822
|
+
surfaceChart?: CT_SurfaceChart;
|
|
2823
|
+
surface3DChart?: CT_Surface3DChart;
|
|
2824
|
+
bubbleChart?: CT_BubbleChart;
|
|
2825
|
+
valAx?: CT_ValAx;
|
|
2826
|
+
catAx?: CT_CatAx;
|
|
2827
|
+
dateAx?: CT_DateAx;
|
|
2828
|
+
serAx?: CT_SerAx;
|
|
2829
|
+
dTable?: CT_DTable;
|
|
2830
|
+
spPr?: CT_ShapeProperties;
|
|
2831
|
+
extLst?: CT_ExtensionList;
|
|
2832
|
+
}
|
|
2833
|
+
export declare const CT_PlotArea_Attributes: Attributes;
|
|
2834
|
+
export interface CT_PivotFmt {
|
|
2835
|
+
idx?: CT_UnsignedInt;
|
|
2836
|
+
spPr?: CT_ShapeProperties;
|
|
2837
|
+
txPr?: CT_TextBody;
|
|
2838
|
+
marker?: CT_Marker;
|
|
2839
|
+
dLbl?: CT_DLbl;
|
|
2840
|
+
extLst?: CT_ExtensionList;
|
|
2841
|
+
}
|
|
2842
|
+
export declare const CT_PivotFmt_Attributes: Attributes;
|
|
2843
|
+
export interface CT_PivotFmts {
|
|
2844
|
+
pivotFmt?: CT_PivotFmt[];
|
|
2845
|
+
}
|
|
2846
|
+
export declare const CT_PivotFmts_Attributes: Attributes;
|
|
2847
|
+
export type ST_LegendPos = 'b' | 'tr' | 'l' | 'r' | 't';
|
|
2848
|
+
export interface CT_LegendPos {
|
|
2849
|
+
val?: ST_LegendPos;
|
|
2850
|
+
}
|
|
2851
|
+
export declare const CT_LegendPos_Attributes: Attributes;
|
|
2852
|
+
export interface CT_LegendEntry {
|
|
2853
|
+
idx?: CT_UnsignedInt;
|
|
2854
|
+
delete?: CT_Boolean;
|
|
2855
|
+
extLst?: CT_ExtensionList;
|
|
2856
|
+
}
|
|
2857
|
+
export declare const CT_LegendEntry_Attributes: Attributes;
|
|
2858
|
+
export interface CT_Legend {
|
|
2859
|
+
legendPos?: CT_LegendPos;
|
|
2860
|
+
legendEntry?: CT_LegendEntry[];
|
|
2861
|
+
layout?: CT_Layout;
|
|
2862
|
+
overlay?: CT_Boolean;
|
|
2863
|
+
spPr?: CT_ShapeProperties;
|
|
2864
|
+
txPr?: CT_TextBody;
|
|
2865
|
+
extLst?: CT_ExtensionList;
|
|
2866
|
+
}
|
|
2867
|
+
export declare const CT_Legend_Attributes: Attributes;
|
|
2868
|
+
export type ST_DispBlanksAs = 'span' | 'gap' | 'zero';
|
|
2869
|
+
export interface CT_DispBlanksAs {
|
|
2870
|
+
val?: ST_DispBlanksAs;
|
|
2871
|
+
}
|
|
2872
|
+
export declare const CT_DispBlanksAs_Attributes: Attributes;
|
|
2873
|
+
export interface CT_Chart {
|
|
2874
|
+
title?: CT_Title;
|
|
2875
|
+
autoTitleDeleted?: CT_Boolean;
|
|
2876
|
+
pivotFmts?: CT_PivotFmts;
|
|
2877
|
+
view3D?: CT_View3D;
|
|
2878
|
+
floor?: CT_Surface;
|
|
2879
|
+
sideWall?: CT_Surface;
|
|
2880
|
+
backWall?: CT_Surface;
|
|
2881
|
+
plotArea?: CT_PlotArea;
|
|
2882
|
+
legend?: CT_Legend;
|
|
2883
|
+
plotVisOnly?: CT_Boolean;
|
|
2884
|
+
dispBlanksAs?: CT_DispBlanksAs;
|
|
2885
|
+
showDLblsOverMax?: CT_Boolean;
|
|
2886
|
+
extLst?: CT_ExtensionList;
|
|
2887
|
+
}
|
|
2888
|
+
export declare const CT_Chart_Attributes: Attributes;
|
|
2889
|
+
export type ST_Style = number;
|
|
2890
|
+
export interface CT_Style {
|
|
2891
|
+
val?: number;
|
|
2892
|
+
}
|
|
2893
|
+
export declare const CT_Style_Attributes: Attributes;
|
|
2894
|
+
export interface CT_PivotSource {
|
|
2895
|
+
name?: string;
|
|
2896
|
+
fmtId?: CT_UnsignedInt;
|
|
2897
|
+
extLst?: CT_ExtensionList[];
|
|
2898
|
+
}
|
|
2899
|
+
export declare const CT_PivotSource_Attributes: Attributes;
|
|
2900
|
+
export interface CT_Protection {
|
|
2901
|
+
chartObject?: CT_Boolean;
|
|
2902
|
+
data?: CT_Boolean;
|
|
2903
|
+
formatting?: CT_Boolean;
|
|
2904
|
+
selection?: CT_Boolean;
|
|
2905
|
+
userInterface?: CT_Boolean;
|
|
2906
|
+
}
|
|
2907
|
+
export declare const CT_Protection_Attributes: Attributes;
|
|
2908
|
+
export interface CT_HeaderFooter {
|
|
2909
|
+
oddHeader?: string;
|
|
2910
|
+
oddFooter?: string;
|
|
2911
|
+
evenHeader?: string;
|
|
2912
|
+
evenFooter?: string;
|
|
2913
|
+
firstHeader?: string;
|
|
2914
|
+
firstFooter?: string;
|
|
2915
|
+
alignWithMargins?: boolean;
|
|
2916
|
+
differentOddEven?: boolean;
|
|
2917
|
+
differentFirst?: boolean;
|
|
2918
|
+
}
|
|
2919
|
+
export declare const CT_HeaderFooter_Attributes: Attributes;
|
|
2920
|
+
export interface CT_PageMargins {
|
|
2921
|
+
l?: number;
|
|
2922
|
+
r?: number;
|
|
2923
|
+
t?: number;
|
|
2924
|
+
b?: number;
|
|
2925
|
+
header?: number;
|
|
2926
|
+
footer?: number;
|
|
2927
|
+
}
|
|
2928
|
+
export declare const CT_PageMargins_Attributes: Attributes;
|
|
2929
|
+
export type ST_PageSetupOrientation = 'default' | 'portrait' | 'landscape';
|
|
2930
|
+
export interface CT_ExternalData {
|
|
2931
|
+
'autoUpdate'?: CT_Boolean;
|
|
2932
|
+
'r:id'?: string;
|
|
2933
|
+
}
|
|
2934
|
+
export declare const CT_ExternalData_Attributes: Attributes;
|
|
2935
|
+
export interface CT_PageSetup {
|
|
2936
|
+
paperSize?: number;
|
|
2937
|
+
paperHeight?: string;
|
|
2938
|
+
paperWidth?: string;
|
|
2939
|
+
firstPageNumber?: number;
|
|
2940
|
+
orientation?: ST_PageSetupOrientation;
|
|
2941
|
+
blackAndWhite?: boolean;
|
|
2942
|
+
draft?: boolean;
|
|
2943
|
+
useFirstPageNumber?: boolean;
|
|
2944
|
+
horizontalDpi?: number;
|
|
2945
|
+
verticalDpi?: number;
|
|
2946
|
+
copies?: number;
|
|
2947
|
+
}
|
|
2948
|
+
export declare const CT_PageSetup_Attributes: Attributes;
|
|
2949
|
+
export interface CT_PrintSettings {
|
|
2950
|
+
headerFooter?: CT_HeaderFooter;
|
|
2951
|
+
pageMargins?: CT_PageMargins;
|
|
2952
|
+
pageSetup?: CT_PageSetup;
|
|
2953
|
+
}
|
|
2954
|
+
export declare const CT_PrintSettings_Attributes: Attributes;
|
|
2955
|
+
export interface CT_ChartSpace {
|
|
2956
|
+
date1904?: CT_Boolean;
|
|
2957
|
+
lang?: CT_TextLanguageID;
|
|
2958
|
+
roundedCorners?: CT_Boolean;
|
|
2959
|
+
style?: CT_Style;
|
|
2960
|
+
clrMapOvr?: CT_ColorMapping;
|
|
2961
|
+
pivotSource?: CT_PivotSource;
|
|
2962
|
+
protection?: CT_Protection;
|
|
2963
|
+
chart?: CT_Chart;
|
|
2964
|
+
spPr?: CT_ShapeProperties;
|
|
2965
|
+
txPr?: CT_TextBody;
|
|
2966
|
+
externalData?: CT_ExternalData;
|
|
2967
|
+
printSettings?: CT_PrintSettings;
|
|
2968
|
+
userShapes?: CT_RelId;
|
|
2969
|
+
extLst?: CT_ExtensionList;
|
|
2970
|
+
}
|
|
2971
|
+
export declare const CT_ChartSpace_Attributes: Attributes;
|