Fix App.jsx two-page workflow JSX render and update study app layout
This commit is contained in:
+12
@@ -0,0 +1,12 @@
|
||||
import { IRunStylePropertiesOptions } from '../../paragraph/run/properties';
|
||||
import { IStyleOptions, Style } from './style';
|
||||
export type IBaseCharacterStyleOptions = {
|
||||
readonly run?: IRunStylePropertiesOptions;
|
||||
} & IStyleOptions;
|
||||
export type ICharacterStyleOptions = {
|
||||
readonly id: string;
|
||||
} & IBaseCharacterStyleOptions;
|
||||
export declare class StyleForCharacter extends Style {
|
||||
private readonly runProperties;
|
||||
constructor(options: ICharacterStyleOptions);
|
||||
}
|
||||
+1
@@ -0,0 +1 @@
|
||||
export {};
|
||||
+11
@@ -0,0 +1,11 @@
|
||||
import { XmlComponent } from '../../xml-components';
|
||||
export declare class Name extends XmlComponent {
|
||||
constructor(value: string);
|
||||
}
|
||||
export declare class UiPriority extends XmlComponent {
|
||||
constructor(value: number);
|
||||
}
|
||||
export declare class TableProperties extends XmlComponent {
|
||||
}
|
||||
export declare class RsId extends XmlComponent {
|
||||
}
|
||||
+1
@@ -0,0 +1 @@
|
||||
export {};
|
||||
+53
@@ -0,0 +1,53 @@
|
||||
import { IBaseCharacterStyleOptions, StyleForCharacter } from './character-style';
|
||||
import { IBaseParagraphStyleOptions, IParagraphStyleOptions, StyleForParagraph } from './paragraph-style';
|
||||
export declare class HeadingStyle extends StyleForParagraph {
|
||||
constructor(options: IParagraphStyleOptions);
|
||||
}
|
||||
export declare class TitleStyle extends HeadingStyle {
|
||||
constructor(options: IBaseParagraphStyleOptions);
|
||||
}
|
||||
export declare class Heading1Style extends HeadingStyle {
|
||||
constructor(options: IBaseParagraphStyleOptions);
|
||||
}
|
||||
export declare class Heading2Style extends HeadingStyle {
|
||||
constructor(options: IBaseParagraphStyleOptions);
|
||||
}
|
||||
export declare class Heading3Style extends HeadingStyle {
|
||||
constructor(options: IBaseParagraphStyleOptions);
|
||||
}
|
||||
export declare class Heading4Style extends HeadingStyle {
|
||||
constructor(options: IBaseParagraphStyleOptions);
|
||||
}
|
||||
export declare class Heading5Style extends HeadingStyle {
|
||||
constructor(options: IBaseParagraphStyleOptions);
|
||||
}
|
||||
export declare class Heading6Style extends HeadingStyle {
|
||||
constructor(options: IBaseParagraphStyleOptions);
|
||||
}
|
||||
export declare class StrongStyle extends HeadingStyle {
|
||||
constructor(options: IBaseParagraphStyleOptions);
|
||||
}
|
||||
export declare class ListParagraph extends StyleForParagraph {
|
||||
constructor(options: IBaseParagraphStyleOptions);
|
||||
}
|
||||
export declare class FootnoteText extends StyleForParagraph {
|
||||
constructor(options: IBaseParagraphStyleOptions);
|
||||
}
|
||||
export declare class FootnoteReferenceStyle extends StyleForCharacter {
|
||||
constructor(options: IBaseCharacterStyleOptions);
|
||||
}
|
||||
export declare class FootnoteTextChar extends StyleForCharacter {
|
||||
constructor(options: IBaseCharacterStyleOptions);
|
||||
}
|
||||
export declare class EndnoteText extends StyleForParagraph {
|
||||
constructor(options: IBaseParagraphStyleOptions);
|
||||
}
|
||||
export declare class EndnoteReferenceStyle extends StyleForCharacter {
|
||||
constructor(options: IBaseCharacterStyleOptions);
|
||||
}
|
||||
export declare class EndnoteTextChar extends StyleForCharacter {
|
||||
constructor(options: IBaseCharacterStyleOptions);
|
||||
}
|
||||
export declare class HyperlinkStyle extends StyleForCharacter {
|
||||
constructor(options: IBaseCharacterStyleOptions);
|
||||
}
|
||||
+1
@@ -0,0 +1 @@
|
||||
export {};
|
||||
+4
@@ -0,0 +1,4 @@
|
||||
export * from './style';
|
||||
export * from './paragraph-style';
|
||||
export * from './character-style';
|
||||
export * from './default-styles';
|
||||
+14
@@ -0,0 +1,14 @@
|
||||
import { IParagraphStylePropertiesOptions, IRunStylePropertiesOptions } from '../../paragraph';
|
||||
import { IStyleOptions, Style } from './style';
|
||||
export type IBaseParagraphStyleOptions = {
|
||||
readonly paragraph?: IParagraphStylePropertiesOptions;
|
||||
readonly run?: IRunStylePropertiesOptions;
|
||||
} & IStyleOptions;
|
||||
export type IParagraphStyleOptions = {
|
||||
readonly id: string;
|
||||
} & IBaseParagraphStyleOptions;
|
||||
export declare class StyleForParagraph extends Style {
|
||||
private readonly paragraphProperties;
|
||||
private readonly runProperties;
|
||||
constructor(options: IParagraphStyleOptions);
|
||||
}
|
||||
+1
@@ -0,0 +1 @@
|
||||
export {};
|
||||
+20
@@ -0,0 +1,20 @@
|
||||
import { XmlComponent } from '../../xml-components';
|
||||
export type IStyleAttributes = {
|
||||
readonly type?: string;
|
||||
readonly styleId?: string;
|
||||
readonly default?: boolean;
|
||||
readonly customStyle?: string;
|
||||
};
|
||||
export type IStyleOptions = {
|
||||
readonly name?: string;
|
||||
readonly basedOn?: string;
|
||||
readonly next?: string;
|
||||
readonly link?: string;
|
||||
readonly uiPriority?: number;
|
||||
readonly semiHidden?: boolean;
|
||||
readonly unhideWhenUsed?: boolean;
|
||||
readonly quickFormat?: boolean;
|
||||
};
|
||||
export declare class Style extends XmlComponent {
|
||||
constructor(attributes: IStyleAttributes, options: IStyleOptions);
|
||||
}
|
||||
+1
@@ -0,0 +1 @@
|
||||
export {};
|
||||
Reference in New Issue
Block a user