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.
@@ -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 OlePptxElement as aA, type GroupPptxElement as aB, type PlaceholderTextLevelStyle as aC, type PptxChartOfPieOptions as aD, type PptxChartView3D as aE, type PptxChartChrome as aF, type PptxChartSeries as aG, type SmartArtPptxElement as aH, type GeometryAdjustmentHandle as aI, type CustomGeometryRawData as aJ, type AdjustHandleXY as aK, type AdjustHandlePolar as aL, type ConnectionSite as aM, type CustomGeometryTextRect as aN, type CustomGeometryPath as aO, type BulletInfo as aP, type PptxShapeLocks as aQ, type PptxTextStyleLevels as aR, type PptxThemeFillStyle as aS, type PptxThemeLineStyle as aT, type PptxThemeEffectStyle as aU, type PptxSmartArtChrome as aV, type PptxSmartArtColorTransform as aW, type PptxSmartArtQuickStyle as aX, type PptxExternalData as aY, type CustomGeometryPoint as aZ, type ChartPptxElement 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 PptxTextWarpPreset as b$, type ActionButtonPreset as b0, type AnimationConditionEvent as b1, type BevelPresetType as b2, type ConnectorConnectionPoint as b3, type ContentPartInkStroke as b4, type ContentPartPptxElement as b5, type CustomGeometrySegment as b6, type EffectDagBlend as b7, type EffectDagBlendMode as b8, type EffectDagContainer as b9, type PptxChartMarkerSymbol as bA, type PptxChartTrendlineType as bB, type PptxColorAnimation as bC, type PptxCommonSlideViewProperties as bD, type PptxCropShape as bE, type PptxCustomPathProperties as bF, type PptxElementBase as bG, type PptxElementType as bH, type PptxExportFormat as bI, type PptxGraphicFrameExtension as bJ, type PptxHeaderFooterFlags as bK, type PptxImageProperties as bL, type PptxMediaType as bM, type PptxNativeAnimationKind as bN, type PptxNormalViewProperties as bO, type PptxRestoredRegion as bP, type PptxShapeProperties as bQ, type PptxSmartArtConnection as bR, type PptxSplitDirection as bS, type PptxSplitOrientation as bT, type PptxStripDirection as bU, type PptxTableCell as bV, type PptxTableRow as bW, type PptxTag as bX, type PptxTextAnimationTarget as bY, type PptxTextBuildType as bZ, type PptxTextProperties as b_, type EffectDagContainerType as ba, type EffectDagNode as bb, type EffectDagRawLeaf as bc, type EffectDagRelOff as bd, type EffectDagXfrm as be, type ElementActionType as bf, type MasterViewTab as bg, type MaterialPresetType as bh, type MediaCaptionTrack as bi, type MediaMetadata as bj, type Model3DPptxElement as bk, type ParsedTableStyleEntry as bl, type PicturePptxElement as bm, type Pptx3DScene as bn, type Pptx3DShape as bo, type PptxAfterAnimationAction as bp, type PptxAnimationDirection as bq, type PptxAnimationIterate as br, type PptxAnimationKeyframe as bs, type PptxAnimationRepeatMode as bt, type PptxAnimationSequence as bu, type PptxAnimationTimingCurve as bv, type PptxChartAxisNumFmt as bw, type PptxChartErrBarDir as bx, type PptxChartErrBarType as by, type PptxChartErrValType as bz, type PptxImageLikeElement as c, type PptxThemeFontGroup as c0, type PptxTransitionDirection4 as c1, type PptxTransitionDirection8 as c2, type PptxViewOrigin as c3, type PptxViewScale as c4, type ShadowEffect as c5, type SmartArtColorScheme as c6, type SmartArtLayout as c7, type SmartArtStyle as c8, THEME_COLOR_SCHEME_KEYS as c9, TRANSITION_VALID_DIRECTIONS as ca, type Text3DStyle as cb, type UnderlineStyle as cc, type UnknownPptxElement as cd, 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 };
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 OlePptxElement as aA, type GroupPptxElement as aB, type PlaceholderTextLevelStyle as aC, type PptxChartOfPieOptions as aD, type PptxChartView3D as aE, type PptxChartChrome as aF, type PptxChartSeries as aG, type SmartArtPptxElement as aH, type GeometryAdjustmentHandle as aI, type CustomGeometryRawData as aJ, type AdjustHandleXY as aK, type AdjustHandlePolar as aL, type ConnectionSite as aM, type CustomGeometryTextRect as aN, type CustomGeometryPath as aO, type BulletInfo as aP, type PptxShapeLocks as aQ, type PptxTextStyleLevels as aR, type PptxThemeFillStyle as aS, type PptxThemeLineStyle as aT, type PptxThemeEffectStyle as aU, type PptxSmartArtChrome as aV, type PptxSmartArtColorTransform as aW, type PptxSmartArtQuickStyle as aX, type PptxExternalData as aY, type CustomGeometryPoint as aZ, type ChartPptxElement 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 PptxTextWarpPreset as b$, type ActionButtonPreset as b0, type AnimationConditionEvent as b1, type BevelPresetType as b2, type ConnectorConnectionPoint as b3, type ContentPartInkStroke as b4, type ContentPartPptxElement as b5, type CustomGeometrySegment as b6, type EffectDagBlend as b7, type EffectDagBlendMode as b8, type EffectDagContainer as b9, type PptxChartMarkerSymbol as bA, type PptxChartTrendlineType as bB, type PptxColorAnimation as bC, type PptxCommonSlideViewProperties as bD, type PptxCropShape as bE, type PptxCustomPathProperties as bF, type PptxElementBase as bG, type PptxElementType as bH, type PptxExportFormat as bI, type PptxGraphicFrameExtension as bJ, type PptxHeaderFooterFlags as bK, type PptxImageProperties as bL, type PptxMediaType as bM, type PptxNativeAnimationKind as bN, type PptxNormalViewProperties as bO, type PptxRestoredRegion as bP, type PptxShapeProperties as bQ, type PptxSmartArtConnection as bR, type PptxSplitDirection as bS, type PptxSplitOrientation as bT, type PptxStripDirection as bU, type PptxTableCell as bV, type PptxTableRow as bW, type PptxTag as bX, type PptxTextAnimationTarget as bY, type PptxTextBuildType as bZ, type PptxTextProperties as b_, type EffectDagContainerType as ba, type EffectDagNode as bb, type EffectDagRawLeaf as bc, type EffectDagRelOff as bd, type EffectDagXfrm as be, type ElementActionType as bf, type MasterViewTab as bg, type MaterialPresetType as bh, type MediaCaptionTrack as bi, type MediaMetadata as bj, type Model3DPptxElement as bk, type ParsedTableStyleEntry as bl, type PicturePptxElement as bm, type Pptx3DScene as bn, type Pptx3DShape as bo, type PptxAfterAnimationAction as bp, type PptxAnimationDirection as bq, type PptxAnimationIterate as br, type PptxAnimationKeyframe as bs, type PptxAnimationRepeatMode as bt, type PptxAnimationSequence as bu, type PptxAnimationTimingCurve as bv, type PptxChartAxisNumFmt as bw, type PptxChartErrBarDir as bx, type PptxChartErrBarType as by, type PptxChartErrValType as bz, type PptxImageLikeElement as c, type PptxThemeFontGroup as c0, type PptxTransitionDirection4 as c1, type PptxTransitionDirection8 as c2, type PptxViewOrigin as c3, type PptxViewScale as c4, type ShadowEffect as c5, type SmartArtColorScheme as c6, type SmartArtLayout as c7, type SmartArtStyle as c8, THEME_COLOR_SCHEME_KEYS as c9, TRANSITION_VALID_DIRECTIONS as ca, type Text3DStyle as cb, type UnderlineStyle as cc, type UnknownPptxElement as cd, 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 };
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 };
@@ -1,4 +1,4 @@
1
- import { m as PptxData, l as PptxSlide } from './presentation-nZxgWvXq.js';
1
+ import { m as PptxData, l as PptxSlide } from './presentation-BWchOWpy.js';
2
2
 
3
3
  /**
4
4
  * Presentation merge operations for the headless PPTX SDK.
@@ -1,4 +1,4 @@
1
- import { m as PptxData, l as PptxSlide } from './presentation-nZxgWvXq.mjs';
1
+ import { m as PptxData, l as PptxSlide } from './presentation-BWchOWpy.mjs';
2
2
 
3
3
  /**
4
4
  * Presentation merge operations for the headless PPTX SDK.
package/package.json CHANGED
@@ -1,15 +1,22 @@
1
1
  {
2
2
  "name": "pptx-viewer-core",
3
- "version": "1.1.22",
4
- "description": "Core PPTX engine parse, edit, serialize, and convert PowerPoint files.",
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
- "sdk"
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.8",
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
  },