Skip to content

Commit 9b4085c

Browse files
authoredSep 20, 2024
feat(cdk/private): create cdk-visually-hidden style loader (#29757)
* feat(cdk/private): create cdk-visually-hidden style loader * fixup! feat(cdk/private): create cdk-visually-hidden style loader * fixup! feat(cdk/private): create cdk-visually-hidden style loader * fixup! feat(cdk/private): create cdk-visually-hidden style loader * fixup! feat(cdk/private): create cdk-visually-hidden style loader * fixup! feat(cdk/private): create cdk-visually-hidden style loader * fixup! feat(cdk/private): create cdk-visually-hidden style loader * fixup! feat(cdk/private): create cdk-visually-hidden style loader
1 parent d206225 commit 9b4085c

File tree

5 files changed

+43
-1
lines changed

5 files changed

+43
-1
lines changed
 

‎src/cdk/private/BUILD.bazel

+8-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
load("//tools:defaults.bzl", "markdown_to_html", "ng_module")
1+
load("//tools:defaults.bzl", "markdown_to_html", "ng_module", "sass_binary")
22

33
package(default_visibility = ["//visibility:public"])
44

@@ -8,11 +8,18 @@ ng_module(
88
["**/*.ts"],
99
exclude = ["**/*.spec.ts"],
1010
),
11+
assets = [":visually-hidden-styles"],
1112
deps = [
1213
"@npm//@angular/core",
1314
],
1415
)
1516

17+
sass_binary(
18+
name = "visually-hidden-styles",
19+
src = ":visually-hidden/visually-hidden.scss",
20+
deps = ["//src/cdk/a11y:a11y_scss_lib"],
21+
)
22+
1623
markdown_to_html(
1724
name = "overview",
1825
srcs = [":private.md"],

‎src/cdk/private/public-api.ts

+1
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,4 @@
77
*/
88

99
export * from './style-loader';
10+
export * from './visually-hidden/visually-hidden';
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
@use '../../a11y';
2+
3+
@include a11y.a11y-visually-hidden();
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 the .cdk-visually-hidden styles.
13+
* @docs-private
14+
*/
15+
@Component({
16+
standalone: true,
17+
styleUrl: 'visually-hidden.css',
18+
exportAs: 'cdkVisuallyHidden',
19+
encapsulation: ViewEncapsulation.None,
20+
template: '',
21+
changeDetection: ChangeDetectionStrategy.OnPush,
22+
})
23+
export class _VisuallyHiddenLoader {}

‎tools/public_api_guard/cdk/private.md

+8
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,14 @@ export class _CdkPrivateStyleLoader {
1616
static ɵprov: i0.ɵɵInjectableDeclaration<_CdkPrivateStyleLoader>;
1717
}
1818

19+
// @public
20+
export class _VisuallyHiddenLoader {
21+
// (undocumented)
22+
static ɵcmp: i0.ɵɵComponentDeclaration<_VisuallyHiddenLoader, "ng-component", ["cdkVisuallyHidden"], {}, {}, never, never, true, never>;
23+
// (undocumented)
24+
static ɵfac: i0.ɵɵFactoryDeclaration<_VisuallyHiddenLoader, never>;
25+
}
26+
1927
// (No @packageDocumentation comment for this package)
2028

2129
```

0 commit comments

Comments
 (0)
Please sign in to comment.