@silurus/ooxml 0.60.1 → 0.61.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/dist/docx-DcHz7cyz.js +2140 -0
- package/dist/docx.mjs +1 -1
- package/dist/index.mjs +2 -2
- package/dist/{pptx-CcRBxO-i.js → pptx-XdCbndbT.js} +2 -2
- package/dist/pptx.mjs +1 -1
- package/dist/render-worker-host-BbPdLKW3.js +27 -0
- package/dist/{render-worker-host-qS8zOCxE.js → render-worker-host-CZI8tWId.js} +1 -1
- package/dist/types/docx.d.ts +4 -0
- package/dist/types/index.d.ts +4 -0
- package/package.json +1 -1
- package/dist/docx-B4CmtwJQ.js +0 -2100
- package/dist/render-worker-host-CChgqx5o.js +0 -27
package/dist/types/docx.d.ts
CHANGED
|
@@ -941,6 +941,10 @@ export declare interface ShapeRun {
|
|
|
941
941
|
/** `<a:ln><a:tailEnd>` line-end decoration (ECMA-376 §20.1.8.3). */
|
|
942
942
|
tailEnd?: LineEnd | null;
|
|
943
943
|
rotation?: number;
|
|
944
|
+
/** `<a:xfrm flipH>` (§20.1.7.6) — mirror about the vertical centre line. */
|
|
945
|
+
flipH?: boolean;
|
|
946
|
+
/** `<a:xfrm flipV>` (§20.1.7.6) — mirror about the horizontal centre line. */
|
|
947
|
+
flipV?: boolean;
|
|
944
948
|
wrapMode?: string | null;
|
|
945
949
|
/** Text rendered INSIDE the shape's bounding box (`<wps:txbx><w:txbxContent>`). */
|
|
946
950
|
textBlocks?: ShapeText[];
|
package/dist/types/index.d.ts
CHANGED
|
@@ -2888,6 +2888,10 @@ declare interface ShapeRun {
|
|
|
2888
2888
|
/** `<a:ln><a:tailEnd>` line-end decoration (ECMA-376 §20.1.8.3). */
|
|
2889
2889
|
tailEnd?: LineEnd | null;
|
|
2890
2890
|
rotation?: number;
|
|
2891
|
+
/** `<a:xfrm flipH>` (§20.1.7.6) — mirror about the vertical centre line. */
|
|
2892
|
+
flipH?: boolean;
|
|
2893
|
+
/** `<a:xfrm flipV>` (§20.1.7.6) — mirror about the horizontal centre line. */
|
|
2894
|
+
flipV?: boolean;
|
|
2891
2895
|
wrapMode?: string | null;
|
|
2892
2896
|
/** Text rendered INSIDE the shape's bounding box (`<wps:txbx><w:txbxContent>`). */
|
|
2893
2897
|
textBlocks?: ShapeText_2[];
|
package/package.json
CHANGED