@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
|
@@ -11295,7 +11295,7 @@ function Picker({
|
|
|
11295
11295
|
paddingY: "kitt.2",
|
|
11296
11296
|
children: childrenArray.map((child, index) => {
|
|
11297
11297
|
const currentValue = items[index];
|
|
11298
|
-
if (
|
|
11298
|
+
if (currentValue === undefined) throw new Error(`Picker: No value found for item at index ${index}`);
|
|
11299
11299
|
const {
|
|
11300
11300
|
onClick,
|
|
11301
11301
|
'aria-selected': ariaSelected,
|