primevue-mirror/components/lib/terminal/Terminal.d.ts

181 lines
4.4 KiB
TypeScript
Raw Normal View History

2023-03-01 14:13:26 +00:00
/**
*
* Terminal is a text based user interface.
*
* [Live Demo](https://www.primevue.org/terminal)
*
* @module terminal
*
*/
2023-07-06 11:17:08 +00:00
import { ComponentHooks } from '../basecomponent';
2023-09-05 08:50:46 +00:00
import { PassThroughOptions } from '../passthrough';
import { DefineComponent, DesignToken, EmitFn, GlobalComponentConstructor, PassThrough } from '../ts-helpers';
2022-09-06 12:03:37 +00:00
export declare type TerminalPassThroughOptionType = TerminalPassThroughAttributes | ((options: TerminalPassThroughMethodOptions) => TerminalPassThroughAttributes | string) | string | null | undefined;
2023-04-24 08:08:08 +00:00
/**
* Custom passthrough(pt) option method.
*/
export interface TerminalPassThroughMethodOptions {
/**
* Defines instance.
*/
2023-07-06 12:01:33 +00:00
instance: any;
/**
* Defines valid properties.
*/
2023-04-24 08:08:08 +00:00
props: TerminalProps;
/**
* Defines current inline state.
*/
2023-04-24 08:08:08 +00:00
state: TerminalState;
/**
* Defines valid attributes.
*/
attrs: any;
/**
* Defines parent options.
*/
parent: any;
2023-09-05 08:50:46 +00:00
/**
* Defines passthrough(pt) options in global config.
*/
global: object | undefined;
2023-04-24 08:08:08 +00:00
}
/**
* Custom passthrough(pt) options.
* @see {@link TerminalProps.pt}
*/
export interface TerminalPassThroughOptions {
/**
* Used to pass attributes to the root's DOM element.
2023-04-24 08:08:08 +00:00
*/
root?: TerminalPassThroughOptionType;
/**
* Used to pass attributes to the welcome message's DOM element.
2023-04-24 08:08:08 +00:00
*/
welcomeMessage?: TerminalPassThroughOptionType;
/**
* Used to pass attributes to the content's DOM element.
2023-04-24 08:08:08 +00:00
*/
content?: TerminalPassThroughOptionType;
/**
2023-08-01 14:01:12 +00:00
* Used to pass attributes to the commands' DOM element.
2023-04-24 08:08:08 +00:00
*/
commands?: TerminalPassThroughOptionType;
/**
* Used to pass attributes to the prompt's DOM element.
2023-04-24 08:08:08 +00:00
*/
prompt?: TerminalPassThroughOptionType;
/**
* Used to pass attributes to the command's DOM element.
2023-04-24 08:08:08 +00:00
*/
command?: TerminalPassThroughOptionType;
/**
* Used to pass attributes to the response's DOM element.
2023-04-24 08:08:08 +00:00
*/
response?: TerminalPassThroughOptionType;
/**
* Used to pass attributes to the container's DOM element.
2023-04-24 08:08:08 +00:00
*/
container?: TerminalPassThroughOptionType;
/**
* Used to pass attributes to the command text's DOM element.
2023-04-24 08:08:08 +00:00
*/
commandText?: TerminalPassThroughOptionType;
2023-07-06 11:09:01 +00:00
/**
2023-11-07 06:16:39 +00:00
* Used to manage all lifecycle hooks.
2023-07-06 11:09:01 +00:00
* @see {@link BaseComponent.ComponentHooks}
*/
hooks?: ComponentHooks;
2023-04-24 08:08:08 +00:00
}
/**
* Custom passthrough attributes for each DOM elements
*/
export interface TerminalPassThroughAttributes {
[key: string]: any;
}
/**
* Defines current inline state in Terminal component.
*/
export interface TerminalState {
/**
* Current command text as a string.
*/
commandText: string;
/**
* Current commands as an array.
*/
commands: string[];
}
2023-03-01 14:13:26 +00:00
/**
* Defines valid properties in Terminal component.
*/
2022-09-06 12:03:37 +00:00
export interface TerminalProps {
/**
* Initial text to display on terminal.
*/
welcomeMessage?: string | undefined;
/**
* Prompt text for each command.
*/
prompt?: string | undefined;
/**
* It generates scoped CSS variables using design tokens for the component.
*/
dt?: DesignToken<any>;
2023-04-24 08:08:08 +00:00
/**
2023-08-01 14:01:12 +00:00
* Used to pass attributes to DOM elements inside the component.
2023-04-24 08:08:08 +00:00
* @type {TerminalPassThroughOptions}
*/
pt?: PassThrough<TerminalPassThroughOptions>;
2023-09-05 08:50:46 +00:00
/**
* Used to configure passthrough(pt) options of the component.
* @type {PassThroughOptions}
*/
ptOptions?: PassThroughOptions;
2023-05-24 12:53:29 +00:00
/**
* When enabled, it removes component related styles in the core.
* @defaultValue false
*/
unstyled?: boolean;
2022-09-06 12:03:37 +00:00
}
2023-03-01 14:13:26 +00:00
/**
* Defines valid slots in Terminal component.
*/
2022-09-14 11:26:01 +00:00
export interface TerminalSlots {}
2022-09-06 12:03:37 +00:00
2023-03-01 14:13:26 +00:00
/**
* Defines valid emits in Terminal component.
*/
2024-05-16 14:05:43 +00:00
export interface TerminalEmitsOptions {}
export declare type TerminalEmits = EmitFn<TerminalEmitsOptions>;
2022-09-06 12:03:37 +00:00
2023-03-01 14:13:26 +00:00
/**
* **PrimeVue - Terminal**
*
* _Terminal is a text based user interface._
*
* [Live Demo](https://www.primevue.org/terminal/)
* --- ---
* ![Primevue](https://primefaces.org/cdn/primevue/images/logo-100.png)
*
* @group Component
*
2023-03-01 14:13:26 +00:00
*/
declare const Terminal: DefineComponent<TerminalProps, TerminalSlots, TerminalEmits>;
2022-09-06 12:03:37 +00:00
declare module 'vue' {
export interface GlobalComponents {
Terminal: GlobalComponentConstructor<TerminalProps, TerminalSlots, TerminalEmits>;
2022-09-06 12:03:37 +00:00
}
}
export default Terminal;