-
Notifications
You must be signed in to change notification settings - Fork 6.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(material/core): create focus-indicator structural styles loader (#…
…29763) * feat(material/core): create focus-indicator structural styles loader * fixup! feat(material/core): create focus-indicator structural styles loader * fixup! feat(material/core): create focus-indicator structural styles loader * fixup! feat(material/core): create focus-indicator structural styles loader * fixup! feat(material/core): create focus-indicator structural styles loader
- Loading branch information
1 parent
a6a7e77
commit d206225
Showing
3 changed files
with
33 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
@use './private'; | ||
|
||
@include private.structural-styling(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
/** | ||
* @license | ||
* Copyright Google LLC All Rights Reserved. | ||
* | ||
* Use of this source code is governed by an MIT-style license that can be | ||
* found in the LICENSE file at https://angular.dev/license | ||
*/ | ||
|
||
import {ChangeDetectionStrategy, Component, ViewEncapsulation} from '@angular/core'; | ||
|
||
/** | ||
* Component used to load structural styles for focus indicators. | ||
* @docs-private | ||
*/ | ||
@Component({ | ||
standalone: true, | ||
selector: 'structural-styles', | ||
styleUrl: 'structural-styles.css', | ||
encapsulation: ViewEncapsulation.None, | ||
template: '', | ||
changeDetection: ChangeDetectionStrategy.OnPush, | ||
}) | ||
export class _StructuralStylesLoader {} |