From 44b1ca9f653952cb82c5a494ea7ac815d024db4e Mon Sep 17 00:00:00 2001 From: Andrew Scott Date: Fri, 6 Mar 2026 16:24:55 -0800 Subject: [PATCH] refactor(core): update componentDeclaration to include isSignal This is in DirectiveDeclaration and in the golden files with ComponentDeclaration so I assume it was an accidental omission. --- packages/core/src/render3/interfaces/public_definitions.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/packages/core/src/render3/interfaces/public_definitions.ts b/packages/core/src/render3/interfaces/public_definitions.ts index 24f9fcb6c078..771facaf3762 100644 --- a/packages/core/src/render3/interfaces/public_definitions.ts +++ b/packages/core/src/render3/interfaces/public_definitions.ts @@ -41,7 +41,9 @@ export type ɵɵComponentDeclaration< Selector extends String, ExportAs extends string[], // `string` keys are for backwards compatibility with pre-16 versions. - InputMap extends {[key: string]: string | {alias: string | null; required: boolean}}, + InputMap extends { + [key: string]: string | {alias: string | null; required: boolean; isSignal?: boolean}; + }, OutputMap extends {[key: string]: string}, QueryFields extends string[], NgContentSelectors extends string[],