Add notes scouting page to scouting app.
Change-Id: Ie2c60ba4a69ae68f407cb2a0c0fb6e90b7bfe1c5
Signed-off-by: Alex Perry <alex.perry96@gmail.com>
diff --git a/scouting/www/notes/BUILD b/scouting/www/notes/BUILD
new file mode 100644
index 0000000..39a97ef
--- /dev/null
+++ b/scouting/www/notes/BUILD
@@ -0,0 +1,29 @@
+load("@npm//@bazel/typescript:index.bzl", "ts_library")
+
+ts_library(
+ name = "notes",
+ srcs = [
+ "notes.component.ts",
+ "notes.module.ts",
+ ],
+ angular_assets = [
+ "notes.component.css",
+ "notes.ng.html",
+ "//scouting/www:common_css",
+ ],
+ compiler = "//tools:tsc_wrapped_with_angular",
+ target_compatible_with = ["@platforms//cpu:x86_64"],
+ use_angular_plugin = True,
+ visibility = ["//visibility:public"],
+ deps = [
+ "//scouting/webserver/requests/messages:error_response_ts_fbs",
+ "//scouting/webserver/requests/messages:request_notes_for_team_response_ts_fbs",
+ "//scouting/webserver/requests/messages:request_notes_for_team_ts_fbs",
+ "//scouting/webserver/requests/messages:submit_notes_response_ts_fbs",
+ "//scouting/webserver/requests/messages:submit_notes_ts_fbs",
+ "@com_github_google_flatbuffers//ts:flatbuffers_ts",
+ "@npm//@angular/common",
+ "@npm//@angular/core",
+ "@npm//@angular/forms",
+ ],
+)