pptx-angular-viewer 1.7.1 → 1.8.0
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pptx-angular-viewer",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.8.0",
|
|
4
4
|
"description": "Angular PowerPoint viewer and editor component: render, edit, and export PPTX slides in the browser.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"angular",
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
"html2canvas-pro": "^2.0.4",
|
|
46
46
|
"jspdf": "^4.2.1",
|
|
47
47
|
"jszip": "^3.10.1",
|
|
48
|
-
"pptx-viewer-core": "^1.2.
|
|
48
|
+
"pptx-viewer-core": "^1.2.2",
|
|
49
49
|
"tslib": "^2.8.1"
|
|
50
50
|
},
|
|
51
51
|
"peerDependencies": {
|
|
@@ -2666,6 +2666,9 @@ declare class AccessibilityService {
|
|
|
2666
2666
|
/** Lifecycle status of the autosave engine (mirrors React's `AutosaveStatus`). */
|
|
2667
2667
|
type AutosaveStatus = {
|
|
2668
2668
|
state: 'idle';
|
|
2669
|
+
} | {
|
|
2670
|
+
state: 'disabled';
|
|
2671
|
+
reason: string;
|
|
2669
2672
|
} | {
|
|
2670
2673
|
state: 'saving';
|
|
2671
2674
|
} | {
|