feat: adding all icons from the design system to the codebase (#11033)

* error -> error-solid

* warning -> warning-solid

* all the new icons mixed in!

* card-view -> card_view

* circle-check-solid -> circle_check_solid

* corrected circle-check to new name and correct (stroke) icon

* sort-asc/desc -> sort_asc/desc

* databases -> database

* compass -> nav_explore

* pencil -> edit-alt

* more pencil migrations

* easy list view rename

* star -> favorite (changed in Figma)

* removing deprecated icon

* renaming icon to mach figma

* More -> More Horiz

* forgot to change this when ranming the file

* updating some icon names in use

* adding hella icons

* fixing errant viewboxes

* removing dropdown-arrow in favor of triangle-down

* adding key to storybook map.

* fixing icon component reference

* tweaks to fave star styling to support revised icon

* fixing a bad icon inclusion

* missed a license

* touchup to virtual dataset... will tweak later.

* e2e fix

* linting
This commit is contained in:
Evan Rusackas
2020-09-25 14:49:30 -07:00
committed by GitHub
parent 052d7a0a3e
commit eeeb21077d
128 changed files with 2226 additions and 138 deletions

View File

@@ -125,7 +125,7 @@ describe('ChartList', () => {
it('edits', () => {
expect(wrapper.find(PropertiesModal)).not.toExist();
wrapper.find('[data-test="pencil"]').first().simulate('click');
wrapper.find('[data-test="edit-alt"]').first().simulate('click');
expect(wrapper.find(PropertiesModal)).toExist();
});

View File

@@ -118,12 +118,12 @@ describe('DashboardList', () => {
it('edits', () => {
expect(wrapper.find(PropertiesModal)).not.toExist();
wrapper.find('[data-test="pencil"]').first().simulate('click');
wrapper.find('[data-test="edit-alt"]').first().simulate('click');
expect(wrapper.find(PropertiesModal)).toExist();
});
it('card view edits', () => {
wrapper.find('[data-test="pencil"]').last().simulate('click');
wrapper.find('[data-test="edit-alt"]').last().simulate('click');
expect(wrapper.find(PropertiesModal)).toExist();
});