Fix App.jsx two-page workflow JSX render and update study app layout
This commit is contained in:
+36
@@ -0,0 +1,36 @@
|
||||
import { ParagraphChild } from '../../paragraph';
|
||||
import { XmlComponent } from '../../xml-components';
|
||||
import { LengthUnit } from '../types';
|
||||
export type VmlShapeStyle = {
|
||||
readonly flip?: "x" | "y" | "xy" | "yx";
|
||||
readonly height?: LengthUnit;
|
||||
readonly left?: LengthUnit;
|
||||
readonly marginBottom?: LengthUnit;
|
||||
readonly marginLeft?: LengthUnit;
|
||||
readonly marginRight?: LengthUnit;
|
||||
readonly marginTop?: LengthUnit;
|
||||
readonly positionHorizontal?: "absolute" | "left" | "center" | "right" | "inside" | "outside";
|
||||
readonly positionHorizontalRelative?: "margin" | "page" | "text" | "char";
|
||||
readonly positionVertical?: "absolute" | "left" | "center" | "right" | "inside" | "outside";
|
||||
readonly positionVerticalRelative?: "margin" | "page" | "text" | "char";
|
||||
readonly wrapDistanceBottom?: number;
|
||||
readonly wrapDistanceLeft?: number;
|
||||
readonly wrapDistanceRight?: number;
|
||||
readonly wrapDistanceTop?: number;
|
||||
readonly wrapEdited?: boolean;
|
||||
readonly wrapStyle?: "square" | "none";
|
||||
readonly position?: "static" | "absolute" | "relative";
|
||||
readonly rotation?: number;
|
||||
readonly top?: LengthUnit;
|
||||
readonly visibility?: "hidden" | "inherit";
|
||||
readonly width: LengthUnit;
|
||||
readonly zIndex?: "auto" | number;
|
||||
};
|
||||
type ShapeOptions = {
|
||||
readonly id: string;
|
||||
readonly children?: readonly ParagraphChild[];
|
||||
readonly type?: string;
|
||||
readonly style?: VmlShapeStyle;
|
||||
};
|
||||
export declare const createShape: ({ id, children, type, style }: ShapeOptions) => XmlComponent;
|
||||
export {};
|
||||
+1
@@ -0,0 +1 @@
|
||||
export {};
|
||||
Reference in New Issue
Block a user