@alcyone-labs/arg-parser 2.9.0 → 2.10.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/README.md +94 -6
- package/dist/core/ArgParserBase.d.ts.map +1 -1
- package/dist/index.cjs +574 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.min.mjs +3830 -3442
- package/dist/index.min.mjs.map +1 -1
- package/dist/index.mjs +574 -2
- package/dist/index.mjs.map +1 -1
- package/dist/ui/App.d.ts +18 -0
- package/dist/ui/App.d.ts.map +1 -0
- package/dist/ui/Component.d.ts +21 -0
- package/dist/ui/Component.d.ts.map +1 -0
- package/dist/ui/Layout.d.ts +19 -0
- package/dist/ui/Layout.d.ts.map +1 -0
- package/dist/ui/Terminal.d.ts +19 -0
- package/dist/ui/Terminal.d.ts.map +1 -0
- package/dist/ui/Theme.d.ts +20 -0
- package/dist/ui/Theme.d.ts.map +1 -0
- package/dist/ui/components/Input.d.ts +21 -0
- package/dist/ui/components/Input.d.ts.map +1 -0
- package/dist/ui/components/List.d.ts +23 -0
- package/dist/ui/components/List.d.ts.map +1 -0
- package/dist/ui/components/ScrollArea.d.ts +16 -0
- package/dist/ui/components/ScrollArea.d.ts.map +1 -0
- package/dist/ui/components/StackNavigator.d.ts +16 -0
- package/dist/ui/components/StackNavigator.d.ts.map +1 -0
- package/dist/ui/index.d.ts +10 -0
- package/dist/ui/index.d.ts.map +1 -0
- package/package.json +1 -1
package/dist/ui/App.d.ts
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { Component } from "./Component";
|
|
2
|
+
export interface IMouseEvent {
|
|
3
|
+
x: number;
|
|
4
|
+
y: number;
|
|
5
|
+
button: 0 | 1 | 2;
|
|
6
|
+
action: "press" | "release" | "drag" | "scroll_up" | "scroll_down";
|
|
7
|
+
}
|
|
8
|
+
export declare class App {
|
|
9
|
+
private terminal;
|
|
10
|
+
private root?;
|
|
11
|
+
private isRunning;
|
|
12
|
+
private lastRenderedLines;
|
|
13
|
+
constructor();
|
|
14
|
+
run(root: Component): void;
|
|
15
|
+
stop(): void;
|
|
16
|
+
private render;
|
|
17
|
+
}
|
|
18
|
+
//# sourceMappingURL=App.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"App.d.ts","sourceRoot":"","sources":["../../src/ui/App.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AAGxC,MAAM,WAAW,WAAW;IACxB,CAAC,EAAE,MAAM,CAAC;IACV,CAAC,EAAE,MAAM,CAAC;IACV,MAAM,EAAE,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;IAClB,MAAM,EAAE,OAAO,GAAG,SAAS,GAAG,MAAM,GAAG,WAAW,GAAG,aAAa,CAAC;CACtE;AAED,qBAAa,GAAG;IACd,OAAO,CAAC,QAAQ,CAAW;IAC3B,OAAO,CAAC,IAAI,CAAC,CAAY;IACzB,OAAO,CAAC,SAAS,CAAkB;IACnC,OAAO,CAAC,iBAAiB,CAAgB;;IAMlC,GAAG,CAAC,IAAI,EAAE,SAAS,GAAG,IAAI;IA6F1B,IAAI,IAAI,IAAI;IAMnB,OAAO,CAAC,MAAM;CAoCf"}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
export interface IComponentConfig {
|
|
2
|
+
id?: string;
|
|
3
|
+
style?: {
|
|
4
|
+
border?: boolean;
|
|
5
|
+
padding?: number;
|
|
6
|
+
};
|
|
7
|
+
}
|
|
8
|
+
export declare abstract class Component {
|
|
9
|
+
protected id: string;
|
|
10
|
+
protected config: IComponentConfig;
|
|
11
|
+
protected x: number;
|
|
12
|
+
protected y: number;
|
|
13
|
+
protected width: number;
|
|
14
|
+
protected height: number;
|
|
15
|
+
constructor(config?: IComponentConfig);
|
|
16
|
+
resize(x: number, y: number, width: number, height: number): void;
|
|
17
|
+
abstract render(): string[];
|
|
18
|
+
handleInput(_key: string): void;
|
|
19
|
+
handleMouse(_event: any): void;
|
|
20
|
+
}
|
|
21
|
+
//# sourceMappingURL=Component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Component.d.ts","sourceRoot":"","sources":["../../src/ui/Component.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,gBAAgB;IAC/B,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,KAAK,CAAC,EAAE;QACN,MAAM,CAAC,EAAE,OAAO,CAAC;QACjB,OAAO,CAAC,EAAE,MAAM,CAAC;KAClB,CAAC;CACH;AAED,8BAAsB,SAAS;IAC7B,SAAS,CAAC,EAAE,EAAE,MAAM,CAAC;IACrB,SAAS,CAAC,MAAM,EAAE,gBAAgB,CAAC;IACnC,SAAS,CAAC,CAAC,EAAE,MAAM,CAAK;IACxB,SAAS,CAAC,CAAC,EAAE,MAAM,CAAK;IACxB,SAAS,CAAC,KAAK,EAAE,MAAM,CAAK;IAC5B,SAAS,CAAC,MAAM,EAAE,MAAM,CAAK;gBAEjB,MAAM,GAAE,gBAAqB;IAKlC,MAAM,CAAC,CAAC,EAAE,MAAM,EAAE,CAAC,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,GAAG,IAAI;aAOxD,MAAM,IAAI,MAAM,EAAE;IAG3B,WAAW,CAAC,IAAI,EAAE,MAAM,GAAG,IAAI;IAK/B,WAAW,CAAC,MAAM,EAAE,GAAG,GAAG,IAAI;CAGtC"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { Component, type IComponentConfig } from "./Component";
|
|
2
|
+
export interface ISplitLayoutConfig extends IComponentConfig {
|
|
3
|
+
direction: "horizontal" | "vertical";
|
|
4
|
+
first: Component;
|
|
5
|
+
second: Component;
|
|
6
|
+
splitRatio?: number;
|
|
7
|
+
}
|
|
8
|
+
export declare class SplitLayout extends Component {
|
|
9
|
+
private direction;
|
|
10
|
+
private first;
|
|
11
|
+
private second;
|
|
12
|
+
private splitRatio;
|
|
13
|
+
constructor(config: ISplitLayoutConfig);
|
|
14
|
+
resize(x: number, y: number, width: number, height: number): void;
|
|
15
|
+
render(): string[];
|
|
16
|
+
handleInput(key: string): void;
|
|
17
|
+
handleMouse(event: any): void;
|
|
18
|
+
}
|
|
19
|
+
//# sourceMappingURL=Layout.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Layout.d.ts","sourceRoot":"","sources":["../../src/ui/Layout.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,KAAK,gBAAgB,EAAE,MAAM,aAAa,CAAC;AAE/D,MAAM,WAAW,kBAAmB,SAAQ,gBAAgB;IAC1D,SAAS,EAAE,YAAY,GAAG,UAAU,CAAC;IACrC,KAAK,EAAE,SAAS,CAAC;IACjB,MAAM,EAAE,SAAS,CAAC;IAClB,UAAU,CAAC,EAAE,MAAM,CAAC;CACrB;AAED,qBAAa,WAAY,SAAQ,SAAS;IACxC,OAAO,CAAC,SAAS,CAA4B;IAC7C,OAAO,CAAC,KAAK,CAAY;IACzB,OAAO,CAAC,MAAM,CAAY;IAC1B,OAAO,CAAC,UAAU,CAAS;gBAEf,MAAM,EAAE,kBAAkB;IAQtB,MAAM,CAAC,CAAC,EAAE,MAAM,EAAE,CAAC,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,GAAG,IAAI;IAc1E,MAAM,IAAI,MAAM,EAAE;IAoBT,WAAW,CAAC,GAAG,EAAE,MAAM,GAAG,IAAI;IAO9B,WAAW,CAAC,KAAK,EAAE,GAAG,GAAG,IAAI;CAY9C"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
export declare class Terminal {
|
|
2
|
+
private static instance;
|
|
3
|
+
private constructor();
|
|
4
|
+
static getInstance(): Terminal;
|
|
5
|
+
get width(): number;
|
|
6
|
+
get height(): number;
|
|
7
|
+
write(text: string): void;
|
|
8
|
+
clear(): void;
|
|
9
|
+
hideCursor(): void;
|
|
10
|
+
showCursor(): void;
|
|
11
|
+
moveCursor(x: number, y: number): void;
|
|
12
|
+
enableRawMode(): void;
|
|
13
|
+
enableMouse(): void;
|
|
14
|
+
disableMouse(): void;
|
|
15
|
+
disableRawMode(): void;
|
|
16
|
+
onKey(callback: (key: string, mouse?: any) => void): void;
|
|
17
|
+
cleanup(): void;
|
|
18
|
+
}
|
|
19
|
+
//# sourceMappingURL=Terminal.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Terminal.d.ts","sourceRoot":"","sources":["../../src/ui/Terminal.ts"],"names":[],"mappings":"AAEA,qBAAa,QAAQ;IACnB,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAW;IAElC,OAAO;WAEO,WAAW,IAAI,QAAQ;IAOrC,IAAW,KAAK,IAAI,MAAM,CAEzB;IAED,IAAW,MAAM,IAAI,MAAM,CAE1B;IAEM,KAAK,CAAC,IAAI,EAAE,MAAM,GAAG,IAAI;IAIzB,KAAK,IAAI,IAAI;IAKb,UAAU,IAAI,IAAI;IAIlB,UAAU,IAAI,IAAI;IAIlB,UAAU,CAAC,CAAC,EAAE,MAAM,EAAE,CAAC,EAAE,MAAM,GAAG,IAAI;IAItC,aAAa,IAAI,IAAI;IAQrB,WAAW,IAAI,IAAI;IAQnB,YAAY,IAAI,IAAI;IAIpB,cAAc,IAAI,IAAI;IAOtB,KAAK,CAAC,QAAQ,EAAE,CAAC,GAAG,EAAE,MAAM,EAAE,KAAK,CAAC,EAAE,GAAG,KAAK,IAAI,GAAG,IAAI;IAezD,OAAO,IAAI,IAAI;CAKvB"}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
export interface ITheme {
|
|
2
|
+
base: (str: string) => string;
|
|
3
|
+
muted: (str: string) => string;
|
|
4
|
+
accent: (str: string) => string;
|
|
5
|
+
highlight: (str: string) => string;
|
|
6
|
+
success: (str: string) => string;
|
|
7
|
+
warning: (str: string) => string;
|
|
8
|
+
error: (str: string) => string;
|
|
9
|
+
border: (str: string) => string;
|
|
10
|
+
scrollbarThumb: (str: string) => string;
|
|
11
|
+
scrollbarTrack: (str: string) => string;
|
|
12
|
+
}
|
|
13
|
+
export declare const Themes: Record<string, ITheme>;
|
|
14
|
+
export declare class ThemeManager {
|
|
15
|
+
private static _current;
|
|
16
|
+
static get current(): ITheme;
|
|
17
|
+
static setTheme(name: keyof typeof Themes): void;
|
|
18
|
+
static setCustomTheme(theme: ITheme): void;
|
|
19
|
+
}
|
|
20
|
+
//# sourceMappingURL=Theme.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Theme.d.ts","sourceRoot":"","sources":["../../src/ui/Theme.ts"],"names":[],"mappings":"AAEA,MAAM,WAAW,MAAM;IAErB,IAAI,EAAE,CAAC,GAAG,EAAE,MAAM,KAAK,MAAM,CAAC;IAC9B,KAAK,EAAE,CAAC,GAAG,EAAE,MAAM,KAAK,MAAM,CAAC;IAC/B,MAAM,EAAE,CAAC,GAAG,EAAE,MAAM,KAAK,MAAM,CAAC;IAChC,SAAS,EAAE,CAAC,GAAG,EAAE,MAAM,KAAK,MAAM,CAAC;IAGnC,OAAO,EAAE,CAAC,GAAG,EAAE,MAAM,KAAK,MAAM,CAAC;IACjC,OAAO,EAAE,CAAC,GAAG,EAAE,MAAM,KAAK,MAAM,CAAC;IACjC,KAAK,EAAE,CAAC,GAAG,EAAE,MAAM,KAAK,MAAM,CAAC;IAG/B,MAAM,EAAE,CAAC,GAAG,EAAE,MAAM,KAAK,MAAM,CAAC;IAChC,cAAc,EAAE,CAAC,GAAG,EAAE,MAAM,KAAK,MAAM,CAAC;IACxC,cAAc,EAAE,CAAC,GAAG,EAAE,MAAM,KAAK,MAAM,CAAC;CACzC;AAKD,eAAO,MAAM,MAAM,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAqCzC,CAAC;AAEF,qBAAa,YAAY;IACrB,OAAO,CAAC,MAAM,CAAC,QAAQ,CAA6B;IAEpD,WAAkB,OAAO,IAAI,MAAM,CAElC;WAEa,QAAQ,CAAC,IAAI,EAAE,MAAM,OAAO,MAAM;WAMlC,cAAc,CAAC,KAAK,EAAE,MAAM;CAG7C"}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { Component, type IComponentConfig } from "../Component";
|
|
2
|
+
export interface IInputConfig extends IComponentConfig {
|
|
3
|
+
prefix?: string;
|
|
4
|
+
placeholder?: string;
|
|
5
|
+
value?: string;
|
|
6
|
+
onChange?: (value: string) => void;
|
|
7
|
+
onSubmit?: (value: string) => void;
|
|
8
|
+
}
|
|
9
|
+
export declare class Input extends Component {
|
|
10
|
+
private prefix;
|
|
11
|
+
private placeholder;
|
|
12
|
+
private value;
|
|
13
|
+
private onChange?;
|
|
14
|
+
private onSubmit?;
|
|
15
|
+
constructor(config: IInputConfig);
|
|
16
|
+
setValue(value: string): void;
|
|
17
|
+
getValue(): string;
|
|
18
|
+
render(): string[];
|
|
19
|
+
handleInput(key: string): void;
|
|
20
|
+
}
|
|
21
|
+
//# sourceMappingURL=Input.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Input.d.ts","sourceRoot":"","sources":["../../../src/ui/components/Input.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,KAAK,gBAAgB,EAAE,MAAM,cAAc,CAAC;AAGhE,MAAM,WAAW,YAAa,SAAQ,gBAAgB;IACpD,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,QAAQ,CAAC,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;IACnC,QAAQ,CAAC,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;CACpC;AAED,qBAAa,KAAM,SAAQ,SAAS;IAClC,OAAO,CAAC,MAAM,CAAS;IACvB,OAAO,CAAC,WAAW,CAAS;IAC5B,OAAO,CAAC,KAAK,CAAS;IACtB,OAAO,CAAC,QAAQ,CAAC,CAA0B;IAC3C,OAAO,CAAC,QAAQ,CAAC,CAA0B;gBAE/B,MAAM,EAAE,YAAY;IASzB,QAAQ,CAAC,KAAK,EAAE,MAAM,GAAG,IAAI;IAK7B,QAAQ,IAAI,MAAM;IAIlB,MAAM,IAAI,MAAM,EAAE;IAoBT,WAAW,CAAC,GAAG,EAAE,MAAM,GAAG,IAAI;CAe/C"}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { Component, type IComponentConfig } from "../Component";
|
|
2
|
+
export interface IListItem {
|
|
3
|
+
label: string;
|
|
4
|
+
value: any;
|
|
5
|
+
description?: string;
|
|
6
|
+
}
|
|
7
|
+
export interface IListConfig extends IComponentConfig {
|
|
8
|
+
items: IListItem[];
|
|
9
|
+
onSelect?: (item: IListItem) => void;
|
|
10
|
+
onSubmit?: (item: IListItem) => void;
|
|
11
|
+
}
|
|
12
|
+
export declare class List extends Component {
|
|
13
|
+
private items;
|
|
14
|
+
private selectedIndex;
|
|
15
|
+
private onSelect?;
|
|
16
|
+
private onSubmit?;
|
|
17
|
+
private scrollOffset;
|
|
18
|
+
constructor(config: IListConfig);
|
|
19
|
+
setItems(items: IListItem[]): void;
|
|
20
|
+
render(): string[];
|
|
21
|
+
handleInput(key: string): void;
|
|
22
|
+
}
|
|
23
|
+
//# sourceMappingURL=List.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"List.d.ts","sourceRoot":"","sources":["../../../src/ui/components/List.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,KAAK,gBAAgB,EAAE,MAAM,cAAc,CAAC;AAGhE,MAAM,WAAW,SAAS;IACxB,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,EAAE,GAAG,CAAC;IACX,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB;AAED,MAAM,WAAW,WAAY,SAAQ,gBAAgB;IACnD,KAAK,EAAE,SAAS,EAAE,CAAC;IACnB,QAAQ,CAAC,EAAE,CAAC,IAAI,EAAE,SAAS,KAAK,IAAI,CAAC;IACrC,QAAQ,CAAC,EAAE,CAAC,IAAI,EAAE,SAAS,KAAK,IAAI,CAAC;CACtC;AAED,qBAAa,IAAK,SAAQ,SAAS;IACjC,OAAO,CAAC,KAAK,CAAc;IAC3B,OAAO,CAAC,aAAa,CAAa;IAClC,OAAO,CAAC,QAAQ,CAAC,CAA4B;IAC7C,OAAO,CAAC,QAAQ,CAAC,CAA4B;IAC7C,OAAO,CAAC,YAAY,CAAa;gBAErB,MAAM,EAAE,WAAW;IAOxB,QAAQ,CAAC,KAAK,EAAE,SAAS,EAAE,GAAG,IAAI;IASlC,MAAM,IAAI,MAAM,EAAE;IAwDT,WAAW,CAAC,GAAG,EAAE,MAAM,GAAG,IAAI;CAa/C"}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { Component, type IComponentConfig } from "../Component";
|
|
2
|
+
export interface IScrollAreaConfig extends IComponentConfig {
|
|
3
|
+
content: string;
|
|
4
|
+
}
|
|
5
|
+
export declare class ScrollArea extends Component {
|
|
6
|
+
private content;
|
|
7
|
+
private contentLines;
|
|
8
|
+
private scrollOffset;
|
|
9
|
+
constructor(config: IScrollAreaConfig);
|
|
10
|
+
setContent(content: string): void;
|
|
11
|
+
private updateContentLines;
|
|
12
|
+
render(): string[];
|
|
13
|
+
handleMouse(event: any): void;
|
|
14
|
+
handleInput(key: string): void;
|
|
15
|
+
}
|
|
16
|
+
//# sourceMappingURL=ScrollArea.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ScrollArea.d.ts","sourceRoot":"","sources":["../../../src/ui/components/ScrollArea.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,KAAK,gBAAgB,EAAE,MAAM,cAAc,CAAC;AAGhE,MAAM,WAAW,iBAAkB,SAAQ,gBAAgB;IACzD,OAAO,EAAE,MAAM,CAAC;CACjB;AAED,qBAAa,UAAW,SAAQ,SAAS;IACvC,OAAO,CAAC,OAAO,CAAS;IACxB,OAAO,CAAC,YAAY,CAAgB;IACpC,OAAO,CAAC,YAAY,CAAa;gBAErB,MAAM,EAAE,iBAAiB;IAM9B,UAAU,CAAC,OAAO,EAAE,MAAM,GAAG,IAAI;IAMxC,OAAO,CAAC,kBAAkB;IAInB,MAAM,IAAI,MAAM,EAAE;IA6DT,WAAW,CAAC,KAAK,EAAE,GAAG,GAAG,IAAI;IAkB7B,WAAW,CAAC,GAAG,EAAE,MAAM,GAAG,IAAI;CAa/C"}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { Component, type IComponentConfig } from "../Component";
|
|
2
|
+
export interface IStackNavigatorConfig extends IComponentConfig {
|
|
3
|
+
initialComponent: Component;
|
|
4
|
+
}
|
|
5
|
+
export declare class StackNavigator extends Component {
|
|
6
|
+
private stack;
|
|
7
|
+
constructor(config: IStackNavigatorConfig);
|
|
8
|
+
push(component: Component): void;
|
|
9
|
+
pop(): void;
|
|
10
|
+
get currentComponent(): Component;
|
|
11
|
+
resize(x: number, y: number, width: number, height: number): void;
|
|
12
|
+
render(): string[];
|
|
13
|
+
handleInput(key: string): void;
|
|
14
|
+
handleMouse(event: any): void;
|
|
15
|
+
}
|
|
16
|
+
//# sourceMappingURL=StackNavigator.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"StackNavigator.d.ts","sourceRoot":"","sources":["../../../src/ui/components/StackNavigator.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,KAAK,gBAAgB,EAAE,MAAM,cAAc,CAAC;AAEhE,MAAM,WAAW,qBAAsB,SAAQ,gBAAgB;IAC7D,gBAAgB,EAAE,SAAS,CAAC;CAC7B;AAED,qBAAa,cAAe,SAAQ,SAAS;IAC3C,OAAO,CAAC,KAAK,CAAmB;gBAEpB,MAAM,EAAE,qBAAqB;IAKlC,IAAI,CAAC,SAAS,EAAE,SAAS,GAAG,IAAI;IAMhC,GAAG,IAAI,IAAI;IAMlB,IAAW,gBAAgB,IAAI,SAAS,CAEvC;IAEe,MAAM,CAAC,CAAC,EAAE,MAAM,EAAE,CAAC,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,GAAG,IAAI;IAQ1E,MAAM,IAAI,MAAM,EAAE;IAIT,WAAW,CAAC,GAAG,EAAE,MAAM,GAAG,IAAI;IAa9B,WAAW,CAAC,KAAK,EAAE,GAAG,GAAG,IAAI;CAG9C"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export * from "./Terminal";
|
|
2
|
+
export * from "./Component";
|
|
3
|
+
export * from "./Layout";
|
|
4
|
+
export * from "./App";
|
|
5
|
+
export * from "./components/List";
|
|
6
|
+
export * from "./components/ScrollArea";
|
|
7
|
+
export * from "./components/Input";
|
|
8
|
+
export * from "./components/StackNavigator";
|
|
9
|
+
export * from "./Theme";
|
|
10
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/ui/index.ts"],"names":[],"mappings":"AAAA,cAAc,YAAY,CAAC;AAC3B,cAAc,aAAa,CAAC;AAC5B,cAAc,UAAU,CAAC;AACzB,cAAc,OAAO,CAAC;AAEtB,cAAc,mBAAmB,CAAC;AAClC,cAAc,yBAAyB,CAAC;AACxC,cAAc,oBAAoB,CAAC;AACnC,cAAc,6BAA6B,CAAC;AAC5C,cAAc,SAAS,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alcyone-labs/arg-parser",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.10.0",
|
|
4
4
|
"description": "A robust, type-safe CLI builder with out-of-the-box support for creating MCPs and bundling Claude Desktop's DXT packages",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.cjs",
|