Merge branch 'master' of https://github.com/primefaces/primevue
commit
2003071593
|
@ -10,7 +10,7 @@
|
||||||
import { TextareaHTMLAttributes } from 'vue';
|
import { TextareaHTMLAttributes } from 'vue';
|
||||||
import { ComponentHooks } from '../basecomponent';
|
import { ComponentHooks } from '../basecomponent';
|
||||||
import { PassThroughOptions } from '../passthrough';
|
import { PassThroughOptions } from '../passthrough';
|
||||||
import { ClassComponent, GlobalComponentConstructor, PassThrough } from '../ts-helpers';
|
import { ClassComponent, GlobalComponentConstructor, Nullable, PassThrough } from '../ts-helpers';
|
||||||
|
|
||||||
export declare type TextareaPassThroughOptionType = TextareaPassThroughAttributes | ((options: TextareaPassThroughMethodOptions) => TextareaPassThroughAttributes | string) | string | null | undefined;
|
export declare type TextareaPassThroughOptionType = TextareaPassThroughAttributes | ((options: TextareaPassThroughMethodOptions) => TextareaPassThroughAttributes | string) | string | null | undefined;
|
||||||
|
|
||||||
|
@ -91,7 +91,7 @@ export interface TextareaProps extends TextareaHTMLAttributes {
|
||||||
/**
|
/**
|
||||||
* Value of the component.
|
* Value of the component.
|
||||||
*/
|
*/
|
||||||
modelValue?: string | undefined;
|
modelValue?: Nullable<string>;
|
||||||
/**
|
/**
|
||||||
* When present, height of textarea changes as being typed.
|
* When present, height of textarea changes as being typed.
|
||||||
* @defaultValue false
|
* @defaultValue false
|
||||||
|
|
|
@ -51278,7 +51278,7 @@
|
||||||
"name": "modelValue",
|
"name": "modelValue",
|
||||||
"optional": true,
|
"optional": true,
|
||||||
"readonly": false,
|
"readonly": false,
|
||||||
"type": "string",
|
"type": "Nullable<string>",
|
||||||
"default": "",
|
"default": "",
|
||||||
"description": "Value of the component."
|
"description": "Value of the component."
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue