@vivliostyle/core 2.14.3 → 2.14.4

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.
@@ -44,8 +44,8 @@ export declare function getComputedDislayValue(display: Css.Ident, position: Css
44
44
  * Judges if the generated box is block.
45
45
  */
46
46
  export declare function isBlock(display: Css.Ident, position: Css.Ident, float: Css.Ident, isRoot: boolean): boolean;
47
- export declare function isInlineLevel(display: Css.Ident): boolean;
48
- export declare function isRubyInternalDisplay(display: Css.Ident): boolean;
47
+ export declare function isInlineLevel(display: Css.Ident | string): boolean;
48
+ export declare function isRubyInternalDisplay(display: Css.Ident | string): boolean;
49
49
  /**
50
50
  * Judges if the generated box establishes a new block formatting context.
51
51
  */
@@ -18,5 +18,6 @@ export declare function getElementHeight(element: Element, column: Layout.Column
18
18
  export declare function isOrphan(node: Node): boolean;
19
19
  export declare function removeFollowingSiblings(parentNode: Node, viewNode: Node): void;
20
20
  export declare function isSpecial(e: Element): boolean;
21
- export declare function isSpecialInlineDisplay(display: string): boolean;
22
21
  export declare function isSpecialNodeContext(nodeContext: Vtree.NodeContext): boolean;
22
+ export declare function isSpecialInlineDisplay(display: string): boolean;
23
+ export declare function findAncestorSpecialInlineNodeContext(nodeContext: Vtree.NodeContext): Vtree.NodeContext | null;