citadel_cli 1.0.0 → 1.1.3
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 +149 -210
- package/dist/App.d.ts +2 -0
- package/dist/__test-utils__/factories.d.ts +40 -0
- package/dist/citadel.css +1 -1
- package/dist/citadel.es.js +1271 -1418
- package/dist/citadel.umd.js +34 -19
- package/dist/components/Citadel/Citadel.d.ts +15 -0
- package/dist/components/Citadel/components/AvailableCommands.d.ts +2 -0
- package/dist/{src/components → components}/Citadel/components/CommandInput.d.ts +0 -2
- package/dist/components/Citadel/config/CitadelConfigContext.d.ts +18 -0
- package/dist/{src/components → components}/Citadel/config/defaults.d.ts +15 -7
- package/dist/components/Citadel/config/hooks.d.ts +4 -0
- package/dist/{src/components → components}/Citadel/config/types.d.ts +32 -20
- package/dist/{src/components → components}/Citadel/hooks/useCitadelState.d.ts +2 -1
- package/dist/components/Citadel/hooks/useCommandHistory.d.ts +27 -0
- package/dist/components/Citadel/hooks/useCommandParser.d.ts +22 -0
- package/dist/components/Citadel/hooks/useSegmentStack.d.ts +14 -0
- package/dist/components/Citadel/hooks/useSegmentStackVersion.d.ts +1 -0
- package/dist/{src/components → components}/Citadel/storage/BaseStorage.d.ts +2 -2
- package/dist/{src/components → components}/Citadel/storage/LocalStorage.d.ts +1 -1
- package/dist/{src/components → components}/Citadel/storage/MemoryStorage.d.ts +2 -2
- package/dist/components/Citadel/types/command-registry.d.ts +88 -0
- package/dist/{src/components → components}/Citadel/types/command-results.d.ts +2 -2
- package/dist/components/Citadel/types/help-command.d.ts +3 -0
- package/dist/components/Citadel/types/segment-stack.d.ts +62 -0
- package/dist/{src/components → components}/Citadel/types/state.d.ts +8 -22
- package/dist/{src/components → components}/Citadel/types/storage.d.ts +4 -3
- package/dist/components/Citadel/utils/logger.d.ts +21 -0
- package/dist/index.d.ts +4 -2
- package/package.json +12 -5
- package/dist/command_examples/basic-commands.d.ts +0 -83
- package/dist/dist/styles.css +0 -789
- package/dist/src/App.d.ts +0 -4
- package/dist/src/__test-utils__/factories.d.ts +0 -21
- package/dist/src/components/Citadel/Citadel.d.ts +0 -11
- package/dist/src/components/Citadel/commands/history-commands.d.ts +0 -2
- package/dist/src/components/Citadel/components/AvailableCommands.d.ts +0 -9
- package/dist/src/components/Citadel/config/CitadelConfigContext.d.ts +0 -11
- package/dist/src/components/Citadel/hooks/useCommandHistory.d.ts +0 -17
- package/dist/src/components/Citadel/hooks/useCommandParser.d.ts +0 -19
- package/dist/src/components/Citadel/hooks/useCommandTrie.d.ts +0 -2
- package/dist/src/components/Citadel/types/command-context.d.ts +0 -4
- package/dist/src/components/Citadel/types/command-trie.d.ts +0 -238
- package/dist/src/components/Citadel/types/help-command.d.ts +0 -3
- package/dist/src/components/Citadel/utils/keySimulation.d.ts +0 -2
- package/dist/src/index.d.ts +0 -4
- /package/dist/{src/components → components}/Citadel/Cursor.d.ts +0 -0
- /package/dist/{src/components → components}/Citadel/__tests__/Citadel.test.d.ts +0 -0
- /package/dist/{src/components → components}/Citadel/components/CommandOutput.d.ts +0 -0
- /package/dist/{src/components → components}/Citadel/components/CommandOutputLine.d.ts +0 -0
- /package/dist/{src/components → components}/Citadel/components/Spinner.d.ts +0 -0
- /package/dist/{src/components → components}/Citadel/components/__tests__/AvailableCommands.test.d.ts +0 -0
- /package/dist/{src/components → components}/Citadel/components/__tests__/CommandInput.test.d.ts +0 -0
- /package/dist/{src/components → components}/Citadel/components/__tests__/CommandOutput.test.d.ts +0 -0
- /package/dist/{src/components → components}/Citadel/components/__tests__/CommandOutputLine.test.d.ts +0 -0
- /package/dist/{src/components → components}/Citadel/components/__tests__/Spinner.test.d.ts +0 -0
- /package/dist/{src/components → components}/Citadel/config/__tests__/CitadelConfigContext.test.d.ts +0 -0
- /package/dist/{src/components → components}/Citadel/hooks/__tests__/useCitadelState.test.d.ts +0 -0
- /package/dist/{src/components → components}/Citadel/hooks/__tests__/useCommandHistory.test.d.ts +0 -0
- /package/dist/{src/components → components}/Citadel/hooks/__tests__/useCommandParser.test.d.ts +0 -0
- /package/dist/{src/components → components}/Citadel/hooks/useGlobalShortcut.d.ts +0 -0
- /package/dist/{src/components → components}/Citadel/hooks/useSlideAnimation.d.ts +0 -0
- /package/dist/{src/components → components}/Citadel/index.d.ts +0 -0
- /package/dist/{src/components → components}/Citadel/services/HistoryService.d.ts +0 -0
- /package/dist/{src/components → components}/Citadel/storage/StorageFactory.d.ts +0 -0
- /package/dist/{src/components → components}/Citadel/storage/__tests__/LocalStorage.test.d.ts +0 -0
- /package/dist/{src/components → components}/Citadel/storage/__tests__/MemoryStorage.test.d.ts +0 -0
- /package/dist/{src/components/Citadel/hooks/__tests__/useCommandTrie.test.d.ts → components/Citadel/types/__tests__/command-registry.test.d.ts} +0 -0
- /package/dist/{src/components/Citadel/types/__tests__/command-trie.test.d.ts → components/Citadel/types/__tests__/segment-stack.test.d.ts} +0 -0
- /package/dist/{src/components → components}/Citadel/types/cursor.d.ts +0 -0
- /package/dist/{src/components → components}/Citadel/types/index.d.ts +0 -0
- /package/dist/{src/main.d.ts → main.d.ts} +0 -0
- /package/dist/{src/test → test}/setup.d.ts +0 -0
package/dist/src/App.d.ts
DELETED
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
import { CommandNode, CommandTrie, CommandHandler } from '../components/Citadel/types/command-trie';
|
|
2
|
-
import { CitadelState, CitadelActions } from '../components/Citadel/types';
|
|
3
|
-
import { StoredCommand } from '../components/Citadel/types/storage';
|
|
4
|
-
import { CommandHistory, CommandHistoryActions } from '../components/Citadel/hooks/useCommandHistory';
|
|
5
|
-
interface MockNodeOptions {
|
|
6
|
-
argument?: {
|
|
7
|
-
name: string;
|
|
8
|
-
description: string;
|
|
9
|
-
};
|
|
10
|
-
handler?: CommandHandler;
|
|
11
|
-
description?: string;
|
|
12
|
-
isLeaf?: boolean;
|
|
13
|
-
}
|
|
14
|
-
export declare const createMockNode: (name: string, options?: MockNodeOptions) => CommandNode;
|
|
15
|
-
export declare const createMockCommandTrie: () => CommandTrie;
|
|
16
|
-
export declare const createMockStoredCommand: (overrides?: {}) => StoredCommand;
|
|
17
|
-
export declare const createMockCommandHistory: (overrides?: {}) => CommandHistory;
|
|
18
|
-
export declare const createMockCommandHistoryActions: (overrides?: {}) => CommandHistoryActions;
|
|
19
|
-
export declare const createMockCitadelState: (overrides?: {}) => CitadelState;
|
|
20
|
-
export declare const createMockCitadelActions: (overrides?: {}) => CitadelActions;
|
|
21
|
-
export {};
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { CitadelConfig } from './config/types';
|
|
2
|
-
export interface CitadelProps {
|
|
3
|
-
config?: CitadelConfig;
|
|
4
|
-
commands?: Record<string, any>;
|
|
5
|
-
containerId?: string;
|
|
6
|
-
}
|
|
7
|
-
export declare const Citadel: ({ config, commands, containerId }: {
|
|
8
|
-
config?: CitadelConfig | undefined;
|
|
9
|
-
commands?: {} | undefined;
|
|
10
|
-
containerId?: null | undefined;
|
|
11
|
-
}) => null;
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { default as React } from 'react';
|
|
2
|
-
import { CommandNode } from '../types/command-trie';
|
|
3
|
-
import { CitadelState } from '../types/state';
|
|
4
|
-
interface AvailableCommandsProps {
|
|
5
|
-
state: CitadelState;
|
|
6
|
-
availableCommands: CommandNode[];
|
|
7
|
-
}
|
|
8
|
-
export declare const AvailableCommands: React.FC<AvailableCommandsProps>;
|
|
9
|
-
export {};
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { default as React } from 'react';
|
|
2
|
-
import { CitadelConfig } from './types';
|
|
3
|
-
import { CommandStorage } from '../types/storage';
|
|
4
|
-
export declare const CitadelConfigProvider: React.FC<{
|
|
5
|
-
config?: CitadelConfig;
|
|
6
|
-
commands?: Record<string, any>;
|
|
7
|
-
children: React.ReactNode;
|
|
8
|
-
}>;
|
|
9
|
-
export declare const useCitadelConfig: () => CitadelConfig;
|
|
10
|
-
export declare const useCitadelCommands: () => Record<string, any> | undefined;
|
|
11
|
-
export declare const useCitadelStorage: () => CommandStorage | undefined;
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import { StoredCommand } from '../types/storage';
|
|
2
|
-
export interface CommandHistory {
|
|
3
|
-
commands: StoredCommand[];
|
|
4
|
-
position: number | null;
|
|
5
|
-
savedInput: string | null;
|
|
6
|
-
}
|
|
7
|
-
export interface CommandHistoryActions {
|
|
8
|
-
addCommand: (command: StoredCommand) => Promise<void>;
|
|
9
|
-
getCommands: () => StoredCommand[];
|
|
10
|
-
navigateHistory: (direction: 'up' | 'down', currentInput: string) => {
|
|
11
|
-
command: StoredCommand | null;
|
|
12
|
-
position: number | null;
|
|
13
|
-
};
|
|
14
|
-
saveInput: (input: string) => void;
|
|
15
|
-
clear: () => Promise<void>;
|
|
16
|
-
}
|
|
17
|
-
export declare function useCommandHistory(): [CommandHistory, CommandHistoryActions];
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
import { CommandNode, CommandTrie } from '../types/command-trie';
|
|
2
|
-
import { CitadelState, CitadelActions } from '../types/state';
|
|
3
|
-
import { StoredCommand } from '../types/storage';
|
|
4
|
-
type InputState = 'idle' | 'entering_command' | 'entering_argument';
|
|
5
|
-
interface UseCommandParserProps {
|
|
6
|
-
commandTrie?: CommandTrie;
|
|
7
|
-
}
|
|
8
|
-
export declare function useCommandParser({ commandTrie: propsTrie }?: UseCommandParserProps): {
|
|
9
|
-
handleInputChange: (newValue: string, state: CitadelState, actions: CitadelActions) => void;
|
|
10
|
-
handleKeyDown: (e: KeyboardEvent, state: CitadelState, actions: CitadelActions) => void;
|
|
11
|
-
executeCommand: (commandStack: string[], actions: CitadelActions, args?: string[]) => void;
|
|
12
|
-
inputState: InputState;
|
|
13
|
-
replayCommand: (command: StoredCommand, state: CitadelState, actions: CitadelActions) => Promise<void>;
|
|
14
|
-
findMatchingCommands: (input: string, availableNodes: CommandNode[]) => CommandNode[];
|
|
15
|
-
getAutocompleteSuggestion: (input: string, availableNodes: CommandNode[]) => string | null;
|
|
16
|
-
getAvailableNodes: (currentNode?: CommandNode) => CommandNode[];
|
|
17
|
-
isValidCommandInput: (input: string, availableNodes: CommandNode[]) => boolean;
|
|
18
|
-
};
|
|
19
|
-
export {};
|
|
@@ -1,238 +0,0 @@
|
|
|
1
|
-
import { CommandResult } from './command-results';
|
|
2
|
-
/** Function type for handling command execution */
|
|
3
|
-
export type CommandHandler = (args: string[]) => Promise<CommandResult>;
|
|
4
|
-
/**
|
|
5
|
-
* Represents an argument that can be passed to a command
|
|
6
|
-
*/
|
|
7
|
-
export interface CommandArgument {
|
|
8
|
-
name: string;
|
|
9
|
-
description: string;
|
|
10
|
-
}
|
|
11
|
-
export interface CommandNodeParams {
|
|
12
|
-
fullPath: string[];
|
|
13
|
-
description: string;
|
|
14
|
-
parent?: CommandNode;
|
|
15
|
-
argument?: CommandArgument;
|
|
16
|
-
handler?: CommandHandler;
|
|
17
|
-
}
|
|
18
|
-
export interface CommandSignature {
|
|
19
|
-
signature: string[];
|
|
20
|
-
}
|
|
21
|
-
/**
|
|
22
|
-
* A no-op handler that returns an empty string. Used as the default handler
|
|
23
|
-
* for CommandNodes that don't specify a handler.
|
|
24
|
-
*/
|
|
25
|
-
export declare const NoopHandler: CommandHandler;
|
|
26
|
-
export declare class CommandNode {
|
|
27
|
-
private _fullPath;
|
|
28
|
-
private _description;
|
|
29
|
-
private _children;
|
|
30
|
-
private _argument?;
|
|
31
|
-
private _handler;
|
|
32
|
-
private _parent?;
|
|
33
|
-
private _signature?;
|
|
34
|
-
/**
|
|
35
|
-
* Creates a new CommandNode representing a command the user can enter. From a
|
|
36
|
-
* high level, a command is one or more words followed by an optional
|
|
37
|
-
* argument, and with an optional handler.
|
|
38
|
-
*
|
|
39
|
-
* @param params Configuration parameters for the node
|
|
40
|
-
* @param params.fullPath Complete path from root to this node (e.g., ['service', 'deploy'])
|
|
41
|
-
* @param params.description Human-readable description of the command
|
|
42
|
-
* @param params.parent Optional parent node in the command hierarchy
|
|
43
|
-
* @param params.handler Optional async function to execute when command is invoked
|
|
44
|
-
* @param params.argument Optional argument definition for the command
|
|
45
|
-
* @throws {Error} If fullPath is empty or undefined
|
|
46
|
-
*
|
|
47
|
-
*/
|
|
48
|
-
constructor(params: CommandNodeParams);
|
|
49
|
-
/**
|
|
50
|
-
* Gets the name of this command (last segment of the path)
|
|
51
|
-
*/
|
|
52
|
-
get name(): string;
|
|
53
|
-
/**
|
|
54
|
-
* Whether this is a leaf node (has no children)
|
|
55
|
-
*/
|
|
56
|
-
get isLeaf(): boolean;
|
|
57
|
-
/**
|
|
58
|
-
* Whether this command has a handler
|
|
59
|
-
*/
|
|
60
|
-
get hasHandler(): boolean;
|
|
61
|
-
/**
|
|
62
|
-
* Whether this command requires an argument
|
|
63
|
-
*/
|
|
64
|
-
get requiresArgument(): boolean;
|
|
65
|
-
/**
|
|
66
|
-
* Gets the parent node if it exists
|
|
67
|
-
*/
|
|
68
|
-
get parent(): CommandNode | undefined;
|
|
69
|
-
/**
|
|
70
|
-
* Gets the command's signature
|
|
71
|
-
*/
|
|
72
|
-
get signature(): string | undefined;
|
|
73
|
-
/**
|
|
74
|
-
* Sets the signature for this command based on the current command trie state
|
|
75
|
-
* @param trie The command trie to use for signature generation
|
|
76
|
-
*/
|
|
77
|
-
setSignature(trie: CommandTrie): void;
|
|
78
|
-
/**
|
|
79
|
-
* Gets the map of child commands
|
|
80
|
-
*/
|
|
81
|
-
get children(): ReadonlyMap<string, CommandNode>;
|
|
82
|
-
/**
|
|
83
|
-
* Whether this command has any children
|
|
84
|
-
*/
|
|
85
|
-
get hasChildren(): boolean;
|
|
86
|
-
/**
|
|
87
|
-
* Adds a child command
|
|
88
|
-
*/
|
|
89
|
-
addChild(segment: string, node: CommandNode): void;
|
|
90
|
-
/**
|
|
91
|
-
* Gets a child command by name
|
|
92
|
-
*/
|
|
93
|
-
getChild(name: string): CommandNode | undefined;
|
|
94
|
-
/**
|
|
95
|
-
* Gets the full path from root to this command
|
|
96
|
-
*/
|
|
97
|
-
get fullPath(): string[];
|
|
98
|
-
/**
|
|
99
|
-
* Gets the command's description
|
|
100
|
-
*/
|
|
101
|
-
get description(): string;
|
|
102
|
-
/**
|
|
103
|
-
* Gets the command's argument definition if it exists
|
|
104
|
-
*/
|
|
105
|
-
get argument(): CommandArgument | undefined;
|
|
106
|
-
/**
|
|
107
|
-
* Sets the command's argument definition
|
|
108
|
-
*/
|
|
109
|
-
set argument(value: CommandArgument | undefined);
|
|
110
|
-
/**
|
|
111
|
-
* Gets the command's handler
|
|
112
|
-
*/
|
|
113
|
-
get handler(): CommandHandler;
|
|
114
|
-
/**
|
|
115
|
-
* Sets the command's handler
|
|
116
|
-
*/
|
|
117
|
-
set handler(value: CommandHandler);
|
|
118
|
-
}
|
|
119
|
-
/**
|
|
120
|
-
* A trie data structure for managing hierarchical commands.
|
|
121
|
-
* Provides functionality for adding commands, retrieving commands,
|
|
122
|
-
* and getting command completions.
|
|
123
|
-
*/
|
|
124
|
-
export declare class CommandTrie {
|
|
125
|
-
private readonly _root;
|
|
126
|
-
/**
|
|
127
|
-
* Creates a new CommandTrie instance.
|
|
128
|
-
*/
|
|
129
|
-
constructor();
|
|
130
|
-
/**
|
|
131
|
-
* Adds a new command to the trie.
|
|
132
|
-
*
|
|
133
|
-
* @param params Parameters for the command.
|
|
134
|
-
* @param params.path The path segments for the command (e.g., ['service', 'deploy'])
|
|
135
|
-
* @param params.description Description of what the command does
|
|
136
|
-
* @param params.handler Optional function to execute when command is invoked
|
|
137
|
-
* @param params.argument Optional argument definition for the command
|
|
138
|
-
* @throws {Error} If attempting to add a duplicate leaf command or a subcommand to a leaf
|
|
139
|
-
*
|
|
140
|
-
*/
|
|
141
|
-
addCommand(params: Omit<ConstructorParameters<typeof CommandNode>[0], 'fullPath' | 'parent'> & {
|
|
142
|
-
path: string[];
|
|
143
|
-
}): void;
|
|
144
|
-
/**
|
|
145
|
-
* Retrieves a command from the trie.
|
|
146
|
-
*
|
|
147
|
-
* @param path The path of the command.
|
|
148
|
-
* @returns The command node or undefined if not found.
|
|
149
|
-
*/
|
|
150
|
-
getCommand(path: string[]): CommandNode | undefined;
|
|
151
|
-
/**
|
|
152
|
-
* Gets command completions for a given path.
|
|
153
|
-
*
|
|
154
|
-
* @param path The path to get completions for.
|
|
155
|
-
* @returns An array of completion strings.
|
|
156
|
-
*/
|
|
157
|
-
getCompletions(path: string[]): string[];
|
|
158
|
-
/**
|
|
159
|
-
* Executes a command with the given path and arguments.
|
|
160
|
-
* @param path The command path
|
|
161
|
-
* @param args Arguments to pass to the command handler
|
|
162
|
-
* @returns The command result or undefined if command not found
|
|
163
|
-
* @throws Error if command validation fails
|
|
164
|
-
*/
|
|
165
|
-
executeCommand(path: string[], args?: string[]): Promise<CommandResult | undefined>;
|
|
166
|
-
/**
|
|
167
|
-
* Gets the root commands in the trie.
|
|
168
|
-
*
|
|
169
|
-
* @returns An array of root command nodes.
|
|
170
|
-
*/
|
|
171
|
-
getRootCommands(): CommandNode[];
|
|
172
|
-
/**
|
|
173
|
-
* Gets the leaf commands in the trie.
|
|
174
|
-
*
|
|
175
|
-
* @returns An array of leaf command nodes.
|
|
176
|
-
*/
|
|
177
|
-
getLeafCommands(): CommandNode[];
|
|
178
|
-
/**
|
|
179
|
-
* Retrieves a command using its unique signature.
|
|
180
|
-
* A signature is the minimal sequence of prefixes that uniquely identifies a command.
|
|
181
|
-
*
|
|
182
|
-
* @param signature Array of minimal prefixes that uniquely identify the command
|
|
183
|
-
* @returns The matching command node or undefined if not found
|
|
184
|
-
*
|
|
185
|
-
* @example
|
|
186
|
-
* // Will match 'image random cat' command
|
|
187
|
-
* getCommandBySignature(['i', 'r', 'c'])
|
|
188
|
-
* // Will match 'user show' command (not ambiguous with 'user status')
|
|
189
|
-
* getCommandBySignature(['u', 'sh'])
|
|
190
|
-
*/
|
|
191
|
-
getCommandBySignature(signature: CommandSignature): CommandNode | undefined;
|
|
192
|
-
/**
|
|
193
|
-
* Generates a minimal unique signature for a command node.
|
|
194
|
-
* The signature consists of the shortest prefixes that uniquely identify each segment
|
|
195
|
-
* in the path from root to this node.
|
|
196
|
-
*
|
|
197
|
-
* @param command The command node to generate a signature for
|
|
198
|
-
* @returns Array of minimal prefixes that uniquely identify the command
|
|
199
|
-
*
|
|
200
|
-
* @example
|
|
201
|
-
* // For commands: ['image', 'random', 'cat'] and ['image', 'random', 'dog']
|
|
202
|
-
* buildSignatureForCommand(catCommand) // returns ['i', 'r', 'c']
|
|
203
|
-
* // For commands: ['user', 'show'] and ['user', 'status']
|
|
204
|
-
* buildSignatureForCommand(showCommand) // returns ['u', 'sh']
|
|
205
|
-
*/
|
|
206
|
-
buildSignatureForCommand(command: CommandNode): CommandSignature;
|
|
207
|
-
/**
|
|
208
|
-
* Validates the command trie structure for common errors.
|
|
209
|
-
*
|
|
210
|
-
* Performs the following validations:
|
|
211
|
-
* 1. Checks for duplicate command paths
|
|
212
|
-
* 2. Ensures non-leaf nodes (nodes with children) use NoopHandler
|
|
213
|
-
* 3. Ensures non-leaf nodes don't have arguments
|
|
214
|
-
* 4. Verifies all nodes have a handler (either custom or NoopHandler)
|
|
215
|
-
* 5. Validates command path uniqueness
|
|
216
|
-
*
|
|
217
|
-
* @returns An object containing:
|
|
218
|
-
* - isValid: boolean indicating if the trie is valid
|
|
219
|
-
* - errors: array of error messages describing any validation failures
|
|
220
|
-
*
|
|
221
|
-
* @example
|
|
222
|
-
* ```typescript
|
|
223
|
-
* const result = commandTrie.validate();
|
|
224
|
-
* if (!result.isValid) {
|
|
225
|
-
* console.error('Command trie validation failed:');
|
|
226
|
-
* result.errors.forEach(error => console.error(error));
|
|
227
|
-
* }
|
|
228
|
-
* ```
|
|
229
|
-
*/
|
|
230
|
-
/**
|
|
231
|
-
* Updates signatures for all nodes in the trie
|
|
232
|
-
*/
|
|
233
|
-
setSignatures(): void;
|
|
234
|
-
validate(): {
|
|
235
|
-
isValid: boolean;
|
|
236
|
-
errors: string[];
|
|
237
|
-
};
|
|
238
|
-
}
|
package/dist/src/index.d.ts
DELETED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/dist/{src/components → components}/Citadel/components/__tests__/AvailableCommands.test.d.ts
RENAMED
|
File without changes
|
/package/dist/{src/components → components}/Citadel/components/__tests__/CommandInput.test.d.ts
RENAMED
|
File without changes
|
/package/dist/{src/components → components}/Citadel/components/__tests__/CommandOutput.test.d.ts
RENAMED
|
File without changes
|
/package/dist/{src/components → components}/Citadel/components/__tests__/CommandOutputLine.test.d.ts
RENAMED
|
File without changes
|
|
File without changes
|
/package/dist/{src/components → components}/Citadel/config/__tests__/CitadelConfigContext.test.d.ts
RENAMED
|
File without changes
|
/package/dist/{src/components → components}/Citadel/hooks/__tests__/useCitadelState.test.d.ts
RENAMED
|
File without changes
|
/package/dist/{src/components → components}/Citadel/hooks/__tests__/useCommandHistory.test.d.ts
RENAMED
|
File without changes
|
/package/dist/{src/components → components}/Citadel/hooks/__tests__/useCommandParser.test.d.ts
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/dist/{src/components → components}/Citadel/storage/__tests__/LocalStorage.test.d.ts
RENAMED
|
File without changes
|
/package/dist/{src/components → components}/Citadel/storage/__tests__/MemoryStorage.test.d.ts
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|