Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Nav Item Icon to handle conditions for icon #913

Merged
merged 5 commits into from Jul 16, 2020

Conversation

KatherineMuedas
Copy link
Contributor

@KatherineMuedas KatherineMuedas commented Jul 15, 2020

Screens

Fixes this bug #878

Breaking Changes

None

Runway Ticket URL

https://nitro.powerhrg.com/runway/backlog_items/LGA-201

How to test this

import React, { useState } from "react"
import { Nav } from '../../'
import NavItem from '../_item.jsx'

const WithIconsNav = () => {
  const [ showIcon, setShowIcon ] = useState(true)
  const [ currentIcon, setCurrentIcon ] = useState("")
  const handleDisplayCurrentIcon = (icon) => {
      setShowIcon(!showIcon)
      setCurrentIcon(icon)
    }

  return (
    <Nav
        link="#"
        title="Browse"
    >
      <NavItem
        iconRight={currentIcon}
        onClick={() => handleDisplayCurrentIcon(showIcon ? "angle-down" : "angle-right")}
        text="Other item"
      />

    </Nav>
  )
}

export default WithIconsNav

Checklist:

  • DEPLOY Please add the Milano label when you are ready for a review
  • SCREENSHOT Please add a screen shot or two
  • SPECS Please cover your changes with specs
  • CHANGELOG Please add an entry on [Unreleased] section to every functionality ADDED/CHANGED/DEPRECATED/REMOVED/FIXED

@KatherineMuedas KatherineMuedas requested a review from a team as a code owner July 15, 2020 16:40
@KatherineMuedas KatherineMuedas added the milano 20 MAX - Deploy this PR to a review environment via Milano label Jul 15, 2020
@KatherineMuedas KatherineMuedas added this to the 5.4.0 milestone Jul 15, 2020
@KatherineMuedas KatherineMuedas requested a review from a team July 15, 2020 16:56
@KatherineMuedas
Copy link
Contributor Author

KatherineMuedas commented Jul 15, 2020

To fix this issue, I had to wrap the icon with a div and also add a key to the div. A pretty similar fix was added previously to Buttons with icons #800. I am wondering if we should add the div and key to the icon component instead of only adding it to the nav item with icon file. If we do that all components that uses icons could benefit from it.

@KatherineMuedas KatherineMuedas changed the title Fix Nav Item Icon with conditions Fix Nav Item Icon to handle conditions for icon Jul 15, 2020
Copy link
Member

@gmfvpereira gmfvpereira left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It looks good to me, but I'll let the final word with the UX team.

@KatherineMuedas KatherineMuedas self-assigned this Jul 15, 2020
@jasperfurniss jasperfurniss merged commit 80e0d86 into v5.3.0 Jul 16, 2020
@jasperfurniss jasperfurniss deleted the LGA/fix-navItemIcon branch July 16, 2020 21:16
jasperfurniss added a commit that referenced this pull request Jul 16, 2020
* Added unreleased section for 5.3.0

