@eagami/ui 5.30.1 → 5.31.0
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/fesm2022/eagami-ui.mjs +78 -27
- package/fesm2022/eagami-ui.mjs.map +1 -1
- package/package.json +1 -1
- package/types/eagami-ui.d.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@eagami/ui",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.31.0",
|
|
4
4
|
"description": "Lightweight, accessible, themeable Angular UI component library and icon set built on CSS custom properties",
|
|
5
5
|
"author": "Michal Wiraszka <michal@eagami.com>",
|
|
6
6
|
"license": "MIT",
|
package/types/eagami-ui.d.ts
CHANGED
|
@@ -2846,7 +2846,7 @@ declare class MultiSelectComponent implements ControlValueAccessor {
|
|
|
2846
2846
|
/** Every option in the order given, flattened across groups. */
|
|
2847
2847
|
private readonly flatOptions;
|
|
2848
2848
|
private readonly filteredGroups;
|
|
2849
|
-
/** Options matching the current search term (case-insensitive substring on label). */
|
|
2849
|
+
/** Options matching the current search term (case- and accent-insensitive substring on label). */
|
|
2850
2850
|
readonly filteredOptions: _angular_core.Signal<readonly SelectOption[]>;
|
|
2851
2851
|
/** Groups to render, each option carrying its index into `filteredOptions`. */
|
|
2852
2852
|
protected readonly renderedGroups: _angular_core.Signal<RenderedGroup[]>;
|