agroptima-design-system 0.27.16 → 0.27.17

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": "agroptima-design-system",
3
- "version": "0.27.16",
3
+ "version": "0.27.17",
4
4
  "scripts": {
5
5
  "dev": "npm run storybook",
6
6
  "storybook": "storybook dev -p 6006 --ci",
@@ -29,7 +29,7 @@ export interface SelectProps extends InputPropsWithoutOnChange {
29
29
  defaultValue?: string
30
30
  onChange?: (value: string) => void
31
31
  required?: boolean
32
- isSearchable: boolean
32
+ isSearchable?: boolean
33
33
  searchLabel?: string
34
34
  }
35
35
 
@@ -4,6 +4,10 @@ import { Meta } from "@storybook/blocks";
4
4
 
5
5
  # Changelog
6
6
 
7
+ ## 0.27.17
8
+
9
+ * Add the searchable parameter as optional in Select component.
10
+
7
11
  ## 0.27.16
8
12
 
9
13
  * Add optional search to Select and MultiSelect component.