params:
- name: id
  type: string
  required: true
  description: The ID of the select.
- name: name
  type: string
  required: true
  description: The name of the select, which is submitted with the form data.
- name: label
  type: string
  required: true
  description: The label attached to the select.
- name: requiredLabel
  type: boolean
  required: false
  description: Show label saying the select is required - use only when most inputs in form are optional.
- name: optionalLabel
  type: boolean
  required: false
  description: Show label saying the select is optional - use only when most inputs in form are required.
- name: tooltip
  type: string
  required: false
  description: Additional text to show in a tooltip next to the label
- name: helptext
  type: string
  required: false
  description: Text under label meant to help the user enter the correct value.
- name: errorMessage
  type: string
  required: false
  description: Display an error message for the select.
- name: classes
  type: object
  required: false
  description: Classes for the select elements.
  - name: formgroup
    type: string
    required: false
    description: Classes to add to the form group.
  - name: label
    type: string
    required: false
    description: Classes to add to the label.
  - name: select
    type: string
    required: false
    description: Classes to add to the select.
- name: attributes
  type: object
  required: false
  description: Attributes for the select elements.
  - name: formgroup
    type: string
    required: false
    description: Attributes to add to the form group.
  - name: label
    type: string
    required: false
    description: Attributes to add to the label.
  - name: select
    type: string
    required: false
    description: Attributes to add to the select.
- name: disabled
  type: boolean
  required: false
  description: true for disabled input. Defaults to false.
- name: required
  type: boolean
  required: false
  description: Enter true for required input. Enter false for optional input. Defaults to true.
- name: options
  type: array
  required: true
  description: Array of options
- - name: value
    type: string
    required: true
    description: Value of the option.
  - name: text
    type: string
    required: true
    description: Text of the option.
  - name: isSelected
    type: boolean
    required: false
    description: True of option is selected
