minka-ds 0.1.8 → 0.1.9

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "minka-ds",
3
- "version": "0.1.8",
3
+ "version": "0.1.9",
4
4
  "description": "Minka product design system — tokenized component library",
5
5
  "license": "MIT",
6
6
  "files": [
@@ -215,7 +215,7 @@ function FilterCombobox({
215
215
 
216
216
  const step2AllValues = selectedCategory?.values ?? []
217
217
 
218
- const showSearch = step2AllValues.length > 4
218
+ const showSearch = step2AllValues.length > 4 && selectedCategory?.type !== "hours"
219
219
  const step2Filtered = showSearch
220
220
  ? step2AllValues.filter(v => v.toLowerCase().includes(search.toLowerCase()))
221
221
  : step2AllValues