Fix App.jsx two-page workflow JSX render and update study app layout
This commit is contained in:
+8
@@ -0,0 +1,8 @@
|
||||
import { XmlAttributeComponent } from '../xml-components';
|
||||
export declare class RelationshipsAttributes extends XmlAttributeComponent<{
|
||||
readonly xmlns: string;
|
||||
}> {
|
||||
protected readonly xmlKeys: {
|
||||
xmlns: string;
|
||||
};
|
||||
}
|
||||
+1
@@ -0,0 +1 @@
|
||||
export * from './relationships';
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
import { XmlComponent } from '../../xml-components';
|
||||
export type RelationshipType = "http://schemas.openxmlformats.org/officeDocument/2006/relationships/image" | "http://schemas.openxmlformats.org/officeDocument/2006/relationships/theme" | "http://schemas.openxmlformats.org/officeDocument/2006/relationships/settings" | "http://schemas.openxmlformats.org/officeDocument/2006/relationships/styles" | "http://schemas.openxmlformats.org/officeDocument/2006/relationships/fontTable" | "http://schemas.openxmlformats.org/officeDocument/2006/relationships/webSettings" | "http://schemas.openxmlformats.org/officeDocument/2006/relationships/numbering" | "http://schemas.openxmlformats.org/officeDocument/2006/relationships/header" | "http://schemas.openxmlformats.org/officeDocument/2006/relationships/footer" | "http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument" | "http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties" | "http://schemas.openxmlformats.org/officeDocument/2006/relationships/custom-properties" | "http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties" | "http://schemas.openxmlformats.org/officeDocument/2006/relationships/hyperlink" | "http://schemas.openxmlformats.org/officeDocument/2006/relationships/footnotes" | "http://schemas.openxmlformats.org/officeDocument/2006/relationships/endnotes" | "http://schemas.openxmlformats.org/officeDocument/2006/relationships/comments" | "http://schemas.microsoft.com/office/2011/relationships/commentsExtended" | "http://schemas.openxmlformats.org/officeDocument/2006/relationships/font";
|
||||
export declare const TargetModeType: {
|
||||
readonly EXTERNAL: "External";
|
||||
};
|
||||
export declare const createRelationship: (id: string, type: RelationshipType, target: string, targetMode?: (typeof TargetModeType)[keyof typeof TargetModeType]) => XmlComponent;
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
import { XmlComponent } from '../xml-components';
|
||||
import { RelationshipType, TargetModeType } from './relationship/relationship';
|
||||
export declare class Relationships extends XmlComponent {
|
||||
constructor();
|
||||
addRelationship(id: number | string, type: RelationshipType, target: string, targetMode?: (typeof TargetModeType)[keyof typeof TargetModeType]): void;
|
||||
get RelationshipCount(): number;
|
||||
}
|
||||
+1
@@ -0,0 +1 @@
|
||||
export {};
|
||||
Reference in New Issue
Block a user