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
+21
View File
@@ -0,0 +1,21 @@
import { BaseXmlComponent, IContext } from './base';
import { IXmlableObject } from './xmlable-object';
export type AttributeMap<T> = Record<keyof T, string>;
export type AttributeData = Record<string, boolean | number | string>;
export type AttributePayload<T> = {
readonly [P in keyof T]: {
readonly key: string;
readonly value: T[P];
};
};
export declare abstract class XmlAttributeComponent<T extends Record<string, any>> extends BaseXmlComponent {
private readonly root;
protected readonly xmlKeys?: AttributeMap<T>;
constructor(root: T);
prepForXml(_: IContext): IXmlableObject;
}
export declare class NextAttributeComponent<T extends AttributeData> extends BaseXmlComponent {
private readonly root;
constructor(root: AttributePayload<T>);
prepForXml(_: IContext): IXmlableObject;
}