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
+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 {};