@hyphen/hyphen-components 2.16.0 → 2.16.1

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": "@hyphen/hyphen-components",
3
- "version": "2.16.0",
3
+ "version": "2.16.1",
4
4
  "license": "MIT",
5
5
  "author": {
6
6
  "name": "@hyphen"
@@ -153,6 +153,14 @@ export const AsyncSelect = () => {
153
153
  const options = [
154
154
  { value: 'chocolate', label: 'Chocolate' },
155
155
  { value: 'strawberry', label: 'Strawberry' },
156
+ { value: 'vanilla', label: 'Vanilla' },
157
+ { value: 'mint', label: 'Mint' },
158
+ { value: 'caramel', label: 'Caramel' },
159
+ { value: 'blueberry', label: 'Blueberry' },
160
+ { value: 'raspberry', label: 'Raspberry' },
161
+ { value: 'lemon', label: 'Lemon' },
162
+ { value: 'coconut', label: 'Coconut' },
163
+ { value: 'mango', label: 'Mango' },
156
164
  ];
157
165
 
158
166
  const filterOptions = (inputValue: string) => {
@@ -194,6 +202,14 @@ export const AsyncCreatableSelect = () => {
194
202
  const options = [
195
203
  { value: 'chocolate', label: 'Chocolate' },
196
204
  { value: 'strawberry', label: 'Strawberry' },
205
+ { value: 'vanilla', label: 'Vanilla' },
206
+ { value: 'mint', label: 'Mint' },
207
+ { value: 'caramel', label: 'Caramel' },
208
+ { value: 'blueberry', label: 'Blueberry' },
209
+ { value: 'raspberry', label: 'Raspberry' },
210
+ { value: 'lemon', label: 'Lemon' },
211
+ { value: 'coconut', label: 'Coconut' },
212
+ { value: 'mango', label: 'Mango' },
197
213
  ];
198
214
 
199
215
  const [value, setValue] = useState(null);