Skip to content

Commit

Permalink
Fix primefaces#5132: InputNumber icon TS def
Browse files Browse the repository at this point in the history
  • Loading branch information
melloware committed Oct 21, 2023
1 parent acfb9aa commit f5f6b93
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions components/lib/inputnumber/inputnumber.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@
*
*/
import * as React from 'react';
import { ComponentHooks } from '../componentbase/componentbase';
import { InputText, InputTextPassThroughOptions } from '../inputtext/inputtext';
import { PassThroughOptions } from '../passthrough';
import { TooltipPassThroughOptions } from '../tooltip/tooltip';
import { TooltipOptions } from '../tooltip/tooltipoptions';
import { FormEvent } from '../ts-helpers';
import { PassThroughType } from '../utils/utils';
import { PassThroughOptions } from '../passthrough';
import { ComponentHooks } from '../componentbase/componentbase';
import { IconType, PassThroughType } from '../utils/utils';

export declare type InputNumberPassThroughType<T> = PassThroughType<T, InputNumberPassThroughMethodOptions>;

Expand Down Expand Up @@ -138,11 +138,11 @@ export interface InputNumberProps extends Omit<React.DetailedHTMLProps<React.HTM
/**
* Style class of the increment button.
*/
incrementButtonIcon?: InputNumberPassThroughType<React.HTMLAttributes<HTMLSpanElement>>;
incrementButtonIcon?: IconType<InputNumberProps> | undefined;
/**
* Style class of the decrement button.
*/
decrementButtonIcon?: InputNumberPassThroughType<React.HTMLAttributes<HTMLSpanElement>>;
decrementButtonIcon?: IconType<InputNumberProps> | undefined;
/**
* Locale to be used in formatting.
*/
Expand Down

0 comments on commit f5f6b93

Please sign in to comment.