Fix App.jsx two-page workflow JSX render and update study app layout

This commit is contained in:
nmemmert
2026-05-26 17:14:30 -04:00
commit f47a41ce6f
4459 changed files with 1059845 additions and 0 deletions
+24
View File
@@ -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
View File
@@ -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
View File
@@ -0,0 +1 @@
export {};
+2
View File
@@ -0,0 +1,2 @@
export * from './anchor';
export * from './anchor-attributes';