-
Notifications
You must be signed in to change notification settings - Fork 65
added default aria-label to colorpicker input #1788
Conversation
Codecov Report
@@ Coverage Diff @@
## master #1788 +/- ##
==========================================
+ Coverage 99.98% 99.98% +<.01%
==========================================
Files 410 410
Lines 8585 8589 +4
Branches 1267 1269 +2
==========================================
+ Hits 8584 8588 +4
Misses 1 1
Continue to review full report at Codecov.
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A few small things and I think this one is good to go.
@@ -28,6 +28,7 @@ import { | |||
} from './types'; | |||
|
|||
import { Subscription } from 'rxjs/Subscription'; | |||
import { SkyResourcesService } from '../resources'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
import {
SkyResourcesService
} from '../resources';
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done
@@ -87,7 +88,8 @@ export class SkyColorpickerInputDirective | |||
constructor( | |||
private elementRef: ElementRef, | |||
private renderer: Renderer, | |||
private service: SkyColorpickerService | |||
private service: SkyColorpickerService, | |||
private skyResourceSvc: SkyResourcesService |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Use the keyword 'Service' to be consistent. While we're in here, we should also rename the service
parameter (okay since it's private).
private colorpickerService: SkyColorpickerService,
private resourceService: SkyResourcesService
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done
no longer on hold. The input field is now readonly and will not be hidden |
Added a default aria-label to colorpicker components for when one is not supplied
Resolves: #1381