@docen/extensions 0.1.2 → 0.1.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.
package/dist/types.d.mts CHANGED
@@ -5,7 +5,7 @@ import { Readable } from "node:stream";
5
5
  type DataType = ArrayBufferLike | Base64 | Blob | DataView | Readable | number[] | ReadableStream | Response | string | Uint8Array;
6
6
  type Base64 = string;
7
7
  //#endregion
8
- //#region ../../node_modules/.pnpm/docx-plus@0.0.13/node_modules/docx-plus/dist/index.d.mts
8
+ //#region ../../node_modules/.pnpm/docx-plus@0.0.14/node_modules/docx-plus/dist/index.d.mts
9
9
  //#endregion
10
10
  //#region src/file/drawing/doc-properties/doc-properties.d.ts
11
11
  interface DocPropertiesOptions {
@@ -328,14 +328,10 @@ interface OutlineAttributes {
328
328
  readonly join?: keyof typeof LineJoin;
329
329
  readonly miterLimit?: number;
330
330
  }
331
- interface OutlineNoFill {
332
- readonly type: "noFill";
331
+ interface OutlineFillProperties {
332
+ readonly type?: "noFill" | "solidFill";
333
+ readonly color?: SolidFillOptions;
333
334
  }
334
- interface OutlineSolidFill {
335
- readonly type: "solidFill";
336
- readonly color: SolidFillOptions;
337
- }
338
- type OutlineFillProperties = OutlineNoFill | OutlineSolidFill;
339
335
  type OutlineOptions = OutlineAttributes & OutlineFillProperties; //#endregion
340
336
  //#region src/file/drawing/inline/graphic/graphic-data/wpg/wpg-group.d.ts
341
337
  //#endregion
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@docen/extensions",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "Collection of TipTap extensions with TypeScript type definitions for Docen",
5
5
  "keywords": [
6
6
  "docen",
@@ -83,7 +83,7 @@
83
83
  "@tiptap/suggestion": "3.22.4"
84
84
  },
85
85
  "devDependencies": {
86
- "docx-plus": "0.0.13"
86
+ "docx-plus": "0.0.14"
87
87
  },
88
88
  "scripts": {
89
89
  "dev": "basis build --stub",