@angular/core 17.1.2 → 17.2.0-next.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2022/primitives/signals/index.mjs +2 -2
- package/esm2022/src/application/application_tokens.mjs +2 -1
- package/esm2022/src/authoring/input.mjs +1 -1
- package/esm2022/src/authoring/input_signal.mjs +4 -1
- package/esm2022/src/authoring/input_type_checking.mjs +1 -1
- package/esm2022/src/authoring/queries.mjs +114 -0
- package/esm2022/src/authoring.mjs +1 -1
- package/esm2022/src/compiler/compiler_facade_interface.mjs +1 -1
- package/esm2022/src/core_render3_private_export.mjs +2 -2
- package/esm2022/src/linker/query_list.mjs +7 -1
- package/esm2022/src/metadata/di.mjs +7 -7
- package/esm2022/src/render3/component_ref.mjs +1 -1
- package/esm2022/src/render3/index.mjs +2 -2
- package/esm2022/src/render3/instructions/all.mjs +2 -1
- package/esm2022/src/render3/instructions/queries.mjs +6 -25
- package/esm2022/src/render3/instructions/queries_signals.mjs +55 -0
- package/esm2022/src/render3/instructions/write_to_directive_input.mjs +1 -1
- package/esm2022/src/render3/jit/directive.mjs +2 -1
- package/esm2022/src/render3/jit/environment.mjs +4 -1
- package/esm2022/src/render3/query.mjs +46 -7
- package/esm2022/src/render3/query_reactive.mjs +110 -0
- package/esm2022/src/render3/reactivity/computed.mjs +4 -1
- package/esm2022/src/render3/reactivity/signal.mjs +4 -1
- package/esm2022/src/version.mjs +1 -1
- package/esm2022/testing/src/logger.mjs +3 -3
- package/fesm2022/core.mjs +217 -36
- package/fesm2022/core.mjs.map +1 -1
- package/fesm2022/primitives/signals.mjs +2 -2
- package/fesm2022/rxjs-interop.mjs +1 -1
- package/fesm2022/testing.mjs +1 -1
- package/index.d.ts +90 -14
- package/package.json +1 -1
- package/primitives/signals/index.d.ts +3 -1
- package/rxjs-interop/index.d.ts +1 -1
- package/schematics/migrations/block-template-entities/bundle.js +615 -549
- package/schematics/migrations/block-template-entities/bundle.js.map +4 -4
- package/schematics/ng-generate/control-flow-migration/bundle.js +615 -549
- package/schematics/ng-generate/control-flow-migration/bundle.js.map +4 -4
- package/schematics/ng-generate/standalone-migration/bundle.js +2159 -1686
- package/schematics/ng-generate/standalone-migration/bundle.js.map +4 -4
- package/testing/index.d.ts +1 -1
package/fesm2022/core.mjs
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Angular v17.1
|
|
2
|
+
* @license Angular v17.2.0-next.1
|
|
3
3
|
* (c) 2010-2022 Google LLC. https://angular.io/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
6
6
|
|
|
7
|
-
import { SIGNAL_NODE as SIGNAL_NODE$1, signalSetFn as signalSetFn$1, producerAccessed as producerAccessed$1, SIGNAL as SIGNAL$1, setActiveConsumer as setActiveConsumer$1, consumerDestroy as consumerDestroy$1, createComputed as createComputed$1, createSignal as createSignal$1, signalUpdateFn as signalUpdateFn$1, REACTIVE_NODE as REACTIVE_NODE$1, consumerBeforeComputation as consumerBeforeComputation$1, consumerAfterComputation as consumerAfterComputation$1, consumerPollProducersForChange as consumerPollProducersForChange$1, getActiveConsumer as getActiveConsumer$1, createWatch as createWatch$1, setThrowInvalidWriteToSignalError as setThrowInvalidWriteToSignalError$1 } from '@angular/core/primitives/signals';
|
|
7
|
+
import { SIGNAL_NODE as SIGNAL_NODE$1, signalSetFn as signalSetFn$1, producerAccessed as producerAccessed$1, SIGNAL as SIGNAL$1, setActiveConsumer as setActiveConsumer$1, consumerDestroy as consumerDestroy$1, createComputed as createComputed$1, createSignal as createSignal$1, signalUpdateFn as signalUpdateFn$1, REACTIVE_NODE as REACTIVE_NODE$1, consumerBeforeComputation as consumerBeforeComputation$1, consumerAfterComputation as consumerAfterComputation$1, consumerPollProducersForChange as consumerPollProducersForChange$1, getActiveConsumer as getActiveConsumer$1, createWatch as createWatch$1, producerUpdateValueVersion as producerUpdateValueVersion$1, consumerMarkDirty as consumerMarkDirty$1, setThrowInvalidWriteToSignalError as setThrowInvalidWriteToSignalError$1 } from '@angular/core/primitives/signals';
|
|
8
8
|
import { Subject, Subscription, BehaviorSubject } from 'rxjs';
|
|
9
9
|
import { map, first } from 'rxjs/operators';
|
|
10
10
|
|
|
@@ -100,6 +100,9 @@ function createInputSignal(initialValue, options) {
|
|
|
100
100
|
return node.value;
|
|
101
101
|
}
|
|
102
102
|
inputValueFn[SIGNAL$1] = node;
|
|
103
|
+
if (ngDevMode) {
|
|
104
|
+
inputValueFn.toString = () => `[Input Signal: ${inputValueFn()}]`;
|
|
105
|
+
}
|
|
103
106
|
return inputValueFn;
|
|
104
107
|
}
|
|
105
108
|
|
|
@@ -4810,13 +4813,13 @@ class Query {
|
|
|
4810
4813
|
* @Annotation
|
|
4811
4814
|
* @publicApi
|
|
4812
4815
|
*/
|
|
4813
|
-
const ContentChildren = makePropDecorator('ContentChildren', (selector,
|
|
4816
|
+
const ContentChildren = makePropDecorator('ContentChildren', (selector, opts = {}) => ({
|
|
4814
4817
|
selector,
|
|
4815
4818
|
first: false,
|
|
4816
4819
|
isViewQuery: false,
|
|
4817
4820
|
descendants: false,
|
|
4818
4821
|
emitDistinctChangesOnly: emitDistinctChangesOnlyDefaultValue,
|
|
4819
|
-
...
|
|
4822
|
+
...opts
|
|
4820
4823
|
}), Query);
|
|
4821
4824
|
/**
|
|
4822
4825
|
* ContentChild decorator and metadata.
|
|
@@ -4826,20 +4829,20 @@ const ContentChildren = makePropDecorator('ContentChildren', (selector, data = {
|
|
|
4826
4829
|
*
|
|
4827
4830
|
* @publicApi
|
|
4828
4831
|
*/
|
|
4829
|
-
const ContentChild = makePropDecorator('ContentChild', (selector,
|
|
4832
|
+
const ContentChild = makePropDecorator('ContentChild', (selector, opts = {}) => ({ selector, first: true, isViewQuery: false, descendants: true, ...opts }), Query);
|
|
4830
4833
|
/**
|
|
4831
4834
|
* ViewChildren decorator and metadata.
|
|
4832
4835
|
*
|
|
4833
4836
|
* @Annotation
|
|
4834
4837
|
* @publicApi
|
|
4835
4838
|
*/
|
|
4836
|
-
const ViewChildren = makePropDecorator('ViewChildren', (selector,
|
|
4839
|
+
const ViewChildren = makePropDecorator('ViewChildren', (selector, opts = {}) => ({
|
|
4837
4840
|
selector,
|
|
4838
4841
|
first: false,
|
|
4839
4842
|
isViewQuery: true,
|
|
4840
4843
|
descendants: true,
|
|
4841
4844
|
emitDistinctChangesOnly: emitDistinctChangesOnlyDefaultValue,
|
|
4842
|
-
...
|
|
4845
|
+
...opts
|
|
4843
4846
|
}), Query);
|
|
4844
4847
|
/**
|
|
4845
4848
|
* ViewChild decorator and metadata.
|
|
@@ -4847,7 +4850,7 @@ const ViewChildren = makePropDecorator('ViewChildren', (selector, data = {}) =>
|
|
|
4847
4850
|
* @Annotation
|
|
4848
4851
|
* @publicApi
|
|
4849
4852
|
*/
|
|
4850
|
-
const ViewChild = makePropDecorator('ViewChild', (selector,
|
|
4853
|
+
const ViewChild = makePropDecorator('ViewChild', (selector, opts) => ({ selector, first: true, isViewQuery: true, descendants: true, ...opts }), Query);
|
|
4851
4854
|
|
|
4852
4855
|
var FactoryTarget;
|
|
4853
4856
|
(function (FactoryTarget) {
|
|
@@ -6849,6 +6852,7 @@ const CSP_NONCE = new InjectionToken(ngDevMode ? 'CSP nonce' : '', {
|
|
|
6849
6852
|
});
|
|
6850
6853
|
const IMAGE_CONFIG_DEFAULTS = {
|
|
6851
6854
|
breakpoints: [16, 32, 48, 64, 96, 128, 256, 384, 640, 750, 828, 1080, 1200, 1920, 2048, 3840],
|
|
6855
|
+
placeholderResolution: 30,
|
|
6852
6856
|
disableImageSizeWarning: false,
|
|
6853
6857
|
disableImageLazyLoadWarning: false,
|
|
6854
6858
|
};
|
|
@@ -10525,6 +10529,9 @@ function computed(computation, options) {
|
|
|
10525
10529
|
if (options?.equal) {
|
|
10526
10530
|
getter[SIGNAL$1].equal = options.equal;
|
|
10527
10531
|
}
|
|
10532
|
+
if (ngDevMode) {
|
|
10533
|
+
getter.toString = () => `[Computed: ${getter()}]`;
|
|
10534
|
+
}
|
|
10528
10535
|
return getter;
|
|
10529
10536
|
}
|
|
10530
10537
|
|
|
@@ -10540,6 +10547,9 @@ function signal(initialValue, options) {
|
|
|
10540
10547
|
signalFn.set = (newValue) => signalSetFn$1(node, newValue);
|
|
10541
10548
|
signalFn.update = (updateFn) => signalUpdateFn$1(node, updateFn);
|
|
10542
10549
|
signalFn.asReadonly = signalAsReadonlyFn.bind(signalFn);
|
|
10550
|
+
if (ngDevMode) {
|
|
10551
|
+
signalFn.toString = () => `[Signal: ${signalFn()}]`;
|
|
10552
|
+
}
|
|
10543
10553
|
return signalFn;
|
|
10544
10554
|
}
|
|
10545
10555
|
function signalAsReadonlyFn() {
|
|
@@ -15768,7 +15778,7 @@ function createRootComponent(componentView, rootComponentDef, rootDirectives, ho
|
|
|
15768
15778
|
function setRootNodeAttributes(hostRenderer, componentDef, hostRNode, rootSelectorOrNode) {
|
|
15769
15779
|
if (rootSelectorOrNode) {
|
|
15770
15780
|
// The placeholder will be replaced with the actual version at build time.
|
|
15771
|
-
setUpAttributes(hostRenderer, hostRNode, ['ng-version', '17.1
|
|
15781
|
+
setUpAttributes(hostRenderer, hostRNode, ['ng-version', '17.2.0-next.1']);
|
|
15772
15782
|
}
|
|
15773
15783
|
else {
|
|
15774
15784
|
// If host element is created as a part of this function call (i.e. `rootSelectorOrNode`
|
|
@@ -25441,6 +25451,7 @@ class QueryList {
|
|
|
25441
25451
|
constructor(_emitDistinctChangesOnly = false) {
|
|
25442
25452
|
this._emitDistinctChangesOnly = _emitDistinctChangesOnly;
|
|
25443
25453
|
this.dirty = true;
|
|
25454
|
+
this._onDirty = undefined;
|
|
25444
25455
|
this._results = [];
|
|
25445
25456
|
this._changesDetected = false;
|
|
25446
25457
|
this._changes = undefined;
|
|
@@ -25537,9 +25548,14 @@ class QueryList {
|
|
|
25537
25548
|
if (this._changes !== undefined && (this._changesDetected || !this._emitDistinctChangesOnly))
|
|
25538
25549
|
this._changes.emit(this);
|
|
25539
25550
|
}
|
|
25551
|
+
/** @internal */
|
|
25552
|
+
onDirty(cb) {
|
|
25553
|
+
this._onDirty = cb;
|
|
25554
|
+
}
|
|
25540
25555
|
/** internal */
|
|
25541
25556
|
setDirty() {
|
|
25542
25557
|
this.dirty = true;
|
|
25558
|
+
this._onDirty?.();
|
|
25543
25559
|
}
|
|
25544
25560
|
/** internal */
|
|
25545
25561
|
destroy() {
|
|
@@ -25678,9 +25694,15 @@ class LQueries_ {
|
|
|
25678
25694
|
}
|
|
25679
25695
|
class TQueryMetadata_ {
|
|
25680
25696
|
constructor(predicate, flags, read = null) {
|
|
25681
|
-
this.predicate = predicate;
|
|
25682
25697
|
this.flags = flags;
|
|
25683
25698
|
this.read = read;
|
|
25699
|
+
// Compiler might not be able to pre-optimize and split multiple selectors.
|
|
25700
|
+
if (typeof predicate === 'string') {
|
|
25701
|
+
this.predicate = splitQueryMultiSelectors(predicate);
|
|
25702
|
+
}
|
|
25703
|
+
else {
|
|
25704
|
+
this.predicate = predicate;
|
|
25705
|
+
}
|
|
25684
25706
|
}
|
|
25685
25707
|
}
|
|
25686
25708
|
class TQueries_ {
|
|
@@ -25976,12 +25998,44 @@ function loadQueryInternal(lView, queryIndex) {
|
|
|
25976
25998
|
ngDevMode && assertIndexInRange(lView[QUERIES].queries, queryIndex);
|
|
25977
25999
|
return lView[QUERIES].queries[queryIndex].queryList;
|
|
25978
26000
|
}
|
|
26001
|
+
/**
|
|
26002
|
+
* Creates a new instance of LQuery and returns its index in the collection of LQuery objects.
|
|
26003
|
+
*
|
|
26004
|
+
* @returns index in the collection of LQuery objects
|
|
26005
|
+
*/
|
|
25979
26006
|
function createLQuery(tView, lView, flags) {
|
|
25980
26007
|
const queryList = new QueryList((flags & 4 /* QueryFlags.emitDistinctChangesOnly */) === 4 /* QueryFlags.emitDistinctChangesOnly */);
|
|
25981
26008
|
storeCleanupWithContext(tView, lView, queryList, queryList.destroy);
|
|
25982
|
-
|
|
25983
|
-
|
|
25984
|
-
|
|
26009
|
+
const lQueries = (lView[QUERIES] ??= new LQueries_()).queries;
|
|
26010
|
+
return lQueries.push(new LQuery_(queryList)) - 1;
|
|
26011
|
+
}
|
|
26012
|
+
function createViewQuery(predicate, flags, read) {
|
|
26013
|
+
ngDevMode && assertNumber(flags, 'Expecting flags');
|
|
26014
|
+
const tView = getTView();
|
|
26015
|
+
if (tView.firstCreatePass) {
|
|
26016
|
+
createTQuery(tView, new TQueryMetadata_(predicate, flags, read), -1);
|
|
26017
|
+
if ((flags & 2 /* QueryFlags.isStatic */) === 2 /* QueryFlags.isStatic */) {
|
|
26018
|
+
tView.staticViewQueries = true;
|
|
26019
|
+
}
|
|
26020
|
+
}
|
|
26021
|
+
return createLQuery(tView, getLView(), flags);
|
|
26022
|
+
}
|
|
26023
|
+
function createContentQuery(directiveIndex, predicate, flags, read) {
|
|
26024
|
+
ngDevMode && assertNumber(flags, 'Expecting flags');
|
|
26025
|
+
const tView = getTView();
|
|
26026
|
+
if (tView.firstCreatePass) {
|
|
26027
|
+
const tNode = getCurrentTNode();
|
|
26028
|
+
createTQuery(tView, new TQueryMetadata_(predicate, flags, read), tNode.index);
|
|
26029
|
+
saveContentQueryAndDirectiveIndex(tView, directiveIndex);
|
|
26030
|
+
if ((flags & 2 /* QueryFlags.isStatic */) === 2 /* QueryFlags.isStatic */) {
|
|
26031
|
+
tView.staticContentQueries = true;
|
|
26032
|
+
}
|
|
26033
|
+
}
|
|
26034
|
+
return createLQuery(tView, getLView(), flags);
|
|
26035
|
+
}
|
|
26036
|
+
/** Splits multiple selectors in the locator. */
|
|
26037
|
+
function splitQueryMultiSelectors(locator) {
|
|
26038
|
+
return locator.split(',').map(s => s.trim());
|
|
25985
26039
|
}
|
|
25986
26040
|
function createTQuery(tView, metadata, nodeIndex) {
|
|
25987
26041
|
if (tView.queries === null)
|
|
@@ -26013,20 +26067,10 @@ function getTQuery(tView, index) {
|
|
|
26013
26067
|
* @codeGenApi
|
|
26014
26068
|
*/
|
|
26015
26069
|
function ɵɵcontentQuery(directiveIndex, predicate, flags, read) {
|
|
26016
|
-
|
|
26017
|
-
const tView = getTView();
|
|
26018
|
-
if (tView.firstCreatePass) {
|
|
26019
|
-
const tNode = getCurrentTNode();
|
|
26020
|
-
createTQuery(tView, new TQueryMetadata_(predicate, flags, read), tNode.index);
|
|
26021
|
-
saveContentQueryAndDirectiveIndex(tView, directiveIndex);
|
|
26022
|
-
if ((flags & 2 /* QueryFlags.isStatic */) === 2 /* QueryFlags.isStatic */) {
|
|
26023
|
-
tView.staticContentQueries = true;
|
|
26024
|
-
}
|
|
26025
|
-
}
|
|
26026
|
-
createLQuery(tView, getLView(), flags);
|
|
26070
|
+
createContentQuery(directiveIndex, predicate, flags, read);
|
|
26027
26071
|
}
|
|
26028
26072
|
/**
|
|
26029
|
-
* Creates new
|
|
26073
|
+
* Creates a new view query by initializing internal data structures.
|
|
26030
26074
|
*
|
|
26031
26075
|
* @param predicate The type for which the query will search
|
|
26032
26076
|
* @param flags Flags associated with the query
|
|
@@ -26035,15 +26079,7 @@ function ɵɵcontentQuery(directiveIndex, predicate, flags, read) {
|
|
|
26035
26079
|
* @codeGenApi
|
|
26036
26080
|
*/
|
|
26037
26081
|
function ɵɵviewQuery(predicate, flags, read) {
|
|
26038
|
-
|
|
26039
|
-
const tView = getTView();
|
|
26040
|
-
if (tView.firstCreatePass) {
|
|
26041
|
-
createTQuery(tView, new TQueryMetadata_(predicate, flags, read), -1);
|
|
26042
|
-
if ((flags & 2 /* QueryFlags.isStatic */) === 2 /* QueryFlags.isStatic */) {
|
|
26043
|
-
tView.staticViewQueries = true;
|
|
26044
|
-
}
|
|
26045
|
-
}
|
|
26046
|
-
createLQuery(tView, getLView(), flags);
|
|
26082
|
+
createViewQuery(predicate, flags, read);
|
|
26047
26083
|
}
|
|
26048
26084
|
/**
|
|
26049
26085
|
* Refreshes a query by combining matches from all active views and removing matches from deleted
|
|
@@ -26086,6 +26122,147 @@ function ɵɵloadQuery() {
|
|
|
26086
26122
|
return loadQueryInternal(getLView(), getCurrentQueryIndex());
|
|
26087
26123
|
}
|
|
26088
26124
|
|
|
26125
|
+
function createQuerySignalFn(firstOnly, required) {
|
|
26126
|
+
const node = Object.create(QUERY_SIGNAL_NODE);
|
|
26127
|
+
function signalFn() {
|
|
26128
|
+
// Check if the value needs updating before returning it.
|
|
26129
|
+
producerUpdateValueVersion$1(node);
|
|
26130
|
+
// Mark this producer as accessed.
|
|
26131
|
+
producerAccessed$1(node);
|
|
26132
|
+
if (firstOnly) {
|
|
26133
|
+
const firstValue = node._queryList?.first;
|
|
26134
|
+
if (firstValue === undefined && required) {
|
|
26135
|
+
// TODO: add error code
|
|
26136
|
+
// TODO: add proper message
|
|
26137
|
+
throw new RuntimeError(0, 'no query results yet!');
|
|
26138
|
+
}
|
|
26139
|
+
return firstValue;
|
|
26140
|
+
}
|
|
26141
|
+
else {
|
|
26142
|
+
// TODO(perf): make sure that I'm not creating new arrays when returning results. The other
|
|
26143
|
+
// consideration here is the referential stability of results.
|
|
26144
|
+
return node._queryList?.toArray() ?? EMPTY_ARRAY;
|
|
26145
|
+
}
|
|
26146
|
+
}
|
|
26147
|
+
signalFn[SIGNAL$1] = node;
|
|
26148
|
+
if (ngDevMode) {
|
|
26149
|
+
signalFn.toString = () => `[Query Signal]`;
|
|
26150
|
+
}
|
|
26151
|
+
return signalFn;
|
|
26152
|
+
}
|
|
26153
|
+
function createSingleResultOptionalQuerySignalFn() {
|
|
26154
|
+
return createQuerySignalFn(/* firstOnly */ true, /* required */ false);
|
|
26155
|
+
}
|
|
26156
|
+
function createSingleResultRequiredQuerySignalFn() {
|
|
26157
|
+
return createQuerySignalFn(/* firstOnly */ true, /* required */ true);
|
|
26158
|
+
}
|
|
26159
|
+
function createMultiResultQuerySignalFn() {
|
|
26160
|
+
return createQuerySignalFn(/* firstOnly */ false, /* required */ false);
|
|
26161
|
+
}
|
|
26162
|
+
// Note: Using an IIFE here to ensure that the spread assignment is not considered
|
|
26163
|
+
// a side-effect, ending up preserving `COMPUTED_NODE` and `REACTIVE_NODE`.
|
|
26164
|
+
// TODO: remove when https://github.com/evanw/esbuild/issues/3392 is resolved.
|
|
26165
|
+
const QUERY_SIGNAL_NODE = /* @__PURE__ */ (() => {
|
|
26166
|
+
return {
|
|
26167
|
+
...REACTIVE_NODE$1,
|
|
26168
|
+
// Base reactive node.overrides
|
|
26169
|
+
producerMustRecompute: (node) => {
|
|
26170
|
+
return !!node._queryList?.dirty;
|
|
26171
|
+
},
|
|
26172
|
+
producerRecomputeValue: (node) => {
|
|
26173
|
+
// The current value is stale. Check whether we need to produce a new one.
|
|
26174
|
+
// TODO: assert: I've got both the lView and queryIndex stored
|
|
26175
|
+
// TODO(perf): I'm assuming that the signal value changes when the list of matches changes.
|
|
26176
|
+
// But this is not correct for the single-element queries since we should also compare (===)
|
|
26177
|
+
// the value of the first element.
|
|
26178
|
+
// TODO: error handling - should we guard against exceptions thrown from refreshSignalQuery -
|
|
26179
|
+
// normally it should never
|
|
26180
|
+
if (refreshSignalQuery(node._lView, node._queryIndex)) {
|
|
26181
|
+
node.version++;
|
|
26182
|
+
}
|
|
26183
|
+
}
|
|
26184
|
+
};
|
|
26185
|
+
})();
|
|
26186
|
+
function bindQueryToSignal(target, queryIndex) {
|
|
26187
|
+
const node = target[SIGNAL$1];
|
|
26188
|
+
node._lView = getLView();
|
|
26189
|
+
node._queryIndex = queryIndex;
|
|
26190
|
+
node._queryList = loadQueryInternal(node._lView, queryIndex);
|
|
26191
|
+
node._queryList.onDirty(() => {
|
|
26192
|
+
// Mark this producer as dirty and notify live consumer about the potential change. Note
|
|
26193
|
+
// that the onDirty callback will fire only on the initial dirty marking (that is,
|
|
26194
|
+
// subsequent dirty notifications are not fired- until the QueryList becomes clean again).
|
|
26195
|
+
consumerMarkDirty$1(node);
|
|
26196
|
+
});
|
|
26197
|
+
}
|
|
26198
|
+
// TODO(refactor): some code duplication with queryRefresh
|
|
26199
|
+
function refreshSignalQuery(lView, queryIndex) {
|
|
26200
|
+
const queryList = loadQueryInternal(lView, queryIndex);
|
|
26201
|
+
const tView = lView[TVIEW];
|
|
26202
|
+
const tQuery = getTQuery(tView, queryIndex);
|
|
26203
|
+
// TODO(test): operation of refreshing a signal query could be invoked during the first
|
|
26204
|
+
// creation pass, while results are still being collected; we should NOT mark such query as
|
|
26205
|
+
// "clean" as we might not have any view add / remove operations that would make it dirty again.
|
|
26206
|
+
// Leaning towards exiting early for calls to refreshSignalQuery before the first creation pass
|
|
26207
|
+
// finished
|
|
26208
|
+
if (queryList.dirty && tQuery.matches !== null) {
|
|
26209
|
+
const result = tQuery.crossesNgTemplate ?
|
|
26210
|
+
collectQueryResults(tView, lView, queryIndex, []) :
|
|
26211
|
+
materializeViewResults(tView, lView, tQuery, queryIndex);
|
|
26212
|
+
queryList.reset(result, unwrapElementRef);
|
|
26213
|
+
// TODO(test): don't mark signal as dirty when a query was marked as dirty but there
|
|
26214
|
+
// was no actual change
|
|
26215
|
+
// TODO: change the reset logic so it returns the value
|
|
26216
|
+
return true;
|
|
26217
|
+
}
|
|
26218
|
+
return false;
|
|
26219
|
+
}
|
|
26220
|
+
|
|
26221
|
+
/**
|
|
26222
|
+
* Registers a QueryList, associated with a content query, for later refresh (part of a view
|
|
26223
|
+
* refresh).
|
|
26224
|
+
*
|
|
26225
|
+
* @param directiveIndex Current directive index
|
|
26226
|
+
* @param predicate The type for which the query will search
|
|
26227
|
+
* @param flags Flags associated with the query
|
|
26228
|
+
* @param read What to save in the query
|
|
26229
|
+
* @returns QueryList<T>
|
|
26230
|
+
*
|
|
26231
|
+
* @codeGenApi
|
|
26232
|
+
*/
|
|
26233
|
+
function ɵɵcontentQuerySignal(target, directiveIndex, predicate, flags, read) {
|
|
26234
|
+
bindQueryToSignal(target, createContentQuery(directiveIndex, predicate, flags, read));
|
|
26235
|
+
}
|
|
26236
|
+
/**
|
|
26237
|
+
* Creates a new view query by initializing internal data structures and binding a new query to the
|
|
26238
|
+
* target signal.
|
|
26239
|
+
*
|
|
26240
|
+
* @param target The target signal to assign the query results to.
|
|
26241
|
+
* @param predicate The type or label that should match a given query
|
|
26242
|
+
* @param flags Flags associated with the query
|
|
26243
|
+
* @param read What to save in the query
|
|
26244
|
+
*
|
|
26245
|
+
* @codeGenApi
|
|
26246
|
+
*/
|
|
26247
|
+
function ɵɵviewQuerySignal(target, predicate, flags, read) {
|
|
26248
|
+
bindQueryToSignal(target, createViewQuery(predicate, flags, read));
|
|
26249
|
+
}
|
|
26250
|
+
/**
|
|
26251
|
+
* Advances the current query index by a specified offset.
|
|
26252
|
+
*
|
|
26253
|
+
* Adjusting the current query index is necessary in cases where a given directive has a mix of
|
|
26254
|
+
* zone-based and signal-based queries. The signal-based queries don't require tracking of the
|
|
26255
|
+
* current index (those are refreshed on demand and not during change detection) so this instruction
|
|
26256
|
+
* is only necessary for backward-compatibility.
|
|
26257
|
+
*
|
|
26258
|
+
* @param index offset to apply to the current query index (defaults to 1)
|
|
26259
|
+
*
|
|
26260
|
+
* @codeGenApi
|
|
26261
|
+
*/
|
|
26262
|
+
function ɵɵqueryAdvance(indexOffset = 1) {
|
|
26263
|
+
setCurrentQueryIndex(getCurrentQueryIndex() + indexOffset);
|
|
26264
|
+
}
|
|
26265
|
+
|
|
26089
26266
|
/** Store a value in the `data` at a given `index`. */
|
|
26090
26267
|
function store(tView, lView, index, value) {
|
|
26091
26268
|
// We don't store any static data for local variables, so the first time
|
|
@@ -28828,9 +29005,12 @@ const angularCoreEnv = (() => ({
|
|
|
28828
29005
|
'ɵɵpropertyInterpolateV': ɵɵpropertyInterpolateV,
|
|
28829
29006
|
'ɵɵpipe': ɵɵpipe,
|
|
28830
29007
|
'ɵɵqueryRefresh': ɵɵqueryRefresh,
|
|
29008
|
+
'ɵɵqueryAdvance': ɵɵqueryAdvance,
|
|
28831
29009
|
'ɵɵviewQuery': ɵɵviewQuery,
|
|
29010
|
+
'ɵɵviewQuerySignal': ɵɵviewQuerySignal,
|
|
28832
29011
|
'ɵɵloadQuery': ɵɵloadQuery,
|
|
28833
29012
|
'ɵɵcontentQuery': ɵɵcontentQuery,
|
|
29013
|
+
'ɵɵcontentQuerySignal': ɵɵcontentQuerySignal,
|
|
28834
29014
|
'ɵɵreference': ɵɵreference,
|
|
28835
29015
|
'ɵɵclassMap': ɵɵclassMap,
|
|
28836
29016
|
'ɵɵclassMapInterpolate1': ɵɵclassMapInterpolate1,
|
|
@@ -29854,6 +30034,7 @@ function convertToR3QueryMetadata(propertyName, ann) {
|
|
|
29854
30034
|
read: ann.read ? ann.read : null,
|
|
29855
30035
|
static: !!ann.static,
|
|
29856
30036
|
emitDistinctChangesOnly: !!ann.emitDistinctChangesOnly,
|
|
30037
|
+
isSignal: !!ann.isSignal,
|
|
29857
30038
|
};
|
|
29858
30039
|
}
|
|
29859
30040
|
function extractQueriesMetadata(type, propMetadata, isQueryAnn) {
|
|
@@ -30108,7 +30289,7 @@ class Version {
|
|
|
30108
30289
|
/**
|
|
30109
30290
|
* @publicApi
|
|
30110
30291
|
*/
|
|
30111
|
-
const VERSION = new Version('17.1
|
|
30292
|
+
const VERSION = new Version('17.2.0-next.1');
|
|
30112
30293
|
|
|
30113
30294
|
/*
|
|
30114
30295
|
* This file exists to support compilation of @angular/core in Ivy mode.
|
|
@@ -35345,5 +35526,5 @@ if (typeof ngDevMode !== 'undefined' && ngDevMode) {
|
|
|
35345
35526
|
* Generated bundle index. Do not edit.
|
|
35346
35527
|
*/
|
|
35347
35528
|
|
|
35348
|
-
export { ANIMATION_MODULE_TYPE, APP_BOOTSTRAP_LISTENER, APP_ID, APP_INITIALIZER, AfterRenderPhase, ApplicationInitStatus, ApplicationModule, ApplicationRef, Attribute, COMPILER_OPTIONS, CSP_NONCE, CUSTOM_ELEMENTS_SCHEMA, ChangeDetectionStrategy, ChangeDetectorRef, Compiler, CompilerFactory, Component, ComponentFactory$1 as ComponentFactory, ComponentFactoryResolver$1 as ComponentFactoryResolver, ComponentRef$1 as ComponentRef, ContentChild, ContentChildren, DEFAULT_CURRENCY_CODE, DebugElement, DebugEventListener, DebugNode, DefaultIterableDiffer, DestroyRef, Directive, ENVIRONMENT_INITIALIZER, ElementRef, EmbeddedViewRef, EnvironmentInjector, ErrorHandler, EventEmitter, Host, HostBinding, HostListener, INJECTOR, Inject, InjectFlags, Injectable, InjectionToken, Injector, Input, IterableDiffers, KeyValueDiffers, LOCALE_ID, MissingTranslationStrategy, ModuleWithComponentFactories, NO_ERRORS_SCHEMA, NgModule, NgModuleFactory$1 as NgModuleFactory, NgModuleRef$1 as NgModuleRef, NgProbeToken, NgZone, Optional, Output, PACKAGE_ROOT_URL, PLATFORM_ID, PLATFORM_INITIALIZER, Pipe, PlatformRef, Query, QueryList, Renderer2, RendererFactory2, RendererStyleFlags2, Sanitizer, SecurityContext, Self, SimpleChange, SkipSelf, TRANSLATIONS, TRANSLATIONS_FORMAT, TemplateRef, Testability, TestabilityRegistry, TransferState, Type, VERSION, Version, ViewChild, ViewChildren, ViewContainerRef, ViewEncapsulation$1 as ViewEncapsulation, ViewRef, afterNextRender, afterRender, asNativeElements, assertInInjectionContext, assertNotInReactiveContext, assertPlatform, booleanAttribute, computed, createComponent, createEnvironmentInjector, createNgModule, createNgModuleRef, createPlatform, createPlatformFactory, defineInjectable, destroyPlatform, effect, enableProdMode, forwardRef, getDebugNode, getModuleFactory, getNgModuleById, getPlatform, importProvidersFrom, inject, input, isDevMode, isSignal, isStandalone, makeEnvironmentProviders, makeStateKey, mergeApplicationConfig, numberAttribute, platformCore, provideZoneChangeDetection, reflectComponentType, resolveForwardRef, runInInjectionContext, setTestabilityGetter, signal, untracked, ALLOW_MULTIPLE_PLATFORMS as ɵALLOW_MULTIPLE_PLATFORMS, AfterRenderEventManager as ɵAfterRenderEventManager, CONTAINER_HEADER_OFFSET as ɵCONTAINER_HEADER_OFFSET, ChangeDetectionScheduler as ɵChangeDetectionScheduler, ComponentFactory$1 as ɵComponentFactory, Console as ɵConsole, DEFAULT_LOCALE_ID as ɵDEFAULT_LOCALE_ID, DEFER_BLOCK_CONFIG as ɵDEFER_BLOCK_CONFIG, DEFER_BLOCK_DEPENDENCY_INTERCEPTOR as ɵDEFER_BLOCK_DEPENDENCY_INTERCEPTOR, DeferBlockBehavior as ɵDeferBlockBehavior, DeferBlockState as ɵDeferBlockState, EffectScheduler as ɵEffectScheduler, IMAGE_CONFIG as ɵIMAGE_CONFIG, IMAGE_CONFIG_DEFAULTS as ɵIMAGE_CONFIG_DEFAULTS, INJECTOR_SCOPE as ɵINJECTOR_SCOPE, ɵINPUT_SIGNAL_BRAND_WRITE_TYPE, IS_HYDRATION_DOM_REUSE_ENABLED as ɵIS_HYDRATION_DOM_REUSE_ENABLED, LContext as ɵLContext, LifecycleHooksFeature as ɵLifecycleHooksFeature, LocaleDataIndex as ɵLocaleDataIndex, NG_COMP_DEF as ɵNG_COMP_DEF, NG_DIR_DEF as ɵNG_DIR_DEF, NG_ELEMENT_ID as ɵNG_ELEMENT_ID, NG_INJ_DEF as ɵNG_INJ_DEF, NG_MOD_DEF as ɵNG_MOD_DEF, NG_PIPE_DEF as ɵNG_PIPE_DEF, NG_PROV_DEF as ɵNG_PROV_DEF, NOT_FOUND_CHECK_ONLY_ELEMENT_INJECTOR as ɵNOT_FOUND_CHECK_ONLY_ELEMENT_INJECTOR, NO_CHANGE as ɵNO_CHANGE, NgModuleFactory as ɵNgModuleFactory, NoopNgZone as ɵNoopNgZone, PendingTasks as ɵPendingTasks, ReflectionCapabilities as ɵReflectionCapabilities, ComponentFactory as ɵRender3ComponentFactory, ComponentRef as ɵRender3ComponentRef, NgModuleRef as ɵRender3NgModuleRef, RuntimeError as ɵRuntimeError, SSR_CONTENT_INTEGRITY_MARKER as ɵSSR_CONTENT_INTEGRITY_MARKER, TESTABILITY as ɵTESTABILITY, TESTABILITY_GETTER as ɵTESTABILITY_GETTER, USE_RUNTIME_DEPS_TRACKER_FOR_JIT as ɵUSE_RUNTIME_DEPS_TRACKER_FOR_JIT, ViewRef$1 as ɵViewRef, XSS_SECURITY_URL as ɵXSS_SECURITY_URL, _sanitizeHtml as ɵ_sanitizeHtml, _sanitizeUrl as ɵ_sanitizeUrl, allowSanitizationBypassAndThrow as ɵallowSanitizationBypassAndThrow, annotateForHydration as ɵannotateForHydration, bypassSanitizationTrustHtml as ɵbypassSanitizationTrustHtml, bypassSanitizationTrustResourceUrl as ɵbypassSanitizationTrustResourceUrl, bypassSanitizationTrustScript as ɵbypassSanitizationTrustScript, bypassSanitizationTrustStyle as ɵbypassSanitizationTrustStyle, bypassSanitizationTrustUrl as ɵbypassSanitizationTrustUrl, clearResolutionOfComponentResourcesQueue as ɵclearResolutionOfComponentResourcesQueue, compileComponent as ɵcompileComponent, compileDirective as ɵcompileDirective, compileNgModule as ɵcompileNgModule, compileNgModuleDefs as ɵcompileNgModuleDefs, compileNgModuleFactory as ɵcompileNgModuleFactory, compilePipe as ɵcompilePipe, convertToBitFlags as ɵconvertToBitFlags, createInjector as ɵcreateInjector, defaultIterableDiffers as ɵdefaultIterableDiffers, defaultKeyValueDiffers as ɵdefaultKeyValueDiffers, depsTracker as ɵdepsTracker, devModeEqual as ɵdevModeEqual, findLocaleData as ɵfindLocaleData, flushModuleScopingQueueAsMuchAsPossible as ɵflushModuleScopingQueueAsMuchAsPossible, formatRuntimeError as ɵformatRuntimeError, generateStandaloneInDeclarationsError as ɵgenerateStandaloneInDeclarationsError, getAsyncClassMetadataFn as ɵgetAsyncClassMetadataFn, getDebugNode as ɵgetDebugNode, getDeferBlocks as ɵgetDeferBlocks, getDirectives as ɵgetDirectives, getEnsureDirtyViewsAreAlwaysReachable as ɵgetEnsureDirtyViewsAreAlwaysReachable, getHostElement as ɵgetHostElement, getInjectableDef as ɵgetInjectableDef, getLContext as ɵgetLContext, getLocaleCurrencyCode as ɵgetLocaleCurrencyCode, getLocalePluralCase as ɵgetLocalePluralCase, getSanitizationBypassType as ɵgetSanitizationBypassType, ɵgetUnknownElementStrictMode, ɵgetUnknownPropertyStrictMode, _global as ɵglobal, injectChangeDetectorRef as ɵinjectChangeDetectorRef, internalAfterNextRender as ɵinternalAfterNextRender, internalCreateApplication as ɵinternalCreateApplication, isBoundToModule as ɵisBoundToModule, isComponentDefPendingResolution as ɵisComponentDefPendingResolution, isEnvironmentProviders as ɵisEnvironmentProviders, isInjectable as ɵisInjectable, isNgModule as ɵisNgModule, isPromise as ɵisPromise, isSubscribable as ɵisSubscribable, noSideEffects as ɵnoSideEffects, patchComponentDefWithScope as ɵpatchComponentDefWithScope, performanceMarkFeature as ɵperformanceMarkFeature, provideZonelessChangeDetection as ɵprovideZonelessChangeDetection, readHydrationInfo as ɵreadHydrationInfo, registerLocaleData as ɵregisterLocaleData, renderDeferBlockState as ɵrenderDeferBlockState, resetCompiledComponents as ɵresetCompiledComponents, resetJitOptions as ɵresetJitOptions, resolveComponentResources as ɵresolveComponentResources, restoreComponentResolutionQueue as ɵrestoreComponentResolutionQueue, setAllowDuplicateNgModuleIdsForTest as ɵsetAllowDuplicateNgModuleIdsForTest, setAlternateWeakRefImpl as ɵsetAlternateWeakRefImpl, ɵsetClassDebugInfo, setClassMetadata as ɵsetClassMetadata, setClassMetadataAsync as ɵsetClassMetadataAsync, setCurrentInjector as ɵsetCurrentInjector, setDocument as ɵsetDocument, setEnsureDirtyViewsAreAlwaysReachable as ɵsetEnsureDirtyViewsAreAlwaysReachable, setInjectorProfilerContext as ɵsetInjectorProfilerContext, setLocaleId as ɵsetLocaleId, ɵsetUnknownElementStrictMode, ɵsetUnknownPropertyStrictMode, store as ɵstore, stringify as ɵstringify, transitiveScopesFor as ɵtransitiveScopesFor, triggerResourceLoading as ɵtriggerResourceLoading, truncateMiddle as ɵtruncateMiddle, unregisterAllLocaleData as ɵunregisterLocaleData, unwrapSafeValue as ɵunwrapSafeValue, whenStable as ɵwhenStable, withDomHydration as ɵwithDomHydration, ɵɵCopyDefinitionFeature, FactoryTarget as ɵɵFactoryTarget, ɵɵHostDirectivesFeature, ɵɵInheritDefinitionFeature, InputFlags as ɵɵInputFlags, ɵɵInputTransformsFeature, ɵɵNgOnChangesFeature, ɵɵProvidersFeature, ɵɵStandaloneFeature, ɵɵadvance, ɵɵattribute, ɵɵattributeInterpolate1, ɵɵattributeInterpolate2, ɵɵattributeInterpolate3, ɵɵattributeInterpolate4, ɵɵattributeInterpolate5, ɵɵattributeInterpolate6, ɵɵattributeInterpolate7, ɵɵattributeInterpolate8, ɵɵattributeInterpolateV, ɵɵclassMap, ɵɵclassMapInterpolate1, ɵɵclassMapInterpolate2, ɵɵclassMapInterpolate3, ɵɵclassMapInterpolate4, ɵɵclassMapInterpolate5, ɵɵclassMapInterpolate6, ɵɵclassMapInterpolate7, ɵɵclassMapInterpolate8, ɵɵclassMapInterpolateV, ɵɵclassProp, ɵɵcomponentInstance, ɵɵconditional, ɵɵcontentQuery, ɵɵdefer, ɵɵdeferEnableTimerScheduling, ɵɵdeferOnHover, ɵɵdeferOnIdle, ɵɵdeferOnImmediate, ɵɵdeferOnInteraction, ɵɵdeferOnTimer, ɵɵdeferOnViewport, ɵɵdeferPrefetchOnHover, ɵɵdeferPrefetchOnIdle, ɵɵdeferPrefetchOnImmediate, ɵɵdeferPrefetchOnInteraction, ɵɵdeferPrefetchOnTimer, ɵɵdeferPrefetchOnViewport, ɵɵdeferPrefetchWhen, ɵɵdeferWhen, ɵɵdefineComponent, ɵɵdefineDirective, ɵɵdefineInjectable, ɵɵdefineInjector, ɵɵdefineNgModule, ɵɵdefinePipe, ɵɵdirectiveInject, ɵɵdisableBindings, ɵɵelement, ɵɵelementContainer, ɵɵelementContainerEnd, ɵɵelementContainerStart, ɵɵelementEnd, ɵɵelementStart, ɵɵenableBindings, ɵɵgetComponentDepsFactory, ɵɵgetCurrentView, ɵɵgetInheritedFactory, ɵɵhostProperty, ɵɵi18n, ɵɵi18nApply, ɵɵi18nAttributes, ɵɵi18nEnd, ɵɵi18nExp, ɵɵi18nPostprocess, ɵɵi18nStart, ɵɵinject, ɵɵinjectAttribute, ɵɵinvalidFactory, ɵɵinvalidFactoryDep, ɵɵlistener, ɵɵloadQuery, ɵɵnamespaceHTML, ɵɵnamespaceMathML, ɵɵnamespaceSVG, ɵɵnextContext, ɵɵngDeclareClassMetadata, ɵɵngDeclareComponent, ɵɵngDeclareDirective, ɵɵngDeclareFactory, ɵɵngDeclareInjectable, ɵɵngDeclareInjector, ɵɵngDeclareNgModule, ɵɵngDeclarePipe, ɵɵpipe, ɵɵpipeBind1, ɵɵpipeBind2, ɵɵpipeBind3, ɵɵpipeBind4, ɵɵpipeBindV, ɵɵprojection, ɵɵprojectionDef, ɵɵproperty, ɵɵpropertyInterpolate, ɵɵpropertyInterpolate1, ɵɵpropertyInterpolate2, ɵɵpropertyInterpolate3, ɵɵpropertyInterpolate4, ɵɵpropertyInterpolate5, ɵɵpropertyInterpolate6, ɵɵpropertyInterpolate7, ɵɵpropertyInterpolate8, ɵɵpropertyInterpolateV, ɵɵpureFunction0, ɵɵpureFunction1, ɵɵpureFunction2, ɵɵpureFunction3, ɵɵpureFunction4, ɵɵpureFunction5, ɵɵpureFunction6, ɵɵpureFunction7, ɵɵpureFunction8, ɵɵpureFunctionV, ɵɵqueryRefresh, ɵɵreference, registerNgModuleType as ɵɵregisterNgModuleType, ɵɵrepeater, ɵɵrepeaterCreate, ɵɵrepeaterTrackByIdentity, ɵɵrepeaterTrackByIndex, ɵɵresetView, ɵɵresolveBody, ɵɵresolveDocument, ɵɵresolveWindow, ɵɵrestoreView, ɵɵsanitizeHtml, ɵɵsanitizeResourceUrl, ɵɵsanitizeScript, ɵɵsanitizeStyle, ɵɵsanitizeUrl, ɵɵsanitizeUrlOrResourceUrl, ɵɵsetComponentScope, ɵɵsetNgModuleScope, ɵɵstyleMap, ɵɵstyleMapInterpolate1, ɵɵstyleMapInterpolate2, ɵɵstyleMapInterpolate3, ɵɵstyleMapInterpolate4, ɵɵstyleMapInterpolate5, ɵɵstyleMapInterpolate6, ɵɵstyleMapInterpolate7, ɵɵstyleMapInterpolate8, ɵɵstyleMapInterpolateV, ɵɵstyleProp, ɵɵstylePropInterpolate1, ɵɵstylePropInterpolate2, ɵɵstylePropInterpolate3, ɵɵstylePropInterpolate4, ɵɵstylePropInterpolate5, ɵɵstylePropInterpolate6, ɵɵstylePropInterpolate7, ɵɵstylePropInterpolate8, ɵɵstylePropInterpolateV, ɵɵsyntheticHostListener, ɵɵsyntheticHostProperty, ɵɵtemplate, ɵɵtemplateRefExtractor, ɵɵtext, ɵɵtextInterpolate, ɵɵtextInterpolate1, ɵɵtextInterpolate2, ɵɵtextInterpolate3, ɵɵtextInterpolate4, ɵɵtextInterpolate5, ɵɵtextInterpolate6, ɵɵtextInterpolate7, ɵɵtextInterpolate8, ɵɵtextInterpolateV, ɵɵtrustConstantHtml, ɵɵtrustConstantResourceUrl, ɵɵvalidateIframeAttribute, ɵɵviewQuery };
|
|
35529
|
+
export { ANIMATION_MODULE_TYPE, APP_BOOTSTRAP_LISTENER, APP_ID, APP_INITIALIZER, AfterRenderPhase, ApplicationInitStatus, ApplicationModule, ApplicationRef, Attribute, COMPILER_OPTIONS, CSP_NONCE, CUSTOM_ELEMENTS_SCHEMA, ChangeDetectionStrategy, ChangeDetectorRef, Compiler, CompilerFactory, Component, ComponentFactory$1 as ComponentFactory, ComponentFactoryResolver$1 as ComponentFactoryResolver, ComponentRef$1 as ComponentRef, ContentChild, ContentChildren, DEFAULT_CURRENCY_CODE, DebugElement, DebugEventListener, DebugNode, DefaultIterableDiffer, DestroyRef, Directive, ENVIRONMENT_INITIALIZER, ElementRef, EmbeddedViewRef, EnvironmentInjector, ErrorHandler, EventEmitter, Host, HostBinding, HostListener, INJECTOR, Inject, InjectFlags, Injectable, InjectionToken, Injector, Input, IterableDiffers, KeyValueDiffers, LOCALE_ID, MissingTranslationStrategy, ModuleWithComponentFactories, NO_ERRORS_SCHEMA, NgModule, NgModuleFactory$1 as NgModuleFactory, NgModuleRef$1 as NgModuleRef, NgProbeToken, NgZone, Optional, Output, PACKAGE_ROOT_URL, PLATFORM_ID, PLATFORM_INITIALIZER, Pipe, PlatformRef, Query, QueryList, Renderer2, RendererFactory2, RendererStyleFlags2, Sanitizer, SecurityContext, Self, SimpleChange, SkipSelf, TRANSLATIONS, TRANSLATIONS_FORMAT, TemplateRef, Testability, TestabilityRegistry, TransferState, Type, VERSION, Version, ViewChild, ViewChildren, ViewContainerRef, ViewEncapsulation$1 as ViewEncapsulation, ViewRef, afterNextRender, afterRender, asNativeElements, assertInInjectionContext, assertNotInReactiveContext, assertPlatform, booleanAttribute, computed, createComponent, createEnvironmentInjector, createNgModule, createNgModuleRef, createPlatform, createPlatformFactory, defineInjectable, destroyPlatform, effect, enableProdMode, forwardRef, getDebugNode, getModuleFactory, getNgModuleById, getPlatform, importProvidersFrom, inject, input, isDevMode, isSignal, isStandalone, makeEnvironmentProviders, makeStateKey, mergeApplicationConfig, numberAttribute, platformCore, provideZoneChangeDetection, reflectComponentType, resolveForwardRef, runInInjectionContext, setTestabilityGetter, signal, untracked, ALLOW_MULTIPLE_PLATFORMS as ɵALLOW_MULTIPLE_PLATFORMS, AfterRenderEventManager as ɵAfterRenderEventManager, CONTAINER_HEADER_OFFSET as ɵCONTAINER_HEADER_OFFSET, ChangeDetectionScheduler as ɵChangeDetectionScheduler, ComponentFactory$1 as ɵComponentFactory, Console as ɵConsole, DEFAULT_LOCALE_ID as ɵDEFAULT_LOCALE_ID, DEFER_BLOCK_CONFIG as ɵDEFER_BLOCK_CONFIG, DEFER_BLOCK_DEPENDENCY_INTERCEPTOR as ɵDEFER_BLOCK_DEPENDENCY_INTERCEPTOR, DeferBlockBehavior as ɵDeferBlockBehavior, DeferBlockState as ɵDeferBlockState, EffectScheduler as ɵEffectScheduler, IMAGE_CONFIG as ɵIMAGE_CONFIG, IMAGE_CONFIG_DEFAULTS as ɵIMAGE_CONFIG_DEFAULTS, INJECTOR_SCOPE as ɵINJECTOR_SCOPE, ɵINPUT_SIGNAL_BRAND_WRITE_TYPE, IS_HYDRATION_DOM_REUSE_ENABLED as ɵIS_HYDRATION_DOM_REUSE_ENABLED, LContext as ɵLContext, LifecycleHooksFeature as ɵLifecycleHooksFeature, LocaleDataIndex as ɵLocaleDataIndex, NG_COMP_DEF as ɵNG_COMP_DEF, NG_DIR_DEF as ɵNG_DIR_DEF, NG_ELEMENT_ID as ɵNG_ELEMENT_ID, NG_INJ_DEF as ɵNG_INJ_DEF, NG_MOD_DEF as ɵNG_MOD_DEF, NG_PIPE_DEF as ɵNG_PIPE_DEF, NG_PROV_DEF as ɵNG_PROV_DEF, NOT_FOUND_CHECK_ONLY_ELEMENT_INJECTOR as ɵNOT_FOUND_CHECK_ONLY_ELEMENT_INJECTOR, NO_CHANGE as ɵNO_CHANGE, NgModuleFactory as ɵNgModuleFactory, NoopNgZone as ɵNoopNgZone, PendingTasks as ɵPendingTasks, ReflectionCapabilities as ɵReflectionCapabilities, ComponentFactory as ɵRender3ComponentFactory, ComponentRef as ɵRender3ComponentRef, NgModuleRef as ɵRender3NgModuleRef, RuntimeError as ɵRuntimeError, SSR_CONTENT_INTEGRITY_MARKER as ɵSSR_CONTENT_INTEGRITY_MARKER, TESTABILITY as ɵTESTABILITY, TESTABILITY_GETTER as ɵTESTABILITY_GETTER, USE_RUNTIME_DEPS_TRACKER_FOR_JIT as ɵUSE_RUNTIME_DEPS_TRACKER_FOR_JIT, ViewRef$1 as ɵViewRef, XSS_SECURITY_URL as ɵXSS_SECURITY_URL, _sanitizeHtml as ɵ_sanitizeHtml, _sanitizeUrl as ɵ_sanitizeUrl, allowSanitizationBypassAndThrow as ɵallowSanitizationBypassAndThrow, annotateForHydration as ɵannotateForHydration, bypassSanitizationTrustHtml as ɵbypassSanitizationTrustHtml, bypassSanitizationTrustResourceUrl as ɵbypassSanitizationTrustResourceUrl, bypassSanitizationTrustScript as ɵbypassSanitizationTrustScript, bypassSanitizationTrustStyle as ɵbypassSanitizationTrustStyle, bypassSanitizationTrustUrl as ɵbypassSanitizationTrustUrl, clearResolutionOfComponentResourcesQueue as ɵclearResolutionOfComponentResourcesQueue, compileComponent as ɵcompileComponent, compileDirective as ɵcompileDirective, compileNgModule as ɵcompileNgModule, compileNgModuleDefs as ɵcompileNgModuleDefs, compileNgModuleFactory as ɵcompileNgModuleFactory, compilePipe as ɵcompilePipe, convertToBitFlags as ɵconvertToBitFlags, createInjector as ɵcreateInjector, defaultIterableDiffers as ɵdefaultIterableDiffers, defaultKeyValueDiffers as ɵdefaultKeyValueDiffers, depsTracker as ɵdepsTracker, devModeEqual as ɵdevModeEqual, findLocaleData as ɵfindLocaleData, flushModuleScopingQueueAsMuchAsPossible as ɵflushModuleScopingQueueAsMuchAsPossible, formatRuntimeError as ɵformatRuntimeError, generateStandaloneInDeclarationsError as ɵgenerateStandaloneInDeclarationsError, getAsyncClassMetadataFn as ɵgetAsyncClassMetadataFn, getDebugNode as ɵgetDebugNode, getDeferBlocks as ɵgetDeferBlocks, getDirectives as ɵgetDirectives, getEnsureDirtyViewsAreAlwaysReachable as ɵgetEnsureDirtyViewsAreAlwaysReachable, getHostElement as ɵgetHostElement, getInjectableDef as ɵgetInjectableDef, getLContext as ɵgetLContext, getLocaleCurrencyCode as ɵgetLocaleCurrencyCode, getLocalePluralCase as ɵgetLocalePluralCase, getSanitizationBypassType as ɵgetSanitizationBypassType, ɵgetUnknownElementStrictMode, ɵgetUnknownPropertyStrictMode, _global as ɵglobal, injectChangeDetectorRef as ɵinjectChangeDetectorRef, internalAfterNextRender as ɵinternalAfterNextRender, internalCreateApplication as ɵinternalCreateApplication, isBoundToModule as ɵisBoundToModule, isComponentDefPendingResolution as ɵisComponentDefPendingResolution, isEnvironmentProviders as ɵisEnvironmentProviders, isInjectable as ɵisInjectable, isNgModule as ɵisNgModule, isPromise as ɵisPromise, isSubscribable as ɵisSubscribable, noSideEffects as ɵnoSideEffects, patchComponentDefWithScope as ɵpatchComponentDefWithScope, performanceMarkFeature as ɵperformanceMarkFeature, provideZonelessChangeDetection as ɵprovideZonelessChangeDetection, readHydrationInfo as ɵreadHydrationInfo, registerLocaleData as ɵregisterLocaleData, renderDeferBlockState as ɵrenderDeferBlockState, resetCompiledComponents as ɵresetCompiledComponents, resetJitOptions as ɵresetJitOptions, resolveComponentResources as ɵresolveComponentResources, restoreComponentResolutionQueue as ɵrestoreComponentResolutionQueue, setAllowDuplicateNgModuleIdsForTest as ɵsetAllowDuplicateNgModuleIdsForTest, setAlternateWeakRefImpl as ɵsetAlternateWeakRefImpl, ɵsetClassDebugInfo, setClassMetadata as ɵsetClassMetadata, setClassMetadataAsync as ɵsetClassMetadataAsync, setCurrentInjector as ɵsetCurrentInjector, setDocument as ɵsetDocument, setEnsureDirtyViewsAreAlwaysReachable as ɵsetEnsureDirtyViewsAreAlwaysReachable, setInjectorProfilerContext as ɵsetInjectorProfilerContext, setLocaleId as ɵsetLocaleId, ɵsetUnknownElementStrictMode, ɵsetUnknownPropertyStrictMode, store as ɵstore, stringify as ɵstringify, transitiveScopesFor as ɵtransitiveScopesFor, triggerResourceLoading as ɵtriggerResourceLoading, truncateMiddle as ɵtruncateMiddle, unregisterAllLocaleData as ɵunregisterLocaleData, unwrapSafeValue as ɵunwrapSafeValue, whenStable as ɵwhenStable, withDomHydration as ɵwithDomHydration, ɵɵCopyDefinitionFeature, FactoryTarget as ɵɵFactoryTarget, ɵɵHostDirectivesFeature, ɵɵInheritDefinitionFeature, InputFlags as ɵɵInputFlags, ɵɵInputTransformsFeature, ɵɵNgOnChangesFeature, ɵɵProvidersFeature, ɵɵStandaloneFeature, ɵɵadvance, ɵɵattribute, ɵɵattributeInterpolate1, ɵɵattributeInterpolate2, ɵɵattributeInterpolate3, ɵɵattributeInterpolate4, ɵɵattributeInterpolate5, ɵɵattributeInterpolate6, ɵɵattributeInterpolate7, ɵɵattributeInterpolate8, ɵɵattributeInterpolateV, ɵɵclassMap, ɵɵclassMapInterpolate1, ɵɵclassMapInterpolate2, ɵɵclassMapInterpolate3, ɵɵclassMapInterpolate4, ɵɵclassMapInterpolate5, ɵɵclassMapInterpolate6, ɵɵclassMapInterpolate7, ɵɵclassMapInterpolate8, ɵɵclassMapInterpolateV, ɵɵclassProp, ɵɵcomponentInstance, ɵɵconditional, ɵɵcontentQuery, ɵɵcontentQuerySignal, ɵɵdefer, ɵɵdeferEnableTimerScheduling, ɵɵdeferOnHover, ɵɵdeferOnIdle, ɵɵdeferOnImmediate, ɵɵdeferOnInteraction, ɵɵdeferOnTimer, ɵɵdeferOnViewport, ɵɵdeferPrefetchOnHover, ɵɵdeferPrefetchOnIdle, ɵɵdeferPrefetchOnImmediate, ɵɵdeferPrefetchOnInteraction, ɵɵdeferPrefetchOnTimer, ɵɵdeferPrefetchOnViewport, ɵɵdeferPrefetchWhen, ɵɵdeferWhen, ɵɵdefineComponent, ɵɵdefineDirective, ɵɵdefineInjectable, ɵɵdefineInjector, ɵɵdefineNgModule, ɵɵdefinePipe, ɵɵdirectiveInject, ɵɵdisableBindings, ɵɵelement, ɵɵelementContainer, ɵɵelementContainerEnd, ɵɵelementContainerStart, ɵɵelementEnd, ɵɵelementStart, ɵɵenableBindings, ɵɵgetComponentDepsFactory, ɵɵgetCurrentView, ɵɵgetInheritedFactory, ɵɵhostProperty, ɵɵi18n, ɵɵi18nApply, ɵɵi18nAttributes, ɵɵi18nEnd, ɵɵi18nExp, ɵɵi18nPostprocess, ɵɵi18nStart, ɵɵinject, ɵɵinjectAttribute, ɵɵinvalidFactory, ɵɵinvalidFactoryDep, ɵɵlistener, ɵɵloadQuery, ɵɵnamespaceHTML, ɵɵnamespaceMathML, ɵɵnamespaceSVG, ɵɵnextContext, ɵɵngDeclareClassMetadata, ɵɵngDeclareComponent, ɵɵngDeclareDirective, ɵɵngDeclareFactory, ɵɵngDeclareInjectable, ɵɵngDeclareInjector, ɵɵngDeclareNgModule, ɵɵngDeclarePipe, ɵɵpipe, ɵɵpipeBind1, ɵɵpipeBind2, ɵɵpipeBind3, ɵɵpipeBind4, ɵɵpipeBindV, ɵɵprojection, ɵɵprojectionDef, ɵɵproperty, ɵɵpropertyInterpolate, ɵɵpropertyInterpolate1, ɵɵpropertyInterpolate2, ɵɵpropertyInterpolate3, ɵɵpropertyInterpolate4, ɵɵpropertyInterpolate5, ɵɵpropertyInterpolate6, ɵɵpropertyInterpolate7, ɵɵpropertyInterpolate8, ɵɵpropertyInterpolateV, ɵɵpureFunction0, ɵɵpureFunction1, ɵɵpureFunction2, ɵɵpureFunction3, ɵɵpureFunction4, ɵɵpureFunction5, ɵɵpureFunction6, ɵɵpureFunction7, ɵɵpureFunction8, ɵɵpureFunctionV, ɵɵqueryAdvance, ɵɵqueryRefresh, ɵɵreference, registerNgModuleType as ɵɵregisterNgModuleType, ɵɵrepeater, ɵɵrepeaterCreate, ɵɵrepeaterTrackByIdentity, ɵɵrepeaterTrackByIndex, ɵɵresetView, ɵɵresolveBody, ɵɵresolveDocument, ɵɵresolveWindow, ɵɵrestoreView, ɵɵsanitizeHtml, ɵɵsanitizeResourceUrl, ɵɵsanitizeScript, ɵɵsanitizeStyle, ɵɵsanitizeUrl, ɵɵsanitizeUrlOrResourceUrl, ɵɵsetComponentScope, ɵɵsetNgModuleScope, ɵɵstyleMap, ɵɵstyleMapInterpolate1, ɵɵstyleMapInterpolate2, ɵɵstyleMapInterpolate3, ɵɵstyleMapInterpolate4, ɵɵstyleMapInterpolate5, ɵɵstyleMapInterpolate6, ɵɵstyleMapInterpolate7, ɵɵstyleMapInterpolate8, ɵɵstyleMapInterpolateV, ɵɵstyleProp, ɵɵstylePropInterpolate1, ɵɵstylePropInterpolate2, ɵɵstylePropInterpolate3, ɵɵstylePropInterpolate4, ɵɵstylePropInterpolate5, ɵɵstylePropInterpolate6, ɵɵstylePropInterpolate7, ɵɵstylePropInterpolate8, ɵɵstylePropInterpolateV, ɵɵsyntheticHostListener, ɵɵsyntheticHostProperty, ɵɵtemplate, ɵɵtemplateRefExtractor, ɵɵtext, ɵɵtextInterpolate, ɵɵtextInterpolate1, ɵɵtextInterpolate2, ɵɵtextInterpolate3, ɵɵtextInterpolate4, ɵɵtextInterpolate5, ɵɵtextInterpolate6, ɵɵtextInterpolate7, ɵɵtextInterpolate8, ɵɵtextInterpolateV, ɵɵtrustConstantHtml, ɵɵtrustConstantResourceUrl, ɵɵvalidateIframeAttribute, ɵɵviewQuery, ɵɵviewQuerySignal };
|
|
35349
35530
|
//# sourceMappingURL=core.mjs.map
|