-
Notifications
You must be signed in to change notification settings - Fork 230
Support ::ng-deep as an alternative to /deep/ #454
Comments
We have a number of ideas, but nothing I'm able to publish yet. Will update soon. |
That's what I wanted to hear, that it's on your radar. No need to provide details right now. |
We've decided to deprecate Here is our internal test case for this feature: test('should handle ::ng-deep', () {
var css = '::ng-deep y {}';
shimAndExpect(css, 'y {}');
css = 'x ::ng-deep y {}';
shimAndExpect(css, 'x.$content y {}');
css = ':host > ::ng-deep .x {}';
shimAndExpect(css, '.$host > .x {}');
css = ':host ::ng-deep > .x {}';
shimAndExpect(css, '.$host > .x {}');
css = ':host > ::ng-deep > .x {}';
shimAndExpect(css, '.$host > > .x {}');
}); We've gotten confirmation this will be supported (parsable) in all major SASS tooling. AngularDart NOTE: We will back-port and release |
Until angulardart/angular#454 lands
@leonsenft Was this included as part of #471 ? |
@alorenzen Yes it was. Looks like it got swallowed up by 302c386 and we lost the commit message. |
Angular will need some replacement
sass/dart-sass#154
The text was updated successfully, but these errors were encountered: