x-ui-design 0.2.85 → 0.2.86

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.
@@ -362,6 +362,12 @@ const SelectComponent = forwardRef<HTMLDivElement, SelectProps>(
362
362
  : options;
363
363
 
364
364
  const filteredOptions = extractedOptions.filter((option: OptionType) => {
365
+ console.info({
366
+ searchQuery,
367
+ option,
368
+ optionFilterProp
369
+ });
370
+
365
371
  if (typeof filterOption === 'function') {
366
372
  return filterOption(searchQuery, option);
367
373
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "x-ui-design",
3
- "version": "0.2.85",
3
+ "version": "0.2.86",
4
4
  "license": "ISC",
5
5
  "author": "Gabriel Boyajyan",
6
6
  "main": "dist/index.js",