Fix App.jsx two-page workflow JSX render and update study app layout
This commit is contained in:
+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 {};
|
||||
Reference in New Issue
Block a user