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
+15
View File
@@ -0,0 +1,15 @@
import { IDefaultStylesOptions } from './factory';
import { BaseXmlComponent, ImportedXmlComponent, XmlComponent } from '../xml-components';
import { StyleForCharacter, StyleForParagraph } from './style';
import { ICharacterStyleOptions } from './style/character-style';
import { IParagraphStyleOptions } from './style/paragraph-style';
export type IStylesOptions = {
readonly default?: IDefaultStylesOptions;
readonly initialStyles?: BaseXmlComponent;
readonly paragraphStyles?: readonly IParagraphStyleOptions[];
readonly characterStyles?: readonly ICharacterStyleOptions[];
readonly importedStyles?: readonly (XmlComponent | StyleForParagraph | StyleForCharacter | ImportedXmlComponent)[];
};
export declare class Styles extends XmlComponent {
constructor(options: IStylesOptions);
}