@simoncomputing/mui-bueno-v3 0.2.4 → 0.2.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md
CHANGED
|
@@ -11,6 +11,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
11
11
|
- Minor increment --> singlular/minor changes. Minimal breaking changes.
|
|
12
12
|
- Patch increment --> singlular/minor changes. Zero breaking changes.
|
|
13
13
|
|
|
14
|
+
## [0.2.5] - 2026-03-05
|
|
15
|
+
|
|
16
|
+
### Changed
|
|
17
|
+
- Update dynamic autocomplete with debounceTimeout property (default of 400ms)
|
|
18
|
+
- Update Autocomplete and Select input components to use space bar for selecting values
|
|
19
|
+
|
|
14
20
|
## [0.1.2] - 2025-07-09
|
|
15
21
|
|
|
16
22
|
### Changed
|
package/dist/components/Form/Inputs/Autocomplete/DynamicAutocomplete/DynamicAutocomplete.d.ts
CHANGED
|
@@ -22,6 +22,11 @@ export type DynamicAutocompleteProps<T> = {
|
|
|
22
22
|
* @default the message defined in `noOptionsText` is used
|
|
23
23
|
*/
|
|
24
24
|
preFilterMessage?: string;
|
|
25
|
+
/**
|
|
26
|
+
* Time in milliseconds to wait after the last keystroke before hitting the API.
|
|
27
|
+
* @default 400
|
|
28
|
+
*/
|
|
29
|
+
debounceTimeout?: number;
|
|
25
30
|
} & Omit<AutocompleteProps<T>, 'options' | 'useFieldAsValue'>;
|
|
26
31
|
/**
|
|
27
32
|
* Like a normal Autocomplete, but filters the options as the user types (intended for server-side filtering).
|