lexgui 8.2.5 → 8.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/components/NodeTree.d.ts +51 -51
- package/build/components/Tabs.d.ts +1 -0
- package/build/core/Namespace.js +1 -1
- package/build/core/Namespace.js.map +1 -1
- package/build/extensions/AssetView.d.ts +138 -138
- package/build/extensions/AssetView.js +1433 -1433
- package/build/extensions/CodeEditor.d.ts +466 -363
- package/build/extensions/CodeEditor.js +3768 -4638
- package/build/extensions/CodeEditor.js.map +1 -1
- package/build/extensions/DocMaker.d.ts +28 -28
- package/build/extensions/DocMaker.js +363 -363
- package/build/extensions/Timeline.d.ts +2 -2
- package/build/extensions/Timeline.js +28 -15
- package/build/extensions/Timeline.js.map +1 -1
- package/build/extensions/VideoEditor.d.ts +1 -1
- package/build/extensions/VideoEditor.js +15 -7
- package/build/extensions/VideoEditor.js.map +1 -1
- package/build/extensions/index.js +1 -1
- package/build/lexgui.all.js +6169 -6960
- package/build/lexgui.all.js.map +1 -1
- package/build/lexgui.all.min.js +1 -1
- package/build/lexgui.all.module.js +6169 -6961
- package/build/lexgui.all.module.js.map +1 -1
- package/build/lexgui.all.module.min.js +1 -1
- package/build/lexgui.css +7534 -7459
- package/build/lexgui.js +4475 -205
- package/build/lexgui.js.map +1 -1
- package/build/lexgui.min.css +1 -1
- package/build/lexgui.min.js +1 -1
- package/build/lexgui.module.js +4475 -205
- package/build/lexgui.module.js.map +1 -1
- package/build/lexgui.module.min.js +1 -1
- package/changelog.md +31 -1
- package/examples/code-editor.html +88 -16
- package/package.json +1 -1
|
@@ -1,28 +1,28 @@
|
|
|
1
|
-
export declare class DocMaker {
|
|
2
|
-
root: Element;
|
|
3
|
-
_listQueued: Element | undefined;
|
|
4
|
-
_lastDomTarget: Element | undefined;
|
|
5
|
-
constructor(element?: Element);
|
|
6
|
-
setDomTarget(element: Element): void;
|
|
7
|
-
lineBreak(target?: Element): void;
|
|
8
|
-
header(string: string, type: string, id: string, options?: any): any;
|
|
9
|
-
paragraph(string: string, sup?: boolean, className?: string): HTMLElement | HTMLParagraphElement;
|
|
10
|
-
code(text: string, language?: string): HTMLDivElement;
|
|
11
|
-
list(list: any[], type: string, target?: Element, className?: string): HTMLUListElement | undefined;
|
|
12
|
-
bulletList(list: any[]): HTMLUListElement | undefined;
|
|
13
|
-
numberedList(list: any[]): HTMLUListElement | undefined;
|
|
14
|
-
startCodeBulletList(): HTMLUListElement;
|
|
15
|
-
endCodeBulletList(): void;
|
|
16
|
-
codeListItem(item: any, target?: Element): void;
|
|
17
|
-
codeBulletList(list: any[], target?: Element): HTMLUListElement;
|
|
18
|
-
image(src: string, caption?: string, parent?: Element, className?: string): HTMLImageElement;
|
|
19
|
-
images(sources: string[], captions?: string[], width?: string, height?: string): HTMLElement;
|
|
20
|
-
video(src: string, caption?: string, controls?: boolean, autoplay?: boolean, className?: string): any;
|
|
21
|
-
note(text: string, warning?: boolean, title?: string, icon?: string, className?: string): any;
|
|
22
|
-
classCtor(name: string, params: any[], language?: string): HTMLParagraphElement;
|
|
23
|
-
classMethod(name: string, desc: string, params: any[], ret?: string): HTMLElement | null;
|
|
24
|
-
iLink(text: string, href: string): string;
|
|
25
|
-
iPage(text: string, page: string): string | undefined;
|
|
26
|
-
iCode(text: string, codeClass?: string): string;
|
|
27
|
-
_copySnippet(b: any): void;
|
|
28
|
-
}
|
|
1
|
+
export declare class DocMaker {
|
|
2
|
+
root: Element;
|
|
3
|
+
_listQueued: Element | undefined;
|
|
4
|
+
_lastDomTarget: Element | undefined;
|
|
5
|
+
constructor(element?: Element);
|
|
6
|
+
setDomTarget(element: Element): void;
|
|
7
|
+
lineBreak(target?: Element): void;
|
|
8
|
+
header(string: string, type: string, id: string, options?: any): any;
|
|
9
|
+
paragraph(string: string, sup?: boolean, className?: string): HTMLElement | HTMLParagraphElement;
|
|
10
|
+
code(text: string, language?: string): HTMLDivElement;
|
|
11
|
+
list(list: any[], type: string, target?: Element, className?: string): HTMLUListElement | undefined;
|
|
12
|
+
bulletList(list: any[]): HTMLUListElement | undefined;
|
|
13
|
+
numberedList(list: any[]): HTMLUListElement | undefined;
|
|
14
|
+
startCodeBulletList(): HTMLUListElement;
|
|
15
|
+
endCodeBulletList(): void;
|
|
16
|
+
codeListItem(item: any, target?: Element): void;
|
|
17
|
+
codeBulletList(list: any[], target?: Element): HTMLUListElement;
|
|
18
|
+
image(src: string, caption?: string, parent?: Element, className?: string): HTMLImageElement;
|
|
19
|
+
images(sources: string[], captions?: string[], width?: string, height?: string): HTMLElement;
|
|
20
|
+
video(src: string, caption?: string, controls?: boolean, autoplay?: boolean, className?: string): any;
|
|
21
|
+
note(text: string, warning?: boolean, title?: string, icon?: string, className?: string): any;
|
|
22
|
+
classCtor(name: string, params: any[], language?: string): HTMLParagraphElement;
|
|
23
|
+
classMethod(name: string, desc: string, params: any[], ret?: string): HTMLElement | null;
|
|
24
|
+
iLink(text: string, href: string): string;
|
|
25
|
+
iPage(text: string, page: string): string | undefined;
|
|
26
|
+
iCode(text: string, codeClass?: string): string;
|
|
27
|
+
_copySnippet(b: any): void;
|
|
28
|
+
}
|