office-viewer 0.2.0 → 0.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +13 -3
- package/esm/Excel.d.ts +59 -0
- package/esm/Excel.js +200 -0
- package/esm/OfficeViewer.d.ts +10 -0
- package/esm/RenderOptions.d.ts +25 -0
- package/esm/UnSupport.d.ts +13 -0
- package/esm/UnSupport.js +33 -0
- package/esm/Word.d.ts +7 -24
- package/esm/Word.js +25 -22
- package/esm/common/__tests__/autoParse.test.d.ts +1 -0
- package/esm/common/autoParse.d.ts +9 -0
- package/esm/common/autoParse.js +192 -0
- package/esm/common/parseAttributes.d.ts +6 -0
- package/esm/common/parseAttributes.js +27 -0
- package/esm/common/parseChildren.d.ts +8 -0
- package/esm/common/parseContentType.d.ts +7 -0
- package/esm/common/parseContentType.js +50 -0
- package/esm/common/parseRelationship.d.ts +5 -0
- package/esm/common/parseRelationship.js +46 -0
- package/esm/createOfficeViewer.d.ts +16 -0
- package/esm/createOfficeViewer.js +98 -0
- package/esm/excel/StyleSheet.d.ts +8 -0
- package/esm/excel/StyleSheet.js +11 -0
- package/esm/excel/Workbook.d.ts +180 -0
- package/esm/excel/Workbook.js +209 -0
- package/esm/excel/data/LocalDataProvider.d.ts +146 -0
- package/esm/excel/data/LocalDataProvider.js +784 -0
- package/esm/excel/data/applyAutoFilter.d.ts +10 -0
- package/esm/excel/data/applyAutoFilter.js +86 -0
- package/esm/excel/data/autoFilter/CellValueNum.d.ts +5 -0
- package/esm/excel/data/autoFilter/__test__/customFilter.test.d.ts +1 -0
- package/esm/excel/data/autoFilter/__test__/filters.test.d.ts +1 -0
- package/esm/excel/data/autoFilter/__test__/sortByRange.test.d.ts +1 -0
- package/esm/excel/data/autoFilter/applySortState.d.ts +6 -0
- package/esm/excel/data/autoFilter/applySortState.js +36 -0
- package/esm/excel/data/autoFilter/customFilter.d.ts +6 -0
- package/esm/excel/data/autoFilter/customFilter.js +78 -0
- package/esm/excel/data/autoFilter/evalCustomFilter.d.ts +9 -0
- package/esm/excel/data/autoFilter/evalCustomFilter.js +61 -0
- package/esm/excel/data/autoFilter/filters.d.ts +3 -0
- package/esm/excel/data/autoFilter/filters.js +55 -0
- package/esm/excel/data/autoFilter/inDateGroupItems.d.ts +6 -0
- package/esm/excel/data/autoFilter/inDateGroupItems.js +71 -0
- package/esm/excel/data/autoFilter/sortByRange.d.ts +8 -0
- package/esm/excel/data/autoFilter/sortByRange.js +50 -0
- package/esm/excel/data/defaultFont.d.ts +25 -0
- package/esm/excel/data/defaultFont.js +27 -0
- package/esm/excel/data/getThemeColor.d.ts +2 -0
- package/esm/excel/data/getThemeColor.js +71 -0
- package/esm/excel/data/numfmt/amountInWords.d.ts +4 -0
- package/esm/excel/data/numfmt/amountInWords.js +39 -0
- package/esm/excel/data/numfmtExtend.d.ts +10 -0
- package/esm/excel/data/numfmtExtend.js +29 -0
- package/esm/excel/edit/Command.d.ts +19 -0
- package/esm/excel/edit/ui/CellEditor.d.ts +27 -0
- package/esm/excel/edit/ui/CellEditor.js +65 -0
- package/esm/excel/io/csv/emptyXLSX.d.ts +2 -0
- package/esm/excel/io/csv/emptyXLSX.js +6 -0
- package/esm/excel/io/excel/__tests__/parseSharedStrings.test.d.ts +1 -0
- package/esm/excel/io/excel/drawing/getRelationPath.d.ts +2 -0
- package/esm/excel/io/excel/drawing/getRelationPath.js +11 -0
- package/esm/excel/io/excel/drawing/parseAnchorCommon.d.ts +9 -0
- package/esm/excel/io/excel/drawing/parseAnchorCommon.js +78 -0
- package/esm/excel/io/excel/drawing/parseChart.d.ts +3 -0
- package/esm/excel/io/excel/drawing/parseChart.js +11 -0
- package/esm/excel/io/excel/drawing/parseDrawing.d.ts +8 -0
- package/esm/excel/io/excel/drawing/parseDrawing.js +103 -0
- package/esm/excel/io/excel/drawing/parsePic.d.ts +4 -0
- package/esm/excel/io/excel/drawing/parsePic.js +23 -0
- package/esm/excel/io/excel/drawing/parseShape.d.ts +4 -0
- package/esm/excel/io/excel/drawing/parseShape.js +159 -0
- package/esm/excel/io/excel/getRelPath.d.ts +4 -0
- package/esm/excel/io/excel/getRelPath.js +10 -0
- package/esm/excel/io/excel/initValueForContainsBlanks.d.ts +6 -0
- package/esm/excel/io/excel/initValueForContainsBlanks.js +58 -0
- package/esm/excel/io/excel/initValueForTable.d.ts +5 -0
- package/esm/excel/io/excel/initValueForTable.js +31 -0
- package/esm/excel/io/excel/parseDefinedNames.d.ts +5 -0
- package/esm/excel/io/excel/parseDefinedNames.js +11 -0
- package/esm/excel/io/excel/parseSharedStrings.d.ts +9 -0
- package/esm/excel/io/excel/parseSharedStrings.js +173 -0
- package/esm/excel/io/excel/parseSheet.d.ts +9 -0
- package/esm/excel/io/excel/parseSheet.js +84 -0
- package/esm/excel/io/excel/parseTableParts.d.ts +5 -0
- package/esm/excel/io/excel/parseTableParts.js +67 -0
- package/esm/excel/io/excel/parseTableStyleDef.d.ts +3 -0
- package/esm/excel/io/excel/parseTheme.d.ts +6 -0
- package/esm/excel/io/excel/parseTheme.js +42 -0
- package/esm/excel/io/excel/parseWorkbook.d.ts +8 -0
- package/esm/excel/io/excel/parseWorkbook.js +105 -0
- package/esm/excel/io/excel/parseWorkbookPr.d.ts +6 -0
- package/esm/excel/io/excel/parseWorkbookPr.js +13 -0
- package/esm/excel/io/excel/parseWorkbookView.d.ts +6 -0
- package/esm/excel/io/excel/parseWorkbookView.js +13 -0
- package/esm/excel/io/excel/parseWorksheet.d.ts +9 -0
- package/esm/excel/io/excel/parseWorksheet.js +207 -0
- package/esm/excel/io/excel/preset/defaultTheme.d.ts +1 -0
- package/esm/excel/io/excel/preset/defaultTheme.js +3 -0
- package/esm/excel/io/excel/preset/presetCellStyles.d.ts +3 -0
- package/esm/excel/io/excel/preset/presetIconSet.d.ts +6 -0
- package/esm/excel/io/excel/preset/presetIconSet.js +55 -0
- package/esm/excel/io/excel/preset/presetIcons.d.ts +3 -0
- package/esm/excel/io/excel/preset/presetIcons.js +44 -0
- package/esm/excel/io/excel/preset/presetTableStyles.d.ts +3 -0
- package/esm/excel/io/excel/preset/presetTableStyles.js +35117 -0
- package/esm/excel/io/excel/stylesheet/parseColor.d.ts +5 -0
- package/esm/excel/io/excel/stylesheet/parseColor.js +11 -0
- package/esm/excel/io/excel/util/Range.d.ts +66 -0
- package/esm/excel/io/excel/util/Range.js +120 -0
- package/esm/excel/io/excel/util/__tests__/makeBlankValue.test.d.ts +1 -0
- package/esm/excel/io/excel/util/decodeAddress.d.ts +11 -0
- package/esm/excel/io/excel/util/decodeAddress.js +63 -0
- package/esm/excel/io/excel/util/fromExcelDate.d.ts +14 -0
- package/esm/excel/io/excel/util/fromExcelDate.js +26 -0
- package/esm/excel/io/excel/util/lettersToNumber.d.ts +4 -0
- package/esm/excel/io/excel/util/makeBlankValue.d.ts +6 -0
- package/esm/excel/io/excel/util/makeBlankValue.js +21 -0
- package/esm/excel/io/excel/util/numberToLetters.d.ts +4 -0
- package/esm/excel/io/excel/util/numberToLetters.js +13 -0
- package/esm/excel/io/excel/worksheet/parseSheetData.d.ts +11 -0
- package/esm/excel/io/excel/worksheet/parseSheetData.js +154 -0
- package/esm/excel/io/parseExcel.d.ts +10 -0
- package/esm/excel/io/parseExcel.js +39 -0
- package/esm/excel/lang/en_US.d.ts +24 -0
- package/esm/excel/lang/en_US.js +25 -0
- package/esm/excel/lang/lang.d.ts +30 -0
- package/esm/excel/lang/lang.js +19 -0
- package/esm/excel/lang/zh_CN.d.ts +2 -0
- package/esm/excel/lang/zh_CN.js +25 -0
- package/esm/excel/print/printStyle.d.ts +4 -0
- package/esm/excel/print/printStyle.js +8 -0
- package/esm/excel/print/renderInIframe.d.ts +7 -0
- package/esm/excel/print/renderInIframe.js +26 -0
- package/esm/excel/render/Canvas.d.ts +108 -0
- package/esm/excel/render/Canvas.js +332 -0
- package/esm/excel/render/Consts.d.ts +20 -0
- package/esm/excel/render/Consts.js +22 -0
- package/esm/excel/render/ExcelRender.d.ts +120 -0
- package/esm/excel/render/ExcelRender.js +422 -0
- package/esm/excel/render/Icons.d.ts +13 -0
- package/esm/excel/render/Icons.js +15 -0
- package/esm/excel/render/IndexedColors.d.ts +1 -0
- package/esm/excel/render/IndexedColors.js +70 -0
- package/esm/excel/render/Line.d.ts +6 -0
- package/esm/excel/render/Rect.d.ts +17 -0
- package/esm/excel/render/Rect.js +20 -0
- package/esm/excel/render/ScrollBar.d.ts +54 -0
- package/esm/excel/render/ScrollBar.js +137 -0
- package/esm/excel/render/SelectionCanvas.d.ts +33 -0
- package/esm/excel/render/SelectionCanvas.js +92 -0
- package/esm/excel/render/SheetCanvas.d.ts +33 -0
- package/esm/excel/render/SheetCanvas.js +42 -0
- package/esm/excel/render/__test__/autoWrapText.test.d.ts +1 -0
- package/esm/excel/render/__test__/tokenizer.test.d.ts +1 -0
- package/esm/excel/render/autoFilter/AutoFilterIconUI.d.ts +33 -0
- package/esm/excel/render/autoFilter/AutoFilterIconUI.js +85 -0
- package/esm/excel/render/autoFilter/AutoFilterMenuUI.d.ts +13 -0
- package/esm/excel/render/autoFilter/AutoFilterMenuUI.js +34 -0
- package/esm/excel/render/autoFilter/filterColumn/CustomFiltersUI.d.ts +46 -0
- package/esm/excel/render/autoFilter/filterColumn/CustomFiltersUI.js +158 -0
- package/esm/excel/render/autoFilter/filterColumn/FilterColumnUI.d.ts +10 -0
- package/esm/excel/render/autoFilter/filterColumn/FilterColumnUI.js +47 -0
- package/esm/excel/render/autoFilter/filterColumn/FiltersUI.d.ts +10 -0
- package/esm/excel/render/autoFilter/filterColumn/FiltersUI.js +37 -0
- package/esm/excel/render/autoFilter/filterColumn/OperatorTypeUI.d.ts +5 -0
- package/esm/excel/render/autoFilter/filterColumn/buildOperatorOptions.d.ts +2 -0
- package/esm/excel/render/autoFilter/filterColumn/buildOperatorOptions.js +95 -0
- package/esm/excel/render/autoFilter/filterColumn/fromOperatorUI.d.ts +6 -0
- package/esm/excel/render/autoFilter/filterColumn/fromOperatorUI.js +48 -0
- package/esm/excel/render/autoFilter/filterColumn/getCustomFilters.d.ts +2 -0
- package/esm/excel/render/autoFilter/filterColumn/getCustomFilters.js +10 -0
- package/esm/excel/render/autoFilter/filterColumn/getFilterValues.d.ts +5 -0
- package/esm/excel/render/autoFilter/filterColumn/getFilterValues.js +31 -0
- package/esm/excel/render/autoFilter/filterColumn/hasFilterColumn.d.ts +5 -0
- package/esm/excel/render/autoFilter/filterColumn/hasFilterColumn.js +37 -0
- package/esm/excel/render/autoFilter/filterColumn/setCustomFilters.d.ts +5 -0
- package/esm/excel/render/autoFilter/filterColumn/setCustomFilters.js +19 -0
- package/esm/excel/render/autoFilter/filterColumn/setFilterValues.d.ts +6 -0
- package/esm/excel/render/autoFilter/filterColumn/setFilterValues.js +45 -0
- package/esm/excel/render/autoFilter/filterColumn/toOperatorUI.d.ts +6 -0
- package/esm/excel/render/autoFilter/filterColumn/toOperatorUI.js +30 -0
- package/esm/excel/render/autoFilter/renderAutoFilter.d.ts +2 -0
- package/esm/excel/render/autoFilter/renderAutoFilter.js +31 -0
- package/esm/excel/render/autoFilter/renderAutoFilterIcon.d.ts +6 -0
- package/esm/excel/render/autoFilter/renderAutoFilterIcon.js +52 -0
- package/esm/excel/render/autoFilter/sortState/ColumnSortOrder.d.ts +1 -0
- package/esm/excel/render/autoFilter/sortState/SortButtonUI.d.ts +12 -0
- package/esm/excel/render/autoFilter/sortState/SortButtonUI.js +41 -0
- package/esm/excel/render/autoFilter/sortState/SortStateUI.d.ts +22 -0
- package/esm/excel/render/autoFilter/sortState/SortStateUI.js +65 -0
- package/esm/excel/render/autoFilter/sortState/getColumnSortOrder.d.ts +6 -0
- package/esm/excel/render/autoFilter/sortState/getColumnSortOrder.js +36 -0
- package/esm/excel/render/autoFilter/sortState/setColumnSortOrder.d.ts +7 -0
- package/esm/excel/render/autoFilter/sortState/setColumnSortOrder.js +55 -0
- package/esm/excel/render/canvas/draw.d.ts +5 -0
- package/esm/excel/render/canvas/drawOffscreenCanvas.d.ts +6 -0
- package/esm/excel/render/canvas/drawOffscreenCanvas.js +14 -0
- package/esm/excel/render/canvas/setPixelRatio.d.ts +4 -0
- package/esm/excel/render/canvas/setPixelRatio.js +17 -0
- package/esm/excel/render/cell/CellInfoWithSize.d.ts +5 -0
- package/esm/excel/render/cell/LinkPosition.d.ts +14 -0
- package/esm/excel/render/cell/autoClip.d.ts +6 -0
- package/esm/excel/render/cell/autoClip.js +44 -0
- package/esm/excel/render/cell/autoWrapText.d.ts +24 -0
- package/esm/excel/render/cell/autoWrapText.js +157 -0
- package/esm/excel/render/cell/border/drawDoubleBorder.d.ts +2 -0
- package/esm/excel/render/cell/border/drawDoubleBorder.js +75 -0
- package/esm/excel/render/cell/border/setLineStyle.d.ts +5 -0
- package/esm/excel/render/cell/border/setLineStyle.js +43 -0
- package/esm/excel/render/cell/cellToMergeCell.d.ts +8 -0
- package/esm/excel/render/cell/cellToMergeCell.js +35 -0
- package/esm/excel/render/cell/checkFont.d.ts +8 -0
- package/esm/excel/render/cell/checkFont.js +31 -0
- package/esm/excel/render/cell/drawCell.d.ts +19 -0
- package/esm/excel/render/cell/drawCell.js +44 -0
- package/esm/excel/render/cell/drawCellBackground.d.ts +3 -0
- package/esm/excel/render/cell/drawCellBackground.js +11 -0
- package/esm/excel/render/cell/drawCellBorder.d.ts +6 -0
- package/esm/excel/render/cell/drawCellBorder.js +47 -0
- package/esm/excel/render/cell/drawCells.d.ts +9 -0
- package/esm/excel/render/cell/drawCells.js +54 -0
- package/esm/excel/render/cell/drawDataBar.d.ts +3 -0
- package/esm/excel/render/cell/drawDataBar.js +31 -0
- package/esm/excel/render/cell/drawDataBarX14.d.ts +7 -0
- package/esm/excel/render/cell/drawDataBarX14.js +48 -0
- package/esm/excel/render/cell/drawIconSet.d.ts +3 -0
- package/esm/excel/render/cell/drawIconSet.js +13 -0
- package/esm/excel/render/cell/drawMultiLineText.d.ts +8 -0
- package/esm/excel/render/cell/drawMultiLineText.js +107 -0
- package/esm/excel/render/cell/drawSingleLineRichText.d.ts +10 -0
- package/esm/excel/render/cell/drawSingleLineRichText.js +55 -0
- package/esm/excel/render/cell/drawSingleLineText.d.ts +17 -0
- package/esm/excel/render/cell/drawSingleLineText.js +73 -0
- package/esm/excel/render/cell/drawTextInCell.d.ts +15 -0
- package/esm/excel/render/cell/drawTextInCell.js +105 -0
- package/esm/excel/render/cell/frozen/drawFrozen.d.ts +17 -0
- package/esm/excel/render/cell/frozen/drawFrozen.js +45 -0
- package/esm/excel/render/cell/frozen/drawLeftFrozen.d.ts +10 -0
- package/esm/excel/render/cell/frozen/drawLeftFrozen.js +26 -0
- package/esm/excel/render/cell/frozen/drawTopFrozen.d.ts +10 -0
- package/esm/excel/render/cell/frozen/drawTopFrozen.js +26 -0
- package/esm/excel/render/cell/frozen/drawTopLeftFrozen.d.ts +14 -0
- package/esm/excel/render/cell/frozen/drawTopLeftFrozen.js +46 -0
- package/esm/excel/render/cell/frozen/getFrozenLeftViewPointRange.d.ts +14 -0
- package/esm/excel/render/cell/frozen/getFrozenLeftViewPointRange.js +32 -0
- package/esm/excel/render/cell/frozen/getFrozenRange.d.ts +5 -0
- package/esm/excel/render/cell/frozen/getFrozenRange.js +25 -0
- package/esm/excel/render/cell/frozen/getFrozenTopLeftViewPointRange.d.ts +5 -0
- package/esm/excel/render/cell/frozen/getFrozenTopLeftViewPointRange.js +22 -0
- package/esm/excel/render/cell/frozen/getFrozenTopViewPointRange.d.ts +14 -0
- package/esm/excel/render/cell/frozen/getFrozenTopViewPointRange.js +33 -0
- package/esm/excel/render/cell/genFontStr.d.ts +31 -0
- package/esm/excel/render/cell/genFontStr.js +61 -0
- package/esm/excel/render/cell/getBackgroundColor.d.ts +3 -0
- package/esm/excel/render/cell/getBackgroundColor.js +38 -0
- package/esm/excel/render/cell/isPointerOnLink.d.ts +5 -0
- package/esm/excel/render/cell/isPointerOnLink.js +39 -0
- package/esm/excel/render/cell/measureTextWithCache.d.ts +23 -0
- package/esm/excel/render/cell/measureTextWithCache.js +30 -0
- package/esm/excel/render/cell/tokenizer.d.ts +24 -0
- package/esm/excel/render/cell/tokenizer.js +94 -0
- package/esm/excel/render/dnd/DragState.d.ts +22 -0
- package/esm/excel/render/dnd/getMouseRelativePosition.d.ts +7 -0
- package/esm/excel/render/dnd/getMouseRelativePosition.js +11 -0
- package/esm/excel/render/dnd/handleDragCell.d.ts +4 -0
- package/esm/excel/render/dnd/handleDragCell.js +75 -0
- package/esm/excel/render/dnd/handleDragColGrid.d.ts +4 -0
- package/esm/excel/render/dnd/handleDragColGrid.js +23 -0
- package/esm/excel/render/dnd/handleDragColHeader.d.ts +4 -0
- package/esm/excel/render/dnd/handleDragColHeader.js +51 -0
- package/esm/excel/render/dnd/handleDragRowGrid.d.ts +4 -0
- package/esm/excel/render/dnd/handleDragRowGrid.js +23 -0
- package/esm/excel/render/dnd/handleDragRowHeader.d.ts +4 -0
- package/esm/excel/render/dnd/handleDragRowHeader.js +51 -0
- package/esm/excel/render/dnd/handleMousedown.d.ts +12 -0
- package/esm/excel/render/dnd/handleMousedown.js +74 -0
- package/esm/excel/render/dnd/handleMousemove.d.ts +4 -0
- package/esm/excel/render/dnd/handleMousemove.js +38 -0
- package/esm/excel/render/dnd/handleMouseup.d.ts +1 -0
- package/esm/excel/render/dnd/handleMouseup.js +17 -0
- package/esm/excel/render/dnd/mousedownCell.d.ts +10 -0
- package/esm/excel/render/dnd/mousedownCell.js +31 -0
- package/esm/excel/render/dnd/mousedownColHeader.d.ts +22 -0
- package/esm/excel/render/dnd/mousedownColHeader.js +29 -0
- package/esm/excel/render/dnd/mousedownCorner.d.ts +8 -0
- package/esm/excel/render/dnd/mousedownCorner.js +13 -0
- package/esm/excel/render/dnd/mousedownRowHeader.d.ts +22 -0
- package/esm/excel/render/dnd/mousedownRowHeader.js +29 -0
- package/esm/excel/render/dnd/removeEventListener.d.ts +4 -0
- package/esm/excel/render/dnd/removeEventListener.js +14 -0
- package/esm/excel/render/dnd/selectAll.d.ts +5 -0
- package/esm/excel/render/dnd/selectAll.js +26 -0
- package/esm/excel/render/drawing/BaseDrawingRender.d.ts +11 -0
- package/esm/excel/render/drawing/BaseDrawingRender.js +29 -0
- package/esm/excel/render/drawing/EChartsRender.d.ts +7 -0
- package/esm/excel/render/drawing/EChartsRender.js +20 -0
- package/esm/excel/render/drawing/PicRender.d.ts +6 -0
- package/esm/excel/render/drawing/PicRender.js +57 -0
- package/esm/excel/render/drawing/ResizeBox.d.ts +51 -0
- package/esm/excel/render/drawing/ResizeBox.js +83 -0
- package/esm/excel/render/drawing/chart/buildLabel.d.ts +63 -0
- package/esm/excel/render/drawing/chart/buildLabel.js +6 -0
- package/esm/excel/render/drawing/chart/calcPercentStacked.d.ts +5 -0
- package/esm/excel/render/drawing/chart/calcPercentStacked.js +43 -0
- package/esm/excel/render/drawing/chart/convertAxis.d.ts +11 -0
- package/esm/excel/render/drawing/chart/convertAxis.js +55 -0
- package/esm/excel/render/drawing/chart/convertLegend.d.ts +5 -0
- package/esm/excel/render/drawing/chart/convertLegend.js +38 -0
- package/esm/excel/render/drawing/chart/convertTitle.d.ts +8 -0
- package/esm/excel/render/drawing/chart/convertTitle.js +54 -0
- package/esm/excel/render/drawing/chart/fromAreaChart.d.ts +74 -0
- package/esm/excel/render/drawing/chart/fromAreaChart.js +51 -0
- package/esm/excel/render/drawing/chart/fromBarChart.d.ts +11 -0
- package/esm/excel/render/drawing/chart/fromBarChart.js +44 -0
- package/esm/excel/render/drawing/chart/fromDoughnutChart.d.ts +18 -0
- package/esm/excel/render/drawing/chart/fromDoughnutChart.js +48 -0
- package/esm/excel/render/drawing/chart/fromLineChart.d.ts +73 -0
- package/esm/excel/render/drawing/chart/fromLineChart.js +50 -0
- package/esm/excel/render/drawing/chart/fromPieChart.d.ts +10 -0
- package/esm/excel/render/drawing/chart/fromPieChart.js +40 -0
- package/esm/excel/render/drawing/chart/getData.d.ts +6 -0
- package/esm/excel/render/drawing/chart/getData.js +16 -0
- package/esm/excel/render/drawing/chart/getStack.d.ts +5 -0
- package/esm/excel/render/drawing/chart/getStack.js +17 -0
- package/esm/excel/render/drawing/convertToEChartOptions.d.ts +8 -0
- package/esm/excel/render/drawing/convertToEChartOptions.js +66 -0
- package/esm/excel/render/drawing/drawChart.d.ts +4 -0
- package/esm/excel/render/drawing/drawChart.js +49 -0
- package/esm/excel/render/drawing/drawDrawing.d.ts +8 -0
- package/esm/excel/render/drawing/drawDrawing.js +105 -0
- package/esm/excel/render/drawing/drawPic.d.ts +5 -0
- package/esm/excel/render/drawing/drawPic.js +68 -0
- package/esm/excel/render/drawing/drawShape.d.ts +9 -0
- package/esm/excel/render/drawing/drawShape.js +134 -0
- package/esm/excel/render/drawing/findPositionInViewRange.d.ts +7 -0
- package/esm/excel/render/drawing/findPositionInViewRange.js +28 -0
- package/esm/excel/render/drawing/getAbsoluteAnchorPosition.d.ts +11 -0
- package/esm/excel/render/drawing/getAbsoluteAnchorPosition.js +33 -0
- package/esm/excel/render/drawing/getOneCellAnchorPosition.d.ts +8 -0
- package/esm/excel/render/drawing/getOneCellAnchorPosition.js +31 -0
- package/esm/excel/render/drawing/getPositionByMaker.d.ts +11 -0
- package/esm/excel/render/drawing/getRectFromAnchorPoint.d.ts +18 -0
- package/esm/excel/render/drawing/getRectFromAnchorPoint.js +43 -0
- package/esm/excel/render/drawing/getTwoCellAnchorPosition.d.ts +8 -0
- package/esm/excel/render/drawing/getTwoCellAnchorPosition.js +37 -0
- package/esm/excel/render/formulaBar/FormulaBar.d.ts +29 -0
- package/esm/excel/render/formulaBar/FormulaBar.js +86 -0
- package/esm/excel/render/grid/drawGridLines.d.ts +12 -0
- package/esm/excel/render/grid/drawGridLines.js +40 -0
- package/esm/excel/render/header/drawRowColHeaders.d.ts +10 -0
- package/esm/excel/render/header/drawRowColHeaders.js +144 -0
- package/esm/excel/render/keyboard/handleCopy.d.ts +5 -0
- package/esm/excel/render/keyboard/handleCopy.js +19 -0
- package/esm/excel/render/keyboard/handleKeydown.d.ts +5 -0
- package/esm/excel/render/keyboard/handleKeydown.js +14 -0
- package/esm/excel/render/keyboard/handlePaste.d.ts +5 -0
- package/esm/excel/render/keyboard/handlePaste.js +16 -0
- package/esm/excel/render/keyboard/handleSelectAll.d.ts +5 -0
- package/esm/excel/render/keyboard/handleSelectAll.js +17 -0
- package/esm/excel/render/keyboard/handleSheetArrowKey.d.ts +5 -0
- package/esm/excel/render/keyboard/handleSheetArrowKey.js +41 -0
- package/esm/excel/render/scroll/Scroll.d.ts +7 -0
- package/esm/excel/render/selection/Position.d.ts +9 -0
- package/esm/excel/render/selection/SheetSelection.d.ts +29 -0
- package/esm/excel/render/selection/binarySearchSize.d.ts +8 -0
- package/esm/excel/render/selection/binarySearchSize.js +27 -0
- package/esm/excel/render/selection/buildHTML/buildBorder.d.ts +6 -0
- package/esm/excel/render/selection/buildHTML/buildBorder.js +36 -0
- package/esm/excel/render/selection/buildHTML/cellInfoToStyle.d.ts +6 -0
- package/esm/excel/render/selection/buildHTML/cellInfoToStyle.js +66 -0
- package/esm/excel/render/selection/buildHTML/rangeToHTML.d.ts +11 -0
- package/esm/excel/render/selection/buildHTML/rangeToHTML.js +64 -0
- package/esm/excel/render/selection/copySelection.d.ts +7 -0
- package/esm/excel/render/selection/copySelection.js +28 -0
- package/esm/excel/render/selection/drawAllSelection.d.ts +7 -0
- package/esm/excel/render/selection/drawAllSelection.js +17 -0
- package/esm/excel/render/selection/drawCellRanges.d.ts +10 -0
- package/esm/excel/render/selection/drawCellRanges.js +45 -0
- package/esm/excel/render/selection/drawCellSelection.d.ts +13 -0
- package/esm/excel/render/selection/drawCellSelection.js +77 -0
- package/esm/excel/render/selection/drawColSelection.d.ts +12 -0
- package/esm/excel/render/selection/drawColSelection.js +20 -0
- package/esm/excel/render/selection/drawRowSelection.d.ts +12 -0
- package/esm/excel/render/selection/drawRowSelection.js +21 -0
- package/esm/excel/render/selection/drawSelectionHeaderHighlight.d.ts +6 -0
- package/esm/excel/render/selection/drawSelectionHeaderHighlight.js +17 -0
- package/esm/excel/render/selection/findCell.d.ts +7 -0
- package/esm/excel/render/selection/findCell.js +15 -0
- package/esm/excel/render/selection/findInViewRange.d.ts +13 -0
- package/esm/excel/render/selection/findInViewRange.js +12 -0
- package/esm/excel/render/selection/findInViewRangeX.d.ts +10 -0
- package/esm/excel/render/selection/findInViewRangeX.js +42 -0
- package/esm/excel/render/selection/findInViewRangeY.d.ts +10 -0
- package/esm/excel/render/selection/findInViewRangeY.js +41 -0
- package/esm/excel/render/selection/getCellPosition.d.ts +43 -0
- package/esm/excel/render/selection/getCellPosition.js +131 -0
- package/esm/excel/render/selection/getRangePosition.d.ts +12 -0
- package/esm/excel/render/selection/getRangePosition.js +67 -0
- package/esm/excel/render/selection/hitTest.d.ts +41 -0
- package/esm/excel/render/selection/hitTest.js +46 -0
- package/esm/excel/render/selection/hitTestInRange.d.ts +7 -0
- package/esm/excel/render/selection/hitTestInRange.js +56 -0
- package/esm/excel/render/selection/updateCursor.d.ts +5 -0
- package/esm/excel/render/selection/updateCursor.js +22 -0
- package/esm/excel/render/sheetTab/SheetList.d.ts +43 -0
- package/esm/excel/render/sheetTab/SheetList.js +285 -0
- package/esm/excel/render/sheetTab/SheetTabBar.d.ts +8 -0
- package/esm/excel/render/sheetTab/SheetTabBar.js +20 -0
- package/esm/excel/render/sheetTab/StatusBar.d.ts +14 -0
- package/esm/excel/render/sheetTab/StatusBar.js +83 -0
- package/esm/excel/render/sheetTab/ZoomLevel.d.ts +6 -0
- package/esm/excel/render/sheetTab/ZoomLevel.js +39 -0
- package/esm/excel/render/sparkline/Numbers.d.ts +1 -0
- package/esm/excel/render/sparkline/applyColor.d.ts +7 -0
- package/esm/excel/render/sparkline/applyColor.js +36 -0
- package/esm/excel/render/sparkline/drawSparkline.d.ts +7 -0
- package/esm/excel/render/sparkline/drawSparkline.js +86 -0
- package/esm/excel/render/sparkline/renderColumn.d.ts +7 -0
- package/esm/excel/render/sparkline/renderColumn.js +47 -0
- package/esm/excel/render/sparkline/renderLine.d.ts +7 -0
- package/esm/excel/render/sparkline/renderLine.js +107 -0
- package/esm/excel/render/sparkline/renderSparkline.d.ts +9 -0
- package/esm/excel/render/sparkline/renderSparkline.js +59 -0
- package/esm/excel/render/sparkline/renderStacked.d.ts +7 -0
- package/esm/excel/render/sparkline/renderStacked.js +61 -0
- package/esm/excel/render/ui/Button.d.ts +7 -0
- package/esm/excel/render/ui/CheckBox.d.ts +16 -0
- package/esm/excel/render/ui/CheckBox.js +48 -0
- package/esm/excel/render/ui/CheckBoxList.d.ts +16 -0
- package/esm/excel/render/ui/CheckBoxList.js +109 -0
- package/esm/excel/render/ui/Divider.d.ts +3 -0
- package/esm/excel/render/ui/Divider.js +13 -0
- package/esm/excel/render/ui/Input.d.ts +11 -0
- package/esm/excel/render/ui/Input.js +48 -0
- package/esm/excel/render/ui/Radio.d.ts +11 -0
- package/esm/excel/render/ui/Radio.js +52 -0
- package/esm/excel/render/ui/Select.d.ts +13 -0
- package/esm/excel/render/ui/Select.js +29 -0
- package/esm/excel/render/widget/Widget.d.ts +29 -0
- package/esm/excel/sheet/BuiltInNumFmt.d.ts +5 -0
- package/esm/excel/sheet/BuiltInNumFmt.js +39 -0
- package/esm/excel/sheet/ColWidth.d.ts +19 -0
- package/esm/excel/sheet/ColWidth.js +30 -0
- package/esm/excel/sheet/ExcelRenderOptions.d.ts +149 -0
- package/esm/excel/sheet/RangeCache.d.ts +32 -0
- package/esm/excel/sheet/RangeCache.js +99 -0
- package/esm/excel/sheet/RowFilter.d.ts +3 -0
- package/esm/excel/sheet/Sheet.d.ts +280 -0
- package/esm/excel/sheet/Sheet.js +675 -0
- package/esm/excel/sheet/SheetBounding.d.ts +22 -0
- package/esm/excel/sheet/ViewRange.d.ts +52 -0
- package/esm/excel/sheet/__test__/applyDxf.test.d.ts +1 -0
- package/esm/excel/sheet/__test__/colWidth.test.d.ts +1 -0
- package/esm/excel/sheet/__test__/getViewRange.test.d.ts +1 -0
- package/esm/excel/sheet/applyConditionalFormat.d.ts +6 -0
- package/esm/excel/sheet/applyConditionalFormat.js +112 -0
- package/esm/excel/sheet/applyDxf.d.ts +6 -0
- package/esm/excel/sheet/applyDxf.js +20 -0
- package/esm/excel/sheet/applyTablePartsStyle.d.ts +6 -0
- package/esm/excel/sheet/applyTablePartsStyle.js +34 -0
- package/esm/excel/sheet/cfRule/__test__/aboveAverage.test.d.ts +1 -0
- package/esm/excel/sheet/cfRule/__test__/cellIs.test.d.ts +1 -0
- package/esm/excel/sheet/cfRule/__test__/top10.test.d.ts +1 -0
- package/esm/excel/sheet/cfRule/aboveAverage.d.ts +9 -0
- package/esm/excel/sheet/cfRule/aboveAverage.js +70 -0
- package/esm/excel/sheet/cfRule/applyCfRuleDxf.d.ts +7 -0
- package/esm/excel/sheet/cfRule/applyCfRuleDxf.js +13 -0
- package/esm/excel/sheet/cfRule/cellIs.d.ts +22 -0
- package/esm/excel/sheet/cfRule/cellIs.js +155 -0
- package/esm/excel/sheet/cfRule/colorScale.d.ts +8 -0
- package/esm/excel/sheet/cfRule/colorScale.js +141 -0
- package/esm/excel/sheet/cfRule/containsBlanks.d.ts +7 -0
- package/esm/excel/sheet/cfRule/containsBlanks.js +14 -0
- package/esm/excel/sheet/cfRule/containsErrors.d.ts +7 -0
- package/esm/excel/sheet/cfRule/containsErrors.js +15 -0
- package/esm/excel/sheet/cfRule/containsText.d.ts +7 -0
- package/esm/excel/sheet/cfRule/containsText.js +17 -0
- package/esm/excel/sheet/cfRule/dataBar.d.ts +8 -0
- package/esm/excel/sheet/cfRule/dataBar.js +232 -0
- package/esm/excel/sheet/cfRule/duplicateValues.d.ts +8 -0
- package/esm/excel/sheet/cfRule/duplicateValues.js +45 -0
- package/esm/excel/sheet/cfRule/getMinMax.d.ts +5 -0
- package/esm/excel/sheet/cfRule/getMinMax.js +37 -0
- package/esm/excel/sheet/cfRule/iconSet.d.ts +8 -0
- package/esm/excel/sheet/cfRule/iconSet.js +109 -0
- package/esm/excel/sheet/cfRule/notContainsText.d.ts +7 -0
- package/esm/excel/sheet/cfRule/notContainsText.js +17 -0
- package/esm/excel/sheet/cfRule/timePeriod.d.ts +9 -0
- package/esm/excel/sheet/cfRule/timePeriod.js +129 -0
- package/esm/excel/sheet/cfRule/top10.d.ts +9 -0
- package/esm/excel/sheet/cfRule/top10.js +72 -0
- package/esm/excel/sheet/cfRule/uniqueValues.d.ts +8 -0
- package/esm/excel/sheet/cfRule/uniqueValues.js +46 -0
- package/esm/excel/sheet/getCellAbsolutePosition.d.ts +10 -0
- package/esm/excel/sheet/getCellAbsolutePosition.js +41 -0
- package/esm/excel/sheet/getViewPointData.d.ts +24 -0
- package/esm/excel/sheet/getViewPointData.js +171 -0
- package/esm/excel/sheet/getViewRange.d.ts +68 -0
- package/esm/excel/sheet/getViewRange.js +193 -0
- package/esm/excel/sheet/table/__test__/calcTableRelativePosition.test.d.ts +1 -0
- package/esm/excel/sheet/table/applyTableStyle.d.ts +5 -0
- package/esm/excel/sheet/table/applyTableStyle.js +87 -0
- package/esm/excel/sheet/table/buildTableStyle.d.ts +13 -0
- package/esm/excel/sheet/table/buildTableStyle.js +68 -0
- package/esm/excel/sheet/table/calcTableRelativePosition.d.ts +11 -0
- package/esm/excel/sheet/table/calcTableRelativePosition.js +90 -0
- package/esm/excel/types/CT_Color.d.ts +9 -0
- package/esm/excel/types/CT_Color.js +20 -0
- package/esm/excel/types/CT_ExtensionList.d.ts +6 -0
- package/esm/excel/types/CT_ExtensionList.js +11 -0
- package/esm/excel/types/CT_Theme.d.ts +15 -0
- package/esm/excel/types/CellInfo.d.ts +57 -0
- package/esm/excel/types/CellValue.d.ts +14 -0
- package/esm/excel/types/DataBarDisplay.d.ts +58 -0
- package/esm/excel/types/ExcelFile.d.ts +12 -0
- package/esm/excel/types/Ext.d.ts +10 -0
- package/esm/excel/types/Ext.js +21 -0
- package/esm/excel/types/FontSize.d.ts +7 -0
- package/esm/excel/types/FontStyle.d.ts +16 -0
- package/esm/excel/types/IChartSpace.d.ts +7 -0
- package/esm/excel/types/IDataProvider.d.ts +158 -0
- package/esm/excel/types/IDrawing.d.ts +51 -0
- package/esm/excel/types/IRElt.d.ts +11 -0
- package/esm/excel/types/IRPrElt.d.ts +28 -0
- package/esm/excel/types/IRelationship.d.ts +10 -0
- package/esm/excel/types/ISheet.d.ts +14 -0
- package/esm/excel/types/ISheet.js +16 -0
- package/esm/excel/types/IWorkbook.d.ts +41 -0
- package/esm/excel/types/IWorksheet.d.ts +37 -0
- package/esm/excel/types/RangeRef.d.ts +21 -0
- package/esm/excel/types/RichText.d.ts +7 -0
- package/esm/excel/types/StringItem.d.ts +5 -0
- package/esm/excel/types/TableStyleDef.d.ts +8 -0
- package/esm/excel/types/X14CF/CT_Cfvo.d.ts +8 -0
- package/esm/excel/types/X14CF/CT_Cfvo.js +14 -0
- package/esm/excel/types/X14CF/ST_CfvoType.d.ts +1 -0
- package/esm/excel/types/X14CF/X14CfRule.d.ts +10 -0
- package/esm/excel/types/X14CF/X14CfRule.js +21 -0
- package/esm/excel/types/X14CF/X14ConditionalFormatting.d.ts +6 -0
- package/esm/excel/types/X14CF/X14ConditionalFormatting.js +11 -0
- package/esm/excel/types/X14CF/X14ConditionalFormattings.d.ts +6 -0
- package/esm/excel/types/X14CF/X14ConditionalFormattings.js +11 -0
- package/esm/excel/types/X14CF/X14DataBar.d.ts +18 -0
- package/esm/excel/types/X14CF/X14DataBar.js +54 -0
- package/esm/excel/types/X14CF/X14IconSet.d.ts +11 -0
- package/esm/excel/types/X14CF/X14IconSet.js +27 -0
- package/esm/excel/types/X14Sparkline/X14Sparkline.d.ts +6 -0
- package/esm/excel/types/X14Sparkline/X14Sparkline.js +10 -0
- package/esm/excel/types/X14Sparkline/X14SparklineGroup.d.ts +35 -0
- package/esm/excel/types/X14Sparkline/X14SparklineGroup.js +108 -0
- package/esm/excel/types/X14Sparkline/X14SparklineGroups.d.ts +6 -0
- package/esm/excel/types/X14Sparkline/X14SparklineGroups.js +11 -0
- package/esm/excel/types/X14Sparkline/x14:sparklines.d.ts +6 -0
- package/esm/excel/types/X14Sparkline/x14_sparklines.js +11 -0
- package/esm/excel/types/worksheet/CellData.d.ts +56 -0
- package/esm/excel/types/worksheet/CellData.js +38 -0
- package/esm/excel/types/worksheet/ICell.d.ts +39 -0
- package/esm/excel/types/worksheet/ICell.js +22 -0
- package/esm/index.d.ts +3 -1
- package/esm/index.js +2 -0
- package/esm/openxml/Attributes.d.ts +33 -0
- package/esm/openxml/Attributes.js +3 -0
- package/esm/openxml/ChartTypes.d.ts +2971 -0
- package/esm/openxml/ChartTypes.js +5154 -0
- package/esm/openxml/ContentType.d.ts +5 -0
- package/esm/openxml/ContentType.js +1 -1
- package/esm/openxml/DMLTypes.d.ts +1836 -0
- package/esm/openxml/DMLTypes.js +2849 -0
- package/esm/openxml/ExcelTypes.d.ts +5147 -0
- package/esm/openxml/ExcelTypes.js +5362 -0
- package/esm/openxml/Style.js +3 -3
- package/esm/openxml/Theme.js +1 -1
- package/esm/openxml/Types.d.ts +2757 -95
- package/esm/openxml/colorNameMap.d.ts +6 -0
- package/esm/openxml/drawing/Blip.d.ts +1 -1
- package/esm/openxml/drawing/CustomGeom.js +1 -1
- package/esm/openxml/drawing/Drawing.js +1 -1
- package/esm/openxml/drawing/Geom.js +1 -1
- package/esm/openxml/drawing/ShapeProperties.d.ts +1 -0
- package/esm/openxml/drawing/ShapeProperties.js +7 -7
- package/esm/openxml/drawing/Transform.js +1 -1
- package/esm/openxml/drawing/svg/shapeToSVG.d.ts +11 -2
- package/esm/openxml/drawing/svg/shapeToSVG.js +6 -6
- package/esm/openxml/word/Body.js +2 -2
- package/esm/openxml/word/Header.js +2 -2
- package/esm/openxml/word/Hyperlink.d.ts +1 -1
- package/esm/openxml/word/Note.js +1 -1
- package/esm/openxml/word/Paragraph.js +2 -2
- package/esm/openxml/word/Run.js +1 -1
- package/esm/openxml/word/Section.js +1 -1
- package/esm/openxml/word/Tab.js +1 -1
- package/esm/openxml/word/WDocument.js +1 -1
- package/esm/openxml/word/wps/WPS.js +2 -2
- package/esm/openxml/word/wps/WPSStyle.js +4 -4
- package/esm/package/PackageParser.d.ts +4 -0
- package/esm/package/XMLPackageParser.d.ts +5 -1
- package/esm/package/ZipPackageParser.d.ts +5 -1
- package/esm/package/ZipPackageParser.js +30 -2
- package/esm/util/EventEmitter.d.ts +38 -0
- package/esm/util/EventEmitter.js +112 -0
- package/esm/util/H.d.ts +7 -0
- package/esm/util/H.js +69 -0
- package/esm/util/LRUCache.d.ts +17 -0
- package/esm/util/LinkedMap.d.ts +40 -0
- package/esm/util/__tests__/autoSpace.test.d.ts +1 -0
- package/esm/util/__tests__/color.test.d.ts +1 -0
- package/esm/util/__tests__/replaceVar.test.d.ts +2 -0
- package/esm/util/__tests__/xml.test.d.ts +1 -0
- package/esm/util/arrayBufferToString.d.ts +1 -0
- package/esm/util/arrayBufferToString.js +7 -0
- package/esm/util/base64ToArrayBuffer.d.ts +1 -0
- package/esm/util/base64ToArrayBuffer.js +10 -0
- package/esm/util/binarySearch.d.ts +5 -0
- package/esm/util/binarySearch.js +23 -0
- package/esm/util/color.d.ts +5 -0
- package/esm/util/color.js +101 -1
- package/esm/util/createObject.d.ts +0 -1
- package/esm/util/createObject.js +2 -10
- package/esm/util/debounce.d.ts +1 -0
- package/esm/util/debounce.js +15 -0
- package/esm/util/emuToPx.d.ts +4 -0
- package/esm/util/emuToPx.js +14 -0
- package/esm/util/escapeHTML.d.ts +4 -0
- package/esm/util/escapeHTML.js +13 -0
- package/esm/util/fileType.d.ts +1 -0
- package/esm/util/fileType.js +17 -1
- package/esm/util/getChineseDay.d.ts +4 -0
- package/esm/util/isFontAvailable.d.ts +5 -0
- package/esm/util/isFontAvailable.js +37 -0
- package/esm/util/isNumeric.d.ts +4 -0
- package/esm/util/isNumeric.js +8 -0
- package/esm/util/isObject.d.ts +6 -0
- package/esm/util/isObject.js +10 -0
- package/esm/util/isValidURL.d.ts +4 -0
- package/esm/util/isValidURL.js +18 -0
- package/esm/util/isVisible.d.ts +4 -0
- package/esm/util/joinPath.d.ts +6 -0
- package/esm/util/joinPath.js +27 -0
- package/esm/util/mergeRun.js +1 -1
- package/esm/util/number.d.ts +9 -0
- package/esm/util/number.js +20 -0
- package/esm/util/objectEqual.d.ts +4 -0
- package/esm/util/objectEqual.js +13 -0
- package/esm/util/onClickOutside.d.ts +4 -0
- package/esm/util/onClickOutside.js +13 -0
- package/esm/util/ptToPx.d.ts +4 -0
- package/esm/util/ptToPx.js +10 -0
- package/esm/util/px2pt.d.ts +1 -0
- package/esm/util/px2pt.js +5 -0
- package/esm/util/runWorker.d.ts +6 -0
- package/esm/util/saxes.d.ts +638 -0
- package/esm/util/saxes.js +2077 -0
- package/esm/util/stringToArray.d.ts +10 -0
- package/esm/util/stringToArray.js +84 -0
- package/esm/util/stripNumber.d.ts +4 -0
- package/esm/util/stripNumber.js +14 -0
- package/esm/util/throttle.d.ts +5 -0
- package/esm/util/xml.d.ts +44 -0
- package/esm/util/xml.js +85 -1
- package/esm/util/xmlchars/xml/1.0/ed4.d.ts +31 -0
- package/esm/util/xmlchars/xml/1.0/ed5.d.ts +51 -0
- package/esm/util/xmlchars/xml/1.0/ed5.js +89 -0
- package/esm/util/xmlchars/xml/1.1/ed2.d.ts +73 -0
- package/esm/util/xmlchars/xml/1.1/ed2.js +21 -0
- package/esm/util/xmlchars/xmlns/1.0/ed3.d.ts +28 -0
- package/esm/util/xmlchars/xmlns/1.0/ed3.js +57 -0
- package/esm/word/parse/Footnotes.d.ts +3 -0
- package/esm/word/parse/Footnotes.js +25 -0
- package/esm/word/parse/modifyColor.js +106 -0
- package/esm/word/parse/parseBorder.d.ts +13 -0
- package/esm/word/parse/parseBorder.js +59 -0
- package/esm/word/parse/parseCellMargin.d.ts +2 -0
- package/esm/word/parse/parseChildColor.d.ts +4 -0
- package/esm/word/parse/parseChildColor.js +66 -0
- package/esm/word/parse/parseColor.d.ts +26 -0
- package/esm/word/parse/parseColor.js +126 -0
- package/esm/word/parse/parseEndnotes.d.ts +3 -0
- package/esm/word/parse/parseEndnotes.js +25 -0
- package/esm/word/parse/parseFont.d.ts +7 -0
- package/esm/word/parse/parseInd.d.ts +5 -0
- package/esm/word/parse/parseInsideBorders.d.ts +9 -0
- package/esm/word/parse/parsePr.d.ts +11 -0
- package/esm/word/parse/parsePr.js +424 -0
- package/esm/word/parse/parseShape.d.ts +10 -0
- package/esm/word/parse/parseShape.js +239 -0
- package/esm/word/parse/parseSpacing.d.ts +7 -0
- package/esm/word/parse/parseTable.d.ts +3 -0
- package/esm/word/parse/parseTable.js +62 -0
- package/esm/word/parse/parseTablePr.d.ts +3 -0
- package/esm/word/parse/parseTablePr.js +185 -0
- package/esm/word/parse/parseTc.d.ts +10 -0
- package/esm/word/parse/parseTc.js +64 -0
- package/esm/word/parse/parseTcPr.d.ts +5 -0
- package/esm/word/parse/parseTcPr.js +99 -0
- package/esm/word/parse/parseTextDirection.d.ts +2 -0
- package/esm/word/parse/parseTr.d.ts +6 -0
- package/esm/word/parse/parseTr.js +49 -0
- package/esm/word/parse/parseTrHeight.d.ts +2 -0
- package/esm/word/parse/parseTrPr.d.ts +3 -0
- package/esm/word/parse/parseTrPr.js +59 -0
- package/esm/word/render/fixAbsolutePosition.d.ts +8 -0
- package/esm/word/render/renderBody.d.ts +10 -0
- package/esm/word/render/renderBody.js +207 -0
- package/esm/word/render/renderBookmark.d.ts +6 -0
- package/esm/word/render/renderBookmark.js +17 -0
- package/esm/word/render/renderBr.d.ts +8 -0
- package/esm/word/render/renderBr.js +16 -0
- package/esm/word/render/renderCustGeom.d.ts +4 -0
- package/esm/word/render/renderCustGeom.js +10 -0
- package/esm/word/render/renderDocument.d.ts +7 -0
- package/esm/word/render/renderDocument.js +14 -0
- package/esm/word/render/renderDrawing.d.ts +9 -0
- package/esm/word/render/renderDrawing.js +255 -0
- package/esm/word/render/renderFont.d.ts +5 -0
- package/esm/word/render/renderFont.js +39 -0
- package/esm/word/render/renderGeom.d.ts +4 -0
- package/esm/word/render/renderGeom.js +14 -0
- package/esm/word/render/renderHeader.d.ts +6 -0
- package/esm/word/render/renderHeader.js +40 -0
- package/esm/word/render/renderHyperLink.d.ts +7 -0
- package/esm/word/render/renderHyperLink.js +44 -0
- package/esm/word/render/renderInlineText.d.ts +6 -0
- package/esm/word/render/renderInlineText.js +39 -0
- package/esm/word/render/renderInstrText.d.ts +8 -0
- package/esm/word/render/renderInstrText.js +40 -0
- package/esm/word/render/renderMath.d.ts +3 -0
- package/esm/word/render/renderMath.js +7 -0
- package/esm/word/render/renderNoBreakHyphen.js +9 -0
- package/esm/word/render/renderNotes.d.ts +5 -0
- package/esm/word/render/renderNotes.js +77 -0
- package/esm/word/render/renderNumbering.d.ts +7 -0
- package/esm/word/render/renderNumbering.js +159 -0
- package/esm/word/render/renderParagraph.d.ts +7 -0
- package/esm/word/render/renderParagraph.js +97 -0
- package/esm/word/render/renderPict.d.ts +6 -0
- package/esm/word/render/renderRuby.d.ts +6 -0
- package/esm/word/render/renderRuby.js +53 -0
- package/esm/word/render/renderRun.d.ts +16 -0
- package/esm/word/render/renderRun.js +146 -0
- package/esm/word/render/renderSection.d.ts +7 -0
- package/esm/word/render/renderSection.js +110 -0
- package/esm/word/render/renderSeparator.js +9 -0
- package/esm/word/render/renderSoftHyphen.js +9 -0
- package/esm/word/render/renderStyle.d.ts +13 -0
- package/esm/word/render/renderStyle.js +195 -0
- package/esm/word/render/renderSym.d.ts +3 -0
- package/esm/word/render/renderSym.js +10 -0
- package/esm/word/render/renderTab.d.ts +8 -0
- package/esm/word/render/renderTab.js +23 -0
- package/esm/word/render/renderTable.d.ts +6 -0
- package/esm/word/render/renderTable.js +189 -0
- package/esm/word/render/setElementStyle.d.ts +6 -0
- package/esm/word/render/setElementStyle.js +26 -0
- package/lib/Excel.d.ts +59 -0
- package/lib/Excel.js +222 -0
- package/lib/OfficeViewer.d.ts +10 -0
- package/lib/RenderOptions.d.ts +25 -0
- package/lib/UnSupport.d.ts +13 -0
- package/lib/UnSupport.js +37 -0
- package/lib/Word.d.ts +7 -24
- package/lib/Word.js +24 -21
- package/lib/common/__tests__/autoParse.test.d.ts +1 -0
- package/lib/common/autoParse.d.ts +9 -0
- package/lib/common/autoParse.js +196 -0
- package/lib/common/parseAttributes.d.ts +6 -0
- package/lib/common/parseAttributes.js +31 -0
- package/lib/common/parseChildren.d.ts +8 -0
- package/lib/common/parseContentType.d.ts +7 -0
- package/lib/common/parseContentType.js +54 -0
- package/lib/common/parseRelationship.d.ts +5 -0
- package/lib/common/parseRelationship.js +50 -0
- package/lib/createOfficeViewer.d.ts +16 -0
- package/lib/createOfficeViewer.js +102 -0
- package/lib/excel/StyleSheet.d.ts +8 -0
- package/lib/excel/StyleSheet.js +15 -0
- package/lib/excel/Workbook.d.ts +180 -0
- package/lib/excel/Workbook.js +213 -0
- package/lib/excel/data/LocalDataProvider.d.ts +146 -0
- package/lib/excel/data/LocalDataProvider.js +792 -0
- package/lib/excel/data/applyAutoFilter.d.ts +10 -0
- package/lib/excel/data/applyAutoFilter.js +90 -0
- package/lib/excel/data/autoFilter/CellValueNum.d.ts +5 -0
- package/lib/excel/data/autoFilter/__test__/customFilter.test.d.ts +1 -0
- package/lib/excel/data/autoFilter/__test__/filters.test.d.ts +1 -0
- package/lib/excel/data/autoFilter/__test__/sortByRange.test.d.ts +1 -0
- package/lib/excel/data/autoFilter/applySortState.d.ts +6 -0
- package/lib/excel/data/autoFilter/applySortState.js +40 -0
- package/lib/excel/data/autoFilter/customFilter.d.ts +6 -0
- package/lib/excel/data/autoFilter/customFilter.js +82 -0
- package/lib/excel/data/autoFilter/evalCustomFilter.d.ts +9 -0
- package/lib/excel/data/autoFilter/evalCustomFilter.js +65 -0
- package/lib/excel/data/autoFilter/filters.d.ts +3 -0
- package/lib/excel/data/autoFilter/filters.js +59 -0
- package/lib/excel/data/autoFilter/inDateGroupItems.d.ts +6 -0
- package/lib/excel/data/autoFilter/inDateGroupItems.js +75 -0
- package/lib/excel/data/autoFilter/sortByRange.d.ts +8 -0
- package/lib/excel/data/autoFilter/sortByRange.js +55 -0
- package/lib/excel/data/defaultFont.d.ts +25 -0
- package/lib/excel/data/defaultFont.js +31 -0
- package/lib/excel/data/getThemeColor.d.ts +2 -0
- package/lib/excel/data/getThemeColor.js +75 -0
- package/lib/excel/data/numfmt/amountInWords.d.ts +4 -0
- package/lib/excel/data/numfmt/amountInWords.js +43 -0
- package/lib/excel/data/numfmtExtend.d.ts +10 -0
- package/lib/excel/data/numfmtExtend.js +33 -0
- package/lib/excel/edit/Command.d.ts +19 -0
- package/lib/excel/edit/ui/CellEditor.d.ts +27 -0
- package/lib/excel/edit/ui/CellEditor.js +69 -0
- package/lib/excel/io/csv/emptyXLSX.d.ts +2 -0
- package/lib/excel/io/csv/emptyXLSX.js +10 -0
- package/lib/excel/io/excel/__tests__/parseSharedStrings.test.d.ts +1 -0
- package/lib/excel/io/excel/drawing/getRelationPath.d.ts +2 -0
- package/lib/excel/io/excel/drawing/getRelationPath.js +15 -0
- package/lib/excel/io/excel/drawing/parseAnchorCommon.d.ts +9 -0
- package/lib/excel/io/excel/drawing/parseAnchorCommon.js +82 -0
- package/lib/excel/io/excel/drawing/parseChart.d.ts +3 -0
- package/lib/excel/io/excel/drawing/parseChart.js +15 -0
- package/lib/excel/io/excel/drawing/parseDrawing.d.ts +8 -0
- package/lib/excel/io/excel/drawing/parseDrawing.js +107 -0
- package/lib/excel/io/excel/drawing/parsePic.d.ts +4 -0
- package/lib/excel/io/excel/drawing/parsePic.js +27 -0
- package/lib/excel/io/excel/drawing/parseShape.d.ts +4 -0
- package/lib/excel/io/excel/drawing/parseShape.js +163 -0
- package/lib/excel/io/excel/getRelPath.d.ts +4 -0
- package/lib/excel/io/excel/getRelPath.js +14 -0
- package/lib/excel/io/excel/initValueForContainsBlanks.d.ts +6 -0
- package/lib/excel/io/excel/initValueForContainsBlanks.js +62 -0
- package/lib/excel/io/excel/initValueForTable.d.ts +5 -0
- package/lib/excel/io/excel/initValueForTable.js +35 -0
- package/lib/excel/io/excel/parseDefinedNames.d.ts +5 -0
- package/lib/excel/io/excel/parseDefinedNames.js +15 -0
- package/lib/excel/io/excel/parseSharedStrings.d.ts +9 -0
- package/lib/excel/io/excel/parseSharedStrings.js +177 -0
- package/lib/excel/io/excel/parseSheet.d.ts +9 -0
- package/lib/excel/io/excel/parseSheet.js +88 -0
- package/lib/excel/io/excel/parseTableParts.d.ts +5 -0
- package/lib/excel/io/excel/parseTableParts.js +71 -0
- package/lib/excel/io/excel/parseTableStyleDef.d.ts +3 -0
- package/lib/excel/io/excel/parseTheme.d.ts +6 -0
- package/lib/excel/io/excel/parseTheme.js +46 -0
- package/lib/excel/io/excel/parseWorkbook.d.ts +8 -0
- package/lib/excel/io/excel/parseWorkbook.js +109 -0
- package/lib/excel/io/excel/parseWorkbookPr.d.ts +6 -0
- package/lib/excel/io/excel/parseWorkbookPr.js +17 -0
- package/lib/excel/io/excel/parseWorkbookView.d.ts +6 -0
- package/lib/excel/io/excel/parseWorkbookView.js +17 -0
- package/lib/excel/io/excel/parseWorksheet.d.ts +9 -0
- package/lib/excel/io/excel/parseWorksheet.js +211 -0
- package/lib/excel/io/excel/preset/defaultTheme.d.ts +1 -0
- package/lib/excel/io/excel/preset/defaultTheme.js +7 -0
- package/lib/excel/io/excel/preset/presetCellStyles.d.ts +3 -0
- package/lib/excel/io/excel/preset/presetIconSet.d.ts +6 -0
- package/lib/excel/io/excel/preset/presetIconSet.js +59 -0
- package/lib/excel/io/excel/preset/presetIcons.d.ts +3 -0
- package/lib/excel/io/excel/preset/presetIcons.js +48 -0
- package/lib/excel/io/excel/preset/presetTableStyles.d.ts +3 -0
- package/lib/excel/io/excel/preset/presetTableStyles.js +35121 -0
- package/lib/excel/io/excel/stylesheet/parseColor.d.ts +5 -0
- package/lib/excel/io/excel/stylesheet/parseColor.js +15 -0
- package/lib/excel/io/excel/util/Range.d.ts +66 -0
- package/lib/excel/io/excel/util/Range.js +132 -0
- package/lib/excel/io/excel/util/__tests__/makeBlankValue.test.d.ts +1 -0
- package/lib/excel/io/excel/util/decodeAddress.d.ts +11 -0
- package/lib/excel/io/excel/util/decodeAddress.js +67 -0
- package/lib/excel/io/excel/util/fromExcelDate.d.ts +14 -0
- package/lib/excel/io/excel/util/fromExcelDate.js +30 -0
- package/lib/excel/io/excel/util/lettersToNumber.d.ts +4 -0
- package/lib/excel/io/excel/util/makeBlankValue.d.ts +6 -0
- package/lib/excel/io/excel/util/makeBlankValue.js +25 -0
- package/lib/excel/io/excel/util/numberToLetters.d.ts +4 -0
- package/lib/excel/io/excel/util/numberToLetters.js +17 -0
- package/lib/excel/io/excel/worksheet/parseSheetData.d.ts +11 -0
- package/lib/excel/io/excel/worksheet/parseSheetData.js +158 -0
- package/lib/excel/io/parseExcel.d.ts +10 -0
- package/lib/excel/io/parseExcel.js +43 -0
- package/lib/excel/lang/en_US.d.ts +24 -0
- package/lib/excel/lang/en_US.js +29 -0
- package/lib/excel/lang/lang.d.ts +30 -0
- package/lib/excel/lang/lang.js +23 -0
- package/lib/excel/lang/zh_CN.d.ts +2 -0
- package/lib/excel/lang/zh_CN.js +29 -0
- package/lib/excel/print/printStyle.d.ts +4 -0
- package/lib/excel/print/printStyle.js +12 -0
- package/lib/excel/print/renderInIframe.d.ts +7 -0
- package/lib/excel/print/renderInIframe.js +30 -0
- package/lib/excel/render/Canvas.d.ts +108 -0
- package/lib/excel/render/Canvas.js +336 -0
- package/lib/excel/render/Consts.d.ts +20 -0
- package/lib/excel/render/Consts.js +30 -0
- package/lib/excel/render/ExcelRender.d.ts +120 -0
- package/lib/excel/render/ExcelRender.js +426 -0
- package/lib/excel/render/Icons.d.ts +13 -0
- package/lib/excel/render/Icons.js +19 -0
- package/lib/excel/render/IndexedColors.d.ts +1 -0
- package/lib/excel/render/IndexedColors.js +74 -0
- package/lib/excel/render/Line.d.ts +6 -0
- package/lib/excel/render/Rect.d.ts +17 -0
- package/lib/excel/render/Rect.js +25 -0
- package/lib/excel/render/ScrollBar.d.ts +54 -0
- package/lib/excel/render/ScrollBar.js +141 -0
- package/lib/excel/render/SelectionCanvas.d.ts +33 -0
- package/lib/excel/render/SelectionCanvas.js +96 -0
- package/lib/excel/render/SheetCanvas.d.ts +33 -0
- package/lib/excel/render/SheetCanvas.js +46 -0
- package/lib/excel/render/__test__/autoWrapText.test.d.ts +1 -0
- package/lib/excel/render/__test__/tokenizer.test.d.ts +1 -0
- package/lib/excel/render/autoFilter/AutoFilterIconUI.d.ts +33 -0
- package/lib/excel/render/autoFilter/AutoFilterIconUI.js +89 -0
- package/lib/excel/render/autoFilter/AutoFilterMenuUI.d.ts +13 -0
- package/lib/excel/render/autoFilter/AutoFilterMenuUI.js +38 -0
- package/lib/excel/render/autoFilter/filterColumn/CustomFiltersUI.d.ts +46 -0
- package/lib/excel/render/autoFilter/filterColumn/CustomFiltersUI.js +162 -0
- package/lib/excel/render/autoFilter/filterColumn/FilterColumnUI.d.ts +10 -0
- package/lib/excel/render/autoFilter/filterColumn/FilterColumnUI.js +51 -0
- package/lib/excel/render/autoFilter/filterColumn/FiltersUI.d.ts +10 -0
- package/lib/excel/render/autoFilter/filterColumn/FiltersUI.js +41 -0
- package/lib/excel/render/autoFilter/filterColumn/OperatorTypeUI.d.ts +5 -0
- package/lib/excel/render/autoFilter/filterColumn/buildOperatorOptions.d.ts +2 -0
- package/lib/excel/render/autoFilter/filterColumn/buildOperatorOptions.js +99 -0
- package/lib/excel/render/autoFilter/filterColumn/fromOperatorUI.d.ts +6 -0
- package/lib/excel/render/autoFilter/filterColumn/fromOperatorUI.js +52 -0
- package/lib/excel/render/autoFilter/filterColumn/getCustomFilters.d.ts +2 -0
- package/lib/excel/render/autoFilter/filterColumn/getCustomFilters.js +14 -0
- package/lib/excel/render/autoFilter/filterColumn/getFilterValues.d.ts +5 -0
- package/lib/excel/render/autoFilter/filterColumn/getFilterValues.js +35 -0
- package/lib/excel/render/autoFilter/filterColumn/hasFilterColumn.d.ts +5 -0
- package/lib/excel/render/autoFilter/filterColumn/hasFilterColumn.js +41 -0
- package/lib/excel/render/autoFilter/filterColumn/setCustomFilters.d.ts +5 -0
- package/lib/excel/render/autoFilter/filterColumn/setCustomFilters.js +23 -0
- package/lib/excel/render/autoFilter/filterColumn/setFilterValues.d.ts +6 -0
- package/lib/excel/render/autoFilter/filterColumn/setFilterValues.js +49 -0
- package/lib/excel/render/autoFilter/filterColumn/toOperatorUI.d.ts +6 -0
- package/lib/excel/render/autoFilter/filterColumn/toOperatorUI.js +34 -0
- package/lib/excel/render/autoFilter/renderAutoFilter.d.ts +2 -0
- package/lib/excel/render/autoFilter/renderAutoFilter.js +35 -0
- package/lib/excel/render/autoFilter/renderAutoFilterIcon.d.ts +6 -0
- package/lib/excel/render/autoFilter/renderAutoFilterIcon.js +56 -0
- package/lib/excel/render/autoFilter/sortState/ColumnSortOrder.d.ts +1 -0
- package/lib/excel/render/autoFilter/sortState/SortButtonUI.d.ts +12 -0
- package/lib/excel/render/autoFilter/sortState/SortButtonUI.js +45 -0
- package/lib/excel/render/autoFilter/sortState/SortStateUI.d.ts +22 -0
- package/lib/excel/render/autoFilter/sortState/SortStateUI.js +69 -0
- package/lib/excel/render/autoFilter/sortState/getColumnSortOrder.d.ts +6 -0
- package/lib/excel/render/autoFilter/sortState/getColumnSortOrder.js +40 -0
- package/lib/excel/render/autoFilter/sortState/setColumnSortOrder.d.ts +7 -0
- package/lib/excel/render/autoFilter/sortState/setColumnSortOrder.js +59 -0
- package/lib/excel/render/canvas/draw.d.ts +5 -0
- package/lib/excel/render/canvas/drawOffscreenCanvas.d.ts +6 -0
- package/lib/excel/render/canvas/drawOffscreenCanvas.js +18 -0
- package/lib/excel/render/canvas/setPixelRatio.d.ts +4 -0
- package/lib/excel/render/canvas/setPixelRatio.js +21 -0
- package/lib/excel/render/cell/CellInfoWithSize.d.ts +5 -0
- package/lib/excel/render/cell/LinkPosition.d.ts +14 -0
- package/lib/excel/render/cell/autoClip.d.ts +6 -0
- package/lib/excel/render/cell/autoClip.js +48 -0
- package/lib/excel/render/cell/autoWrapText.d.ts +24 -0
- package/lib/excel/render/cell/autoWrapText.js +161 -0
- package/lib/excel/render/cell/border/drawDoubleBorder.d.ts +2 -0
- package/lib/excel/render/cell/border/drawDoubleBorder.js +79 -0
- package/lib/excel/render/cell/border/setLineStyle.d.ts +5 -0
- package/lib/excel/render/cell/border/setLineStyle.js +47 -0
- package/lib/excel/render/cell/cellToMergeCell.d.ts +8 -0
- package/lib/excel/render/cell/cellToMergeCell.js +39 -0
- package/lib/excel/render/cell/checkFont.d.ts +8 -0
- package/lib/excel/render/cell/checkFont.js +36 -0
- package/lib/excel/render/cell/drawCell.d.ts +19 -0
- package/lib/excel/render/cell/drawCell.js +48 -0
- package/lib/excel/render/cell/drawCellBackground.d.ts +3 -0
- package/lib/excel/render/cell/drawCellBackground.js +15 -0
- package/lib/excel/render/cell/drawCellBorder.d.ts +6 -0
- package/lib/excel/render/cell/drawCellBorder.js +51 -0
- package/lib/excel/render/cell/drawCells.d.ts +9 -0
- package/lib/excel/render/cell/drawCells.js +58 -0
- package/lib/excel/render/cell/drawDataBar.d.ts +3 -0
- package/lib/excel/render/cell/drawDataBar.js +35 -0
- package/lib/excel/render/cell/drawDataBarX14.d.ts +7 -0
- package/lib/excel/render/cell/drawDataBarX14.js +52 -0
- package/lib/excel/render/cell/drawIconSet.d.ts +3 -0
- package/lib/excel/render/cell/drawIconSet.js +17 -0
- package/lib/excel/render/cell/drawMultiLineText.d.ts +8 -0
- package/lib/excel/render/cell/drawMultiLineText.js +111 -0
- package/lib/excel/render/cell/drawSingleLineRichText.d.ts +10 -0
- package/lib/excel/render/cell/drawSingleLineRichText.js +59 -0
- package/lib/excel/render/cell/drawSingleLineText.d.ts +17 -0
- package/lib/excel/render/cell/drawSingleLineText.js +77 -0
- package/lib/excel/render/cell/drawTextInCell.d.ts +15 -0
- package/lib/excel/render/cell/drawTextInCell.js +109 -0
- package/lib/excel/render/cell/frozen/drawFrozen.d.ts +17 -0
- package/lib/excel/render/cell/frozen/drawFrozen.js +49 -0
- package/lib/excel/render/cell/frozen/drawLeftFrozen.d.ts +10 -0
- package/lib/excel/render/cell/frozen/drawLeftFrozen.js +30 -0
- package/lib/excel/render/cell/frozen/drawTopFrozen.d.ts +10 -0
- package/lib/excel/render/cell/frozen/drawTopFrozen.js +30 -0
- package/lib/excel/render/cell/frozen/drawTopLeftFrozen.d.ts +14 -0
- package/lib/excel/render/cell/frozen/drawTopLeftFrozen.js +50 -0
- package/lib/excel/render/cell/frozen/getFrozenLeftViewPointRange.d.ts +14 -0
- package/lib/excel/render/cell/frozen/getFrozenLeftViewPointRange.js +36 -0
- package/lib/excel/render/cell/frozen/getFrozenRange.d.ts +5 -0
- package/lib/excel/render/cell/frozen/getFrozenRange.js +29 -0
- package/lib/excel/render/cell/frozen/getFrozenTopLeftViewPointRange.d.ts +5 -0
- package/lib/excel/render/cell/frozen/getFrozenTopLeftViewPointRange.js +26 -0
- package/lib/excel/render/cell/frozen/getFrozenTopViewPointRange.d.ts +14 -0
- package/lib/excel/render/cell/frozen/getFrozenTopViewPointRange.js +37 -0
- package/lib/excel/render/cell/genFontStr.d.ts +31 -0
- package/lib/excel/render/cell/genFontStr.js +68 -0
- package/lib/excel/render/cell/getBackgroundColor.d.ts +3 -0
- package/lib/excel/render/cell/getBackgroundColor.js +42 -0
- package/lib/excel/render/cell/isPointerOnLink.d.ts +5 -0
- package/lib/excel/render/cell/isPointerOnLink.js +43 -0
- package/lib/excel/render/cell/measureTextWithCache.d.ts +23 -0
- package/lib/excel/render/cell/measureTextWithCache.js +35 -0
- package/lib/excel/render/cell/tokenizer.d.ts +24 -0
- package/lib/excel/render/cell/tokenizer.js +98 -0
- package/lib/excel/render/dnd/DragState.d.ts +22 -0
- package/lib/excel/render/dnd/getMouseRelativePosition.d.ts +7 -0
- package/lib/excel/render/dnd/getMouseRelativePosition.js +15 -0
- package/lib/excel/render/dnd/handleDragCell.d.ts +4 -0
- package/lib/excel/render/dnd/handleDragCell.js +79 -0
- package/lib/excel/render/dnd/handleDragColGrid.d.ts +4 -0
- package/lib/excel/render/dnd/handleDragColGrid.js +27 -0
- package/lib/excel/render/dnd/handleDragColHeader.d.ts +4 -0
- package/lib/excel/render/dnd/handleDragColHeader.js +55 -0
- package/lib/excel/render/dnd/handleDragRowGrid.d.ts +4 -0
- package/lib/excel/render/dnd/handleDragRowGrid.js +27 -0
- package/lib/excel/render/dnd/handleDragRowHeader.d.ts +4 -0
- package/lib/excel/render/dnd/handleDragRowHeader.js +55 -0
- package/lib/excel/render/dnd/handleMousedown.d.ts +12 -0
- package/lib/excel/render/dnd/handleMousedown.js +80 -0
- package/lib/excel/render/dnd/handleMousemove.d.ts +4 -0
- package/lib/excel/render/dnd/handleMousemove.js +42 -0
- package/lib/excel/render/dnd/handleMouseup.d.ts +1 -0
- package/lib/excel/render/dnd/handleMouseup.js +21 -0
- package/lib/excel/render/dnd/mousedownCell.d.ts +10 -0
- package/lib/excel/render/dnd/mousedownCell.js +35 -0
- package/lib/excel/render/dnd/mousedownColHeader.d.ts +22 -0
- package/lib/excel/render/dnd/mousedownColHeader.js +33 -0
- package/lib/excel/render/dnd/mousedownCorner.d.ts +8 -0
- package/lib/excel/render/dnd/mousedownCorner.js +17 -0
- package/lib/excel/render/dnd/mousedownRowHeader.d.ts +22 -0
- package/lib/excel/render/dnd/mousedownRowHeader.js +33 -0
- package/lib/excel/render/dnd/removeEventListener.d.ts +4 -0
- package/lib/excel/render/dnd/removeEventListener.js +18 -0
- package/lib/excel/render/dnd/selectAll.d.ts +5 -0
- package/lib/excel/render/dnd/selectAll.js +30 -0
- package/lib/excel/render/drawing/BaseDrawingRender.d.ts +11 -0
- package/lib/excel/render/drawing/BaseDrawingRender.js +33 -0
- package/lib/excel/render/drawing/EChartsRender.d.ts +7 -0
- package/lib/excel/render/drawing/EChartsRender.js +42 -0
- package/lib/excel/render/drawing/PicRender.d.ts +6 -0
- package/lib/excel/render/drawing/PicRender.js +61 -0
- package/lib/excel/render/drawing/ResizeBox.d.ts +51 -0
- package/lib/excel/render/drawing/ResizeBox.js +87 -0
- package/lib/excel/render/drawing/chart/buildLabel.d.ts +63 -0
- package/lib/excel/render/drawing/chart/buildLabel.js +10 -0
- package/lib/excel/render/drawing/chart/calcPercentStacked.d.ts +5 -0
- package/lib/excel/render/drawing/chart/calcPercentStacked.js +47 -0
- package/lib/excel/render/drawing/chart/convertAxis.d.ts +11 -0
- package/lib/excel/render/drawing/chart/convertAxis.js +59 -0
- package/lib/excel/render/drawing/chart/convertLegend.d.ts +5 -0
- package/lib/excel/render/drawing/chart/convertLegend.js +42 -0
- package/lib/excel/render/drawing/chart/convertTitle.d.ts +8 -0
- package/lib/excel/render/drawing/chart/convertTitle.js +58 -0
- package/lib/excel/render/drawing/chart/fromAreaChart.d.ts +74 -0
- package/lib/excel/render/drawing/chart/fromAreaChart.js +55 -0
- package/lib/excel/render/drawing/chart/fromBarChart.d.ts +11 -0
- package/lib/excel/render/drawing/chart/fromBarChart.js +48 -0
- package/lib/excel/render/drawing/chart/fromDoughnutChart.d.ts +18 -0
- package/lib/excel/render/drawing/chart/fromDoughnutChart.js +52 -0
- package/lib/excel/render/drawing/chart/fromLineChart.d.ts +73 -0
- package/lib/excel/render/drawing/chart/fromLineChart.js +54 -0
- package/lib/excel/render/drawing/chart/fromPieChart.d.ts +10 -0
- package/lib/excel/render/drawing/chart/fromPieChart.js +44 -0
- package/lib/excel/render/drawing/chart/getData.d.ts +6 -0
- package/lib/excel/render/drawing/chart/getData.js +20 -0
- package/lib/excel/render/drawing/chart/getStack.d.ts +5 -0
- package/lib/excel/render/drawing/chart/getStack.js +21 -0
- package/lib/excel/render/drawing/convertToEChartOptions.d.ts +8 -0
- package/lib/excel/render/drawing/convertToEChartOptions.js +70 -0
- package/lib/excel/render/drawing/drawChart.d.ts +4 -0
- package/lib/excel/render/drawing/drawChart.js +53 -0
- package/lib/excel/render/drawing/drawDrawing.d.ts +8 -0
- package/lib/excel/render/drawing/drawDrawing.js +109 -0
- package/lib/excel/render/drawing/drawPic.d.ts +5 -0
- package/lib/excel/render/drawing/drawPic.js +72 -0
- package/lib/excel/render/drawing/drawShape.d.ts +9 -0
- package/lib/excel/render/drawing/drawShape.js +138 -0
- package/lib/excel/render/drawing/findPositionInViewRange.d.ts +7 -0
- package/lib/excel/render/drawing/findPositionInViewRange.js +32 -0
- package/lib/excel/render/drawing/getAbsoluteAnchorPosition.d.ts +11 -0
- package/lib/excel/render/drawing/getAbsoluteAnchorPosition.js +37 -0
- package/lib/excel/render/drawing/getOneCellAnchorPosition.d.ts +8 -0
- package/lib/excel/render/drawing/getOneCellAnchorPosition.js +35 -0
- package/lib/excel/render/drawing/getPositionByMaker.d.ts +11 -0
- package/lib/excel/render/drawing/getRectFromAnchorPoint.d.ts +18 -0
- package/lib/excel/render/drawing/getRectFromAnchorPoint.js +48 -0
- package/lib/excel/render/drawing/getTwoCellAnchorPosition.d.ts +8 -0
- package/lib/excel/render/drawing/getTwoCellAnchorPosition.js +41 -0
- package/lib/excel/render/formulaBar/FormulaBar.d.ts +29 -0
- package/lib/excel/render/formulaBar/FormulaBar.js +90 -0
- package/lib/excel/render/grid/drawGridLines.d.ts +12 -0
- package/lib/excel/render/grid/drawGridLines.js +45 -0
- package/lib/excel/render/header/drawRowColHeaders.d.ts +10 -0
- package/lib/excel/render/header/drawRowColHeaders.js +148 -0
- package/lib/excel/render/keyboard/handleCopy.d.ts +5 -0
- package/lib/excel/render/keyboard/handleCopy.js +23 -0
- package/lib/excel/render/keyboard/handleKeydown.d.ts +5 -0
- package/lib/excel/render/keyboard/handleKeydown.js +18 -0
- package/lib/excel/render/keyboard/handlePaste.d.ts +5 -0
- package/lib/excel/render/keyboard/handlePaste.js +20 -0
- package/lib/excel/render/keyboard/handleSelectAll.d.ts +5 -0
- package/lib/excel/render/keyboard/handleSelectAll.js +21 -0
- package/lib/excel/render/keyboard/handleSheetArrowKey.d.ts +5 -0
- package/lib/excel/render/keyboard/handleSheetArrowKey.js +45 -0
- package/lib/excel/render/scroll/Scroll.d.ts +7 -0
- package/lib/excel/render/selection/Position.d.ts +9 -0
- package/lib/excel/render/selection/SheetSelection.d.ts +29 -0
- package/lib/excel/render/selection/binarySearchSize.d.ts +8 -0
- package/lib/excel/render/selection/binarySearchSize.js +31 -0
- package/lib/excel/render/selection/buildHTML/buildBorder.d.ts +6 -0
- package/lib/excel/render/selection/buildHTML/buildBorder.js +40 -0
- package/lib/excel/render/selection/buildHTML/cellInfoToStyle.d.ts +6 -0
- package/lib/excel/render/selection/buildHTML/cellInfoToStyle.js +70 -0
- package/lib/excel/render/selection/buildHTML/rangeToHTML.d.ts +11 -0
- package/lib/excel/render/selection/buildHTML/rangeToHTML.js +68 -0
- package/lib/excel/render/selection/copySelection.d.ts +7 -0
- package/lib/excel/render/selection/copySelection.js +32 -0
- package/lib/excel/render/selection/drawAllSelection.d.ts +7 -0
- package/lib/excel/render/selection/drawAllSelection.js +21 -0
- package/lib/excel/render/selection/drawCellRanges.d.ts +10 -0
- package/lib/excel/render/selection/drawCellRanges.js +49 -0
- package/lib/excel/render/selection/drawCellSelection.d.ts +13 -0
- package/lib/excel/render/selection/drawCellSelection.js +81 -0
- package/lib/excel/render/selection/drawColSelection.d.ts +12 -0
- package/lib/excel/render/selection/drawColSelection.js +24 -0
- package/lib/excel/render/selection/drawRowSelection.d.ts +12 -0
- package/lib/excel/render/selection/drawRowSelection.js +25 -0
- package/lib/excel/render/selection/drawSelectionHeaderHighlight.d.ts +6 -0
- package/lib/excel/render/selection/drawSelectionHeaderHighlight.js +21 -0
- package/lib/excel/render/selection/findCell.d.ts +7 -0
- package/lib/excel/render/selection/findCell.js +19 -0
- package/lib/excel/render/selection/findInViewRange.d.ts +13 -0
- package/lib/excel/render/selection/findInViewRange.js +16 -0
- package/lib/excel/render/selection/findInViewRangeX.d.ts +10 -0
- package/lib/excel/render/selection/findInViewRangeX.js +46 -0
- package/lib/excel/render/selection/findInViewRangeY.d.ts +10 -0
- package/lib/excel/render/selection/findInViewRangeY.js +45 -0
- package/lib/excel/render/selection/getCellPosition.d.ts +43 -0
- package/lib/excel/render/selection/getCellPosition.js +137 -0
- package/lib/excel/render/selection/getRangePosition.d.ts +12 -0
- package/lib/excel/render/selection/getRangePosition.js +71 -0
- package/lib/excel/render/selection/hitTest.d.ts +41 -0
- package/lib/excel/render/selection/hitTest.js +50 -0
- package/lib/excel/render/selection/hitTestInRange.d.ts +7 -0
- package/lib/excel/render/selection/hitTestInRange.js +60 -0
- package/lib/excel/render/selection/updateCursor.d.ts +5 -0
- package/lib/excel/render/selection/updateCursor.js +26 -0
- package/lib/excel/render/sheetTab/SheetList.d.ts +43 -0
- package/lib/excel/render/sheetTab/SheetList.js +289 -0
- package/lib/excel/render/sheetTab/SheetTabBar.d.ts +8 -0
- package/lib/excel/render/sheetTab/SheetTabBar.js +24 -0
- package/lib/excel/render/sheetTab/StatusBar.d.ts +14 -0
- package/lib/excel/render/sheetTab/StatusBar.js +87 -0
- package/lib/excel/render/sheetTab/ZoomLevel.d.ts +6 -0
- package/lib/excel/render/sheetTab/ZoomLevel.js +43 -0
- package/lib/excel/render/sparkline/Numbers.d.ts +1 -0
- package/lib/excel/render/sparkline/applyColor.d.ts +7 -0
- package/lib/excel/render/sparkline/applyColor.js +40 -0
- package/lib/excel/render/sparkline/drawSparkline.d.ts +7 -0
- package/lib/excel/render/sparkline/drawSparkline.js +90 -0
- package/lib/excel/render/sparkline/renderColumn.d.ts +7 -0
- package/lib/excel/render/sparkline/renderColumn.js +51 -0
- package/lib/excel/render/sparkline/renderLine.d.ts +7 -0
- package/lib/excel/render/sparkline/renderLine.js +111 -0
- package/lib/excel/render/sparkline/renderSparkline.d.ts +9 -0
- package/lib/excel/render/sparkline/renderSparkline.js +63 -0
- package/lib/excel/render/sparkline/renderStacked.d.ts +7 -0
- package/lib/excel/render/sparkline/renderStacked.js +65 -0
- package/lib/excel/render/ui/Button.d.ts +7 -0
- package/lib/excel/render/ui/CheckBox.d.ts +16 -0
- package/lib/excel/render/ui/CheckBox.js +52 -0
- package/lib/excel/render/ui/CheckBoxList.d.ts +16 -0
- package/lib/excel/render/ui/CheckBoxList.js +113 -0
- package/lib/excel/render/ui/Divider.d.ts +3 -0
- package/lib/excel/render/ui/Divider.js +17 -0
- package/lib/excel/render/ui/Input.d.ts +11 -0
- package/lib/excel/render/ui/Input.js +52 -0
- package/lib/excel/render/ui/Radio.d.ts +11 -0
- package/lib/excel/render/ui/Radio.js +56 -0
- package/lib/excel/render/ui/Select.d.ts +13 -0
- package/lib/excel/render/ui/Select.js +33 -0
- package/lib/excel/render/widget/Widget.d.ts +29 -0
- package/lib/excel/sheet/BuiltInNumFmt.d.ts +5 -0
- package/lib/excel/sheet/BuiltInNumFmt.js +43 -0
- package/lib/excel/sheet/ColWidth.d.ts +19 -0
- package/lib/excel/sheet/ColWidth.js +36 -0
- package/lib/excel/sheet/ExcelRenderOptions.d.ts +149 -0
- package/lib/excel/sheet/RangeCache.d.ts +32 -0
- package/lib/excel/sheet/RangeCache.js +105 -0
- package/lib/excel/sheet/RowFilter.d.ts +3 -0
- package/lib/excel/sheet/Sheet.d.ts +280 -0
- package/lib/excel/sheet/Sheet.js +679 -0
- package/lib/excel/sheet/SheetBounding.d.ts +22 -0
- package/lib/excel/sheet/ViewRange.d.ts +52 -0
- package/lib/excel/sheet/__test__/applyDxf.test.d.ts +1 -0
- package/lib/excel/sheet/__test__/colWidth.test.d.ts +1 -0
- package/lib/excel/sheet/__test__/getViewRange.test.d.ts +1 -0
- package/lib/excel/sheet/applyConditionalFormat.d.ts +6 -0
- package/lib/excel/sheet/applyConditionalFormat.js +116 -0
- package/lib/excel/sheet/applyDxf.d.ts +6 -0
- package/lib/excel/sheet/applyDxf.js +24 -0
- package/lib/excel/sheet/applyTablePartsStyle.d.ts +6 -0
- package/lib/excel/sheet/applyTablePartsStyle.js +38 -0
- package/lib/excel/sheet/cfRule/__test__/aboveAverage.test.d.ts +1 -0
- package/lib/excel/sheet/cfRule/__test__/cellIs.test.d.ts +1 -0
- package/lib/excel/sheet/cfRule/__test__/top10.test.d.ts +1 -0
- package/lib/excel/sheet/cfRule/aboveAverage.d.ts +9 -0
- package/lib/excel/sheet/cfRule/aboveAverage.js +75 -0
- package/lib/excel/sheet/cfRule/applyCfRuleDxf.d.ts +7 -0
- package/lib/excel/sheet/cfRule/applyCfRuleDxf.js +17 -0
- package/lib/excel/sheet/cfRule/cellIs.d.ts +22 -0
- package/lib/excel/sheet/cfRule/cellIs.js +171 -0
- package/lib/excel/sheet/cfRule/colorScale.d.ts +8 -0
- package/lib/excel/sheet/cfRule/colorScale.js +145 -0
- package/lib/excel/sheet/cfRule/containsBlanks.d.ts +7 -0
- package/lib/excel/sheet/cfRule/containsBlanks.js +18 -0
- package/lib/excel/sheet/cfRule/containsErrors.d.ts +7 -0
- package/lib/excel/sheet/cfRule/containsErrors.js +19 -0
- package/lib/excel/sheet/cfRule/containsText.d.ts +7 -0
- package/lib/excel/sheet/cfRule/containsText.js +21 -0
- package/lib/excel/sheet/cfRule/dataBar.d.ts +8 -0
- package/lib/excel/sheet/cfRule/dataBar.js +236 -0
- package/lib/excel/sheet/cfRule/duplicateValues.d.ts +8 -0
- package/lib/excel/sheet/cfRule/duplicateValues.js +49 -0
- package/lib/excel/sheet/cfRule/getMinMax.d.ts +5 -0
- package/lib/excel/sheet/cfRule/getMinMax.js +41 -0
- package/lib/excel/sheet/cfRule/iconSet.d.ts +8 -0
- package/lib/excel/sheet/cfRule/iconSet.js +113 -0
- package/lib/excel/sheet/cfRule/notContainsText.d.ts +7 -0
- package/lib/excel/sheet/cfRule/notContainsText.js +21 -0
- package/lib/excel/sheet/cfRule/timePeriod.d.ts +9 -0
- package/lib/excel/sheet/cfRule/timePeriod.js +134 -0
- package/lib/excel/sheet/cfRule/top10.d.ts +9 -0
- package/lib/excel/sheet/cfRule/top10.js +77 -0
- package/lib/excel/sheet/cfRule/uniqueValues.d.ts +8 -0
- package/lib/excel/sheet/cfRule/uniqueValues.js +50 -0
- package/lib/excel/sheet/getCellAbsolutePosition.d.ts +10 -0
- package/lib/excel/sheet/getCellAbsolutePosition.js +45 -0
- package/lib/excel/sheet/getViewPointData.d.ts +24 -0
- package/lib/excel/sheet/getViewPointData.js +176 -0
- package/lib/excel/sheet/getViewRange.d.ts +68 -0
- package/lib/excel/sheet/getViewRange.js +199 -0
- package/lib/excel/sheet/table/__test__/calcTableRelativePosition.test.d.ts +1 -0
- package/lib/excel/sheet/table/applyTableStyle.d.ts +5 -0
- package/lib/excel/sheet/table/applyTableStyle.js +91 -0
- package/lib/excel/sheet/table/buildTableStyle.d.ts +13 -0
- package/lib/excel/sheet/table/buildTableStyle.js +72 -0
- package/lib/excel/sheet/table/calcTableRelativePosition.d.ts +11 -0
- package/lib/excel/sheet/table/calcTableRelativePosition.js +94 -0
- package/lib/excel/types/CT_Color.d.ts +9 -0
- package/lib/excel/types/CT_Color.js +24 -0
- package/lib/excel/types/CT_ExtensionList.d.ts +6 -0
- package/lib/excel/types/CT_ExtensionList.js +15 -0
- package/lib/excel/types/CT_Theme.d.ts +15 -0
- package/lib/excel/types/CellInfo.d.ts +57 -0
- package/lib/excel/types/CellValue.d.ts +14 -0
- package/lib/excel/types/DataBarDisplay.d.ts +58 -0
- package/lib/excel/types/ExcelFile.d.ts +12 -0
- package/lib/excel/types/Ext.d.ts +10 -0
- package/lib/excel/types/Ext.js +25 -0
- package/lib/excel/types/FontSize.d.ts +7 -0
- package/lib/excel/types/FontStyle.d.ts +16 -0
- package/lib/excel/types/IChartSpace.d.ts +7 -0
- package/lib/excel/types/IDataProvider.d.ts +158 -0
- package/lib/excel/types/IDrawing.d.ts +51 -0
- package/lib/excel/types/IRElt.d.ts +11 -0
- package/lib/excel/types/IRPrElt.d.ts +28 -0
- package/lib/excel/types/IRelationship.d.ts +10 -0
- package/lib/excel/types/ISheet.d.ts +14 -0
- package/lib/excel/types/ISheet.js +20 -0
- package/lib/excel/types/IWorkbook.d.ts +41 -0
- package/lib/excel/types/IWorksheet.d.ts +37 -0
- package/lib/excel/types/RangeRef.d.ts +21 -0
- package/lib/excel/types/RichText.d.ts +7 -0
- package/lib/excel/types/StringItem.d.ts +5 -0
- package/lib/excel/types/TableStyleDef.d.ts +8 -0
- package/lib/excel/types/X14CF/CT_Cfvo.d.ts +8 -0
- package/lib/excel/types/X14CF/CT_Cfvo.js +18 -0
- package/lib/excel/types/X14CF/ST_CfvoType.d.ts +1 -0
- package/lib/excel/types/X14CF/X14CfRule.d.ts +10 -0
- package/lib/excel/types/X14CF/X14CfRule.js +25 -0
- package/lib/excel/types/X14CF/X14ConditionalFormatting.d.ts +6 -0
- package/lib/excel/types/X14CF/X14ConditionalFormatting.js +15 -0
- package/lib/excel/types/X14CF/X14ConditionalFormattings.d.ts +6 -0
- package/lib/excel/types/X14CF/X14ConditionalFormattings.js +15 -0
- package/lib/excel/types/X14CF/X14DataBar.d.ts +18 -0
- package/lib/excel/types/X14CF/X14DataBar.js +58 -0
- package/lib/excel/types/X14CF/X14IconSet.d.ts +11 -0
- package/lib/excel/types/X14CF/X14IconSet.js +31 -0
- package/lib/excel/types/X14Sparkline/X14Sparkline.d.ts +6 -0
- package/lib/excel/types/X14Sparkline/X14Sparkline.js +14 -0
- package/lib/excel/types/X14Sparkline/X14SparklineGroup.d.ts +35 -0
- package/lib/excel/types/X14Sparkline/X14SparklineGroup.js +112 -0
- package/lib/excel/types/X14Sparkline/X14SparklineGroups.d.ts +6 -0
- package/lib/excel/types/X14Sparkline/X14SparklineGroups.js +15 -0
- package/lib/excel/types/X14Sparkline/x14:sparklines.d.ts +6 -0
- package/lib/excel/types/X14Sparkline/x14_sparklines.js +15 -0
- package/lib/excel/types/worksheet/CellData.d.ts +56 -0
- package/lib/excel/types/worksheet/CellData.js +43 -0
- package/lib/excel/types/worksheet/ICell.d.ts +39 -0
- package/lib/excel/types/worksheet/ICell.js +26 -0
- package/lib/index.d.ts +3 -1
- package/lib/index.js +4 -0
- package/lib/openxml/Attributes.d.ts +33 -0
- package/lib/openxml/Attributes.js +7 -0
- package/lib/openxml/ChartTypes.d.ts +2971 -0
- package/lib/openxml/ChartTypes.js +5416 -0
- package/lib/openxml/ContentType.d.ts +5 -0
- package/lib/openxml/ContentType.js +1 -1
- package/lib/openxml/DMLTypes.d.ts +1836 -0
- package/lib/openxml/DMLTypes.js +2988 -0
- package/lib/openxml/ExcelTypes.d.ts +5147 -0
- package/lib/openxml/ExcelTypes.js +5617 -0
- package/lib/openxml/Style.js +3 -3
- package/lib/openxml/Theme.js +1 -1
- package/lib/openxml/Types.d.ts +2757 -95
- package/lib/openxml/colorNameMap.d.ts +6 -0
- package/lib/openxml/drawing/Blip.d.ts +1 -1
- package/lib/openxml/drawing/CustomGeom.js +1 -1
- package/lib/openxml/drawing/Drawing.js +1 -1
- package/lib/openxml/drawing/Geom.js +1 -1
- package/lib/openxml/drawing/ShapeProperties.d.ts +1 -0
- package/lib/openxml/drawing/ShapeProperties.js +7 -6
- package/lib/openxml/drawing/Transform.js +1 -1
- package/lib/openxml/drawing/svg/shapeToSVG.d.ts +11 -2
- package/lib/openxml/drawing/svg/shapeToSVG.js +6 -6
- package/lib/openxml/word/Body.js +2 -2
- package/lib/openxml/word/Header.js +2 -2
- package/lib/openxml/word/Hyperlink.d.ts +1 -1
- package/lib/openxml/word/Note.js +1 -1
- package/lib/openxml/word/Paragraph.js +2 -2
- package/lib/openxml/word/Run.js +1 -1
- package/lib/openxml/word/Section.js +1 -1
- package/lib/openxml/word/Tab.js +1 -1
- package/lib/openxml/word/WDocument.js +1 -1
- package/lib/openxml/word/wps/WPS.js +2 -2
- package/lib/openxml/word/wps/WPSStyle.js +4 -4
- package/lib/package/PackageParser.d.ts +4 -0
- package/lib/package/XMLPackageParser.d.ts +4 -0
- package/lib/package/ZipPackageParser.d.ts +5 -1
- package/lib/package/ZipPackageParser.js +30 -2
- package/lib/util/EventEmitter.d.ts +38 -0
- package/lib/util/EventEmitter.js +116 -0
- package/lib/util/H.d.ts +7 -0
- package/lib/util/H.js +73 -0
- package/lib/util/LRUCache.d.ts +17 -0
- package/lib/util/LinkedMap.d.ts +40 -0
- package/lib/util/__tests__/autoSpace.test.d.ts +1 -0
- package/lib/util/__tests__/color.test.d.ts +1 -0
- package/lib/util/__tests__/replaceVar.test.d.ts +2 -0
- package/lib/util/__tests__/xml.test.d.ts +1 -0
- package/lib/util/arrayBufferToString.d.ts +1 -0
- package/lib/util/arrayBufferToString.js +11 -0
- package/lib/util/base64ToArrayBuffer.d.ts +1 -0
- package/lib/util/base64ToArrayBuffer.js +14 -0
- package/lib/util/binarySearch.d.ts +5 -0
- package/lib/util/binarySearch.js +27 -0
- package/lib/util/color.d.ts +5 -0
- package/lib/util/color.js +102 -0
- package/lib/util/createObject.d.ts +0 -1
- package/lib/util/createObject.js +2 -11
- package/lib/util/debounce.d.ts +1 -0
- package/lib/util/debounce.js +19 -0
- package/lib/util/emuToPx.d.ts +4 -0
- package/lib/util/emuToPx.js +18 -0
- package/lib/util/escapeHTML.d.ts +4 -0
- package/lib/util/escapeHTML.js +17 -0
- package/lib/util/fileType.d.ts +1 -0
- package/lib/util/fileType.js +17 -0
- package/lib/util/getChineseDay.d.ts +4 -0
- package/lib/util/isFontAvailable.d.ts +5 -0
- package/lib/util/isFontAvailable.js +41 -0
- package/lib/util/isNumeric.d.ts +4 -0
- package/lib/util/isNumeric.js +12 -0
- package/lib/util/isObject.d.ts +6 -0
- package/lib/util/isObject.js +14 -0
- package/lib/util/isValidURL.d.ts +4 -0
- package/lib/util/isValidURL.js +22 -0
- package/lib/util/isVisible.d.ts +4 -0
- package/lib/util/joinPath.d.ts +6 -0
- package/lib/util/joinPath.js +31 -0
- package/lib/util/mergeRun.js +1 -1
- package/lib/util/number.d.ts +9 -0
- package/lib/util/number.js +28 -0
- package/lib/util/objectEqual.d.ts +4 -0
- package/lib/util/objectEqual.js +17 -0
- package/lib/util/onClickOutside.d.ts +4 -0
- package/lib/util/onClickOutside.js +17 -0
- package/lib/util/ptToPx.d.ts +4 -0
- package/lib/util/ptToPx.js +14 -0
- package/lib/util/px2pt.d.ts +1 -0
- package/lib/util/px2pt.js +9 -0
- package/lib/util/runWorker.d.ts +6 -0
- package/lib/util/saxes.d.ts +638 -0
- package/lib/util/saxes.js +2081 -0
- package/lib/util/stringToArray.d.ts +10 -0
- package/lib/util/stringToArray.js +88 -0
- package/lib/util/stripNumber.d.ts +4 -0
- package/lib/util/stripNumber.js +18 -0
- package/lib/util/throttle.d.ts +5 -0
- package/lib/util/xml.d.ts +44 -0
- package/lib/util/xml.js +86 -0
- package/lib/util/xmlchars/xml/1.0/ed4.d.ts +31 -0
- package/lib/util/xmlchars/xml/1.0/ed5.d.ts +51 -0
- package/lib/util/xmlchars/xml/1.0/ed5.js +100 -0
- package/lib/util/xmlchars/xml/1.1/ed2.d.ts +73 -0
- package/lib/util/xmlchars/xml/1.1/ed2.js +25 -0
- package/lib/util/xmlchars/xmlns/1.0/ed3.d.ts +28 -0
- package/lib/util/xmlchars/xmlns/1.0/ed3.js +65 -0
- package/lib/word/parse/Footnotes.d.ts +3 -0
- package/lib/word/parse/Footnotes.js +29 -0
- package/lib/word/parse/modifyColor.js +110 -0
- package/lib/word/parse/parseBorder.d.ts +13 -0
- package/lib/word/parse/parseBorder.js +64 -0
- package/lib/word/parse/parseCellMargin.d.ts +2 -0
- package/lib/word/parse/parseChildColor.d.ts +4 -0
- package/lib/word/parse/parseChildColor.js +70 -0
- package/lib/word/parse/parseColor.d.ts +26 -0
- package/lib/word/parse/parseColor.js +133 -0
- package/lib/word/parse/parseEndnotes.d.ts +3 -0
- package/lib/word/parse/parseEndnotes.js +29 -0
- package/lib/word/parse/parseFont.d.ts +7 -0
- package/lib/word/parse/parseInd.d.ts +5 -0
- package/lib/word/parse/parseInsideBorders.d.ts +9 -0
- package/lib/word/parse/parsePr.d.ts +11 -0
- package/lib/word/parse/parsePr.js +428 -0
- package/lib/word/parse/parseShape.d.ts +10 -0
- package/lib/word/parse/parseShape.js +247 -0
- package/lib/word/parse/parseSpacing.d.ts +7 -0
- package/lib/word/parse/parseTable.d.ts +3 -0
- package/lib/word/parse/parseTable.js +66 -0
- package/lib/word/parse/parseTablePr.d.ts +3 -0
- package/lib/word/parse/parseTablePr.js +189 -0
- package/lib/word/parse/parseTc.d.ts +10 -0
- package/lib/word/parse/parseTc.js +68 -0
- package/lib/word/parse/parseTcPr.d.ts +5 -0
- package/lib/word/parse/parseTcPr.js +104 -0
- package/lib/word/parse/parseTextDirection.d.ts +2 -0
- package/lib/word/parse/parseTr.d.ts +6 -0
- package/lib/word/parse/parseTr.js +53 -0
- package/lib/word/parse/parseTrHeight.d.ts +2 -0
- package/lib/word/parse/parseTrPr.d.ts +3 -0
- package/lib/word/parse/parseTrPr.js +63 -0
- package/lib/word/render/fixAbsolutePosition.d.ts +8 -0
- package/lib/word/render/renderBody.d.ts +10 -0
- package/lib/word/render/renderBody.js +211 -0
- package/lib/word/render/renderBookmark.d.ts +6 -0
- package/lib/word/render/renderBookmark.js +21 -0
- package/lib/word/render/renderBr.d.ts +8 -0
- package/lib/word/render/renderBr.js +20 -0
- package/lib/word/render/renderCustGeom.d.ts +4 -0
- package/lib/word/render/renderCustGeom.js +14 -0
- package/lib/word/render/renderDocument.d.ts +7 -0
- package/lib/word/render/renderDocument.js +18 -0
- package/lib/word/render/renderDrawing.d.ts +9 -0
- package/lib/word/render/renderDrawing.js +259 -0
- package/lib/word/render/renderFont.d.ts +5 -0
- package/lib/word/render/renderFont.js +43 -0
- package/lib/word/render/renderGeom.d.ts +4 -0
- package/lib/word/render/renderGeom.js +18 -0
- package/lib/word/render/renderHeader.d.ts +6 -0
- package/lib/word/render/renderHeader.js +44 -0
- package/lib/word/render/renderHyperLink.d.ts +7 -0
- package/lib/word/render/renderHyperLink.js +48 -0
- package/lib/word/render/renderInlineText.d.ts +6 -0
- package/lib/word/render/renderInlineText.js +43 -0
- package/lib/word/render/renderInstrText.d.ts +8 -0
- package/lib/word/render/renderInstrText.js +44 -0
- package/lib/word/render/renderMath.d.ts +3 -0
- package/lib/word/render/renderMath.js +11 -0
- package/lib/word/render/renderNoBreakHyphen.js +13 -0
- package/lib/word/render/renderNotes.d.ts +5 -0
- package/lib/word/render/renderNotes.js +81 -0
- package/lib/word/render/renderNumbering.d.ts +7 -0
- package/lib/word/render/renderNumbering.js +163 -0
- package/lib/word/render/renderParagraph.d.ts +7 -0
- package/lib/word/render/renderParagraph.js +101 -0
- package/lib/word/render/renderPict.d.ts +6 -0
- package/lib/word/render/renderRuby.d.ts +6 -0
- package/lib/word/render/renderRuby.js +57 -0
- package/lib/word/render/renderRun.d.ts +16 -0
- package/lib/word/render/renderRun.js +151 -0
- package/lib/word/render/renderSection.d.ts +7 -0
- package/lib/word/render/renderSection.js +114 -0
- package/lib/word/render/renderSeparator.js +13 -0
- package/lib/word/render/renderSoftHyphen.js +13 -0
- package/lib/word/render/renderStyle.d.ts +13 -0
- package/lib/word/render/renderStyle.js +200 -0
- package/lib/word/render/renderSym.d.ts +3 -0
- package/lib/word/render/renderSym.js +14 -0
- package/lib/word/render/renderTab.d.ts +8 -0
- package/lib/word/render/renderTab.js +27 -0
- package/lib/word/render/renderTable.d.ts +6 -0
- package/lib/word/render/renderTable.js +193 -0
- package/lib/word/render/setElementStyle.d.ts +6 -0
- package/lib/word/render/setElementStyle.js +30 -0
- package/package.json +37 -18
- package/esm/parse/Footnotes.d.ts +0 -3
- package/esm/parse/Footnotes.js +0 -25
- package/esm/parse/colorNameMap.d.ts +0 -6
- package/esm/parse/modifyColor.js +0 -106
- package/esm/parse/parseBorder.d.ts +0 -13
- package/esm/parse/parseBorder.js +0 -59
- package/esm/parse/parseCellMargin.d.ts +0 -2
- package/esm/parse/parseChildColor.d.ts +0 -5
- package/esm/parse/parseChildColor.js +0 -66
- package/esm/parse/parseColor.d.ts +0 -26
- package/esm/parse/parseColor.js +0 -126
- package/esm/parse/parseEndnotes.d.ts +0 -3
- package/esm/parse/parseEndnotes.js +0 -25
- package/esm/parse/parseFont.d.ts +0 -7
- package/esm/parse/parseInd.d.ts +0 -5
- package/esm/parse/parseInsideBorders.d.ts +0 -9
- package/esm/parse/parsePr.d.ts +0 -11
- package/esm/parse/parsePr.js +0 -422
- package/esm/parse/parseShape.d.ts +0 -10
- package/esm/parse/parseShape.js +0 -239
- package/esm/parse/parseSpacing.d.ts +0 -7
- package/esm/parse/parseTable.d.ts +0 -3
- package/esm/parse/parseTable.js +0 -62
- package/esm/parse/parseTablePr.d.ts +0 -3
- package/esm/parse/parseTablePr.js +0 -185
- package/esm/parse/parseTc.d.ts +0 -10
- package/esm/parse/parseTc.js +0 -64
- package/esm/parse/parseTcPr.d.ts +0 -5
- package/esm/parse/parseTcPr.js +0 -99
- package/esm/parse/parseTextDirection.d.ts +0 -2
- package/esm/parse/parseTr.d.ts +0 -6
- package/esm/parse/parseTr.js +0 -49
- package/esm/parse/parseTrHeight.d.ts +0 -2
- package/esm/parse/parseTrPr.d.ts +0 -3
- package/esm/parse/parseTrPr.js +0 -59
- package/esm/render/fixAbsolutePosition.d.ts +0 -8
- package/esm/render/renderBody.d.ts +0 -10
- package/esm/render/renderBody.js +0 -207
- package/esm/render/renderBookmark.d.ts +0 -6
- package/esm/render/renderBookmark.js +0 -17
- package/esm/render/renderBr.d.ts +0 -8
- package/esm/render/renderBr.js +0 -16
- package/esm/render/renderCustGeom.d.ts +0 -4
- package/esm/render/renderCustGeom.js +0 -10
- package/esm/render/renderDocument.d.ts +0 -7
- package/esm/render/renderDocument.js +0 -14
- package/esm/render/renderDrawing.d.ts +0 -9
- package/esm/render/renderDrawing.js +0 -255
- package/esm/render/renderFont.d.ts +0 -5
- package/esm/render/renderFont.js +0 -39
- package/esm/render/renderGeom.d.ts +0 -4
- package/esm/render/renderGeom.js +0 -14
- package/esm/render/renderHeader.d.ts +0 -6
- package/esm/render/renderHeader.js +0 -40
- package/esm/render/renderHyperLink.d.ts +0 -7
- package/esm/render/renderHyperLink.js +0 -44
- package/esm/render/renderInlineText.d.ts +0 -6
- package/esm/render/renderInlineText.js +0 -39
- package/esm/render/renderInstrText.d.ts +0 -8
- package/esm/render/renderInstrText.js +0 -40
- package/esm/render/renderMath.d.ts +0 -3
- package/esm/render/renderMath.js +0 -7
- package/esm/render/renderNoBreakHyphen.js +0 -9
- package/esm/render/renderNotes.d.ts +0 -5
- package/esm/render/renderNotes.js +0 -77
- package/esm/render/renderNumbering.d.ts +0 -7
- package/esm/render/renderNumbering.js +0 -159
- package/esm/render/renderParagraph.d.ts +0 -7
- package/esm/render/renderParagraph.js +0 -97
- package/esm/render/renderPict.d.ts +0 -6
- package/esm/render/renderRuby.d.ts +0 -6
- package/esm/render/renderRuby.js +0 -53
- package/esm/render/renderRun.d.ts +0 -16
- package/esm/render/renderRun.js +0 -146
- package/esm/render/renderSection.d.ts +0 -7
- package/esm/render/renderSection.js +0 -110
- package/esm/render/renderSeparator.js +0 -9
- package/esm/render/renderSoftHyphen.js +0 -9
- package/esm/render/renderStyle.d.ts +0 -13
- package/esm/render/renderStyle.js +0 -195
- package/esm/render/renderSym.d.ts +0 -3
- package/esm/render/renderSym.js +0 -10
- package/esm/render/renderTab.d.ts +0 -8
- package/esm/render/renderTab.js +0 -23
- package/esm/render/renderTable.d.ts +0 -6
- package/esm/render/renderTable.js +0 -189
- package/esm/render/setElementStyle.d.ts +0 -6
- package/esm/render/setElementStyle.js +0 -26
- package/lib/parse/Footnotes.d.ts +0 -3
- package/lib/parse/Footnotes.js +0 -29
- package/lib/parse/colorNameMap.d.ts +0 -6
- package/lib/parse/modifyColor.js +0 -110
- package/lib/parse/parseBorder.d.ts +0 -13
- package/lib/parse/parseBorder.js +0 -64
- package/lib/parse/parseCellMargin.d.ts +0 -2
- package/lib/parse/parseChildColor.d.ts +0 -5
- package/lib/parse/parseChildColor.js +0 -70
- package/lib/parse/parseColor.d.ts +0 -26
- package/lib/parse/parseColor.js +0 -133
- package/lib/parse/parseEndnotes.d.ts +0 -3
- package/lib/parse/parseEndnotes.js +0 -29
- package/lib/parse/parseFont.d.ts +0 -7
- package/lib/parse/parseInd.d.ts +0 -5
- package/lib/parse/parseInsideBorders.d.ts +0 -9
- package/lib/parse/parsePr.d.ts +0 -11
- package/lib/parse/parsePr.js +0 -426
- package/lib/parse/parseShape.d.ts +0 -10
- package/lib/parse/parseShape.js +0 -247
- package/lib/parse/parseSpacing.d.ts +0 -7
- package/lib/parse/parseTable.d.ts +0 -3
- package/lib/parse/parseTable.js +0 -66
- package/lib/parse/parseTablePr.d.ts +0 -3
- package/lib/parse/parseTablePr.js +0 -189
- package/lib/parse/parseTc.d.ts +0 -10
- package/lib/parse/parseTc.js +0 -68
- package/lib/parse/parseTcPr.d.ts +0 -5
- package/lib/parse/parseTcPr.js +0 -104
- package/lib/parse/parseTextDirection.d.ts +0 -2
- package/lib/parse/parseTr.d.ts +0 -6
- package/lib/parse/parseTr.js +0 -53
- package/lib/parse/parseTrHeight.d.ts +0 -2
- package/lib/parse/parseTrPr.d.ts +0 -3
- package/lib/parse/parseTrPr.js +0 -63
- package/lib/render/fixAbsolutePosition.d.ts +0 -8
- package/lib/render/renderBody.d.ts +0 -10
- package/lib/render/renderBody.js +0 -211
- package/lib/render/renderBookmark.d.ts +0 -6
- package/lib/render/renderBookmark.js +0 -21
- package/lib/render/renderBr.d.ts +0 -8
- package/lib/render/renderBr.js +0 -20
- package/lib/render/renderCustGeom.d.ts +0 -4
- package/lib/render/renderCustGeom.js +0 -14
- package/lib/render/renderDocument.d.ts +0 -7
- package/lib/render/renderDocument.js +0 -18
- package/lib/render/renderDrawing.d.ts +0 -9
- package/lib/render/renderDrawing.js +0 -259
- package/lib/render/renderFont.d.ts +0 -5
- package/lib/render/renderFont.js +0 -43
- package/lib/render/renderGeom.d.ts +0 -4
- package/lib/render/renderGeom.js +0 -18
- package/lib/render/renderHeader.d.ts +0 -6
- package/lib/render/renderHeader.js +0 -44
- package/lib/render/renderHyperLink.d.ts +0 -7
- package/lib/render/renderHyperLink.js +0 -48
- package/lib/render/renderInlineText.d.ts +0 -6
- package/lib/render/renderInlineText.js +0 -43
- package/lib/render/renderInstrText.d.ts +0 -8
- package/lib/render/renderInstrText.js +0 -44
- package/lib/render/renderMath.d.ts +0 -3
- package/lib/render/renderMath.js +0 -11
- package/lib/render/renderNoBreakHyphen.js +0 -13
- package/lib/render/renderNotes.d.ts +0 -5
- package/lib/render/renderNotes.js +0 -81
- package/lib/render/renderNumbering.d.ts +0 -7
- package/lib/render/renderNumbering.js +0 -163
- package/lib/render/renderParagraph.d.ts +0 -7
- package/lib/render/renderParagraph.js +0 -101
- package/lib/render/renderPict.d.ts +0 -6
- package/lib/render/renderRuby.d.ts +0 -6
- package/lib/render/renderRuby.js +0 -57
- package/lib/render/renderRun.d.ts +0 -16
- package/lib/render/renderRun.js +0 -151
- package/lib/render/renderSection.d.ts +0 -7
- package/lib/render/renderSection.js +0 -114
- package/lib/render/renderSeparator.js +0 -13
- package/lib/render/renderSoftHyphen.js +0 -13
- package/lib/render/renderStyle.d.ts +0 -13
- package/lib/render/renderStyle.js +0 -200
- package/lib/render/renderSym.d.ts +0 -3
- package/lib/render/renderSym.js +0 -14
- package/lib/render/renderTab.d.ts +0 -8
- package/lib/render/renderTab.js +0 -27
- package/lib/render/renderTable.d.ts +0 -6
- package/lib/render/renderTable.js +0 -193
- package/lib/render/setElementStyle.d.ts +0 -6
- package/lib/render/setElementStyle.js +0 -30
- /package/esm/{parse → openxml}/colorNameMap.js +0 -0
- /package/esm/{parse → word/parse}/jcToTextAlign.d.ts +0 -0
- /package/esm/{parse → word/parse}/jcToTextAlign.js +0 -0
- /package/esm/{parse → word/parse}/mergeSdt.d.ts +0 -0
- /package/esm/{parse → word/parse}/mergeSdt.js +0 -0
- /package/esm/{parse → word/parse}/modifyColor.d.ts +0 -0
- /package/esm/{parse → word/parse}/parseCellMargin.js +0 -0
- /package/esm/{parse → word/parse}/parseFont.js +0 -0
- /package/esm/{parse → word/parse}/parseInd.js +0 -0
- /package/esm/{parse → word/parse}/parseInsideBorders.js +0 -0
- /package/esm/{parse → word/parse}/parseRelationship.d.ts +0 -0
- /package/esm/{parse → word/parse}/parseRelationship.js +0 -0
- /package/esm/{parse → word/parse}/parseSdt.d.ts +0 -0
- /package/esm/{parse → word/parse}/parseSize.d.ts +0 -0
- /package/esm/{parse → word/parse}/parseSize.js +0 -0
- /package/esm/{parse → word/parse}/parseSpacing.js +0 -0
- /package/esm/{parse → word/parse}/parseTblWidth.d.ts +0 -0
- /package/esm/{parse → word/parse}/parseTblWidth.js +0 -0
- /package/esm/{parse → word/parse}/parseTextDirection.js +0 -0
- /package/esm/{parse → word/parse}/parseTrHeight.js +0 -0
- /package/esm/{render → word/render}/renderNoBreakHyphen.d.ts +0 -0
- /package/esm/{render → word/render}/renderPict.js +0 -0
- /package/esm/{render → word/render}/renderSeparator.d.ts +0 -0
- /package/esm/{render → word/render}/renderSoftHyphen.d.ts +0 -0
- /package/esm/{render → word/render}/zindex.d.ts +0 -0
- /package/lib/{parse → openxml}/colorNameMap.js +0 -0
- /package/lib/{parse → word/parse}/jcToTextAlign.d.ts +0 -0
- /package/lib/{parse → word/parse}/jcToTextAlign.js +0 -0
- /package/lib/{parse → word/parse}/mergeSdt.d.ts +0 -0
- /package/lib/{parse → word/parse}/mergeSdt.js +0 -0
- /package/lib/{parse → word/parse}/modifyColor.d.ts +0 -0
- /package/lib/{parse → word/parse}/parseCellMargin.js +0 -0
- /package/lib/{parse → word/parse}/parseFont.js +0 -0
- /package/lib/{parse → word/parse}/parseInd.js +0 -0
- /package/lib/{parse → word/parse}/parseInsideBorders.js +0 -0
- /package/lib/{parse → word/parse}/parseRelationship.d.ts +0 -0
- /package/lib/{parse → word/parse}/parseRelationship.js +0 -0
- /package/lib/{parse → word/parse}/parseSdt.d.ts +0 -0
- /package/lib/{parse → word/parse}/parseSize.d.ts +0 -0
- /package/lib/{parse → word/parse}/parseSize.js +0 -0
- /package/lib/{parse → word/parse}/parseSpacing.js +0 -0
- /package/lib/{parse → word/parse}/parseTblWidth.d.ts +0 -0
- /package/lib/{parse → word/parse}/parseTblWidth.js +0 -0
- /package/lib/{parse → word/parse}/parseTextDirection.js +0 -0
- /package/lib/{parse → word/parse}/parseTrHeight.js +0 -0
- /package/lib/{render → word/render}/renderNoBreakHyphen.d.ts +0 -0
- /package/lib/{render → word/render}/renderPict.js +0 -0
- /package/lib/{render → word/render}/renderSeparator.d.ts +0 -0
- /package/lib/{render → word/render}/renderSoftHyphen.d.ts +0 -0
- /package/lib/{render → word/render}/zindex.d.ts +0 -0
|
@@ -0,0 +1,2849 @@
|
|
|
1
|
+
var CT_OfficeArtExtension_Attributes = {
|
|
2
|
+
uri: {
|
|
3
|
+
type: 'string'
|
|
4
|
+
}
|
|
5
|
+
};
|
|
6
|
+
var CT_OfficeArtExtensionList_Attributes = {
|
|
7
|
+
ext: {
|
|
8
|
+
type: 'child',
|
|
9
|
+
childAttributes: CT_OfficeArtExtension_Attributes,
|
|
10
|
+
childIsArray: true
|
|
11
|
+
}
|
|
12
|
+
};
|
|
13
|
+
var CT_PositiveFixedPercentage_Attributes = {
|
|
14
|
+
val: {
|
|
15
|
+
type: 'string'
|
|
16
|
+
}
|
|
17
|
+
};
|
|
18
|
+
var CT_ComplementTransform_Attributes = {};
|
|
19
|
+
var CT_InverseTransform_Attributes = {};
|
|
20
|
+
var CT_GrayscaleTransform_Attributes = {};
|
|
21
|
+
var CT_FixedPercentage_Attributes = {
|
|
22
|
+
val: {
|
|
23
|
+
type: 'string'
|
|
24
|
+
}
|
|
25
|
+
};
|
|
26
|
+
var CT_PositivePercentage_Attributes = {
|
|
27
|
+
val: {
|
|
28
|
+
type: 'string'
|
|
29
|
+
}
|
|
30
|
+
};
|
|
31
|
+
var CT_PositiveFixedAngle_Attributes = {
|
|
32
|
+
val: {
|
|
33
|
+
type: 'int'
|
|
34
|
+
}
|
|
35
|
+
};
|
|
36
|
+
var CT_Angle_Attributes = {
|
|
37
|
+
val: {
|
|
38
|
+
type: 'int'
|
|
39
|
+
}
|
|
40
|
+
};
|
|
41
|
+
var CT_Percentage_Attributes = {
|
|
42
|
+
val: {
|
|
43
|
+
type: 'string'
|
|
44
|
+
}
|
|
45
|
+
};
|
|
46
|
+
var CT_GammaTransform_Attributes = {};
|
|
47
|
+
var CT_InverseGammaTransform_Attributes = {};
|
|
48
|
+
var CT_ScRgbColor_Attributes = {
|
|
49
|
+
tint: {
|
|
50
|
+
type: 'child',
|
|
51
|
+
childAttributes: CT_PositiveFixedPercentage_Attributes
|
|
52
|
+
},
|
|
53
|
+
shade: {
|
|
54
|
+
type: 'child',
|
|
55
|
+
childAttributes: CT_PositiveFixedPercentage_Attributes
|
|
56
|
+
},
|
|
57
|
+
comp: {
|
|
58
|
+
type: 'child',
|
|
59
|
+
childAttributes: CT_ComplementTransform_Attributes
|
|
60
|
+
},
|
|
61
|
+
inv: {
|
|
62
|
+
type: 'child',
|
|
63
|
+
childAttributes: CT_InverseTransform_Attributes
|
|
64
|
+
},
|
|
65
|
+
gray: {
|
|
66
|
+
type: 'child',
|
|
67
|
+
childAttributes: CT_GrayscaleTransform_Attributes
|
|
68
|
+
},
|
|
69
|
+
alpha: {
|
|
70
|
+
type: 'child',
|
|
71
|
+
childAttributes: CT_PositiveFixedPercentage_Attributes
|
|
72
|
+
},
|
|
73
|
+
alphaOff: {
|
|
74
|
+
type: 'child',
|
|
75
|
+
childAttributes: CT_FixedPercentage_Attributes
|
|
76
|
+
},
|
|
77
|
+
alphaMod: {
|
|
78
|
+
type: 'child',
|
|
79
|
+
childAttributes: CT_PositivePercentage_Attributes
|
|
80
|
+
},
|
|
81
|
+
hue: {
|
|
82
|
+
type: 'child',
|
|
83
|
+
childAttributes: CT_PositiveFixedAngle_Attributes
|
|
84
|
+
},
|
|
85
|
+
hueOff: {
|
|
86
|
+
type: 'child',
|
|
87
|
+
childAttributes: CT_Angle_Attributes
|
|
88
|
+
},
|
|
89
|
+
hueMod: {
|
|
90
|
+
type: 'child',
|
|
91
|
+
childAttributes: CT_PositivePercentage_Attributes
|
|
92
|
+
},
|
|
93
|
+
sat: {
|
|
94
|
+
type: 'child',
|
|
95
|
+
childAttributes: CT_Percentage_Attributes
|
|
96
|
+
},
|
|
97
|
+
satOff: {
|
|
98
|
+
type: 'child',
|
|
99
|
+
childAttributes: CT_Percentage_Attributes
|
|
100
|
+
},
|
|
101
|
+
satMod: {
|
|
102
|
+
type: 'child',
|
|
103
|
+
childAttributes: CT_Percentage_Attributes
|
|
104
|
+
},
|
|
105
|
+
lum: {
|
|
106
|
+
type: 'child',
|
|
107
|
+
childAttributes: CT_Percentage_Attributes
|
|
108
|
+
},
|
|
109
|
+
lumOff: {
|
|
110
|
+
type: 'child',
|
|
111
|
+
childAttributes: CT_Percentage_Attributes
|
|
112
|
+
},
|
|
113
|
+
lumMod: {
|
|
114
|
+
type: 'child',
|
|
115
|
+
childAttributes: CT_Percentage_Attributes
|
|
116
|
+
},
|
|
117
|
+
red: {
|
|
118
|
+
type: 'child',
|
|
119
|
+
childAttributes: CT_Percentage_Attributes
|
|
120
|
+
},
|
|
121
|
+
redOff: {
|
|
122
|
+
type: 'child',
|
|
123
|
+
childAttributes: CT_Percentage_Attributes
|
|
124
|
+
},
|
|
125
|
+
redMod: {
|
|
126
|
+
type: 'child',
|
|
127
|
+
childAttributes: CT_Percentage_Attributes
|
|
128
|
+
},
|
|
129
|
+
green: {
|
|
130
|
+
type: 'child',
|
|
131
|
+
childAttributes: CT_Percentage_Attributes
|
|
132
|
+
},
|
|
133
|
+
greenOff: {
|
|
134
|
+
type: 'child',
|
|
135
|
+
childAttributes: CT_Percentage_Attributes
|
|
136
|
+
},
|
|
137
|
+
greenMod: {
|
|
138
|
+
type: 'child',
|
|
139
|
+
childAttributes: CT_Percentage_Attributes
|
|
140
|
+
},
|
|
141
|
+
blue: {
|
|
142
|
+
type: 'child',
|
|
143
|
+
childAttributes: CT_Percentage_Attributes
|
|
144
|
+
},
|
|
145
|
+
blueOff: {
|
|
146
|
+
type: 'child',
|
|
147
|
+
childAttributes: CT_Percentage_Attributes
|
|
148
|
+
},
|
|
149
|
+
blueMod: {
|
|
150
|
+
type: 'child',
|
|
151
|
+
childAttributes: CT_Percentage_Attributes
|
|
152
|
+
},
|
|
153
|
+
gamma: {
|
|
154
|
+
type: 'child',
|
|
155
|
+
childAttributes: CT_GammaTransform_Attributes
|
|
156
|
+
},
|
|
157
|
+
invGamma: {
|
|
158
|
+
type: 'child',
|
|
159
|
+
childAttributes: CT_InverseGammaTransform_Attributes
|
|
160
|
+
},
|
|
161
|
+
r: {
|
|
162
|
+
type: 'string'
|
|
163
|
+
},
|
|
164
|
+
g: {
|
|
165
|
+
type: 'string'
|
|
166
|
+
},
|
|
167
|
+
b: {
|
|
168
|
+
type: 'string'
|
|
169
|
+
}
|
|
170
|
+
};
|
|
171
|
+
var CT_SRgbColor_Attributes = {
|
|
172
|
+
tint: {
|
|
173
|
+
type: 'child',
|
|
174
|
+
childAttributes: CT_PositiveFixedPercentage_Attributes
|
|
175
|
+
},
|
|
176
|
+
shade: {
|
|
177
|
+
type: 'child',
|
|
178
|
+
childAttributes: CT_PositiveFixedPercentage_Attributes
|
|
179
|
+
},
|
|
180
|
+
comp: {
|
|
181
|
+
type: 'child',
|
|
182
|
+
childAttributes: CT_ComplementTransform_Attributes
|
|
183
|
+
},
|
|
184
|
+
inv: {
|
|
185
|
+
type: 'child',
|
|
186
|
+
childAttributes: CT_InverseTransform_Attributes
|
|
187
|
+
},
|
|
188
|
+
gray: {
|
|
189
|
+
type: 'child',
|
|
190
|
+
childAttributes: CT_GrayscaleTransform_Attributes
|
|
191
|
+
},
|
|
192
|
+
alpha: {
|
|
193
|
+
type: 'child',
|
|
194
|
+
childAttributes: CT_PositiveFixedPercentage_Attributes
|
|
195
|
+
},
|
|
196
|
+
alphaOff: {
|
|
197
|
+
type: 'child',
|
|
198
|
+
childAttributes: CT_FixedPercentage_Attributes
|
|
199
|
+
},
|
|
200
|
+
alphaMod: {
|
|
201
|
+
type: 'child',
|
|
202
|
+
childAttributes: CT_PositivePercentage_Attributes
|
|
203
|
+
},
|
|
204
|
+
hue: {
|
|
205
|
+
type: 'child',
|
|
206
|
+
childAttributes: CT_PositiveFixedAngle_Attributes
|
|
207
|
+
},
|
|
208
|
+
hueOff: {
|
|
209
|
+
type: 'child',
|
|
210
|
+
childAttributes: CT_Angle_Attributes
|
|
211
|
+
},
|
|
212
|
+
hueMod: {
|
|
213
|
+
type: 'child',
|
|
214
|
+
childAttributes: CT_PositivePercentage_Attributes
|
|
215
|
+
},
|
|
216
|
+
sat: {
|
|
217
|
+
type: 'child',
|
|
218
|
+
childAttributes: CT_Percentage_Attributes
|
|
219
|
+
},
|
|
220
|
+
satOff: {
|
|
221
|
+
type: 'child',
|
|
222
|
+
childAttributes: CT_Percentage_Attributes
|
|
223
|
+
},
|
|
224
|
+
satMod: {
|
|
225
|
+
type: 'child',
|
|
226
|
+
childAttributes: CT_Percentage_Attributes
|
|
227
|
+
},
|
|
228
|
+
lum: {
|
|
229
|
+
type: 'child',
|
|
230
|
+
childAttributes: CT_Percentage_Attributes
|
|
231
|
+
},
|
|
232
|
+
lumOff: {
|
|
233
|
+
type: 'child',
|
|
234
|
+
childAttributes: CT_Percentage_Attributes
|
|
235
|
+
},
|
|
236
|
+
lumMod: {
|
|
237
|
+
type: 'child',
|
|
238
|
+
childAttributes: CT_Percentage_Attributes
|
|
239
|
+
},
|
|
240
|
+
red: {
|
|
241
|
+
type: 'child',
|
|
242
|
+
childAttributes: CT_Percentage_Attributes
|
|
243
|
+
},
|
|
244
|
+
redOff: {
|
|
245
|
+
type: 'child',
|
|
246
|
+
childAttributes: CT_Percentage_Attributes
|
|
247
|
+
},
|
|
248
|
+
redMod: {
|
|
249
|
+
type: 'child',
|
|
250
|
+
childAttributes: CT_Percentage_Attributes
|
|
251
|
+
},
|
|
252
|
+
green: {
|
|
253
|
+
type: 'child',
|
|
254
|
+
childAttributes: CT_Percentage_Attributes
|
|
255
|
+
},
|
|
256
|
+
greenOff: {
|
|
257
|
+
type: 'child',
|
|
258
|
+
childAttributes: CT_Percentage_Attributes
|
|
259
|
+
},
|
|
260
|
+
greenMod: {
|
|
261
|
+
type: 'child',
|
|
262
|
+
childAttributes: CT_Percentage_Attributes
|
|
263
|
+
},
|
|
264
|
+
blue: {
|
|
265
|
+
type: 'child',
|
|
266
|
+
childAttributes: CT_Percentage_Attributes
|
|
267
|
+
},
|
|
268
|
+
blueOff: {
|
|
269
|
+
type: 'child',
|
|
270
|
+
childAttributes: CT_Percentage_Attributes
|
|
271
|
+
},
|
|
272
|
+
blueMod: {
|
|
273
|
+
type: 'child',
|
|
274
|
+
childAttributes: CT_Percentage_Attributes
|
|
275
|
+
},
|
|
276
|
+
gamma: {
|
|
277
|
+
type: 'child',
|
|
278
|
+
childAttributes: CT_GammaTransform_Attributes
|
|
279
|
+
},
|
|
280
|
+
invGamma: {
|
|
281
|
+
type: 'child',
|
|
282
|
+
childAttributes: CT_InverseGammaTransform_Attributes
|
|
283
|
+
},
|
|
284
|
+
val: {
|
|
285
|
+
type: 'string'
|
|
286
|
+
}
|
|
287
|
+
};
|
|
288
|
+
var CT_HslColor_Attributes = {
|
|
289
|
+
tint: {
|
|
290
|
+
type: 'child',
|
|
291
|
+
childAttributes: CT_PositiveFixedPercentage_Attributes
|
|
292
|
+
},
|
|
293
|
+
shade: {
|
|
294
|
+
type: 'child',
|
|
295
|
+
childAttributes: CT_PositiveFixedPercentage_Attributes
|
|
296
|
+
},
|
|
297
|
+
comp: {
|
|
298
|
+
type: 'child',
|
|
299
|
+
childAttributes: CT_ComplementTransform_Attributes
|
|
300
|
+
},
|
|
301
|
+
inv: {
|
|
302
|
+
type: 'child',
|
|
303
|
+
childAttributes: CT_InverseTransform_Attributes
|
|
304
|
+
},
|
|
305
|
+
gray: {
|
|
306
|
+
type: 'child',
|
|
307
|
+
childAttributes: CT_GrayscaleTransform_Attributes
|
|
308
|
+
},
|
|
309
|
+
alpha: {
|
|
310
|
+
type: 'child',
|
|
311
|
+
childAttributes: CT_PositiveFixedPercentage_Attributes
|
|
312
|
+
},
|
|
313
|
+
alphaOff: {
|
|
314
|
+
type: 'child',
|
|
315
|
+
childAttributes: CT_FixedPercentage_Attributes
|
|
316
|
+
},
|
|
317
|
+
alphaMod: {
|
|
318
|
+
type: 'child',
|
|
319
|
+
childAttributes: CT_PositivePercentage_Attributes
|
|
320
|
+
},
|
|
321
|
+
hue: {
|
|
322
|
+
type: 'int'
|
|
323
|
+
},
|
|
324
|
+
hueOff: {
|
|
325
|
+
type: 'child',
|
|
326
|
+
childAttributes: CT_Angle_Attributes
|
|
327
|
+
},
|
|
328
|
+
hueMod: {
|
|
329
|
+
type: 'child',
|
|
330
|
+
childAttributes: CT_PositivePercentage_Attributes
|
|
331
|
+
},
|
|
332
|
+
sat: {
|
|
333
|
+
type: 'string'
|
|
334
|
+
},
|
|
335
|
+
satOff: {
|
|
336
|
+
type: 'child',
|
|
337
|
+
childAttributes: CT_Percentage_Attributes
|
|
338
|
+
},
|
|
339
|
+
satMod: {
|
|
340
|
+
type: 'child',
|
|
341
|
+
childAttributes: CT_Percentage_Attributes
|
|
342
|
+
},
|
|
343
|
+
lum: {
|
|
344
|
+
type: 'string'
|
|
345
|
+
},
|
|
346
|
+
lumOff: {
|
|
347
|
+
type: 'child',
|
|
348
|
+
childAttributes: CT_Percentage_Attributes
|
|
349
|
+
},
|
|
350
|
+
lumMod: {
|
|
351
|
+
type: 'child',
|
|
352
|
+
childAttributes: CT_Percentage_Attributes
|
|
353
|
+
},
|
|
354
|
+
red: {
|
|
355
|
+
type: 'child',
|
|
356
|
+
childAttributes: CT_Percentage_Attributes
|
|
357
|
+
},
|
|
358
|
+
redOff: {
|
|
359
|
+
type: 'child',
|
|
360
|
+
childAttributes: CT_Percentage_Attributes
|
|
361
|
+
},
|
|
362
|
+
redMod: {
|
|
363
|
+
type: 'child',
|
|
364
|
+
childAttributes: CT_Percentage_Attributes
|
|
365
|
+
},
|
|
366
|
+
green: {
|
|
367
|
+
type: 'child',
|
|
368
|
+
childAttributes: CT_Percentage_Attributes
|
|
369
|
+
},
|
|
370
|
+
greenOff: {
|
|
371
|
+
type: 'child',
|
|
372
|
+
childAttributes: CT_Percentage_Attributes
|
|
373
|
+
},
|
|
374
|
+
greenMod: {
|
|
375
|
+
type: 'child',
|
|
376
|
+
childAttributes: CT_Percentage_Attributes
|
|
377
|
+
},
|
|
378
|
+
blue: {
|
|
379
|
+
type: 'child',
|
|
380
|
+
childAttributes: CT_Percentage_Attributes
|
|
381
|
+
},
|
|
382
|
+
blueOff: {
|
|
383
|
+
type: 'child',
|
|
384
|
+
childAttributes: CT_Percentage_Attributes
|
|
385
|
+
},
|
|
386
|
+
blueMod: {
|
|
387
|
+
type: 'child',
|
|
388
|
+
childAttributes: CT_Percentage_Attributes
|
|
389
|
+
},
|
|
390
|
+
gamma: {
|
|
391
|
+
type: 'child',
|
|
392
|
+
childAttributes: CT_GammaTransform_Attributes
|
|
393
|
+
},
|
|
394
|
+
invGamma: {
|
|
395
|
+
type: 'child',
|
|
396
|
+
childAttributes: CT_InverseGammaTransform_Attributes
|
|
397
|
+
}
|
|
398
|
+
};
|
|
399
|
+
var CT_SystemColor_Attributes = {
|
|
400
|
+
tint: {
|
|
401
|
+
type: 'child',
|
|
402
|
+
childAttributes: CT_PositiveFixedPercentage_Attributes
|
|
403
|
+
},
|
|
404
|
+
shade: {
|
|
405
|
+
type: 'child',
|
|
406
|
+
childAttributes: CT_PositiveFixedPercentage_Attributes
|
|
407
|
+
},
|
|
408
|
+
comp: {
|
|
409
|
+
type: 'child',
|
|
410
|
+
childAttributes: CT_ComplementTransform_Attributes
|
|
411
|
+
},
|
|
412
|
+
inv: {
|
|
413
|
+
type: 'child',
|
|
414
|
+
childAttributes: CT_InverseTransform_Attributes
|
|
415
|
+
},
|
|
416
|
+
gray: {
|
|
417
|
+
type: 'child',
|
|
418
|
+
childAttributes: CT_GrayscaleTransform_Attributes
|
|
419
|
+
},
|
|
420
|
+
alpha: {
|
|
421
|
+
type: 'child',
|
|
422
|
+
childAttributes: CT_PositiveFixedPercentage_Attributes
|
|
423
|
+
},
|
|
424
|
+
alphaOff: {
|
|
425
|
+
type: 'child',
|
|
426
|
+
childAttributes: CT_FixedPercentage_Attributes
|
|
427
|
+
},
|
|
428
|
+
alphaMod: {
|
|
429
|
+
type: 'child',
|
|
430
|
+
childAttributes: CT_PositivePercentage_Attributes
|
|
431
|
+
},
|
|
432
|
+
hue: {
|
|
433
|
+
type: 'child',
|
|
434
|
+
childAttributes: CT_PositiveFixedAngle_Attributes
|
|
435
|
+
},
|
|
436
|
+
hueOff: {
|
|
437
|
+
type: 'child',
|
|
438
|
+
childAttributes: CT_Angle_Attributes
|
|
439
|
+
},
|
|
440
|
+
hueMod: {
|
|
441
|
+
type: 'child',
|
|
442
|
+
childAttributes: CT_PositivePercentage_Attributes
|
|
443
|
+
},
|
|
444
|
+
sat: {
|
|
445
|
+
type: 'child',
|
|
446
|
+
childAttributes: CT_Percentage_Attributes
|
|
447
|
+
},
|
|
448
|
+
satOff: {
|
|
449
|
+
type: 'child',
|
|
450
|
+
childAttributes: CT_Percentage_Attributes
|
|
451
|
+
},
|
|
452
|
+
satMod: {
|
|
453
|
+
type: 'child',
|
|
454
|
+
childAttributes: CT_Percentage_Attributes
|
|
455
|
+
},
|
|
456
|
+
lum: {
|
|
457
|
+
type: 'child',
|
|
458
|
+
childAttributes: CT_Percentage_Attributes
|
|
459
|
+
},
|
|
460
|
+
lumOff: {
|
|
461
|
+
type: 'child',
|
|
462
|
+
childAttributes: CT_Percentage_Attributes
|
|
463
|
+
},
|
|
464
|
+
lumMod: {
|
|
465
|
+
type: 'child',
|
|
466
|
+
childAttributes: CT_Percentage_Attributes
|
|
467
|
+
},
|
|
468
|
+
red: {
|
|
469
|
+
type: 'child',
|
|
470
|
+
childAttributes: CT_Percentage_Attributes
|
|
471
|
+
},
|
|
472
|
+
redOff: {
|
|
473
|
+
type: 'child',
|
|
474
|
+
childAttributes: CT_Percentage_Attributes
|
|
475
|
+
},
|
|
476
|
+
redMod: {
|
|
477
|
+
type: 'child',
|
|
478
|
+
childAttributes: CT_Percentage_Attributes
|
|
479
|
+
},
|
|
480
|
+
green: {
|
|
481
|
+
type: 'child',
|
|
482
|
+
childAttributes: CT_Percentage_Attributes
|
|
483
|
+
},
|
|
484
|
+
greenOff: {
|
|
485
|
+
type: 'child',
|
|
486
|
+
childAttributes: CT_Percentage_Attributes
|
|
487
|
+
},
|
|
488
|
+
greenMod: {
|
|
489
|
+
type: 'child',
|
|
490
|
+
childAttributes: CT_Percentage_Attributes
|
|
491
|
+
},
|
|
492
|
+
blue: {
|
|
493
|
+
type: 'child',
|
|
494
|
+
childAttributes: CT_Percentage_Attributes
|
|
495
|
+
},
|
|
496
|
+
blueOff: {
|
|
497
|
+
type: 'child',
|
|
498
|
+
childAttributes: CT_Percentage_Attributes
|
|
499
|
+
},
|
|
500
|
+
blueMod: {
|
|
501
|
+
type: 'child',
|
|
502
|
+
childAttributes: CT_Percentage_Attributes
|
|
503
|
+
},
|
|
504
|
+
gamma: {
|
|
505
|
+
type: 'child',
|
|
506
|
+
childAttributes: CT_GammaTransform_Attributes
|
|
507
|
+
},
|
|
508
|
+
invGamma: {
|
|
509
|
+
type: 'child',
|
|
510
|
+
childAttributes: CT_InverseGammaTransform_Attributes
|
|
511
|
+
},
|
|
512
|
+
val: {
|
|
513
|
+
type: 'string'
|
|
514
|
+
},
|
|
515
|
+
lastClr: {
|
|
516
|
+
type: 'string'
|
|
517
|
+
}
|
|
518
|
+
};
|
|
519
|
+
var CT_SchemeColor_Attributes = {
|
|
520
|
+
tint: {
|
|
521
|
+
type: 'child',
|
|
522
|
+
childAttributes: CT_PositiveFixedPercentage_Attributes
|
|
523
|
+
},
|
|
524
|
+
shade: {
|
|
525
|
+
type: 'child',
|
|
526
|
+
childAttributes: CT_PositiveFixedPercentage_Attributes
|
|
527
|
+
},
|
|
528
|
+
comp: {
|
|
529
|
+
type: 'child',
|
|
530
|
+
childAttributes: CT_ComplementTransform_Attributes
|
|
531
|
+
},
|
|
532
|
+
inv: {
|
|
533
|
+
type: 'child',
|
|
534
|
+
childAttributes: CT_InverseTransform_Attributes
|
|
535
|
+
},
|
|
536
|
+
gray: {
|
|
537
|
+
type: 'child',
|
|
538
|
+
childAttributes: CT_GrayscaleTransform_Attributes
|
|
539
|
+
},
|
|
540
|
+
alpha: {
|
|
541
|
+
type: 'child',
|
|
542
|
+
childAttributes: CT_PositiveFixedPercentage_Attributes
|
|
543
|
+
},
|
|
544
|
+
alphaOff: {
|
|
545
|
+
type: 'child',
|
|
546
|
+
childAttributes: CT_FixedPercentage_Attributes
|
|
547
|
+
},
|
|
548
|
+
alphaMod: {
|
|
549
|
+
type: 'child',
|
|
550
|
+
childAttributes: CT_PositivePercentage_Attributes
|
|
551
|
+
},
|
|
552
|
+
hue: {
|
|
553
|
+
type: 'child',
|
|
554
|
+
childAttributes: CT_PositiveFixedAngle_Attributes
|
|
555
|
+
},
|
|
556
|
+
hueOff: {
|
|
557
|
+
type: 'child',
|
|
558
|
+
childAttributes: CT_Angle_Attributes
|
|
559
|
+
},
|
|
560
|
+
hueMod: {
|
|
561
|
+
type: 'child',
|
|
562
|
+
childAttributes: CT_PositivePercentage_Attributes
|
|
563
|
+
},
|
|
564
|
+
sat: {
|
|
565
|
+
type: 'child',
|
|
566
|
+
childAttributes: CT_Percentage_Attributes
|
|
567
|
+
},
|
|
568
|
+
satOff: {
|
|
569
|
+
type: 'child',
|
|
570
|
+
childAttributes: CT_Percentage_Attributes
|
|
571
|
+
},
|
|
572
|
+
satMod: {
|
|
573
|
+
type: 'child',
|
|
574
|
+
childAttributes: CT_Percentage_Attributes
|
|
575
|
+
},
|
|
576
|
+
lum: {
|
|
577
|
+
type: 'child',
|
|
578
|
+
childAttributes: CT_Percentage_Attributes
|
|
579
|
+
},
|
|
580
|
+
lumOff: {
|
|
581
|
+
type: 'child',
|
|
582
|
+
childAttributes: CT_Percentage_Attributes
|
|
583
|
+
},
|
|
584
|
+
lumMod: {
|
|
585
|
+
type: 'child',
|
|
586
|
+
childAttributes: CT_Percentage_Attributes
|
|
587
|
+
},
|
|
588
|
+
red: {
|
|
589
|
+
type: 'child',
|
|
590
|
+
childAttributes: CT_Percentage_Attributes
|
|
591
|
+
},
|
|
592
|
+
redOff: {
|
|
593
|
+
type: 'child',
|
|
594
|
+
childAttributes: CT_Percentage_Attributes
|
|
595
|
+
},
|
|
596
|
+
redMod: {
|
|
597
|
+
type: 'child',
|
|
598
|
+
childAttributes: CT_Percentage_Attributes
|
|
599
|
+
},
|
|
600
|
+
green: {
|
|
601
|
+
type: 'child',
|
|
602
|
+
childAttributes: CT_Percentage_Attributes
|
|
603
|
+
},
|
|
604
|
+
greenOff: {
|
|
605
|
+
type: 'child',
|
|
606
|
+
childAttributes: CT_Percentage_Attributes
|
|
607
|
+
},
|
|
608
|
+
greenMod: {
|
|
609
|
+
type: 'child',
|
|
610
|
+
childAttributes: CT_Percentage_Attributes
|
|
611
|
+
},
|
|
612
|
+
blue: {
|
|
613
|
+
type: 'child',
|
|
614
|
+
childAttributes: CT_Percentage_Attributes
|
|
615
|
+
},
|
|
616
|
+
blueOff: {
|
|
617
|
+
type: 'child',
|
|
618
|
+
childAttributes: CT_Percentage_Attributes
|
|
619
|
+
},
|
|
620
|
+
blueMod: {
|
|
621
|
+
type: 'child',
|
|
622
|
+
childAttributes: CT_Percentage_Attributes
|
|
623
|
+
},
|
|
624
|
+
gamma: {
|
|
625
|
+
type: 'child',
|
|
626
|
+
childAttributes: CT_GammaTransform_Attributes
|
|
627
|
+
},
|
|
628
|
+
invGamma: {
|
|
629
|
+
type: 'child',
|
|
630
|
+
childAttributes: CT_InverseGammaTransform_Attributes
|
|
631
|
+
},
|
|
632
|
+
val: {
|
|
633
|
+
type: 'string'
|
|
634
|
+
}
|
|
635
|
+
};
|
|
636
|
+
var CT_PresetColor_Attributes = {
|
|
637
|
+
tint: {
|
|
638
|
+
type: 'child',
|
|
639
|
+
childAttributes: CT_PositiveFixedPercentage_Attributes
|
|
640
|
+
},
|
|
641
|
+
shade: {
|
|
642
|
+
type: 'child',
|
|
643
|
+
childAttributes: CT_PositiveFixedPercentage_Attributes
|
|
644
|
+
},
|
|
645
|
+
comp: {
|
|
646
|
+
type: 'child',
|
|
647
|
+
childAttributes: CT_ComplementTransform_Attributes
|
|
648
|
+
},
|
|
649
|
+
inv: {
|
|
650
|
+
type: 'child',
|
|
651
|
+
childAttributes: CT_InverseTransform_Attributes
|
|
652
|
+
},
|
|
653
|
+
gray: {
|
|
654
|
+
type: 'child',
|
|
655
|
+
childAttributes: CT_GrayscaleTransform_Attributes
|
|
656
|
+
},
|
|
657
|
+
alpha: {
|
|
658
|
+
type: 'child',
|
|
659
|
+
childAttributes: CT_PositiveFixedPercentage_Attributes
|
|
660
|
+
},
|
|
661
|
+
alphaOff: {
|
|
662
|
+
type: 'child',
|
|
663
|
+
childAttributes: CT_FixedPercentage_Attributes
|
|
664
|
+
},
|
|
665
|
+
alphaMod: {
|
|
666
|
+
type: 'child',
|
|
667
|
+
childAttributes: CT_PositivePercentage_Attributes
|
|
668
|
+
},
|
|
669
|
+
hue: {
|
|
670
|
+
type: 'child',
|
|
671
|
+
childAttributes: CT_PositiveFixedAngle_Attributes
|
|
672
|
+
},
|
|
673
|
+
hueOff: {
|
|
674
|
+
type: 'child',
|
|
675
|
+
childAttributes: CT_Angle_Attributes
|
|
676
|
+
},
|
|
677
|
+
hueMod: {
|
|
678
|
+
type: 'child',
|
|
679
|
+
childAttributes: CT_PositivePercentage_Attributes
|
|
680
|
+
},
|
|
681
|
+
sat: {
|
|
682
|
+
type: 'child',
|
|
683
|
+
childAttributes: CT_Percentage_Attributes
|
|
684
|
+
},
|
|
685
|
+
satOff: {
|
|
686
|
+
type: 'child',
|
|
687
|
+
childAttributes: CT_Percentage_Attributes
|
|
688
|
+
},
|
|
689
|
+
satMod: {
|
|
690
|
+
type: 'child',
|
|
691
|
+
childAttributes: CT_Percentage_Attributes
|
|
692
|
+
},
|
|
693
|
+
lum: {
|
|
694
|
+
type: 'child',
|
|
695
|
+
childAttributes: CT_Percentage_Attributes
|
|
696
|
+
},
|
|
697
|
+
lumOff: {
|
|
698
|
+
type: 'child',
|
|
699
|
+
childAttributes: CT_Percentage_Attributes
|
|
700
|
+
},
|
|
701
|
+
lumMod: {
|
|
702
|
+
type: 'child',
|
|
703
|
+
childAttributes: CT_Percentage_Attributes
|
|
704
|
+
},
|
|
705
|
+
red: {
|
|
706
|
+
type: 'child',
|
|
707
|
+
childAttributes: CT_Percentage_Attributes
|
|
708
|
+
},
|
|
709
|
+
redOff: {
|
|
710
|
+
type: 'child',
|
|
711
|
+
childAttributes: CT_Percentage_Attributes
|
|
712
|
+
},
|
|
713
|
+
redMod: {
|
|
714
|
+
type: 'child',
|
|
715
|
+
childAttributes: CT_Percentage_Attributes
|
|
716
|
+
},
|
|
717
|
+
green: {
|
|
718
|
+
type: 'child',
|
|
719
|
+
childAttributes: CT_Percentage_Attributes
|
|
720
|
+
},
|
|
721
|
+
greenOff: {
|
|
722
|
+
type: 'child',
|
|
723
|
+
childAttributes: CT_Percentage_Attributes
|
|
724
|
+
},
|
|
725
|
+
greenMod: {
|
|
726
|
+
type: 'child',
|
|
727
|
+
childAttributes: CT_Percentage_Attributes
|
|
728
|
+
},
|
|
729
|
+
blue: {
|
|
730
|
+
type: 'child',
|
|
731
|
+
childAttributes: CT_Percentage_Attributes
|
|
732
|
+
},
|
|
733
|
+
blueOff: {
|
|
734
|
+
type: 'child',
|
|
735
|
+
childAttributes: CT_Percentage_Attributes
|
|
736
|
+
},
|
|
737
|
+
blueMod: {
|
|
738
|
+
type: 'child',
|
|
739
|
+
childAttributes: CT_Percentage_Attributes
|
|
740
|
+
},
|
|
741
|
+
gamma: {
|
|
742
|
+
type: 'child',
|
|
743
|
+
childAttributes: CT_GammaTransform_Attributes
|
|
744
|
+
},
|
|
745
|
+
invGamma: {
|
|
746
|
+
type: 'child',
|
|
747
|
+
childAttributes: CT_InverseGammaTransform_Attributes
|
|
748
|
+
},
|
|
749
|
+
val: {
|
|
750
|
+
type: 'string'
|
|
751
|
+
}
|
|
752
|
+
};
|
|
753
|
+
var CT_Color_Attributes = {
|
|
754
|
+
scrgbClr: {
|
|
755
|
+
type: 'child',
|
|
756
|
+
childAttributes: CT_ScRgbColor_Attributes
|
|
757
|
+
},
|
|
758
|
+
srgbClr: {
|
|
759
|
+
type: 'child',
|
|
760
|
+
childAttributes: CT_SRgbColor_Attributes
|
|
761
|
+
},
|
|
762
|
+
hslClr: {
|
|
763
|
+
type: 'child',
|
|
764
|
+
childAttributes: CT_HslColor_Attributes
|
|
765
|
+
},
|
|
766
|
+
sysClr: {
|
|
767
|
+
type: 'child',
|
|
768
|
+
childAttributes: CT_SystemColor_Attributes
|
|
769
|
+
},
|
|
770
|
+
schemeClr: {
|
|
771
|
+
type: 'child',
|
|
772
|
+
childAttributes: CT_SchemeColor_Attributes
|
|
773
|
+
},
|
|
774
|
+
prstClr: {
|
|
775
|
+
type: 'child',
|
|
776
|
+
childAttributes: CT_PresetColor_Attributes
|
|
777
|
+
}
|
|
778
|
+
};
|
|
779
|
+
var CT_ColorScheme_Attributes = {
|
|
780
|
+
dk1: {
|
|
781
|
+
type: 'child',
|
|
782
|
+
childAttributes: CT_Color_Attributes
|
|
783
|
+
},
|
|
784
|
+
lt1: {
|
|
785
|
+
type: 'child',
|
|
786
|
+
childAttributes: CT_Color_Attributes
|
|
787
|
+
},
|
|
788
|
+
dk2: {
|
|
789
|
+
type: 'child',
|
|
790
|
+
childAttributes: CT_Color_Attributes
|
|
791
|
+
},
|
|
792
|
+
lt2: {
|
|
793
|
+
type: 'child',
|
|
794
|
+
childAttributes: CT_Color_Attributes
|
|
795
|
+
},
|
|
796
|
+
accent1: {
|
|
797
|
+
type: 'child',
|
|
798
|
+
childAttributes: CT_Color_Attributes
|
|
799
|
+
},
|
|
800
|
+
accent2: {
|
|
801
|
+
type: 'child',
|
|
802
|
+
childAttributes: CT_Color_Attributes
|
|
803
|
+
},
|
|
804
|
+
accent3: {
|
|
805
|
+
type: 'child',
|
|
806
|
+
childAttributes: CT_Color_Attributes
|
|
807
|
+
},
|
|
808
|
+
accent4: {
|
|
809
|
+
type: 'child',
|
|
810
|
+
childAttributes: CT_Color_Attributes
|
|
811
|
+
},
|
|
812
|
+
accent5: {
|
|
813
|
+
type: 'child',
|
|
814
|
+
childAttributes: CT_Color_Attributes
|
|
815
|
+
},
|
|
816
|
+
accent6: {
|
|
817
|
+
type: 'child',
|
|
818
|
+
childAttributes: CT_Color_Attributes
|
|
819
|
+
},
|
|
820
|
+
hlink: {
|
|
821
|
+
type: 'child',
|
|
822
|
+
childAttributes: CT_Color_Attributes
|
|
823
|
+
},
|
|
824
|
+
folHlink: {
|
|
825
|
+
type: 'child',
|
|
826
|
+
childAttributes: CT_Color_Attributes
|
|
827
|
+
},
|
|
828
|
+
extLst: {
|
|
829
|
+
type: 'child',
|
|
830
|
+
childAttributes: CT_OfficeArtExtensionList_Attributes
|
|
831
|
+
},
|
|
832
|
+
name: {
|
|
833
|
+
type: 'string'
|
|
834
|
+
}
|
|
835
|
+
};
|
|
836
|
+
var CT_CustomColor_Attributes = {
|
|
837
|
+
scrgbClr: {
|
|
838
|
+
type: 'child',
|
|
839
|
+
childAttributes: CT_ScRgbColor_Attributes
|
|
840
|
+
},
|
|
841
|
+
srgbClr: {
|
|
842
|
+
type: 'child',
|
|
843
|
+
childAttributes: CT_SRgbColor_Attributes
|
|
844
|
+
},
|
|
845
|
+
hslClr: {
|
|
846
|
+
type: 'child',
|
|
847
|
+
childAttributes: CT_HslColor_Attributes
|
|
848
|
+
},
|
|
849
|
+
sysClr: {
|
|
850
|
+
type: 'child',
|
|
851
|
+
childAttributes: CT_SystemColor_Attributes
|
|
852
|
+
},
|
|
853
|
+
schemeClr: {
|
|
854
|
+
type: 'child',
|
|
855
|
+
childAttributes: CT_SchemeColor_Attributes
|
|
856
|
+
},
|
|
857
|
+
prstClr: {
|
|
858
|
+
type: 'child',
|
|
859
|
+
childAttributes: CT_PresetColor_Attributes
|
|
860
|
+
},
|
|
861
|
+
name: {
|
|
862
|
+
type: 'string'
|
|
863
|
+
}
|
|
864
|
+
};
|
|
865
|
+
var CT_SupplementalFont_Attributes = {
|
|
866
|
+
script: {
|
|
867
|
+
type: 'string'
|
|
868
|
+
},
|
|
869
|
+
typeface: {
|
|
870
|
+
type: 'string'
|
|
871
|
+
}
|
|
872
|
+
};
|
|
873
|
+
var CT_CustomColorList_Attributes = {
|
|
874
|
+
custClr: {
|
|
875
|
+
type: 'child',
|
|
876
|
+
childAttributes: CT_CustomColor_Attributes,
|
|
877
|
+
childIsArray: true
|
|
878
|
+
}
|
|
879
|
+
};
|
|
880
|
+
var CT_TextFont_Attributes = {
|
|
881
|
+
typeface: {
|
|
882
|
+
type: 'string'
|
|
883
|
+
},
|
|
884
|
+
panose: {
|
|
885
|
+
type: 'string'
|
|
886
|
+
},
|
|
887
|
+
pitchFamily: {
|
|
888
|
+
type: 'int'
|
|
889
|
+
},
|
|
890
|
+
charset: {
|
|
891
|
+
type: 'int'
|
|
892
|
+
}
|
|
893
|
+
};
|
|
894
|
+
var CT_FontCollection_Attributes = {
|
|
895
|
+
latin: {
|
|
896
|
+
type: 'child',
|
|
897
|
+
childAttributes: CT_TextFont_Attributes
|
|
898
|
+
},
|
|
899
|
+
ea: {
|
|
900
|
+
type: 'child',
|
|
901
|
+
childAttributes: CT_TextFont_Attributes
|
|
902
|
+
},
|
|
903
|
+
cs: {
|
|
904
|
+
type: 'child',
|
|
905
|
+
childAttributes: CT_TextFont_Attributes
|
|
906
|
+
},
|
|
907
|
+
font: {
|
|
908
|
+
type: 'child',
|
|
909
|
+
childAttributes: CT_SupplementalFont_Attributes,
|
|
910
|
+
childIsArray: true
|
|
911
|
+
},
|
|
912
|
+
extLst: {
|
|
913
|
+
type: 'child',
|
|
914
|
+
childAttributes: CT_OfficeArtExtensionList_Attributes
|
|
915
|
+
}
|
|
916
|
+
};
|
|
917
|
+
var CT_BlurEffect_Attributes = {
|
|
918
|
+
rad: {
|
|
919
|
+
type: 'int'
|
|
920
|
+
},
|
|
921
|
+
grow: {
|
|
922
|
+
type: 'boolean'
|
|
923
|
+
}
|
|
924
|
+
};
|
|
925
|
+
var CT_NoFillProperties_Attributes = {};
|
|
926
|
+
var CT_SolidColorFillProperties_Attributes = {
|
|
927
|
+
scrgbClr: {
|
|
928
|
+
type: 'child',
|
|
929
|
+
childAttributes: CT_ScRgbColor_Attributes
|
|
930
|
+
},
|
|
931
|
+
srgbClr: {
|
|
932
|
+
type: 'child',
|
|
933
|
+
childAttributes: CT_SRgbColor_Attributes
|
|
934
|
+
},
|
|
935
|
+
hslClr: {
|
|
936
|
+
type: 'child',
|
|
937
|
+
childAttributes: CT_HslColor_Attributes
|
|
938
|
+
},
|
|
939
|
+
sysClr: {
|
|
940
|
+
type: 'child',
|
|
941
|
+
childAttributes: CT_SystemColor_Attributes
|
|
942
|
+
},
|
|
943
|
+
schemeClr: {
|
|
944
|
+
type: 'child',
|
|
945
|
+
childAttributes: CT_SchemeColor_Attributes
|
|
946
|
+
},
|
|
947
|
+
prstClr: {
|
|
948
|
+
type: 'child',
|
|
949
|
+
childAttributes: CT_PresetColor_Attributes
|
|
950
|
+
}
|
|
951
|
+
};
|
|
952
|
+
var CT_GradientStop_Attributes = {
|
|
953
|
+
scrgbClr: {
|
|
954
|
+
type: 'child',
|
|
955
|
+
childAttributes: CT_ScRgbColor_Attributes
|
|
956
|
+
},
|
|
957
|
+
srgbClr: {
|
|
958
|
+
type: 'child',
|
|
959
|
+
childAttributes: CT_SRgbColor_Attributes
|
|
960
|
+
},
|
|
961
|
+
hslClr: {
|
|
962
|
+
type: 'child',
|
|
963
|
+
childAttributes: CT_HslColor_Attributes
|
|
964
|
+
},
|
|
965
|
+
sysClr: {
|
|
966
|
+
type: 'child',
|
|
967
|
+
childAttributes: CT_SystemColor_Attributes
|
|
968
|
+
},
|
|
969
|
+
schemeClr: {
|
|
970
|
+
type: 'child',
|
|
971
|
+
childAttributes: CT_SchemeColor_Attributes
|
|
972
|
+
},
|
|
973
|
+
prstClr: {
|
|
974
|
+
type: 'child',
|
|
975
|
+
childAttributes: CT_PresetColor_Attributes
|
|
976
|
+
},
|
|
977
|
+
pos: {
|
|
978
|
+
type: 'string'
|
|
979
|
+
}
|
|
980
|
+
};
|
|
981
|
+
var CT_GradientStopList_Attributes = {
|
|
982
|
+
gs: {
|
|
983
|
+
type: 'child',
|
|
984
|
+
childAttributes: CT_GradientStop_Attributes,
|
|
985
|
+
childIsArray: true
|
|
986
|
+
}
|
|
987
|
+
};
|
|
988
|
+
var CT_LinearShadeProperties_Attributes = {
|
|
989
|
+
ang: {
|
|
990
|
+
type: 'int'
|
|
991
|
+
},
|
|
992
|
+
scaled: {
|
|
993
|
+
type: 'boolean'
|
|
994
|
+
}
|
|
995
|
+
};
|
|
996
|
+
var CT_RelativeRect_Attributes = {
|
|
997
|
+
l: {
|
|
998
|
+
type: 'string'
|
|
999
|
+
},
|
|
1000
|
+
t: {
|
|
1001
|
+
type: 'string'
|
|
1002
|
+
},
|
|
1003
|
+
r: {
|
|
1004
|
+
type: 'string'
|
|
1005
|
+
},
|
|
1006
|
+
b: {
|
|
1007
|
+
type: 'string'
|
|
1008
|
+
}
|
|
1009
|
+
};
|
|
1010
|
+
var CT_PathShadeProperties_Attributes = {
|
|
1011
|
+
fillToRect: {
|
|
1012
|
+
type: 'child',
|
|
1013
|
+
childAttributes: CT_RelativeRect_Attributes
|
|
1014
|
+
},
|
|
1015
|
+
path: {
|
|
1016
|
+
type: 'string'
|
|
1017
|
+
}
|
|
1018
|
+
};
|
|
1019
|
+
var CT_GradientFillProperties_Attributes = {
|
|
1020
|
+
gsLst: {
|
|
1021
|
+
type: 'child',
|
|
1022
|
+
childAttributes: CT_GradientStopList_Attributes
|
|
1023
|
+
},
|
|
1024
|
+
lin: {
|
|
1025
|
+
type: 'child',
|
|
1026
|
+
childAttributes: CT_LinearShadeProperties_Attributes
|
|
1027
|
+
},
|
|
1028
|
+
path: {
|
|
1029
|
+
type: 'child',
|
|
1030
|
+
childAttributes: CT_PathShadeProperties_Attributes
|
|
1031
|
+
},
|
|
1032
|
+
tileRect: {
|
|
1033
|
+
type: 'child',
|
|
1034
|
+
childAttributes: CT_RelativeRect_Attributes
|
|
1035
|
+
},
|
|
1036
|
+
flip: {
|
|
1037
|
+
type: 'string'
|
|
1038
|
+
},
|
|
1039
|
+
rotWithShape: {
|
|
1040
|
+
type: 'boolean'
|
|
1041
|
+
}
|
|
1042
|
+
};
|
|
1043
|
+
var CT_Blip_Attributes = {
|
|
1044
|
+
extLst: {
|
|
1045
|
+
type: 'child',
|
|
1046
|
+
childAttributes: CT_OfficeArtExtensionList_Attributes
|
|
1047
|
+
},
|
|
1048
|
+
cstate: {
|
|
1049
|
+
type: 'string'
|
|
1050
|
+
}
|
|
1051
|
+
};
|
|
1052
|
+
var CT_TileInfoProperties_Attributes = {
|
|
1053
|
+
tx: {
|
|
1054
|
+
type: 'string'
|
|
1055
|
+
},
|
|
1056
|
+
ty: {
|
|
1057
|
+
type: 'string'
|
|
1058
|
+
},
|
|
1059
|
+
sx: {
|
|
1060
|
+
type: 'string'
|
|
1061
|
+
},
|
|
1062
|
+
sy: {
|
|
1063
|
+
type: 'string'
|
|
1064
|
+
},
|
|
1065
|
+
flip: {
|
|
1066
|
+
type: 'string'
|
|
1067
|
+
},
|
|
1068
|
+
algn: {
|
|
1069
|
+
type: 'string'
|
|
1070
|
+
}
|
|
1071
|
+
};
|
|
1072
|
+
var CT_StretchInfoProperties_Attributes = {
|
|
1073
|
+
fillRect: {
|
|
1074
|
+
type: 'child',
|
|
1075
|
+
childAttributes: CT_RelativeRect_Attributes
|
|
1076
|
+
}
|
|
1077
|
+
};
|
|
1078
|
+
var CT_BlipFillProperties_Attributes = {
|
|
1079
|
+
blip: {
|
|
1080
|
+
type: 'child',
|
|
1081
|
+
childAttributes: CT_Blip_Attributes
|
|
1082
|
+
},
|
|
1083
|
+
srcRect: {
|
|
1084
|
+
type: 'child',
|
|
1085
|
+
childAttributes: CT_RelativeRect_Attributes
|
|
1086
|
+
},
|
|
1087
|
+
tile: {
|
|
1088
|
+
type: 'child',
|
|
1089
|
+
childAttributes: CT_TileInfoProperties_Attributes
|
|
1090
|
+
},
|
|
1091
|
+
stretch: {
|
|
1092
|
+
type: 'child',
|
|
1093
|
+
childAttributes: CT_StretchInfoProperties_Attributes
|
|
1094
|
+
},
|
|
1095
|
+
dpi: {
|
|
1096
|
+
type: 'int'
|
|
1097
|
+
},
|
|
1098
|
+
rotWithShape: {
|
|
1099
|
+
type: 'boolean'
|
|
1100
|
+
}
|
|
1101
|
+
};
|
|
1102
|
+
var CT_PatternFillProperties_Attributes = {
|
|
1103
|
+
fgClr: {
|
|
1104
|
+
type: 'child',
|
|
1105
|
+
childAttributes: CT_Color_Attributes
|
|
1106
|
+
},
|
|
1107
|
+
bgClr: {
|
|
1108
|
+
type: 'child',
|
|
1109
|
+
childAttributes: CT_Color_Attributes
|
|
1110
|
+
},
|
|
1111
|
+
prst: {
|
|
1112
|
+
type: 'string'
|
|
1113
|
+
}
|
|
1114
|
+
};
|
|
1115
|
+
var CT_GroupFillProperties_Attributes = {};
|
|
1116
|
+
var CT_FillOverlayEffect_Attributes = {
|
|
1117
|
+
noFill: {
|
|
1118
|
+
type: 'child',
|
|
1119
|
+
childAttributes: CT_NoFillProperties_Attributes
|
|
1120
|
+
},
|
|
1121
|
+
solidFill: {
|
|
1122
|
+
type: 'child',
|
|
1123
|
+
childAttributes: CT_SolidColorFillProperties_Attributes
|
|
1124
|
+
},
|
|
1125
|
+
gradFill: {
|
|
1126
|
+
type: 'child',
|
|
1127
|
+
childAttributes: CT_GradientFillProperties_Attributes
|
|
1128
|
+
},
|
|
1129
|
+
blipFill: {
|
|
1130
|
+
type: 'child',
|
|
1131
|
+
childAttributes: CT_BlipFillProperties_Attributes
|
|
1132
|
+
},
|
|
1133
|
+
pattFill: {
|
|
1134
|
+
type: 'child',
|
|
1135
|
+
childAttributes: CT_PatternFillProperties_Attributes
|
|
1136
|
+
},
|
|
1137
|
+
grpFill: {
|
|
1138
|
+
type: 'child',
|
|
1139
|
+
childAttributes: CT_GroupFillProperties_Attributes
|
|
1140
|
+
},
|
|
1141
|
+
blend: {
|
|
1142
|
+
type: 'string'
|
|
1143
|
+
}
|
|
1144
|
+
};
|
|
1145
|
+
var CT_GlowEffect_Attributes = {
|
|
1146
|
+
scrgbClr: {
|
|
1147
|
+
type: 'child',
|
|
1148
|
+
childAttributes: CT_ScRgbColor_Attributes
|
|
1149
|
+
},
|
|
1150
|
+
srgbClr: {
|
|
1151
|
+
type: 'child',
|
|
1152
|
+
childAttributes: CT_SRgbColor_Attributes
|
|
1153
|
+
},
|
|
1154
|
+
hslClr: {
|
|
1155
|
+
type: 'child',
|
|
1156
|
+
childAttributes: CT_HslColor_Attributes
|
|
1157
|
+
},
|
|
1158
|
+
sysClr: {
|
|
1159
|
+
type: 'child',
|
|
1160
|
+
childAttributes: CT_SystemColor_Attributes
|
|
1161
|
+
},
|
|
1162
|
+
schemeClr: {
|
|
1163
|
+
type: 'child',
|
|
1164
|
+
childAttributes: CT_SchemeColor_Attributes
|
|
1165
|
+
},
|
|
1166
|
+
prstClr: {
|
|
1167
|
+
type: 'child',
|
|
1168
|
+
childAttributes: CT_PresetColor_Attributes
|
|
1169
|
+
},
|
|
1170
|
+
rad: {
|
|
1171
|
+
type: 'int'
|
|
1172
|
+
}
|
|
1173
|
+
};
|
|
1174
|
+
var CT_InnerShadowEffect_Attributes = {
|
|
1175
|
+
scrgbClr: {
|
|
1176
|
+
type: 'child',
|
|
1177
|
+
childAttributes: CT_ScRgbColor_Attributes
|
|
1178
|
+
},
|
|
1179
|
+
srgbClr: {
|
|
1180
|
+
type: 'child',
|
|
1181
|
+
childAttributes: CT_SRgbColor_Attributes
|
|
1182
|
+
},
|
|
1183
|
+
hslClr: {
|
|
1184
|
+
type: 'child',
|
|
1185
|
+
childAttributes: CT_HslColor_Attributes
|
|
1186
|
+
},
|
|
1187
|
+
sysClr: {
|
|
1188
|
+
type: 'child',
|
|
1189
|
+
childAttributes: CT_SystemColor_Attributes
|
|
1190
|
+
},
|
|
1191
|
+
schemeClr: {
|
|
1192
|
+
type: 'child',
|
|
1193
|
+
childAttributes: CT_SchemeColor_Attributes
|
|
1194
|
+
},
|
|
1195
|
+
prstClr: {
|
|
1196
|
+
type: 'child',
|
|
1197
|
+
childAttributes: CT_PresetColor_Attributes
|
|
1198
|
+
},
|
|
1199
|
+
blurRad: {
|
|
1200
|
+
type: 'int'
|
|
1201
|
+
},
|
|
1202
|
+
dist: {
|
|
1203
|
+
type: 'int'
|
|
1204
|
+
},
|
|
1205
|
+
dir: {
|
|
1206
|
+
type: 'int'
|
|
1207
|
+
}
|
|
1208
|
+
};
|
|
1209
|
+
var CT_OuterShadowEffect_Attributes = {
|
|
1210
|
+
scrgbClr: {
|
|
1211
|
+
type: 'child',
|
|
1212
|
+
childAttributes: CT_ScRgbColor_Attributes
|
|
1213
|
+
},
|
|
1214
|
+
srgbClr: {
|
|
1215
|
+
type: 'child',
|
|
1216
|
+
childAttributes: CT_SRgbColor_Attributes
|
|
1217
|
+
},
|
|
1218
|
+
hslClr: {
|
|
1219
|
+
type: 'child',
|
|
1220
|
+
childAttributes: CT_HslColor_Attributes
|
|
1221
|
+
},
|
|
1222
|
+
sysClr: {
|
|
1223
|
+
type: 'child',
|
|
1224
|
+
childAttributes: CT_SystemColor_Attributes
|
|
1225
|
+
},
|
|
1226
|
+
schemeClr: {
|
|
1227
|
+
type: 'child',
|
|
1228
|
+
childAttributes: CT_SchemeColor_Attributes
|
|
1229
|
+
},
|
|
1230
|
+
prstClr: {
|
|
1231
|
+
type: 'child',
|
|
1232
|
+
childAttributes: CT_PresetColor_Attributes
|
|
1233
|
+
},
|
|
1234
|
+
blurRad: {
|
|
1235
|
+
type: 'int'
|
|
1236
|
+
},
|
|
1237
|
+
dist: {
|
|
1238
|
+
type: 'int'
|
|
1239
|
+
},
|
|
1240
|
+
dir: {
|
|
1241
|
+
type: 'int'
|
|
1242
|
+
},
|
|
1243
|
+
sx: {
|
|
1244
|
+
type: 'string'
|
|
1245
|
+
},
|
|
1246
|
+
sy: {
|
|
1247
|
+
type: 'string'
|
|
1248
|
+
},
|
|
1249
|
+
kx: {
|
|
1250
|
+
type: 'int'
|
|
1251
|
+
},
|
|
1252
|
+
ky: {
|
|
1253
|
+
type: 'int'
|
|
1254
|
+
},
|
|
1255
|
+
algn: {
|
|
1256
|
+
type: 'string'
|
|
1257
|
+
},
|
|
1258
|
+
rotWithShape: {
|
|
1259
|
+
type: 'boolean'
|
|
1260
|
+
}
|
|
1261
|
+
};
|
|
1262
|
+
var CT_PresetShadowEffect_Attributes = {
|
|
1263
|
+
scrgbClr: {
|
|
1264
|
+
type: 'child',
|
|
1265
|
+
childAttributes: CT_ScRgbColor_Attributes
|
|
1266
|
+
},
|
|
1267
|
+
srgbClr: {
|
|
1268
|
+
type: 'child',
|
|
1269
|
+
childAttributes: CT_SRgbColor_Attributes
|
|
1270
|
+
},
|
|
1271
|
+
hslClr: {
|
|
1272
|
+
type: 'child',
|
|
1273
|
+
childAttributes: CT_HslColor_Attributes
|
|
1274
|
+
},
|
|
1275
|
+
sysClr: {
|
|
1276
|
+
type: 'child',
|
|
1277
|
+
childAttributes: CT_SystemColor_Attributes
|
|
1278
|
+
},
|
|
1279
|
+
schemeClr: {
|
|
1280
|
+
type: 'child',
|
|
1281
|
+
childAttributes: CT_SchemeColor_Attributes
|
|
1282
|
+
},
|
|
1283
|
+
prstClr: {
|
|
1284
|
+
type: 'child',
|
|
1285
|
+
childAttributes: CT_PresetColor_Attributes
|
|
1286
|
+
},
|
|
1287
|
+
prst: {
|
|
1288
|
+
type: 'string'
|
|
1289
|
+
},
|
|
1290
|
+
dist: {
|
|
1291
|
+
type: 'int'
|
|
1292
|
+
},
|
|
1293
|
+
dir: {
|
|
1294
|
+
type: 'int'
|
|
1295
|
+
}
|
|
1296
|
+
};
|
|
1297
|
+
var CT_ReflectionEffect_Attributes = {
|
|
1298
|
+
blurRad: {
|
|
1299
|
+
type: 'int'
|
|
1300
|
+
},
|
|
1301
|
+
stA: {
|
|
1302
|
+
type: 'string'
|
|
1303
|
+
},
|
|
1304
|
+
stPos: {
|
|
1305
|
+
type: 'string'
|
|
1306
|
+
},
|
|
1307
|
+
endA: {
|
|
1308
|
+
type: 'string'
|
|
1309
|
+
},
|
|
1310
|
+
endPos: {
|
|
1311
|
+
type: 'string'
|
|
1312
|
+
},
|
|
1313
|
+
dist: {
|
|
1314
|
+
type: 'int'
|
|
1315
|
+
},
|
|
1316
|
+
dir: {
|
|
1317
|
+
type: 'int'
|
|
1318
|
+
},
|
|
1319
|
+
fadeDir: {
|
|
1320
|
+
type: 'int'
|
|
1321
|
+
},
|
|
1322
|
+
sx: {
|
|
1323
|
+
type: 'string'
|
|
1324
|
+
},
|
|
1325
|
+
sy: {
|
|
1326
|
+
type: 'string'
|
|
1327
|
+
},
|
|
1328
|
+
kx: {
|
|
1329
|
+
type: 'int'
|
|
1330
|
+
},
|
|
1331
|
+
ky: {
|
|
1332
|
+
type: 'int'
|
|
1333
|
+
},
|
|
1334
|
+
algn: {
|
|
1335
|
+
type: 'string'
|
|
1336
|
+
},
|
|
1337
|
+
rotWithShape: {
|
|
1338
|
+
type: 'boolean'
|
|
1339
|
+
}
|
|
1340
|
+
};
|
|
1341
|
+
var CT_SoftEdgesEffect_Attributes = {
|
|
1342
|
+
rad: {
|
|
1343
|
+
type: 'int'
|
|
1344
|
+
}
|
|
1345
|
+
};
|
|
1346
|
+
var CT_EffectList_Attributes = {
|
|
1347
|
+
blur: {
|
|
1348
|
+
type: 'child',
|
|
1349
|
+
childAttributes: CT_BlurEffect_Attributes
|
|
1350
|
+
},
|
|
1351
|
+
fillOverlay: {
|
|
1352
|
+
type: 'child',
|
|
1353
|
+
childAttributes: CT_FillOverlayEffect_Attributes
|
|
1354
|
+
},
|
|
1355
|
+
glow: {
|
|
1356
|
+
type: 'child',
|
|
1357
|
+
childAttributes: CT_GlowEffect_Attributes
|
|
1358
|
+
},
|
|
1359
|
+
innerShdw: {
|
|
1360
|
+
type: 'child',
|
|
1361
|
+
childAttributes: CT_InnerShadowEffect_Attributes
|
|
1362
|
+
},
|
|
1363
|
+
outerShdw: {
|
|
1364
|
+
type: 'child',
|
|
1365
|
+
childAttributes: CT_OuterShadowEffect_Attributes
|
|
1366
|
+
},
|
|
1367
|
+
prstShdw: {
|
|
1368
|
+
type: 'child',
|
|
1369
|
+
childAttributes: CT_PresetShadowEffect_Attributes
|
|
1370
|
+
},
|
|
1371
|
+
reflection: {
|
|
1372
|
+
type: 'child',
|
|
1373
|
+
childAttributes: CT_ReflectionEffect_Attributes
|
|
1374
|
+
},
|
|
1375
|
+
softEdge: {
|
|
1376
|
+
type: 'child',
|
|
1377
|
+
childAttributes: CT_SoftEdgesEffect_Attributes
|
|
1378
|
+
}
|
|
1379
|
+
};
|
|
1380
|
+
var CT_EffectContainer_Attributes = {
|
|
1381
|
+
type: {
|
|
1382
|
+
type: 'string'
|
|
1383
|
+
},
|
|
1384
|
+
name: {
|
|
1385
|
+
type: 'string'
|
|
1386
|
+
}
|
|
1387
|
+
};
|
|
1388
|
+
var CT_SphereCoords_Attributes = {
|
|
1389
|
+
lat: {
|
|
1390
|
+
type: 'int'
|
|
1391
|
+
},
|
|
1392
|
+
lon: {
|
|
1393
|
+
type: 'int'
|
|
1394
|
+
},
|
|
1395
|
+
rev: {
|
|
1396
|
+
type: 'int'
|
|
1397
|
+
}
|
|
1398
|
+
};
|
|
1399
|
+
var CT_Camera_Attributes = {
|
|
1400
|
+
rot: {
|
|
1401
|
+
type: 'child',
|
|
1402
|
+
childAttributes: CT_SphereCoords_Attributes
|
|
1403
|
+
},
|
|
1404
|
+
prst: {
|
|
1405
|
+
type: 'string'
|
|
1406
|
+
},
|
|
1407
|
+
fov: {
|
|
1408
|
+
type: 'int'
|
|
1409
|
+
},
|
|
1410
|
+
zoom: {
|
|
1411
|
+
type: 'string'
|
|
1412
|
+
}
|
|
1413
|
+
};
|
|
1414
|
+
var CT_LightRig_Attributes = {
|
|
1415
|
+
rot: {
|
|
1416
|
+
type: 'child',
|
|
1417
|
+
childAttributes: CT_SphereCoords_Attributes
|
|
1418
|
+
},
|
|
1419
|
+
rig: {
|
|
1420
|
+
type: 'string'
|
|
1421
|
+
},
|
|
1422
|
+
dir: {
|
|
1423
|
+
type: 'string'
|
|
1424
|
+
}
|
|
1425
|
+
};
|
|
1426
|
+
var CT_Point3D_Attributes = {
|
|
1427
|
+
x: {
|
|
1428
|
+
type: 'string'
|
|
1429
|
+
},
|
|
1430
|
+
y: {
|
|
1431
|
+
type: 'string'
|
|
1432
|
+
},
|
|
1433
|
+
z: {
|
|
1434
|
+
type: 'string'
|
|
1435
|
+
}
|
|
1436
|
+
};
|
|
1437
|
+
var CT_Vector3D_Attributes = {
|
|
1438
|
+
dx: {
|
|
1439
|
+
type: 'string'
|
|
1440
|
+
},
|
|
1441
|
+
dy: {
|
|
1442
|
+
type: 'string'
|
|
1443
|
+
},
|
|
1444
|
+
dz: {
|
|
1445
|
+
type: 'string'
|
|
1446
|
+
}
|
|
1447
|
+
};
|
|
1448
|
+
var CT_Backdrop_Attributes = {
|
|
1449
|
+
anchor: {
|
|
1450
|
+
type: 'child',
|
|
1451
|
+
childAttributes: CT_Point3D_Attributes
|
|
1452
|
+
},
|
|
1453
|
+
norm: {
|
|
1454
|
+
type: 'child',
|
|
1455
|
+
childAttributes: CT_Vector3D_Attributes
|
|
1456
|
+
},
|
|
1457
|
+
up: {
|
|
1458
|
+
type: 'child',
|
|
1459
|
+
childAttributes: CT_Vector3D_Attributes
|
|
1460
|
+
},
|
|
1461
|
+
extLst: {
|
|
1462
|
+
type: 'child',
|
|
1463
|
+
childAttributes: CT_OfficeArtExtensionList_Attributes
|
|
1464
|
+
}
|
|
1465
|
+
};
|
|
1466
|
+
var CT_Scene3D_Attributes = {
|
|
1467
|
+
camera: {
|
|
1468
|
+
type: 'child',
|
|
1469
|
+
childAttributes: CT_Camera_Attributes
|
|
1470
|
+
},
|
|
1471
|
+
lightRig: {
|
|
1472
|
+
type: 'child',
|
|
1473
|
+
childAttributes: CT_LightRig_Attributes
|
|
1474
|
+
},
|
|
1475
|
+
backdrop: {
|
|
1476
|
+
type: 'child',
|
|
1477
|
+
childAttributes: CT_Backdrop_Attributes
|
|
1478
|
+
},
|
|
1479
|
+
extLst: {
|
|
1480
|
+
type: 'child',
|
|
1481
|
+
childAttributes: CT_OfficeArtExtensionList_Attributes
|
|
1482
|
+
}
|
|
1483
|
+
};
|
|
1484
|
+
var CT_Bevel_Attributes = {
|
|
1485
|
+
w: {
|
|
1486
|
+
type: 'int'
|
|
1487
|
+
},
|
|
1488
|
+
h: {
|
|
1489
|
+
type: 'int'
|
|
1490
|
+
},
|
|
1491
|
+
prst: {
|
|
1492
|
+
type: 'string'
|
|
1493
|
+
}
|
|
1494
|
+
};
|
|
1495
|
+
var CT_Shape3D_Attributes = {
|
|
1496
|
+
bevelT: {
|
|
1497
|
+
type: 'child',
|
|
1498
|
+
childAttributes: CT_Bevel_Attributes
|
|
1499
|
+
},
|
|
1500
|
+
bevelB: {
|
|
1501
|
+
type: 'child',
|
|
1502
|
+
childAttributes: CT_Bevel_Attributes
|
|
1503
|
+
},
|
|
1504
|
+
extrusionClr: {
|
|
1505
|
+
type: 'child',
|
|
1506
|
+
childAttributes: CT_Color_Attributes
|
|
1507
|
+
},
|
|
1508
|
+
contourClr: {
|
|
1509
|
+
type: 'child',
|
|
1510
|
+
childAttributes: CT_Color_Attributes
|
|
1511
|
+
},
|
|
1512
|
+
extLst: {
|
|
1513
|
+
type: 'child',
|
|
1514
|
+
childAttributes: CT_OfficeArtExtensionList_Attributes
|
|
1515
|
+
},
|
|
1516
|
+
z: {
|
|
1517
|
+
type: 'string'
|
|
1518
|
+
},
|
|
1519
|
+
extrusionH: {
|
|
1520
|
+
type: 'int'
|
|
1521
|
+
},
|
|
1522
|
+
contourW: {
|
|
1523
|
+
type: 'int'
|
|
1524
|
+
},
|
|
1525
|
+
prstMaterial: {
|
|
1526
|
+
type: 'string'
|
|
1527
|
+
}
|
|
1528
|
+
};
|
|
1529
|
+
var CT_EffectStyleItem_Attributes = {
|
|
1530
|
+
effectLst: {
|
|
1531
|
+
type: 'child',
|
|
1532
|
+
childAttributes: CT_EffectList_Attributes
|
|
1533
|
+
},
|
|
1534
|
+
effectDag: {
|
|
1535
|
+
type: 'child',
|
|
1536
|
+
childAttributes: CT_EffectContainer_Attributes
|
|
1537
|
+
},
|
|
1538
|
+
scene3d: {
|
|
1539
|
+
type: 'child',
|
|
1540
|
+
childAttributes: CT_Scene3D_Attributes
|
|
1541
|
+
},
|
|
1542
|
+
sp3d: {
|
|
1543
|
+
type: 'child',
|
|
1544
|
+
childAttributes: CT_Shape3D_Attributes
|
|
1545
|
+
}
|
|
1546
|
+
};
|
|
1547
|
+
var CT_FontScheme_Attributes = {
|
|
1548
|
+
majorFont: {
|
|
1549
|
+
type: 'child',
|
|
1550
|
+
childAttributes: CT_FontCollection_Attributes
|
|
1551
|
+
},
|
|
1552
|
+
minorFont: {
|
|
1553
|
+
type: 'child',
|
|
1554
|
+
childAttributes: CT_FontCollection_Attributes
|
|
1555
|
+
},
|
|
1556
|
+
extLst: {
|
|
1557
|
+
type: 'child',
|
|
1558
|
+
childAttributes: CT_OfficeArtExtensionList_Attributes
|
|
1559
|
+
},
|
|
1560
|
+
name: {
|
|
1561
|
+
type: 'string'
|
|
1562
|
+
}
|
|
1563
|
+
};
|
|
1564
|
+
var CT_FillStyleList_Attributes = {
|
|
1565
|
+
noFill: {
|
|
1566
|
+
type: 'child',
|
|
1567
|
+
childAttributes: CT_NoFillProperties_Attributes
|
|
1568
|
+
},
|
|
1569
|
+
solidFill: {
|
|
1570
|
+
type: 'child',
|
|
1571
|
+
childAttributes: CT_SolidColorFillProperties_Attributes
|
|
1572
|
+
},
|
|
1573
|
+
gradFill: {
|
|
1574
|
+
type: 'child',
|
|
1575
|
+
childAttributes: CT_GradientFillProperties_Attributes
|
|
1576
|
+
},
|
|
1577
|
+
blipFill: {
|
|
1578
|
+
type: 'child',
|
|
1579
|
+
childAttributes: CT_BlipFillProperties_Attributes
|
|
1580
|
+
},
|
|
1581
|
+
pattFill: {
|
|
1582
|
+
type: 'child',
|
|
1583
|
+
childAttributes: CT_PatternFillProperties_Attributes
|
|
1584
|
+
},
|
|
1585
|
+
grpFill: {
|
|
1586
|
+
type: 'child',
|
|
1587
|
+
childAttributes: CT_GroupFillProperties_Attributes
|
|
1588
|
+
}
|
|
1589
|
+
};
|
|
1590
|
+
var CT_PresetLineDashProperties_Attributes = {
|
|
1591
|
+
val: {
|
|
1592
|
+
type: 'string'
|
|
1593
|
+
}
|
|
1594
|
+
};
|
|
1595
|
+
var CT_DashStop_Attributes = {
|
|
1596
|
+
d: {
|
|
1597
|
+
type: 'string'
|
|
1598
|
+
},
|
|
1599
|
+
sp: {
|
|
1600
|
+
type: 'string'
|
|
1601
|
+
}
|
|
1602
|
+
};
|
|
1603
|
+
var CT_DashStopList_Attributes = {
|
|
1604
|
+
ds: {
|
|
1605
|
+
type: 'child',
|
|
1606
|
+
childAttributes: CT_DashStop_Attributes,
|
|
1607
|
+
childIsArray: true
|
|
1608
|
+
}
|
|
1609
|
+
};
|
|
1610
|
+
var CT_LineJoinRound_Attributes = {};
|
|
1611
|
+
var CT_LineJoinBevel_Attributes = {};
|
|
1612
|
+
var CT_LineJoinMiterProperties_Attributes = {
|
|
1613
|
+
lim: {
|
|
1614
|
+
type: 'string'
|
|
1615
|
+
}
|
|
1616
|
+
};
|
|
1617
|
+
var CT_LineEndProperties_Attributes = {
|
|
1618
|
+
type: {
|
|
1619
|
+
type: 'string'
|
|
1620
|
+
},
|
|
1621
|
+
w: {
|
|
1622
|
+
type: 'string'
|
|
1623
|
+
},
|
|
1624
|
+
len: {
|
|
1625
|
+
type: 'string'
|
|
1626
|
+
}
|
|
1627
|
+
};
|
|
1628
|
+
var CT_LineProperties_Attributes = {
|
|
1629
|
+
noFill: {
|
|
1630
|
+
type: 'child',
|
|
1631
|
+
childAttributes: CT_NoFillProperties_Attributes
|
|
1632
|
+
},
|
|
1633
|
+
solidFill: {
|
|
1634
|
+
type: 'child',
|
|
1635
|
+
childAttributes: CT_SolidColorFillProperties_Attributes
|
|
1636
|
+
},
|
|
1637
|
+
gradFill: {
|
|
1638
|
+
type: 'child',
|
|
1639
|
+
childAttributes: CT_GradientFillProperties_Attributes
|
|
1640
|
+
},
|
|
1641
|
+
pattFill: {
|
|
1642
|
+
type: 'child',
|
|
1643
|
+
childAttributes: CT_PatternFillProperties_Attributes
|
|
1644
|
+
},
|
|
1645
|
+
prstDash: {
|
|
1646
|
+
type: 'child',
|
|
1647
|
+
childAttributes: CT_PresetLineDashProperties_Attributes
|
|
1648
|
+
},
|
|
1649
|
+
custDash: {
|
|
1650
|
+
type: 'child',
|
|
1651
|
+
childAttributes: CT_DashStopList_Attributes
|
|
1652
|
+
},
|
|
1653
|
+
round: {
|
|
1654
|
+
type: 'child',
|
|
1655
|
+
childAttributes: CT_LineJoinRound_Attributes
|
|
1656
|
+
},
|
|
1657
|
+
bevel: {
|
|
1658
|
+
type: 'child',
|
|
1659
|
+
childAttributes: CT_LineJoinBevel_Attributes
|
|
1660
|
+
},
|
|
1661
|
+
miter: {
|
|
1662
|
+
type: 'child',
|
|
1663
|
+
childAttributes: CT_LineJoinMiterProperties_Attributes
|
|
1664
|
+
},
|
|
1665
|
+
headEnd: {
|
|
1666
|
+
type: 'child',
|
|
1667
|
+
childAttributes: CT_LineEndProperties_Attributes
|
|
1668
|
+
},
|
|
1669
|
+
tailEnd: {
|
|
1670
|
+
type: 'child',
|
|
1671
|
+
childAttributes: CT_LineEndProperties_Attributes
|
|
1672
|
+
},
|
|
1673
|
+
extLst: {
|
|
1674
|
+
type: 'child',
|
|
1675
|
+
childAttributes: CT_OfficeArtExtensionList_Attributes
|
|
1676
|
+
},
|
|
1677
|
+
w: {
|
|
1678
|
+
type: 'int'
|
|
1679
|
+
},
|
|
1680
|
+
cap: {
|
|
1681
|
+
type: 'string'
|
|
1682
|
+
},
|
|
1683
|
+
cmpd: {
|
|
1684
|
+
type: 'string'
|
|
1685
|
+
},
|
|
1686
|
+
algn: {
|
|
1687
|
+
type: 'string'
|
|
1688
|
+
}
|
|
1689
|
+
};
|
|
1690
|
+
var CT_LineStyleList_Attributes = {
|
|
1691
|
+
ln: {
|
|
1692
|
+
type: 'child',
|
|
1693
|
+
childAttributes: CT_LineProperties_Attributes,
|
|
1694
|
+
childIsArray: true
|
|
1695
|
+
}
|
|
1696
|
+
};
|
|
1697
|
+
var CT_EffectStyleList_Attributes = {
|
|
1698
|
+
effectStyle: {
|
|
1699
|
+
type: 'child',
|
|
1700
|
+
childAttributes: CT_EffectStyleItem_Attributes,
|
|
1701
|
+
childIsArray: true
|
|
1702
|
+
}
|
|
1703
|
+
};
|
|
1704
|
+
var CT_BackgroundFillStyleList_Attributes = {
|
|
1705
|
+
noFill: {
|
|
1706
|
+
type: 'child',
|
|
1707
|
+
childAttributes: CT_NoFillProperties_Attributes
|
|
1708
|
+
},
|
|
1709
|
+
solidFill: {
|
|
1710
|
+
type: 'child',
|
|
1711
|
+
childAttributes: CT_SolidColorFillProperties_Attributes
|
|
1712
|
+
},
|
|
1713
|
+
gradFill: {
|
|
1714
|
+
type: 'child',
|
|
1715
|
+
childAttributes: CT_GradientFillProperties_Attributes
|
|
1716
|
+
},
|
|
1717
|
+
blipFill: {
|
|
1718
|
+
type: 'child',
|
|
1719
|
+
childAttributes: CT_BlipFillProperties_Attributes
|
|
1720
|
+
},
|
|
1721
|
+
pattFill: {
|
|
1722
|
+
type: 'child',
|
|
1723
|
+
childAttributes: CT_PatternFillProperties_Attributes
|
|
1724
|
+
},
|
|
1725
|
+
grpFill: {
|
|
1726
|
+
type: 'child',
|
|
1727
|
+
childAttributes: CT_GroupFillProperties_Attributes
|
|
1728
|
+
}
|
|
1729
|
+
};
|
|
1730
|
+
var CT_StyleMatrix_Attributes = {
|
|
1731
|
+
fillStyleLst: {
|
|
1732
|
+
type: 'child',
|
|
1733
|
+
childAttributes: CT_FillStyleList_Attributes
|
|
1734
|
+
},
|
|
1735
|
+
lnStyleLst: {
|
|
1736
|
+
type: 'child',
|
|
1737
|
+
childAttributes: CT_LineStyleList_Attributes
|
|
1738
|
+
},
|
|
1739
|
+
effectStyleLst: {
|
|
1740
|
+
type: 'child',
|
|
1741
|
+
childAttributes: CT_EffectStyleList_Attributes
|
|
1742
|
+
},
|
|
1743
|
+
bgFillStyleLst: {
|
|
1744
|
+
type: 'child',
|
|
1745
|
+
childAttributes: CT_BackgroundFillStyleList_Attributes
|
|
1746
|
+
},
|
|
1747
|
+
name: {
|
|
1748
|
+
type: 'string'
|
|
1749
|
+
}
|
|
1750
|
+
};
|
|
1751
|
+
var CT_BaseStyles_Attributes = {
|
|
1752
|
+
clrScheme: {
|
|
1753
|
+
type: 'child',
|
|
1754
|
+
childAttributes: CT_ColorScheme_Attributes
|
|
1755
|
+
},
|
|
1756
|
+
fontScheme: {
|
|
1757
|
+
type: 'child',
|
|
1758
|
+
childAttributes: CT_FontScheme_Attributes
|
|
1759
|
+
},
|
|
1760
|
+
fmtScheme: {
|
|
1761
|
+
type: 'child',
|
|
1762
|
+
childAttributes: CT_StyleMatrix_Attributes
|
|
1763
|
+
},
|
|
1764
|
+
extLst: {
|
|
1765
|
+
type: 'child',
|
|
1766
|
+
childAttributes: CT_OfficeArtExtensionList_Attributes
|
|
1767
|
+
}
|
|
1768
|
+
};
|
|
1769
|
+
var CT_Point2D_Attributes = {
|
|
1770
|
+
x: {
|
|
1771
|
+
type: 'string'
|
|
1772
|
+
},
|
|
1773
|
+
y: {
|
|
1774
|
+
type: 'string'
|
|
1775
|
+
}
|
|
1776
|
+
};
|
|
1777
|
+
var CT_PositiveSize2D_Attributes = {
|
|
1778
|
+
cx: {
|
|
1779
|
+
type: 'int'
|
|
1780
|
+
},
|
|
1781
|
+
cy: {
|
|
1782
|
+
type: 'int'
|
|
1783
|
+
}
|
|
1784
|
+
};
|
|
1785
|
+
var CT_Transform2D_Attributes = {
|
|
1786
|
+
off: {
|
|
1787
|
+
type: 'child',
|
|
1788
|
+
childAttributes: CT_Point2D_Attributes
|
|
1789
|
+
},
|
|
1790
|
+
ext: {
|
|
1791
|
+
type: 'child',
|
|
1792
|
+
childAttributes: CT_PositiveSize2D_Attributes
|
|
1793
|
+
},
|
|
1794
|
+
rot: {
|
|
1795
|
+
type: 'int'
|
|
1796
|
+
},
|
|
1797
|
+
flipH: {
|
|
1798
|
+
type: 'boolean'
|
|
1799
|
+
},
|
|
1800
|
+
flipV: {
|
|
1801
|
+
type: 'boolean'
|
|
1802
|
+
}
|
|
1803
|
+
};
|
|
1804
|
+
var CT_EmbeddedWAVAudioFile_Attributes = {
|
|
1805
|
+
name: {
|
|
1806
|
+
type: 'string'
|
|
1807
|
+
}
|
|
1808
|
+
};
|
|
1809
|
+
var CT_Hyperlink_Attributes = {
|
|
1810
|
+
snd: {
|
|
1811
|
+
type: 'child',
|
|
1812
|
+
childAttributes: CT_EmbeddedWAVAudioFile_Attributes
|
|
1813
|
+
},
|
|
1814
|
+
extLst: {
|
|
1815
|
+
type: 'child',
|
|
1816
|
+
childAttributes: CT_OfficeArtExtensionList_Attributes
|
|
1817
|
+
},
|
|
1818
|
+
r_id: {
|
|
1819
|
+
type: 'string'
|
|
1820
|
+
},
|
|
1821
|
+
invalidUrl: {
|
|
1822
|
+
type: 'string'
|
|
1823
|
+
},
|
|
1824
|
+
action: {
|
|
1825
|
+
type: 'string'
|
|
1826
|
+
},
|
|
1827
|
+
tgtFrame: {
|
|
1828
|
+
type: 'string'
|
|
1829
|
+
},
|
|
1830
|
+
tooltip: {
|
|
1831
|
+
type: 'string'
|
|
1832
|
+
},
|
|
1833
|
+
history: {
|
|
1834
|
+
type: 'boolean'
|
|
1835
|
+
},
|
|
1836
|
+
highlightClick: {
|
|
1837
|
+
type: 'boolean'
|
|
1838
|
+
},
|
|
1839
|
+
endSnd: {
|
|
1840
|
+
type: 'boolean'
|
|
1841
|
+
}
|
|
1842
|
+
};
|
|
1843
|
+
var CT_GeomGuide_Attributes = {
|
|
1844
|
+
name: {
|
|
1845
|
+
type: 'string'
|
|
1846
|
+
},
|
|
1847
|
+
fmla: {
|
|
1848
|
+
type: 'string'
|
|
1849
|
+
}
|
|
1850
|
+
};
|
|
1851
|
+
var CT_GeomGuideList_Attributes = {
|
|
1852
|
+
gd: {
|
|
1853
|
+
type: 'child',
|
|
1854
|
+
childAttributes: CT_GeomGuide_Attributes,
|
|
1855
|
+
childIsArray: true
|
|
1856
|
+
}
|
|
1857
|
+
};
|
|
1858
|
+
var CT_PresetTextShape_Attributes = {
|
|
1859
|
+
avLst: {
|
|
1860
|
+
type: 'child',
|
|
1861
|
+
childAttributes: CT_GeomGuideList_Attributes
|
|
1862
|
+
},
|
|
1863
|
+
prst: {
|
|
1864
|
+
type: 'string'
|
|
1865
|
+
}
|
|
1866
|
+
};
|
|
1867
|
+
var CT_TextNoAutofit_Attributes = {};
|
|
1868
|
+
var CT_TextNormalAutofit_Attributes = {
|
|
1869
|
+
fontScale: {
|
|
1870
|
+
type: 'string'
|
|
1871
|
+
},
|
|
1872
|
+
lnSpcReduction: {
|
|
1873
|
+
type: 'string'
|
|
1874
|
+
}
|
|
1875
|
+
};
|
|
1876
|
+
var CT_TextShapeAutofit_Attributes = {};
|
|
1877
|
+
var CT_FlatText_Attributes = {
|
|
1878
|
+
z: {
|
|
1879
|
+
type: 'string'
|
|
1880
|
+
}
|
|
1881
|
+
};
|
|
1882
|
+
var CT_TextBodyProperties_Attributes = {
|
|
1883
|
+
prstTxWarp: {
|
|
1884
|
+
type: 'child',
|
|
1885
|
+
childAttributes: CT_PresetTextShape_Attributes
|
|
1886
|
+
},
|
|
1887
|
+
noAutofit: {
|
|
1888
|
+
type: 'child',
|
|
1889
|
+
childAttributes: CT_TextNoAutofit_Attributes,
|
|
1890
|
+
childIsArray: true
|
|
1891
|
+
},
|
|
1892
|
+
normAutofit: {
|
|
1893
|
+
type: 'child',
|
|
1894
|
+
childAttributes: CT_TextNormalAutofit_Attributes,
|
|
1895
|
+
childIsArray: true
|
|
1896
|
+
},
|
|
1897
|
+
spAutoFit: {
|
|
1898
|
+
type: 'child',
|
|
1899
|
+
childAttributes: CT_TextShapeAutofit_Attributes,
|
|
1900
|
+
childIsArray: true
|
|
1901
|
+
},
|
|
1902
|
+
scene3d: {
|
|
1903
|
+
type: 'child',
|
|
1904
|
+
childAttributes: CT_Scene3D_Attributes
|
|
1905
|
+
},
|
|
1906
|
+
sp3d: {
|
|
1907
|
+
type: 'child',
|
|
1908
|
+
childAttributes: CT_Shape3D_Attributes
|
|
1909
|
+
},
|
|
1910
|
+
flatTx: {
|
|
1911
|
+
type: 'child',
|
|
1912
|
+
childAttributes: CT_FlatText_Attributes
|
|
1913
|
+
},
|
|
1914
|
+
extLst: {
|
|
1915
|
+
type: 'child',
|
|
1916
|
+
childAttributes: CT_OfficeArtExtensionList_Attributes
|
|
1917
|
+
},
|
|
1918
|
+
rot: {
|
|
1919
|
+
type: 'int'
|
|
1920
|
+
},
|
|
1921
|
+
spcFirstLastPara: {
|
|
1922
|
+
type: 'boolean'
|
|
1923
|
+
},
|
|
1924
|
+
vertOverflow: {
|
|
1925
|
+
type: 'string'
|
|
1926
|
+
},
|
|
1927
|
+
horzOverflow: {
|
|
1928
|
+
type: 'string'
|
|
1929
|
+
},
|
|
1930
|
+
vert: {
|
|
1931
|
+
type: 'string'
|
|
1932
|
+
},
|
|
1933
|
+
wrap: {
|
|
1934
|
+
type: 'string'
|
|
1935
|
+
},
|
|
1936
|
+
lIns: {
|
|
1937
|
+
type: 'string'
|
|
1938
|
+
},
|
|
1939
|
+
tIns: {
|
|
1940
|
+
type: 'string'
|
|
1941
|
+
},
|
|
1942
|
+
rIns: {
|
|
1943
|
+
type: 'string'
|
|
1944
|
+
},
|
|
1945
|
+
bIns: {
|
|
1946
|
+
type: 'string'
|
|
1947
|
+
},
|
|
1948
|
+
numCol: {
|
|
1949
|
+
type: 'int'
|
|
1950
|
+
},
|
|
1951
|
+
spcCol: {
|
|
1952
|
+
type: 'int'
|
|
1953
|
+
},
|
|
1954
|
+
rtlCol: {
|
|
1955
|
+
type: 'boolean'
|
|
1956
|
+
},
|
|
1957
|
+
fromWordArt: {
|
|
1958
|
+
type: 'boolean'
|
|
1959
|
+
},
|
|
1960
|
+
anchor: {
|
|
1961
|
+
type: 'string'
|
|
1962
|
+
},
|
|
1963
|
+
anchorCtr: {
|
|
1964
|
+
type: 'boolean'
|
|
1965
|
+
},
|
|
1966
|
+
forceAA: {
|
|
1967
|
+
type: 'boolean'
|
|
1968
|
+
},
|
|
1969
|
+
upright: {
|
|
1970
|
+
type: 'boolean'
|
|
1971
|
+
},
|
|
1972
|
+
compatLnSpc: {
|
|
1973
|
+
type: 'boolean'
|
|
1974
|
+
}
|
|
1975
|
+
};
|
|
1976
|
+
var CT_TextSpacingPercent_Attributes = {
|
|
1977
|
+
val: {
|
|
1978
|
+
type: 'string'
|
|
1979
|
+
}
|
|
1980
|
+
};
|
|
1981
|
+
var CT_TextSpacingPoint_Attributes = {
|
|
1982
|
+
val: {
|
|
1983
|
+
type: 'int'
|
|
1984
|
+
}
|
|
1985
|
+
};
|
|
1986
|
+
var CT_TextSpacing_Attributes = {
|
|
1987
|
+
spcPct: {
|
|
1988
|
+
type: 'child',
|
|
1989
|
+
childAttributes: CT_TextSpacingPercent_Attributes,
|
|
1990
|
+
childIsArray: true
|
|
1991
|
+
},
|
|
1992
|
+
spcPts: {
|
|
1993
|
+
type: 'child',
|
|
1994
|
+
childAttributes: CT_TextSpacingPoint_Attributes,
|
|
1995
|
+
childIsArray: true
|
|
1996
|
+
}
|
|
1997
|
+
};
|
|
1998
|
+
var CT_TextBulletColorFollowText_Attributes = {};
|
|
1999
|
+
var CT_TextBulletSizeFollowText_Attributes = {};
|
|
2000
|
+
var CT_TextBulletSizePercent_Attributes = {
|
|
2001
|
+
val: {
|
|
2002
|
+
type: 'string'
|
|
2003
|
+
}
|
|
2004
|
+
};
|
|
2005
|
+
var CT_TextBulletSizePoint_Attributes = {
|
|
2006
|
+
val: {
|
|
2007
|
+
type: 'int'
|
|
2008
|
+
}
|
|
2009
|
+
};
|
|
2010
|
+
var CT_TextBulletTypefaceFollowText_Attributes = {};
|
|
2011
|
+
var CT_TextNoBullet_Attributes = {};
|
|
2012
|
+
var CT_TextAutonumberBullet_Attributes = {
|
|
2013
|
+
type: {
|
|
2014
|
+
type: 'string'
|
|
2015
|
+
},
|
|
2016
|
+
startAt: {
|
|
2017
|
+
type: 'int'
|
|
2018
|
+
}
|
|
2019
|
+
};
|
|
2020
|
+
var CT_TextCharBullet_Attributes = {
|
|
2021
|
+
char: {
|
|
2022
|
+
type: 'string'
|
|
2023
|
+
}
|
|
2024
|
+
};
|
|
2025
|
+
var CT_TextBlipBullet_Attributes = {
|
|
2026
|
+
blip: {
|
|
2027
|
+
type: 'child',
|
|
2028
|
+
childAttributes: CT_Blip_Attributes
|
|
2029
|
+
}
|
|
2030
|
+
};
|
|
2031
|
+
var CT_TextTabStop_Attributes = {
|
|
2032
|
+
pos: {
|
|
2033
|
+
type: 'string'
|
|
2034
|
+
},
|
|
2035
|
+
algn: {
|
|
2036
|
+
type: 'string'
|
|
2037
|
+
}
|
|
2038
|
+
};
|
|
2039
|
+
var CT_TextTabStopList_Attributes = {
|
|
2040
|
+
tab: {
|
|
2041
|
+
type: 'child',
|
|
2042
|
+
childAttributes: CT_TextTabStop_Attributes,
|
|
2043
|
+
childIsArray: true
|
|
2044
|
+
}
|
|
2045
|
+
};
|
|
2046
|
+
var CT_TextUnderlineLineFollowText_Attributes = {};
|
|
2047
|
+
var CT_TextUnderlineFillFollowText_Attributes = {};
|
|
2048
|
+
var CT_TextUnderlineFillGroupWrapper_Attributes = {};
|
|
2049
|
+
var CT_Boolean_Attributes = {
|
|
2050
|
+
val: {
|
|
2051
|
+
type: 'string'
|
|
2052
|
+
}
|
|
2053
|
+
};
|
|
2054
|
+
var CT_TextCharacterProperties_Attributes = {
|
|
2055
|
+
ln: {
|
|
2056
|
+
type: 'child',
|
|
2057
|
+
childAttributes: CT_LineProperties_Attributes
|
|
2058
|
+
},
|
|
2059
|
+
noFill: {
|
|
2060
|
+
type: 'child',
|
|
2061
|
+
childAttributes: CT_NoFillProperties_Attributes
|
|
2062
|
+
},
|
|
2063
|
+
solidFill: {
|
|
2064
|
+
type: 'child',
|
|
2065
|
+
childAttributes: CT_SolidColorFillProperties_Attributes
|
|
2066
|
+
},
|
|
2067
|
+
gradFill: {
|
|
2068
|
+
type: 'child',
|
|
2069
|
+
childAttributes: CT_GradientFillProperties_Attributes
|
|
2070
|
+
},
|
|
2071
|
+
blipFill: {
|
|
2072
|
+
type: 'child',
|
|
2073
|
+
childAttributes: CT_BlipFillProperties_Attributes
|
|
2074
|
+
},
|
|
2075
|
+
pattFill: {
|
|
2076
|
+
type: 'child',
|
|
2077
|
+
childAttributes: CT_PatternFillProperties_Attributes
|
|
2078
|
+
},
|
|
2079
|
+
grpFill: {
|
|
2080
|
+
type: 'child',
|
|
2081
|
+
childAttributes: CT_GroupFillProperties_Attributes
|
|
2082
|
+
},
|
|
2083
|
+
effectLst: {
|
|
2084
|
+
type: 'child',
|
|
2085
|
+
childAttributes: CT_EffectList_Attributes
|
|
2086
|
+
},
|
|
2087
|
+
effectDag: {
|
|
2088
|
+
type: 'child',
|
|
2089
|
+
childAttributes: CT_EffectContainer_Attributes
|
|
2090
|
+
},
|
|
2091
|
+
highlight: {
|
|
2092
|
+
type: 'child',
|
|
2093
|
+
childAttributes: CT_Color_Attributes
|
|
2094
|
+
},
|
|
2095
|
+
uLnTx: {
|
|
2096
|
+
type: 'child',
|
|
2097
|
+
childAttributes: CT_TextUnderlineLineFollowText_Attributes,
|
|
2098
|
+
childIsArray: true
|
|
2099
|
+
},
|
|
2100
|
+
uLn: {
|
|
2101
|
+
type: 'child',
|
|
2102
|
+
childAttributes: CT_LineProperties_Attributes
|
|
2103
|
+
},
|
|
2104
|
+
uFillTx: {
|
|
2105
|
+
type: 'child',
|
|
2106
|
+
childAttributes: CT_TextUnderlineFillFollowText_Attributes,
|
|
2107
|
+
childIsArray: true
|
|
2108
|
+
},
|
|
2109
|
+
uFill: {
|
|
2110
|
+
type: 'child',
|
|
2111
|
+
childAttributes: CT_TextUnderlineFillGroupWrapper_Attributes,
|
|
2112
|
+
childIsArray: true
|
|
2113
|
+
},
|
|
2114
|
+
latin: {
|
|
2115
|
+
type: 'child',
|
|
2116
|
+
childAttributes: CT_TextFont_Attributes
|
|
2117
|
+
},
|
|
2118
|
+
ea: {
|
|
2119
|
+
type: 'child',
|
|
2120
|
+
childAttributes: CT_TextFont_Attributes
|
|
2121
|
+
},
|
|
2122
|
+
cs: {
|
|
2123
|
+
type: 'child',
|
|
2124
|
+
childAttributes: CT_TextFont_Attributes
|
|
2125
|
+
},
|
|
2126
|
+
sym: {
|
|
2127
|
+
type: 'child',
|
|
2128
|
+
childAttributes: CT_TextFont_Attributes
|
|
2129
|
+
},
|
|
2130
|
+
hlinkClick: {
|
|
2131
|
+
type: 'child',
|
|
2132
|
+
childAttributes: CT_Hyperlink_Attributes
|
|
2133
|
+
},
|
|
2134
|
+
hlinkMouseOver: {
|
|
2135
|
+
type: 'child',
|
|
2136
|
+
childAttributes: CT_Hyperlink_Attributes
|
|
2137
|
+
},
|
|
2138
|
+
rtl: {
|
|
2139
|
+
type: 'child',
|
|
2140
|
+
childAttributes: CT_Boolean_Attributes,
|
|
2141
|
+
childIsArray: true
|
|
2142
|
+
},
|
|
2143
|
+
extLst: {
|
|
2144
|
+
type: 'child',
|
|
2145
|
+
childAttributes: CT_OfficeArtExtensionList_Attributes
|
|
2146
|
+
},
|
|
2147
|
+
kumimoji: {
|
|
2148
|
+
type: 'boolean'
|
|
2149
|
+
},
|
|
2150
|
+
lang: {
|
|
2151
|
+
type: 'string'
|
|
2152
|
+
},
|
|
2153
|
+
altLang: {
|
|
2154
|
+
type: 'string'
|
|
2155
|
+
},
|
|
2156
|
+
sz: {
|
|
2157
|
+
type: 'int'
|
|
2158
|
+
},
|
|
2159
|
+
b: {
|
|
2160
|
+
type: 'boolean'
|
|
2161
|
+
},
|
|
2162
|
+
i: {
|
|
2163
|
+
type: 'boolean'
|
|
2164
|
+
},
|
|
2165
|
+
u: {
|
|
2166
|
+
type: 'string'
|
|
2167
|
+
},
|
|
2168
|
+
strike: {
|
|
2169
|
+
type: 'string'
|
|
2170
|
+
},
|
|
2171
|
+
kern: {
|
|
2172
|
+
type: 'int'
|
|
2173
|
+
},
|
|
2174
|
+
cap: {
|
|
2175
|
+
type: 'string'
|
|
2176
|
+
},
|
|
2177
|
+
spc: {
|
|
2178
|
+
type: 'string'
|
|
2179
|
+
},
|
|
2180
|
+
normalizeH: {
|
|
2181
|
+
type: 'boolean'
|
|
2182
|
+
},
|
|
2183
|
+
baseline: {
|
|
2184
|
+
type: 'string'
|
|
2185
|
+
},
|
|
2186
|
+
noProof: {
|
|
2187
|
+
type: 'boolean'
|
|
2188
|
+
},
|
|
2189
|
+
dirty: {
|
|
2190
|
+
type: 'boolean'
|
|
2191
|
+
},
|
|
2192
|
+
err: {
|
|
2193
|
+
type: 'boolean'
|
|
2194
|
+
},
|
|
2195
|
+
smtClean: {
|
|
2196
|
+
type: 'boolean'
|
|
2197
|
+
},
|
|
2198
|
+
smtId: {
|
|
2199
|
+
type: 'int'
|
|
2200
|
+
},
|
|
2201
|
+
bmk: {
|
|
2202
|
+
type: 'string'
|
|
2203
|
+
}
|
|
2204
|
+
};
|
|
2205
|
+
var CT_TextParagraphProperties_Attributes = {
|
|
2206
|
+
lnSpc: {
|
|
2207
|
+
type: 'child',
|
|
2208
|
+
childAttributes: CT_TextSpacing_Attributes
|
|
2209
|
+
},
|
|
2210
|
+
spcBef: {
|
|
2211
|
+
type: 'child',
|
|
2212
|
+
childAttributes: CT_TextSpacing_Attributes
|
|
2213
|
+
},
|
|
2214
|
+
spcAft: {
|
|
2215
|
+
type: 'child',
|
|
2216
|
+
childAttributes: CT_TextSpacing_Attributes
|
|
2217
|
+
},
|
|
2218
|
+
buClrTx: {
|
|
2219
|
+
type: 'child',
|
|
2220
|
+
childAttributes: CT_TextBulletColorFollowText_Attributes
|
|
2221
|
+
},
|
|
2222
|
+
buClr: {
|
|
2223
|
+
type: 'child',
|
|
2224
|
+
childAttributes: CT_Color_Attributes
|
|
2225
|
+
},
|
|
2226
|
+
buSzTx: {
|
|
2227
|
+
type: 'child',
|
|
2228
|
+
childAttributes: CT_TextBulletSizeFollowText_Attributes,
|
|
2229
|
+
childIsArray: true
|
|
2230
|
+
},
|
|
2231
|
+
buSzPct: {
|
|
2232
|
+
type: 'child',
|
|
2233
|
+
childAttributes: CT_TextBulletSizePercent_Attributes,
|
|
2234
|
+
childIsArray: true
|
|
2235
|
+
},
|
|
2236
|
+
buSzPts: {
|
|
2237
|
+
type: 'child',
|
|
2238
|
+
childAttributes: CT_TextBulletSizePoint_Attributes,
|
|
2239
|
+
childIsArray: true
|
|
2240
|
+
},
|
|
2241
|
+
buFontTx: {
|
|
2242
|
+
type: 'child',
|
|
2243
|
+
childAttributes: CT_TextBulletTypefaceFollowText_Attributes,
|
|
2244
|
+
childIsArray: true
|
|
2245
|
+
},
|
|
2246
|
+
buFont: {
|
|
2247
|
+
type: 'child',
|
|
2248
|
+
childAttributes: CT_TextFont_Attributes,
|
|
2249
|
+
childIsArray: true
|
|
2250
|
+
},
|
|
2251
|
+
buNone: {
|
|
2252
|
+
type: 'child',
|
|
2253
|
+
childAttributes: CT_TextNoBullet_Attributes,
|
|
2254
|
+
childIsArray: true
|
|
2255
|
+
},
|
|
2256
|
+
buAutoNum: {
|
|
2257
|
+
type: 'child',
|
|
2258
|
+
childAttributes: CT_TextAutonumberBullet_Attributes,
|
|
2259
|
+
childIsArray: true
|
|
2260
|
+
},
|
|
2261
|
+
buChar: {
|
|
2262
|
+
type: 'child',
|
|
2263
|
+
childAttributes: CT_TextCharBullet_Attributes,
|
|
2264
|
+
childIsArray: true
|
|
2265
|
+
},
|
|
2266
|
+
buBlip: {
|
|
2267
|
+
type: 'child',
|
|
2268
|
+
childAttributes: CT_TextBlipBullet_Attributes,
|
|
2269
|
+
childIsArray: true
|
|
2270
|
+
},
|
|
2271
|
+
tabLst: {
|
|
2272
|
+
type: 'child',
|
|
2273
|
+
childAttributes: CT_TextTabStopList_Attributes
|
|
2274
|
+
},
|
|
2275
|
+
defRPr: {
|
|
2276
|
+
type: 'child',
|
|
2277
|
+
childAttributes: CT_TextCharacterProperties_Attributes
|
|
2278
|
+
},
|
|
2279
|
+
extLst: {
|
|
2280
|
+
type: 'child',
|
|
2281
|
+
childAttributes: CT_OfficeArtExtensionList_Attributes
|
|
2282
|
+
},
|
|
2283
|
+
marL: {
|
|
2284
|
+
type: 'int'
|
|
2285
|
+
},
|
|
2286
|
+
marR: {
|
|
2287
|
+
type: 'int'
|
|
2288
|
+
},
|
|
2289
|
+
lvl: {
|
|
2290
|
+
type: 'int'
|
|
2291
|
+
},
|
|
2292
|
+
indent: {
|
|
2293
|
+
type: 'int'
|
|
2294
|
+
},
|
|
2295
|
+
algn: {
|
|
2296
|
+
type: 'string'
|
|
2297
|
+
},
|
|
2298
|
+
defTabSz: {
|
|
2299
|
+
type: 'string'
|
|
2300
|
+
},
|
|
2301
|
+
rtl: {
|
|
2302
|
+
type: 'boolean'
|
|
2303
|
+
},
|
|
2304
|
+
eaLnBrk: {
|
|
2305
|
+
type: 'boolean'
|
|
2306
|
+
},
|
|
2307
|
+
fontAlgn: {
|
|
2308
|
+
type: 'string'
|
|
2309
|
+
},
|
|
2310
|
+
latinLnBrk: {
|
|
2311
|
+
type: 'boolean'
|
|
2312
|
+
},
|
|
2313
|
+
hangingPunct: {
|
|
2314
|
+
type: 'boolean'
|
|
2315
|
+
}
|
|
2316
|
+
};
|
|
2317
|
+
var CT_TextListStyle_Attributes = {
|
|
2318
|
+
defPPr: {
|
|
2319
|
+
type: 'child',
|
|
2320
|
+
childAttributes: CT_TextParagraphProperties_Attributes
|
|
2321
|
+
},
|
|
2322
|
+
lvl1pPr: {
|
|
2323
|
+
type: 'child',
|
|
2324
|
+
childAttributes: CT_TextParagraphProperties_Attributes
|
|
2325
|
+
},
|
|
2326
|
+
lvl2pPr: {
|
|
2327
|
+
type: 'child',
|
|
2328
|
+
childAttributes: CT_TextParagraphProperties_Attributes
|
|
2329
|
+
},
|
|
2330
|
+
lvl3pPr: {
|
|
2331
|
+
type: 'child',
|
|
2332
|
+
childAttributes: CT_TextParagraphProperties_Attributes
|
|
2333
|
+
},
|
|
2334
|
+
lvl4pPr: {
|
|
2335
|
+
type: 'child',
|
|
2336
|
+
childAttributes: CT_TextParagraphProperties_Attributes
|
|
2337
|
+
},
|
|
2338
|
+
lvl5pPr: {
|
|
2339
|
+
type: 'child',
|
|
2340
|
+
childAttributes: CT_TextParagraphProperties_Attributes
|
|
2341
|
+
},
|
|
2342
|
+
lvl6pPr: {
|
|
2343
|
+
type: 'child',
|
|
2344
|
+
childAttributes: CT_TextParagraphProperties_Attributes
|
|
2345
|
+
},
|
|
2346
|
+
lvl7pPr: {
|
|
2347
|
+
type: 'child',
|
|
2348
|
+
childAttributes: CT_TextParagraphProperties_Attributes
|
|
2349
|
+
},
|
|
2350
|
+
lvl8pPr: {
|
|
2351
|
+
type: 'child',
|
|
2352
|
+
childAttributes: CT_TextParagraphProperties_Attributes
|
|
2353
|
+
},
|
|
2354
|
+
lvl9pPr: {
|
|
2355
|
+
type: 'child',
|
|
2356
|
+
childAttributes: CT_TextParagraphProperties_Attributes
|
|
2357
|
+
},
|
|
2358
|
+
extLst: {
|
|
2359
|
+
type: 'child',
|
|
2360
|
+
childAttributes: CT_OfficeArtExtensionList_Attributes
|
|
2361
|
+
}
|
|
2362
|
+
};
|
|
2363
|
+
var CT_AdjPoint2D_Attributes = {
|
|
2364
|
+
x: {
|
|
2365
|
+
type: 'string'
|
|
2366
|
+
},
|
|
2367
|
+
y: {
|
|
2368
|
+
type: 'string'
|
|
2369
|
+
}
|
|
2370
|
+
};
|
|
2371
|
+
var CT_XYAdjustHandle_Attributes = {
|
|
2372
|
+
pos: {
|
|
2373
|
+
type: 'child',
|
|
2374
|
+
childAttributes: CT_AdjPoint2D_Attributes
|
|
2375
|
+
},
|
|
2376
|
+
gdRefX: {
|
|
2377
|
+
type: 'string'
|
|
2378
|
+
},
|
|
2379
|
+
minX: {
|
|
2380
|
+
type: 'string'
|
|
2381
|
+
},
|
|
2382
|
+
maxX: {
|
|
2383
|
+
type: 'string'
|
|
2384
|
+
},
|
|
2385
|
+
gdRefY: {
|
|
2386
|
+
type: 'string'
|
|
2387
|
+
},
|
|
2388
|
+
minY: {
|
|
2389
|
+
type: 'string'
|
|
2390
|
+
},
|
|
2391
|
+
maxY: {
|
|
2392
|
+
type: 'string'
|
|
2393
|
+
}
|
|
2394
|
+
};
|
|
2395
|
+
var CT_PolarAdjustHandle_Attributes = {
|
|
2396
|
+
pos: {
|
|
2397
|
+
type: 'child',
|
|
2398
|
+
childAttributes: CT_AdjPoint2D_Attributes
|
|
2399
|
+
},
|
|
2400
|
+
gdRefR: {
|
|
2401
|
+
type: 'string'
|
|
2402
|
+
},
|
|
2403
|
+
minR: {
|
|
2404
|
+
type: 'string'
|
|
2405
|
+
},
|
|
2406
|
+
maxR: {
|
|
2407
|
+
type: 'string'
|
|
2408
|
+
},
|
|
2409
|
+
gdRefAng: {
|
|
2410
|
+
type: 'string'
|
|
2411
|
+
},
|
|
2412
|
+
minAng: {
|
|
2413
|
+
type: 'string'
|
|
2414
|
+
},
|
|
2415
|
+
maxAng: {
|
|
2416
|
+
type: 'string'
|
|
2417
|
+
}
|
|
2418
|
+
};
|
|
2419
|
+
var CT_AdjustHandleList_Attributes = {
|
|
2420
|
+
ahXY: {
|
|
2421
|
+
type: 'child',
|
|
2422
|
+
childAttributes: CT_XYAdjustHandle_Attributes
|
|
2423
|
+
},
|
|
2424
|
+
ahPolar: {
|
|
2425
|
+
type: 'child',
|
|
2426
|
+
childAttributes: CT_PolarAdjustHandle_Attributes
|
|
2427
|
+
}
|
|
2428
|
+
};
|
|
2429
|
+
var CT_ConnectionSite_Attributes = {
|
|
2430
|
+
pos: {
|
|
2431
|
+
type: 'child',
|
|
2432
|
+
childAttributes: CT_AdjPoint2D_Attributes
|
|
2433
|
+
},
|
|
2434
|
+
ang: {
|
|
2435
|
+
type: 'string'
|
|
2436
|
+
}
|
|
2437
|
+
};
|
|
2438
|
+
var CT_ConnectionSiteList_Attributes = {
|
|
2439
|
+
cxn: {
|
|
2440
|
+
type: 'child',
|
|
2441
|
+
childAttributes: CT_ConnectionSite_Attributes,
|
|
2442
|
+
childIsArray: true
|
|
2443
|
+
}
|
|
2444
|
+
};
|
|
2445
|
+
var CT_GeomRect_Attributes = {
|
|
2446
|
+
l: {
|
|
2447
|
+
type: 'string'
|
|
2448
|
+
},
|
|
2449
|
+
t: {
|
|
2450
|
+
type: 'string'
|
|
2451
|
+
},
|
|
2452
|
+
r: {
|
|
2453
|
+
type: 'string'
|
|
2454
|
+
},
|
|
2455
|
+
b: {
|
|
2456
|
+
type: 'string'
|
|
2457
|
+
}
|
|
2458
|
+
};
|
|
2459
|
+
var CT_Path2DClose_Attributes = {};
|
|
2460
|
+
var CT_Path2DMoveTo_Attributes = {
|
|
2461
|
+
pt: {
|
|
2462
|
+
type: 'child',
|
|
2463
|
+
childAttributes: CT_AdjPoint2D_Attributes
|
|
2464
|
+
}
|
|
2465
|
+
};
|
|
2466
|
+
var CT_Path2DLineTo_Attributes = {
|
|
2467
|
+
pt: {
|
|
2468
|
+
type: 'child',
|
|
2469
|
+
childAttributes: CT_AdjPoint2D_Attributes
|
|
2470
|
+
}
|
|
2471
|
+
};
|
|
2472
|
+
var CT_Path2DArcTo_Attributes = {
|
|
2473
|
+
wR: {
|
|
2474
|
+
type: 'string'
|
|
2475
|
+
},
|
|
2476
|
+
hR: {
|
|
2477
|
+
type: 'string'
|
|
2478
|
+
},
|
|
2479
|
+
stAng: {
|
|
2480
|
+
type: 'string'
|
|
2481
|
+
},
|
|
2482
|
+
swAng: {
|
|
2483
|
+
type: 'string'
|
|
2484
|
+
}
|
|
2485
|
+
};
|
|
2486
|
+
var CT_Path2DQuadBezierTo_Attributes = {
|
|
2487
|
+
pt: {
|
|
2488
|
+
type: 'child',
|
|
2489
|
+
childAttributes: CT_AdjPoint2D_Attributes,
|
|
2490
|
+
childIsArray: true
|
|
2491
|
+
}
|
|
2492
|
+
};
|
|
2493
|
+
var CT_Path2DCubicBezierTo_Attributes = {
|
|
2494
|
+
pt: {
|
|
2495
|
+
type: 'child',
|
|
2496
|
+
childAttributes: CT_AdjPoint2D_Attributes,
|
|
2497
|
+
childIsArray: true
|
|
2498
|
+
}
|
|
2499
|
+
};
|
|
2500
|
+
var CT_Path2D_Attributes = {
|
|
2501
|
+
close: {
|
|
2502
|
+
type: 'child',
|
|
2503
|
+
childAttributes: CT_Path2DClose_Attributes
|
|
2504
|
+
},
|
|
2505
|
+
moveTo: {
|
|
2506
|
+
type: 'child',
|
|
2507
|
+
childAttributes: CT_Path2DMoveTo_Attributes
|
|
2508
|
+
},
|
|
2509
|
+
lnTo: {
|
|
2510
|
+
type: 'child',
|
|
2511
|
+
childAttributes: CT_Path2DLineTo_Attributes
|
|
2512
|
+
},
|
|
2513
|
+
arcTo: {
|
|
2514
|
+
type: 'child',
|
|
2515
|
+
childAttributes: CT_Path2DArcTo_Attributes
|
|
2516
|
+
},
|
|
2517
|
+
quadBezTo: {
|
|
2518
|
+
type: 'child',
|
|
2519
|
+
childAttributes: CT_Path2DQuadBezierTo_Attributes
|
|
2520
|
+
},
|
|
2521
|
+
cubicBezTo: {
|
|
2522
|
+
type: 'child',
|
|
2523
|
+
childAttributes: CT_Path2DCubicBezierTo_Attributes
|
|
2524
|
+
},
|
|
2525
|
+
w: {
|
|
2526
|
+
type: 'int'
|
|
2527
|
+
},
|
|
2528
|
+
h: {
|
|
2529
|
+
type: 'int'
|
|
2530
|
+
},
|
|
2531
|
+
fill: {
|
|
2532
|
+
type: 'string'
|
|
2533
|
+
},
|
|
2534
|
+
stroke: {
|
|
2535
|
+
type: 'boolean'
|
|
2536
|
+
},
|
|
2537
|
+
extrusionOk: {
|
|
2538
|
+
type: 'boolean'
|
|
2539
|
+
}
|
|
2540
|
+
};
|
|
2541
|
+
var CT_Path2DList_Attributes = {
|
|
2542
|
+
path: {
|
|
2543
|
+
type: 'child',
|
|
2544
|
+
childAttributes: CT_Path2D_Attributes,
|
|
2545
|
+
childIsArray: true
|
|
2546
|
+
}
|
|
2547
|
+
};
|
|
2548
|
+
var CT_CustomGeometry2D_Attributes = {
|
|
2549
|
+
avLst: {
|
|
2550
|
+
type: 'child',
|
|
2551
|
+
childAttributes: CT_GeomGuideList_Attributes
|
|
2552
|
+
},
|
|
2553
|
+
gdLst: {
|
|
2554
|
+
type: 'child',
|
|
2555
|
+
childAttributes: CT_GeomGuideList_Attributes
|
|
2556
|
+
},
|
|
2557
|
+
ahLst: {
|
|
2558
|
+
type: 'child',
|
|
2559
|
+
childAttributes: CT_AdjustHandleList_Attributes
|
|
2560
|
+
},
|
|
2561
|
+
cxnLst: {
|
|
2562
|
+
type: 'child',
|
|
2563
|
+
childAttributes: CT_ConnectionSiteList_Attributes
|
|
2564
|
+
},
|
|
2565
|
+
rect: {
|
|
2566
|
+
type: 'child',
|
|
2567
|
+
childAttributes: CT_GeomRect_Attributes
|
|
2568
|
+
},
|
|
2569
|
+
pathLst: {
|
|
2570
|
+
type: 'child',
|
|
2571
|
+
childAttributes: CT_Path2DList_Attributes
|
|
2572
|
+
}
|
|
2573
|
+
};
|
|
2574
|
+
var CT_PresetGeometry2D_Attributes = {
|
|
2575
|
+
avLst: {
|
|
2576
|
+
type: 'child',
|
|
2577
|
+
childAttributes: CT_GeomGuideList_Attributes
|
|
2578
|
+
},
|
|
2579
|
+
prst: {
|
|
2580
|
+
type: 'string'
|
|
2581
|
+
}
|
|
2582
|
+
};
|
|
2583
|
+
var CT_ShapeProperties_Attributes = {
|
|
2584
|
+
xfrm: {
|
|
2585
|
+
type: 'child',
|
|
2586
|
+
childAttributes: CT_Transform2D_Attributes
|
|
2587
|
+
},
|
|
2588
|
+
custGeom: {
|
|
2589
|
+
type: 'child',
|
|
2590
|
+
childAttributes: CT_CustomGeometry2D_Attributes
|
|
2591
|
+
},
|
|
2592
|
+
prstGeom: {
|
|
2593
|
+
type: 'child',
|
|
2594
|
+
childAttributes: CT_PresetGeometry2D_Attributes
|
|
2595
|
+
},
|
|
2596
|
+
noFill: {
|
|
2597
|
+
type: 'child',
|
|
2598
|
+
childAttributes: CT_NoFillProperties_Attributes
|
|
2599
|
+
},
|
|
2600
|
+
solidFill: {
|
|
2601
|
+
type: 'child',
|
|
2602
|
+
childAttributes: CT_SolidColorFillProperties_Attributes
|
|
2603
|
+
},
|
|
2604
|
+
gradFill: {
|
|
2605
|
+
type: 'child',
|
|
2606
|
+
childAttributes: CT_GradientFillProperties_Attributes
|
|
2607
|
+
},
|
|
2608
|
+
blipFill: {
|
|
2609
|
+
type: 'child',
|
|
2610
|
+
childAttributes: CT_BlipFillProperties_Attributes
|
|
2611
|
+
},
|
|
2612
|
+
pattFill: {
|
|
2613
|
+
type: 'child',
|
|
2614
|
+
childAttributes: CT_PatternFillProperties_Attributes
|
|
2615
|
+
},
|
|
2616
|
+
grpFill: {
|
|
2617
|
+
type: 'child',
|
|
2618
|
+
childAttributes: CT_GroupFillProperties_Attributes
|
|
2619
|
+
},
|
|
2620
|
+
ln: {
|
|
2621
|
+
type: 'child',
|
|
2622
|
+
childAttributes: CT_LineProperties_Attributes
|
|
2623
|
+
},
|
|
2624
|
+
effectLst: {
|
|
2625
|
+
type: 'child',
|
|
2626
|
+
childAttributes: CT_EffectList_Attributes
|
|
2627
|
+
},
|
|
2628
|
+
effectDag: {
|
|
2629
|
+
type: 'child',
|
|
2630
|
+
childAttributes: CT_EffectContainer_Attributes
|
|
2631
|
+
},
|
|
2632
|
+
scene3d: {
|
|
2633
|
+
type: 'child',
|
|
2634
|
+
childAttributes: CT_Scene3D_Attributes
|
|
2635
|
+
},
|
|
2636
|
+
sp3d: {
|
|
2637
|
+
type: 'child',
|
|
2638
|
+
childAttributes: CT_Shape3D_Attributes
|
|
2639
|
+
},
|
|
2640
|
+
extLst: {
|
|
2641
|
+
type: 'child',
|
|
2642
|
+
childAttributes: CT_OfficeArtExtensionList_Attributes
|
|
2643
|
+
},
|
|
2644
|
+
bwMode: {
|
|
2645
|
+
type: 'string'
|
|
2646
|
+
}
|
|
2647
|
+
};
|
|
2648
|
+
var CT_StyleMatrixReference_Attributes = {
|
|
2649
|
+
scrgbClr: {
|
|
2650
|
+
type: 'child',
|
|
2651
|
+
childAttributes: CT_ScRgbColor_Attributes
|
|
2652
|
+
},
|
|
2653
|
+
srgbClr: {
|
|
2654
|
+
type: 'child',
|
|
2655
|
+
childAttributes: CT_SRgbColor_Attributes
|
|
2656
|
+
},
|
|
2657
|
+
hslClr: {
|
|
2658
|
+
type: 'child',
|
|
2659
|
+
childAttributes: CT_HslColor_Attributes
|
|
2660
|
+
},
|
|
2661
|
+
sysClr: {
|
|
2662
|
+
type: 'child',
|
|
2663
|
+
childAttributes: CT_SystemColor_Attributes
|
|
2664
|
+
},
|
|
2665
|
+
schemeClr: {
|
|
2666
|
+
type: 'child',
|
|
2667
|
+
childAttributes: CT_SchemeColor_Attributes
|
|
2668
|
+
},
|
|
2669
|
+
prstClr: {
|
|
2670
|
+
type: 'child',
|
|
2671
|
+
childAttributes: CT_PresetColor_Attributes
|
|
2672
|
+
},
|
|
2673
|
+
idx: {
|
|
2674
|
+
type: 'int'
|
|
2675
|
+
}
|
|
2676
|
+
};
|
|
2677
|
+
var CT_FontReference_Attributes = {
|
|
2678
|
+
scrgbClr: {
|
|
2679
|
+
type: 'child',
|
|
2680
|
+
childAttributes: CT_ScRgbColor_Attributes
|
|
2681
|
+
},
|
|
2682
|
+
srgbClr: {
|
|
2683
|
+
type: 'child',
|
|
2684
|
+
childAttributes: CT_SRgbColor_Attributes
|
|
2685
|
+
},
|
|
2686
|
+
hslClr: {
|
|
2687
|
+
type: 'child',
|
|
2688
|
+
childAttributes: CT_HslColor_Attributes
|
|
2689
|
+
},
|
|
2690
|
+
sysClr: {
|
|
2691
|
+
type: 'child',
|
|
2692
|
+
childAttributes: CT_SystemColor_Attributes
|
|
2693
|
+
},
|
|
2694
|
+
schemeClr: {
|
|
2695
|
+
type: 'child',
|
|
2696
|
+
childAttributes: CT_SchemeColor_Attributes
|
|
2697
|
+
},
|
|
2698
|
+
prstClr: {
|
|
2699
|
+
type: 'child',
|
|
2700
|
+
childAttributes: CT_PresetColor_Attributes
|
|
2701
|
+
},
|
|
2702
|
+
idx: {
|
|
2703
|
+
type: 'string'
|
|
2704
|
+
}
|
|
2705
|
+
};
|
|
2706
|
+
var CT_ShapeStyle_Attributes = {
|
|
2707
|
+
lnRef: {
|
|
2708
|
+
type: 'child',
|
|
2709
|
+
childAttributes: CT_StyleMatrixReference_Attributes
|
|
2710
|
+
},
|
|
2711
|
+
fillRef: {
|
|
2712
|
+
type: 'child',
|
|
2713
|
+
childAttributes: CT_StyleMatrixReference_Attributes
|
|
2714
|
+
},
|
|
2715
|
+
effectRef: {
|
|
2716
|
+
type: 'child',
|
|
2717
|
+
childAttributes: CT_StyleMatrixReference_Attributes
|
|
2718
|
+
},
|
|
2719
|
+
fontRef: {
|
|
2720
|
+
type: 'child',
|
|
2721
|
+
childAttributes: CT_FontReference_Attributes
|
|
2722
|
+
}
|
|
2723
|
+
};
|
|
2724
|
+
var CT_DefaultShapeDefinition_Attributes = {
|
|
2725
|
+
spPr: {
|
|
2726
|
+
type: 'child',
|
|
2727
|
+
childAttributes: CT_ShapeProperties_Attributes
|
|
2728
|
+
},
|
|
2729
|
+
bodyPr: {
|
|
2730
|
+
type: 'child',
|
|
2731
|
+
childAttributes: CT_TextBodyProperties_Attributes
|
|
2732
|
+
},
|
|
2733
|
+
lstStyle: {
|
|
2734
|
+
type: 'child',
|
|
2735
|
+
childAttributes: CT_TextListStyle_Attributes
|
|
2736
|
+
},
|
|
2737
|
+
style: {
|
|
2738
|
+
type: 'child',
|
|
2739
|
+
childAttributes: CT_ShapeStyle_Attributes
|
|
2740
|
+
},
|
|
2741
|
+
extLst: {
|
|
2742
|
+
type: 'child',
|
|
2743
|
+
childAttributes: CT_OfficeArtExtensionList_Attributes
|
|
2744
|
+
}
|
|
2745
|
+
};
|
|
2746
|
+
var CT_ObjectStyleDefaults_Attributes = {
|
|
2747
|
+
spDef: {
|
|
2748
|
+
type: 'child',
|
|
2749
|
+
childAttributes: CT_DefaultShapeDefinition_Attributes
|
|
2750
|
+
},
|
|
2751
|
+
lnDef: {
|
|
2752
|
+
type: 'child',
|
|
2753
|
+
childAttributes: CT_DefaultShapeDefinition_Attributes
|
|
2754
|
+
},
|
|
2755
|
+
txDef: {
|
|
2756
|
+
type: 'child',
|
|
2757
|
+
childAttributes: CT_DefaultShapeDefinition_Attributes
|
|
2758
|
+
},
|
|
2759
|
+
extLst: {
|
|
2760
|
+
type: 'child',
|
|
2761
|
+
childAttributes: CT_OfficeArtExtensionList_Attributes
|
|
2762
|
+
}
|
|
2763
|
+
};
|
|
2764
|
+
var CT_ColorMapping_Attributes = {
|
|
2765
|
+
extLst: {
|
|
2766
|
+
type: 'child',
|
|
2767
|
+
childAttributes: CT_OfficeArtExtensionList_Attributes
|
|
2768
|
+
},
|
|
2769
|
+
bg1: {
|
|
2770
|
+
type: 'string'
|
|
2771
|
+
},
|
|
2772
|
+
tx1: {
|
|
2773
|
+
type: 'string'
|
|
2774
|
+
},
|
|
2775
|
+
bg2: {
|
|
2776
|
+
type: 'string'
|
|
2777
|
+
},
|
|
2778
|
+
tx2: {
|
|
2779
|
+
type: 'string'
|
|
2780
|
+
},
|
|
2781
|
+
accent1: {
|
|
2782
|
+
type: 'string'
|
|
2783
|
+
},
|
|
2784
|
+
accent2: {
|
|
2785
|
+
type: 'string'
|
|
2786
|
+
},
|
|
2787
|
+
accent3: {
|
|
2788
|
+
type: 'string'
|
|
2789
|
+
},
|
|
2790
|
+
accent4: {
|
|
2791
|
+
type: 'string'
|
|
2792
|
+
},
|
|
2793
|
+
accent5: {
|
|
2794
|
+
type: 'string'
|
|
2795
|
+
},
|
|
2796
|
+
accent6: {
|
|
2797
|
+
type: 'string'
|
|
2798
|
+
},
|
|
2799
|
+
hlink: {
|
|
2800
|
+
type: 'string'
|
|
2801
|
+
},
|
|
2802
|
+
folHlink: {
|
|
2803
|
+
type: 'string'
|
|
2804
|
+
}
|
|
2805
|
+
};
|
|
2806
|
+
var CT_ColorSchemeAndMapping_Attributes = {
|
|
2807
|
+
clrScheme: {
|
|
2808
|
+
type: 'child',
|
|
2809
|
+
childAttributes: CT_ColorScheme_Attributes
|
|
2810
|
+
},
|
|
2811
|
+
clrMap: {
|
|
2812
|
+
type: 'child',
|
|
2813
|
+
childAttributes: CT_ColorMapping_Attributes
|
|
2814
|
+
}
|
|
2815
|
+
};
|
|
2816
|
+
var CT_ColorSchemeList_Attributes = {
|
|
2817
|
+
extraClrScheme: {
|
|
2818
|
+
type: 'child',
|
|
2819
|
+
childAttributes: CT_ColorSchemeAndMapping_Attributes,
|
|
2820
|
+
childIsArray: true
|
|
2821
|
+
}
|
|
2822
|
+
};
|
|
2823
|
+
var CT_OfficeStyleSheet_Attributes = {
|
|
2824
|
+
themeElements: {
|
|
2825
|
+
type: 'child',
|
|
2826
|
+
childAttributes: CT_BaseStyles_Attributes
|
|
2827
|
+
},
|
|
2828
|
+
objectDefaults: {
|
|
2829
|
+
type: 'child',
|
|
2830
|
+
childAttributes: CT_ObjectStyleDefaults_Attributes
|
|
2831
|
+
},
|
|
2832
|
+
extraClrSchemeLst: {
|
|
2833
|
+
type: 'child',
|
|
2834
|
+
childAttributes: CT_ColorSchemeList_Attributes
|
|
2835
|
+
},
|
|
2836
|
+
custClrLst: {
|
|
2837
|
+
type: 'child',
|
|
2838
|
+
childAttributes: CT_CustomColorList_Attributes
|
|
2839
|
+
},
|
|
2840
|
+
extLst: {
|
|
2841
|
+
type: 'child',
|
|
2842
|
+
childAttributes: CT_OfficeArtExtensionList_Attributes
|
|
2843
|
+
},
|
|
2844
|
+
name: {
|
|
2845
|
+
type: 'string'
|
|
2846
|
+
}
|
|
2847
|
+
};
|
|
2848
|
+
|
|
2849
|
+
export { CT_AdjPoint2D_Attributes, CT_AdjustHandleList_Attributes, CT_Angle_Attributes, CT_Backdrop_Attributes, CT_BackgroundFillStyleList_Attributes, CT_BaseStyles_Attributes, CT_Bevel_Attributes, CT_BlipFillProperties_Attributes, CT_Blip_Attributes, CT_BlurEffect_Attributes, CT_Boolean_Attributes, CT_Camera_Attributes, CT_ColorMapping_Attributes, CT_ColorSchemeAndMapping_Attributes, CT_ColorSchemeList_Attributes, CT_ColorScheme_Attributes, CT_Color_Attributes, CT_ComplementTransform_Attributes, CT_ConnectionSiteList_Attributes, CT_ConnectionSite_Attributes, CT_CustomColorList_Attributes, CT_CustomColor_Attributes, CT_CustomGeometry2D_Attributes, CT_DashStopList_Attributes, CT_DashStop_Attributes, CT_DefaultShapeDefinition_Attributes, CT_EffectContainer_Attributes, CT_EffectList_Attributes, CT_EffectStyleItem_Attributes, CT_EffectStyleList_Attributes, CT_EmbeddedWAVAudioFile_Attributes, CT_FillOverlayEffect_Attributes, CT_FillStyleList_Attributes, CT_FixedPercentage_Attributes, CT_FlatText_Attributes, CT_FontCollection_Attributes, CT_FontReference_Attributes, CT_FontScheme_Attributes, CT_GammaTransform_Attributes, CT_GeomGuideList_Attributes, CT_GeomGuide_Attributes, CT_GeomRect_Attributes, CT_GlowEffect_Attributes, CT_GradientFillProperties_Attributes, CT_GradientStopList_Attributes, CT_GradientStop_Attributes, CT_GrayscaleTransform_Attributes, CT_GroupFillProperties_Attributes, CT_HslColor_Attributes, CT_Hyperlink_Attributes, CT_InnerShadowEffect_Attributes, CT_InverseGammaTransform_Attributes, CT_InverseTransform_Attributes, CT_LightRig_Attributes, CT_LineEndProperties_Attributes, CT_LineJoinBevel_Attributes, CT_LineJoinMiterProperties_Attributes, CT_LineJoinRound_Attributes, CT_LineProperties_Attributes, CT_LineStyleList_Attributes, CT_LinearShadeProperties_Attributes, CT_NoFillProperties_Attributes, CT_ObjectStyleDefaults_Attributes, CT_OfficeArtExtensionList_Attributes, CT_OfficeArtExtension_Attributes, CT_OfficeStyleSheet_Attributes, CT_OuterShadowEffect_Attributes, CT_Path2DArcTo_Attributes, CT_Path2DClose_Attributes, CT_Path2DCubicBezierTo_Attributes, CT_Path2DLineTo_Attributes, CT_Path2DList_Attributes, CT_Path2DMoveTo_Attributes, CT_Path2DQuadBezierTo_Attributes, CT_Path2D_Attributes, CT_PathShadeProperties_Attributes, CT_PatternFillProperties_Attributes, CT_Percentage_Attributes, CT_Point2D_Attributes, CT_Point3D_Attributes, CT_PolarAdjustHandle_Attributes, CT_PositiveFixedAngle_Attributes, CT_PositiveFixedPercentage_Attributes, CT_PositivePercentage_Attributes, CT_PositiveSize2D_Attributes, CT_PresetColor_Attributes, CT_PresetGeometry2D_Attributes, CT_PresetLineDashProperties_Attributes, CT_PresetShadowEffect_Attributes, CT_PresetTextShape_Attributes, CT_ReflectionEffect_Attributes, CT_RelativeRect_Attributes, CT_SRgbColor_Attributes, CT_ScRgbColor_Attributes, CT_Scene3D_Attributes, CT_SchemeColor_Attributes, CT_Shape3D_Attributes, CT_ShapeProperties_Attributes, CT_ShapeStyle_Attributes, CT_SoftEdgesEffect_Attributes, CT_SolidColorFillProperties_Attributes, CT_SphereCoords_Attributes, CT_StretchInfoProperties_Attributes, CT_StyleMatrixReference_Attributes, CT_StyleMatrix_Attributes, CT_SupplementalFont_Attributes, CT_SystemColor_Attributes, CT_TextAutonumberBullet_Attributes, CT_TextBlipBullet_Attributes, CT_TextBodyProperties_Attributes, CT_TextBulletColorFollowText_Attributes, CT_TextBulletSizeFollowText_Attributes, CT_TextBulletSizePercent_Attributes, CT_TextBulletSizePoint_Attributes, CT_TextBulletTypefaceFollowText_Attributes, CT_TextCharBullet_Attributes, CT_TextCharacterProperties_Attributes, CT_TextFont_Attributes, CT_TextListStyle_Attributes, CT_TextNoAutofit_Attributes, CT_TextNoBullet_Attributes, CT_TextNormalAutofit_Attributes, CT_TextParagraphProperties_Attributes, CT_TextShapeAutofit_Attributes, CT_TextSpacingPercent_Attributes, CT_TextSpacingPoint_Attributes, CT_TextSpacing_Attributes, CT_TextTabStopList_Attributes, CT_TextTabStop_Attributes, CT_TextUnderlineFillFollowText_Attributes, CT_TextUnderlineFillGroupWrapper_Attributes, CT_TextUnderlineLineFollowText_Attributes, CT_TileInfoProperties_Attributes, CT_Transform2D_Attributes, CT_Vector3D_Attributes, CT_XYAdjustHandle_Attributes };
|