Fix App.jsx two-page workflow JSX render and update study app layout
This commit is contained in:
+17
@@ -0,0 +1,17 @@
|
||||
import { XmlComponent } from '../../xml-components';
|
||||
export declare const AlignmentType: {
|
||||
readonly START: "start";
|
||||
readonly CENTER: "center";
|
||||
readonly END: "end";
|
||||
readonly BOTH: "both";
|
||||
readonly MEDIUM_KASHIDA: "mediumKashida";
|
||||
readonly DISTRIBUTE: "distribute";
|
||||
readonly NUM_TAB: "numTab";
|
||||
readonly HIGH_KASHIDA: "highKashida";
|
||||
readonly LOW_KASHIDA: "lowKashida";
|
||||
readonly THAI_DISTRIBUTE: "thaiDistribute";
|
||||
readonly LEFT: "left";
|
||||
readonly RIGHT: "right";
|
||||
readonly JUSTIFIED: "both";
|
||||
};
|
||||
export declare const createAlignment: (type: (typeof AlignmentType)[keyof typeof AlignmentType]) => XmlComponent;
|
||||
+1
@@ -0,0 +1 @@
|
||||
export {};
|
||||
+15
@@ -0,0 +1,15 @@
|
||||
import { IBorderOptions } from '../../border';
|
||||
import { IgnoreIfEmptyXmlComponent, XmlComponent } from '../../xml-components';
|
||||
export type IBordersOptions = {
|
||||
readonly top?: IBorderOptions;
|
||||
readonly bottom?: IBorderOptions;
|
||||
readonly left?: IBorderOptions;
|
||||
readonly right?: IBorderOptions;
|
||||
readonly between?: IBorderOptions;
|
||||
};
|
||||
export declare class Border extends IgnoreIfEmptyXmlComponent {
|
||||
constructor(options: IBordersOptions);
|
||||
}
|
||||
export declare class ThematicBreak extends XmlComponent {
|
||||
constructor();
|
||||
}
|
||||
+1
@@ -0,0 +1 @@
|
||||
export {};
|
||||
+11
@@ -0,0 +1,11 @@
|
||||
import { XmlComponent } from '../../xml-components';
|
||||
import { Run } from '../run';
|
||||
export declare class PageBreak extends Run {
|
||||
constructor();
|
||||
}
|
||||
export declare class ColumnBreak extends Run {
|
||||
constructor();
|
||||
}
|
||||
export declare class PageBreakBefore extends XmlComponent {
|
||||
constructor();
|
||||
}
|
||||
+1
@@ -0,0 +1 @@
|
||||
export {};
|
||||
+12
@@ -0,0 +1,12 @@
|
||||
import { XmlComponent } from '../../xml-components';
|
||||
import { PositiveUniversalMeasure, UniversalMeasure } from '../../../util/values';
|
||||
export type IIndentAttributesProperties = {
|
||||
readonly start?: number | UniversalMeasure;
|
||||
readonly end?: number | UniversalMeasure;
|
||||
readonly left?: number | UniversalMeasure;
|
||||
readonly right?: number | UniversalMeasure;
|
||||
readonly hanging?: number | PositiveUniversalMeasure;
|
||||
readonly firstLine?: number | PositiveUniversalMeasure;
|
||||
readonly firstLineChars?: number;
|
||||
};
|
||||
export declare const createIndent: ({ start, end, left, right, hanging, firstLine, firstLineChars }: IIndentAttributesProperties) => XmlComponent;
|
||||
+1
@@ -0,0 +1 @@
|
||||
export {};
|
||||
+8
@@ -0,0 +1,8 @@
|
||||
export * from './alignment';
|
||||
export * from './border';
|
||||
export * from './indent';
|
||||
export * from './break';
|
||||
export * from './spacing';
|
||||
export * from './style';
|
||||
export * from './tab-stop';
|
||||
export * from './unordered-list';
|
||||
+16
@@ -0,0 +1,16 @@
|
||||
import { XmlComponent } from '../../xml-components';
|
||||
export declare const LineRuleType: {
|
||||
readonly AT_LEAST: "atLeast";
|
||||
readonly EXACTLY: "exactly";
|
||||
readonly EXACT: "exact";
|
||||
readonly AUTO: "auto";
|
||||
};
|
||||
export type ISpacingProperties = {
|
||||
readonly after?: number;
|
||||
readonly before?: number;
|
||||
readonly line?: number;
|
||||
readonly lineRule?: (typeof LineRuleType)[keyof typeof LineRuleType];
|
||||
readonly beforeAutoSpacing?: boolean;
|
||||
readonly afterAutoSpacing?: boolean;
|
||||
};
|
||||
export declare const createSpacing: ({ after, before, line, lineRule, beforeAutoSpacing, afterAutoSpacing }: ISpacingProperties) => XmlComponent;
|
||||
+1
@@ -0,0 +1 @@
|
||||
export {};
|
||||
+11
@@ -0,0 +1,11 @@
|
||||
import { XmlComponent } from '../../xml-components';
|
||||
export declare const HeadingLevel: {
|
||||
readonly HEADING_1: "Heading1";
|
||||
readonly HEADING_2: "Heading2";
|
||||
readonly HEADING_3: "Heading3";
|
||||
readonly HEADING_4: "Heading4";
|
||||
readonly HEADING_5: "Heading5";
|
||||
readonly HEADING_6: "Heading6";
|
||||
readonly TITLE: "Title";
|
||||
};
|
||||
export declare const createParagraphStyle: (styleId: string) => XmlComponent;
|
||||
+1
@@ -0,0 +1 @@
|
||||
export {};
|
||||
+29
@@ -0,0 +1,29 @@
|
||||
import { XmlComponent } from '../../xml-components';
|
||||
export type TabStopDefinition = {
|
||||
readonly type: (typeof TabStopType)[keyof typeof TabStopType];
|
||||
readonly position: number | (typeof TabStopPosition)[keyof typeof TabStopPosition];
|
||||
readonly leader?: (typeof LeaderType)[keyof typeof LeaderType];
|
||||
};
|
||||
export declare const TabStopType: {
|
||||
readonly LEFT: "left";
|
||||
readonly RIGHT: "right";
|
||||
readonly CENTER: "center";
|
||||
readonly BAR: "bar";
|
||||
readonly CLEAR: "clear";
|
||||
readonly DECIMAL: "decimal";
|
||||
readonly END: "end";
|
||||
readonly NUM: "num";
|
||||
readonly START: "start";
|
||||
};
|
||||
export declare const LeaderType: {
|
||||
readonly DOT: "dot";
|
||||
readonly HYPHEN: "hyphen";
|
||||
readonly MIDDLE_DOT: "middleDot";
|
||||
readonly NONE: "none";
|
||||
readonly UNDERSCORE: "underscore";
|
||||
};
|
||||
export declare const TabStopPosition: {
|
||||
readonly MAX: 9026;
|
||||
};
|
||||
export declare const createTabStopItem: ({ type, position, leader }: TabStopDefinition) => XmlComponent;
|
||||
export declare const createTabStop: (tabDefinitions: readonly TabStopDefinition[]) => XmlComponent;
|
||||
+1
@@ -0,0 +1 @@
|
||||
export {};
|
||||
+4
@@ -0,0 +1,4 @@
|
||||
import { XmlComponent } from '../../xml-components';
|
||||
export declare class NumberProperties extends XmlComponent {
|
||||
constructor(numberId: number | string, indentLevel: number);
|
||||
}
|
||||
+1
@@ -0,0 +1 @@
|
||||
export {};
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
import { XmlComponent } from '../../xml-components';
|
||||
export declare const createWordWrap: () => XmlComponent;
|
||||
+1
@@ -0,0 +1 @@
|
||||
export {};
|
||||
Reference in New Issue
Block a user