UNPKG

react-multiselect-checkboxes

Version:

Spiffy multiselect with checkboxes

122 lines (115 loc) 4.25 kB
export const colourOptions = [ { value: 'ocean', label: 'Ocean', color: '#00B8D9' }, { value: 'blue', label: 'Blue', color: '#0052CC', disabled: true }, { value: 'purple', label: 'Purple', color: '#5243AA' }, { value: 'red', label: 'Red', color: '#FF5630' }, { value: 'orange', label: 'Orange', color: '#FF8B00' }, { value: 'yellow', label: 'Yellow', color: '#FFC400' }, { value: 'green', label: 'Green', color: '#36B37E' }, { value: 'forest', label: 'Forest', color: '#00875A' }, { value: 'slate', label: 'Slate', color: '#253858' }, { value: 'silver', label: 'Silver', color: '#666666' }, ]; export const flavourOptions = [ { value: 'vanilla', label: 'Vanilla', rating: 'safe' }, { value: 'chocolate', label: 'Chocolate', rating: 'good' }, { value: 'strawberry', label: 'Strawberry', rating: 'wild' }, { value: 'salted-caramel', label: 'Salted Caramel', rating: 'crazy' }, ]; export const stateOptions = [ { value: 'AL', label: 'Alabama' }, { value: 'AK', label: 'Alaska' }, { value: 'AS', label: 'American Samoa' }, { value: 'AZ', label: 'Arizona' }, { value: 'AR', label: 'Arkansas' }, { value: 'CA', label: 'California' }, { value: 'CO', label: 'Colorado' }, { value: 'CT', label: 'Connecticut' }, { value: 'DE', label: 'Delaware' }, { value: 'DC', label: 'District Of Columbia' }, { value: 'FM', label: 'Federated States Of Micronesia' }, { value: 'FL', label: 'Florida' }, { value: 'GA', label: 'Georgia' }, { value: 'GU', label: 'Guam' }, { value: 'HI', label: 'Hawaii' }, { value: 'ID', label: 'Idaho' }, { value: 'IL', label: 'Illinois' }, { value: 'IN', label: 'Indiana' }, { value: 'IA', label: 'Iowa' }, { value: 'KS', label: 'Kansas' }, { value: 'KY', label: 'Kentucky' }, { value: 'LA', label: 'Louisiana' }, { value: 'ME', label: 'Maine' }, { value: 'MH', label: 'Marshall Islands' }, { value: 'MD', label: 'Maryland' }, { value: 'MA', label: 'Massachusetts' }, { value: 'MI', label: 'Michigan' }, { value: 'MN', label: 'Minnesota' }, { value: 'MS', label: 'Mississippi' }, { value: 'MO', label: 'Missouri' }, { value: 'MT', label: 'Montana' }, { value: 'NE', label: 'Nebraska' }, { value: 'NV', label: 'Nevada' }, { value: 'NH', label: 'New Hampshire' }, { value: 'NJ', label: 'New Jersey' }, { value: 'NM', label: 'New Mexico' }, { value: 'NY', label: 'New York' }, { value: 'NC', label: 'North Carolina' }, { value: 'ND', label: 'North Dakota' }, { value: 'MP', label: 'Northern Mariana Islands' }, { value: 'OH', label: 'Ohio' }, { value: 'OK', label: 'Oklahoma' }, { value: 'OR', label: 'Oregon' }, { value: 'PW', label: 'Palau' }, { value: 'PA', label: 'Pennsylvania' }, { value: 'PR', label: 'Puerto Rico' }, { value: 'RI', label: 'Rhode Island' }, { value: 'SC', label: 'South Carolina' }, { value: 'SD', label: 'South Dakota' }, { value: 'TN', label: 'Tennessee' }, { value: 'TX', label: 'Texas' }, { value: 'UT', label: 'Utah' }, { value: 'VT', label: 'Vermont' }, { value: 'VI', label: 'Virgin Islands' }, { value: 'VA', label: 'Virginia' }, { value: 'WA', label: 'Washington' }, { value: 'WV', label: 'West Virginia' }, { value: 'WI', label: 'Wisconsin' }, { value: 'WY', label: 'Wyoming' }, ]; export const optionLength = [ { value: 1, label: 'general' }, { value: 2, label: 'Evil is the moment when I lack the strength to be true to the Good that compels me.', }, { value: 3, label: "It is now an easy matter to spell out the ethic of a truth: 'Do all that you can to persevere in that which exceeds your perseverance. Persevere in the interruption. Seize in your being that which has seized and broken you.", }, ]; // let bigOptions = []; // for (let i = 0; i < 10000; i++) { // bigOptions = bigOptions.concat(colourOptions); // } export const groupedOptions = [ { label: 'Colours', options: colourOptions, }, { label: 'Flavours', options: flavourOptions, }, ]; export const duplicateGroupOptions = [ { label: 'Cone 1 Flavours', options: flavourOptions.map((o) => ({ ...o, group: 1 })), }, { label: 'Cone 2 Flavours', options: flavourOptions.map((o) => ({ ...o, group: 2 })), }, ];