@office-kit/pptx-dev 0.2.2 → 0.2.3

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.
Files changed (2) hide show
  1. package/dist/index.d.mts +2 -19
  2. package/package.json +4 -4
package/dist/index.d.mts CHANGED
@@ -16,25 +16,8 @@ declare function initProject(directory: string): Promise<string>;
16
16
  //#region src/inspect.d.ts
17
17
  /** Source references usable directly in Slide, Fill and Remove props. */
18
18
  declare function inspectTemplate(file: string): Promise<{
19
- slides: {
20
- index: number;
21
- part: string;
22
- title: string | null;
23
- shapes: {
24
- id: number;
25
- name: string;
26
- kind: "shape" | "picture" | "group" | "graphicFrame" | "connector";
27
- placeholder: {
28
- type: string | null;
29
- idx: number | null;
30
- };
31
- }[];
32
- }[];
33
- layouts: {
34
- part: string;
35
- name: string;
36
- type: string | null;
37
- }[];
19
+ slides: any;
20
+ layouts: any;
38
21
  }>;
39
22
  //#endregion
40
23
  //#region src/index.d.ts
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@office-kit/pptx-dev",
3
- "version": "0.2.2",
3
+ "version": "0.2.3",
4
4
  "description": "Build and preview PowerPoint TSX presentations locally",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -28,9 +28,9 @@
28
28
  },
29
29
  "dependencies": {
30
30
  "esbuild": "^0.28.1",
31
- "@office-kit/pptx": "^0.17.0",
32
- "@office-kit/pptx-preview": "^0.9.6",
33
- "@office-kit/pptx-dsl": "^0.4.0"
31
+ "@office-kit/pptx": "^0.18.0",
32
+ "@office-kit/pptx-dsl": "^0.5.0",
33
+ "@office-kit/pptx-preview": "^0.9.6"
34
34
  },
35
35
  "devDependencies": {
36
36
  "@types/node": "^24.13.2",