Fix App.jsx two-page workflow JSX render and update study app layout
This commit is contained in:
+3
@@ -0,0 +1,3 @@
|
||||
import { HorizontalPositionAlign, VerticalPositionAlign } from '../../shared/alignment';
|
||||
import { XmlComponent } from '../../xml-components';
|
||||
export declare const createAlign: (value: (typeof HorizontalPositionAlign)[keyof typeof HorizontalPositionAlign] | (typeof VerticalPositionAlign)[keyof typeof VerticalPositionAlign]) => XmlComponent;
|
||||
+1
@@ -0,0 +1 @@
|
||||
export {};
|
||||
+49
@@ -0,0 +1,49 @@
|
||||
import { HorizontalPositionAlign, VerticalPositionAlign } from '../../shared/alignment';
|
||||
import { ITextWrapping } from '../text-wrap';
|
||||
export declare const HorizontalPositionRelativeFrom: {
|
||||
readonly CHARACTER: "character";
|
||||
readonly COLUMN: "column";
|
||||
readonly INSIDE_MARGIN: "insideMargin";
|
||||
readonly LEFT_MARGIN: "leftMargin";
|
||||
readonly MARGIN: "margin";
|
||||
readonly OUTSIDE_MARGIN: "outsideMargin";
|
||||
readonly PAGE: "page";
|
||||
readonly RIGHT_MARGIN: "rightMargin";
|
||||
};
|
||||
export declare const VerticalPositionRelativeFrom: {
|
||||
readonly BOTTOM_MARGIN: "bottomMargin";
|
||||
readonly INSIDE_MARGIN: "insideMargin";
|
||||
readonly LINE: "line";
|
||||
readonly MARGIN: "margin";
|
||||
readonly OUTSIDE_MARGIN: "outsideMargin";
|
||||
readonly PAGE: "page";
|
||||
readonly PARAGRAPH: "paragraph";
|
||||
readonly TOP_MARGIN: "topMargin";
|
||||
};
|
||||
export type IHorizontalPositionOptions = {
|
||||
readonly relative?: (typeof HorizontalPositionRelativeFrom)[keyof typeof HorizontalPositionRelativeFrom];
|
||||
readonly align?: (typeof HorizontalPositionAlign)[keyof typeof HorizontalPositionAlign];
|
||||
readonly offset?: number;
|
||||
};
|
||||
export type IVerticalPositionOptions = {
|
||||
readonly relative?: (typeof VerticalPositionRelativeFrom)[keyof typeof VerticalPositionRelativeFrom];
|
||||
readonly align?: (typeof VerticalPositionAlign)[keyof typeof VerticalPositionAlign];
|
||||
readonly offset?: number;
|
||||
};
|
||||
export type IMargins = {
|
||||
readonly left?: number;
|
||||
readonly bottom?: number;
|
||||
readonly top?: number;
|
||||
readonly right?: number;
|
||||
};
|
||||
export type IFloating = {
|
||||
readonly horizontalPosition: IHorizontalPositionOptions;
|
||||
readonly verticalPosition: IVerticalPositionOptions;
|
||||
readonly allowOverlap?: boolean;
|
||||
readonly lockAnchor?: boolean;
|
||||
readonly behindDocument?: boolean;
|
||||
readonly layoutInCell?: boolean;
|
||||
readonly margins?: IMargins;
|
||||
readonly wrap?: ITextWrapping;
|
||||
readonly zIndex?: number;
|
||||
};
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
import { XmlComponent } from '../../xml-components';
|
||||
import { IHorizontalPositionOptions } from './floating-position';
|
||||
export declare const createHorizontalPosition: ({ relative, align, offset }: IHorizontalPositionOptions) => XmlComponent;
|
||||
+1
@@ -0,0 +1 @@
|
||||
export {};
|
||||
+4
@@ -0,0 +1,4 @@
|
||||
export * from './floating-position';
|
||||
export * from './simple-pos';
|
||||
export * from './horizontal-position';
|
||||
export * from './vertical-position';
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
import { XmlComponent } from '../../xml-components';
|
||||
export declare const createPositionOffset: (offsetValue: number) => XmlComponent;
|
||||
+1
@@ -0,0 +1 @@
|
||||
export {};
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
import { XmlComponent } from '../../xml-components';
|
||||
export declare const createSimplePos: () => XmlComponent;
|
||||
+1
@@ -0,0 +1 @@
|
||||
export {};
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
import { XmlComponent } from '../../xml-components';
|
||||
import { IVerticalPositionOptions } from './floating-position';
|
||||
export declare const createVerticalPosition: ({ relative, align, offset }: IVerticalPositionOptions) => XmlComponent;
|
||||
+1
@@ -0,0 +1 @@
|
||||
export {};
|
||||
Reference in New Issue
Block a user