@elizaos/tui 2.0.0-alpha.10
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/README.md +761 -0
- package/dist/autocomplete.d.ts +48 -0
- package/dist/autocomplete.d.ts.map +1 -0
- package/dist/autocomplete.js +555 -0
- package/dist/components/box.d.ts +22 -0
- package/dist/components/box.d.ts.map +1 -0
- package/dist/components/box.js +103 -0
- package/dist/components/cancellable-loader.d.ts +22 -0
- package/dist/components/cancellable-loader.d.ts.map +1 -0
- package/dist/components/cancellable-loader.js +34 -0
- package/dist/components/editor/history.d.ts +38 -0
- package/dist/components/editor/history.d.ts.map +1 -0
- package/dist/components/editor/history.js +76 -0
- package/dist/components/editor/index.d.ts +18 -0
- package/dist/components/editor/index.d.ts.map +1 -0
- package/dist/components/editor/index.js +21 -0
- package/dist/components/editor/kill-ring.d.ts +41 -0
- package/dist/components/editor/kill-ring.d.ts.map +1 -0
- package/dist/components/editor/kill-ring.js +81 -0
- package/dist/components/editor/layout.d.ts +40 -0
- package/dist/components/editor/layout.d.ts.map +1 -0
- package/dist/components/editor/layout.js +205 -0
- package/dist/components/editor/types.d.ts +68 -0
- package/dist/components/editor/types.d.ts.map +1 -0
- package/dist/components/editor/types.js +4 -0
- package/dist/components/editor/undo.d.ts +46 -0
- package/dist/components/editor/undo.d.ts.map +1 -0
- package/dist/components/editor/undo.js +58 -0
- package/dist/components/editor.d.ts +196 -0
- package/dist/components/editor.d.ts.map +1 -0
- package/dist/components/editor.js +1707 -0
- package/dist/components/image.d.ts +28 -0
- package/dist/components/image.d.ts.map +1 -0
- package/dist/components/image.js +68 -0
- package/dist/components/input.d.ts +19 -0
- package/dist/components/input.d.ts.map +1 -0
- package/dist/components/input.js +195 -0
- package/dist/components/loader.d.ts +21 -0
- package/dist/components/loader.d.ts.map +1 -0
- package/dist/components/loader.js +49 -0
- package/dist/components/markdown/index.d.ts +13 -0
- package/dist/components/markdown/index.d.ts.map +1 -0
- package/dist/components/markdown/index.js +9 -0
- package/dist/components/markdown/inline-renderer.d.ts +22 -0
- package/dist/components/markdown/inline-renderer.d.ts.map +1 -0
- package/dist/components/markdown/inline-renderer.js +88 -0
- package/dist/components/markdown/list-renderer.d.ts +33 -0
- package/dist/components/markdown/list-renderer.d.ts.map +1 -0
- package/dist/components/markdown/list-renderer.js +110 -0
- package/dist/components/markdown/table-renderer.d.ts +43 -0
- package/dist/components/markdown/table-renderer.d.ts.map +1 -0
- package/dist/components/markdown/table-renderer.js +184 -0
- package/dist/components/markdown/types.d.ts +57 -0
- package/dist/components/markdown/types.d.ts.map +1 -0
- package/dist/components/markdown/types.js +13 -0
- package/dist/components/markdown.d.ts +44 -0
- package/dist/components/markdown.d.ts.map +1 -0
- package/dist/components/markdown.js +319 -0
- package/dist/components/progress-bar.d.ts +67 -0
- package/dist/components/progress-bar.d.ts.map +1 -0
- package/dist/components/progress-bar.js +124 -0
- package/dist/components/select-list.d.ts +32 -0
- package/dist/components/select-list.d.ts.map +1 -0
- package/dist/components/select-list.js +151 -0
- package/dist/components/settings-list.d.ts +50 -0
- package/dist/components/settings-list.d.ts.map +1 -0
- package/dist/components/settings-list.js +184 -0
- package/dist/components/spacer.d.ts +12 -0
- package/dist/components/spacer.d.ts.map +1 -0
- package/dist/components/spacer.js +22 -0
- package/dist/components/text.d.ts +19 -0
- package/dist/components/text.d.ts.map +1 -0
- package/dist/components/text.js +88 -0
- package/dist/components/toast.d.ts +73 -0
- package/dist/components/toast.d.ts.map +1 -0
- package/dist/components/toast.js +119 -0
- package/dist/components/truncated-text.d.ts +13 -0
- package/dist/components/truncated-text.d.ts.map +1 -0
- package/dist/components/truncated-text.js +50 -0
- package/dist/constants.d.ts +97 -0
- package/dist/constants.d.ts.map +1 -0
- package/dist/constants.js +126 -0
- package/dist/core/container.d.ts +32 -0
- package/dist/core/container.d.ts.map +1 -0
- package/dist/core/container.js +49 -0
- package/dist/core/index.d.ts +9 -0
- package/dist/core/index.d.ts.map +1 -0
- package/dist/core/index.js +10 -0
- package/dist/core/overlay.d.ts +44 -0
- package/dist/core/overlay.d.ts.map +1 -0
- package/dist/core/overlay.js +171 -0
- package/dist/core/types.d.ts +116 -0
- package/dist/core/types.d.ts.map +1 -0
- package/dist/core/types.js +14 -0
- package/dist/editor-component.d.ts +37 -0
- package/dist/editor-component.d.ts.map +1 -0
- package/dist/editor-component.js +1 -0
- package/dist/fuzzy.d.ts +16 -0
- package/dist/fuzzy.d.ts.map +1 -0
- package/dist/fuzzy.js +108 -0
- package/dist/index.d.ts +29 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +59 -0
- package/dist/keybindings.d.ts +39 -0
- package/dist/keybindings.d.ts.map +1 -0
- package/dist/keybindings.js +113 -0
- package/dist/keys.d.ts +153 -0
- package/dist/keys.d.ts.map +1 -0
- package/dist/keys.js +951 -0
- package/dist/stdin-buffer.d.ts +48 -0
- package/dist/stdin-buffer.d.ts.map +1 -0
- package/dist/stdin-buffer.js +316 -0
- package/dist/terminal-image.d.ts +68 -0
- package/dist/terminal-image.d.ts.map +1 -0
- package/dist/terminal-image.js +287 -0
- package/dist/terminal.d.ts +71 -0
- package/dist/terminal.d.ts.map +1 -0
- package/dist/terminal.js +216 -0
- package/dist/themes/index.d.ts +103 -0
- package/dist/themes/index.d.ts.map +1 -0
- package/dist/themes/index.js +161 -0
- package/dist/tui.d.ts +90 -0
- package/dist/tui.d.ts.map +1 -0
- package/dist/tui.js +745 -0
- package/dist/types/marked-tokens.d.ts +57 -0
- package/dist/types/marked-tokens.d.ts.map +1 -0
- package/dist/types/marked-tokens.js +17 -0
- package/dist/utils/cursor-movement.d.ts +127 -0
- package/dist/utils/cursor-movement.d.ts.map +1 -0
- package/dist/utils/cursor-movement.js +251 -0
- package/dist/utils/index.d.ts +6 -0
- package/dist/utils/index.d.ts.map +1 -0
- package/dist/utils/index.js +7 -0
- package/dist/utils/paste-handler.d.ts +86 -0
- package/dist/utils/paste-handler.d.ts.map +1 -0
- package/dist/utils/paste-handler.js +121 -0
- package/dist/utils.d.ts +75 -0
- package/dist/utils.d.ts.map +1 -0
- package/dist/utils.js +796 -0
- package/package.json +53 -0
|
@@ -0,0 +1,161 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* TUI Themes System
|
|
3
|
+
*
|
|
4
|
+
* Provides built-in color schemes and theming utilities.
|
|
5
|
+
*/
|
|
6
|
+
// ANSI color code helpers
|
|
7
|
+
const ansi = {
|
|
8
|
+
// Reset
|
|
9
|
+
reset: "\x1b[0m",
|
|
10
|
+
// Styles
|
|
11
|
+
bold: (text) => `\x1b[1m${text}\x1b[22m`,
|
|
12
|
+
dim: (text) => `\x1b[2m${text}\x1b[22m`,
|
|
13
|
+
italic: (text) => `\x1b[3m${text}\x1b[23m`,
|
|
14
|
+
underline: (text) => `\x1b[4m${text}\x1b[24m`,
|
|
15
|
+
// Basic colors (foreground)
|
|
16
|
+
black: (text) => `\x1b[30m${text}\x1b[39m`,
|
|
17
|
+
red: (text) => `\x1b[31m${text}\x1b[39m`,
|
|
18
|
+
green: (text) => `\x1b[32m${text}\x1b[39m`,
|
|
19
|
+
yellow: (text) => `\x1b[33m${text}\x1b[39m`,
|
|
20
|
+
blue: (text) => `\x1b[34m${text}\x1b[39m`,
|
|
21
|
+
magenta: (text) => `\x1b[35m${text}\x1b[39m`,
|
|
22
|
+
cyan: (text) => `\x1b[36m${text}\x1b[39m`,
|
|
23
|
+
white: (text) => `\x1b[37m${text}\x1b[39m`,
|
|
24
|
+
gray: (text) => `\x1b[90m${text}\x1b[39m`,
|
|
25
|
+
// Bright colors (foreground)
|
|
26
|
+
brightRed: (text) => `\x1b[91m${text}\x1b[39m`,
|
|
27
|
+
brightGreen: (text) => `\x1b[92m${text}\x1b[39m`,
|
|
28
|
+
brightYellow: (text) => `\x1b[93m${text}\x1b[39m`,
|
|
29
|
+
brightBlue: (text) => `\x1b[94m${text}\x1b[39m`,
|
|
30
|
+
brightMagenta: (text) => `\x1b[95m${text}\x1b[39m`,
|
|
31
|
+
brightCyan: (text) => `\x1b[96m${text}\x1b[39m`,
|
|
32
|
+
brightWhite: (text) => `\x1b[97m${text}\x1b[39m`,
|
|
33
|
+
// Background colors
|
|
34
|
+
bgBlack: (text) => `\x1b[40m${text}\x1b[49m`,
|
|
35
|
+
bgRed: (text) => `\x1b[41m${text}\x1b[49m`,
|
|
36
|
+
bgGreen: (text) => `\x1b[42m${text}\x1b[49m`,
|
|
37
|
+
bgYellow: (text) => `\x1b[43m${text}\x1b[49m`,
|
|
38
|
+
bgBlue: (text) => `\x1b[44m${text}\x1b[49m`,
|
|
39
|
+
bgMagenta: (text) => `\x1b[45m${text}\x1b[49m`,
|
|
40
|
+
bgCyan: (text) => `\x1b[46m${text}\x1b[49m`,
|
|
41
|
+
bgWhite: (text) => `\x1b[47m${text}\x1b[49m`,
|
|
42
|
+
bgGray: (text) => `\x1b[100m${text}\x1b[49m`,
|
|
43
|
+
// 256-color support
|
|
44
|
+
fg256: (code) => (text) => `\x1b[38;5;${code}m${text}\x1b[39m`,
|
|
45
|
+
bg256: (code) => (text) => `\x1b[48;5;${code}m${text}\x1b[49m`,
|
|
46
|
+
// True color (24-bit) support
|
|
47
|
+
fgRgb: (r, g, b) => (text) => `\x1b[38;2;${r};${g};${b}m${text}\x1b[39m`,
|
|
48
|
+
bgRgb: (r, g, b) => (text) => `\x1b[48;2;${r};${g};${b}m${text}\x1b[49m`,
|
|
49
|
+
};
|
|
50
|
+
// Compose multiple style functions
|
|
51
|
+
const compose = (...fns) => (text) => fns.reduce((t, fn) => fn(t), text);
|
|
52
|
+
/** Identity function for no-op styling */
|
|
53
|
+
const identity = (text) => text;
|
|
54
|
+
/**
|
|
55
|
+
* Default theme with standard terminal colors.
|
|
56
|
+
*/
|
|
57
|
+
export const defaultTheme = {
|
|
58
|
+
name: "default",
|
|
59
|
+
description: "Standard terminal colors",
|
|
60
|
+
colors: {
|
|
61
|
+
primary: ansi.cyan,
|
|
62
|
+
secondary: ansi.blue,
|
|
63
|
+
accent: ansi.magenta,
|
|
64
|
+
success: ansi.green,
|
|
65
|
+
warning: ansi.yellow,
|
|
66
|
+
error: ansi.red,
|
|
67
|
+
info: ansi.cyan,
|
|
68
|
+
text: identity,
|
|
69
|
+
textMuted: ansi.gray,
|
|
70
|
+
textBold: ansi.bold,
|
|
71
|
+
background: identity,
|
|
72
|
+
backgroundAlt: ansi.bgGray,
|
|
73
|
+
border: ansi.gray,
|
|
74
|
+
borderFocused: ansi.cyan,
|
|
75
|
+
},
|
|
76
|
+
};
|
|
77
|
+
/**
|
|
78
|
+
* Dark theme with deeper colors.
|
|
79
|
+
*/
|
|
80
|
+
export const darkTheme = {
|
|
81
|
+
name: "dark",
|
|
82
|
+
description: "Dark theme with deep colors",
|
|
83
|
+
colors: {
|
|
84
|
+
primary: ansi.brightCyan,
|
|
85
|
+
secondary: ansi.brightBlue,
|
|
86
|
+
accent: ansi.brightMagenta,
|
|
87
|
+
success: ansi.brightGreen,
|
|
88
|
+
warning: ansi.brightYellow,
|
|
89
|
+
error: ansi.brightRed,
|
|
90
|
+
info: ansi.brightCyan,
|
|
91
|
+
text: ansi.white,
|
|
92
|
+
textMuted: ansi.gray,
|
|
93
|
+
textBold: compose(ansi.white, ansi.bold),
|
|
94
|
+
background: ansi.bgBlack,
|
|
95
|
+
backgroundAlt: ansi.bgGray,
|
|
96
|
+
border: ansi.gray,
|
|
97
|
+
borderFocused: ansi.brightCyan,
|
|
98
|
+
},
|
|
99
|
+
};
|
|
100
|
+
/**
|
|
101
|
+
* Minimal theme with subtle styling.
|
|
102
|
+
*/
|
|
103
|
+
export const minimalTheme = {
|
|
104
|
+
name: "minimal",
|
|
105
|
+
description: "Minimal theme with subtle styling",
|
|
106
|
+
colors: {
|
|
107
|
+
primary: ansi.white,
|
|
108
|
+
secondary: ansi.gray,
|
|
109
|
+
accent: ansi.white,
|
|
110
|
+
success: ansi.green,
|
|
111
|
+
warning: ansi.yellow,
|
|
112
|
+
error: ansi.red,
|
|
113
|
+
info: ansi.gray,
|
|
114
|
+
text: identity,
|
|
115
|
+
textMuted: ansi.dim,
|
|
116
|
+
textBold: ansi.bold,
|
|
117
|
+
background: identity,
|
|
118
|
+
backgroundAlt: identity,
|
|
119
|
+
border: ansi.gray,
|
|
120
|
+
borderFocused: ansi.white,
|
|
121
|
+
},
|
|
122
|
+
};
|
|
123
|
+
/**
|
|
124
|
+
* Ocean theme with blue tones.
|
|
125
|
+
*/
|
|
126
|
+
export const oceanTheme = {
|
|
127
|
+
name: "ocean",
|
|
128
|
+
description: "Ocean-inspired blue tones",
|
|
129
|
+
colors: {
|
|
130
|
+
primary: ansi.fg256(39),
|
|
131
|
+
secondary: ansi.fg256(75),
|
|
132
|
+
accent: ansi.fg256(45),
|
|
133
|
+
success: ansi.fg256(42),
|
|
134
|
+
warning: ansi.fg256(214),
|
|
135
|
+
error: ansi.fg256(203),
|
|
136
|
+
info: ansi.fg256(39),
|
|
137
|
+
text: ansi.fg256(255),
|
|
138
|
+
textMuted: ansi.fg256(245),
|
|
139
|
+
textBold: compose(ansi.fg256(255), ansi.bold),
|
|
140
|
+
background: ansi.bg256(17),
|
|
141
|
+
backgroundAlt: ansi.bg256(24),
|
|
142
|
+
border: ansi.fg256(39),
|
|
143
|
+
borderFocused: ansi.fg256(45),
|
|
144
|
+
},
|
|
145
|
+
};
|
|
146
|
+
/**
|
|
147
|
+
* Available built-in themes.
|
|
148
|
+
*/
|
|
149
|
+
export const themes = {
|
|
150
|
+
default: defaultTheme,
|
|
151
|
+
dark: darkTheme,
|
|
152
|
+
minimal: minimalTheme,
|
|
153
|
+
ocean: oceanTheme,
|
|
154
|
+
};
|
|
155
|
+
export function getTheme(name) {
|
|
156
|
+
return themes[name];
|
|
157
|
+
}
|
|
158
|
+
/**
|
|
159
|
+
* Export ANSI helpers for custom theme creation.
|
|
160
|
+
*/
|
|
161
|
+
export { ansi, compose };
|
package/dist/tui.d.ts
ADDED
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Minimal TUI implementation with differential rendering
|
|
3
|
+
*/
|
|
4
|
+
import type { Terminal } from "./terminal.js";
|
|
5
|
+
import { visibleWidth } from "./utils.js";
|
|
6
|
+
export type { Component, Focusable, OverlayAnchor, OverlayEntry, OverlayHandle, OverlayMargin, OverlayOptions, SizeValue, } from "./core/types.js";
|
|
7
|
+
export { CURSOR_MARKER, isFocusable } from "./core/types.js";
|
|
8
|
+
export { Container } from "./core/container.js";
|
|
9
|
+
export { isOverlayVisible, parseSizeValue, resolveAnchorCol, resolveAnchorRow, resolveOverlayLayout, } from "./core/overlay.js";
|
|
10
|
+
export { visibleWidth };
|
|
11
|
+
import type { Component, OverlayHandle, OverlayOptions } from "./core/types.js";
|
|
12
|
+
import { Container } from "./core/container.js";
|
|
13
|
+
/**
|
|
14
|
+
* TUI - Main class for managing terminal UI with differential rendering
|
|
15
|
+
*/
|
|
16
|
+
export declare class TUI extends Container {
|
|
17
|
+
terminal: Terminal;
|
|
18
|
+
private previousLines;
|
|
19
|
+
private previousWidth;
|
|
20
|
+
private focusedComponent;
|
|
21
|
+
/** Global callback for debug key (Shift+Ctrl+D). Called before input is forwarded to focused component. */
|
|
22
|
+
onDebug?: () => void;
|
|
23
|
+
private renderRequested;
|
|
24
|
+
private cursorRow;
|
|
25
|
+
private hardwareCursorRow;
|
|
26
|
+
private inputBuffer;
|
|
27
|
+
private cellSizeQueryPending;
|
|
28
|
+
private showHardwareCursor;
|
|
29
|
+
private clearOnShrink;
|
|
30
|
+
private maxLinesRendered;
|
|
31
|
+
private previousViewportTop;
|
|
32
|
+
private fullRedrawCount;
|
|
33
|
+
private stopped;
|
|
34
|
+
private overlayStack;
|
|
35
|
+
constructor(terminal: Terminal, showHardwareCursor?: boolean);
|
|
36
|
+
get fullRedraws(): number;
|
|
37
|
+
getShowHardwareCursor(): boolean;
|
|
38
|
+
setShowHardwareCursor(enabled: boolean): void;
|
|
39
|
+
getClearOnShrink(): boolean;
|
|
40
|
+
/**
|
|
41
|
+
* Set whether to trigger full re-render when content shrinks.
|
|
42
|
+
* When true (default), empty rows are cleared when content shrinks.
|
|
43
|
+
* When false, empty rows remain (reduces redraws on slower terminals).
|
|
44
|
+
*/
|
|
45
|
+
setClearOnShrink(enabled: boolean): void;
|
|
46
|
+
setFocus(component: Component | null): void;
|
|
47
|
+
/**
|
|
48
|
+
* Show an overlay component with configurable positioning and sizing.
|
|
49
|
+
* Returns a handle to control the overlay's visibility.
|
|
50
|
+
*/
|
|
51
|
+
showOverlay(component: Component, options?: OverlayOptions): OverlayHandle;
|
|
52
|
+
/** Hide the topmost overlay and restore previous focus. */
|
|
53
|
+
hideOverlay(): void;
|
|
54
|
+
/** Check if there are any visible overlays */
|
|
55
|
+
hasOverlay(): boolean;
|
|
56
|
+
/** Check if an overlay entry is currently visible */
|
|
57
|
+
private isOverlayVisible;
|
|
58
|
+
/** Find the topmost visible overlay, if any */
|
|
59
|
+
private getTopmostVisibleOverlay;
|
|
60
|
+
invalidate(): void;
|
|
61
|
+
start(): void;
|
|
62
|
+
private queryCellSize;
|
|
63
|
+
stop(): void;
|
|
64
|
+
requestRender(force?: boolean): void;
|
|
65
|
+
private handleInput;
|
|
66
|
+
private parseCellSizeResponse;
|
|
67
|
+
/** Composite all overlays into content lines (in stack order, later = on top). */
|
|
68
|
+
private compositeOverlays;
|
|
69
|
+
private static readonly SEGMENT_RESET;
|
|
70
|
+
private applyLineResets;
|
|
71
|
+
/** Splice overlay content into a base line at a specific column. Single-pass optimized. */
|
|
72
|
+
private compositeLineAt;
|
|
73
|
+
/**
|
|
74
|
+
* Find and extract cursor position from rendered lines.
|
|
75
|
+
* Searches for CURSOR_MARKER, calculates its position, and strips it from the output.
|
|
76
|
+
* Only scans the bottom terminal height lines (visible viewport).
|
|
77
|
+
* @param lines - Rendered lines to search
|
|
78
|
+
* @param height - Terminal height (visible viewport size)
|
|
79
|
+
* @returns Cursor position { row, col } or null if no marker found
|
|
80
|
+
*/
|
|
81
|
+
private extractCursorPosition;
|
|
82
|
+
private doRender;
|
|
83
|
+
/**
|
|
84
|
+
* Position the hardware cursor for IME candidate window.
|
|
85
|
+
* @param cursorPos The cursor position extracted from rendered output, or null
|
|
86
|
+
* @param totalLines Total number of rendered lines
|
|
87
|
+
*/
|
|
88
|
+
private positionHardwareCursor;
|
|
89
|
+
}
|
|
90
|
+
//# sourceMappingURL=tui.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"tui.d.ts","sourceRoot":"","sources":["../src/tui.ts"],"names":[],"mappings":"AAAA;;GAEG;AAMH,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,eAAe,CAAC;AAE9C,OAAO,EAAkD,YAAY,EAAE,MAAM,YAAY,CAAC;AAG1F,YAAY,EACX,SAAS,EACT,SAAS,EACT,aAAa,EACb,YAAY,EACZ,aAAa,EACb,aAAa,EACb,cAAc,EACd,SAAS,GACT,MAAM,iBAAiB,CAAC;AAEzB,OAAO,EAAE,aAAa,EAAE,WAAW,EAAE,MAAM,iBAAiB,CAAC;AAE7D,OAAO,EAAE,SAAS,EAAE,MAAM,qBAAqB,CAAC;AAEhD,OAAO,EACN,gBAAgB,EAChB,cAAc,EACd,gBAAgB,EAChB,gBAAgB,EAChB,oBAAoB,GACpB,MAAM,mBAAmB,CAAC;AAE3B,OAAO,EAAE,YAAY,EAAE,CAAC;AAGxB,OAAO,KAAK,EAAE,SAAS,EAAgB,aAAa,EAAE,cAAc,EAAE,MAAM,iBAAiB,CAAC;AAE9F,OAAO,EAAE,SAAS,EAAE,MAAM,qBAAqB,CAAC;AAQhD;;GAEG;AACH,qBAAa,GAAI,SAAQ,SAAS;IAC1B,QAAQ,EAAE,QAAQ,CAAC;IAC1B,OAAO,CAAC,aAAa,CAAgB;IACrC,OAAO,CAAC,aAAa,CAAK;IAC1B,OAAO,CAAC,gBAAgB,CAA0B;IAElD,2GAA2G;IACpG,OAAO,CAAC,EAAE,MAAM,IAAI,CAAC;IAC5B,OAAO,CAAC,eAAe,CAAS;IAChC,OAAO,CAAC,SAAS,CAAK;IACtB,OAAO,CAAC,iBAAiB,CAAK;IAC9B,OAAO,CAAC,WAAW,CAAM;IACzB,OAAO,CAAC,oBAAoB,CAAS;IACrC,OAAO,CAAC,kBAAkB,CAA2C;IACrE,OAAO,CAAC,aAAa,CAA2C;IAChE,OAAO,CAAC,gBAAgB,CAAK;IAC7B,OAAO,CAAC,mBAAmB,CAAK;IAChC,OAAO,CAAC,eAAe,CAAK;IAC5B,OAAO,CAAC,OAAO,CAAS;IAGxB,OAAO,CAAC,YAAY,CAAsB;gBAE9B,QAAQ,EAAE,QAAQ,EAAE,kBAAkB,CAAC,EAAE,OAAO;IAQ5D,IAAI,WAAW,IAAI,MAAM,CAExB;IAED,qBAAqB,IAAI,OAAO;IAIhC,qBAAqB,CAAC,OAAO,EAAE,OAAO,GAAG,IAAI;IAS7C,gBAAgB,IAAI,OAAO;IAI3B;;;;OAIG;IACH,gBAAgB,CAAC,OAAO,EAAE,OAAO,GAAG,IAAI;IAIxC,QAAQ,CAAC,SAAS,EAAE,SAAS,GAAG,IAAI,GAAG,IAAI;IAc3C;;;OAGG;IACH,WAAW,CAAC,SAAS,EAAE,SAAS,EAAE,OAAO,CAAC,EAAE,cAAc,GAAG,aAAa;IA+C1E,2DAA2D;IAC3D,WAAW,IAAI,IAAI;IAUnB,8CAA8C;IAC9C,UAAU,IAAI,OAAO;IAIrB,qDAAqD;IACrD,OAAO,CAAC,gBAAgB;IAIxB,+CAA+C;IAC/C,OAAO,CAAC,wBAAwB;IASvB,UAAU,IAAI,IAAI;IAK3B,KAAK,IAAI,IAAI;IAWb,OAAO,CAAC,aAAa;IAWrB,IAAI,IAAI,IAAI;IAkBZ,aAAa,CAAC,KAAK,UAAQ,GAAG,IAAI;IAiBlC,OAAO,CAAC,WAAW;IAyCnB,OAAO,CAAC,qBAAqB;IA4C7B,kFAAkF;IAClF,OAAO,CAAC,iBAAiB;IAuEzB,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAC,aAAa,CAAyB;IAE9D,OAAO,CAAC,eAAe;IAWvB,2FAA2F;IAC3F,OAAO,CAAC,eAAe;IAkDvB;;;;;;;OAOG;IACH,OAAO,CAAC,qBAAqB;IAoB7B,OAAO,CAAC,QAAQ;IA6ShB;;;;OAIG;IACH,OAAO,CAAC,sBAAsB;CAgC9B"}
|