-
Notifications
You must be signed in to change notification settings - Fork 357
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
feat(tab-select): initial implementation for tab select *experimental* #1187
Conversation
first pass on tab select component and will be treated as experimental while we use it in multiple products to ensure quality
@@ -0,0 +1,3 @@ | |||
<ng-template> | |||
<ng-content></ng-content> | |||
</ng-template> |
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.
Will the extra special characters cause any problems?
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.
Maybe these aren't a problem...I see them on test-bed.component.html as well.
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.
what extra special characters?
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.
Weird....they are gone now.
+ Disables ripple effect on component. | ||
+ color?: ThemePalette | ||
+ Color of the tab group. | ||
+ backgroundColor: ThemePalette |
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.
Is backgroundColor
optional or required?
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.
good catch
MY LABEL 3 | ||
</td-tab-option> | ||
</td-tab-select> | ||
</div> |
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.
MY LABEL 3 | ||
</td-tab-option> | ||
</td-tab-select> | ||
</div> |
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.
no example with disabledRipple, do we care?
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.
added~
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.
UX LGTM
|
Will be taken care of in #1191 |
Teradata#1187) * feat(tab-select): initial implementation for tab select *experimental* first pass on tab select component and will be treated as experimental while we use it in multiple products to ensure quality * docs(tab-select): make backgroundColor optional in README * chore(tab-select): add initial set of unit tests * feat(): add disabled ripple on tabs for test-bed
Description
First pass on tab select component and will be treated as experimental while we use it in multiple products to ensure quality.
Usage:
What's included?
Test Steps
npm run serve:test-bed
General Tests for Every PR
npm run serve:prod
still works.npm run tslint
passes.npm run stylelint
passes.npm test
passes and code coverage is not lower.npm run build:lib
still works.Screenshots or link to StackBlitz/Plunker
closes #1178