Fix App.jsx two-page workflow JSX render and update study app layout
This commit is contained in:
+24
@@ -0,0 +1,24 @@
|
||||
import { XmlAttributeComponent } from '../../xml-components';
|
||||
import { IDistance } from '../drawing';
|
||||
export type IAnchorAttributes = {
|
||||
readonly allowOverlap?: "0" | "1";
|
||||
readonly behindDoc?: "0" | "1";
|
||||
readonly layoutInCell?: "0" | "1";
|
||||
readonly locked?: "0" | "1";
|
||||
readonly relativeHeight?: number;
|
||||
readonly simplePos?: "0" | "1";
|
||||
} & IDistance;
|
||||
export declare class AnchorAttributes extends XmlAttributeComponent<IAnchorAttributes> {
|
||||
protected readonly xmlKeys: {
|
||||
distT: string;
|
||||
distB: string;
|
||||
distL: string;
|
||||
distR: string;
|
||||
allowOverlap: string;
|
||||
behindDoc: string;
|
||||
layoutInCell: string;
|
||||
locked: string;
|
||||
relativeHeight: string;
|
||||
simplePos: string;
|
||||
};
|
||||
}
|
||||
+10
@@ -0,0 +1,10 @@
|
||||
import { IExtendedMediaData, IMediaDataTransformation } from '../../media';
|
||||
import { XmlComponent } from '../../xml-components';
|
||||
import { IDrawingOptions } from '../drawing';
|
||||
export declare class Anchor extends XmlComponent {
|
||||
constructor({ mediaData, transform, drawingOptions, }: {
|
||||
readonly mediaData: IExtendedMediaData;
|
||||
readonly transform: IMediaDataTransformation;
|
||||
readonly drawingOptions: IDrawingOptions;
|
||||
});
|
||||
}
|
||||
+1
@@ -0,0 +1 @@
|
||||
export {};
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
export * from './anchor';
|
||||
export * from './anchor-attributes';
|
||||
Reference in New Issue
Block a user