Auth line iconAuth filled icon Asset 5 contracts icon lrgcontracts icon icon-override icon-media Created with Sketch. Revenue line iconRevenue filled icon Subscriber line iconSubscriber filled icon target segment - empty state Created with Sketch. target segment - nav Created with Sketch. toggle-off toggle-on Config_outlines

Invision UI v.19.6.0-0

Getting Started

  • Running Invision UI
  • UI Component Anatomy
  • Authoring SCSS
  • Authoring Presentational Behavior

Component Foundations

  • SCSS Authoring
    • Mixins & Variables
    • Stateful Classes
  • State Guidance
    • Empty/Zero State
    • Loading State
  • Utilities
    • Align
    • Display
    • Flexbox
    • Font Size
    • Layout
    • Offset
    • Position
    • Overflow
    • Size
    • Spacing
    • Text
  • Layout
    • Arrange [Deprectated]
    • Divided Columns
    • Embed Video
    • Full and Center
    • Fill [Deprectated]
    • Grid
    • Media Blocks
    • Panels
    • Vertical Layouts
  • Media Queries
  • Angular Behaviors
    • App Theme Directive
    • Auto Focus Input
    • Filters
    • Popup (modal dialog) Manager
    • Tether (tooltip/dropdown) Manager
    • Resize Sensor
    • Watchers

UI Component Library

  • Content & Containment
    • Active Translation
    • Auto Fit Text
    • Address
    • Basic & Input Table
    • Brand Logo/Slogan
    • Call to Action - Empty State
    • Carousel
    • Cart
    • Choice
    • Collapsible Container
    • Copyright Footer
    • Coupon Redeemer
    • Content
    • Date Relative Display
    • Definition Lists
    • Delimited List
    • Details
    • Expiration Date Display
    • Feature Toggle
    • Form Section Heading
    • Header
    • Heading
    • Heading With Annotation
    • Icons
    • Interaction Details
    • Labeled Balance
    • Link
    • Main Container
    • Metadata Card
    • Metadata List Item
    • Offering QuickView
    • Payment Instrument
    • Preference Dialog
    • Pricing Plan Decoration
    • Product Availability
    • Product Details
    • Product Image
    • Quick Info Panel
    • Remark
    • Renewal Column
    • Richlist Filterbar
    • Richlist Wrapper
    • Scrollable Horizontal List
    • Search Card
    • Search Panel
    • Section
    • Selectable Option
    • Smart Truncate
    • Status Grid
    • Tooltip
  • Data Visualizations
    • Bill Runs
    • Comparison Table
    • Datatable
    • Progress Tracker
    • Schedules
    • Query Builder
  • Dialogs
    • Confirmation Dialog
    • Dialog
    • Rich List Dialog
    • Wait Dialog
  • Forms and Filters
    • Additional Properties
    • Autocomplete
    • 3 Field Date Input
    • Checkbox
    • Credit Card
    • Bulk Action Bar
    • Buttons
    • Confirmation Button
    • Date Picker
    • E-Check
    • Entity Specification
    • External Bill
    • External Gift Card
    • Focus Group
    • Forms
    • Filter Bar
    • Filter Dropdowns
    • Gift Card
    • Grouped Check Filters
    • Inputs
    • Input Select Combo
    • Monetary Input
    • Multi Dropdown Selector
    • Multiple Numeric Input
    • Monetary Range Input
    • Password Unmask Button
    • Select
    • Select Button Or Stepper
    • Select Or Text Input
    • Stepper
    • Tag Dropdown
  • Navigation & Flow
    • Back Banner
    • Back Component
    • Breadcrumbs
    • Details Pager
    • Expandable Section
    • Infinite Scroll
    • Open New Window
    • Pager
    • Fancy Richlist
    • Standard Navigator
    • Status Indicator
    • Step Progress Bar
    • Step Progress Indicator
    • Tab Card
    • Tab Panel
    • Tier Navigator
    • Wizard
  • Notifications
    • Loading Indicator
    • Toast Notifications
  • Deprecated
    • Content Area

Showcase

  • General
    • Simplelist
    • Richlist
    • Primary (side) Navigator
  • Customer Care
    • Case Activity List
    • Customer Care Navigator Component
    • Dashboard
    • Decisions
  • Reporting
    • Content Visualization

Unit Testing

  • Actions
  • Components
  • Selectors
  • Reducers

End-to-end Testing

Statistics

Selectable Option

In this section

Variants
  • Selectable Option
  • Selectable Option with List
  • Selectable Option that is disabled with a message
  • Selectable Options with no image and selected
  • Quick view and Non Selectable
  • Flexible
  • With Qualifications

