@angular/core 18.0.0-next.4 → 18.0.0-next.5
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/src/application/application_ref.mjs +4 -2
- package/esm2022/src/change_detection/scheduling/flags.mjs +10 -0
- package/esm2022/src/change_detection/scheduling/ng_zone_scheduling.mjs +18 -33
- package/esm2022/src/change_detection/scheduling/zoneless_scheduling.mjs +1 -1
- package/esm2022/src/change_detection/scheduling/zoneless_scheduling_impl.mjs +64 -7
- package/esm2022/src/core.mjs +2 -1
- package/esm2022/src/core_private_export.mjs +1 -3
- package/esm2022/src/debug/debug_node.mjs +1 -1
- package/esm2022/src/metadata/directives.mjs +1 -62
- package/esm2022/src/platform/platform_ref.mjs +3 -3
- package/esm2022/src/render3/component_ref.mjs +1 -1
- package/esm2022/src/render3/instructions/control_flow.mjs +6 -6
- package/esm2022/src/testability/testability.mjs +2 -30
- package/esm2022/src/util/callback_scheduler.mjs +3 -3
- package/esm2022/src/version.mjs +1 -1
- package/esm2022/testing/src/component_fixture.mjs +7 -12
- package/esm2022/testing/src/logger.mjs +3 -3
- package/esm2022/testing/src/test_bed_common.mjs +1 -6
- package/esm2022/testing/src/testing.mjs +1 -2
- package/event-dispatch-contract.min.js +1 -0
- package/fesm2022/core.mjs +99 -142
- package/fesm2022/core.mjs.map +1 -1
- package/fesm2022/primitives/signals.mjs +1 -1
- package/fesm2022/rxjs-interop.mjs +1 -1
- package/fesm2022/testing.mjs +34 -44
- package/fesm2022/testing.mjs.map +1 -1
- package/index.d.ts +127 -105
- package/package.json +4 -1
- package/primitives/signals/index.d.ts +1 -1
- package/rxjs-interop/index.d.ts +1 -1
- package/schematics/migrations/block-template-entities/bundle.js +27 -72
- package/schematics/migrations/block-template-entities/bundle.js.map +3 -3
- package/schematics/migrations/invalid-two-way-bindings/bundle.js +32 -77
- package/schematics/migrations/invalid-two-way-bindings/bundle.js.map +3 -3
- package/schematics/ng-generate/control-flow-migration/bundle.js +27 -73
- package/schematics/ng-generate/control-flow-migration/bundle.js.map +3 -3
- package/schematics/ng-generate/standalone-migration/bundle.js +54 -87
- package/schematics/ng-generate/standalone-migration/bundle.js.map +3 -3
- package/testing/index.d.ts +1 -7
- package/esm2022/testing/src/private_export.mjs +0 -9
package/fesm2022/core.mjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Angular v18.0.0-next.
|
|
2
|
+
* @license Angular v18.0.0-next.5
|
|
3
3
|
* (c) 2010-2024 Google LLC. https://angular.io/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
@@ -15215,7 +15215,7 @@ function performanceMarkFeature(feature) {
|
|
|
15215
15215
|
*
|
|
15216
15216
|
* @returns a function to cancel the scheduled callback
|
|
15217
15217
|
*/
|
|
15218
|
-
function scheduleCallback(callback) {
|
|
15218
|
+
function scheduleCallback(callback, useNativeTimers = true) {
|
|
15219
15219
|
// Note: the `scheduleCallback` is used in the `NgZone` class, but we cannot use the
|
|
15220
15220
|
// `inject` function. The `NgZone` instance may be created manually, and thus the injection
|
|
15221
15221
|
// context will be unavailable. This might be enough to check whether `requestAnimationFrame` is
|
|
@@ -15223,7 +15223,7 @@ function scheduleCallback(callback) {
|
|
|
15223
15223
|
const hasRequestAnimationFrame = typeof _global['requestAnimationFrame'] === 'function';
|
|
15224
15224
|
let nativeRequestAnimationFrame = hasRequestAnimationFrame ? _global['requestAnimationFrame'] : null;
|
|
15225
15225
|
let nativeSetTimeout = _global['setTimeout'];
|
|
15226
|
-
if (typeof Zone !== 'undefined') {
|
|
15226
|
+
if (typeof Zone !== 'undefined' && useNativeTimers) {
|
|
15227
15227
|
if (hasRequestAnimationFrame) {
|
|
15228
15228
|
nativeRequestAnimationFrame =
|
|
15229
15229
|
_global[Zone.__symbol__('requestAnimationFrame')] ?? nativeRequestAnimationFrame;
|
|
@@ -16736,7 +16736,7 @@ function createRootComponent(componentView, rootComponentDef, rootDirectives, ho
|
|
|
16736
16736
|
function setRootNodeAttributes(hostRenderer, componentDef, hostRNode, rootSelectorOrNode) {
|
|
16737
16737
|
if (rootSelectorOrNode) {
|
|
16738
16738
|
// The placeholder will be replaced with the actual version at build time.
|
|
16739
|
-
setUpAttributes(hostRenderer, hostRNode, ['ng-version', '18.0.0-next.
|
|
16739
|
+
setUpAttributes(hostRenderer, hostRNode, ['ng-version', '18.0.0-next.5']);
|
|
16740
16740
|
}
|
|
16741
16741
|
else {
|
|
16742
16742
|
// If host element is created as a part of this function call (i.e. `rootSelectorOrNode`
|
|
@@ -23425,12 +23425,12 @@ class UniqueValueMultiKeyMap {
|
|
|
23425
23425
|
* built-in "if" and "switch". On the high level this instruction is responsible for adding and
|
|
23426
23426
|
* removing views selected by a conditional expression.
|
|
23427
23427
|
*
|
|
23428
|
-
* @param matchingTemplateIndex
|
|
23428
|
+
* @param matchingTemplateIndex Index of a template TNode representing a conditional view to be
|
|
23429
23429
|
* inserted; -1 represents a special case when there is no view to insert.
|
|
23430
|
+
* @param contextValue Value that should be exposed as the context of the conditional.
|
|
23430
23431
|
* @codeGenApi
|
|
23431
23432
|
*/
|
|
23432
|
-
function ɵɵconditional(
|
|
23433
|
-
// TODO: we could remove the containerIndex argument to this instruction now (!)
|
|
23433
|
+
function ɵɵconditional(matchingTemplateIndex, contextValue) {
|
|
23434
23434
|
performanceMarkFeature('NgControlFlow');
|
|
23435
23435
|
const hostLView = getLView();
|
|
23436
23436
|
const bindingIndex = nextBindingIndex();
|
|
@@ -23454,7 +23454,7 @@ function ɵɵconditional(containerIndex, matchingTemplateIndex, value) {
|
|
|
23454
23454
|
const nextContainer = getLContainer(hostLView, nextLContainerIndex);
|
|
23455
23455
|
const templateTNode = getExistingTNode(hostLView[TVIEW], nextLContainerIndex);
|
|
23456
23456
|
const dehydratedView = findMatchingDehydratedView(nextContainer, templateTNode.tView.ssrId);
|
|
23457
|
-
const embeddedLView = createAndRenderEmbeddedLView(hostLView, templateTNode,
|
|
23457
|
+
const embeddedLView = createAndRenderEmbeddedLView(hostLView, templateTNode, contextValue, { dehydratedView });
|
|
23458
23458
|
addLViewToLContainer(nextContainer, embeddedLView, viewInContainerIdx, shouldAddViewToDom(templateTNode, dehydratedView));
|
|
23459
23459
|
}
|
|
23460
23460
|
}
|
|
@@ -23467,7 +23467,7 @@ function ɵɵconditional(containerIndex, matchingTemplateIndex, value) {
|
|
|
23467
23467
|
// changed - re-bind in context.
|
|
23468
23468
|
const lView = getLViewFromLContainer(prevContainer, viewInContainerIdx);
|
|
23469
23469
|
if (lView !== undefined) {
|
|
23470
|
-
lView[CONTEXT] =
|
|
23470
|
+
lView[CONTEXT] = contextValue;
|
|
23471
23471
|
}
|
|
23472
23472
|
}
|
|
23473
23473
|
}
|
|
@@ -30265,67 +30265,6 @@ const Output = makePropDecorator('Output', (alias) => ({ alias }));
|
|
|
30265
30265
|
*/
|
|
30266
30266
|
const HostBinding = makePropDecorator('HostBinding', (hostPropertyName) => ({ hostPropertyName }));
|
|
30267
30267
|
/**
|
|
30268
|
-
* Decorator that binds a DOM event to a host listener and supplies configuration metadata.
|
|
30269
|
-
* Angular invokes the supplied handler method when the host element emits the specified event,
|
|
30270
|
-
* and updates the bound element with the result.
|
|
30271
|
-
*
|
|
30272
|
-
* If the handler method returns false, applies `preventDefault` on the bound element.
|
|
30273
|
-
*
|
|
30274
|
-
* @usageNotes
|
|
30275
|
-
*
|
|
30276
|
-
* The following example declares a directive
|
|
30277
|
-
* that attaches a click listener to a button and counts clicks.
|
|
30278
|
-
*
|
|
30279
|
-
* ```ts
|
|
30280
|
-
* @Directive({selector: 'button[counting]'})
|
|
30281
|
-
* class CountClicks {
|
|
30282
|
-
* numberOfClicks = 0;
|
|
30283
|
-
*
|
|
30284
|
-
* @HostListener('click', ['$event.target'])
|
|
30285
|
-
* onClick(btn) {
|
|
30286
|
-
* console.log('button', btn, 'number of clicks:', this.numberOfClicks++);
|
|
30287
|
-
* }
|
|
30288
|
-
* }
|
|
30289
|
-
*
|
|
30290
|
-
* @Component({
|
|
30291
|
-
* selector: 'app',
|
|
30292
|
-
* template: '<button counting>Increment</button>',
|
|
30293
|
-
* })
|
|
30294
|
-
* class App {}
|
|
30295
|
-
*
|
|
30296
|
-
* ```
|
|
30297
|
-
*
|
|
30298
|
-
* The following example registers another DOM event handler that listens for `Enter` key-press
|
|
30299
|
-
* events on the global `window`.
|
|
30300
|
-
* ``` ts
|
|
30301
|
-
* import { HostListener, Component } from "@angular/core";
|
|
30302
|
-
*
|
|
30303
|
-
* @Component({
|
|
30304
|
-
* selector: 'app',
|
|
30305
|
-
* template: `<h1>Hello, you have pressed enter {{counter}} number of times!</h1> Press enter key
|
|
30306
|
-
* to increment the counter.
|
|
30307
|
-
* <button (click)="resetCounter()">Reset Counter</button>`
|
|
30308
|
-
* })
|
|
30309
|
-
* class AppComponent {
|
|
30310
|
-
* counter = 0;
|
|
30311
|
-
* @HostListener('window:keydown.enter', ['$event'])
|
|
30312
|
-
* handleKeyDown(event: KeyboardEvent) {
|
|
30313
|
-
* this.counter++;
|
|
30314
|
-
* }
|
|
30315
|
-
* resetCounter() {
|
|
30316
|
-
* this.counter = 0;
|
|
30317
|
-
* }
|
|
30318
|
-
* }
|
|
30319
|
-
* ```
|
|
30320
|
-
* The list of valid key names for `keydown` and `keyup` events
|
|
30321
|
-
* can be found here:
|
|
30322
|
-
* https://www.w3.org/TR/DOM-Level-3-Events-key/#named-key-attribute-values
|
|
30323
|
-
*
|
|
30324
|
-
* Note that keys can also be combined, e.g. `@HostListener('keydown.shift.a')`.
|
|
30325
|
-
*
|
|
30326
|
-
* The global target names that can be used to prefix an event name are
|
|
30327
|
-
* `document:`, `window:` and `body:`.
|
|
30328
|
-
*
|
|
30329
30268
|
* @Annotation
|
|
30330
30269
|
* @publicApi
|
|
30331
30270
|
*/
|
|
@@ -30370,7 +30309,7 @@ class Version {
|
|
|
30370
30309
|
/**
|
|
30371
30310
|
* @publicApi
|
|
30372
30311
|
*/
|
|
30373
|
-
const VERSION = new Version('18.0.0-next.
|
|
30312
|
+
const VERSION = new Version('18.0.0-next.5');
|
|
30374
30313
|
|
|
30375
30314
|
class Console {
|
|
30376
30315
|
log(message) {
|
|
@@ -31292,7 +31231,6 @@ class Testability {
|
|
|
31292
31231
|
constructor(_ngZone, registry, testabilityGetter) {
|
|
31293
31232
|
this._ngZone = _ngZone;
|
|
31294
31233
|
this.registry = registry;
|
|
31295
|
-
this._pendingCount = 0;
|
|
31296
31234
|
this._isZoneStable = true;
|
|
31297
31235
|
this._callbacks = [];
|
|
31298
31236
|
this.taskTrackingZone = null;
|
|
@@ -31326,31 +31264,11 @@ class Testability {
|
|
|
31326
31264
|
});
|
|
31327
31265
|
});
|
|
31328
31266
|
}
|
|
31329
|
-
/**
|
|
31330
|
-
* Increases the number of pending request
|
|
31331
|
-
* @deprecated pending requests are now tracked with zones.
|
|
31332
|
-
*/
|
|
31333
|
-
increasePendingRequestCount() {
|
|
31334
|
-
this._pendingCount += 1;
|
|
31335
|
-
return this._pendingCount;
|
|
31336
|
-
}
|
|
31337
|
-
/**
|
|
31338
|
-
* Decreases the number of pending request
|
|
31339
|
-
* @deprecated pending requests are now tracked with zones
|
|
31340
|
-
*/
|
|
31341
|
-
decreasePendingRequestCount() {
|
|
31342
|
-
this._pendingCount -= 1;
|
|
31343
|
-
if (this._pendingCount < 0) {
|
|
31344
|
-
throw new Error('pending async requests below zero');
|
|
31345
|
-
}
|
|
31346
|
-
this._runCallbacksIfReady();
|
|
31347
|
-
return this._pendingCount;
|
|
31348
|
-
}
|
|
31349
31267
|
/**
|
|
31350
31268
|
* Whether an associated application is stable
|
|
31351
31269
|
*/
|
|
31352
31270
|
isStable() {
|
|
31353
|
-
return this._isZoneStable &&
|
|
31271
|
+
return this._isZoneStable && !this._ngZone.hasPendingMacrotasks;
|
|
31354
31272
|
}
|
|
31355
31273
|
_runCallbacksIfReady() {
|
|
31356
31274
|
if (this.isStable()) {
|
|
@@ -31420,13 +31338,6 @@ class Testability {
|
|
|
31420
31338
|
this.addCallback(doneCb, timeout, updateCb);
|
|
31421
31339
|
this._runCallbacksIfReady();
|
|
31422
31340
|
}
|
|
31423
|
-
/**
|
|
31424
|
-
* Get the number of pending requests
|
|
31425
|
-
* @deprecated pending requests are now tracked with zones
|
|
31426
|
-
*/
|
|
31427
|
-
getPendingRequestCount() {
|
|
31428
|
-
return this._pendingCount;
|
|
31429
|
-
}
|
|
31430
31341
|
/**
|
|
31431
31342
|
* Registers an application with a testability hook so that it can be tracked.
|
|
31432
31343
|
* @param token token of application, root element
|
|
@@ -31898,6 +31809,7 @@ class ApplicationRef {
|
|
|
31898
31809
|
constructor() {
|
|
31899
31810
|
/** @internal */
|
|
31900
31811
|
this._bootstrapListeners = [];
|
|
31812
|
+
/** @internal */
|
|
31901
31813
|
this._runningTick = false;
|
|
31902
31814
|
this._destroyed = false;
|
|
31903
31815
|
this._destroyListeners = [];
|
|
@@ -31910,6 +31822,7 @@ class ApplicationRef {
|
|
|
31910
31822
|
// Eventually the hostView of the fixture should just attach to ApplicationRef.
|
|
31911
31823
|
this.externalTestViews = new Set();
|
|
31912
31824
|
this.beforeRender = new Subject();
|
|
31825
|
+
/** @internal */
|
|
31913
31826
|
this.afterTick = new Subject();
|
|
31914
31827
|
/**
|
|
31915
31828
|
* Get a list of component types registered to this application.
|
|
@@ -32050,9 +31963,9 @@ class ApplicationRef {
|
|
|
32050
31963
|
this.internalErrorHandler(e);
|
|
32051
31964
|
}
|
|
32052
31965
|
finally {
|
|
32053
|
-
this.afterTick.next();
|
|
32054
31966
|
this._runningTick = false;
|
|
32055
31967
|
setActiveConsumer$1(prevConsumer);
|
|
31968
|
+
this.afterTick.next();
|
|
32056
31969
|
}
|
|
32057
31970
|
}
|
|
32058
31971
|
detectChangesInAttachedViews(refreshViews) {
|
|
@@ -32367,6 +32280,9 @@ function _lastDefined(args) {
|
|
|
32367
32280
|
return undefined;
|
|
32368
32281
|
}
|
|
32369
32282
|
|
|
32283
|
+
/** Flag to enable/disable the zoneless scheduler as default provider with zone scheduling. */
|
|
32284
|
+
const alwaysProvideZonelessScheduler = true;
|
|
32285
|
+
|
|
32370
32286
|
class ChangeDetectionSchedulerImpl {
|
|
32371
32287
|
constructor() {
|
|
32372
32288
|
this.appRef = inject(ApplicationRef);
|
|
@@ -32378,7 +32294,15 @@ class ChangeDetectionSchedulerImpl {
|
|
|
32378
32294
|
this.cancelScheduledCallback = null;
|
|
32379
32295
|
this.zonelessEnabled = inject(ZONELESS_ENABLED);
|
|
32380
32296
|
this.disableScheduling = inject(ZONELESS_SCHEDULER_DISABLED, { optional: true }) ?? false;
|
|
32381
|
-
this.zoneIsDefined = typeof Zone !== 'undefined';
|
|
32297
|
+
this.zoneIsDefined = typeof Zone !== 'undefined' && !!Zone.root.run;
|
|
32298
|
+
this.afterTickSubscription = this.appRef.afterTick.subscribe(() => {
|
|
32299
|
+
// If the scheduler isn't running a tick but the application ticked, that means
|
|
32300
|
+
// someone called ApplicationRef.tick manually. In this case, we should cancel
|
|
32301
|
+
// any change detections that had been scheduled so we don't run an extra one.
|
|
32302
|
+
if (!this.runningTick) {
|
|
32303
|
+
this.cleanup();
|
|
32304
|
+
}
|
|
32305
|
+
});
|
|
32382
32306
|
// TODO(atscott): These conditions will need to change when zoneless is the default
|
|
32383
32307
|
// Instead, they should flip to checking if ZoneJS scheduling is provided
|
|
32384
32308
|
this.disableScheduling ||= !this.zonelessEnabled &&
|
|
@@ -32395,16 +32319,25 @@ class ChangeDetectionSchedulerImpl {
|
|
|
32395
32319
|
return;
|
|
32396
32320
|
}
|
|
32397
32321
|
this.pendingRenderTaskId = this.taskService.add();
|
|
32398
|
-
this.
|
|
32399
|
-
|
|
32400
|
-
|
|
32322
|
+
if (this.zoneIsDefined) {
|
|
32323
|
+
Zone.root.run(() => {
|
|
32324
|
+
this.cancelScheduledCallback = scheduleCallback(() => {
|
|
32325
|
+
this.tick(this.shouldRefreshViews);
|
|
32326
|
+
}, false /** useNativeTimers */);
|
|
32327
|
+
});
|
|
32328
|
+
}
|
|
32329
|
+
else {
|
|
32330
|
+
this.cancelScheduledCallback = scheduleCallback(() => {
|
|
32331
|
+
this.tick(this.shouldRefreshViews);
|
|
32332
|
+
}, false /** useNativeTimers */);
|
|
32333
|
+
}
|
|
32401
32334
|
}
|
|
32402
32335
|
shouldScheduleTick() {
|
|
32403
32336
|
if (this.disableScheduling) {
|
|
32404
32337
|
return false;
|
|
32405
32338
|
}
|
|
32406
32339
|
// already scheduled or running
|
|
32407
|
-
if (this.pendingRenderTaskId !== null || this.runningTick) {
|
|
32340
|
+
if (this.pendingRenderTaskId !== null || this.runningTick || this.appRef._runningTick) {
|
|
32408
32341
|
return false;
|
|
32409
32342
|
}
|
|
32410
32343
|
// If we're inside the zone don't bother with scheduler. Zone will stabilize
|
|
@@ -32441,6 +32374,7 @@ class ChangeDetectionSchedulerImpl {
|
|
|
32441
32374
|
}
|
|
32442
32375
|
}
|
|
32443
32376
|
ngOnDestroy() {
|
|
32377
|
+
this.afterTickSubscription.unsubscribe();
|
|
32444
32378
|
this.cleanup();
|
|
32445
32379
|
}
|
|
32446
32380
|
cleanup() {
|
|
@@ -32468,7 +32402,46 @@ class ChangeDetectionSchedulerImpl {
|
|
|
32468
32402
|
type: Injectable,
|
|
32469
32403
|
args: [{ providedIn: 'root' }]
|
|
32470
32404
|
}], () => [], null); })();
|
|
32471
|
-
|
|
32405
|
+
/**
|
|
32406
|
+
* Provides change detection without ZoneJS for the application bootstrapped using
|
|
32407
|
+
* `bootstrapApplication`.
|
|
32408
|
+
*
|
|
32409
|
+
* This function allows you to configure the application to not use the state/state changes of
|
|
32410
|
+
* ZoneJS to schedule change detection in the application. This will work when ZoneJS is not present
|
|
32411
|
+
* on the page at all or if it exists because something else is using it (either another Angular
|
|
32412
|
+
* application which uses ZoneJS for scheduling or some other library that relies on ZoneJS).
|
|
32413
|
+
*
|
|
32414
|
+
* This can also be added to the `TestBed` providers to configure the test environment to more
|
|
32415
|
+
* closely match production behavior. This will help give higher confidence that components are
|
|
32416
|
+
* compatible with zoneless change detection.
|
|
32417
|
+
*
|
|
32418
|
+
* ZoneJS uses browser events to trigger change detection. When using this provider, Angular will
|
|
32419
|
+
* instead use Angular APIs to schedule change detection. These APIs include:
|
|
32420
|
+
*
|
|
32421
|
+
* - `ChangeDetectorRef.markForCheck`
|
|
32422
|
+
* - `ComponentRef.setInput`
|
|
32423
|
+
* - updating a signal that is read in a template
|
|
32424
|
+
* - when bound host or template listeners are triggered
|
|
32425
|
+
* - attaching a view that was marked dirty by one of the above
|
|
32426
|
+
* - removing a view
|
|
32427
|
+
* - registering a render hook (templates are only refreshed if render hooks do one of the above)
|
|
32428
|
+
*
|
|
32429
|
+
* @usageNotes
|
|
32430
|
+
* ```typescript
|
|
32431
|
+
* bootstrapApplication(MyApp, {providers: [
|
|
32432
|
+
* provideExperimentalZonelessChangeDetection(),
|
|
32433
|
+
* ]});
|
|
32434
|
+
* ```
|
|
32435
|
+
*
|
|
32436
|
+
* This API is experimental. Neither the shape, nor the underlying behavior is stable and can change
|
|
32437
|
+
* in patch versions. There are known feature gaps, including the lack of a public zoneless API
|
|
32438
|
+
* which prevents the application from serializing too early with SSR.
|
|
32439
|
+
*
|
|
32440
|
+
* @publicApi
|
|
32441
|
+
* @experimental
|
|
32442
|
+
* @see {@link bootstrapApplication}
|
|
32443
|
+
*/
|
|
32444
|
+
function provideExperimentalZonelessChangeDetection() {
|
|
32472
32445
|
performanceMarkFeature('NgZoneless');
|
|
32473
32446
|
return makeEnvironmentProviders([
|
|
32474
32447
|
{ provide: ChangeDetectionScheduler, useExisting: ChangeDetectionSchedulerImpl },
|
|
@@ -32489,13 +32462,14 @@ class NgZoneChangeDetectionScheduler {
|
|
|
32489
32462
|
}
|
|
32490
32463
|
this._onMicrotaskEmptySubscription = this.zone.onMicrotaskEmpty.subscribe({
|
|
32491
32464
|
next: () => {
|
|
32465
|
+
// `onMicroTaskEmpty` can happen _during_ the zoneless scheduler change detection because
|
|
32466
|
+
// zone.run(() => {}) will result in `checkStable` at the end of the `zone.run` closure
|
|
32467
|
+
// and emit `onMicrotaskEmpty` synchronously if run coalsecing is false.
|
|
32468
|
+
if (this.changeDetectionScheduler?.runningTick) {
|
|
32469
|
+
return;
|
|
32470
|
+
}
|
|
32492
32471
|
this.zone.run(() => {
|
|
32493
|
-
|
|
32494
|
-
this.changeDetectionScheduler.tick(true /* shouldRefreshViews */);
|
|
32495
|
-
}
|
|
32496
|
-
else {
|
|
32497
|
-
this.applicationRef.tick();
|
|
32498
|
-
}
|
|
32472
|
+
this.applicationRef.tick();
|
|
32499
32473
|
});
|
|
32500
32474
|
}
|
|
32501
32475
|
});
|
|
@@ -32515,24 +32489,7 @@ class NgZoneChangeDetectionScheduler {
|
|
|
32515
32489
|
* with the bootstrapModule API.
|
|
32516
32490
|
*/
|
|
32517
32491
|
const PROVIDED_NG_ZONE = new InjectionToken((typeof ngDevMode === 'undefined' || ngDevMode) ? 'provideZoneChangeDetection token' : '');
|
|
32518
|
-
|
|
32519
|
-
* Configures change detection scheduling when using ZoneJS.
|
|
32520
|
-
*/
|
|
32521
|
-
var SchedulingMode;
|
|
32522
|
-
(function (SchedulingMode) {
|
|
32523
|
-
/**
|
|
32524
|
-
* Change detection will run when the `NgZone.onMicrotaskEmpty` observable emits.
|
|
32525
|
-
* Change detection will also be scheduled to run whenever Angular is notified
|
|
32526
|
-
* of a change. This includes calling `ChangeDetectorRef.markForCheck`,
|
|
32527
|
-
* setting a `signal` value, and attaching a view.
|
|
32528
|
-
*/
|
|
32529
|
-
SchedulingMode[SchedulingMode["Hybrid"] = 0] = "Hybrid";
|
|
32530
|
-
/**
|
|
32531
|
-
* Change detection will only run when the `NgZone.onMicrotaskEmpty` observable emits.
|
|
32532
|
-
*/
|
|
32533
|
-
SchedulingMode[SchedulingMode["NgZoneOnly"] = 1] = "NgZoneOnly";
|
|
32534
|
-
})(SchedulingMode || (SchedulingMode = {}));
|
|
32535
|
-
function internalProvideZoneChangeDetection({ ngZoneFactory, schedulingMode }) {
|
|
32492
|
+
function internalProvideZoneChangeDetection({ ngZoneFactory, ignoreChangesOutsideZone }) {
|
|
32536
32493
|
return [
|
|
32537
32494
|
{ provide: NgZone, useFactory: ngZoneFactory },
|
|
32538
32495
|
{
|
|
@@ -32559,12 +32516,12 @@ function internalProvideZoneChangeDetection({ ngZoneFactory, schedulingMode }) {
|
|
|
32559
32516
|
}
|
|
32560
32517
|
},
|
|
32561
32518
|
{ provide: INTERNAL_APPLICATION_ERROR_HANDLER, useFactory: ngZoneApplicationErrorHandlerFactory },
|
|
32562
|
-
// Always disable scheduler whenever explicitly disabled, even if
|
|
32563
|
-
|
|
32564
|
-
|
|
32565
|
-
|
|
32566
|
-
//
|
|
32567
|
-
|
|
32519
|
+
// Always disable scheduler whenever explicitly disabled, even if another place called
|
|
32520
|
+
// `provideZoneChangeDetection` without the 'ignore' option.
|
|
32521
|
+
ignoreChangesOutsideZone === true ? { provide: ZONELESS_SCHEDULER_DISABLED, useValue: true } : [],
|
|
32522
|
+
// TODO(atscott): This should move to the same places that zone change detection is provided by
|
|
32523
|
+
// default instead of being in the zone scheduling providers.
|
|
32524
|
+
alwaysProvideZonelessScheduler || ignoreChangesOutsideZone === false ?
|
|
32568
32525
|
{ provide: ChangeDetectionScheduler, useExisting: ChangeDetectionSchedulerImpl } :
|
|
32569
32526
|
[],
|
|
32570
32527
|
];
|
|
@@ -32595,7 +32552,7 @@ function ngZoneApplicationErrorHandlerFactory() {
|
|
|
32595
32552
|
* @see {@link NgZoneOptions}
|
|
32596
32553
|
*/
|
|
32597
32554
|
function provideZoneChangeDetection(options) {
|
|
32598
|
-
const
|
|
32555
|
+
const ignoreChangesOutsideZone = options?.ignoreChangesOutsideZone;
|
|
32599
32556
|
const zoneProviders = internalProvideZoneChangeDetection({
|
|
32600
32557
|
ngZoneFactory: () => {
|
|
32601
32558
|
const ngZoneOptions = getNgZoneOptions(options);
|
|
@@ -32604,7 +32561,7 @@ function provideZoneChangeDetection(options) {
|
|
|
32604
32561
|
}
|
|
32605
32562
|
return new NgZone(ngZoneOptions);
|
|
32606
32563
|
},
|
|
32607
|
-
|
|
32564
|
+
ignoreChangesOutsideZone
|
|
32608
32565
|
});
|
|
32609
32566
|
return makeEnvironmentProviders([
|
|
32610
32567
|
(typeof ngDevMode === 'undefined' || ngDevMode) ? { provide: PROVIDED_NG_ZONE, useValue: true } :
|
|
@@ -32883,8 +32840,8 @@ class PlatformRef {
|
|
|
32883
32840
|
// Do not try to replace ngZone.run with ApplicationRef#run because ApplicationRef would then be
|
|
32884
32841
|
// created outside of the Angular zone.
|
|
32885
32842
|
return ngZone.run(() => {
|
|
32886
|
-
const
|
|
32887
|
-
const moduleRef = createNgModuleRefWithProviders(moduleFactory.moduleType, this.injector, internalProvideZoneChangeDetection({ ngZoneFactory: () => ngZone,
|
|
32843
|
+
const ignoreChangesOutsideZone = options?.ignoreChangesOutsideZone;
|
|
32844
|
+
const moduleRef = createNgModuleRefWithProviders(moduleFactory.moduleType, this.injector, internalProvideZoneChangeDetection({ ngZoneFactory: () => ngZone, ignoreChangesOutsideZone }));
|
|
32888
32845
|
if ((typeof ngDevMode === 'undefined' || ngDevMode) &&
|
|
32889
32846
|
moduleRef.injector.get(PROVIDED_NG_ZONE, null) !== null) {
|
|
32890
32847
|
throw new RuntimeError(207 /* RuntimeErrorCode.PROVIDER_IN_WRONG_CONTEXT */, '`bootstrapModule` does not support `provideZoneChangeDetection`. Use `BootstrapOptions` instead.');
|
|
@@ -37065,5 +37022,5 @@ if (typeof ngDevMode !== 'undefined' && ngDevMode) {
|
|
|
37065
37022
|
* Generated bundle index. Do not edit.
|
|
37066
37023
|
*/
|
|
37067
37024
|
|
|
37068
|
-
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, HostAttributeToken, HostBinding, HostListener, INJECTOR$1 as 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, OutputEmitterRef, 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, contentChild, contentChildren, createComponent, createEnvironmentInjector, createNgModule, createNgModuleRef, createPlatform, createPlatformFactory, defineInjectable, destroyPlatform, effect, enableProdMode, forwardRef, getDebugNode, getModuleFactory, getNgModuleById, getPlatform, importProvidersFrom, inject, input, isDevMode, isSignal, isStandalone, makeEnvironmentProviders, makeStateKey, mergeApplicationConfig, model, numberAttribute, output, platformCore, provideZoneChangeDetection, reflectComponentType, resolveForwardRef, runInInjectionContext, setTestabilityGetter, signal, untracked, viewChild, viewChildren, 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, SchedulingMode as ɵSchedulingMode, 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, ZONELESS_ENABLED as ɵZONELESS_ENABLED, _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, detectChangesInViewIfRequired as ɵdetectChangesInViewIfRequired, 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, getHostElement as ɵgetHostElement, getInjectableDef as ɵgetInjectableDef, getLContext as ɵgetLContext, getLocaleCurrencyCode as ɵgetLocaleCurrencyCode, getLocalePluralCase as ɵgetLocalePluralCase, getOutputDestroyRef as ɵgetOutputDestroyRef, 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, queueStateUpdate as ɵqueueStateUpdate, 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, 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, ɵunwrapWritableSignal, whenStable as ɵwhenStable, withDomHydration as ɵwithDomHydration, withI18nSupport as ɵwithI18nSupport, ɵɵCopyDefinitionFeature, FactoryTarget as ɵɵFactoryTarget, ɵɵHostDirectivesFeature, ɵɵInheritDefinitionFeature, ɵɵ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, ɵɵngDeclareClassMetadataAsync, ɵɵ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, ɵɵtwoWayBindingSet, ɵɵtwoWayListener, ɵɵtwoWayProperty, ɵɵvalidateIframeAttribute, ɵɵviewQuery, ɵɵviewQuerySignal };
|
|
37025
|
+
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, HostAttributeToken, HostBinding, HostListener, INJECTOR$1 as 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, OutputEmitterRef, 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, contentChild, contentChildren, createComponent, createEnvironmentInjector, createNgModule, createNgModuleRef, createPlatform, createPlatformFactory, defineInjectable, destroyPlatform, effect, enableProdMode, forwardRef, getDebugNode, getModuleFactory, getNgModuleById, getPlatform, importProvidersFrom, inject, input, isDevMode, isSignal, isStandalone, makeEnvironmentProviders, makeStateKey, mergeApplicationConfig, model, numberAttribute, output, platformCore, provideExperimentalZonelessChangeDetection, provideZoneChangeDetection, reflectComponentType, resolveForwardRef, runInInjectionContext, setTestabilityGetter, signal, untracked, viewChild, viewChildren, 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, ZONELESS_ENABLED as ɵZONELESS_ENABLED, _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, detectChangesInViewIfRequired as ɵdetectChangesInViewIfRequired, 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, getHostElement as ɵgetHostElement, getInjectableDef as ɵgetInjectableDef, getLContext as ɵgetLContext, getLocaleCurrencyCode as ɵgetLocaleCurrencyCode, getLocalePluralCase as ɵgetLocalePluralCase, getOutputDestroyRef as ɵgetOutputDestroyRef, 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, queueStateUpdate as ɵqueueStateUpdate, 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, 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, ɵunwrapWritableSignal, whenStable as ɵwhenStable, withDomHydration as ɵwithDomHydration, withI18nSupport as ɵwithI18nSupport, ɵɵCopyDefinitionFeature, FactoryTarget as ɵɵFactoryTarget, ɵɵHostDirectivesFeature, ɵɵInheritDefinitionFeature, ɵɵ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, ɵɵngDeclareClassMetadataAsync, ɵɵ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, ɵɵtwoWayBindingSet, ɵɵtwoWayListener, ɵɵtwoWayProperty, ɵɵvalidateIframeAttribute, ɵɵviewQuery, ɵɵviewQuerySignal };
|
|
37069
37026
|
//# sourceMappingURL=core.mjs.map
|