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
+2
View File
@@ -0,0 +1,2 @@
export * from './math-bar';
export * from './math-bar-properties';
+6
View File
@@ -0,0 +1,6 @@
import { XmlComponent } from '../../../xml-components';
type MathBarPosOptions = {
readonly val: string;
};
export declare const createMathBarPos: ({ val }: MathBarPosOptions) => XmlComponent;
export {};
@@ -0,0 +1,4 @@
import { XmlComponent } from '../../../xml-components';
export declare const createMathBarProperties: ({ type }: {
readonly type: string;
}) => XmlComponent;
@@ -0,0 +1 @@
export {};
+8
View File
@@ -0,0 +1,8 @@
import { XmlComponent } from '../../../xml-components';
import { MathComponent } from '../math-component';
type MathBarOptions = {
readonly type: "top" | "bot";
readonly children: readonly MathComponent[];
};
export declare const createMathBar: ({ type, children }: MathBarOptions) => XmlComponent;
export {};
+1
View File
@@ -0,0 +1 @@
export {};
+4
View File
@@ -0,0 +1,4 @@
export * from './math-round-brackets';
export * from './math-square-brackets';
export * from './math-curly-brackets';
export * from './math-angled-brackets';
@@ -0,0 +1,9 @@
import { XmlComponent } from '../../../xml-components';
import { MathComponent } from '../math-component';
type MathAngledBracketsOptions = {
readonly children: readonly MathComponent[];
};
export declare class MathAngledBrackets extends XmlComponent {
constructor(options: MathAngledBracketsOptions);
}
export {};
@@ -0,0 +1 @@
export {};
@@ -0,0 +1,6 @@
import { XmlComponent } from '../../../xml-components';
type MathBeginningCharacterOptions = {
readonly character: string;
};
export declare const createMathBeginningCharacter: ({ character }: MathBeginningCharacterOptions) => XmlComponent;
export {};
@@ -0,0 +1 @@
export {};
@@ -0,0 +1,9 @@
import { XmlComponent } from '../../../xml-components';
type MathBracketPropertiesOptions = {
readonly characters?: {
readonly beginningCharacter: string;
readonly endingCharacter: string;
};
};
export declare const createMathBracketProperties: ({ characters }: MathBracketPropertiesOptions) => XmlComponent;
export {};
@@ -0,0 +1 @@
export {};
@@ -0,0 +1,7 @@
import { XmlComponent } from '../../../xml-components';
import { MathComponent } from '../math-component';
export declare class MathCurlyBrackets extends XmlComponent {
constructor(options: {
readonly children: readonly MathComponent[];
});
}
@@ -0,0 +1 @@
export {};
@@ -0,0 +1,6 @@
import { XmlComponent } from '../../../xml-components';
type MathEndingCharacterOptions = {
readonly character: string;
};
export declare const createMathEndingCharacter: ({ character }: MathEndingCharacterOptions) => XmlComponent;
export {};
@@ -0,0 +1 @@
export {};
@@ -0,0 +1,7 @@
import { XmlComponent } from '../../../xml-components';
import { MathComponent } from '../math-component';
export declare class MathRoundBrackets extends XmlComponent {
constructor(options: {
readonly children: readonly MathComponent[];
});
}
@@ -0,0 +1 @@
export {};
@@ -0,0 +1,7 @@
import { XmlComponent } from '../../../xml-components';
import { MathComponent } from '../math-component';
export declare class MathSquareBrackets extends XmlComponent {
constructor(options: {
readonly children: readonly MathComponent[];
});
}
@@ -0,0 +1 @@
export {};
+3
View File
@@ -0,0 +1,3 @@
export * from './math-fraction';
export * from './math-denominator';
export * from './math-numerator';
@@ -0,0 +1,5 @@
import { XmlComponent } from '../../../xml-components';
import { MathComponent } from '../math-component';
export declare class MathDenominator extends XmlComponent {
constructor(children: readonly MathComponent[]);
}
@@ -0,0 +1 @@
export {};
@@ -0,0 +1,9 @@
import { XmlComponent } from '../../../xml-components';
import { MathComponent } from '../math-component';
export type IMathFractionOptions = {
readonly numerator: readonly MathComponent[];
readonly denominator: readonly MathComponent[];
};
export declare class MathFraction extends XmlComponent {
constructor(options: IMathFractionOptions);
}
@@ -0,0 +1 @@
export {};
@@ -0,0 +1,5 @@
import { XmlComponent } from '../../../xml-components';
import { MathComponent } from '../math-component';
export declare class MathNumerator extends XmlComponent {
constructor(children: readonly MathComponent[]);
}
@@ -0,0 +1 @@
export {};
+3
View File
@@ -0,0 +1,3 @@
export * from './math-function';
export * from './math-function-name';
export * from './math-function-properties';
@@ -0,0 +1,5 @@
import { XmlComponent } from '../../../xml-components';
import { MathComponent } from '../math-component';
export declare class MathFunctionName extends XmlComponent {
constructor(children: readonly MathComponent[]);
}
@@ -0,0 +1 @@
export {};
@@ -0,0 +1,4 @@
import { XmlComponent } from '../../../xml-components';
export declare class MathFunctionProperties extends XmlComponent {
constructor();
}
@@ -0,0 +1 @@
export {};
@@ -0,0 +1,9 @@
import { XmlComponent } from '../../../xml-components';
import { MathComponent } from '../math-component';
export type IMathFunctionOptions = {
readonly children: readonly MathComponent[];
readonly name: readonly MathComponent[];
};
export declare class MathFunction extends XmlComponent {
constructor(options: IMathFunctionOptions);
}
@@ -0,0 +1 @@
export {};
+9
View File
@@ -0,0 +1,9 @@
export * from './math';
export * from './math-run';
export * from './fraction';
export * from './n-ary';
export * from './script';
export * from './math-component';
export * from './radical';
export * from './function';
export * from './brackets';
+9
View File
@@ -0,0 +1,9 @@
import { MathAngledBrackets, MathCurlyBrackets, MathRoundBrackets, MathSquareBrackets } from './brackets';
import { MathFraction } from './fraction';
import { MathFunction } from './function';
import { MathRun } from './math-run';
import { MathIntegral, MathSum } from './n-ary';
import { MathRadical } from './radical';
import { MathSubScript, MathSubSuperScript, MathSuperScript } from './script';
export type MathComponent = MathRun | MathFraction | MathSum | MathIntegral | MathSuperScript | MathSubScript | MathSubSuperScript | MathRadical | MathFunction | MathRoundBrackets | MathCurlyBrackets | MathAngledBrackets | MathSquareBrackets;
export declare const WORKAROUND4 = "";
+4
View File
@@ -0,0 +1,4 @@
import { XmlComponent } from '../../xml-components';
export declare class MathRun extends XmlComponent {
constructor(text: string);
}
+1
View File
@@ -0,0 +1 @@
export {};
+4
View File
@@ -0,0 +1,4 @@
import { XmlComponent } from '../../xml-components';
export declare class MathText extends XmlComponent {
constructor(text: string);
}
+1
View File
@@ -0,0 +1 @@
export {};
+8
View File
@@ -0,0 +1,8 @@
import { XmlComponent } from '../../xml-components';
import { MathComponent } from './math-component';
export type IMathOptions = {
readonly children: readonly MathComponent[];
};
export declare class Math extends XmlComponent {
constructor(options: IMathOptions);
}
+1
View File
@@ -0,0 +1 @@
export {};
+11
View File
@@ -0,0 +1,11 @@
export * from './math-accent-character';
export * from './math-base';
export * from './math-limit-location';
export * from './math-n-ary-properties';
export * from './math-sub-script';
export * from './math-sum';
export * from './math-integral';
export * from './math-super-script';
export * from './math-limit';
export * from './math-limit-upper';
export * from './math-limit-lower';
@@ -0,0 +1,6 @@
import { XmlComponent } from '../../../xml-components';
type MathAccentCharacterOptions = {
readonly accent: string;
};
export declare const createMathAccentCharacter: ({ accent }: MathAccentCharacterOptions) => XmlComponent;
export {};
@@ -0,0 +1 @@
export {};
+7
View File
@@ -0,0 +1,7 @@
import { XmlComponent } from '../../../xml-components';
import { MathComponent } from '../math-component';
type MathBaseOptions = {
readonly children: readonly MathComponent[];
};
export declare const createMathBase: ({ children }: MathBaseOptions) => XmlComponent;
export {};
+1
View File
@@ -0,0 +1 @@
export {};
+10
View File
@@ -0,0 +1,10 @@
import { XmlComponent } from '../../../xml-components';
import { MathComponent } from '../math-component';
export type IMathIntegralOptions = {
readonly children: readonly MathComponent[];
readonly subScript?: readonly MathComponent[];
readonly superScript?: readonly MathComponent[];
};
export declare class MathIntegral extends XmlComponent {
constructor(options: IMathIntegralOptions);
}
@@ -0,0 +1 @@
export {};
@@ -0,0 +1,6 @@
import { XmlComponent } from '../../../xml-components';
type MathLimitLocationOptions = {
readonly value?: string;
};
export declare const createMathLimitLocation: ({ value }: MathLimitLocationOptions) => XmlComponent;
export {};
@@ -0,0 +1 @@
export {};
@@ -0,0 +1,9 @@
import { XmlComponent } from '../../../xml-components';
import { MathComponent } from '../math-component';
export type IMathLimitLowerOptions = {
readonly children: readonly MathComponent[];
readonly limit: readonly MathComponent[];
};
export declare class MathLimitLower extends XmlComponent {
constructor(options: IMathLimitLowerOptions);
}
@@ -0,0 +1 @@
export {};
@@ -0,0 +1,9 @@
import { XmlComponent } from '../../../xml-components';
import { MathComponent } from '../math-component';
export type IMathLimitUpperOptions = {
readonly children: readonly MathComponent[];
readonly limit: readonly MathComponent[];
};
export declare class MathLimitUpper extends XmlComponent {
constructor(options: IMathLimitUpperOptions);
}
@@ -0,0 +1 @@
export {};
+5
View File
@@ -0,0 +1,5 @@
import { XmlComponent } from '../../../xml-components';
import { MathComponent } from '../math-component';
export declare class MathLimit extends XmlComponent {
constructor(children: readonly MathComponent[]);
}
@@ -0,0 +1 @@
export {};
@@ -0,0 +1,9 @@
import { XmlComponent } from '../../../xml-components';
type MathNAryPropertiesOptions = {
readonly accent: string;
readonly hasSuperScript: boolean;
readonly hasSubScript: boolean;
readonly limitLocationVal?: string;
};
export declare const createMathNAryProperties: ({ accent, hasSuperScript, hasSubScript, limitLocationVal, }: MathNAryPropertiesOptions) => XmlComponent;
export {};
@@ -0,0 +1 @@
export {};
@@ -0,0 +1,2 @@
import { XmlComponent } from '../../../xml-components';
export declare const createMathSubScriptHide: () => XmlComponent;
@@ -0,0 +1 @@
export {};
@@ -0,0 +1,7 @@
import { XmlComponent } from '../../../xml-components';
import { MathComponent } from '../math-component';
type MathSubScriptElementOptions = {
readonly children: readonly MathComponent[];
};
export declare const createMathSubScriptElement: ({ children }: MathSubScriptElementOptions) => XmlComponent;
export {};
@@ -0,0 +1 @@
export {};
+10
View File
@@ -0,0 +1,10 @@
import { XmlComponent } from '../../../xml-components';
import { MathComponent } from '../math-component';
export type IMathSumOptions = {
readonly children: readonly MathComponent[];
readonly subScript?: readonly MathComponent[];
readonly superScript?: readonly MathComponent[];
};
export declare class MathSum extends XmlComponent {
constructor(options: IMathSumOptions);
}
+1
View File
@@ -0,0 +1 @@
export {};
@@ -0,0 +1,2 @@
import { XmlComponent } from '../../../xml-components';
export declare const createMathSuperScriptHide: () => XmlComponent;
@@ -0,0 +1 @@
export {};
@@ -0,0 +1,7 @@
import { XmlComponent } from '../../../xml-components';
import { MathComponent } from '../math-component';
type MathSuperScriptElementOptions = {
readonly children: readonly MathComponent[];
};
export declare const createMathSuperScriptElement: ({ children }: MathSuperScriptElementOptions) => XmlComponent;
export {};
@@ -0,0 +1 @@
export {};
+3
View File
@@ -0,0 +1,3 @@
export * from './math-degree';
export * from './math-radical';
export * from './math-radical-properties';
@@ -0,0 +1,4 @@
import { XmlComponent } from '../../../xml-components';
export declare class MathDegreeHide extends XmlComponent {
constructor();
}
@@ -0,0 +1 @@
export {};
+5
View File
@@ -0,0 +1,5 @@
import { XmlComponent } from '../../../xml-components';
import { MathComponent } from '../math-component';
export declare class MathDegree extends XmlComponent {
constructor(children?: readonly MathComponent[]);
}
@@ -0,0 +1 @@
export {};
@@ -0,0 +1,4 @@
import { XmlComponent } from '../../../xml-components';
export declare class MathRadicalProperties extends XmlComponent {
constructor(hasDegree: boolean);
}
@@ -0,0 +1 @@
export {};
+9
View File
@@ -0,0 +1,9 @@
import { XmlComponent } from '../../../xml-components';
import { MathComponent } from '../math-component';
export type IMathRadicalOptions = {
readonly children: readonly MathComponent[];
readonly degree?: readonly MathComponent[];
};
export declare class MathRadical extends XmlComponent {
constructor(options: IMathRadicalOptions);
}
@@ -0,0 +1 @@
export {};
+4
View File
@@ -0,0 +1,4 @@
export * from './super-script';
export * from './sub-script';
export * from './sub-super-script';
export * from './pre-sub-super-script';
@@ -0,0 +1,2 @@
export * from './math-pre-sub-super-script-function';
export * from './math-pre-sub-super-script-function-properties';
@@ -0,0 +1,2 @@
import { XmlComponent } from '../../../../xml-components';
export declare const createMathPreSubSuperScriptProperties: () => XmlComponent;
@@ -0,0 +1,10 @@
import { BuilderElement } from '../../../../xml-components';
import { MathComponent } from '../../math-component';
export type IMathPreSubSuperScriptOptions = {
readonly children: readonly MathComponent[];
readonly subScript: readonly MathComponent[];
readonly superScript: readonly MathComponent[];
};
export declare class MathPreSubSuperScript extends BuilderElement {
constructor({ children, subScript, superScript }: IMathPreSubSuperScriptOptions);
}
@@ -0,0 +1,2 @@
export * from './math-sub-script-function';
export * from './math-sub-script-function-properties';
@@ -0,0 +1,2 @@
import { XmlComponent } from '../../../../xml-components';
export declare const createMathSubScriptProperties: () => XmlComponent;
@@ -0,0 +1 @@
export {};
@@ -0,0 +1,9 @@
import { XmlComponent } from '../../../../xml-components';
import { MathComponent } from '../../math-component';
export type IMathSubScriptOptions = {
readonly children: readonly MathComponent[];
readonly subScript: readonly MathComponent[];
};
export declare class MathSubScript extends XmlComponent {
constructor(options: IMathSubScriptOptions);
}
@@ -0,0 +1 @@
export {};
@@ -0,0 +1,2 @@
export * from './math-sub-super-script-function';
export * from './math-sub-super-script-function-properties';
@@ -0,0 +1,2 @@
import { XmlComponent } from '../../../../xml-components';
export declare const createMathSubSuperScriptProperties: () => XmlComponent;
@@ -0,0 +1,10 @@
import { XmlComponent } from '../../../../xml-components';
import { MathComponent } from '../../math-component';
export type IMathSubSuperScriptOptions = {
readonly children: readonly MathComponent[];
readonly subScript: readonly MathComponent[];
readonly superScript: readonly MathComponent[];
};
export declare class MathSubSuperScript extends XmlComponent {
constructor(options: IMathSubSuperScriptOptions);
}
@@ -0,0 +1,2 @@
export * from './math-super-script-function';
export * from './math-super-script-function-properties';
@@ -0,0 +1,2 @@
import { XmlComponent } from '../../../../xml-components';
export declare const createMathSuperScriptProperties: () => XmlComponent;
@@ -0,0 +1,9 @@
import { XmlComponent } from '../../../../xml-components';
import { MathComponent } from '../../math-component';
export type IMathSuperScriptOptions = {
readonly children: readonly MathComponent[];
readonly superScript: readonly MathComponent[];
};
export declare class MathSuperScript extends XmlComponent {
constructor(options: IMathSuperScriptOptions);
}
@@ -0,0 +1 @@
export {};