From 19c92bca42dfacca64762db680c158c2580f60a8 Mon Sep 17 00:00:00 2001 From: melloware Date: Sat, 10 Aug 2024 09:27:12 -0400 Subject: [PATCH] Fix #7016: Revert CascadeSelect type for input --- components/lib/cascadeselect/cascadeselect.d.ts | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/components/lib/cascadeselect/cascadeselect.d.ts b/components/lib/cascadeselect/cascadeselect.d.ts index 62b5cc1366..7dc3f9d7b0 100644 --- a/components/lib/cascadeselect/cascadeselect.d.ts +++ b/components/lib/cascadeselect/cascadeselect.d.ts @@ -12,7 +12,6 @@ import { CSSTransitionProps as ReactCSSTransitionProps } from 'react-transition- import { APIOptions } from '../api/api'; import { ComponentHooks } from '../componentbase/componentbase'; import { CSSTransitionProps } from '../csstransition'; -import { InputText, InputTextPassThroughOptions } from '../inputtext/inputtext'; import { PassThroughOptions } from '../passthrough'; import { SelectItemOptionsType } from '../selectitem/selectitem'; import { IconType, PassThroughType } from '../utils/utils'; @@ -78,7 +77,7 @@ export interface CascadeSelectPassThroughOptions { /** * Uses to pass attributes to the input's DOM element. */ - input?: InputTextPassThroughOptions; + input?: CascadeSelectPassThroughType>; /** * Uses to pass attributes to the label's DOM element. */ @@ -353,9 +352,9 @@ export declare class CascadeSelect extends React.Component