Fix App.jsx two-page workflow JSX render and update study app layout
This commit is contained in:
+2
@@ -0,0 +1,2 @@
|
||||
export * from './math-bar';
|
||||
export * from './math-bar-properties';
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
import { XmlComponent } from '../../../xml-components';
|
||||
type MathBarPosOptions = {
|
||||
readonly val: string;
|
||||
};
|
||||
export declare const createMathBarPos: ({ val }: MathBarPosOptions) => XmlComponent;
|
||||
export {};
|
||||
+4
@@ -0,0 +1,4 @@
|
||||
import { XmlComponent } from '../../../xml-components';
|
||||
export declare const createMathBarProperties: ({ type }: {
|
||||
readonly type: string;
|
||||
}) => XmlComponent;
|
||||
+1
@@ -0,0 +1 @@
|
||||
export {};
|
||||
+8
@@ -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
@@ -0,0 +1 @@
|
||||
export {};
|
||||
+4
@@ -0,0 +1,4 @@
|
||||
export * from './math-round-brackets';
|
||||
export * from './math-square-brackets';
|
||||
export * from './math-curly-brackets';
|
||||
export * from './math-angled-brackets';
|
||||
+9
@@ -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 {};
|
||||
Generated
Vendored
+1
@@ -0,0 +1 @@
|
||||
export {};
|
||||
Generated
Vendored
+6
@@ -0,0 +1,6 @@
|
||||
import { XmlComponent } from '../../../xml-components';
|
||||
type MathBeginningCharacterOptions = {
|
||||
readonly character: string;
|
||||
};
|
||||
export declare const createMathBeginningCharacter: ({ character }: MathBeginningCharacterOptions) => XmlComponent;
|
||||
export {};
|
||||
Generated
Vendored
+1
@@ -0,0 +1 @@
|
||||
export {};
|
||||
+9
@@ -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 {};
|
||||
Generated
Vendored
+1
@@ -0,0 +1 @@
|
||||
export {};
|
||||
+7
@@ -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[];
|
||||
});
|
||||
}
|
||||
Generated
Vendored
+1
@@ -0,0 +1 @@
|
||||
export {};
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
import { XmlComponent } from '../../../xml-components';
|
||||
type MathEndingCharacterOptions = {
|
||||
readonly character: string;
|
||||
};
|
||||
export declare const createMathEndingCharacter: ({ character }: MathEndingCharacterOptions) => XmlComponent;
|
||||
export {};
|
||||
Generated
Vendored
+1
@@ -0,0 +1 @@
|
||||
export {};
|
||||
+7
@@ -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[];
|
||||
});
|
||||
}
|
||||
Generated
Vendored
+1
@@ -0,0 +1 @@
|
||||
export {};
|
||||
+7
@@ -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[];
|
||||
});
|
||||
}
|
||||
Generated
Vendored
+1
@@ -0,0 +1 @@
|
||||
export {};
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
export * from './math-fraction';
|
||||
export * from './math-denominator';
|
||||
export * from './math-numerator';
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
import { XmlComponent } from '../../../xml-components';
|
||||
import { MathComponent } from '../math-component';
|
||||
export declare class MathDenominator extends XmlComponent {
|
||||
constructor(children: readonly MathComponent[]);
|
||||
}
|
||||
+1
@@ -0,0 +1 @@
|
||||
export {};
|
||||
+9
@@ -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);
|
||||
}
|
||||
+1
@@ -0,0 +1 @@
|
||||
export {};
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
import { XmlComponent } from '../../../xml-components';
|
||||
import { MathComponent } from '../math-component';
|
||||
export declare class MathNumerator extends XmlComponent {
|
||||
constructor(children: readonly MathComponent[]);
|
||||
}
|
||||
+1
@@ -0,0 +1 @@
|
||||
export {};
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
export * from './math-function';
|
||||
export * from './math-function-name';
|
||||
export * from './math-function-properties';
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
import { XmlComponent } from '../../../xml-components';
|
||||
import { MathComponent } from '../math-component';
|
||||
export declare class MathFunctionName extends XmlComponent {
|
||||
constructor(children: readonly MathComponent[]);
|
||||
}
|
||||
+1
@@ -0,0 +1 @@
|
||||
export {};
|
||||
Generated
Vendored
+4
@@ -0,0 +1,4 @@
|
||||
import { XmlComponent } from '../../../xml-components';
|
||||
export declare class MathFunctionProperties extends XmlComponent {
|
||||
constructor();
|
||||
}
|
||||
Generated
Vendored
+1
@@ -0,0 +1 @@
|
||||
export {};
|
||||
+9
@@ -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);
|
||||
}
|
||||
+1
@@ -0,0 +1 @@
|
||||
export {};
|
||||
+9
@@ -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
@@ -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
@@ -0,0 +1,4 @@
|
||||
import { XmlComponent } from '../../xml-components';
|
||||
export declare class MathRun extends XmlComponent {
|
||||
constructor(text: string);
|
||||
}
|
||||
+1
@@ -0,0 +1 @@
|
||||
export {};
|
||||
+4
@@ -0,0 +1,4 @@
|
||||
import { XmlComponent } from '../../xml-components';
|
||||
export declare class MathText extends XmlComponent {
|
||||
constructor(text: string);
|
||||
}
|
||||
+1
@@ -0,0 +1 @@
|
||||
export {};
|
||||
+8
@@ -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
@@ -0,0 +1 @@
|
||||
export {};
|
||||
+11
@@ -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';
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
import { XmlComponent } from '../../../xml-components';
|
||||
type MathAccentCharacterOptions = {
|
||||
readonly accent: string;
|
||||
};
|
||||
export declare const createMathAccentCharacter: ({ accent }: MathAccentCharacterOptions) => XmlComponent;
|
||||
export {};
|
||||
+1
@@ -0,0 +1 @@
|
||||
export {};
|
||||
+7
@@ -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
@@ -0,0 +1 @@
|
||||
export {};
|
||||
+10
@@ -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);
|
||||
}
|
||||
+1
@@ -0,0 +1 @@
|
||||
export {};
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
import { XmlComponent } from '../../../xml-components';
|
||||
type MathLimitLocationOptions = {
|
||||
readonly value?: string;
|
||||
};
|
||||
export declare const createMathLimitLocation: ({ value }: MathLimitLocationOptions) => XmlComponent;
|
||||
export {};
|
||||
+1
@@ -0,0 +1 @@
|
||||
export {};
|
||||
+9
@@ -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);
|
||||
}
|
||||
+1
@@ -0,0 +1 @@
|
||||
export {};
|
||||
+9
@@ -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);
|
||||
}
|
||||
+1
@@ -0,0 +1 @@
|
||||
export {};
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
import { XmlComponent } from '../../../xml-components';
|
||||
import { MathComponent } from '../math-component';
|
||||
export declare class MathLimit extends XmlComponent {
|
||||
constructor(children: readonly MathComponent[]);
|
||||
}
|
||||
+1
@@ -0,0 +1 @@
|
||||
export {};
|
||||
+9
@@ -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 {};
|
||||
+1
@@ -0,0 +1 @@
|
||||
export {};
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
import { XmlComponent } from '../../../xml-components';
|
||||
export declare const createMathSubScriptHide: () => XmlComponent;
|
||||
+1
@@ -0,0 +1 @@
|
||||
export {};
|
||||
+7
@@ -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 {};
|
||||
+1
@@ -0,0 +1 @@
|
||||
export {};
|
||||
+10
@@ -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
@@ -0,0 +1 @@
|
||||
export {};
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
import { XmlComponent } from '../../../xml-components';
|
||||
export declare const createMathSuperScriptHide: () => XmlComponent;
|
||||
Generated
Vendored
+1
@@ -0,0 +1 @@
|
||||
export {};
|
||||
+7
@@ -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 {};
|
||||
+1
@@ -0,0 +1 @@
|
||||
export {};
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
export * from './math-degree';
|
||||
export * from './math-radical';
|
||||
export * from './math-radical-properties';
|
||||
+4
@@ -0,0 +1,4 @@
|
||||
import { XmlComponent } from '../../../xml-components';
|
||||
export declare class MathDegreeHide extends XmlComponent {
|
||||
constructor();
|
||||
}
|
||||
+1
@@ -0,0 +1 @@
|
||||
export {};
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
import { XmlComponent } from '../../../xml-components';
|
||||
import { MathComponent } from '../math-component';
|
||||
export declare class MathDegree extends XmlComponent {
|
||||
constructor(children?: readonly MathComponent[]);
|
||||
}
|
||||
+1
@@ -0,0 +1 @@
|
||||
export {};
|
||||
+4
@@ -0,0 +1,4 @@
|
||||
import { XmlComponent } from '../../../xml-components';
|
||||
export declare class MathRadicalProperties extends XmlComponent {
|
||||
constructor(hasDegree: boolean);
|
||||
}
|
||||
Generated
Vendored
+1
@@ -0,0 +1 @@
|
||||
export {};
|
||||
+9
@@ -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);
|
||||
}
|
||||
+1
@@ -0,0 +1 @@
|
||||
export {};
|
||||
+4
@@ -0,0 +1,4 @@
|
||||
export * from './super-script';
|
||||
export * from './sub-script';
|
||||
export * from './sub-super-script';
|
||||
export * from './pre-sub-super-script';
|
||||
Generated
Vendored
+2
@@ -0,0 +1,2 @@
|
||||
export * from './math-pre-sub-super-script-function';
|
||||
export * from './math-pre-sub-super-script-function-properties';
|
||||
Generated
Vendored
+2
@@ -0,0 +1,2 @@
|
||||
import { XmlComponent } from '../../../../xml-components';
|
||||
export declare const createMathPreSubSuperScriptProperties: () => XmlComponent;
|
||||
Generated
Vendored
+1
@@ -0,0 +1 @@
|
||||
export {};
|
||||
Generated
Vendored
+10
@@ -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);
|
||||
}
|
||||
Generated
Vendored
+1
@@ -0,0 +1 @@
|
||||
export {};
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
export * from './math-sub-script-function';
|
||||
export * from './math-sub-script-function-properties';
|
||||
Generated
Vendored
+2
@@ -0,0 +1,2 @@
|
||||
import { XmlComponent } from '../../../../xml-components';
|
||||
export declare const createMathSubScriptProperties: () => XmlComponent;
|
||||
Generated
Vendored
+1
@@ -0,0 +1 @@
|
||||
export {};
|
||||
Generated
Vendored
+9
@@ -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);
|
||||
}
|
||||
Generated
Vendored
+1
@@ -0,0 +1 @@
|
||||
export {};
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
export * from './math-sub-super-script-function';
|
||||
export * from './math-sub-super-script-function-properties';
|
||||
Generated
Vendored
+2
@@ -0,0 +1,2 @@
|
||||
import { XmlComponent } from '../../../../xml-components';
|
||||
export declare const createMathSubSuperScriptProperties: () => XmlComponent;
|
||||
Generated
Vendored
+1
@@ -0,0 +1 @@
|
||||
export {};
|
||||
Generated
Vendored
+10
@@ -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);
|
||||
}
|
||||
Generated
Vendored
+1
@@ -0,0 +1 @@
|
||||
export {};
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
export * from './math-super-script-function';
|
||||
export * from './math-super-script-function-properties';
|
||||
Generated
Vendored
+2
@@ -0,0 +1,2 @@
|
||||
import { XmlComponent } from '../../../../xml-components';
|
||||
export declare const createMathSuperScriptProperties: () => XmlComponent;
|
||||
Generated
Vendored
+1
@@ -0,0 +1 @@
|
||||
export {};
|
||||
Generated
Vendored
+9
@@ -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);
|
||||
}
|
||||
Generated
Vendored
+1
@@ -0,0 +1 @@
|
||||
export {};
|
||||
Reference in New Issue
Block a user