@angular/core 14.2.0-next.0 → 14.2.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/esm2020/src/application_ref.mjs +2 -2
- package/esm2020/src/core_private_export.mjs +2 -2
- package/esm2020/src/core_render3_private_export.mjs +4 -4
- package/esm2020/src/di/interface/defs.mjs +4 -1
- package/esm2020/src/linker/template_ref.mjs +1 -1
- package/esm2020/src/render3/component_ref.mjs +4 -31
- package/esm2020/src/render3/definition.mjs +5 -5
- package/esm2020/src/render3/index.mjs +4 -4
- package/esm2020/src/render3/instructions/change_detection.mjs +3 -19
- package/esm2020/src/render3/instructions/shared.mjs +10 -50
- package/esm2020/src/render3/interfaces/view.mjs +1 -1
- package/esm2020/src/render3/jit/module.mjs +2 -6
- package/esm2020/src/render3/util/change_detection_utils.mjs +7 -3
- package/esm2020/src/render3/util/misc_utils.mjs +1 -7
- package/esm2020/src/sanitization/url_sanitizer.mjs +3 -7
- package/esm2020/src/version.mjs +1 -1
- package/esm2020/testing/src/logger.mjs +3 -3
- package/esm2020/testing/src/ng_zone_mock.mjs +3 -3
- package/esm2020/testing/src/resolvers.mjs +1 -1
- package/fesm2015/core.mjs +25 -114
- package/fesm2015/core.mjs.map +1 -1
- package/fesm2015/testing.mjs +22 -112
- package/fesm2015/testing.mjs.map +1 -1
- package/fesm2020/core.mjs +25 -114
- package/fesm2020/core.mjs.map +1 -1
- package/fesm2020/testing.mjs +22 -112
- package/fesm2020/testing.mjs.map +1 -1
- package/index.d.ts +10 -99
- package/package.json +1 -1
- package/testing/index.d.ts +1 -1
- package/esm2020/src/render3/interfaces/player.mjs +0 -9
package/fesm2020/core.mjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Angular v14.2.0
|
|
2
|
+
* @license Angular v14.2.0
|
|
3
3
|
* (c) 2010-2022 Google LLC. https://angular.io/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
@@ -429,6 +429,9 @@ function ɵɵdefineInjector(options) {
|
|
|
429
429
|
function getInjectableDef(type) {
|
|
430
430
|
return getOwnDefinition(type, NG_PROV_DEF) || getOwnDefinition(type, NG_INJECTABLE_DEF);
|
|
431
431
|
}
|
|
432
|
+
function isInjectable(type) {
|
|
433
|
+
return getInjectableDef(type) !== null;
|
|
434
|
+
}
|
|
432
435
|
/**
|
|
433
436
|
* Return definition only if it is defined directly on `type` and is not inherited from a base
|
|
434
437
|
* class of `type`.
|
|
@@ -967,7 +970,6 @@ function extractDirectiveDef(type) {
|
|
|
967
970
|
function nonNull(value) {
|
|
968
971
|
return value !== null;
|
|
969
972
|
}
|
|
970
|
-
const autoRegisterModuleById = {};
|
|
971
973
|
/**
|
|
972
974
|
* @codeGenApi
|
|
973
975
|
*/
|
|
@@ -983,9 +985,6 @@ function ɵɵdefineNgModule(def) {
|
|
|
983
985
|
schemas: def.schemas || null,
|
|
984
986
|
id: def.id || null,
|
|
985
987
|
};
|
|
986
|
-
if (def.id != null) {
|
|
987
|
-
autoRegisterModuleById[def.id] = def.type;
|
|
988
|
-
}
|
|
989
988
|
return res;
|
|
990
989
|
});
|
|
991
990
|
}
|
|
@@ -1139,6 +1138,10 @@ function getDirectiveDef(type) {
|
|
|
1139
1138
|
function getPipeDef$1(type) {
|
|
1140
1139
|
return type[NG_PIPE_DEF] || null;
|
|
1141
1140
|
}
|
|
1141
|
+
function isStandalone(type) {
|
|
1142
|
+
const def = getComponentDef(type) || getDirectiveDef(type) || getPipeDef$1(type);
|
|
1143
|
+
return def !== null ? def.standalone : false;
|
|
1144
|
+
}
|
|
1142
1145
|
function getNgModuleDef(type, throwNotFound) {
|
|
1143
1146
|
const ngModuleDef = type[NG_MOD_DEF] || null;
|
|
1144
1147
|
if (!ngModuleDef && throwNotFound === true) {
|
|
@@ -5788,14 +5791,10 @@ function isDOMParserAvailable() {
|
|
|
5788
5791
|
*
|
|
5789
5792
|
* This regular expression was taken from the Closure sanitization library.
|
|
5790
5793
|
*/
|
|
5791
|
-
const SAFE_URL_PATTERN = /^(?:(?:https?|mailto|ftp|tel|file|sms):|[^&:/?#]*(?:[/?#]|$))/gi;
|
|
5792
|
-
/* A pattern that matches safe srcset values */
|
|
5793
|
-
const SAFE_SRCSET_PATTERN = /^(?:(?:https?|file):|[^&:/?#]*(?:[/?#]|$))/gi;
|
|
5794
|
-
/** A pattern that matches safe data URLs. Only matches image, video and audio types. */
|
|
5795
|
-
const DATA_URL_PATTERN = /^data:(?:image\/(?:bmp|gif|jpeg|jpg|png|tiff|webp)|video\/(?:mpeg|mp4|ogg|webm)|audio\/(?:mp3|oga|ogg|opus));base64,[a-z0-9+\/]+=*$/i;
|
|
5794
|
+
const SAFE_URL_PATTERN = /^(?:(?:https?|mailto|data|ftp|tel|file|sms):|[^&:/?#]*(?:[/?#]|$))/gi;
|
|
5796
5795
|
function _sanitizeUrl(url) {
|
|
5797
5796
|
url = String(url);
|
|
5798
|
-
if (url.match(SAFE_URL_PATTERN)
|
|
5797
|
+
if (url.match(SAFE_URL_PATTERN))
|
|
5799
5798
|
return url;
|
|
5800
5799
|
if (typeof ngDevMode === 'undefined' || ngDevMode) {
|
|
5801
5800
|
console.warn(`WARNING: sanitizing unsafe URL value ${url} (see https://g.co/ng/security#xss)`);
|
|
@@ -7258,7 +7257,7 @@ class Version {
|
|
|
7258
7257
|
/**
|
|
7259
7258
|
* @publicApi
|
|
7260
7259
|
*/
|
|
7261
|
-
const VERSION = new Version('14.2.0
|
|
7260
|
+
const VERSION = new Version('14.2.0');
|
|
7262
7261
|
|
|
7263
7262
|
/**
|
|
7264
7263
|
* @license
|
|
@@ -8115,11 +8114,6 @@ function discoverLocalRefs(lView, nodeIndex) {
|
|
|
8115
8114
|
* Use of this source code is governed by an MIT-style license that can be
|
|
8116
8115
|
* found in the LICENSE file at https://angular.io/license
|
|
8117
8116
|
*/
|
|
8118
|
-
const defaultScheduler = (() => (typeof requestAnimationFrame !== 'undefined' &&
|
|
8119
|
-
requestAnimationFrame || // browser only
|
|
8120
|
-
setTimeout // everything else
|
|
8121
|
-
)
|
|
8122
|
-
.bind(_global))();
|
|
8123
8117
|
/**
|
|
8124
8118
|
*
|
|
8125
8119
|
* @codeGenApi
|
|
@@ -11714,11 +11708,6 @@ class LContainerDebug {
|
|
|
11714
11708
|
* Use of this source code is governed by an MIT-style license that can be
|
|
11715
11709
|
* found in the LICENSE file at https://angular.io/license
|
|
11716
11710
|
*/
|
|
11717
|
-
/**
|
|
11718
|
-
* A permanent marker promise which signifies that the current CD tree is
|
|
11719
|
-
* clean.
|
|
11720
|
-
*/
|
|
11721
|
-
const _CLEAN_PROMISE = (() => Promise.resolve(null))();
|
|
11722
11711
|
/**
|
|
11723
11712
|
* Invoke `HostBindingsFunction`s for view.
|
|
11724
11713
|
*
|
|
@@ -13099,13 +13088,15 @@ function refreshContainsDirtyView(lView) {
|
|
|
13099
13088
|
for (let lContainer = getFirstLContainer(lView); lContainer !== null; lContainer = getNextLContainer(lContainer)) {
|
|
13100
13089
|
for (let i = CONTAINER_HEADER_OFFSET; i < lContainer.length; i++) {
|
|
13101
13090
|
const embeddedLView = lContainer[i];
|
|
13102
|
-
if (embeddedLView
|
|
13103
|
-
|
|
13104
|
-
|
|
13105
|
-
|
|
13106
|
-
|
|
13107
|
-
|
|
13108
|
-
|
|
13091
|
+
if (viewAttachedToChangeDetector(embeddedLView)) {
|
|
13092
|
+
if (embeddedLView[FLAGS] & 512 /* LViewFlags.RefreshTransplantedView */) {
|
|
13093
|
+
const embeddedTView = embeddedLView[TVIEW];
|
|
13094
|
+
ngDevMode && assertDefined(embeddedTView, 'TView must be allocated');
|
|
13095
|
+
refreshView(embeddedTView, embeddedLView, embeddedTView.template, embeddedLView[CONTEXT]);
|
|
13096
|
+
}
|
|
13097
|
+
else if (embeddedLView[TRANSPLANTED_VIEWS_TO_REFRESH] > 0) {
|
|
13098
|
+
refreshContainsDirtyView(embeddedLView);
|
|
13099
|
+
}
|
|
13109
13100
|
}
|
|
13110
13101
|
}
|
|
13111
13102
|
}
|
|
@@ -13214,42 +13205,6 @@ function markViewDirty(lView) {
|
|
|
13214
13205
|
}
|
|
13215
13206
|
return null;
|
|
13216
13207
|
}
|
|
13217
|
-
/**
|
|
13218
|
-
* Used to schedule change detection on the whole application.
|
|
13219
|
-
*
|
|
13220
|
-
* Unlike `tick`, `scheduleTick` coalesces multiple calls into one change detection run.
|
|
13221
|
-
* It is usually called indirectly by calling `markDirty` when the view needs to be
|
|
13222
|
-
* re-rendered.
|
|
13223
|
-
*
|
|
13224
|
-
* Typically `scheduleTick` uses `requestAnimationFrame` to coalesce multiple
|
|
13225
|
-
* `scheduleTick` requests. The scheduling function can be overridden in
|
|
13226
|
-
* `renderComponent`'s `scheduler` option.
|
|
13227
|
-
*/
|
|
13228
|
-
function scheduleTick(rootContext, flags) {
|
|
13229
|
-
const nothingScheduled = rootContext.flags === 0 /* RootContextFlags.Empty */;
|
|
13230
|
-
if (nothingScheduled && rootContext.clean == _CLEAN_PROMISE) {
|
|
13231
|
-
// https://github.com/angular/angular/issues/39296
|
|
13232
|
-
// should only attach the flags when really scheduling a tick
|
|
13233
|
-
rootContext.flags |= flags;
|
|
13234
|
-
let res;
|
|
13235
|
-
rootContext.clean = new Promise((r) => res = r);
|
|
13236
|
-
rootContext.scheduler(() => {
|
|
13237
|
-
if (rootContext.flags & 1 /* RootContextFlags.DetectChanges */) {
|
|
13238
|
-
rootContext.flags &= ~1 /* RootContextFlags.DetectChanges */;
|
|
13239
|
-
tickRootContext(rootContext);
|
|
13240
|
-
}
|
|
13241
|
-
if (rootContext.flags & 2 /* RootContextFlags.FlushPlayers */) {
|
|
13242
|
-
rootContext.flags &= ~2 /* RootContextFlags.FlushPlayers */;
|
|
13243
|
-
const playerHandler = rootContext.playerHandler;
|
|
13244
|
-
if (playerHandler) {
|
|
13245
|
-
playerHandler.flushPlayers();
|
|
13246
|
-
}
|
|
13247
|
-
}
|
|
13248
|
-
rootContext.clean = _CLEAN_PROMISE;
|
|
13249
|
-
res(null);
|
|
13250
|
-
});
|
|
13251
|
-
}
|
|
13252
|
-
}
|
|
13253
13208
|
function tickRootContext(rootContext) {
|
|
13254
13209
|
for (let i = 0; i < rootContext.components.length; i++) {
|
|
13255
13210
|
const rootComponent = rootContext.components[i];
|
|
@@ -13358,7 +13313,6 @@ function storePropertyBindingMetadata(tData, tNode, propertyName, bindingIndex,
|
|
|
13358
13313
|
}
|
|
13359
13314
|
}
|
|
13360
13315
|
}
|
|
13361
|
-
const CLEAN_PROMISE = _CLEAN_PROMISE;
|
|
13362
13316
|
function getOrCreateLViewCleanup(view) {
|
|
13363
13317
|
// top level variables should not be exported for performance reasons (PERF_NOTES.md)
|
|
13364
13318
|
return view[CLEANUP] || (view[CLEANUP] = ngDevMode ? new LCleanup() : []);
|
|
@@ -14117,14 +14071,8 @@ function createRootComponent(componentView, componentDef, rootLView, rootContext
|
|
|
14117
14071
|
}
|
|
14118
14072
|
return component;
|
|
14119
14073
|
}
|
|
14120
|
-
function createRootContext(
|
|
14121
|
-
return {
|
|
14122
|
-
components: [],
|
|
14123
|
-
scheduler: scheduler || defaultScheduler,
|
|
14124
|
-
clean: CLEAN_PROMISE,
|
|
14125
|
-
playerHandler: playerHandler || null,
|
|
14126
|
-
flags: 0 /* RootContextFlags.Empty */
|
|
14127
|
-
};
|
|
14074
|
+
function createRootContext() {
|
|
14075
|
+
return { components: [] };
|
|
14128
14076
|
}
|
|
14129
14077
|
/**
|
|
14130
14078
|
* Used to enable lifecycle hooks on the root component.
|
|
@@ -14144,25 +14092,6 @@ function LifecycleHooksFeature() {
|
|
|
14144
14092
|
ngDevMode && assertDefined(tNode, 'TNode is required');
|
|
14145
14093
|
registerPostOrderHooks(getLView()[TVIEW], tNode);
|
|
14146
14094
|
}
|
|
14147
|
-
/**
|
|
14148
|
-
* Wait on component until it is rendered.
|
|
14149
|
-
*
|
|
14150
|
-
* This function returns a `Promise` which is resolved when the component's
|
|
14151
|
-
* change detection is executed. This is determined by finding the scheduler
|
|
14152
|
-
* associated with the `component`'s render tree and waiting until the scheduler
|
|
14153
|
-
* flushes. If nothing is scheduled, the function returns a resolved promise.
|
|
14154
|
-
*
|
|
14155
|
-
* Example:
|
|
14156
|
-
* ```
|
|
14157
|
-
* await whenRendered(myComponent);
|
|
14158
|
-
* ```
|
|
14159
|
-
*
|
|
14160
|
-
* @param component Component to wait upon
|
|
14161
|
-
* @returns Promise which resolves when the component is rendered.
|
|
14162
|
-
*/
|
|
14163
|
-
function whenRendered(component) {
|
|
14164
|
-
return getRootContext(component).clean;
|
|
14165
|
-
}
|
|
14166
14095
|
|
|
14167
14096
|
/**
|
|
14168
14097
|
* @license
|
|
@@ -15147,21 +15076,6 @@ function detectChanges(component) {
|
|
|
15147
15076
|
const view = getComponentViewByInstance(component);
|
|
15148
15077
|
detectChangesInternal(view[TVIEW], view, component);
|
|
15149
15078
|
}
|
|
15150
|
-
/**
|
|
15151
|
-
* Marks the component as dirty (needing change detection). Marking a component dirty will
|
|
15152
|
-
* schedule a change detection on it at some point in the future.
|
|
15153
|
-
*
|
|
15154
|
-
* Marking an already dirty component as dirty won't do anything. Only one outstanding change
|
|
15155
|
-
* detection can be scheduled per component tree.
|
|
15156
|
-
*
|
|
15157
|
-
* @param component Component to mark as dirty.
|
|
15158
|
-
*/
|
|
15159
|
-
function markDirty(component) {
|
|
15160
|
-
ngDevMode && assertDefined(component, 'component');
|
|
15161
|
-
const rootView = markViewDirty(getComponentViewByInstance(component));
|
|
15162
|
-
ngDevMode && assertDefined(rootView[CONTEXT], 'rootContext should be defined');
|
|
15163
|
-
scheduleTick(rootView[CONTEXT], 1 /* RootContextFlags.DetectChanges */);
|
|
15164
|
-
}
|
|
15165
15079
|
|
|
15166
15080
|
/**
|
|
15167
15081
|
* @license
|
|
@@ -24346,10 +24260,6 @@ function compileNgModuleDefs(moduleType, ngModule, allowDuplicateDeclarationsInR
|
|
|
24346
24260
|
configurable: !!ngDevMode,
|
|
24347
24261
|
});
|
|
24348
24262
|
}
|
|
24349
|
-
function isStandalone(type) {
|
|
24350
|
-
const def = getComponentDef(type) || getDirectiveDef(type) || getPipeDef$1(type);
|
|
24351
|
-
return def !== null ? def.standalone : false;
|
|
24352
|
-
}
|
|
24353
24263
|
function generateStandaloneInDeclarationsError(type, location) {
|
|
24354
24264
|
const prefix = `Unexpected "${stringifyForError(type)}" found in the "declarations" array of the`;
|
|
24355
24265
|
const suffix = `"${stringifyForError(type)}" is marked as standalone and can't be declared ` +
|
|
@@ -25948,7 +25858,8 @@ class CompilerFactory {
|
|
|
25948
25858
|
* @globalApi ng
|
|
25949
25859
|
*/
|
|
25950
25860
|
function applyChanges(component) {
|
|
25951
|
-
|
|
25861
|
+
ngDevMode && assertDefined(component, 'component');
|
|
25862
|
+
markViewDirty(getComponentViewByInstance(component));
|
|
25952
25863
|
getRootComponents(component).forEach(rootComponent => detectChanges(rootComponent));
|
|
25953
25864
|
}
|
|
25954
25865
|
|
|
@@ -29904,5 +29815,5 @@ if (typeof ngDevMode !== 'undefined' && ngDevMode) {
|
|
|
29904
29815
|
* Generated bundle index. Do not edit.
|
|
29905
29816
|
*/
|
|
29906
29817
|
|
|
29907
|
-
export { ANALYZE_FOR_ENTRY_COMPONENTS, ANIMATION_MODULE_TYPE, APP_BOOTSTRAP_LISTENER, APP_ID, APP_INITIALIZER, ApplicationInitStatus, ApplicationModule, ApplicationRef, Attribute, COMPILER_OPTIONS, 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, 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, ReflectiveInjector, ReflectiveKey, Renderer2, RendererFactory2, RendererStyleFlags2, ResolvedReflectiveFactory, Sanitizer, SecurityContext, Self, SimpleChange, SkipSelf, TRANSLATIONS, TRANSLATIONS_FORMAT, TemplateRef, Testability, TestabilityRegistry, Type, VERSION, Version, ViewChild, ViewChildren, ViewContainerRef, ViewEncapsulation$1 as ViewEncapsulation, ViewRef, asNativeElements, assertPlatform, createComponent, createEnvironmentInjector, createNgModule, createNgModuleRef, createPlatform, createPlatformFactory, defineInjectable, destroyPlatform, enableProdMode, forwardRef, getDebugNode, getModuleFactory, getNgModuleById, getPlatform, importProvidersFrom, inject, isDevMode, platformCore, reflectComponentType, resolveForwardRef, setTestabilityGetter, ALLOW_MULTIPLE_PLATFORMS as ɵALLOW_MULTIPLE_PLATFORMS, APP_ID_RANDOM_PROVIDER as ɵAPP_ID_RANDOM_PROVIDER, ChangeDetectorStatus as ɵChangeDetectorStatus, ComponentFactory$1 as ɵComponentFactory, Console as ɵConsole, DEFAULT_LOCALE_ID as ɵDEFAULT_LOCALE_ID, INJECTOR_SCOPE as ɵINJECTOR_SCOPE, 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, _sanitizeHtml as ɵ_sanitizeHtml, _sanitizeUrl as ɵ_sanitizeUrl, allowSanitizationBypassAndThrow as ɵallowSanitizationBypassAndThrow, bypassSanitizationTrustHtml as ɵbypassSanitizationTrustHtml, bypassSanitizationTrustResourceUrl as ɵbypassSanitizationTrustResourceUrl, bypassSanitizationTrustScript as ɵbypassSanitizationTrustScript, bypassSanitizationTrustStyle as ɵbypassSanitizationTrustStyle, bypassSanitizationTrustUrl as ɵbypassSanitizationTrustUrl, clearResolutionOfComponentResourcesQueue as ɵclearResolutionOfComponentResourcesQueue, coerceToBoolean as ɵcoerceToBoolean, compileComponent as ɵcompileComponent, compileDirective as ɵcompileDirective, compileNgModule as ɵcompileNgModule, compileNgModuleDefs as ɵcompileNgModuleDefs, compileNgModuleFactory as ɵcompileNgModuleFactory, compilePipe as ɵcompilePipe, createInjector as ɵcreateInjector, defaultIterableDiffers as ɵdefaultIterableDiffers, defaultKeyValueDiffers as ɵdefaultKeyValueDiffers, detectChanges as ɵdetectChanges, devModeEqual as ɵdevModeEqual, findLocaleData as ɵfindLocaleData, flushModuleScopingQueueAsMuchAsPossible as ɵflushModuleScopingQueueAsMuchAsPossible, getDebugNode as ɵgetDebugNode, getDebugNodeR2 as ɵgetDebugNodeR2, 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, isDefaultChangeDetectionStrategy as ɵisDefaultChangeDetectionStrategy, isListLikeIterable as ɵisListLikeIterable, isObservable as ɵisObservable, isPromise as ɵisPromise, isStandalone as ɵisStandalone, isSubscribable as ɵisSubscribable, ɵivyEnabled, makeDecorator as ɵmakeDecorator,
|
|
29818
|
+
export { ANALYZE_FOR_ENTRY_COMPONENTS, ANIMATION_MODULE_TYPE, APP_BOOTSTRAP_LISTENER, APP_ID, APP_INITIALIZER, ApplicationInitStatus, ApplicationModule, ApplicationRef, Attribute, COMPILER_OPTIONS, 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, 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, ReflectiveInjector, ReflectiveKey, Renderer2, RendererFactory2, RendererStyleFlags2, ResolvedReflectiveFactory, Sanitizer, SecurityContext, Self, SimpleChange, SkipSelf, TRANSLATIONS, TRANSLATIONS_FORMAT, TemplateRef, Testability, TestabilityRegistry, Type, VERSION, Version, ViewChild, ViewChildren, ViewContainerRef, ViewEncapsulation$1 as ViewEncapsulation, ViewRef, asNativeElements, assertPlatform, createComponent, createEnvironmentInjector, createNgModule, createNgModuleRef, createPlatform, createPlatformFactory, defineInjectable, destroyPlatform, enableProdMode, forwardRef, getDebugNode, getModuleFactory, getNgModuleById, getPlatform, importProvidersFrom, inject, isDevMode, platformCore, reflectComponentType, resolveForwardRef, setTestabilityGetter, ALLOW_MULTIPLE_PLATFORMS as ɵALLOW_MULTIPLE_PLATFORMS, APP_ID_RANDOM_PROVIDER as ɵAPP_ID_RANDOM_PROVIDER, ChangeDetectorStatus as ɵChangeDetectorStatus, ComponentFactory$1 as ɵComponentFactory, Console as ɵConsole, DEFAULT_LOCALE_ID as ɵDEFAULT_LOCALE_ID, INJECTOR_SCOPE as ɵINJECTOR_SCOPE, 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, _sanitizeHtml as ɵ_sanitizeHtml, _sanitizeUrl as ɵ_sanitizeUrl, allowSanitizationBypassAndThrow as ɵallowSanitizationBypassAndThrow, bypassSanitizationTrustHtml as ɵbypassSanitizationTrustHtml, bypassSanitizationTrustResourceUrl as ɵbypassSanitizationTrustResourceUrl, bypassSanitizationTrustScript as ɵbypassSanitizationTrustScript, bypassSanitizationTrustStyle as ɵbypassSanitizationTrustStyle, bypassSanitizationTrustUrl as ɵbypassSanitizationTrustUrl, clearResolutionOfComponentResourcesQueue as ɵclearResolutionOfComponentResourcesQueue, coerceToBoolean as ɵcoerceToBoolean, compileComponent as ɵcompileComponent, compileDirective as ɵcompileDirective, compileNgModule as ɵcompileNgModule, compileNgModuleDefs as ɵcompileNgModuleDefs, compileNgModuleFactory as ɵcompileNgModuleFactory, compilePipe as ɵcompilePipe, 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, getDebugNodeR2 as ɵgetDebugNodeR2, 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, isDefaultChangeDetectionStrategy as ɵisDefaultChangeDetectionStrategy, isInjectable as ɵisInjectable, isListLikeIterable as ɵisListLikeIterable, isObservable as ɵisObservable, isPromise as ɵisPromise, isStandalone as ɵisStandalone, isSubscribable as ɵisSubscribable, ɵivyEnabled, makeDecorator as ɵmakeDecorator, 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, 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, ɵɵCopyDefinitionFeature, FactoryTarget as ɵɵFactoryTarget, ɵɵInheritDefinitionFeature, ɵɵ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, ɵɵviewQuery };
|
|
29908
29819
|
//# sourceMappingURL=core.mjs.map
|