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
+22
View File
@@ -0,0 +1,22 @@
import { FileChild } from '../file-child';
import { FootnoteReferenceRun } from '../footnotes';
import { IContext, IXmlableObject } from '../xml-components';
import { CheckBox } from '../checkbox';
import { DeletedTextRun, InsertedTextRun } from '../track-revision';
import { ColumnBreak, PageBreak } from './formatting/break';
import { Bookmark, ExternalHyperlink, InternalHyperlink } from './links';
import { Math } from './math';
import { IParagraphPropertiesOptions } from './properties';
import { ImageRun, Run, SequentialIdentifier, SimpleField, SimpleMailMergeField, SymbolRun, TextRun } from './run';
import { Comment, CommentRangeEnd, CommentRangeStart, CommentReference, Comments } from './run/comment-run';
export type ParagraphChild = TextRun | ImageRun | SymbolRun | Bookmark | PageBreak | ColumnBreak | SequentialIdentifier | FootnoteReferenceRun | InternalHyperlink | ExternalHyperlink | InsertedTextRun | DeletedTextRun | Math | SimpleField | SimpleMailMergeField | Comments | Comment | CommentRangeStart | CommentRangeEnd | CommentReference | CheckBox;
export type IParagraphOptions = {
readonly text?: string;
readonly children?: readonly ParagraphChild[];
} & IParagraphPropertiesOptions;
export declare class Paragraph extends FileChild {
private readonly properties;
constructor(options: string | IParagraphOptions);
prepForXml(context: IContext): IXmlableObject | undefined;
addRunToFront(run: Run): Paragraph;
}