@megha-ui/react 1.2.359 → 1.2.361

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.
@@ -146,8 +146,7 @@ const Dropdown = ({ options, selectedValues, onChange, placeholder = "Select..."
146
146
  .sort((a, b) => (a.label > b.label ? 1 : -1))
147
147
  .filter((option) => option.label.toLowerCase().includes(searchTerm.toLowerCase()))
148
148
  : options.filter((option) => option.label.toLowerCase().includes(searchTerm.toLowerCase()));
149
- console.log(options);
150
- setFilteredOptions(options);
149
+ setFilteredOptions(_options);
151
150
  const grouped = [];
152
151
  if (isGrouping) {
153
152
  const groups = [...new Set(options.map((opt) => opt.group))];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@megha-ui/react",
3
- "version": "1.2.359",
3
+ "version": "1.2.361",
4
4
  "description": "A collection of reusable UI components for React applications, built with TypeScript.",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.js",