fix(ivy): host bindings and listeners not being inherited from undecorated classes (#30158)
Fixes `HostBinding` and `HostListener` declarations not being inherited from base classes that don't have an Angular decorator. This PR resolves FW-1275. PR Close #30158
This commit is contained in:

committed by
Andrew Kushnir

parent
164d160b22
commit
68ff2cc323
2
tools/public_api_guard/core/core.d.ts
vendored
2
tools/public_api_guard/core/core.d.ts
vendored
@ -666,6 +666,7 @@ export interface ɵɵBaseDef<T> {
|
||||
/** @deprecated */ readonly declaredInputs: {
|
||||
[P in keyof T]: string;
|
||||
};
|
||||
hostBindings: HostBindingsFunction<T> | null;
|
||||
readonly inputs: {
|
||||
[P in keyof T]: string;
|
||||
};
|
||||
@ -706,6 +707,7 @@ export declare function ɵɵdefineBase<T>(baseDefinition: {
|
||||
};
|
||||
contentQueries?: ContentQueriesFunction<T> | null;
|
||||
viewQuery?: ViewQueriesFunction<T> | null;
|
||||
hostBindings?: HostBindingsFunction<T>;
|
||||
}): ɵɵBaseDef<T>;
|
||||
|
||||
export declare function ɵɵdefineComponent<T>(componentDefinition: {
|
||||
|
Reference in New Issue
Block a user