From f101f1379d0936186d2bf070f0e29f3306cb7c98 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tu=C4=9F=C3=A7e=20K=C3=BC=C3=A7=C3=BCko=C4=9Flu?= Date: Wed, 10 May 2023 01:10:31 +0300 Subject: [PATCH] Update PickList.d.ts --- components/lib/picklist/PickList.d.ts | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/components/lib/picklist/PickList.d.ts b/components/lib/picklist/PickList.d.ts index c1ca36c9b..16de1cca7 100755 --- a/components/lib/picklist/PickList.d.ts +++ b/components/lib/picklist/PickList.d.ts @@ -197,6 +197,19 @@ export interface PickListPassThroughAttributes { [key: string]: any; } +export interface PickListFocusedState { + /** + * Current source list's focused state as a boolean. + * @defaultValue false + */ + sourceList: boolean; + /** + * Current target list's focused state as a boolean. + * @defaultValue false + */ + targetList: boolean; +} + /** * Defines current inline state in PickList component. */ @@ -211,7 +224,7 @@ export interface PickListState { d_selection: any[]; /** * Current focused state as a boolean. - * @defaultValue false + * @defaultValue [false, false] */ focused: boolean; /** @@ -219,6 +232,11 @@ export interface PickListState { * @defaultvalue -1 */ focusedOptionIndex: number; + /** + * Current view change state as a boolean. + * @defaultValue false + */ + viewChanged: boolean; } /**