Skip to content

Commit

Permalink
Fixed Issue primefaces#2274
Browse files Browse the repository at this point in the history
  • Loading branch information
guhyeon77 committed Sep 3, 2021
1 parent 25d4347 commit b1afd63
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/colorpicker/ColorPicker.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ interface ColorPickerChangeParams {
target: ColorPickerChangeTargetOptions;
}

export interface ColorPickerProps extends Omit<React.DetailedHTMLProps<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, 'onChange' | 'value'|'ref'> {
export interface ColorPickerProps extends Omit<React.DetailedHTMLProps<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, 'onChange' | 'value' | 'ref'> {
inputRef?: React.Ref<HTMLInputElement>;
value?: any;
defaultColor?: string;
Expand Down
2 changes: 1 addition & 1 deletion src/components/inputtextarea/InputTextarea.d.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import * as React from 'react';
import TooltipOptions from '../tooltip/tooltipoptions';

export interface InputTextareaProps extends React.DetailedHTMLProps<React.TextareaHTMLAttributes<HTMLTextAreaElement>, HTMLTextAreaElement> {
export interface InputTextareaProps extends Omit<React.DetailedHTMLProps<React.TextareaHTMLAttributes<HTMLTextAreaElement>, HTMLTextAreaElement>, 'ref'> {
autoResize?: boolean;
tooltip?: string;
tooltipOptions?: TooltipOptions;
Expand Down

0 comments on commit b1afd63

Please sign in to comment.