pptx-viewer-core 1.1.45 → 1.1.46
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 +1 -0
- package/dist/index.js +6 -1
- package/dist/index.mjs +6 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -8,6 +8,7 @@ by [git-cliff](https://git-cliff.org); do not edit it by hand.
|
|
|
8
8
|
|
|
9
9
|
### Bug Fixes
|
|
10
10
|
|
|
11
|
+
- **core:** Correct install docs and drop the retired @christophervr/pptx-viewer alias (by @ChristopherVR) ([6544b4e](https://github.com/ChristopherVR/pptx-viewer/commit/6544b4eaf086945ecd8a18b877de5a483032aa14))
|
|
11
12
|
- **core,angular:** Revert xmldom to 0.8.x and fix shared import specifiers (by @ChristopherVR) ([29eda31](https://github.com/ChristopherVR/pptx-viewer/commit/29eda3119836559b63bc08733dd9dd6398a69c8d))
|
|
12
13
|
|
|
13
14
|
## [1.1.42](https://github.com/ChristopherVR/pptx-viewer/releases/tag/pptx-viewer-core@1.1.42) - 2026-06-27
|
package/dist/index.js
CHANGED
|
@@ -20278,7 +20278,12 @@ function switchSmartArtLayout(currentData, newLayoutType) {
|
|
|
20278
20278
|
layoutType: newLayoutType,
|
|
20279
20279
|
resolvedLayoutType: newLayoutType,
|
|
20280
20280
|
// Clear the named layout preset — switching category invalidates it
|
|
20281
|
-
layout: void 0
|
|
20281
|
+
layout: void 0,
|
|
20282
|
+
// Clear stale pre-computed drawing shapes from the old layout so the
|
|
20283
|
+
// reflow pipeline (rebuildDrawingShapesIfCleared) regenerates them for
|
|
20284
|
+
// the new layout type; otherwise the renderer keeps preferring the old
|
|
20285
|
+
// shapes and the switch has no visible effect.
|
|
20286
|
+
drawingShapes: void 0
|
|
20282
20287
|
// Preserve everything else: nodes, connections, colours, styles, chrome, etc.
|
|
20283
20288
|
};
|
|
20284
20289
|
}
|
package/dist/index.mjs
CHANGED
|
@@ -20273,7 +20273,12 @@ function switchSmartArtLayout(currentData, newLayoutType) {
|
|
|
20273
20273
|
layoutType: newLayoutType,
|
|
20274
20274
|
resolvedLayoutType: newLayoutType,
|
|
20275
20275
|
// Clear the named layout preset — switching category invalidates it
|
|
20276
|
-
layout: void 0
|
|
20276
|
+
layout: void 0,
|
|
20277
|
+
// Clear stale pre-computed drawing shapes from the old layout so the
|
|
20278
|
+
// reflow pipeline (rebuildDrawingShapesIfCleared) regenerates them for
|
|
20279
|
+
// the new layout type; otherwise the renderer keeps preferring the old
|
|
20280
|
+
// shapes and the switch has no visible effect.
|
|
20281
|
+
drawingShapes: void 0
|
|
20277
20282
|
// Preserve everything else: nodes, connections, colours, styles, chrome, etc.
|
|
20278
20283
|
};
|
|
20279
20284
|
}
|