@angular/core 16.1.0-next.2 → 16.1.0-rc.0
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_init.mjs +2 -3
- package/esm2022/src/application_module.mjs +2 -3
- package/esm2022/src/application_ref.mjs +10 -8
- package/esm2022/src/change_detection/change_detector_ref.mjs +2 -3
- package/esm2022/src/change_detection/differs/iterable_differs.mjs +2 -3
- package/esm2022/src/change_detection/differs/keyvalue_differs.mjs +2 -3
- package/esm2022/src/console.mjs +2 -3
- package/esm2022/src/core.mjs +2 -1
- package/esm2022/src/core_private_export.mjs +2 -2
- package/esm2022/src/di/injector.mjs +2 -3
- package/esm2022/src/hydration/api.mjs +4 -7
- package/esm2022/src/initial_render_pending_tasks.mjs +13 -39
- package/esm2022/src/linker/compiler.mjs +2 -3
- package/esm2022/src/linker/component_factory_resolver.mjs +2 -3
- package/esm2022/src/linker/destroy_ref.mjs +2 -3
- package/esm2022/src/linker/element_ref.mjs +2 -3
- package/esm2022/src/linker/template_ref.mjs +2 -3
- package/esm2022/src/linker/view_container_ref.mjs +2 -3
- package/esm2022/src/metadata/directives.mjs +1 -1
- package/esm2022/src/render/api.mjs +2 -3
- package/esm2022/src/render3/definition.mjs +3 -1
- package/esm2022/src/render3/features/inherit_definition_feature.mjs +8 -1
- package/esm2022/src/render3/features/input_transforms_feature.mjs +22 -3
- package/esm2022/src/render3/instructions/shared.mjs +5 -1
- package/esm2022/src/render3/interfaces/definition.mjs +1 -1
- package/esm2022/src/render3/jit/directive.mjs +2 -2
- package/esm2022/src/render3/reactivity/effect.mjs +2 -3
- package/esm2022/src/sanitization/sanitizer.mjs +2 -3
- package/esm2022/src/signals/src/graph.mjs +1 -1
- package/esm2022/src/testability/testability.mjs +3 -5
- package/esm2022/src/transfer_state.mjs +2 -3
- package/esm2022/src/util/coercion.mjs +24 -3
- package/esm2022/src/util/property.mjs +1 -1
- package/esm2022/src/version.mjs +1 -1
- package/esm2022/testing/src/logger.mjs +5 -6
- package/esm2022/testing/src/test_bed.mjs +2 -3
- package/fesm2022/core.mjs +108 -79
- package/fesm2022/core.mjs.map +1 -1
- package/fesm2022/rxjs-interop.mjs +1 -1
- package/fesm2022/rxjs-interop.mjs.map +1 -1
- package/fesm2022/testing.mjs +36 -4
- package/fesm2022/testing.mjs.map +1 -1
- package/index.d.ts +71 -18
- package/package.json +1 -1
- package/rxjs-interop/index.d.ts +1 -1
- package/schematics/migrations/guard-and-resolve-interfaces/bundle.js +13 -13
- package/schematics/migrations/remove-module-id/bundle.js +14 -14
- package/schematics/ng-generate/standalone-migration/bundle.js +1139 -582
- package/schematics/ng-generate/standalone-migration/bundle.js.map +4 -4
- package/testing/index.d.ts +1 -1
package/fesm2022/core.mjs
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Angular v16.1.0-
|
|
2
|
+
* @license Angular v16.1.0-rc.0
|
|
3
3
|
* (c) 2010-2022 Google LLC. https://angular.io/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
6
6
|
|
|
7
|
-
import { Subject, Subscription, Observable, merge as merge$1 } from 'rxjs';
|
|
8
|
-
import { share, first } from 'rxjs/operators';
|
|
7
|
+
import { Subject, Subscription, BehaviorSubject, Observable, merge as merge$1, of } from 'rxjs';
|
|
8
|
+
import { share, switchMap, distinctUntilChanged, first } from 'rxjs/operators';
|
|
9
9
|
|
|
10
10
|
function getClosureSafeProperty(objWithPropertyToExtract) {
|
|
11
11
|
for (let key in objWithPropertyToExtract) {
|
|
@@ -1875,6 +1875,8 @@ function getNgDirectiveDef(directiveDefinition) {
|
|
|
1875
1875
|
hostAttrs: directiveDefinition.hostAttrs || null,
|
|
1876
1876
|
contentQueries: directiveDefinition.contentQueries || null,
|
|
1877
1877
|
declaredInputs,
|
|
1878
|
+
inputTransforms: null,
|
|
1879
|
+
inputConfig: directiveDefinition.inputs || EMPTY_OBJ,
|
|
1878
1880
|
exportAs: directiveDefinition.exportAs || null,
|
|
1879
1881
|
standalone: directiveDefinition.standalone === true,
|
|
1880
1882
|
signals: directiveDefinition.signals === true,
|
|
@@ -10071,7 +10073,7 @@ class Version {
|
|
|
10071
10073
|
/**
|
|
10072
10074
|
* @publicApi
|
|
10073
10075
|
*/
|
|
10074
|
-
const VERSION = new Version('16.1.0-
|
|
10076
|
+
const VERSION = new Version('16.1.0-rc.0');
|
|
10075
10077
|
|
|
10076
10078
|
// This default value is when checking the hierarchy for a token.
|
|
10077
10079
|
//
|
|
@@ -11817,6 +11819,10 @@ function setInputsFromAttrs(lView, directiveIndex, instance, def, tNode, initial
|
|
|
11817
11819
|
function writeToDirectiveInput(def, instance, publicName, privateName, value) {
|
|
11818
11820
|
const prevConsumer = setActiveConsumer(null);
|
|
11819
11821
|
try {
|
|
11822
|
+
const inputTransforms = def.inputTransforms;
|
|
11823
|
+
if (inputTransforms !== null && inputTransforms.hasOwnProperty(privateName)) {
|
|
11824
|
+
value = inputTransforms[privateName].call(instance, value);
|
|
11825
|
+
}
|
|
11820
11826
|
if (def.setInput !== null) {
|
|
11821
11827
|
def.setInput(instance, value, publicName, privateName);
|
|
11822
11828
|
}
|
|
@@ -13322,6 +13328,7 @@ function ɵɵInheritDefinitionFeature(definition) {
|
|
|
13322
13328
|
// would've justified object creation. Unwrap them if necessary.
|
|
13323
13329
|
const writeableDef = definition;
|
|
13324
13330
|
writeableDef.inputs = maybeUnwrapEmpty(definition.inputs);
|
|
13331
|
+
writeableDef.inputTransforms = maybeUnwrapEmpty(definition.inputTransforms);
|
|
13325
13332
|
writeableDef.declaredInputs = maybeUnwrapEmpty(definition.declaredInputs);
|
|
13326
13333
|
writeableDef.outputs = maybeUnwrapEmpty(definition.outputs);
|
|
13327
13334
|
// Merge hostBindings
|
|
@@ -13336,6 +13343,12 @@ function ɵɵInheritDefinitionFeature(definition) {
|
|
|
13336
13343
|
fillProperties(definition.inputs, superDef.inputs);
|
|
13337
13344
|
fillProperties(definition.declaredInputs, superDef.declaredInputs);
|
|
13338
13345
|
fillProperties(definition.outputs, superDef.outputs);
|
|
13346
|
+
if (superDef.inputTransforms !== null) {
|
|
13347
|
+
if (writeableDef.inputTransforms === null) {
|
|
13348
|
+
writeableDef.inputTransforms = {};
|
|
13349
|
+
}
|
|
13350
|
+
fillProperties(writeableDef.inputTransforms, superDef.inputTransforms);
|
|
13351
|
+
}
|
|
13339
13352
|
// Merge animations metadata.
|
|
13340
13353
|
// If `superDef` is a Component, the `data` field is present (defaults to an empty object).
|
|
13341
13354
|
if (isComponentDef(superDef) && superDef.data.animation) {
|
|
@@ -13661,11 +13674,30 @@ function validateMappings(bindingType, def, hostDirectiveBindings) {
|
|
|
13661
13674
|
}
|
|
13662
13675
|
}
|
|
13663
13676
|
|
|
13664
|
-
// TODO(crisbeto): move input transforms runtime functionality here.
|
|
13665
13677
|
/**
|
|
13678
|
+
* Decorates the directive definition with support for input transform functions.
|
|
13679
|
+
*
|
|
13680
|
+
* If the directive uses inheritance, the feature should be included before the
|
|
13681
|
+
* `InheritDefinitionFeature` to ensure that the `inputTransforms` field is populated.
|
|
13682
|
+
*
|
|
13666
13683
|
* @codeGenApi
|
|
13667
13684
|
*/
|
|
13668
|
-
function ɵɵInputTransformsFeature(definition) {
|
|
13685
|
+
function ɵɵInputTransformsFeature(definition) {
|
|
13686
|
+
const inputs = definition.inputConfig;
|
|
13687
|
+
const inputTransforms = {};
|
|
13688
|
+
for (const minifiedKey in inputs) {
|
|
13689
|
+
if (inputs.hasOwnProperty(minifiedKey)) {
|
|
13690
|
+
// Note: the private names are used for the keys, rather than the public ones, because public
|
|
13691
|
+
// names can be re-aliased in host directives which would invalidate the lookup.
|
|
13692
|
+
const value = inputs[minifiedKey];
|
|
13693
|
+
if (Array.isArray(value) && value[2]) {
|
|
13694
|
+
inputTransforms[minifiedKey] = value[2];
|
|
13695
|
+
}
|
|
13696
|
+
}
|
|
13697
|
+
}
|
|
13698
|
+
definition.inputTransforms =
|
|
13699
|
+
inputTransforms;
|
|
13700
|
+
}
|
|
13669
13701
|
|
|
13670
13702
|
function isIterable(obj) {
|
|
13671
13703
|
return obj !== null && typeof obj === 'object' && obj[Symbol.iterator] !== undefined;
|
|
@@ -24854,7 +24886,7 @@ function getStandaloneDefFunctions(type, imports) {
|
|
|
24854
24886
|
// Standalone components are always able to self-reference, so include the component's own
|
|
24855
24887
|
// definition in its `directiveDefs`.
|
|
24856
24888
|
cachedDirectiveDefs = [getComponentDef(type)];
|
|
24857
|
-
const seen = new Set();
|
|
24889
|
+
const seen = new Set([type]);
|
|
24858
24890
|
for (const rawDep of imports) {
|
|
24859
24891
|
ngDevMode && verifyStandaloneImport(rawDep, type);
|
|
24860
24892
|
const dep = resolveForwardRef(rawDep);
|
|
@@ -25622,6 +25654,45 @@ var MissingTranslationStrategy;
|
|
|
25622
25654
|
MissingTranslationStrategy[MissingTranslationStrategy["Ignore"] = 2] = "Ignore";
|
|
25623
25655
|
})(MissingTranslationStrategy || (MissingTranslationStrategy = {}));
|
|
25624
25656
|
|
|
25657
|
+
/**
|
|
25658
|
+
* *Internal* service that keeps track of pending tasks happening in the system
|
|
25659
|
+
* during the initial rendering. No tasks are tracked after an initial
|
|
25660
|
+
* rendering.
|
|
25661
|
+
*
|
|
25662
|
+
* This information is needed to make sure that the serialization on the server
|
|
25663
|
+
* is delayed until all tasks in the queue (such as an initial navigation or a
|
|
25664
|
+
* pending HTTP request) are completed.
|
|
25665
|
+
*/
|
|
25666
|
+
class InitialRenderPendingTasks {
|
|
25667
|
+
constructor() {
|
|
25668
|
+
this.taskId = 0;
|
|
25669
|
+
this.pendingTasks = new Set();
|
|
25670
|
+
this.hasPendingTasks = new BehaviorSubject(false);
|
|
25671
|
+
}
|
|
25672
|
+
add() {
|
|
25673
|
+
this.hasPendingTasks.next(true);
|
|
25674
|
+
const taskId = this.taskId++;
|
|
25675
|
+
this.pendingTasks.add(taskId);
|
|
25676
|
+
return taskId;
|
|
25677
|
+
}
|
|
25678
|
+
remove(taskId) {
|
|
25679
|
+
this.pendingTasks.delete(taskId);
|
|
25680
|
+
if (this.pendingTasks.size === 0) {
|
|
25681
|
+
this.hasPendingTasks.next(false);
|
|
25682
|
+
}
|
|
25683
|
+
}
|
|
25684
|
+
ngOnDestroy() {
|
|
25685
|
+
this.pendingTasks.clear();
|
|
25686
|
+
this.hasPendingTasks.next(false);
|
|
25687
|
+
}
|
|
25688
|
+
static { this.ɵfac = function InitialRenderPendingTasks_Factory(t) { return new (t || InitialRenderPendingTasks)(); }; }
|
|
25689
|
+
static { this.ɵprov = /*@__PURE__*/ ɵɵdefineInjectable({ token: InitialRenderPendingTasks, factory: InitialRenderPendingTasks.ɵfac, providedIn: 'root' }); }
|
|
25690
|
+
}
|
|
25691
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && setClassMetadata(InitialRenderPendingTasks, [{
|
|
25692
|
+
type: Injectable,
|
|
25693
|
+
args: [{ providedIn: 'root' }]
|
|
25694
|
+
}], null, null); })();
|
|
25695
|
+
|
|
25625
25696
|
/**
|
|
25626
25697
|
* Combination of NgModuleFactory and ComponentFactories.
|
|
25627
25698
|
*
|
|
@@ -27181,6 +27252,7 @@ class ApplicationRef {
|
|
|
27181
27252
|
/** @internal */
|
|
27182
27253
|
this._views = [];
|
|
27183
27254
|
this.internalErrorHandler = inject(INTERNAL_APPLICATION_ERROR_HANDLER);
|
|
27255
|
+
this.zoneIsStable = inject(ZONE_IS_STABLE_OBSERVABLE);
|
|
27184
27256
|
/**
|
|
27185
27257
|
* Get a list of component types registered to this application.
|
|
27186
27258
|
* This list is populated even before the component is created.
|
|
@@ -27193,7 +27265,8 @@ class ApplicationRef {
|
|
|
27193
27265
|
/**
|
|
27194
27266
|
* Returns an Observable that indicates when the application is stable or unstable.
|
|
27195
27267
|
*/
|
|
27196
|
-
this.isStable = inject(
|
|
27268
|
+
this.isStable = inject(InitialRenderPendingTasks)
|
|
27269
|
+
.hasPendingTasks.pipe(switchMap(hasPendingTasks => hasPendingTasks ? of(false) : this.zoneIsStable), distinctUntilChanged(), share());
|
|
27197
27270
|
this._injector = inject(EnvironmentInjector);
|
|
27198
27271
|
}
|
|
27199
27272
|
/**
|
|
@@ -29807,69 +29880,6 @@ function isDisconnectedNode(tNode, lView) {
|
|
|
29807
29880
|
!unwrapRNode(lView[tNode.index]).isConnected;
|
|
29808
29881
|
}
|
|
29809
29882
|
|
|
29810
|
-
/**
|
|
29811
|
-
* *Internal* service that keeps track of pending tasks happening in the system
|
|
29812
|
-
* during the initial rendering. No tasks are tracked after an initial
|
|
29813
|
-
* rendering.
|
|
29814
|
-
*
|
|
29815
|
-
* This information is needed to make sure that the serialization on the server
|
|
29816
|
-
* is delayed until all tasks in the queue (such as an initial navigation or a
|
|
29817
|
-
* pending HTTP request) are completed.
|
|
29818
|
-
*/
|
|
29819
|
-
class InitialRenderPendingTasks {
|
|
29820
|
-
get whenAllTasksComplete() {
|
|
29821
|
-
if (this.collection.size === 0) {
|
|
29822
|
-
this.complete();
|
|
29823
|
-
}
|
|
29824
|
-
return this.promise;
|
|
29825
|
-
}
|
|
29826
|
-
constructor() {
|
|
29827
|
-
this.taskId = 0;
|
|
29828
|
-
this.collection = new Set();
|
|
29829
|
-
this.ngZone = inject(NgZone);
|
|
29830
|
-
this.completed = false;
|
|
29831
|
-
// Run outside of the Angular zone to avoid triggering
|
|
29832
|
-
// extra change detection cycles.
|
|
29833
|
-
this.ngZone.runOutsideAngular(() => {
|
|
29834
|
-
this.promise = new Promise((resolve) => {
|
|
29835
|
-
this.resolve = resolve;
|
|
29836
|
-
});
|
|
29837
|
-
});
|
|
29838
|
-
}
|
|
29839
|
-
add() {
|
|
29840
|
-
if (this.completed) {
|
|
29841
|
-
// Indicates that the task was added after
|
|
29842
|
-
// the task queue completion, so it's a noop.
|
|
29843
|
-
return -1;
|
|
29844
|
-
}
|
|
29845
|
-
const taskId = this.taskId++;
|
|
29846
|
-
this.collection.add(taskId);
|
|
29847
|
-
return taskId;
|
|
29848
|
-
}
|
|
29849
|
-
remove(taskId) {
|
|
29850
|
-
if (this.completed)
|
|
29851
|
-
return;
|
|
29852
|
-
this.collection.delete(taskId);
|
|
29853
|
-
if (this.collection.size === 0) {
|
|
29854
|
-
this.complete();
|
|
29855
|
-
}
|
|
29856
|
-
}
|
|
29857
|
-
ngOnDestroy() {
|
|
29858
|
-
this.complete();
|
|
29859
|
-
this.collection.clear();
|
|
29860
|
-
}
|
|
29861
|
-
complete() {
|
|
29862
|
-
this.completed = true;
|
|
29863
|
-
this.resolve();
|
|
29864
|
-
}
|
|
29865
|
-
static { this.ɵfac = function InitialRenderPendingTasks_Factory(t) { return new (t || InitialRenderPendingTasks)(); }; }
|
|
29866
|
-
static { this.ɵprov = /*@__PURE__*/ ɵɵdefineInjectable({ token: InitialRenderPendingTasks, factory: InitialRenderPendingTasks.ɵfac, providedIn: 'root' }); }
|
|
29867
|
-
}
|
|
29868
|
-
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && setClassMetadata(InitialRenderPendingTasks, [{
|
|
29869
|
-
type: Injectable,
|
|
29870
|
-
args: [{ providedIn: 'root' }]
|
|
29871
|
-
}], function () { return []; }, null); })();
|
|
29872
|
-
|
|
29873
29883
|
/**
|
|
29874
29884
|
* Indicates whether the hydration-related code was added,
|
|
29875
29885
|
* prevents adding it multiple times.
|
|
@@ -29928,7 +29938,7 @@ function printHydrationStats(injector) {
|
|
|
29928
29938
|
/**
|
|
29929
29939
|
* Returns a Promise that is resolved when an application becomes stable.
|
|
29930
29940
|
*/
|
|
29931
|
-
function whenStable(appRef,
|
|
29941
|
+
function whenStable(appRef, injector) {
|
|
29932
29942
|
const isStablePromise = appRef.isStable.pipe(first((isStable) => isStable)).toPromise();
|
|
29933
29943
|
if (typeof ngDevMode !== 'undefined' && ngDevMode) {
|
|
29934
29944
|
const timeoutTime = APPLICATION_IS_STABLE_TIMEOUT;
|
|
@@ -29942,8 +29952,7 @@ function whenStable(appRef, pendingTasks, injector) {
|
|
|
29942
29952
|
});
|
|
29943
29953
|
isStablePromise.finally(() => clearTimeout(timeoutId));
|
|
29944
29954
|
}
|
|
29945
|
-
|
|
29946
|
-
return Promise.allSettled([isStablePromise, pendingTasksPromise]);
|
|
29955
|
+
return isStablePromise.then(() => { });
|
|
29947
29956
|
}
|
|
29948
29957
|
/**
|
|
29949
29958
|
* Returns a set of providers required to setup hydration support
|
|
@@ -30012,10 +30021,9 @@ function withDomHydration() {
|
|
|
30012
30021
|
useFactory: () => {
|
|
30013
30022
|
if (isBrowser() && inject(IS_HYDRATION_DOM_REUSE_ENABLED)) {
|
|
30014
30023
|
const appRef = inject(ApplicationRef);
|
|
30015
|
-
const pendingTasks = inject(InitialRenderPendingTasks);
|
|
30016
30024
|
const injector = inject(Injector);
|
|
30017
30025
|
return () => {
|
|
30018
|
-
whenStable(appRef,
|
|
30026
|
+
whenStable(appRef, injector).then(() => {
|
|
30019
30027
|
// Wait until an app becomes stable and cleanup all views that
|
|
30020
30028
|
// were not claimed during the application bootstrap process.
|
|
30021
30029
|
// The timing is similar to when we start the serialization process
|
|
@@ -30044,10 +30052,31 @@ function logWarningOnStableTimedout(time, console) {
|
|
|
30044
30052
|
console.warn(formatRuntimeError(-506 /* RuntimeErrorCode.HYDRATION_STABLE_TIMEDOUT */, message));
|
|
30045
30053
|
}
|
|
30046
30054
|
|
|
30047
|
-
/**
|
|
30048
|
-
|
|
30055
|
+
/**
|
|
30056
|
+
* Transforms a value (typically a string) to a boolean.
|
|
30057
|
+
* Intended to be used as a transform function of an input.
|
|
30058
|
+
* @param value Value to be transformed.
|
|
30059
|
+
*
|
|
30060
|
+
* @publicApi
|
|
30061
|
+
*/
|
|
30062
|
+
function booleanAttribute(value) {
|
|
30049
30063
|
return typeof value === 'boolean' ? value : (value != null && value !== 'false');
|
|
30050
30064
|
}
|
|
30065
|
+
/**
|
|
30066
|
+
* Transforms a value (typically a string) to a number.
|
|
30067
|
+
* Intended to be used as a transform function of an input.
|
|
30068
|
+
* @param value Value to be transformed.
|
|
30069
|
+
* @param fallbackValue Value to use if the provided value can't be parsed as a number.
|
|
30070
|
+
*
|
|
30071
|
+
* @publicApi
|
|
30072
|
+
*/
|
|
30073
|
+
function numberAttribute(value, fallbackValue = NaN) {
|
|
30074
|
+
// parseFloat(value) handles most of the cases we're interested in (it treats null, empty string,
|
|
30075
|
+
// and other non-number values as NaN, where Number just uses 0) but it considers the string
|
|
30076
|
+
// '123hello' to be a valid number. Therefore we also check if Number(value) is NaN.
|
|
30077
|
+
const isNumberValue = !isNaN(parseFloat(value)) && !isNaN(Number(value));
|
|
30078
|
+
return isNumberValue ? Number(value) : fallbackValue;
|
|
30079
|
+
}
|
|
30051
30080
|
|
|
30052
30081
|
/**
|
|
30053
30082
|
* Compiles a partial directive declaration object into a full directive definition object.
|
|
@@ -30331,5 +30360,5 @@ if (typeof ngDevMode !== 'undefined' && ngDevMode) {
|
|
|
30331
30360
|
* Generated bundle index. Do not edit.
|
|
30332
30361
|
*/
|
|
30333
30362
|
|
|
30334
|
-
export { ANIMATION_MODULE_TYPE, APP_BOOTSTRAP_LISTENER, APP_ID, APP_INITIALIZER, 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, asNativeElements, assertInInjectionContext, assertPlatform, computed, createComponent, createEnvironmentInjector, createNgModule, createNgModuleRef, createPlatform, createPlatformFactory, defineInjectable, destroyPlatform, effect, enableProdMode, forwardRef, getDebugNode, getModuleFactory, getNgModuleById, getPlatform, importProvidersFrom, inject, isDevMode, isSignal, isStandalone, makeEnvironmentProviders, makeStateKey, mergeApplicationConfig, platformCore, provideZoneChangeDetection, reflectComponentType, resolveForwardRef, runInInjectionContext, setTestabilityGetter, signal, untracked, ALLOW_MULTIPLE_PLATFORMS as ɵALLOW_MULTIPLE_PLATFORMS, ComponentFactory$1 as ɵComponentFactory, Console as ɵConsole, DEFAULT_LOCALE_ID as ɵDEFAULT_LOCALE_ID, ENABLED_SSR_FEATURES as ɵENABLED_SSR_FEATURES, INJECTOR_SCOPE as ɵINJECTOR_SCOPE, IS_HYDRATION_DOM_REUSE_ENABLED as ɵIS_HYDRATION_DOM_REUSE_ENABLED, InitialRenderPendingTasks as ɵInitialRenderPendingTasks, 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, ReflectionCapabilities as ɵReflectionCapabilities, ComponentFactory as ɵRender3ComponentFactory, ComponentRef as ɵRender3ComponentRef, NgModuleRef as ɵRender3NgModuleRef, RuntimeError as ɵRuntimeError, TESTABILITY as ɵTESTABILITY, TESTABILITY_GETTER as ɵTESTABILITY_GETTER, 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,
|
|
30363
|
+
export { ANIMATION_MODULE_TYPE, APP_BOOTSTRAP_LISTENER, APP_ID, APP_INITIALIZER, 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, asNativeElements, assertInInjectionContext, assertPlatform, booleanAttribute, computed, createComponent, createEnvironmentInjector, createNgModule, createNgModuleRef, createPlatform, createPlatformFactory, defineInjectable, destroyPlatform, effect, enableProdMode, forwardRef, getDebugNode, getModuleFactory, getNgModuleById, getPlatform, importProvidersFrom, inject, isDevMode, isSignal, isStandalone, makeEnvironmentProviders, makeStateKey, mergeApplicationConfig, numberAttribute, platformCore, provideZoneChangeDetection, reflectComponentType, resolveForwardRef, runInInjectionContext, setTestabilityGetter, signal, untracked, ALLOW_MULTIPLE_PLATFORMS as ɵALLOW_MULTIPLE_PLATFORMS, ComponentFactory$1 as ɵComponentFactory, Console as ɵConsole, DEFAULT_LOCALE_ID as ɵDEFAULT_LOCALE_ID, ENABLED_SSR_FEATURES as ɵENABLED_SSR_FEATURES, INJECTOR_SCOPE as ɵINJECTOR_SCOPE, IS_HYDRATION_DOM_REUSE_ENABLED as ɵIS_HYDRATION_DOM_REUSE_ENABLED, InitialRenderPendingTasks as ɵInitialRenderPendingTasks, 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, ReflectionCapabilities as ɵReflectionCapabilities, ComponentFactory as ɵRender3ComponentFactory, ComponentRef as ɵRender3ComponentRef, NgModuleRef as ɵRender3NgModuleRef, RuntimeError as ɵRuntimeError, TESTABILITY as ɵTESTABILITY, TESTABILITY_GETTER as ɵTESTABILITY_GETTER, 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, detectChanges as ɵdetectChanges, devModeEqual as ɵdevModeEqual, findLocaleData as ɵfindLocaleData, flushModuleScopingQueueAsMuchAsPossible as ɵflushModuleScopingQueueAsMuchAsPossible, formatRuntimeError as ɵformatRuntimeError, getDebugNode as ɵgetDebugNode, getDirectives as ɵgetDirectives, 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, internalCreateApplication as ɵinternalCreateApplication, isBoundToModule as ɵisBoundToModule, isEnvironmentProviders as ɵisEnvironmentProviders, isInjectable as ɵisInjectable, isNgModule as ɵisNgModule, isPromise as ɵisPromise, isSubscribable as ɵisSubscribable, noSideEffects as ɵnoSideEffects, patchComponentDefWithScope as ɵpatchComponentDefWithScope, publishDefaultGlobalUtils$1 as ɵpublishDefaultGlobalUtils, publishGlobalUtil as ɵpublishGlobalUtil, registerLocaleData as ɵregisterLocaleData, resetCompiledComponents as ɵresetCompiledComponents, resetJitOptions as ɵresetJitOptions, resolveComponentResources as ɵresolveComponentResources, setAllowDuplicateNgModuleIdsForTest as ɵsetAllowDuplicateNgModuleIdsForTest, setAlternateWeakRefImpl as ɵsetAlternateWeakRefImpl, setClassMetadata as ɵsetClassMetadata, setCurrentInjector as ɵsetCurrentInjector, setDocument as ɵsetDocument, setLocaleId as ɵsetLocaleId, ɵsetUnknownElementStrictMode, ɵsetUnknownPropertyStrictMode, store as ɵstore, stringify as ɵstringify, transitiveScopesFor as ɵtransitiveScopesFor, unregisterAllLocaleData as ɵunregisterLocaleData, unwrapSafeValue as ɵunwrapSafeValue, withDomHydration as ɵwithDomHydration, ɵɵ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, ɵɵcontentQuery, ɵɵdefineComponent, ɵɵdefineDirective, ɵɵdefineInjectable, ɵɵdefineInjector, ɵɵdefineNgModule, ɵɵdefinePipe, ɵɵdirectiveInject, ɵɵdisableBindings, ɵɵelement, ɵɵelementContainer, ɵɵelementContainerEnd, ɵɵelementContainerStart, ɵɵelementEnd, ɵɵelementStart, ɵɵenableBindings, ɵɵ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, ɵɵ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 };
|
|
30335
30364
|
//# sourceMappingURL=core.mjs.map
|