@danielgindi/selectbox 2.0.6 → 2.0.7

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/dist/lib.cjs.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * @danielgindi/selectbox 2.0.6
2
+ * @danielgindi/selectbox 2.0.7
3
3
  * git://github.com/danielgindi/selectbox.git
4
4
  */
5
5
  'use strict';
@@ -1188,7 +1188,15 @@ class DropList {
1188
1188
  if (typeof fn === 'function') {
1189
1189
  // Send the original items to the filter function
1190
1190
  filteredItems = p.filterFn(
1191
- p.items.map((x) => x[ItemSymbol] ?? x),
1191
+ p.items.map((x) => {
1192
+ const y = x[ItemSymbol];
1193
+ if (y !== undefined) {
1194
+ y[ItemSymbol] = x;
1195
+ return y;
1196
+ }
1197
+
1198
+ return x;
1199
+ }),
1192
1200
  term);
1193
1201
 
1194
1202
  if (Array.isArray(filteredItems)) {