primevue-mirror/components/lib/textarea/Textarea.d.ts

146 lines
3.6 KiB
TypeScript
Raw Normal View History

2023-03-01 11:14:38 +00:00
/**
*
* Textarea is a multi-line text input element.
*
* [Live Demo](https://www.primevue.org/textarea/)
*
* @module textarea
*
*/
2022-09-06 12:03:37 +00:00
import { TextareaHTMLAttributes } from 'vue';
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 { ClassComponent, GlobalComponentConstructor, PassThrough } from '../ts-helpers';
2022-09-06 12:03:37 +00:00
export declare type TextareaPassThroughOptionType = TextareaPassThroughAttributes | ((options: TextareaPassThroughMethodOptions) => TextareaPassThroughAttributes | string) | string | null | undefined;
2023-05-07 06:29:10 +00:00
/**
* Custom passthrough(pt) option method.
*/
export interface TextareaPassThroughMethodOptions {
/**
* Defines instance.
*/
2023-07-06 12:01:33 +00:00
instance: any;
/**
* Defines valid properties.
*/
2023-05-07 06:29:10 +00:00
props: TextareaProps;
/**
* Defines current options.
*/
context: TextareaContext;
2023-09-05 08:50:46 +00:00
/**
* Defines passthrough(pt) options in global config.
*/
global: object | undefined;
2023-05-07 06:29:10 +00:00
}
/**
* Custom passthrough(pt) options.
* @see {@link TextareaProps.pt}
*/
export interface TextareaPassThroughOptions {
/**
2023-08-01 14:01:12 +00:00
* Used to pass attributes to the root's DOM element.
2023-05-07 06:29:10 +00:00
*/
root?: TextareaPassThroughOptionType;
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-05-07 06:29:10 +00:00
}
/**
* Custom passthrough attributes for each DOM elements
*/
export interface TextareaPassThroughAttributes {
[key: string]: any;
}
/**
* Defines current options in Textarea component.
*/
export interface TextareaContext {
/**
* Current filled state of the component as a boolean.
* @defaultValue false
*/
filled: boolean;
/**
* Current disabled state of the component as a boolean.
* @defaultValue false
*/
disabled: boolean;
}
2023-03-01 11:14:38 +00:00
/**
* Defines valid properties in Textarea component. In addition to these, all properties of TextareaHTMLAttributes can be used in this component.
* @extends TextareaHTMLAttributes
*/
2022-09-06 12:03:37 +00:00
export interface TextareaProps extends TextareaHTMLAttributes {
/**
* Value of the component.
*/
modelValue?: string | undefined;
/**
* When present, height of textarea changes as being typed.
2023-03-10 14:00:58 +00:00
* @defaultValue false
2022-09-06 12:03:37 +00:00
*/
autoResize?: boolean | undefined;
2023-05-07 06:29:10 +00:00
/**
2023-08-01 14:01:12 +00:00
* Used to pass attributes to DOM elements inside the component.
2023-05-07 06:29:10 +00:00
* @type {TextareaPassThroughOptions}
*/
pt?: PassThrough<TextareaPassThroughOptions>;
2023-09-05 08:50:46 +00:00
/**
* Used to configure passthrough(pt) options of the component.
* @type {PassThroughOptions}
*/
ptOptions?: PassThroughOptions;
2023-05-24 14:15:21 +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 11:14:38 +00:00
/**
* Defines valid slots in Textarea component.
*/
2022-09-14 11:26:01 +00:00
export interface TextareaSlots {}
2022-09-06 12:03:37 +00:00
2023-03-01 11:14:38 +00:00
/**
* Defines valid emits in Textarea component.
*/
export interface TextareaEmits {
2022-09-06 12:03:37 +00:00
/**
* Emitted when the value changes.
* @param {string} value - New value.
*/
'update:modelValue': (value: string) => void;
2023-03-01 11:14:38 +00:00
}
2022-09-06 12:03:37 +00:00
2023-03-01 11:14:38 +00:00
/**
* **PrimeVue - Textarea**
*
* _Textarea is a multi-line text input element._
*
* [Live Demo](https://www.primevue.org/textarea/)
* --- ---
2023-03-03 10:55:20 +00:00
* ![PrimeVue](https://primefaces.org/cdn/primevue/images/logo-100.png)
2023-03-01 11:14:38 +00:00
*
* @group Component
*
*/
2022-09-14 11:26:01 +00:00
declare class Textarea extends ClassComponent<TextareaProps, TextareaSlots, TextareaEmits> {}
2022-09-06 12:03:37 +00:00
declare module '@vue/runtime-core' {
interface GlobalComponents {
2022-09-14 11:26:01 +00:00
Textarea: GlobalComponentConstructor<Textarea>;
2022-09-06 12:03:37 +00:00
}
}
export default Textarea;