@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.
@@ -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[];
@@ -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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@silurus/ooxml",
3
- "version": "0.60.1",
3
+ "version": "0.61.0",
4
4
  "description": "Browser-based OOXML viewer (docx/xlsx/pptx) — Rust/WASM parser + Canvas renderer",
5
5
  "license": "MIT",
6
6
  "author": "Yuki Yokotani <silurus.dev@gmail.com>",