Selectable Option

Displays an option for selection.

HTML
<div class="t-content" style="width:780px; height: 150px;" ng-controller="selectableOptionExampleController">
    <inv-selectable-option
            id = "id"
            name = "displayName"
            starting-at-price = "startingPrice"
            image-url = "thumbnailUrl"
            on-select = "optionSelect"
            on-quick-view = "quickView"
            selected = "selected"
            on-unselect = "onOptionUnselect">
    </inv-selectable-option>
</div>

Selectable Option with List

Displays an option for selection with a list of items.

HTML
<div class="t-content" style="width:780px; height: 150px;" ng-controller="selectableOptionExampleController">
    <inv-selectable-option
        delimited-list = "list"
        id = "id"
        image-url = "thumbnailUrl"
        name = "displayName"
        on-quick-view = "quickView"
        on-select = "optionSelect"
        on-unselect = "onOptionUnselect"
        selected = "selected"
        starting-at-price = "startingPrice">
    </inv-selectable-option>
</div>

Selectable Option that is disabled with a message

Displays an option that is disabled with a lock icon that functions as a tooltip to display the disabled message.

HTML
<div class="t-content" style="width:780px; height: 150px;" ng-controller="selectableOptionExampleController">
    <inv-selectable-option
        disabled-message = "disabledMessage"
        id = "id"
        image-url = "thumbnailUrl"
        is-disabled = "true"
        name = "displayName"
        on-quick-view = "quickView"
        on-select = "optionSelect"
        on-unselect = "onOptionUnselect"
        selected = "selected"
        starting-at-price = "startingPrice">
    </inv-selectable-option>
</div>

Selectable Options with no image and selected

Displays a options for selection.

HTML
<div class="t-content" style="width:780px; height: 300px;" ng-controller="selectableOptionExampleController">
    <div ng-repeat="option in options">
        <inv-selectable-option
                id = "option.id"
                name = "option.displayName"
                starting-at-price = "option.startingPrice"
                image-url = "option.thumbnailUrl"
                on-select = "optionSelect"
                on-quick-view = "quickView"
                selected = "option.selected"
                on-unselect = "onOptionUnselect">
        </inv-selectable-option>
    </div>
</div>

Quick view and Non Selectable

You can display a quick view link, as well as a non-selectable variation for the action.

HTML
<div class="t-content"
    style="width:780px; height: 150px;"
    ng-controller="selectableOptionExampleController">
    <inv-selectable-option
        id="id"
        name="displayName"
        starting-at-label="startingPriceLabel"
        starting-at-price="startingPrice"
        image-url="thumbnailUrl"
        on-select="optionSelect"
        on-quick-view="quickView"
        selected="selected"
        on-unselect="onOptionUnselect"
        secondary-header="secondaryHeader"
        show-quick-view="true"
        single-selectable="false"
        use-id-header="true">
    </inv-selectable-option>
</div>

Flexible

Allows for text wrapping/line breaks on the title.

HTML
<div class="t-content" style="width: 400px; height: 100px; resize:horizontal; overflow: hidden;" ng-controller="selectableOptionExampleController">
    <inv-selectable-option
            id = "id"
            name = "displayName"
            starting-at-price = "startingPrice"
            image-url = "thumbnailUrl"
            on-select = "optionSelect"
            on-quick-view = "quickView"
            selected = "selected"
            on-unselect = "onOptionUnselect"
            flexible = "true">
    </inv-selectable-option>
</div>

With Qualifications

You can display the offer qualification as upgrade or downgrade. Compatible offers will appear with no icon

HTML
<div class="t-content" style="width:780px; height: 340px;" ng-controller="selectableOptionExampleController">
    <inv-selectable-option
        id="id"
        name="displayName"
        starting-at-price="startingPrice"
        image-url="thumbnailUrl"
        on-select="optionSelect"
        on-quick-view="quickView"
        selected="selected"
        on-unselect="onOptionUnselect"
        qualification="'upgrade'">
    </inv-selectable-option>
    <inv-selectable-option
        id="id"
        name="displayName"
        starting-at-price="startingPrice"
        image-url="thumbnailUrl"
        on-select="optionSelect"
        on-quick-view="quickView"
        selected="selected"
        on-unselect="onOptionUnselect"
        qualification="'downgrade'">
    </inv-selectable-option>
    <inv-selectable-option
        id="id"
        name="displayName"
        starting-at-price="startingPrice"
        image-url="thumbnailUrl"
        on-select="optionSelect"
        on-quick-view="quickView"
        selected="selected"
        on-unselect="onOptionUnselect"
        qualification="'compatible'">
    </inv-selectable-option>
</div>