From 795863dd52cd260f267f38bb1f8296e30f3530cd Mon Sep 17 00:00:00 2001 From: Googler Date: Thu, 18 Dec 2025 04:12:21 -0800 Subject: [PATCH] Adds selected column component to the graph view UI: https://screenshot.googleplex.com/4XxCChou2WW5b7p PiperOrigin-RevId: 846195747 --- src/app/scaffold.ng.html | 1 + src/app/shelf.ng.html | 1 + src/app/shelf.ts | 33 +++++++++++++++++++++++++++++++++ 3 files changed, 35 insertions(+) create mode 100644 src/app/shelf.ng.html create mode 100644 src/app/shelf.ts diff --git a/src/app/scaffold.ng.html b/src/app/scaffold.ng.html index 62264be..e9e6a7c 100644 --- a/src/app/scaffold.ng.html +++ b/src/app/scaffold.ng.html @@ -1,4 +1,5 @@ +
diff --git a/src/app/shelf.ng.html b/src/app/shelf.ng.html new file mode 100644 index 0000000..6dbc743 --- /dev/null +++ b/src/app/shelf.ng.html @@ -0,0 +1 @@ + diff --git a/src/app/shelf.ts b/src/app/shelf.ts new file mode 100644 index 0000000..f280053 --- /dev/null +++ b/src/app/shelf.ts @@ -0,0 +1,33 @@ +/** + * @license + * Copyright 2022 Google LLC + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +import {ChangeDetectionStrategy, Component} from '@angular/core'; + +/** + * Shelf component for DAG graph. + */ +@Component({ + selector: 'ai-dag-shelf', + templateUrl: './shelf.ng.html', + changeDetection: ChangeDetectionStrategy.OnPush, + standalone: true, + host: { + 'class': 'ai-dag-shelf', + }, +}) +export class AiDagShelf { +}