feat(core): make static query flag optional (#32686)
Switches back to having the `static` flag be optional on `ViewChild` and `ContentChild` queries, in preparation for changing its default value. PR Close #32686
This commit is contained in:
parent
948b01ce55
commit
25219baeb4
|
@ -29,7 +29,7 @@ export interface Query {
|
||||||
read: any;
|
read: any;
|
||||||
isViewQuery: boolean;
|
isViewQuery: boolean;
|
||||||
selector: any;
|
selector: any;
|
||||||
static: boolean;
|
static?: boolean;
|
||||||
}
|
}
|
||||||
|
|
||||||
export const createContentChildren = makeMetadataFactory<Query>(
|
export const createContentChildren = makeMetadataFactory<Query>(
|
||||||
|
|
|
@ -101,7 +101,7 @@ export interface Query {
|
||||||
read: any;
|
read: any;
|
||||||
isViewQuery: boolean;
|
isViewQuery: boolean;
|
||||||
selector: any;
|
selector: any;
|
||||||
static: boolean;
|
static?: boolean;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -222,8 +222,8 @@ export interface ContentChildDecorator {
|
||||||
*
|
*
|
||||||
* @Annotation
|
* @Annotation
|
||||||
*/
|
*/
|
||||||
(selector: Type<any>|Function|string, opts: {read?: any, static: boolean}): any;
|
(selector: Type<any>|Function|string, opts?: {read?: any, static?: boolean}): any;
|
||||||
new (selector: Type<any>|Function|string, opts: {read?: any, static: boolean}): ContentChild;
|
new (selector: Type<any>|Function|string, opts?: {read?: any, static?: boolean}): ContentChild;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -348,8 +348,8 @@ export interface ViewChildDecorator {
|
||||||
*
|
*
|
||||||
* @Annotation
|
* @Annotation
|
||||||
*/
|
*/
|
||||||
(selector: Type<any>|Function|string, opts: {read?: any, static: boolean}): any;
|
(selector: Type<any>|Function|string, opts?: {read?: any, static?: boolean}): any;
|
||||||
new (selector: Type<any>|Function|string, opts: {read?: any, static: boolean}): ViewChild;
|
new (selector: Type<any>|Function|string, opts?: {read?: any, static?: boolean}): ViewChild;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -177,13 +177,13 @@ export interface ConstructorSansProvider {
|
||||||
export declare type ContentChild = Query;
|
export declare type ContentChild = Query;
|
||||||
|
|
||||||
export interface ContentChildDecorator {
|
export interface ContentChildDecorator {
|
||||||
(selector: Type<any> | Function | string, opts: {
|
(selector: Type<any> | Function | string, opts?: {
|
||||||
read?: any;
|
read?: any;
|
||||||
static: boolean;
|
static?: boolean;
|
||||||
}): any;
|
}): any;
|
||||||
new (selector: Type<any> | Function | string, opts: {
|
new (selector: Type<any> | Function | string, opts?: {
|
||||||
read?: any;
|
read?: any;
|
||||||
static: boolean;
|
static?: boolean;
|
||||||
}): ContentChild;
|
}): ContentChild;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1151,7 +1151,7 @@ export interface Query {
|
||||||
isViewQuery: boolean;
|
isViewQuery: boolean;
|
||||||
read: any;
|
read: any;
|
||||||
selector: any;
|
selector: any;
|
||||||
static: boolean;
|
static?: boolean;
|
||||||
}
|
}
|
||||||
|
|
||||||
export declare abstract class Query {
|
export declare abstract class Query {
|
||||||
|
@ -1445,13 +1445,13 @@ export declare const VERSION: Version;
|
||||||
export declare type ViewChild = Query;
|
export declare type ViewChild = Query;
|
||||||
|
|
||||||
export interface ViewChildDecorator {
|
export interface ViewChildDecorator {
|
||||||
(selector: Type<any> | Function | string, opts: {
|
(selector: Type<any> | Function | string, opts?: {
|
||||||
read?: any;
|
read?: any;
|
||||||
static: boolean;
|
static?: boolean;
|
||||||
}): any;
|
}): any;
|
||||||
new (selector: Type<any> | Function | string, opts: {
|
new (selector: Type<any> | Function | string, opts?: {
|
||||||
read?: any;
|
read?: any;
|
||||||
static: boolean;
|
static?: boolean;
|
||||||
}): ViewChild;
|
}): ViewChild;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue