131 lines
4 KiB
JavaScript
131 lines
4 KiB
JavaScript
export const listboxData = [
|
|
'Apple',
|
|
'Artichoke',
|
|
'Asparagus',
|
|
'Banana',
|
|
'Beets',
|
|
'Bell pepper',
|
|
'Broccoli',
|
|
'Brussels sprout',
|
|
'Cabbage',
|
|
'Carrot',
|
|
'Cauliflower',
|
|
'Celery',
|
|
'Chard',
|
|
'Chicory',
|
|
'Corn',
|
|
'Cucumber',
|
|
'Daikon',
|
|
'Date',
|
|
'Edamame',
|
|
'Eggplant',
|
|
'Elderberry',
|
|
'Fennel',
|
|
'Fig',
|
|
'Garlic',
|
|
'Grape',
|
|
'Honeydew melon',
|
|
'Iceberg lettuce',
|
|
'Jerusalem artichoke',
|
|
'Kale',
|
|
'Kiwi',
|
|
'Leek',
|
|
'Lemon',
|
|
'Mango',
|
|
'Mangosteen',
|
|
'Melon',
|
|
'Mushroom',
|
|
'Nectarine',
|
|
'Okra',
|
|
'Olive',
|
|
'Onion',
|
|
'Orange',
|
|
'Parship',
|
|
'Pea',
|
|
'Pear',
|
|
'Pineapple',
|
|
'Potato',
|
|
'Pumpkin',
|
|
'Quince',
|
|
'Radish',
|
|
'Rhubarb',
|
|
'Shallot',
|
|
'Spinach',
|
|
'Squash',
|
|
'Strawberry',
|
|
'Sweet potato',
|
|
'Tomato',
|
|
'Turnip',
|
|
'Ugli fruit',
|
|
'Victoria plum',
|
|
'Watercress',
|
|
'Watermelon',
|
|
'Yam',
|
|
'Zucchini',
|
|
];
|
|
|
|
export const listboxComplexData = [
|
|
{ label: 'Apple', description: 'Rosaceae' },
|
|
{ label: 'Artichoke', description: 'Cardoon' },
|
|
{ label: 'Asparagus', description: 'Liliopsida' },
|
|
{ label: 'Banana', description: 'Bananas' },
|
|
{ label: 'Beets', description: 'Beet' },
|
|
{ label: 'Bell pepper', description: 'Solanaceae' },
|
|
{ label: 'Broccoli', description: 'Wild cabbage' },
|
|
{ label: 'Brussels sprout', description: 'Wild cabbage' },
|
|
{ label: 'Cabbage', description: 'Wild cabbage' },
|
|
{ label: 'Carrot', description: 'Apiales' },
|
|
{ label: 'Cauliflower', description: 'Wild cabbage' },
|
|
{ label: 'Celery', description: 'Apium' },
|
|
{ label: 'Chard', description: 'Beet' },
|
|
{ label: 'Chicory', description: 'Chicory' },
|
|
{ label: 'Corn', description: 'Corn' },
|
|
{ label: 'Cucumber', description: 'Cucumis' },
|
|
{ label: 'Daikon', description: 'Radishes' },
|
|
{ label: 'Date', description: 'Arecaceae' },
|
|
{ label: 'Edamame', description: 'Wild bean' },
|
|
{ label: 'Eggplant', description: 'Nightshade' },
|
|
{ label: 'Elderberry', description: 'Moschatel' },
|
|
{ label: 'Fennel', description: 'Fennels' },
|
|
{ label: 'Fig', description: 'Fig trees' },
|
|
{ label: 'Garlic', description: 'Allium' },
|
|
{ label: 'Grape', description: 'Vitis vinifera' },
|
|
{ label: 'Honeydew melon', description: 'Citrullus' },
|
|
{ label: 'Iceberg lettuce', description: 'Lactuca' },
|
|
{ label: 'Jerusalem artichoke', description: 'Sunflowers' },
|
|
{ label: 'Kale', description: 'Brassicaceae' },
|
|
{ label: 'Kiwi', description: 'Ratites' },
|
|
{ label: 'Leek', description: 'Onion' },
|
|
{ label: 'Lemon', description: 'Citrus' },
|
|
{ label: 'Mango', description: 'Mangifera' },
|
|
{ label: 'Mangosteen', description: 'Saptrees' },
|
|
{ label: 'Melon', description: 'Citrullus' },
|
|
{ label: 'Mushroom', description: 'Eumycota' },
|
|
{ label: 'Nectarine', description: 'Citrus' },
|
|
{ label: 'Okra', description: 'Mallows' },
|
|
{ label: 'Olive', description: 'Olives' },
|
|
{ label: 'Onion', description: 'Onion' },
|
|
{ label: 'Orange', description: 'Citrus' },
|
|
{ label: 'Parship', description: 'Umbellifers' },
|
|
{ label: 'Pea', description: 'Peas' },
|
|
{ label: 'Pear', description: 'Malinae' },
|
|
{ label: 'Pineapple', description: 'Pineapples' },
|
|
{ label: 'Potato', description: 'Nightshade' },
|
|
{ label: 'Pumpkin', description: 'Cucurbitaceae' },
|
|
{ label: 'Quince', description: 'Cydonia' },
|
|
{ label: 'Radish', description: 'Radishes' },
|
|
{ label: 'Rhubarb', description: 'Rhubarb' },
|
|
{ label: 'Shallot', description: 'Onion' },
|
|
{ label: 'Spinach', description: 'Spinacia' },
|
|
{ label: 'Squash', description: 'Cucurbiteae' },
|
|
{ label: 'Strawberry', description: 'Fragaria' },
|
|
{ label: 'Sweet potato', description: 'Ipomoea' },
|
|
{ label: 'Tomato', description: 'Nightshade' },
|
|
{ label: 'Turnip', description: 'Field mustard' },
|
|
{ label: 'Ugli fruit', description: 'Citrus reticulata' },
|
|
{ label: 'Victoria plum', description: 'Prunus domestica' },
|
|
{ label: 'Watercress', description: 'Nasturtium' },
|
|
{ label: 'Watermelon', description: 'Citrullus' },
|
|
{ label: 'Yam', description: 'Dioscorea' },
|
|
{ label: 'Zucchini', description: 'Cucurbitaceae' },
|
|
];
|