@ornikar/kitt-universal 26.3.1-late-ocean.fcd36361858696a81c52c40672737eeca6e22f42.0 → 26.3.1-late-ocean.925ed78a943b3f065de5c42a9ad1d6439fa2bf7e.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/CHANGELOG.md +6 -1
- package/dist/index-node-22.17.cjs.web.js +1 -1
- package/dist/index-node-22.17.cjs.web.js.map +1 -1
- package/dist/index-node-22.17.es.web.mjs +1 -1
- package/dist/index-node-22.17.es.web.mjs.map +1 -1
- package/dist/index.es.web.js +1 -1
- package/dist/index.es.web.js.map +1 -1
- package/dist/tsbuildinfo +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
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
|
-
## [26.3.1-late-ocean.
|
|
6
|
+
## [26.3.1-late-ocean.925ed78a943b3f065de5c42a9ad1d6439fa2bf7e.0](https://github.com/ornikar/kitt/compare/@ornikar/kitt-universal@26.2.0...@ornikar/kitt-universal@26.3.1-late-ocean.925ed78a943b3f065de5c42a9ad1d6439fa2bf7e.0) (2025-09-10)
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
### ⚠ BREAKING CHANGES
|
|
@@ -18,6 +18,11 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
18
18
|
* upgrade to Expo 51 OSE-18541 ([#2613](https://github.com/ornikar/kitt/issues/2613)) ([ea9938a](https://github.com/ornikar/kitt/commit/ea9938a3219bcd82e7bbea585f5b7083975351b2))
|
|
19
19
|
|
|
20
20
|
|
|
21
|
+
### Bug Fixes
|
|
22
|
+
|
|
23
|
+
* don't throw when picker used 0 integer as a value [no issue] ([#2684](https://github.com/ornikar/kitt/issues/2684)) ([925ed78](https://github.com/ornikar/kitt/commit/925ed78a943b3f065de5c42a9ad1d6439fa2bf7e))
|
|
24
|
+
|
|
25
|
+
|
|
21
26
|
|
|
22
27
|
## [26.3.0](https://github.com/ornikar/kitt/compare/@ornikar/kitt-universal@26.2.0...@ornikar/kitt-universal@26.3.0) (2025-07-28)
|
|
23
28
|
|
|
@@ -11302,7 +11302,7 @@ function Picker({
|
|
|
11302
11302
|
paddingY: "kitt.2",
|
|
11303
11303
|
children: childrenArray.map((child, index) => {
|
|
11304
11304
|
const currentValue = items[index];
|
|
11305
|
-
if (
|
|
11305
|
+
if (currentValue === undefined) throw new Error(`Picker: No value found for item at index ${index}`);
|
|
11306
11306
|
const {
|
|
11307
11307
|
onClick,
|
|
11308
11308
|
'aria-selected': ariaSelected,
|