mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-08 16:37:15 +00:00
Fixed #3802 - Improve folder structure for nuxt configurations
This commit is contained in:
parent
851950270b
commit
f5fe822afb
563 changed files with 1703 additions and 1095 deletions
58
components/lib/inputtext/InputText.d.ts
vendored
Executable file
58
components/lib/inputtext/InputText.d.ts
vendored
Executable file
|
@ -0,0 +1,58 @@
|
|||
/**
|
||||
*
|
||||
* InputText renders a text field to enter data.
|
||||
*
|
||||
* [Live Demo](https://www.primevue.org/inputtext/)
|
||||
*
|
||||
* @module inputtext
|
||||
*
|
||||
*/
|
||||
import { InputHTMLAttributes } from 'vue';
|
||||
import { ClassComponent, GlobalComponentConstructor, Nullable } from '../ts-helpers';
|
||||
|
||||
/**
|
||||
* Defines valid properties in InputText component.
|
||||
*/
|
||||
export interface InputTextProps extends InputHTMLAttributes {
|
||||
/**
|
||||
* Value of the component.
|
||||
*/
|
||||
modelValue?: Nullable<string>;
|
||||
}
|
||||
|
||||
/**
|
||||
* Defines valid slots in InputText component.
|
||||
*/
|
||||
export interface InputTextSlots {}
|
||||
|
||||
/**
|
||||
* Defines valid emits in InputText component.
|
||||
*/
|
||||
export interface InputTextEmits {
|
||||
/**
|
||||
* Emitted when the value changes.
|
||||
* @param {string} value - New value.
|
||||
*/
|
||||
'update:modelValue'(value: string | undefined): void;
|
||||
}
|
||||
|
||||
/**
|
||||
* **PrimeVue - InputText**
|
||||
*
|
||||
* _InputText renders a text field to enter data._
|
||||
*
|
||||
* [Live Demo](https://www.primevue.org/inputtext/)
|
||||
* --- ---
|
||||
* 
|
||||
*
|
||||
* @group Component
|
||||
*/
|
||||
declare class InputText extends ClassComponent<InputTextProps, InputTextSlots, InputTextEmits> {}
|
||||
|
||||
declare module '@vue/runtime-core' {
|
||||
interface GlobalComponents {
|
||||
InputText: GlobalComponentConstructor<InputText>;
|
||||
}
|
||||
}
|
||||
|
||||
export default InputText;
|
Loading…
Add table
Add a link
Reference in a new issue