Skip to content

Commit d17817d

Browse files
yordan-stgjulivan
authored andcommitted
chore: update changelog
1 parent 7b46a63 commit d17817d

File tree

3 files changed

+10
-6
lines changed

3 files changed

+10
-6
lines changed

packages/pluggableWidgets/combobox-web/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66

77
## [Unreleased]
88

9+
### Changed
10+
11+
- Moved the debounce interval for filtering operations from the Events tab to Advanced tab.
12+
913
## [2.5.1] - 2025-09-19
1014

1115
### Fixed

packages/pluggableWidgets/combobox-web/src/Combobox.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -336,10 +336,6 @@
336336
<actionVariable key="filterInput" caption="Filter Input" type="String" />
337337
</actionVariables>
338338
</property>
339-
<property key="filterInputDebounceInterval" type="integer" required="true" defaultValue="200">
340-
<caption>Debounce interval</caption>
341-
<description>The debounce interval for each filter input change event triggered in milliseconds.</description>
342-
</property>
343339
</propertyGroup>
344340
<propertyGroup caption="Accessibility">
345341
<propertyGroup caption="Accessibility">
@@ -438,6 +434,10 @@
438434
<enumerationValue key="none">None</enumerationValue>
439435
</enumerationValues>
440436
</property>
437+
<property key="filterInputDebounceInterval" type="integer" required="true" defaultValue="200">
438+
<caption>Debounce interval</caption>
439+
<description>The debounce interval for each filter input change event triggered in milliseconds.</description>
440+
</property>
441441
</propertyGroup>
442442
</propertyGroup>
443443
</properties>

packages/pluggableWidgets/combobox-web/typings/ComboboxProps.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,6 @@ export interface ComboboxContainerProps {
9090
onEnterEvent?: ActionValue;
9191
onLeaveEvent?: ActionValue;
9292
onChangeFilterInputEvent?: ActionValue<{ filterInput: Option<string> }>;
93-
filterInputDebounceInterval: number;
9493
ariaRequired: DynamicValue<boolean>;
9594
ariaLabel?: DynamicValue<string>;
9695
clearButtonAriaLabel?: DynamicValue<string>;
@@ -102,6 +101,7 @@ export interface ComboboxContainerProps {
102101
loadingType: LoadingTypeEnum;
103102
selectedItemsSorting: SelectedItemsSortingEnum;
104103
filterType: FilterTypeEnum;
104+
filterInputDebounceInterval: number;
105105
}
106106

107107
export interface ComboboxPreviewProps {
@@ -148,7 +148,6 @@ export interface ComboboxPreviewProps {
148148
onEnterEvent: {} | null;
149149
onLeaveEvent: {} | null;
150150
onChangeFilterInputEvent: {} | null;
151-
filterInputDebounceInterval: number | null;
152151
ariaRequired: string;
153152
ariaLabel: string;
154153
clearButtonAriaLabel: string;
@@ -160,4 +159,5 @@ export interface ComboboxPreviewProps {
160159
loadingType: LoadingTypeEnum;
161160
selectedItemsSorting: SelectedItemsSortingEnum;
162161
filterType: FilterTypeEnum;
162+
filterInputDebounceInterval: number | null;
163163
}

0 commit comments

Comments
 (0)