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
+5
View File
@@ -0,0 +1,5 @@
export * from './text-wrapping';
export * from './wrap-none';
export * from './wrap-square';
export * from './wrap-tight';
export * from './wrap-top-and-bottom';
+18
View File
@@ -0,0 +1,18 @@
import { IDistance } from '../drawing';
export declare const TextWrappingType: {
readonly NONE: 0;
readonly SQUARE: 1;
readonly TIGHT: 2;
readonly TOP_AND_BOTTOM: 3;
};
export declare const TextWrappingSide: {
readonly BOTH_SIDES: "bothSides";
readonly LEFT: "left";
readonly RIGHT: "right";
readonly LARGEST: "largest";
};
export type ITextWrapping = {
readonly type: (typeof TextWrappingType)[keyof typeof TextWrappingType];
readonly side?: (typeof TextWrappingSide)[keyof typeof TextWrappingSide];
readonly margins?: IDistance;
};
+2
View File
@@ -0,0 +1,2 @@
import { XmlComponent } from '../../xml-components';
export declare const createWrapNone: () => XmlComponent;
+4
View File
@@ -0,0 +1,4 @@
import { XmlComponent } from '../../xml-components';
import { IMargins } from '../floating';
import { ITextWrapping } from './text-wrapping';
export declare const createWrapSquare: (textWrapping: ITextWrapping, margins?: IMargins) => XmlComponent;
+3
View File
@@ -0,0 +1,3 @@
import { XmlComponent } from '../../xml-components';
import { IMargins } from '../floating';
export declare const createWrapTight: (margins?: IMargins) => XmlComponent;
@@ -0,0 +1,3 @@
import { XmlComponent } from '../../xml-components';
import { IMargins } from '../floating';
export declare const createWrapTopAndBottom: (margins?: IMargins) => XmlComponent;