@ornikar/kitt-universal 25.38.1 → 25.38.2

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
@@ -3,6 +3,15 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [25.38.2](https://github.com/ornikar/kitt/compare/@ornikar/kitt-universal@25.38.1...@ornikar/kitt-universal@25.38.2) (2025-01-08)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * only render autocomplete empty element with no elements [no issue] ([#2524](https://github.com/ornikar/kitt/issues/2524)) ([d5004e9](https://github.com/ornikar/kitt/commit/d5004e9649f982a15a5eb15b6abc8f320298404d))
12
+
13
+
14
+
6
15
  ## [25.38.1](https://github.com/ornikar/kitt/compare/@ornikar/kitt-universal@25.38.0...@ornikar/kitt-universal@25.38.1) (2024-12-18)
7
16
 
8
17
  **Note:** Version bump only for package @ornikar/kitt-universal
@@ -5258,7 +5258,7 @@ function Autocomplete(_ref) {
5258
5258
  children: child
5259
5259
  })
5260
5260
  }), itemProps.id);
5261
- }), errorElement, emptyResultsElement]
5261
+ }), errorElement, currentItems.length === 0 ? emptyResultsElement : null]
5262
5262
  }) : null
5263
5263
  }))]
5264
5264
  }));