pptx-viewer-core 1.2.3 → 1.2.5

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.
@@ -3962,6 +3962,16 @@ interface PptxAppProperties {
3962
3962
  */
3963
3963
  interface PptxElementBase {
3964
3964
  id: string;
3965
+ /**
3966
+ * The shape's native OOXML id from `p:cNvPr/@id` (an unsigned integer, as a
3967
+ * string), captured on load. Distinct from {@link id}, which is a synthetic
3968
+ * positional identity (`${slidePath}-shape-${index}`) the loader assigns for
3969
+ * selection / undo / template tracking. Animations target shapes by this
3970
+ * native id (`p:spTgt/@spid`), so it is the stable key used to reconcile an
3971
+ * animation to the element it animates across a save/reload round trip.
3972
+ * Absent on SDK-created elements until one is minted at save time.
3973
+ */
3974
+ shapeId?: string;
3965
3975
  /** Element name from `cNvPr/@name`. Used for morph transition matching via the `!!` naming convention. */
3966
3976
  name?: string;
3967
3977
  x: number;
@@ -3962,6 +3962,16 @@ interface PptxAppProperties {
3962
3962
  */
3963
3963
  interface PptxElementBase {
3964
3964
  id: string;
3965
+ /**
3966
+ * The shape's native OOXML id from `p:cNvPr/@id` (an unsigned integer, as a
3967
+ * string), captured on load. Distinct from {@link id}, which is a synthetic
3968
+ * positional identity (`${slidePath}-shape-${index}`) the loader assigns for
3969
+ * selection / undo / template tracking. Animations target shapes by this
3970
+ * native id (`p:spTgt/@spid`), so it is the stable key used to reconcile an
3971
+ * animation to the element it animates across a save/reload round trip.
3972
+ * Absent on SDK-created elements until one is minted at save time.
3973
+ */
3974
+ shapeId?: string;
3965
3975
  /** Element name from `cNvPr/@name`. Used for morph transition matching via the `!!` naming convention. */
3966
3976
  name?: string;
3967
3977
  x: number;
@@ -1,4 +1,4 @@
1
- import { m as PptxData, l as PptxSlide } from './presentation-BRAUjTRt.mjs';
1
+ import { m as PptxData, l as PptxSlide } from './presentation-CLc4eS3z.mjs';
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-BRAUjTRt.js';
1
+ import { m as PptxData, l as PptxSlide } from './presentation-CLc4eS3z.js';
2
2
 
3
3
  /**
4
4
  * Presentation merge operations for the headless PPTX SDK.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pptx-viewer-core",
3
- "version": "1.2.3",
3
+ "version": "1.2.5",
4
4
  "description": "PowerPoint PPTX engine: parse, edit, serialize, and convert .pptx files. Framework-agnostic TypeScript SDK.",
5
5
  "keywords": [
6
6
  "angular",