Skip to content

Commit d206225

Browse files
authoredSep 20, 2024··
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
1 parent a6a7e77 commit d206225

File tree

3 files changed

+33
-0
lines changed

3 files changed

+33
-0
lines changed
 

‎src/material/core/BUILD.bazel

+7
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ ng_module(
2525
":option/optgroup.css",
2626
":internal-form-field/internal-form-field.css",
2727
":ripple/ripple-structure.css",
28+
":focus-indicators/structural-styles.css",
2829
] + glob(["**/*.html"]),
2930
deps = [
3031
"//src:dev_mode_types",
@@ -72,6 +73,12 @@ sass_library(
7273
],
7374
)
7475

76+
sass_binary(
77+
name = "structural_styles_scss",
78+
src = "focus-indicators/structural-styles.scss",
79+
deps = [":core_scss_lib"],
80+
)
81+
7582
sass_binary(
7683
name = "pseudo_checkbox_scss",
7784
src = "selection/pseudo-checkbox/pseudo-checkbox.scss",
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
@use './private';
2+
3+
@include private.structural-styling();
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
/**
2+
* @license
3+
* Copyright Google LLC All Rights Reserved.
4+
*
5+
* Use of this source code is governed by an MIT-style license that can be
6+
* found in the LICENSE file at https://angular.dev/license
7+
*/
8+
9+
import {ChangeDetectionStrategy, Component, ViewEncapsulation} from '@angular/core';
10+
11+
/**
12+
* Component used to load structural styles for focus indicators.
13+
* @docs-private
14+
*/
15+
@Component({
16+
standalone: true,
17+
selector: 'structural-styles',
18+
styleUrl: 'structural-styles.css',
19+
encapsulation: ViewEncapsulation.None,
20+
template: '',
21+
changeDetection: ChangeDetectionStrategy.OnPush,
22+
})
23+
export class _StructuralStylesLoader {}

0 commit comments

Comments
 (0)
Please sign in to comment.