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.
- package/CHANGELOG.md +8 -0
- package/dist/{SvgExporter-CYyO9c5A.d.mts → SvgExporter-BKbDaGaC.d.mts} +1 -1
- package/dist/{SvgExporter-DdjrIx33.d.ts → SvgExporter-CG73UVb9.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 +124 -6
- package/dist/index.d.ts +124 -6
- package/dist/index.js +516 -24
- package/dist/index.mjs +515 -25
- package/dist/{presentation-BRAUjTRt.d.mts → presentation-CLc4eS3z.d.mts} +10 -0
- package/dist/{presentation-BRAUjTRt.d.ts → presentation-CLc4eS3z.d.ts} +10 -0
- package/dist/{text-operations-CkW4BO91.d.mts → text-operations-CCKEVX_5.d.mts} +1 -1
- package/dist/{text-operations-BJUOhA1w.d.ts → text-operations-oN04X1yi.d.ts} +1 -1
- package/package.json +1 -1
|
@@ -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;
|