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

Heading

In this section

Variants
  • Default
  • Subheading
  • With Back Button
  • Secondary Header
  • Secondary Header with Search Input and Submit Button
  • Concise heading
  • Concise Buttons

Default

The heading component is usable by most details pages in Invision. It provides a framework for rendering a main heading line, with primary label and action buttons.

Transaction Activity
Export
Schedule
Save
More
HTML
<div class="t-content c-content">
    <div class="c-masthead">
        <div class="c-heading">
            <div class="c-heading-titleArea">
                <div class="c-heading-label">Transaction Activity</div>
            </div>
            <div class="c-heading-buttons">
                <div class="c-button c-button--icon">
                    <inv-icon glyph="'cloud-download'"></inv-icon>
                    <div class="c-button-text">Export</div>
                </div>
                <div class="c-button c-button--icon">
                    <inv-icon glyph="'clock-o'"></inv-icon>
                    <div class="c-button-text">Schedule</div>
                </div>
                <div class="c-button c-button--primary">Save</div>
                <div class="c-button c-button--icon">
                    <inv-icon glyph="'ellipsis-h'"></inv-icon>
                    <div class="c-button-text">More</div>
                </div>
            </div>
        </div>
    </div>
</div>

Subheading

The heading component can additionally be combined with a subheading to provide a secondary set of related information for the user.

Transaction Activity
Export
Schedule
Save
More
Created by John Smith
Public
Last Updated 10/22/2016
HTML
<div class="t-content c-content">
    <div class="c-masthead">
        <div class="c-heading">
            <div class="c-heading-label">Transaction Activity</div>
            <div class="c-heading-buttons">
                <div class="c-button c-button--icon">
                    <inv-icon glyph="'cloud-download'"></inv-icon>
                    <div class="c-buttonText">Export</div>
                </div>
                <div class="c-button c-button--icon">
                    <inv-icon glyph="'clock-o'"></inv-icon>
                    <div class="c-buttonText">Schedule</div>
                </div>
                <div class="c-button c-button--primary">Save</div>
                <div class="c-button c-button--icon">
                    <inv-icon glyph="'ellipsis-h'"></inv-icon>
                    <div class="c-buttonText">More</div>
                </div>
            </div>
        </div>
        <div class="c-subheading u-pt0">
            <div class="c-subheading-label">Created by John Smith</div>
            <div class="c-subheading-label">Public</div>
            <div class="c-subheading-label">Last Updated 10/22/2016</div>
        </div>
    </div>
</div>

With Back Button

Some headings require the presence of a back button to the left of the title.

Transaction Activity
Export
Schedule
Save
More
HTML
<div class="t-content c-content">
    <div class="c-masthead">
        <div class="c-heading">
            <div class="c-heading-titleArea">
                <div class="c-heading-backButton">
                    <inv-icon glyph="'back-arrow'"></inv-icon>
                </div>
                <div class="c-heading-label">Transaction Activity</div>
            </div>
            <div class="c-heading-buttons">
                <div class="c-button c-button--icon">
                    <inv-icon glyph="'cloud-download'"></inv-icon>
                    <div class="c-button-text">Export</div>
                </div>
                <div class="c-button c-button--icon">
                    <inv-icon glyph="'clock-o'"></inv-icon>
                    <div class="c-button-text">Schedule</div>
                </div>
                <div class="c-button c-button--primary">Save</div>
                <div class="c-button c-button--icon">
                    <inv-icon glyph="'ellipsis-h'"></inv-icon>
                    <div class="c-button-text">More</div>
                </div>
            </div>
        </div>
    </div>
</div>

Secondary Header

This variation on the heading component provides a secondary heading with a solid gray background and different font properties.

Transaction Activity
HTML
<div class="t-content">
    <div class="c-heading c-heading--secondary">
        <div class="c-heading-titleArea">
            <div class="c-heading-label">Transaction Activity</div>
        </div>
    </div>
</div>

Secondary Header with Search Input and Submit Button

This variation on the heading component provides a secondary heading with a solid gray background and different font properties. It also includes the an input as well as a submit button.

HTML
<div class="t-content c-content">
    <div class="c-content-secondaryHeadingContainer u-flex u-flexStretch">
        <div class="c-generalForm">
            <input type="text" placeholder="Search for Greatness">
        </div>
        <button class="c-button c-button--primary" type="submit">Apply</button>
    </div>
</div>

Concise heading

This variation on the heading component removes additional margin and height to minimize its real estate footprint.

Transaction Activity: Activity Name
HTML
<div class="t-content c-content">
    <div class="c-masthead c-masthead--concise">
        <div class="c-heading">
            <div class="c-heading-titleArea">
                <div class="c-heading-label">Transaction Activity: <span class="c-heading-label--highlight">Activity Name</span></div>
            </div>
        </div>
    </div>
</div>

Concise Buttons

In the event of buttons being simply icons, concise buttons can be used within the buttons collection in the heading.

Transaction Activity
HTML
<div class="t-content c-content">
    <div class="c-masthead">
        <div class="c-heading">
            <div class="c-heading-titleArea">
                <div class="c-heading-label">Transaction Activity</div>
            </div>
            <div class="c-heading-buttons">
                <div class="c-button c-button--concise">
                    <inv-icon glyph="'pop-out'"></inv-icon>
                </div>
                <div class="c-button c-button--concise">
                    <inv-icon glyph="'clone'"></inv-icon>
                </div>
            </div>
        </div>
    </div>
</div>