Component Blueprints

Lookups

information

You are currently viewing a sandbox preview version of Spring ’20 | Go back to Summer ’20

Lookup is an autocomplete combobox that will search against a database object.

About Lookups#

Note — A lookup is a combobox component, please find implementation documentation under the combobox component

The lookup can parse through single or multi scoped datasets. The parsed dataset can be filtered by single or multi option selects.

You can find the lookup component throughout most data fields that allow inline inputs. Most commonly used on record home and object home.

Accessibility#

Lookups allow the user to have dual keyboard focus: while focus in the input search field, the user can type text into the field and simultaneously use arrow keys to navigate up and down the results list. Use the appropriate ARIA attributes in your markup in order to effectively communicate the relationship between the input field and the results list to users of assistive technology.

Expected markup:

  • A Combobox must come with an associated label element, with an appropriate for attribute
  • slds-combobox acts as the root node to the composite Combobox widget. It takes the role="combobox" attribute as a result
    • aria-haspopup="listbox" attribute is then applied to indicate the Combobox will display a popup, of type listbox
    • aria-expanded="true|false" attribute is applied to describe whether the popup of listbox is currently visible or not
  • aria-activedescendant must be set to the currently selected option within the list
  • role="listbox" must be added to the list of results, each result should have role="option"

Expected keyboard interactions:

  • Up and Down arrow keys to cycle through the available options in the list, also updates aria-activedescendant on the input
  • Enter selects the current option and collapses the list
  • Escape collapses the list
  • Character keys jumps to the first option with those characters

Base#

<div class="slds-form-element">
  <label class="slds-form-element__label" for="combobox-id-1">Relate to</label>
  <div class="slds-form-element__control">
    <div class="slds-combobox_container">

States#

Focused#

<div class="slds-form-element">
  <label class="slds-form-element__label" for="combobox-id-2">Relate to</label>
  <div class="slds-form-element__control">
    <div class="slds-combobox_container">

Open - Item Focused#

<div class="slds-form-element">
  <label class="slds-form-element__label" for="combobox-id-3">Relate to</label>
  <div class="slds-form-element__control">
    <div class="slds-combobox_container">

Displaying options based on user input#

<div class="slds-form-element">
  <label class="slds-form-element__label" for="combobox-id-4">Relate to</label>
  <div class="slds-form-element__control">
    <div class="slds-combobox_container">

Option Selected#

<div class="slds-form-element">
  <label class="slds-form-element__label" for="combobox-id-5">Relate to</label>
  <div class="slds-form-element__control">
    <div class="slds-combobox_container slds-has-selection">

Grouped#

<div class="demo-only" style="height:640px">
  <section role="dialog" tabindex="-1" class="slds-modal slds-fade-in-open slds-modal_large" aria-modal="true" aria-describedby="modal-content-id-1">
    <div class="slds-modal__container">
      <header class="slds-modal__header">

Multi Entity#

<div class="slds-form-element">
  <label class="slds-form-element__label" for="combobox-id-1">Relate to</label>
  <div class="slds-form-element__control">
    <div class="slds-combobox-group">

States#

Focused#

Description of icon when needed
<div class="slds-form-element">
  <label class="slds-form-element__label" for="combobox-id-1">Relate to</label>
  <div class="slds-form-element__control">
    <div class="slds-combobox-group">

Open - Item Focused#

Description of icon when needed
<div class="slds-form-element">
  <label class="slds-form-element__label" for="combobox-id-2">Relate to</label>
  <div class="slds-form-element__control">
    <div class="slds-combobox-group">

Option(s) Selected#

<div class="slds-form-element">
  <label class="slds-form-element__label" for="combobox-id-3">Relate to</label>
  <div class="slds-form-element__control">
    <div class="slds-combobox-group slds-has-selection">

Focused - Option(s) Selected#

Description of icon when needed
<div class="slds-form-element">
  <label class="slds-form-element__label" for="combobox-id-4">Relate to</label>
  <div class="slds-form-element__control">
    <div class="slds-combobox-group slds-has-selection">

Overview of CSS Classes#

Selector.slds-combobox-group
Summary

Container for a combobox group

Supportdev-ready
Restrictdiv
VariantTrue
Selector.slds-combobox_object-switcher
Summary

Modifier that identifies the combobox as the object switcher, applies specific interactions for its context

Restrict.slds-combobox-group div
Selector.slds-has-selection
Summary

Modifier that notifies the combobox group that a selection has been made

Restrict.slds-combobox-group, .slds-combobox_container
Selector.slds-combobox-addon_start
Summary

The first combobox in the combobox group

Restrict.slds-combobox-group div
Selector.slds-combobox-addon_end
Summary

The last combobox in the combobox group

Restrict.slds-combobox-group div
Selector.slds-listbox_selection-group
Summary

The container of pill selections found inside of a combobox group

Restrict.slds-combobox-group ~ div, .slds-combobox_container ~ div
Selector.slds-is-expanded
Summary

Expanded state of a selection group

Restrict.slds-listbox_selection-group
Selector.slds-listbox-toggle
Summary

Toggle button to show all of the pill selections

Restrict.slds-listbox_selection-group > span
Selector.slds-combobox
Summary

Container that manages layout when a listbox of pill options sit next to a combobox search input

Supportdev-ready
Restrictdiv
VariantTrue
Selector.slds-is-open
Summary

Opens listbox dropdown

Restrict.slds-combobox
ModifierTrue
Selector.slds-combobox__form-element
Summary

Form element with combobox input

Restrict.slds-combobox > div
Selector.slds-combobox__input-entity-icon
Summary

If readonly selection is an entity, use this class

Restrict.slds-combobox__form-element span
Selector.slds-combobox__input-value
Summary

Class to target styling the value of a combobox input

Restrict.slds-combobox input
Selector.slds-combobox__input
Summary

Input field within a combobox

Restrict.slds-combobox input
Selector[aria-autocomplete="list"]
Summary
Supportdev-ready
Restrict.slds-combobox__input
VariantTrue
Selector.slds-has-focus
Summary

Force focus state of the input

Restrict.slds-combobox__input
Selector.slds-has-icon_left
Summary

Modifier to the combobox when an SVG icon sits adjacent to the combobox form element

Restrict.slds-combobox

Lookups Release Notes

2.11.0

Added

  • Grouped Lookup wrapping <div> attributes:
    • role="combobox"
    • aria-haspopup="listbox"
    • aria-expanded="true"
  • Grouped Lookup <input> attribute aria-controls set to id of adjacent table

Changed

  • Grouped Lookup <input> role from combobox to textbox