@hailin-zheng/editor-core 2.1.22 → 2.1.23

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.
@@ -17,6 +17,7 @@ export declare class TableRowElement extends BlockContainerElement<TableRowProps
17
17
  export declare class TableRowRenderObject extends MuiltBlockLineRenderObject<TableRowElement> {
18
18
  remeasureState: boolean;
19
19
  hasMergeCells: boolean | undefined;
20
+ minHeight: number;
20
21
  clone(): RenderObject;
21
22
  }
22
23
  export declare class TableRowFactory extends ElementFactory<TableRowProps> {
@@ -2,6 +2,12 @@ import { Position, Rect } from "./element-define";
2
2
  import { TextProps } from "./element-props";
3
3
  import { OnceSubject } from "./event-subject";
4
4
  import { TextGroupElement, TextGroupRenderObject } from "./impl/text/text-impl";
5
+ export declare enum TextUnitsHolder {
6
+ char = 0,
7
+ sourceSize = 1,
8
+ actualSize = 2,
9
+ actualBoundingBoxAscent = 3
10
+ }
5
11
  export interface TextUnits {
6
12
  sourceSize: number;
7
13
  actualSize: number;
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "author": "hailin-zheng",
5
5
  "private": false,
6
6
  "license": "ISC",
7
- "version": "2.1.22",
7
+ "version": "2.1.23",
8
8
  "scripts": {},
9
9
  "dependencies": {
10
10
  "moment": "^2.29.3",