@univerjs/sheets-drawing 0.15.4 → 0.15.5

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.
@@ -19,6 +19,10 @@ export interface ISheetDrawingPosition extends IRotationSkewFlipTransform, IShee
19
19
  }
20
20
  export interface ISheetDrawingBase {
21
21
  sheetTransform: ISheetDrawingPosition;
22
+ /**
23
+ * this property is used to store the excel drawing axis alignment position, which is not always the same as the sheetTransform.
24
+ */
25
+ axisAlignSheetTransform: ISheetDrawingPosition;
22
26
  anchorType?: SheetDrawingAnchorType;
23
27
  }
24
28
  export interface ISheetImage extends IImageData, ISheetDrawingBase {
@@ -32,6 +36,10 @@ export interface IFloatDomData extends IDrawingParam {
32
36
  componentKey: string;
33
37
  data?: Serializable;
34
38
  allowTransform?: boolean;
39
+ /**
40
+ * this property is used to store the excel drawing axis alignment position, which is not always the same as the sheetTransform.
41
+ */
42
+ axisAlignSheetTransform: ISheetDrawingPosition;
35
43
  }
36
44
  export interface ISheetFloatDom extends IFloatDomData, ISheetDrawingBase {
37
45
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@univerjs/sheets-drawing",
3
- "version": "0.15.4",
3
+ "version": "0.15.5",
4
4
  "private": false,
5
5
  "description": "",
6
6
  "author": "DreamNum <developer@univer.ai>",
@@ -43,15 +43,15 @@
43
43
  "lib"
44
44
  ],
45
45
  "dependencies": {
46
- "@univerjs/core": "0.15.4",
47
- "@univerjs/drawing": "0.15.4",
48
- "@univerjs/sheets": "0.15.4"
46
+ "@univerjs/drawing": "0.15.5",
47
+ "@univerjs/core": "0.15.5",
48
+ "@univerjs/sheets": "0.15.5"
49
49
  },
50
50
  "devDependencies": {
51
51
  "typescript": "^5.9.3",
52
52
  "vite": "^7.3.1",
53
53
  "vitest": "^4.0.18",
54
- "@univerjs-infra/shared": "0.15.4"
54
+ "@univerjs-infra/shared": "0.15.5"
55
55
  },
56
56
  "scripts": {
57
57
  "test": "vitest run",