fix(ivy): unable to inherit view queries into component from directive (#29203)
Fixes components not being able to inherit their view queries from a directive. This PR resolves FW-1146. PR Close #29203
This commit is contained in:

committed by
Matias Niemelä

parent
a5a35ff54a
commit
0ffa2f2e73
@ -158,6 +158,13 @@ export interface DirectiveDef<T> extends BaseDef<T> {
|
||||
*/
|
||||
contentQueries: ContentQueriesFunction<T>|null;
|
||||
|
||||
/**
|
||||
* Query-related instructions for a directive. Note that while directives don't have a
|
||||
* view and as such view queries won't necessarily do anything, there might be
|
||||
* components that extend the directive.
|
||||
*/
|
||||
viewQuery: ViewQueriesFunction<T>|null;
|
||||
|
||||
/**
|
||||
* Refreshes host bindings on the associated directive.
|
||||
*/
|
||||
|
Reference in New Issue
Block a user