primevue-mirror/components/lib/inputtext/InputText.d.ts

89 lines
2.1 KiB
TypeScript
Raw Normal View History

2023-03-01 08:50:38 +00:00
/**
*
* InputText renders a text field to enter data.
*
* [Live Demo](https://www.primevue.org/inputtext/)
*
* @module inputtext
*
*/
2022-09-06 12:03:37 +00:00
import { InputHTMLAttributes } from 'vue';
import { ClassComponent, GlobalComponentConstructor, Nullable } from '../ts-helpers';
2023-05-05 12:53:35 +00:00
export declare type InputTextPassThroughOptionType = InputTextPassThroughAttributes | null | undefined;
/**
* Custom passthrough(pt) options.
* @see {@link InputTextProps.pt}
*/
export interface InputTextPassThroughOptions {
/**
* Uses to pass attributes to the root's DOM element.
*/
root?: InputTextPassThroughOptionType;
}
/**
* Custom passthrough attributes for each DOM elements
*/
export interface InputTextPassThroughAttributes {
[key: string]: any;
}
2023-03-01 08:50:38 +00:00
/**
* Defines valid properties in InputText component.
*/
2022-09-06 12:03:37 +00:00
export interface InputTextProps extends InputHTMLAttributes {
/**
* Value of the component.
*/
modelValue?: Nullable<string>;
2023-05-05 12:53:35 +00:00
/**
* Uses to pass attributes to DOM elements inside the component.
* @type {InputTextPassThroughOptions}
*/
pt?: InputTextPassThroughOptions;
2023-05-24 11:23:36 +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 08:50:38 +00:00
/**
* Defines valid slots in InputText component.
*/
2022-09-14 11:26:01 +00:00
export interface InputTextSlots {}
2022-09-06 12:03:37 +00:00
2023-03-01 08:50:38 +00:00
/**
* Defines valid emits in InputText component.
*/
export interface InputTextEmits {
2022-09-06 12:03:37 +00:00
/**
* Emitted when the value changes.
* @param {string} value - New value.
*/
2023-03-01 08:50:38 +00:00
'update:modelValue'(value: string | undefined): void;
}
2022-09-06 12:03:37 +00:00
2023-03-01 08:50:38 +00:00
/**
* **PrimeVue - InputText**
*
* _InputText renders a text field to enter data._
*
* [Live Demo](https://www.primevue.org/inputtext/)
* --- ---
* ![PrimeVue](https://primefaces.org/cdn/primevue/images/logo-100.png)
*
* @group Component
*/
2023-03-01 14:48:23 +00:00
declare class InputText extends ClassComponent<InputTextProps, InputTextSlots, InputTextEmits> {}
2022-09-06 12:03:37 +00:00
declare module '@vue/runtime-core' {
interface GlobalComponents {
2022-09-14 11:26:01 +00:00
InputText: GlobalComponentConstructor<InputText>;
2022-09-06 12:03:37 +00:00
}
}
export default InputText;