* Update dependency npm to v6.14.6 [SECURITY] (#896)

Co-authored-by: Renovate Bot <bot@renovateapp.com>

* Add aria, data props to React Badge kit (#901)

* Add aria, data props to React Badge kit

* Add to CHANGELOG

* Added prop to remove card border (#900)

* Added prop to remove card border

* Updated changelog and spec doc

* Removed trailing white space

* Fixed react prop name to be camelcased

* Renamed rails border prop

* Updated spec doc

* v5.3.0

* Add props to Circle Icon Button React/Rails kits (#907)

* Add props to Circle Icon Button React/Rails kits

* Add to CHANGELOG

Co-authored-by: Jasper Furniss <jasperfurniss@gmail.com>

* Add props to Body React kit (#904)

* Add props to Body React kit

* Add to CHANGELOG

* Fix trailing spaces

Co-authored-by: Jasper Furniss <jasperfurniss@gmail.com>

* Add to kit generator (#916)

* Test 1, 2, 3 of kit generator -- add aria props, add object as option

* Finish additions and modifications to kit generator

* Fix line spacing and missing curly braces, fix case statement

* Add missing underscore and line break

* Linting

* Add to CHANGELOG

* Fix Nav Item Icon to handle conditions for icon (#913)

* Adds a div with key to wrap icon

* Updates logchange

* Make key unique from right to left

* Undo key change

* Add props to checkbox (#905)

* Add props to React Checkbox kit and add checked example

* Add aria prop to Rails Checkbox kit

* Add to CHANGELOG

Co-authored-by: Jasper Furniss <jasperfurniss@gmail.com>

* Fixed Up Changelog

* v5.4.0

* Updated Changelog to correctly reflect newly created Branch 5.4.0

Co-authored-by: Jonathan Zazula <djonyriz@gmail.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Renovate Bot <bot@renovateapp.com>
Co-authored-by: Kelly Ryan <51907753+kellyeryan@users.noreply.github.com>
Co-authored-by: Christina Tai <42459486+christinaatai@users.noreply.github.com>
Co-authored-by: Stephen Marshall <smarshall1980@gmail.com>
Co-authored-by: Katherine Muedas <muedasnka@gmail.com>
Co-authored-by: Jasper Furniss <jasper.furniss@powerhrg.com>
bh247484 pushed a commit that referenced this pull request Jul 23, 2020
* Added unreleased section for 5.3.0

* rails done, except for nav issue, react started

* Update dependency npm to v6.14.6 [SECURITY] (#896)

Co-authored-by: Renovate Bot <bot@renovateapp.com>

* made improvements to nav to allow nesting

* Add aria, data props to React Badge kit (#901)

* Add aria, data props to React Badge kit

* Add to CHANGELOG

* Added prop to remove card border (#900)

* Added prop to remove card border

* Updated changelog and spec doc

* Removed trailing white space

* Fixed react prop name to be camelcased

* Renamed rails border prop

* Updated spec doc

* v5.3.0

* rails and react complete

* updated collection detail kit, full page example ready to go

* Add props to Circle Icon Button React/Rails kits (#907)

* Add props to Circle Icon Button React/Rails kits

* Add to CHANGELOG

Co-authored-by: Jasper Furniss <jasperfurniss@gmail.com>

* Add props to Body React kit (#904)

* Add props to Body React kit

* Add to CHANGELOG

* Fix trailing spaces

Co-authored-by: Jasper Furniss <jasperfurniss@gmail.com>

* Add to kit generator (#916)

* Test 1, 2, 3 of kit generator -- add aria props, add object as option

* Finish additions and modifications to kit generator

* Fix line spacing and missing curly braces, fix case statement

* Add missing underscore and line break

* Linting

* Add to CHANGELOG

* Fix Nav Item Icon to handle conditions for icon (#913)

* Adds a div with key to wrap icon

* Updates logchange

* Make key unique from right to left

* Undo key change

* Add props to checkbox (#905)

* Add props to React Checkbox kit and add checked example

* Add aria prop to Rails Checkbox kit

* Add to CHANGELOG

Co-authored-by: Jasper Furniss <jasperfurniss@gmail.com>

* Fixed Up Changelog

* v5.4.0

* rails done, except for nav issue, react started

* made improvements to nav to allow nesting

* rails and react complete

* updated collection detail kit, full page example ready to go

* attempt to fix failing spec

Co-authored-by: Jonathan Zazula <djonyriz@gmail.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Renovate Bot <bot@renovateapp.com>
Co-authored-by: Kelly Ryan <51907753+kellyeryan@users.noreply.github.com>
Co-authored-by: Christina Tai <42459486+christinaatai@users.noreply.github.com>
Co-authored-by: Stephen Marshall <smarshall1980@gmail.com>
Co-authored-by: Jasper Furniss <jasperfurniss@gmail.com>
Co-authored-by: Katherine Muedas <muedasnka@gmail.com>
Co-authored-by: Jasper Furniss <jasper.furniss@powerhrg.com>
bh247484 added a commit that referenced this pull request Jul 23, 2020
* Add blue to title kit (#921)

* Add blue to title kit

* Cover change with tests

* Fix rspec test

* Remove variant prop from docs

* Add to CHANGELOG

* Fix rspec

* Change variant to enum

* Fix rspec

* Replace empty string with nil value in variant enum

* Fixes Spacing Conflicts with Caption Sizing Props (#925)

* Fixes Spacing Conflicts

* Added Changelog Entry

Co-authored-by: Jasper Furniss <jasper.furniss@powerhrg.com>

* Add props to legend (#924)

* Add props to React Legend kit

* Remove examples of aria, data, id in React kit

* Add CHANGELOG

* Popover Overflow Fix (#922)

* added conditional classes, changed sass

* CHANGELOG update

* CHANGELOG updated

* Add aria, data props to Dashboard Value kit (#909)

* Added unreleased section for 5.3.0

* Add aria, data props to React Badge kit (#901)

* Add aria, data props to React Badge kit

* Add to CHANGELOG

* Add aria, data props to Dashboard Value kit

* Add CHANGELOG

Co-authored-by: Jonathan Zazula <djonyriz@gmail.com>
Co-authored-by: Brendan Huffman <57693937+bh247484@users.noreply.github.com>

* Collection Detail Full Page Example (#902)

* Added unreleased section for 5.3.0

* rails done, except for nav issue, react started

* Update dependency npm to v6.14.6 [SECURITY] (#896)

Co-authored-by: Renovate Bot <bot@renovateapp.com>

* made improvements to nav to allow nesting

* Add aria, data props to React Badge kit (#901)

* Add aria, data props to React Badge kit

* Add to CHANGELOG

* Added prop to remove card border (#900)

* Added prop to remove card border

* Updated changelog and spec doc

* Removed trailing white space

* Fixed react prop name to be camelcased

* Renamed rails border prop

* Updated spec doc

* v5.3.0

* rails and react complete

* updated collection detail kit, full page example ready to go

* Add props to Circle Icon Button React/Rails kits (#907)

* Add props to Circle Icon Button React/Rails kits

* Add to CHANGELOG

Co-authored-by: Jasper Furniss <jasperfurniss@gmail.com>

* Add props to Body React kit (#904)

* Add props to Body React kit

* Add to CHANGELOG

* Fix trailing spaces

Co-authored-by: Jasper Furniss <jasperfurniss@gmail.com>

* Add to kit generator (#916)

* Test 1, 2, 3 of kit generator -- add aria props, add object as option

* Finish additions and modifications to kit generator

* Fix line spacing and missing curly braces, fix case statement

* Add missing underscore and line break

* Linting

* Add to CHANGELOG

* Fix Nav Item Icon to handle conditions for icon (#913)

* Adds a div with key to wrap icon

* Updates logchange

* Make key unique from right to left

* Undo key change

* Add props to checkbox (#905)

* Add props to React Checkbox kit and add checked example

* Add aria prop to Rails Checkbox kit

* Add to CHANGELOG

Co-authored-by: Jasper Furniss <jasperfurniss@gmail.com>

* Fixed Up Changelog

* v5.4.0

* rails done, except for nav issue, react started

* made improvements to nav to allow nesting

* rails and react complete

* updated collection detail kit, full page example ready to go

* attempt to fix failing spec

Co-authored-by: Jonathan Zazula <djonyriz@gmail.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Renovate Bot <bot@renovateapp.com>
Co-authored-by: Kelly Ryan <51907753+kellyeryan@users.noreply.github.com>
Co-authored-by: Christina Tai <42459486+christinaatai@users.noreply.github.com>
Co-authored-by: Stephen Marshall <smarshall1980@gmail.com>
Co-authored-by: Jasper Furniss <jasperfurniss@gmail.com>
Co-authored-by: Katherine Muedas <muedasnka@gmail.com>
Co-authored-by: Jasper Furniss <jasper.furniss@powerhrg.com>

* CHANGELOG proofing

* upversioned to v5.5.0

* once more unto the CHANGELOG

* CHANGELOG 2, Electric Boogaloo

Co-authored-by: Kelly Ryan <51907753+kellyeryan@users.noreply.github.com>
Co-authored-by: Jasper Furniss <jasperfurniss@gmail.com>
Co-authored-by: Jasper Furniss <jasper.furniss@powerhrg.com>
Co-authored-by: Jonathan Zazula <djonyriz@gmail.com>
Co-authored-by: Eva Louderback <50629488+evalouderback@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Renovate Bot <bot@renovateapp.com>
Co-authored-by: Christina Tai <42459486+christinaatai@users.noreply.github.com>
Co-authored-by: Stephen Marshall <smarshall1980@gmail.com>
Co-authored-by: Katherine Muedas <muedasnka@gmail.com>
jasoncypret added a commit that referenced this pull request Jul 30, 2020
* Add blue to title kit (#921)

* Add blue to title kit

* Cover change with tests

* Fix rspec test

* Remove variant prop from docs

* Add to CHANGELOG

* Fix rspec

* Change variant to enum

* Fix rspec

* Replace empty string with nil value in variant enum

* Fixes Spacing Conflicts with Caption Sizing Props (#925)

* Fixes Spacing Conflicts

* Added Changelog Entry

Co-authored-by: Jasper Furniss <jasper.furniss@powerhrg.com>

* Add props to legend (#924)

* Add props to React Legend kit

* Remove examples of aria, data, id in React kit

* Add CHANGELOG

* Popover Overflow Fix (#922)

* added conditional classes, changed sass

* CHANGELOG update

* CHANGELOG updated

* Add aria, data props to Dashboard Value kit (#909)

* Added unreleased section for 5.3.0

* Add aria, data props to React Badge kit (#901)

* Add aria, data props to React Badge kit

* Add to CHANGELOG

* Add aria, data props to Dashboard Value kit

* Add CHANGELOG

Co-authored-by: Jonathan Zazula <djonyriz@gmail.com>
Co-authored-by: Brendan Huffman <57693937+bh247484@users.noreply.github.com>

* Collection Detail Full Page Example (#902)

* Added unreleased section for 5.3.0

* rails done, except for nav issue, react started

* Update dependency npm to v6.14.6 [SECURITY] (#896)

Co-authored-by: Renovate Bot <bot@renovateapp.com>

* made improvements to nav to allow nesting

* Add aria, data props to React Badge kit (#901)

* Add aria, data props to React Badge kit

* Add to CHANGELOG

* Added prop to remove card border (#900)

* Added prop to remove card border

* Updated changelog and spec doc

* Removed trailing white space

* Fixed react prop name to be camelcased

* Renamed rails border prop

* Updated spec doc

* v5.3.0

* rails and react complete

* updated collection detail kit, full page example ready to go

* Add props to Circle Icon Button React/Rails kits (#907)

* Add props to Circle Icon Button React/Rails kits

* Add to CHANGELOG

Co-authored-by: Jasper Furniss <jasperfurniss@gmail.com>

* Add props to Body React kit (#904)

* Add props to Body React kit

* Add to CHANGELOG

* Fix trailing spaces

Co-authored-by: Jasper Furniss <jasperfurniss@gmail.com>

* Add to kit generator (#916)

* Test 1, 2, 3 of kit generator -- add aria props, add object as option

* Finish additions and modifications to kit generator

* Fix line spacing and missing curly braces, fix case statement

* Add missing underscore and line break

* Linting

* Add to CHANGELOG

* Fix Nav Item Icon to handle conditions for icon (#913)

* Adds a div with key to wrap icon

* Updates logchange

* Make key unique from right to left

* Undo key change

* Add props to checkbox (#905)

* Add props to React Checkbox kit and add checked example

* Add aria prop to Rails Checkbox kit

* Add to CHANGELOG

Co-authored-by: Jasper Furniss <jasperfurniss@gmail.com>

* Fixed Up Changelog

* v5.4.0

* rails done, except for nav issue, react started

* made improvements to nav to allow nesting

* rails and react complete

* updated collection detail kit, full page example ready to go

* attempt to fix failing spec

Co-authored-by: Jonathan Zazula <djonyriz@gmail.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Renovate Bot <bot@renovateapp.com>
Co-authored-by: Kelly Ryan <51907753+kellyeryan@users.noreply.github.com>
Co-authored-by: Christina Tai <42459486+christinaatai@users.noreply.github.com>
Co-authored-by: Stephen Marshall <smarshall1980@gmail.com>
Co-authored-by: Jasper Furniss <jasperfurniss@gmail.com>
Co-authored-by: Katherine Muedas <muedasnka@gmail.com>
Co-authored-by: Jasper Furniss <jasper.furniss@powerhrg.com>

* CHANGELOG proofing

* upversioned to v5.5.0

* once more unto the CHANGELOG

* CHANGELOG 2, Electric Boogaloo

* Add props to image

* Add to image rspec file to cover addition of lazy prop

* Add to CHANGELOG

* Add fragment to jsx files

* Add outer div to jsx file

* Remove lazy prop

* Change rspec test to cover changes

* Amend CHANGELOG to reflect removal of lazy prop

* Fix CHANGELOG

* Fix CHANGELOG to merge

* CHANGELOG

* CHANGELOG

Co-authored-by: Jasper Furniss <jasperfurniss@gmail.com>
Co-authored-by: Jasper Furniss <jasper.furniss@powerhrg.com>
Co-authored-by: Brendan Huffman <57693937+bh247484@users.noreply.github.com>
Co-authored-by: Jonathan Zazula <djonyriz@gmail.com>
Co-authored-by: Eva Louderback <50629488+evalouderback@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Renovate Bot <bot@renovateapp.com>
Co-authored-by: Christina Tai <42459486+christinaatai@users.noreply.github.com>
Co-authored-by: Stephen Marshall <smarshall1980@gmail.com>
Co-authored-by: Katherine Muedas <muedasnka@gmail.com>
Co-authored-by: Brendan Huffman <bh247484@gmail.com>
Co-authored-by: Jason Cypret <jason@jasoncypret.com>
jasoncypret added a commit that referenced this pull request Jul 30, 2020
* Flexible body classes (#929)

* Fix for status and classes

* fix for status colors and other css modules

* updated CHANGELOG with new patch section and description for PR #929

Co-authored-by: Brendan Huffman <bh247484@gmail.com>

* v5.5.1

* v5.5.1 (#931)

* Flexible body classes (#929)

* Fix for status and classes

* fix for status colors and other css modules

* updated CHANGELOG with new patch section and description for PR #929

Co-authored-by: Brendan Huffman <bh247484@gmail.com>

* v5.5.1

Co-authored-by: Jason Cypret <jason@jasoncypret.com>

* Adds disabled attribute to button (#934)

* Adds disabled attribute button

* Adds ChangeLog

* Time Range Inline Update (#933)

* Arrow added & icons deemphasized

* ChangeLog update

Co-authored-by: Jason Cypret <jason@jasoncypret.com>

* Adding colors to Progress Simple (#935)

* v5.5.1 (#931)

* Flexible body classes (#929)

* Fix for status and classes

* fix for status colors and other css modules

* updated CHANGELOG with new patch section and description for PR #929

Co-authored-by: Brendan Huffman <bh247484@gmail.com>

* v5.5.1

Co-authored-by: Jason Cypret <jason@jasoncypret.com>

* Added positive and negative colors to progress simple kit

* Updated changelog and spec

* Updated changelog

* Added new line at end of file

* Updated example docs

Co-authored-by: Brendan Huffman <57693937+bh247484@users.noreply.github.com>
Co-authored-by: Jason Cypret <jason@jasoncypret.com>

* Add props to image (#927)

* Add blue to title kit (#921)

* Add blue to title kit

* Cover change with tests

* Fix rspec test

* Remove variant prop from docs

* Add to CHANGELOG

* Fix rspec

* Change variant to enum

* Fix rspec

* Replace empty string with nil value in variant enum

* Fixes Spacing Conflicts with Caption Sizing Props (#925)

* Fixes Spacing Conflicts

* Added Changelog Entry

Co-authored-by: Jasper Furniss <jasper.furniss@powerhrg.com>

* Add props to legend (#924)

* Add props to React Legend kit

* Remove examples of aria, data, id in React kit

* Add CHANGELOG

* Popover Overflow Fix (#922)

* added conditional classes, changed sass

* CHANGELOG update

* CHANGELOG updated

* Add aria, data props to Dashboard Value kit (#909)

* Added unreleased section for 5.3.0

* Add aria, data props to React Badge kit (#901)

* Add aria, data props to React Badge kit

* Add to CHANGELOG

* Add aria, data props to Dashboard Value kit

* Add CHANGELOG

Co-authored-by: Jonathan Zazula <djonyriz@gmail.com>
Co-authored-by: Brendan Huffman <57693937+bh247484@users.noreply.github.com>

* Collection Detail Full Page Example (#902)

* Added unreleased section for 5.3.0

* rails done, except for nav issue, react started

* Update dependency npm to v6.14.6 [SECURITY] (#896)

Co-authored-by: Renovate Bot <bot@renovateapp.com>

* made improvements to nav to allow nesting

* Add aria, data props to React Badge kit (#901)

* Add aria, data props to React Badge kit

* Add to CHANGELOG

* Added prop to remove card border (#900)

* Added prop to remove card border

* Updated changelog and spec doc

* Removed trailing white space

* Fixed react prop name to be camelcased

* Renamed rails border prop

* Updated spec doc

* v5.3.0

* rails and react complete

* updated collection detail kit, full page example ready to go

* Add props to Circle Icon Button React/Rails kits (#907)

* Add props to Circle Icon Button React/Rails kits

* Add to CHANGELOG

Co-authored-by: Jasper Furniss <jasperfurniss@gmail.com>

* Add props to Body React kit (#904)

* Add props to Body React kit

* Add to CHANGELOG

* Fix trailing spaces

Co-authored-by: Jasper Furniss <jasperfurniss@gmail.com>

* Add to kit generator (#916)

* Test 1, 2, 3 of kit generator -- add aria props, add object as option

* Finish additions and modifications to kit generator

* Fix line spacing and missing curly braces, fix case statement

* Add missing underscore and line break

* Linting

* Add to CHANGELOG

* Fix Nav Item Icon to handle conditions for icon (#913)

* Adds a div with key to wrap icon

* Updates logchange

* Make key unique from right to left

* Undo key change

* Add props to checkbox (#905)

* Add props to React Checkbox kit and add checked example

* Add aria prop to Rails Checkbox kit

* Add to CHANGELOG

Co-authored-by: Jasper Furniss <jasperfurniss@gmail.com>

* Fixed Up Changelog

* v5.4.0

* rails done, except for nav issue, react started

* made improvements to nav to allow nesting

* rails and react complete

* updated collection detail kit, full page example ready to go

* attempt to fix failing spec

Co-authored-by: Jonathan Zazula <djonyriz@gmail.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Renovate Bot <bot@renovateapp.com>
Co-authored-by: Kelly Ryan <51907753+kellyeryan@users.noreply.github.com>
Co-authored-by: Christina Tai <42459486+christinaatai@users.noreply.github.com>
Co-authored-by: Stephen Marshall <smarshall1980@gmail.com>
Co-authored-by: Jasper Furniss <jasperfurniss@gmail.com>
Co-authored-by: Katherine Muedas <muedasnka@gmail.com>
Co-authored-by: Jasper Furniss <jasper.furniss@powerhrg.com>

* CHANGELOG proofing

* upversioned to v5.5.0

* once more unto the CHANGELOG

* CHANGELOG 2, Electric Boogaloo

* Add props to image

* Add to image rspec file to cover addition of lazy prop

* Add to CHANGELOG

* Add fragment to jsx files

* Add outer div to jsx file

* Remove lazy prop

* Change rspec test to cover changes

* Amend CHANGELOG to reflect removal of lazy prop

* Fix CHANGELOG

* Fix CHANGELOG to merge

* CHANGELOG

* CHANGELOG

Co-authored-by: Jasper Furniss <jasperfurniss@gmail.com>
Co-authored-by: Jasper Furniss <jasper.furniss@powerhrg.com>
Co-authored-by: Brendan Huffman <57693937+bh247484@users.noreply.github.com>
Co-authored-by: Jonathan Zazula <djonyriz@gmail.com>
Co-authored-by: Eva Louderback <50629488+evalouderback@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Renovate Bot <bot@renovateapp.com>
Co-authored-by: Christina Tai <42459486+christinaatai@users.noreply.github.com>
Co-authored-by: Stephen Marshall <smarshall1980@gmail.com>
Co-authored-by: Katherine Muedas <muedasnka@gmail.com>
Co-authored-by: Brendan Huffman <bh247484@gmail.com>
Co-authored-by: Jason Cypret <jason@jasoncypret.com>

* Circle Chart Additions (#932)

* Circle Kit Rounded + Block

* Renamed Variables

* Latest Doc Updates

* Custom Colors Override Prop

* Circle Chart Extensions v1 Done

* Updated Changelog

* Fix for Circle Chart

* Moved Color Logic to Highchart Plugin

* Cleanup

* More Syntax Fixes

* Latest

* Formatting File

* Cleaning Up Again

* Lint Compaints

* Refactoring Functions

Co-authored-by: Jasper Furniss <jasper.furniss@powerhrg.com>

* Moved Installation Kit and Logistic Kit so that they're part of Label Value Kit (#915)

* Add blue to title kit (#921)

* Add blue to title kit

* Cover change with tests

* Fix rspec test

* Remove variant prop from docs

* Add to CHANGELOG

* Fix rspec

* Change variant to enum

* Fix rspec

* Replace empty string with nil value in variant enum

* Created Logistics category

* Updated kit, example docs and changelog

* Fixed example docs

* Fixed changelog

* Removed Installer Kit and Logsitic Kit

* Updated spec doc

* Updated title link prop, Label Value Kit description, and cleaned Label Value scss file

* Updated details variant description

Co-authored-by: Kelly Ryan <51907753+kellyeryan@users.noreply.github.com>

* Update CHANGELOG.md

Co-authored-by: Brendan Huffman <bh247484@gmail.com>
Co-authored-by: Brendan Huffman <57693937+bh247484@users.noreply.github.com>
Co-authored-by: Katherine Muedas <muedasnka@gmail.com>
Co-authored-by: Megan Trimble <53874143+megantrimble@users.noreply.github.com>
Co-authored-by: Christina Tai <42459486+christinaatai@users.noreply.github.com>
Co-authored-by: Kelly Ryan <51907753+kellyeryan@users.noreply.github.com>
Co-authored-by: Jasper Furniss <jasperfurniss@gmail.com>
Co-authored-by: Jasper Furniss <jasper.furniss@powerhrg.com>
Co-authored-by: Jonathan Zazula <djonyriz@gmail.com>
Co-authored-by: Eva Louderback <50629488+evalouderback@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Renovate Bot <bot@renovateapp.com>
Co-authored-by: Stephen Marshall <smarshall1980@gmail.com>
jasoncypret added a commit that referenced this pull request Jul 30, 2020
* Bumped the version

* Playbook 6.0.0 (#938)

* Flexible body classes (#929)

* Fix for status and classes

* fix for status colors and other css modules

* updated CHANGELOG with new patch section and description for PR #929

Co-authored-by: Brendan Huffman <bh247484@gmail.com>

* v5.5.1

* v5.5.1 (#931)

* Flexible body classes (#929)

* Fix for status and classes

* fix for status colors and other css modules

* updated CHANGELOG with new patch section and description for PR #929

Co-authored-by: Brendan Huffman <bh247484@gmail.com>

* v5.5.1

Co-authored-by: Jason Cypret <jason@jasoncypret.com>

* Adds disabled attribute to button (#934)

* Adds disabled attribute button

* Adds ChangeLog

* Time Range Inline Update (#933)

* Arrow added & icons deemphasized

* ChangeLog update

Co-authored-by: Jason Cypret <jason@jasoncypret.com>

* Adding colors to Progress Simple (#935)

* v5.5.1 (#931)

* Flexible body classes (#929)

* Fix for status and classes

* fix for status colors and other css modules

* updated CHANGELOG with new patch section and description for PR #929

Co-authored-by: Brendan Huffman <bh247484@gmail.com>

* v5.5.1

Co-authored-by: Jason Cypret <jason@jasoncypret.com>

* Added positive and negative colors to progress simple kit

* Updated changelog and spec

* Updated changelog

* Added new line at end of file

* Updated example docs

Co-authored-by: Brendan Huffman <57693937+bh247484@users.noreply.github.com>
Co-authored-by: Jason Cypret <jason@jasoncypret.com>

* Add props to image (#927)

* Add blue to title kit (#921)

* Add blue to title kit

* Cover change with tests

* Fix rspec test

* Remove variant prop from docs

* Add to CHANGELOG

* Fix rspec

* Change variant to enum

* Fix rspec

* Replace empty string with nil value in variant enum

* Fixes Spacing Conflicts with Caption Sizing Props (#925)

* Fixes Spacing Conflicts

* Added Changelog Entry

Co-authored-by: Jasper Furniss <jasper.furniss@powerhrg.com>

* Add props to legend (#924)

* Add props to React Legend kit

* Remove examples of aria, data, id in React kit

* Add CHANGELOG

* Popover Overflow Fix (#922)

* added conditional classes, changed sass

* CHANGELOG update

* CHANGELOG updated

* Add aria, data props to Dashboard Value kit (#909)

* Added unreleased section for 5.3.0

* Add aria, data props to React Badge kit (#901)

* Add aria, data props to React Badge kit

* Add to CHANGELOG

* Add aria, data props to Dashboard Value kit

* Add CHANGELOG

Co-authored-by: Jonathan Zazula <djonyriz@gmail.com>
Co-authored-by: Brendan Huffman <57693937+bh247484@users.noreply.github.com>

* Collection Detail Full Page Example (#902)

* Added unreleased section for 5.3.0

* rails done, except for nav issue, react started

* Update dependency npm to v6.14.6 [SECURITY] (#896)

Co-authored-by: Renovate Bot <bot@renovateapp.com>

* made improvements to nav to allow nesting

* Add aria, data props to React Badge kit (#901)

* Add aria, data props to React Badge kit

* Add to CHANGELOG

* Added prop to remove card border (#900)

* Added prop to remove card border

* Updated changelog and spec doc

* Removed trailing white space

* Fixed react prop name to be camelcased

* Renamed rails border prop

* Updated spec doc

* v5.3.0

* rails and react complete

* updated collection detail kit, full page example ready to go

* Add props to Circle Icon Button React/Rails kits (#907)

* Add props to Circle Icon Button React/Rails kits

* Add to CHANGELOG

Co-authored-by: Jasper Furniss <jasperfurniss@gmail.com>

* Add props to Body React kit (#904)

* Add props to Body React kit

* Add to CHANGELOG

* Fix trailing spaces

Co-authored-by: Jasper Furniss <jasperfurniss@gmail.com>

* Add to kit generator (#916)

* Test 1, 2, 3 of kit generator -- add aria props, add object as option

* Finish additions and modifications to kit generator

* Fix line spacing and missing curly braces, fix case statement

* Add missing underscore and line break

* Linting

* Add to CHANGELOG

* Fix Nav Item Icon to handle conditions for icon (#913)

* Adds a div with key to wrap icon

* Updates logchange

* Make key unique from right to left

* Undo key change

* Add props to checkbox (#905)

* Add props to React Checkbox kit and add checked example

* Add aria prop to Rails Checkbox kit

* Add to CHANGELOG

Co-authored-by: Jasper Furniss <jasperfurniss@gmail.com>

* Fixed Up Changelog

* v5.4.0

* rails done, except for nav issue, react started

* made improvements to nav to allow nesting

* rails and react complete

* updated collection detail kit, full page example ready to go

* attempt to fix failing spec

Co-authored-by: Jonathan Zazula <djonyriz@gmail.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Renovate Bot <bot@renovateapp.com>
Co-authored-by: Kelly Ryan <51907753+kellyeryan@users.noreply.github.com>
Co-authored-by: Christina Tai <42459486+christinaatai@users.noreply.github.com>
Co-authored-by: Stephen Marshall <smarshall1980@gmail.com>
Co-authored-by: Jasper Furniss <jasperfurniss@gmail.com>
Co-authored-by: Katherine Muedas <muedasnka@gmail.com>
Co-authored-by: Jasper Furniss <jasper.furniss@powerhrg.com>

* CHANGELOG proofing

* upversioned to v5.5.0

* once more unto the CHANGELOG

* CHANGELOG 2, Electric Boogaloo

* Add props to image

* Add to image rspec file to cover addition of lazy prop

* Add to CHANGELOG

* Add fragment to jsx files

* Add outer div to jsx file

* Remove lazy prop

* Change rspec test to cover changes

* Amend CHANGELOG to reflect removal of lazy prop

* Fix CHANGELOG

* Fix CHANGELOG to merge

* CHANGELOG

* CHANGELOG

Co-authored-by: Jasper Furniss <jasperfurniss@gmail.com>
Co-authored-by: Jasper Furniss <jasper.furniss@powerhrg.com>
Co-authored-by: Brendan Huffman <57693937+bh247484@users.noreply.github.com>
Co-authored-by: Jonathan Zazula <djonyriz@gmail.com>
Co-authored-by: Eva Louderback <50629488+evalouderback@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Renovate Bot <bot@renovateapp.com>
Co-authored-by: Christina Tai <42459486+christinaatai@users.noreply.github.com>
Co-authored-by: Stephen Marshall <smarshall1980@gmail.com>
Co-authored-by: Katherine Muedas <muedasnka@gmail.com>
Co-authored-by: Brendan Huffman <bh247484@gmail.com>
Co-authored-by: Jason Cypret <jason@jasoncypret.com>

* Circle Chart Additions (#932)

* Circle Kit Rounded + Block

* Renamed Variables

* Latest Doc Updates

* Custom Colors Override Prop

* Circle Chart Extensions v1 Done

* Updated Changelog

* Fix for Circle Chart

* Moved Color Logic to Highchart Plugin

* Cleanup

* More Syntax Fixes

* Latest

* Formatting File

* Cleaning Up Again

* Lint Compaints

* Refactoring Functions

Co-authored-by: Jasper Furniss <jasper.furniss@powerhrg.com>

* Moved Installation Kit and Logistic Kit so that they're part of Label Value Kit (#915)

* Add blue to title kit (#921)

* Add blue to title kit

* Cover change with tests

* Fix rspec test

* Remove variant prop from docs

* Add to CHANGELOG

* Fix rspec

* Change variant to enum

* Fix rspec

* Replace empty string with nil value in variant enum

* Created Logistics category

* Updated kit, example docs and changelog

* Fixed example docs

* Fixed changelog

* Removed Installer Kit and Logsitic Kit

* Updated spec doc

* Updated title link prop, Label Value Kit description, and cleaned Label Value scss file

* Updated details variant description

Co-authored-by: Kelly Ryan <51907753+kellyeryan@users.noreply.github.com>

* Update CHANGELOG.md

Co-authored-by: Brendan Huffman <bh247484@gmail.com>
Co-authored-by: Brendan Huffman <57693937+bh247484@users.noreply.github.com>
Co-authored-by: Katherine Muedas <muedasnka@gmail.com>
Co-authored-by: Megan Trimble <53874143+megantrimble@users.noreply.github.com>
Co-authored-by: Christina Tai <42459486+christinaatai@users.noreply.github.com>
Co-authored-by: Kelly Ryan <51907753+kellyeryan@users.noreply.github.com>
Co-authored-by: Jasper Furniss <jasperfurniss@gmail.com>
Co-authored-by: Jasper Furniss <jasper.furniss@powerhrg.com>
Co-authored-by: Jonathan Zazula <djonyriz@gmail.com>
Co-authored-by: Eva Louderback <50629488+evalouderback@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Renovate Bot <bot@renovateapp.com>
Co-authored-by: Stephen Marshall <smarshall1980@gmail.com>

Co-authored-by: Brendan Huffman <bh247484@gmail.com>
Co-authored-by: Brendan Huffman <57693937+bh247484@users.noreply.github.com>
Co-authored-by: Katherine Muedas <muedasnka@gmail.com>
Co-authored-by: Megan Trimble <53874143+megantrimble@users.noreply.github.com>
Co-authored-by: Christina Tai <42459486+christinaatai@users.noreply.github.com>
Co-authored-by: Kelly Ryan <51907753+kellyeryan@users.noreply.github.com>
Co-authored-by: Jasper Furniss <jasperfurniss@gmail.com>
Co-authored-by: Jasper Furniss <jasper.furniss@powerhrg.com>
Co-authored-by: Jonathan Zazula <djonyriz@gmail.com>
Co-authored-by: Eva Louderback <50629488+evalouderback@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Renovate Bot <bot@renovateapp.com>
Co-authored-by: Stephen Marshall <smarshall1980@gmail.com>
thestephenmarshall pushed a commit that referenced this pull request Aug 21, 2020
* Adds a div with key to wrap icon

* Updates logchange

* Make key unique from right to left

* Undo key change
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
milano 20 MAX - Deploy this PR to a review environment via Milano
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants