mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 00:42:36 +00:00
Fixed typo
This commit is contained in:
parent
6594502d78
commit
56e3f23eb3
184 changed files with 2347 additions and 2347 deletions
20
components/lib/inputnumber/InputNumber.d.ts
vendored
20
components/lib/inputnumber/InputNumber.d.ts
vendored
|
@ -60,30 +60,30 @@ export interface InputNumberBlurEvent {
|
|||
*/
|
||||
export interface InputNumberPassThroughOptions {
|
||||
/**
|
||||
* Uses to pass attributes to the root's DOM element.
|
||||
* Used to pass attributes to the root's DOM element.
|
||||
*/
|
||||
root?: InputNumberPassThroughOptionType;
|
||||
/**
|
||||
* Uses to pass attributes to the Input component.
|
||||
* Used to pass attributes to the Input component.
|
||||
* @see {@link InputTextPassThroughOptionType}
|
||||
*/
|
||||
input?: InputTextPassThroughOptionType;
|
||||
/**
|
||||
* Uses to pass attributes to the button group's DOM element.
|
||||
* Used to pass attributes to the button group's DOM element.
|
||||
*/
|
||||
buttonGroup?: InputNumberPassThroughOptionType;
|
||||
/**
|
||||
* Uses to pass attributes to the Button component.
|
||||
* Used to pass attributes to the Button component.
|
||||
* @see {@link ButtonPassThroughOptions}
|
||||
*/
|
||||
incrementButton?: ButtonPassThroughOptionType;
|
||||
/**
|
||||
* Uses to pass attributes to the Button component.
|
||||
* Used to pass attributes to the Button component.
|
||||
* @see {@link ButtonPassThroughOptions}
|
||||
*/
|
||||
decrementButton?: ButtonPassThroughOptionType;
|
||||
/**
|
||||
* Uses to manage all lifecycle hooks
|
||||
* Used to manage all lifecycle hooks
|
||||
* @see {@link BaseComponent.ComponentHooks}
|
||||
*/
|
||||
hooks?: ComponentHooks;
|
||||
|
@ -250,15 +250,15 @@ export interface InputNumberProps {
|
|||
*/
|
||||
inputStyle?: object | undefined;
|
||||
/**
|
||||
* Uses to pass all properties of the HTMLInputElement to the focusable input element inside the component.
|
||||
* Used to pass all properties of the HTMLInputElement to the focusable input element inside the component.
|
||||
*/
|
||||
inputProps?: InputHTMLAttributes | undefined;
|
||||
/**
|
||||
* Uses to pass all properties of the HTMLButtonElement to increment button inside the component.
|
||||
* Used to pass all properties of the HTMLButtonElement to increment button inside the component.
|
||||
*/
|
||||
incrementButtonProps?: ButtonHTMLAttributes | undefined;
|
||||
/**
|
||||
* Uses to pass all properties of the HTMLButtonElement to decrement button inside the component.
|
||||
* Used to pass all properties of the HTMLButtonElement to decrement button inside the component.
|
||||
*/
|
||||
decrementButtonProps?: ButtonHTMLAttributes | undefined;
|
||||
/**
|
||||
|
@ -270,7 +270,7 @@ export interface InputNumberProps {
|
|||
*/
|
||||
'aria-label'?: string | undefined;
|
||||
/**
|
||||
* Uses to pass attributes to DOM elements inside the component.
|
||||
* Used to pass attributes to DOM elements inside the component.
|
||||
* @type {InputNumberPassThroughOptions}
|
||||
*/
|
||||
pt?: InputNumberPassThroughOptions;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue