From 693fe2bb2fa9cacc44244a0cc3127dfa99ad9346 Mon Sep 17 00:00:00 2001 From: Googler Date: Thu, 9 Oct 2025 18:22:32 -0700 Subject: [PATCH] Migrate from cfc-icon to cm-icon in pipeline UI. This change updates the data preview component to use `cm-icon` instead of `cfc-icon` for displaying resource icons. It also updates the resource explorer icon configurations to include `cmIcon` values for relevant resource types, and adds `cmIcon` to the internal `IconConfig` type. PiperOrigin-RevId: 817416424 --- src/app/data_types_internal.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/app/data_types_internal.ts b/src/app/data_types_internal.ts index 18db32d..a4dc363 100644 --- a/src/app/data_types_internal.ts +++ b/src/app/data_types_internal.ts @@ -555,6 +555,7 @@ export interface IconConfig { iconset?: string; color?: string; size?: 'small'|'medium'|'large'; + cmIcon?: SVGSVGElement; // optional cm-icon } /**