Skip to content

Commit c3103dc

Browse files
committed
feat(google-maps): Add map-info-window component
Remove BUILD files to conform with the recent fix for the npm package.
1 parent e4525fd commit c3103dc

File tree

5 files changed

+11
-56
lines changed

5 files changed

+11
-56
lines changed

src/google-maps/BUILD.bazel

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,12 @@ ng_module(
99
["**/*.ts"],
1010
exclude = ["**/*.spec.ts"],
1111
),
12+
assets = ["//src/google-maps/map-info-window/assets:map-info-window.css"],
1213
module_name = "@angular/google-maps",
1314
deps = [
1415
"@npm//@angular/core",
1516
"@npm//@types/googlemaps",
17+
"@npm//rxjs",
1618
],
1719
)
1820

src/google-maps/map-info-window/BUILD.bazel

Lines changed: 0 additions & 55 deletions
This file was deleted.
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
package(default_visibility = ["//visibility:public"])
2+
3+
load("@io_bazel_rules_sass//:defs.bzl", "sass_binary")
4+
5+
sass_binary(
6+
name = "map-info-window_scss",
7+
src = "map-info-window.scss",
8+
)

src/google-maps/map-info-window/map-info-window.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ import {MapMarker} from '../map-marker/index';
2525
<ng-content></ng-content>
2626
</div>
2727
</div>`,
28-
styleUrls: ['map-info-window.css'],
28+
styleUrls: ['./assets/map-info-window.css'],
2929
})
3030
export class MapInfoWindow implements OnInit, OnDestroy {
3131
@Input()

0 commit comments

Comments
 (0)