chore(forms): deprecate the old Query API
The old API has been replaced with ContentChildren and ViewChildren. Closes #4922
This commit is contained in:
parent
2e059dc916
commit
c5f490ba43
@ -129,6 +129,7 @@ class Attribute extends AttributeMetadata {
|
|||||||
/**
|
/**
|
||||||
* See: [QueryMetadata] for docs.
|
* See: [QueryMetadata] for docs.
|
||||||
*/
|
*/
|
||||||
|
@Deprecated("Use ContentChildren/ContentChild instead")
|
||||||
class Query extends QueryMetadata {
|
class Query extends QueryMetadata {
|
||||||
const Query(dynamic /*Type | string*/ selector, {bool descendants: false})
|
const Query(dynamic /*Type | string*/ selector, {bool descendants: false})
|
||||||
: super(selector, descendants: descendants);
|
: super(selector, descendants: descendants);
|
||||||
@ -153,6 +154,7 @@ class ContentChild extends ContentChildMetadata {
|
|||||||
/**
|
/**
|
||||||
* See: [ViewQueryMetadata] for docs.
|
* See: [ViewQueryMetadata] for docs.
|
||||||
*/
|
*/
|
||||||
|
@Deprecated("Use ViewChildren/ViewChild instead")
|
||||||
class ViewQuery extends ViewQueryMetadata {
|
class ViewQuery extends ViewQueryMetadata {
|
||||||
const ViewQuery(dynamic /*Type | string*/ selector)
|
const ViewQuery(dynamic /*Type | string*/ selector)
|
||||||
: super(selector, descendants: true);
|
: super(selector, descendants: true);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user