Uh oh!
There was an error while loading. Please reload this page.
feat(stepper): add CdkStepHeader directive and fix CdkStepper error on init - #10614
Conversation
06a03b5 to
a45d4a2Comparekherock
commented
Apr 11, 2018
Any reason this is taking a bit longer to merge? I was hoping this would have made it into the last RC. |
mmalerba
commented
Apr 24, 2018
When we did the presubmit against Google's code it looks like there was a team that was extending |
kherock
commented
May 4, 2018
This didn't make it into the 6.0 release :( |
Hi @crisbeto! This PR has merge conflicts due to recent upstream merges. |
a45d4a2 to
8ce96a3CompareHi @crisbeto! This PR has merge conflicts due to recent upstream merges. |
1 similar comment
Hi @crisbeto! This PR has merge conflicts due to recent upstream merges. |
8ce96a3 to
50c5ffeCompare50c5ffe to
9f9939fCompareHi @crisbeto! This PR has merge conflicts due to recent upstream merges. |
9f9939f to
d675ba1CompareIs this going to be merged soon? It's a bit silly that 7 months and two major releases later this is still an issue. |
eeugeen
commented
Oct 24, 2018
- This didn't make it into the 6.0 release :(+ This didn't make it into the 7.0 release :( |
kherock
commented
Oct 24, 2018
@mmalerba Can this get merged for 7.x please? This isn't marked with |
| /** The list of step headers of the steps in the stepper. */ | ||
| _stepHeader: QueryList<FocusableOption>; | ||
| @ContentChildren(CdkStepHeader) _stepHeader: QueryList<CdkStepHeader>; |
There was a problem hiding this comment.
@crisbeto this is technically a breaking change right now, can you change it to this instead:
@ContentChildren(CdkStepHeader) _stepHeader: QueryList<FocusableOption>;There was a problem hiding this comment.
Done. I didn't consider it a breaking change, because the property is underscored.
…n init * Adds the `CdkStepHeader` directive which is the equivalent of `MatStepHeader` and can be used by consumers when building custom steppers. * Fixes an error that was being thrown on init when using a `cdkStepper` directly. Fixesangular#10611.
d675ba1 to
462811cCompare…n init (angular#10614) * Adds the `CdkStepHeader` directive which is the equivalent of `MatStepHeader` and can be used by consumers when building custom steppers. * Fixes an error that was being thrown on init when using a `cdkStepper` directly. Fixesangular#10611.
kherock
commented
Nov 7, 2018
@mmalerba I'm not seeing this in the recent 7.0.2 and 7.0.3 releases? |
tobang
commented
Nov 9, 2018
Any idea when this will be available? |
mmalerba
commented
Nov 12, 2018
It's |
This issue has been automatically locked due to inactivity. Read more about our automatic conversation locking policy. This action has been performed automatically by a bot. |
CdkStepHeaderdirective which is the equivalent ofMatStepHeaderand can be used by consumers when building custom steppers.cdkStepperdirectly.Fixes#10611.