@visactor/vchart-types 1.13.21-alpha.9 → 1.13.21

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.
@@ -48,7 +48,7 @@ export declare class Layout implements IBaseLayout {
48
48
  layoutItems(_chart: IChart, items: ILayoutItem[], chartLayoutRect: IRect, chartViewBox: IBoundsLike): void;
49
49
  protected _processAutoIndent(regionItems: ILayoutItem[], relativeItems: ILayoutItem[], relativeOverlapItems: ILayoutItem[], overlapItems: {
50
50
  [key in IOrientType]: overlapInfo;
51
- }, allRelatives: ILayoutItem[], layoutTemp: LayoutSideType): void;
51
+ }, allRelatives: ILayoutItem[], layoutTemp: LayoutSideType, secondLayoutLeftRight?: boolean): void;
52
52
  protected layoutNormalItems(normalItems: ILayoutItem[]): void;
53
53
  protected layoutNormalInlineItems(normalItems: ILayoutItem[]): void;
54
54
  protected _layoutRelativeOverlap(orient: IOrientType, info: overlapInfo): void;
@@ -59,7 +59,7 @@ export declare class Layout implements IBaseLayout {
59
59
  };
60
60
  protected layoutRegionItems(regionItems: ILayoutItem[], regionRelativeItems: ILayoutItem[], regionRelativeOverlapItems: ILayoutItem[], overlapItems?: {
61
61
  [key in IOrientType]: overlapInfo;
62
- }): void;
62
+ }, secondLayoutLeftRight?: boolean): void;
63
63
  protected layoutAbsoluteItems(absoluteItems: ILayoutItem[]): void;
64
64
  filterRegionsWithID(items: ILayoutItem[], id: number): ILayoutItem;
65
65
  getItemComputeLayoutRect(item: ILayoutItem): {
@@ -38,6 +38,7 @@ export interface IGridLayoutSpec extends ILayoutSpecBase {
38
38
  }
39
39
  export interface IBaseLayoutSpec extends ILayoutSpecBase {
40
40
  type: 'base';
41
+ secondLayoutLeftRight?: boolean;
41
42
  }
42
43
  export type ILayoutSpec = IBaseLayoutSpec | IGridLayoutSpec;
43
44
  export interface ILayoutConstructor {