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
+12
View File
@@ -0,0 +1,12 @@
import { IParagraphStylePropertiesOptions } from '../../paragraph/properties';
import { IRunStylePropertiesOptions } from '../../paragraph/run/properties';
import { XmlComponent } from '../../xml-components';
export type IDocumentDefaultsOptions = {
readonly paragraph?: IParagraphStylePropertiesOptions;
readonly run?: IRunStylePropertiesOptions;
};
export declare class DocumentDefaults extends XmlComponent {
private readonly runPropertiesDefaults;
private readonly paragraphPropertiesDefaults;
constructor(options: IDocumentDefaultsOptions);
}
@@ -0,0 +1 @@
export {};
+3
View File
@@ -0,0 +1,3 @@
export * from './paragraph-properties';
export * from './run-properties';
export * from './document-defaults';
@@ -0,0 +1,5 @@
import { IParagraphStylePropertiesOptions } from '../../paragraph/properties';
import { XmlComponent } from '../../xml-components';
export declare class ParagraphPropertiesDefaults extends XmlComponent {
constructor(options?: IParagraphStylePropertiesOptions);
}
+5
View File
@@ -0,0 +1,5 @@
import { IRunStylePropertiesOptions } from '../../paragraph/run/properties';
import { XmlComponent } from '../../xml-components';
export declare class RunPropertiesDefaults extends XmlComponent {
constructor(options?: IRunStylePropertiesOptions);
}