-
Notifications
You must be signed in to change notification settings - Fork 97
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Converted AnsiUp to ESM / ES6 Module
- Loading branch information
Showing
13 changed files
with
921 additions
and
1,114 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,53 +1,33 @@ | ||
interface AU_Color { | ||
rgb: number[]; | ||
class_name: string; | ||
} | ||
interface TextWithAttr { | ||
fg: AU_Color; | ||
bg: AU_Color; | ||
bold: boolean; | ||
text: string; | ||
} | ||
declare enum PacketKind { | ||
EOS = 0, | ||
Text = 1, | ||
Incomplete = 2, | ||
ESC = 3, | ||
Unknown = 4, | ||
SGR = 5, | ||
OSCURL = 6 | ||
} | ||
interface TextPacket { | ||
kind: PacketKind; | ||
text: string; | ||
url: string; | ||
} | ||
export declare class AnsiUp { | ||
VERSION: string; | ||
private ansi_colors; | ||
private palette_256; | ||
private fg; | ||
private bg; | ||
private bold; | ||
private italic; | ||
private underline; | ||
private _use_classes; | ||
private _escape_for_html; | ||
private _csi_regex; | ||
private _osc_st; | ||
private _osc_regex; | ||
private _url_whitelist; | ||
private _escape_html; | ||
private _buffer; | ||
constructor(); | ||
use_classes: boolean; | ||
escape_for_html: boolean; | ||
url_whitelist: {}; | ||
set use_classes(arg: boolean); | ||
get use_classes(): boolean; | ||
set url_whitelist(arg: {}); | ||
get url_whitelist(): {}; | ||
set escape_html(arg: boolean); | ||
get escape_html(): boolean; | ||
private setup_palettes; | ||
private escape_txt_for_html; | ||
append_buffer(txt: string): void; | ||
get_next_packet(): TextPacket; | ||
private append_buffer; | ||
private get_next_packet; | ||
ansi_to_html(txt: string): string; | ||
private with_state; | ||
private process_ansi; | ||
transform_to_html(fragment: TextWithAttr): string; | ||
private transform_to_html; | ||
private process_hyperlink; | ||
} | ||
export {}; |
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -50,7 +50,7 @@ interface TextPacket { | |
// MAIN CLASS | ||
// | ||
|
||
class AnsiUp | ||
export class AnsiUp | ||
{ | ||
VERSION = "5.2.1"; | ||
|
||
|
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.