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
+73
View File
@@ -0,0 +1,73 @@
import { XmlAttributeComponent } from '../xml-components';
export type IHeaderAttributesProperties = {
readonly wpc?: string;
readonly mc?: string;
readonly o?: string;
readonly r?: string;
readonly m?: string;
readonly v?: string;
readonly wp14?: string;
readonly wp?: string;
readonly w10?: string;
readonly w?: string;
readonly w14?: string;
readonly w15?: string;
readonly wpg?: string;
readonly wpi?: string;
readonly wne?: string;
readonly wps?: string;
readonly cp?: string;
readonly dc?: string;
readonly dcterms?: string;
readonly dcmitype?: string;
readonly xsi?: string;
readonly type?: string;
readonly cx?: string;
readonly cx1?: string;
readonly cx2?: string;
readonly cx3?: string;
readonly cx4?: string;
readonly cx5?: string;
readonly cx6?: string;
readonly cx7?: string;
readonly cx8?: string;
readonly w16cid: string;
readonly w16se: string;
};
export declare class HeaderAttributes extends XmlAttributeComponent<IHeaderAttributesProperties> {
protected readonly xmlKeys: {
wpc: string;
mc: string;
o: string;
r: string;
m: string;
v: string;
wp14: string;
wp: string;
w10: string;
w: string;
w14: string;
w15: string;
wpg: string;
wpi: string;
wne: string;
wps: string;
cp: string;
dc: string;
dcterms: string;
dcmitype: string;
xsi: string;
type: string;
cx: string;
cx1: string;
cx2: string;
cx3: string;
cx4: string;
cx5: string;
cx6: string;
cx7: string;
cx8: string;
w16cid: string;
w16se: string;
};
}
+9
View File
@@ -0,0 +1,9 @@
import { InitializableXmlComponent, XmlComponent } from '../xml-components';
import { Paragraph } from '../paragraph';
import { Table } from '../table';
export declare class Header extends InitializableXmlComponent {
private readonly refId;
constructor(referenceNumber: number, initContent?: XmlComponent);
get ReferenceId(): number;
add(item: Paragraph | Table): void;
}
+1
View File
@@ -0,0 +1 @@
export {};
+1
View File
@@ -0,0 +1 @@
export * from './header';