pptx-viewer-core 1.1.22 → 1.1.26
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/CHANGELOG.md +55 -0
- package/README.md +91 -931
- package/dist/{SvgExporter-D4mBWJHE.d.mts → SvgExporter-BkkVdcN7.d.mts} +1 -1
- package/dist/{SvgExporter-BtZczTlB.d.ts → SvgExporter-MDf-1CNQ.d.ts} +1 -1
- package/dist/cli/index.d.mts +2 -2
- package/dist/cli/index.d.ts +2 -2
- package/dist/cli/index.js +0 -0
- package/dist/cli/index.mjs +0 -0
- package/dist/converter/index.d.mts +3 -3
- package/dist/converter/index.d.ts +3 -3
- package/dist/index.d.mts +394 -17
- package/dist/index.d.ts +394 -17
- package/dist/index.js +2233 -5872
- package/dist/index.mjs +2203 -5869
- package/dist/{presentation-nZxgWvXq.d.mts → presentation-BWchOWpy.d.mts} +41 -1
- package/dist/{presentation-nZxgWvXq.d.ts → presentation-BWchOWpy.d.ts} +41 -1
- package/dist/{text-operations-DYmhoi7U.d.ts → text-operations-DTlmk6ap.d.ts} +1 -1
- package/dist/{text-operations-DCTGMltY.d.mts → text-operations-Dld03ITU.d.mts} +1 -1
- package/package.json +18 -8
|
@@ -1970,6 +1970,8 @@ interface PptxChartShapeProps {
|
|
|
1970
1970
|
fillColor?: string;
|
|
1971
1971
|
strokeColor?: string;
|
|
1972
1972
|
strokeWidth?: number;
|
|
1973
|
+
/** Line dash style (a:prstDash/@val), e.g. 'solid', 'dash', 'dot', 'lgDash'. */
|
|
1974
|
+
strokeDashStyle?: string;
|
|
1973
1975
|
}
|
|
1974
1976
|
/** Marker appearance on a chart series or data point. */
|
|
1975
1977
|
interface PptxChartMarker {
|
|
@@ -2018,6 +2020,10 @@ interface PptxChartAxisFormatting {
|
|
|
2018
2020
|
fontSize?: number;
|
|
2019
2021
|
fontBold?: boolean;
|
|
2020
2022
|
fontColor?: string;
|
|
2023
|
+
/** Whether major gridlines are present (`c:majorGridlines`). */
|
|
2024
|
+
majorGridlines?: boolean;
|
|
2025
|
+
/** Whether minor gridlines are present (`c:minorGridlines`). */
|
|
2026
|
+
minorGridlines?: boolean;
|
|
2021
2027
|
majorGridlinesSpPr?: PptxChartShapeProps;
|
|
2022
2028
|
minorGridlinesSpPr?: PptxChartShapeProps;
|
|
2023
2029
|
/** Minimum axis value override (c:min/@val). */
|
|
@@ -2077,6 +2083,38 @@ interface PptxChartSeries {
|
|
|
2077
2083
|
explosion?: number;
|
|
2078
2084
|
/** Axis ID this series is plotted against (links to PptxChartAxisFormatting.axisId). */
|
|
2079
2085
|
axisId?: number;
|
|
2086
|
+
/**
|
|
2087
|
+
* Per-series chart type, used for combo charts where individual series are
|
|
2088
|
+
* plotted with different chart types (e.g. a bar series and a line series in
|
|
2089
|
+
* the same chart). Maps to the OOXML chart-type container that holds the
|
|
2090
|
+
* series (`c:barChart`, `c:lineChart`, etc.). Omitted for single-type charts,
|
|
2091
|
+
* where the chart-level {@link PptxChartData.chartType} applies to every
|
|
2092
|
+
* series.
|
|
2093
|
+
*/
|
|
2094
|
+
seriesChartType?: PptxChartType;
|
|
2095
|
+
}
|
|
2096
|
+
/**
|
|
2097
|
+
* Chart-level data-label options (`c:dLbls` directly under a chart-type
|
|
2098
|
+
* container, applying to every series). Mirrors the OOXML `c:show*` flags
|
|
2099
|
+
* and `c:dLblPos`.
|
|
2100
|
+
*/
|
|
2101
|
+
interface PptxChartDataLabelOptions {
|
|
2102
|
+
/** Show the numeric value (`c:showVal`). */
|
|
2103
|
+
showValue?: boolean;
|
|
2104
|
+
/** Show the category name (`c:showCatName`). */
|
|
2105
|
+
showCategory?: boolean;
|
|
2106
|
+
/** Show the series name (`c:showSerName`). */
|
|
2107
|
+
showSeriesName?: boolean;
|
|
2108
|
+
/** Show the percentage (`c:showPercent`, pie/doughnut). */
|
|
2109
|
+
showPercent?: boolean;
|
|
2110
|
+
/** Show the legend key swatch (`c:showLegendKey`). */
|
|
2111
|
+
showLegendKey?: boolean;
|
|
2112
|
+
/**
|
|
2113
|
+
* Label position (`c:dLblPos`). Valid values depend on the chart type
|
|
2114
|
+
* (`ctr`, `inEnd`, `inBase`, `outEnd`, `bestFit`, `l`, `r`, `t`, `b`).
|
|
2115
|
+
* Omit to let PowerPoint use the type default.
|
|
2116
|
+
*/
|
|
2117
|
+
position?: 'ctr' | 'inEnd' | 'inBase' | 'outEnd' | 'bestFit' | 'l' | 'r' | 't' | 'b';
|
|
2080
2118
|
}
|
|
2081
2119
|
/**
|
|
2082
2120
|
* Style / formatting metadata for a chart.
|
|
@@ -2105,6 +2143,8 @@ interface PptxChartStyle {
|
|
|
2105
2143
|
hasGridlines?: boolean;
|
|
2106
2144
|
/** Whether data labels are shown. */
|
|
2107
2145
|
hasDataLabels?: boolean;
|
|
2146
|
+
/** Chart-level data-label content/position options (when `hasDataLabels`). */
|
|
2147
|
+
dataLabels?: PptxChartDataLabelOptions;
|
|
2108
2148
|
}
|
|
2109
2149
|
/**
|
|
2110
2150
|
* External data source reference for a chart (c:externalData).
|
|
@@ -5642,4 +5682,4 @@ interface PptxEmbeddedFont {
|
|
|
5642
5682
|
originalPartBytes?: Uint8Array;
|
|
5643
5683
|
}
|
|
5644
5684
|
|
|
5645
|
-
export { type ShapeStyle as $, type PptxSlideMaster as A, type PptxSlideLayout as B, type ConnectorPptxElement as C, type PptxTagCollection as D, type PptxPhotoAlbum as E, type PptxKinsoku as F, type PptxModifyVerifier as G, type PptxViewProperties as H, type InkPptxElement as I, type ParsedTableStyleMap as J, type PptxEmbeddedFont as K, type PptxExportOptions as L, type PptxThemeFormatScheme as M, type TextSegment as N, type PptxComment as O, type PptxElement as P, type PptxSlideBackgroundPattern as Q, type PptxSlideTransition as R, type ShapePptxElement as S, type TextPptxElement as T, type PptxElementAnimation as U, type PptxNativeAnimation as V, type PptxCustomerData as W, type XmlObject as X, type PptxActiveXControl as Y, type ZoomPptxElement as Z, type AnimationCondition as _, type PptxElementWithShapeStyle as a, type ImagePptxElement as a$, type TextStyle as a0, type ElementAction as a1, type PptxAction as a2, type OleObjectType as a3, type PptxSmartArtNode as a4, type SmartArtLayoutType as a5, type PptxSmartArtDrawingShape as a6, type PptxChartDataTable as a7, type PptxChartLineStyle as a8, type PptxChartErrBars as a9, type
|
|
5685
|
+
export { type ShapeStyle as $, type PptxSlideMaster as A, type PptxSlideLayout as B, type ConnectorPptxElement as C, type PptxTagCollection as D, type PptxPhotoAlbum as E, type PptxKinsoku as F, type PptxModifyVerifier as G, type PptxViewProperties as H, type InkPptxElement as I, type ParsedTableStyleMap as J, type PptxEmbeddedFont as K, type PptxExportOptions as L, type PptxThemeFormatScheme as M, type TextSegment as N, type PptxComment as O, type PptxElement as P, type PptxSlideBackgroundPattern as Q, type PptxSlideTransition as R, type ShapePptxElement as S, type TextPptxElement as T, type PptxElementAnimation as U, type PptxNativeAnimation as V, type PptxCustomerData as W, type XmlObject as X, type PptxActiveXControl as Y, type ZoomPptxElement as Z, type AnimationCondition as _, type PptxElementWithShapeStyle as a, type ImagePptxElement as a$, type TextStyle as a0, type ElementAction as a1, type PptxAction as a2, type OleObjectType as a3, type PptxSmartArtNode as a4, type SmartArtLayoutType as a5, type PptxSmartArtDrawingShape as a6, type PptxChartDataTable as a7, type PptxChartLineStyle as a8, type PptxChartErrBars as a9, type ChartPptxElement as aA, type OlePptxElement as aB, type GroupPptxElement as aC, type PlaceholderTextLevelStyle as aD, type PptxChartOfPieOptions as aE, type PptxChartView3D as aF, type PptxChartChrome as aG, type PptxChartSeries as aH, type SmartArtPptxElement as aI, type GeometryAdjustmentHandle as aJ, type CustomGeometryRawData as aK, type AdjustHandleXY as aL, type AdjustHandlePolar as aM, type ConnectionSite as aN, type CustomGeometryTextRect as aO, type CustomGeometryPath as aP, type BulletInfo as aQ, type PptxShapeLocks as aR, type PptxTextStyleLevels as aS, type PptxThemeFillStyle as aT, type PptxThemeLineStyle as aU, type PptxThemeEffectStyle as aV, type PptxSmartArtChrome as aW, type PptxSmartArtColorTransform as aX, type PptxSmartArtQuickStyle as aY, type PptxExternalData as aZ, type CustomGeometryPoint as a_, type PptxChartTrendline as aa, type PptxChartMarker as ab, type PptxChartDataLabel as ac, type PptxChartDataPoint as ad, type PptxChartShapeProps as ae, type PptxChart3DSurface as af, type PptxChartAxisFormatting as ag, type PptxEmbeddedWorkbookData as ah, type PptxDrawingGuide as ai, type PptxTableCellStyle as aj, type PptxCustomXmlPart as ak, type PptxCommentAuthor as al, type MediaPptxElement as am, type PptxTableData as an, type PptxTheme as ao, type PptxThemeOption as ap, type PlaceholderDefaults as aq, type PptxMasterTextStyles as ar, type PptxThemeObjectDefaults as as, type ParsedTableStyleFill as at, type ParsedTableBackground as au, type ParsedTableStyleText as av, type PptxImageEffects as aw, type MediaBookmark as ax, type PptxChartStyle as ay, type TablePptxElement as az, type PptxElementWithText as b, type PptxTextProperties as b$, type PptxChartDataLabelOptions as b0, type PptxChartMarkerSymbol as b1, type ActionButtonPreset as b2, type AnimationConditionEvent as b3, type BevelPresetType as b4, type ConnectorConnectionPoint as b5, type ContentPartInkStroke as b6, type ContentPartPptxElement as b7, type CustomGeometrySegment as b8, type EffectDagBlend as b9, type PptxChartErrBarType as bA, type PptxChartErrValType as bB, type PptxChartTrendlineType as bC, type PptxColorAnimation as bD, type PptxCommonSlideViewProperties as bE, type PptxCropShape as bF, type PptxCustomPathProperties as bG, type PptxElementBase as bH, type PptxElementType as bI, type PptxExportFormat as bJ, type PptxGraphicFrameExtension as bK, type PptxHeaderFooterFlags as bL, type PptxImageProperties as bM, type PptxMediaType as bN, type PptxNativeAnimationKind as bO, type PptxNormalViewProperties as bP, type PptxRestoredRegion as bQ, type PptxShapeProperties as bR, type PptxSmartArtConnection as bS, type PptxSplitDirection as bT, type PptxSplitOrientation as bU, type PptxStripDirection as bV, type PptxTableCell as bW, type PptxTableRow as bX, type PptxTag as bY, type PptxTextAnimationTarget as bZ, type PptxTextBuildType as b_, type EffectDagBlendMode as ba, type EffectDagContainer as bb, type EffectDagContainerType as bc, type EffectDagNode as bd, type EffectDagRawLeaf as be, type EffectDagRelOff as bf, type EffectDagXfrm as bg, type ElementActionType as bh, type MasterViewTab as bi, type MaterialPresetType as bj, type MediaCaptionTrack as bk, type MediaMetadata as bl, type Model3DPptxElement as bm, type ParsedTableStyleEntry as bn, type PicturePptxElement as bo, type Pptx3DScene as bp, type Pptx3DShape as bq, type PptxAfterAnimationAction as br, type PptxAnimationDirection as bs, type PptxAnimationIterate as bt, type PptxAnimationKeyframe as bu, type PptxAnimationRepeatMode as bv, type PptxAnimationSequence as bw, type PptxAnimationTimingCurve as bx, type PptxChartAxisNumFmt as by, type PptxChartErrBarDir as bz, type PptxImageLikeElement as c, type PptxTextWarpPreset as c0, type PptxThemeFontGroup as c1, type PptxTransitionDirection4 as c2, type PptxTransitionDirection8 as c3, type PptxViewOrigin as c4, type PptxViewScale as c5, type ShadowEffect as c6, type SmartArtColorScheme as c7, type SmartArtLayout as c8, type SmartArtStyle as c9, THEME_COLOR_SCHEME_KEYS as ca, TRANSITION_VALID_DIRECTIONS as cb, type Text3DStyle as cc, type UnderlineStyle as cd, type UnknownPptxElement as ce, type PptxThemeColorScheme as d, type PptxThemeFontScheme as e, type PptxAnimationPreset as f, type PptxAnimationTrigger as g, type StrokeDashType as h, type ConnectorArrowType as i, type PptxTransitionType as j, type PptxChartType as k, type PptxSlide as l, type PptxData as m, type PptxCompatibilityWarning as n, type PptxLayoutOption as o, type PptxChartData as p, type PptxSmartArtData as q, type PptxHeaderFooter as r, type PptxPresentationProperties as s, type PptxCustomShow as t, type PptxSection as u, type PptxCoreProperties as v, type PptxAppProperties as w, type PptxCustomProperty as x, type PptxNotesMaster as y, type PptxHandoutMaster as z };
|
|
@@ -1970,6 +1970,8 @@ interface PptxChartShapeProps {
|
|
|
1970
1970
|
fillColor?: string;
|
|
1971
1971
|
strokeColor?: string;
|
|
1972
1972
|
strokeWidth?: number;
|
|
1973
|
+
/** Line dash style (a:prstDash/@val), e.g. 'solid', 'dash', 'dot', 'lgDash'. */
|
|
1974
|
+
strokeDashStyle?: string;
|
|
1973
1975
|
}
|
|
1974
1976
|
/** Marker appearance on a chart series or data point. */
|
|
1975
1977
|
interface PptxChartMarker {
|
|
@@ -2018,6 +2020,10 @@ interface PptxChartAxisFormatting {
|
|
|
2018
2020
|
fontSize?: number;
|
|
2019
2021
|
fontBold?: boolean;
|
|
2020
2022
|
fontColor?: string;
|
|
2023
|
+
/** Whether major gridlines are present (`c:majorGridlines`). */
|
|
2024
|
+
majorGridlines?: boolean;
|
|
2025
|
+
/** Whether minor gridlines are present (`c:minorGridlines`). */
|
|
2026
|
+
minorGridlines?: boolean;
|
|
2021
2027
|
majorGridlinesSpPr?: PptxChartShapeProps;
|
|
2022
2028
|
minorGridlinesSpPr?: PptxChartShapeProps;
|
|
2023
2029
|
/** Minimum axis value override (c:min/@val). */
|
|
@@ -2077,6 +2083,38 @@ interface PptxChartSeries {
|
|
|
2077
2083
|
explosion?: number;
|
|
2078
2084
|
/** Axis ID this series is plotted against (links to PptxChartAxisFormatting.axisId). */
|
|
2079
2085
|
axisId?: number;
|
|
2086
|
+
/**
|
|
2087
|
+
* Per-series chart type, used for combo charts where individual series are
|
|
2088
|
+
* plotted with different chart types (e.g. a bar series and a line series in
|
|
2089
|
+
* the same chart). Maps to the OOXML chart-type container that holds the
|
|
2090
|
+
* series (`c:barChart`, `c:lineChart`, etc.). Omitted for single-type charts,
|
|
2091
|
+
* where the chart-level {@link PptxChartData.chartType} applies to every
|
|
2092
|
+
* series.
|
|
2093
|
+
*/
|
|
2094
|
+
seriesChartType?: PptxChartType;
|
|
2095
|
+
}
|
|
2096
|
+
/**
|
|
2097
|
+
* Chart-level data-label options (`c:dLbls` directly under a chart-type
|
|
2098
|
+
* container, applying to every series). Mirrors the OOXML `c:show*` flags
|
|
2099
|
+
* and `c:dLblPos`.
|
|
2100
|
+
*/
|
|
2101
|
+
interface PptxChartDataLabelOptions {
|
|
2102
|
+
/** Show the numeric value (`c:showVal`). */
|
|
2103
|
+
showValue?: boolean;
|
|
2104
|
+
/** Show the category name (`c:showCatName`). */
|
|
2105
|
+
showCategory?: boolean;
|
|
2106
|
+
/** Show the series name (`c:showSerName`). */
|
|
2107
|
+
showSeriesName?: boolean;
|
|
2108
|
+
/** Show the percentage (`c:showPercent`, pie/doughnut). */
|
|
2109
|
+
showPercent?: boolean;
|
|
2110
|
+
/** Show the legend key swatch (`c:showLegendKey`). */
|
|
2111
|
+
showLegendKey?: boolean;
|
|
2112
|
+
/**
|
|
2113
|
+
* Label position (`c:dLblPos`). Valid values depend on the chart type
|
|
2114
|
+
* (`ctr`, `inEnd`, `inBase`, `outEnd`, `bestFit`, `l`, `r`, `t`, `b`).
|
|
2115
|
+
* Omit to let PowerPoint use the type default.
|
|
2116
|
+
*/
|
|
2117
|
+
position?: 'ctr' | 'inEnd' | 'inBase' | 'outEnd' | 'bestFit' | 'l' | 'r' | 't' | 'b';
|
|
2080
2118
|
}
|
|
2081
2119
|
/**
|
|
2082
2120
|
* Style / formatting metadata for a chart.
|
|
@@ -2105,6 +2143,8 @@ interface PptxChartStyle {
|
|
|
2105
2143
|
hasGridlines?: boolean;
|
|
2106
2144
|
/** Whether data labels are shown. */
|
|
2107
2145
|
hasDataLabels?: boolean;
|
|
2146
|
+
/** Chart-level data-label content/position options (when `hasDataLabels`). */
|
|
2147
|
+
dataLabels?: PptxChartDataLabelOptions;
|
|
2108
2148
|
}
|
|
2109
2149
|
/**
|
|
2110
2150
|
* External data source reference for a chart (c:externalData).
|
|
@@ -5642,4 +5682,4 @@ interface PptxEmbeddedFont {
|
|
|
5642
5682
|
originalPartBytes?: Uint8Array;
|
|
5643
5683
|
}
|
|
5644
5684
|
|
|
5645
|
-
export { type ShapeStyle as $, type PptxSlideMaster as A, type PptxSlideLayout as B, type ConnectorPptxElement as C, type PptxTagCollection as D, type PptxPhotoAlbum as E, type PptxKinsoku as F, type PptxModifyVerifier as G, type PptxViewProperties as H, type InkPptxElement as I, type ParsedTableStyleMap as J, type PptxEmbeddedFont as K, type PptxExportOptions as L, type PptxThemeFormatScheme as M, type TextSegment as N, type PptxComment as O, type PptxElement as P, type PptxSlideBackgroundPattern as Q, type PptxSlideTransition as R, type ShapePptxElement as S, type TextPptxElement as T, type PptxElementAnimation as U, type PptxNativeAnimation as V, type PptxCustomerData as W, type XmlObject as X, type PptxActiveXControl as Y, type ZoomPptxElement as Z, type AnimationCondition as _, type PptxElementWithShapeStyle as a, type ImagePptxElement as a$, type TextStyle as a0, type ElementAction as a1, type PptxAction as a2, type OleObjectType as a3, type PptxSmartArtNode as a4, type SmartArtLayoutType as a5, type PptxSmartArtDrawingShape as a6, type PptxChartDataTable as a7, type PptxChartLineStyle as a8, type PptxChartErrBars as a9, type
|
|
5685
|
+
export { type ShapeStyle as $, type PptxSlideMaster as A, type PptxSlideLayout as B, type ConnectorPptxElement as C, type PptxTagCollection as D, type PptxPhotoAlbum as E, type PptxKinsoku as F, type PptxModifyVerifier as G, type PptxViewProperties as H, type InkPptxElement as I, type ParsedTableStyleMap as J, type PptxEmbeddedFont as K, type PptxExportOptions as L, type PptxThemeFormatScheme as M, type TextSegment as N, type PptxComment as O, type PptxElement as P, type PptxSlideBackgroundPattern as Q, type PptxSlideTransition as R, type ShapePptxElement as S, type TextPptxElement as T, type PptxElementAnimation as U, type PptxNativeAnimation as V, type PptxCustomerData as W, type XmlObject as X, type PptxActiveXControl as Y, type ZoomPptxElement as Z, type AnimationCondition as _, type PptxElementWithShapeStyle as a, type ImagePptxElement as a$, type TextStyle as a0, type ElementAction as a1, type PptxAction as a2, type OleObjectType as a3, type PptxSmartArtNode as a4, type SmartArtLayoutType as a5, type PptxSmartArtDrawingShape as a6, type PptxChartDataTable as a7, type PptxChartLineStyle as a8, type PptxChartErrBars as a9, type ChartPptxElement as aA, type OlePptxElement as aB, type GroupPptxElement as aC, type PlaceholderTextLevelStyle as aD, type PptxChartOfPieOptions as aE, type PptxChartView3D as aF, type PptxChartChrome as aG, type PptxChartSeries as aH, type SmartArtPptxElement as aI, type GeometryAdjustmentHandle as aJ, type CustomGeometryRawData as aK, type AdjustHandleXY as aL, type AdjustHandlePolar as aM, type ConnectionSite as aN, type CustomGeometryTextRect as aO, type CustomGeometryPath as aP, type BulletInfo as aQ, type PptxShapeLocks as aR, type PptxTextStyleLevels as aS, type PptxThemeFillStyle as aT, type PptxThemeLineStyle as aU, type PptxThemeEffectStyle as aV, type PptxSmartArtChrome as aW, type PptxSmartArtColorTransform as aX, type PptxSmartArtQuickStyle as aY, type PptxExternalData as aZ, type CustomGeometryPoint as a_, type PptxChartTrendline as aa, type PptxChartMarker as ab, type PptxChartDataLabel as ac, type PptxChartDataPoint as ad, type PptxChartShapeProps as ae, type PptxChart3DSurface as af, type PptxChartAxisFormatting as ag, type PptxEmbeddedWorkbookData as ah, type PptxDrawingGuide as ai, type PptxTableCellStyle as aj, type PptxCustomXmlPart as ak, type PptxCommentAuthor as al, type MediaPptxElement as am, type PptxTableData as an, type PptxTheme as ao, type PptxThemeOption as ap, type PlaceholderDefaults as aq, type PptxMasterTextStyles as ar, type PptxThemeObjectDefaults as as, type ParsedTableStyleFill as at, type ParsedTableBackground as au, type ParsedTableStyleText as av, type PptxImageEffects as aw, type MediaBookmark as ax, type PptxChartStyle as ay, type TablePptxElement as az, type PptxElementWithText as b, type PptxTextProperties as b$, type PptxChartDataLabelOptions as b0, type PptxChartMarkerSymbol as b1, type ActionButtonPreset as b2, type AnimationConditionEvent as b3, type BevelPresetType as b4, type ConnectorConnectionPoint as b5, type ContentPartInkStroke as b6, type ContentPartPptxElement as b7, type CustomGeometrySegment as b8, type EffectDagBlend as b9, type PptxChartErrBarType as bA, type PptxChartErrValType as bB, type PptxChartTrendlineType as bC, type PptxColorAnimation as bD, type PptxCommonSlideViewProperties as bE, type PptxCropShape as bF, type PptxCustomPathProperties as bG, type PptxElementBase as bH, type PptxElementType as bI, type PptxExportFormat as bJ, type PptxGraphicFrameExtension as bK, type PptxHeaderFooterFlags as bL, type PptxImageProperties as bM, type PptxMediaType as bN, type PptxNativeAnimationKind as bO, type PptxNormalViewProperties as bP, type PptxRestoredRegion as bQ, type PptxShapeProperties as bR, type PptxSmartArtConnection as bS, type PptxSplitDirection as bT, type PptxSplitOrientation as bU, type PptxStripDirection as bV, type PptxTableCell as bW, type PptxTableRow as bX, type PptxTag as bY, type PptxTextAnimationTarget as bZ, type PptxTextBuildType as b_, type EffectDagBlendMode as ba, type EffectDagContainer as bb, type EffectDagContainerType as bc, type EffectDagNode as bd, type EffectDagRawLeaf as be, type EffectDagRelOff as bf, type EffectDagXfrm as bg, type ElementActionType as bh, type MasterViewTab as bi, type MaterialPresetType as bj, type MediaCaptionTrack as bk, type MediaMetadata as bl, type Model3DPptxElement as bm, type ParsedTableStyleEntry as bn, type PicturePptxElement as bo, type Pptx3DScene as bp, type Pptx3DShape as bq, type PptxAfterAnimationAction as br, type PptxAnimationDirection as bs, type PptxAnimationIterate as bt, type PptxAnimationKeyframe as bu, type PptxAnimationRepeatMode as bv, type PptxAnimationSequence as bw, type PptxAnimationTimingCurve as bx, type PptxChartAxisNumFmt as by, type PptxChartErrBarDir as bz, type PptxImageLikeElement as c, type PptxTextWarpPreset as c0, type PptxThemeFontGroup as c1, type PptxTransitionDirection4 as c2, type PptxTransitionDirection8 as c3, type PptxViewOrigin as c4, type PptxViewScale as c5, type ShadowEffect as c6, type SmartArtColorScheme as c7, type SmartArtLayout as c8, type SmartArtStyle as c9, THEME_COLOR_SCHEME_KEYS as ca, TRANSITION_VALID_DIRECTIONS as cb, type Text3DStyle as cc, type UnderlineStyle as cd, type UnknownPptxElement as ce, type PptxThemeColorScheme as d, type PptxThemeFontScheme as e, type PptxAnimationPreset as f, type PptxAnimationTrigger as g, type StrokeDashType as h, type ConnectorArrowType as i, type PptxTransitionType as j, type PptxChartType as k, type PptxSlide as l, type PptxData as m, type PptxCompatibilityWarning as n, type PptxLayoutOption as o, type PptxChartData as p, type PptxSmartArtData as q, type PptxHeaderFooter as r, type PptxPresentationProperties as s, type PptxCustomShow as t, type PptxSection as u, type PptxCoreProperties as v, type PptxAppProperties as w, type PptxCustomProperty as x, type PptxNotesMaster as y, type PptxHandoutMaster as z };
|
package/package.json
CHANGED
|
@@ -1,15 +1,22 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pptx-viewer-core",
|
|
3
|
-
"version": "1.1.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "1.1.26",
|
|
4
|
+
"description": "PowerPoint PPTX engine: parse, edit, serialize, and convert .pptx files. Framework-agnostic TypeScript SDK.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"converter",
|
|
7
7
|
"markdown",
|
|
8
|
+
"office",
|
|
9
|
+
"ooxml",
|
|
8
10
|
"openxml",
|
|
9
11
|
"parser",
|
|
10
12
|
"powerpoint",
|
|
13
|
+
"ppt",
|
|
11
14
|
"pptx",
|
|
12
|
-
"
|
|
15
|
+
"presentation",
|
|
16
|
+
"sdk",
|
|
17
|
+
"serializer",
|
|
18
|
+
"slides",
|
|
19
|
+
"typescript"
|
|
13
20
|
],
|
|
14
21
|
"homepage": "https://github.com/ChristopherVR/pptx-viewer",
|
|
15
22
|
"bugs": {
|
|
@@ -27,6 +34,7 @@
|
|
|
27
34
|
},
|
|
28
35
|
"files": [
|
|
29
36
|
"dist/",
|
|
37
|
+
"CHANGELOG.md",
|
|
30
38
|
"LICENSE",
|
|
31
39
|
"NOTICE",
|
|
32
40
|
"README.md"
|
|
@@ -64,21 +72,23 @@
|
|
|
64
72
|
"test:watch": "vitest",
|
|
65
73
|
"pack": "bun run build && bun pm pack"
|
|
66
74
|
},
|
|
75
|
+
"dependencies": {
|
|
76
|
+
"emf-converter": "^1.4.2",
|
|
77
|
+
"fast-xml-parser": "^5.9.2",
|
|
78
|
+
"jszip": "^3.10.1",
|
|
79
|
+
"mtx-decompressor": "^1.4.2"
|
|
80
|
+
},
|
|
67
81
|
"devDependencies": {
|
|
68
82
|
"@types/node-forge": "^1.3.14",
|
|
69
83
|
"@xmldom/xmldom": "^0.8.13",
|
|
70
|
-
"emf-converter": "workspace:*",
|
|
71
|
-
"mtx-decompressor": "workspace:*",
|
|
72
84
|
"node-forge": "^1.4.0",
|
|
73
85
|
"tsup": "^8.5.1",
|
|
74
86
|
"typescript": "^6.0.3",
|
|
75
|
-
"vitest": "^4.1.
|
|
87
|
+
"vitest": "^4.1.9",
|
|
76
88
|
"xml-crypto": "^6.1.2"
|
|
77
89
|
},
|
|
78
90
|
"peerDependencies": {
|
|
79
91
|
"@xmldom/xmldom": "^0.8.0",
|
|
80
|
-
"fast-xml-parser": "^5.8.0",
|
|
81
|
-
"jszip": "^3.10.1",
|
|
82
92
|
"node-forge": "^1.3.0",
|
|
83
93
|
"xml-crypto": "^6.0.0"
|
|
84
94
|
},
|