@angular/core 15.1.0-next.1 → 15.1.0-next.3
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_init.mjs +2 -1
- package/esm2020/src/application_ref.mjs +21 -14
- package/esm2020/src/core.mjs +2 -1
- package/esm2020/src/core_render3_private_export.mjs +1 -2
- package/esm2020/src/di/create_injector.mjs +1 -1
- package/esm2020/src/di/r3_injector.mjs +8 -8
- package/esm2020/src/errors.mjs +1 -1
- package/esm2020/src/linker/query_list.mjs +7 -7
- package/esm2020/src/render3/assert.mjs +1 -6
- package/esm2020/src/render3/component_ref.mjs +7 -7
- package/esm2020/src/render3/definition.mjs +9 -1
- package/esm2020/src/render3/instructions/shared.mjs +9 -8
- package/esm2020/src/render3/interfaces/context.mjs +5 -5
- package/esm2020/src/render3/jit/module.mjs +2 -3
- package/esm2020/src/render3/namespaces.mjs +1 -8
- package/esm2020/src/render3/node_manipulation.mjs +3 -7
- package/esm2020/src/render3/node_selector_matcher.mjs +1 -4
- package/esm2020/src/render3/query.mjs +1 -6
- package/esm2020/src/render3/state.mjs +1 -4
- package/esm2020/src/render3/util/view_utils.mjs +1 -15
- package/esm2020/src/render3/view_ref.mjs +6 -6
- package/esm2020/src/util/array_utils.mjs +3 -71
- 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/test_bed.mjs +1 -1
- package/fesm2015/core.mjs +76 -204
- package/fesm2015/core.mjs.map +1 -1
- package/fesm2015/testing.mjs +54 -190
- package/fesm2015/testing.mjs.map +1 -1
- package/fesm2020/core.mjs +76 -204
- package/fesm2020/core.mjs.map +1 -1
- package/fesm2020/testing.mjs +54 -190
- package/fesm2020/testing.mjs.map +1 -1
- package/index.d.ts +12 -4
- package/package.json +1 -1
- package/schematics/migrations/relative-link-resolution/util.d.ts +1 -1
- package/schematics/migrations/router-link-with-href/util.d.ts +1 -1
- package/schematics/migrations.json +3 -18
- package/schematics/utils/import_manager.js +23 -3
- package/schematics/utils/ng_decorators.d.ts +1 -1
- package/schematics/utils/typescript/compiler_host.d.ts +1 -1
- package/schematics/utils/typescript/imports.d.ts +1 -1
- package/schematics/utils/typescript/property_name.d.ts +1 -1
- package/testing/index.d.ts +4 -1
- package/schematics/migrations/entry-components/index.d.ts +0 -11
- package/schematics/migrations/entry-components/index.js +0 -71
- package/schematics/migrations/entry-components/util.d.ts +0 -16
- package/schematics/migrations/entry-components/util.js +0 -57
- package/schematics/migrations/path-match-type/index.d.ts +0 -11
- package/schematics/migrations/path-match-type/index.js +0 -95
- package/schematics/migrations/path-match-type/transform.d.ts +0 -19
- package/schematics/migrations/path-match-type/transform.js +0 -48
- package/schematics/migrations/path-match-type/update_recorder.d.ts +0 -18
- package/schematics/migrations/path-match-type/update_recorder.js +0 -20
- package/schematics/migrations/path-match-type/util.d.ts +0 -11
- package/schematics/migrations/path-match-type/util.js +0 -106
- package/schematics/migrations/typed-forms/index.d.ts +0 -10
- package/schematics/migrations/typed-forms/index.js +0 -68
- package/schematics/migrations/typed-forms/util.d.ts +0 -19
- package/schematics/migrations/typed-forms/util.js +0 -134
package/fesm2015/core.mjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Angular v15.0.
|
|
2
|
+
* @license Angular v15.1.0-next.3
|
|
3
3
|
* (c) 2010-2022 Google LLC. https://angular.io/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
@@ -1391,6 +1391,14 @@ function getDirectiveDef(type) {
|
|
|
1391
1391
|
function getPipeDef$1(type) {
|
|
1392
1392
|
return type[NG_PIPE_DEF] || null;
|
|
1393
1393
|
}
|
|
1394
|
+
/**
|
|
1395
|
+
* Checks whether a given Component, Directive or Pipe is marked as standalone.
|
|
1396
|
+
* This will return false if passed anything other than a Component, Directive, or Pipe class
|
|
1397
|
+
* See this guide for additional information: https://angular.io/guide/standalone-components
|
|
1398
|
+
*
|
|
1399
|
+
* @param type A reference to a Component, Directive or Pipe.
|
|
1400
|
+
* @publicApi
|
|
1401
|
+
*/
|
|
1394
1402
|
function isStandalone(type) {
|
|
1395
1403
|
const def = getComponentDef(type) || getDirectiveDef(type) || getPipeDef$1(type);
|
|
1396
1404
|
return def !== null ? def.standalone : false;
|
|
@@ -1439,7 +1447,7 @@ const MOVED_VIEWS = 9;
|
|
|
1439
1447
|
const CONTAINER_HEADER_OFFSET = 10;
|
|
1440
1448
|
// Note: This hack is necessary so we don't erroneously get a circular dependency
|
|
1441
1449
|
// failure based on types.
|
|
1442
|
-
const unusedValueExportToPlacateAjd$
|
|
1450
|
+
const unusedValueExportToPlacateAjd$4 = 1;
|
|
1443
1451
|
|
|
1444
1452
|
/**
|
|
1445
1453
|
* @license
|
|
@@ -1484,7 +1492,7 @@ const EMBEDDED_VIEW_INJECTOR = 21;
|
|
|
1484
1492
|
const HEADER_OFFSET = 22;
|
|
1485
1493
|
// Note: This hack is necessary so we don't erroneously get a circular dependency
|
|
1486
1494
|
// failure based on types.
|
|
1487
|
-
const unusedValueExportToPlacateAjd$
|
|
1495
|
+
const unusedValueExportToPlacateAjd$3 = 1;
|
|
1488
1496
|
|
|
1489
1497
|
/**
|
|
1490
1498
|
* @license
|
|
@@ -1569,11 +1577,6 @@ function assertHasParent(tNode) {
|
|
|
1569
1577
|
assertDefined(tNode, 'currentTNode should exist!');
|
|
1570
1578
|
assertDefined(tNode.parent, 'currentTNode should have a parent');
|
|
1571
1579
|
}
|
|
1572
|
-
function assertDataNext(lView, index, arr) {
|
|
1573
|
-
if (arr == null)
|
|
1574
|
-
arr = lView;
|
|
1575
|
-
assertEqual(arr.length, index, `index ${index} expected to be at the end of arr (length ${arr.length})`);
|
|
1576
|
-
}
|
|
1577
1580
|
function assertLContainer(value) {
|
|
1578
1581
|
assertDefined(value, 'LContainer must be defined');
|
|
1579
1582
|
assertEqual(isLContainer(value), true, 'Expecting LContainer');
|
|
@@ -1822,14 +1825,7 @@ const profiler = function (event, instance, hookOrListener) {
|
|
|
1822
1825
|
* found in the LICENSE file at https://angular.io/license
|
|
1823
1826
|
*/
|
|
1824
1827
|
const SVG_NAMESPACE = 'svg';
|
|
1825
|
-
const SVG_NAMESPACE_URI = 'http://www.w3.org/2000/svg';
|
|
1826
1828
|
const MATH_ML_NAMESPACE = 'math';
|
|
1827
|
-
const MATH_ML_NAMESPACE_URI = 'http://www.w3.org/1998/MathML/';
|
|
1828
|
-
function getNamespaceUri(namespace) {
|
|
1829
|
-
const name = namespace.toLowerCase();
|
|
1830
|
-
return name === SVG_NAMESPACE ? SVG_NAMESPACE_URI :
|
|
1831
|
-
(name === MATH_ML_NAMESPACE ? MATH_ML_NAMESPACE_URI : null);
|
|
1832
|
-
}
|
|
1833
1829
|
|
|
1834
1830
|
/**
|
|
1835
1831
|
* @license
|
|
@@ -1878,20 +1874,6 @@ function unwrapLView(value) {
|
|
|
1878
1874
|
}
|
|
1879
1875
|
return null;
|
|
1880
1876
|
}
|
|
1881
|
-
/**
|
|
1882
|
-
* Returns `LContainer` or `null` if not found.
|
|
1883
|
-
* @param value wrapped value of `RNode`, `LView`, `LContainer`
|
|
1884
|
-
*/
|
|
1885
|
-
function unwrapLContainer(value) {
|
|
1886
|
-
while (Array.isArray(value)) {
|
|
1887
|
-
// This check is same as `isLContainer()` but we don't call at as we don't want to call
|
|
1888
|
-
// `Array.isArray()` twice and give JITer more work for inlining.
|
|
1889
|
-
if (value[TYPE] === true)
|
|
1890
|
-
return value;
|
|
1891
|
-
value = value[HOST];
|
|
1892
|
-
}
|
|
1893
|
-
return null;
|
|
1894
|
-
}
|
|
1895
1877
|
/**
|
|
1896
1878
|
* Retrieves an element value from the provided `viewData`, by unwrapping
|
|
1897
1879
|
* from any containers, component views, or style contexts.
|
|
@@ -2151,9 +2133,6 @@ function isCurrentTNodeParent() {
|
|
|
2151
2133
|
function setCurrentTNodeAsNotParent() {
|
|
2152
2134
|
instructionState.lFrame.isParent = false;
|
|
2153
2135
|
}
|
|
2154
|
-
function setCurrentTNodeAsParent() {
|
|
2155
|
-
instructionState.lFrame.isParent = true;
|
|
2156
|
-
}
|
|
2157
2136
|
function getContextLView() {
|
|
2158
2137
|
const contextLView = instructionState.lFrame.contextLView;
|
|
2159
2138
|
ngDevMode && assertDefined(contextLView, 'contextLView must be defined.');
|
|
@@ -2876,7 +2855,7 @@ function isFactory(obj) {
|
|
|
2876
2855
|
}
|
|
2877
2856
|
// Note: This hack is necessary so we don't erroneously get a circular dependency
|
|
2878
2857
|
// failure based on types.
|
|
2879
|
-
const unusedValueExportToPlacateAjd$
|
|
2858
|
+
const unusedValueExportToPlacateAjd$2 = 1;
|
|
2880
2859
|
|
|
2881
2860
|
/**
|
|
2882
2861
|
* Converts `TNodeType` into human readable text.
|
|
@@ -2895,7 +2874,7 @@ function toTNodeTypeAsString(tNodeType) {
|
|
|
2895
2874
|
}
|
|
2896
2875
|
// Note: This hack is necessary so we don't erroneously get a circular dependency
|
|
2897
2876
|
// failure based on types.
|
|
2898
|
-
const unusedValueExportToPlacateAjd$
|
|
2877
|
+
const unusedValueExportToPlacateAjd$1 = 1;
|
|
2899
2878
|
/**
|
|
2900
2879
|
* Returns `true` if the `TNode` has a directive which has `@Input()` for `class` binding.
|
|
2901
2880
|
*
|
|
@@ -4378,17 +4357,6 @@ function isType(v) {
|
|
|
4378
4357
|
* Use of this source code is governed by an MIT-style license that can be
|
|
4379
4358
|
* found in the LICENSE file at https://angular.io/license
|
|
4380
4359
|
*/
|
|
4381
|
-
/**
|
|
4382
|
-
* Equivalent to ES6 spread, add each item to an array.
|
|
4383
|
-
*
|
|
4384
|
-
* @param items The items to add
|
|
4385
|
-
* @param arr The array to which you want to add the items
|
|
4386
|
-
*/
|
|
4387
|
-
function addAllToArray(items, arr) {
|
|
4388
|
-
for (let i = 0; i < items.length; i++) {
|
|
4389
|
-
arr.push(items[i]);
|
|
4390
|
-
}
|
|
4391
|
-
}
|
|
4392
4360
|
/**
|
|
4393
4361
|
* Determines if the contents of two arrays is identical
|
|
4394
4362
|
*
|
|
@@ -4416,25 +4384,8 @@ function arrayEquals(a, b, identityAccessor) {
|
|
|
4416
4384
|
/**
|
|
4417
4385
|
* Flattens an array.
|
|
4418
4386
|
*/
|
|
4419
|
-
function flatten(list
|
|
4420
|
-
|
|
4421
|
-
dst = list;
|
|
4422
|
-
for (let i = 0; i < list.length; i++) {
|
|
4423
|
-
let item = list[i];
|
|
4424
|
-
if (Array.isArray(item)) {
|
|
4425
|
-
// we need to inline it.
|
|
4426
|
-
if (dst === list) {
|
|
4427
|
-
// Our assumption that the list was already flat was wrong and
|
|
4428
|
-
// we need to clone flat since we need to write to it.
|
|
4429
|
-
dst = list.slice(0, i);
|
|
4430
|
-
}
|
|
4431
|
-
flatten(item, dst);
|
|
4432
|
-
}
|
|
4433
|
-
else if (dst !== list) {
|
|
4434
|
-
dst.push(item);
|
|
4435
|
-
}
|
|
4436
|
-
}
|
|
4437
|
-
return dst;
|
|
4387
|
+
function flatten(list) {
|
|
4388
|
+
return list.flat(Number.POSITIVE_INFINITY);
|
|
4438
4389
|
}
|
|
4439
4390
|
function deepForEach(input, fn) {
|
|
4440
4391
|
input.forEach(value => Array.isArray(value) ? deepForEach(value, fn) : fn(value));
|
|
@@ -4544,46 +4495,6 @@ function arrayInsert2(array, index, value1, value2) {
|
|
|
4544
4495
|
array[index + 1] = value2;
|
|
4545
4496
|
}
|
|
4546
4497
|
}
|
|
4547
|
-
/**
|
|
4548
|
-
* Insert a `value` into an `array` so that the array remains sorted.
|
|
4549
|
-
*
|
|
4550
|
-
* NOTE:
|
|
4551
|
-
* - Duplicates are not allowed, and are ignored.
|
|
4552
|
-
* - This uses binary search algorithm for fast inserts.
|
|
4553
|
-
*
|
|
4554
|
-
* @param array A sorted array to insert into.
|
|
4555
|
-
* @param value The value to insert.
|
|
4556
|
-
* @returns index of the inserted value.
|
|
4557
|
-
*/
|
|
4558
|
-
function arrayInsertSorted(array, value) {
|
|
4559
|
-
let index = arrayIndexOfSorted(array, value);
|
|
4560
|
-
if (index < 0) {
|
|
4561
|
-
// if we did not find it insert it.
|
|
4562
|
-
index = ~index;
|
|
4563
|
-
arrayInsert(array, index, value);
|
|
4564
|
-
}
|
|
4565
|
-
return index;
|
|
4566
|
-
}
|
|
4567
|
-
/**
|
|
4568
|
-
* Remove `value` from a sorted `array`.
|
|
4569
|
-
*
|
|
4570
|
-
* NOTE:
|
|
4571
|
-
* - This uses binary search algorithm for fast removals.
|
|
4572
|
-
*
|
|
4573
|
-
* @param array A sorted array to remove from.
|
|
4574
|
-
* @param value The value to remove.
|
|
4575
|
-
* @returns index of the removed value.
|
|
4576
|
-
* - positive index if value found and removed.
|
|
4577
|
-
* - negative index if value not found. (`~index` to get the value where it should have been
|
|
4578
|
-
* inserted)
|
|
4579
|
-
*/
|
|
4580
|
-
function arrayRemoveSorted(array, value) {
|
|
4581
|
-
const index = arrayIndexOfSorted(array, value);
|
|
4582
|
-
if (index >= 0) {
|
|
4583
|
-
arraySplice(array, index, 1);
|
|
4584
|
-
}
|
|
4585
|
-
return index;
|
|
4586
|
-
}
|
|
4587
4498
|
/**
|
|
4588
4499
|
* Get an index of an `value` in a sorted `array`.
|
|
4589
4500
|
*
|
|
@@ -5677,6 +5588,10 @@ function unregisterLView(lView) {
|
|
|
5677
5588
|
* of the context.
|
|
5678
5589
|
*/
|
|
5679
5590
|
class LContext {
|
|
5591
|
+
/** Component's parent view data. */
|
|
5592
|
+
get lView() {
|
|
5593
|
+
return getLViewById(this.lViewId);
|
|
5594
|
+
}
|
|
5680
5595
|
constructor(
|
|
5681
5596
|
/**
|
|
5682
5597
|
* ID of the component's parent view data.
|
|
@@ -5694,10 +5609,6 @@ class LContext {
|
|
|
5694
5609
|
this.nodeIndex = nodeIndex;
|
|
5695
5610
|
this.native = native;
|
|
5696
5611
|
}
|
|
5697
|
-
/** Component's parent view data. */
|
|
5698
|
-
get lView() {
|
|
5699
|
-
return getLViewById(this.lViewId);
|
|
5700
|
-
}
|
|
5701
5612
|
}
|
|
5702
5613
|
|
|
5703
5614
|
/**
|
|
@@ -6036,28 +5947,6 @@ function ensureIcuContainerVisitorLoaded(loader) {
|
|
|
6036
5947
|
}
|
|
6037
5948
|
}
|
|
6038
5949
|
|
|
6039
|
-
/**
|
|
6040
|
-
* @license
|
|
6041
|
-
* Copyright Google LLC All Rights Reserved.
|
|
6042
|
-
*
|
|
6043
|
-
* Use of this source code is governed by an MIT-style license that can be
|
|
6044
|
-
* found in the LICENSE file at https://angular.io/license
|
|
6045
|
-
*/
|
|
6046
|
-
// Note: This hack is necessary so we don't erroneously get a circular dependency
|
|
6047
|
-
// failure based on types.
|
|
6048
|
-
const unusedValueExportToPlacateAjd$4 = 1;
|
|
6049
|
-
|
|
6050
|
-
/**
|
|
6051
|
-
* @license
|
|
6052
|
-
* Copyright Google LLC All Rights Reserved.
|
|
6053
|
-
*
|
|
6054
|
-
* Use of this source code is governed by an MIT-style license that can be
|
|
6055
|
-
* found in the LICENSE file at https://angular.io/license
|
|
6056
|
-
*/
|
|
6057
|
-
// Note: This hack is necessary so we don't erroneously get a circular dependency
|
|
6058
|
-
// failure based on types.
|
|
6059
|
-
const unusedValueExportToPlacateAjd$3 = 1;
|
|
6060
|
-
|
|
6061
5950
|
/**
|
|
6062
5951
|
* @license
|
|
6063
5952
|
* Copyright Google LLC All Rights Reserved.
|
|
@@ -6129,7 +6018,6 @@ function getNearestLContainer(viewOrContainer) {
|
|
|
6129
6018
|
* Use of this source code is governed by an MIT-style license that can be
|
|
6130
6019
|
* found in the LICENSE file at https://angular.io/license
|
|
6131
6020
|
*/
|
|
6132
|
-
const unusedValueToPlacateAjd$2 = unusedValueExportToPlacateAjd$8 + unusedValueExportToPlacateAjd$5 + unusedValueExportToPlacateAjd$4 + unusedValueExportToPlacateAjd$3 + unusedValueExportToPlacateAjd$7;
|
|
6133
6021
|
/**
|
|
6134
6022
|
* NOTE: for performance reasons, the possible actions are inlined within the function instead of
|
|
6135
6023
|
* being passed as an argument.
|
|
@@ -8529,6 +8417,12 @@ function getNullInjector() {
|
|
|
8529
8417
|
class EnvironmentInjector {
|
|
8530
8418
|
}
|
|
8531
8419
|
class R3Injector extends EnvironmentInjector {
|
|
8420
|
+
/**
|
|
8421
|
+
* Flag indicating that this injector was previously destroyed.
|
|
8422
|
+
*/
|
|
8423
|
+
get destroyed() {
|
|
8424
|
+
return this._destroyed;
|
|
8425
|
+
}
|
|
8532
8426
|
constructor(providers, parent, source, scopes) {
|
|
8533
8427
|
super();
|
|
8534
8428
|
this.parent = parent;
|
|
@@ -8563,12 +8457,6 @@ class R3Injector extends EnvironmentInjector {
|
|
|
8563
8457
|
this.injectorDefTypes =
|
|
8564
8458
|
new Set(this.get(INJECTOR_DEF_TYPES.multi, EMPTY_ARRAY, InjectFlags.Self));
|
|
8565
8459
|
}
|
|
8566
|
-
/**
|
|
8567
|
-
* Flag indicating that this injector was previously destroyed.
|
|
8568
|
-
*/
|
|
8569
|
-
get destroyed() {
|
|
8570
|
-
return this._destroyed;
|
|
8571
|
-
}
|
|
8572
8460
|
/**
|
|
8573
8461
|
* Destroy the injector and release references to every instance or provider associated with it.
|
|
8574
8462
|
*
|
|
@@ -8681,7 +8569,7 @@ class R3Injector extends EnvironmentInjector {
|
|
|
8681
8569
|
try {
|
|
8682
8570
|
const initializers = this.get(ENVIRONMENT_INITIALIZER.multi, EMPTY_ARRAY, InjectFlags.Self);
|
|
8683
8571
|
if (ngDevMode && !Array.isArray(initializers)) {
|
|
8684
|
-
throw new RuntimeError(209 /* RuntimeErrorCode.INVALID_MULTI_PROVIDER */, 'Unexpected type of the `ENVIRONMENT_INITIALIZER` token value ' +
|
|
8572
|
+
throw new RuntimeError(-209 /* RuntimeErrorCode.INVALID_MULTI_PROVIDER */, 'Unexpected type of the `ENVIRONMENT_INITIALIZER` token value ' +
|
|
8685
8573
|
`(expected an array, but got ${typeof initializers}). ` +
|
|
8686
8574
|
'Please check that the `ENVIRONMENT_INITIALIZER` token is configured as a ' +
|
|
8687
8575
|
'`multi: true` provider.');
|
|
@@ -9111,7 +8999,7 @@ class Version {
|
|
|
9111
8999
|
/**
|
|
9112
9000
|
* @publicApi
|
|
9113
9001
|
*/
|
|
9114
|
-
const VERSION = new Version('15.1.0-next.
|
|
9002
|
+
const VERSION = new Version('15.1.0-next.3');
|
|
9115
9003
|
|
|
9116
9004
|
/**
|
|
9117
9005
|
* @license
|
|
@@ -9432,7 +9320,6 @@ function classIndexOf(className, classToSearch, startingIndex) {
|
|
|
9432
9320
|
* Use of this source code is governed by an MIT-style license that can be
|
|
9433
9321
|
* found in the LICENSE file at https://angular.io/license
|
|
9434
9322
|
*/
|
|
9435
|
-
const unusedValueToPlacateAjd$1 = unusedValueExportToPlacateAjd$5 + unusedValueExportToPlacateAjd$4;
|
|
9436
9323
|
const NG_TEMPLATE_SELECTOR = 'ng-template';
|
|
9437
9324
|
/**
|
|
9438
9325
|
* Search the `TAttributes` to see if it contains `cssClassToMatch` (case insensitive)
|
|
@@ -11892,6 +11779,12 @@ function lastSelectedElementIdx(hostBindingOpCodes) {
|
|
|
11892
11779
|
function instantiateAllDirectives(tView, lView, tNode, native) {
|
|
11893
11780
|
const start = tNode.directiveStart;
|
|
11894
11781
|
const end = tNode.directiveEnd;
|
|
11782
|
+
// The component view needs to be created before creating the node injector
|
|
11783
|
+
// since it is used to inject some special symbols like `ChangeDetectorRef`.
|
|
11784
|
+
if (isComponentHost(tNode)) {
|
|
11785
|
+
ngDevMode && assertTNodeType(tNode, 3 /* TNodeType.AnyRNode */);
|
|
11786
|
+
addComponentLogic(lView, tNode, tView.data[start + tNode.componentOffset]);
|
|
11787
|
+
}
|
|
11895
11788
|
if (!tView.firstCreatePass) {
|
|
11896
11789
|
getOrCreateNodeInjectorForNode(tNode, lView);
|
|
11897
11790
|
}
|
|
@@ -11899,19 +11792,14 @@ function instantiateAllDirectives(tView, lView, tNode, native) {
|
|
|
11899
11792
|
const initialInputs = tNode.initialInputs;
|
|
11900
11793
|
for (let i = start; i < end; i++) {
|
|
11901
11794
|
const def = tView.data[i];
|
|
11902
|
-
const isComponent = isComponentDef(def);
|
|
11903
|
-
if (isComponent) {
|
|
11904
|
-
ngDevMode && assertTNodeType(tNode, 3 /* TNodeType.AnyRNode */);
|
|
11905
|
-
addComponentLogic(lView, tNode, def);
|
|
11906
|
-
}
|
|
11907
11795
|
const directive = getNodeInjectable(lView, tView, i, tNode);
|
|
11908
11796
|
attachPatchData(directive, lView);
|
|
11909
11797
|
if (initialInputs !== null) {
|
|
11910
11798
|
setInputsFromAttrs(lView, i - start, directive, def, tNode, initialInputs);
|
|
11911
11799
|
}
|
|
11912
|
-
if (
|
|
11800
|
+
if (isComponentDef(def)) {
|
|
11913
11801
|
const componentView = getComponentLViewByIndex(tNode.index, lView);
|
|
11914
|
-
componentView[CONTEXT] =
|
|
11802
|
+
componentView[CONTEXT] = getNodeInjectable(lView, tView, i, tNode);
|
|
11915
11803
|
}
|
|
11916
11804
|
}
|
|
11917
11805
|
}
|
|
@@ -12676,6 +12564,11 @@ function collectNativeNodes(tView, lView, tNode, result, isProjection = false) {
|
|
|
12676
12564
|
* found in the LICENSE file at https://angular.io/license
|
|
12677
12565
|
*/
|
|
12678
12566
|
class ViewRef$1 {
|
|
12567
|
+
get rootNodes() {
|
|
12568
|
+
const lView = this._lView;
|
|
12569
|
+
const tView = lView[TVIEW];
|
|
12570
|
+
return collectNativeNodes(tView, lView, tView.firstChild, []);
|
|
12571
|
+
}
|
|
12679
12572
|
constructor(
|
|
12680
12573
|
/**
|
|
12681
12574
|
* This represents `LView` associated with the component when ViewRef is a ChangeDetectorRef.
|
|
@@ -12701,11 +12594,6 @@ class ViewRef$1 {
|
|
|
12701
12594
|
this._appRef = null;
|
|
12702
12595
|
this._attachedToViewContainer = false;
|
|
12703
12596
|
}
|
|
12704
|
-
get rootNodes() {
|
|
12705
|
-
const lView = this._lView;
|
|
12706
|
-
const tView = lView[TVIEW];
|
|
12707
|
-
return collectNativeNodes(tView, lView, tView.firstChild, []);
|
|
12708
|
-
}
|
|
12709
12597
|
get context() {
|
|
12710
12598
|
return this._lView[CONTEXT];
|
|
12711
12599
|
}
|
|
@@ -13027,6 +12915,12 @@ class ChainedInjector {
|
|
|
13027
12915
|
* ComponentFactory interface implementation.
|
|
13028
12916
|
*/
|
|
13029
12917
|
class ComponentFactory extends ComponentFactory$1 {
|
|
12918
|
+
get inputs() {
|
|
12919
|
+
return toRefArray(this.componentDef.inputs);
|
|
12920
|
+
}
|
|
12921
|
+
get outputs() {
|
|
12922
|
+
return toRefArray(this.componentDef.outputs);
|
|
12923
|
+
}
|
|
13030
12924
|
/**
|
|
13031
12925
|
* @param componentDef The component definition.
|
|
13032
12926
|
* @param ngModule The NgModuleRef to which the factory is bound.
|
|
@@ -13041,12 +12935,6 @@ class ComponentFactory extends ComponentFactory$1 {
|
|
|
13041
12935
|
componentDef.ngContentSelectors ? componentDef.ngContentSelectors : [];
|
|
13042
12936
|
this.isBoundToModule = !!ngModule;
|
|
13043
12937
|
}
|
|
13044
|
-
get inputs() {
|
|
13045
|
-
return toRefArray(this.componentDef.inputs);
|
|
13046
|
-
}
|
|
13047
|
-
get outputs() {
|
|
13048
|
-
return toRefArray(this.componentDef.outputs);
|
|
13049
|
-
}
|
|
13050
12938
|
create(injector, projectableNodes, rootSelectorOrNode, environmentInjector) {
|
|
13051
12939
|
environmentInjector = environmentInjector || this.ngModule;
|
|
13052
12940
|
let realEnvironmentInjector = environmentInjector instanceof EnvironmentInjector ?
|
|
@@ -18815,7 +18703,7 @@ var I18nCreateOpCode;
|
|
|
18815
18703
|
})(I18nCreateOpCode || (I18nCreateOpCode = {}));
|
|
18816
18704
|
// Note: This hack is necessary so we don't erroneously get a circular dependency
|
|
18817
18705
|
// failure based on types.
|
|
18818
|
-
const unusedValueExportToPlacateAjd
|
|
18706
|
+
const unusedValueExportToPlacateAjd = 1;
|
|
18819
18707
|
|
|
18820
18708
|
/**
|
|
18821
18709
|
* @license
|
|
@@ -22298,6 +22186,12 @@ function symbolIterator() {
|
|
|
22298
22186
|
* @publicApi
|
|
22299
22187
|
*/
|
|
22300
22188
|
class QueryList {
|
|
22189
|
+
/**
|
|
22190
|
+
* Returns `Observable` of `QueryList` notifying the subscriber of changes.
|
|
22191
|
+
*/
|
|
22192
|
+
get changes() {
|
|
22193
|
+
return this._changes || (this._changes = new EventEmitter());
|
|
22194
|
+
}
|
|
22301
22195
|
/**
|
|
22302
22196
|
* @param emitDistinctChangesOnly Whether `QueryList.changes` should fire only when actual change
|
|
22303
22197
|
* has occurred. Or if it should fire when query is recomputed. (recomputing could resolve in
|
|
@@ -22321,12 +22215,6 @@ class QueryList {
|
|
|
22321
22215
|
if (!proto[symbol])
|
|
22322
22216
|
proto[symbol] = symbolIterator;
|
|
22323
22217
|
}
|
|
22324
|
-
/**
|
|
22325
|
-
* Returns `Observable` of `QueryList` notifying the subscriber of changes.
|
|
22326
|
-
*/
|
|
22327
|
-
get changes() {
|
|
22328
|
-
return this._changes || (this._changes = new EventEmitter());
|
|
22329
|
-
}
|
|
22330
22218
|
/**
|
|
22331
22219
|
* Returns the QueryList entry at `index`.
|
|
22332
22220
|
*/
|
|
@@ -22813,29 +22701,6 @@ function createContainerRef(hostTNode, hostLView) {
|
|
|
22813
22701
|
* Use of this source code is governed by an MIT-style license that can be
|
|
22814
22702
|
* found in the LICENSE file at https://angular.io/license
|
|
22815
22703
|
*/
|
|
22816
|
-
// Note: This hack is necessary so we don't erroneously get a circular dependency
|
|
22817
|
-
// failure based on types.
|
|
22818
|
-
const unusedValueExportToPlacateAjd$1 = 1;
|
|
22819
|
-
|
|
22820
|
-
/**
|
|
22821
|
-
* @license
|
|
22822
|
-
* Copyright Google LLC All Rights Reserved.
|
|
22823
|
-
*
|
|
22824
|
-
* Use of this source code is governed by an MIT-style license that can be
|
|
22825
|
-
* found in the LICENSE file at https://angular.io/license
|
|
22826
|
-
*/
|
|
22827
|
-
// Note: This hack is necessary so we don't erroneously get a circular dependency
|
|
22828
|
-
// failure based on types.
|
|
22829
|
-
const unusedValueExportToPlacateAjd = 1;
|
|
22830
|
-
|
|
22831
|
-
/**
|
|
22832
|
-
* @license
|
|
22833
|
-
* Copyright Google LLC All Rights Reserved.
|
|
22834
|
-
*
|
|
22835
|
-
* Use of this source code is governed by an MIT-style license that can be
|
|
22836
|
-
* found in the LICENSE file at https://angular.io/license
|
|
22837
|
-
*/
|
|
22838
|
-
const unusedValueToPlacateAjd = unusedValueExportToPlacateAjd$1 + unusedValueExportToPlacateAjd$6 + unusedValueExportToPlacateAjd$5 + unusedValueExportToPlacateAjd;
|
|
22839
22704
|
class LQuery_ {
|
|
22840
22705
|
constructor(queryList) {
|
|
22841
22706
|
this.queryList = queryList;
|
|
@@ -23665,8 +23530,7 @@ function compileNgModuleDefs(moduleType, ngModule, allowDuplicateDeclarationsInR
|
|
|
23665
23530
|
Object.defineProperty(moduleType, NG_INJ_DEF, {
|
|
23666
23531
|
get: () => {
|
|
23667
23532
|
if (ngInjectorDef === null) {
|
|
23668
|
-
ngDevMode &&
|
|
23669
|
-
verifySemanticsOfNgModuleDef(moduleType, allowDuplicateDeclarationsInRoot);
|
|
23533
|
+
ngDevMode && verifySemanticsOfNgModuleDef(moduleType, allowDuplicateDeclarationsInRoot);
|
|
23670
23534
|
const meta = {
|
|
23671
23535
|
name: moduleType.name,
|
|
23672
23536
|
type: moduleType,
|
|
@@ -24802,6 +24666,7 @@ class ApplicationInitStatus {
|
|
|
24802
24666
|
this.reject = noop;
|
|
24803
24667
|
this.initialized = false;
|
|
24804
24668
|
this.done = false;
|
|
24669
|
+
// TODO: Throw RuntimeErrorCode.INVALID_MULTI_PROVIDER if appInits is not an array
|
|
24805
24670
|
this.donePromise = new Promise((res, rej) => {
|
|
24806
24671
|
this.resolve = res;
|
|
24807
24672
|
this.reject = rej;
|
|
@@ -26675,6 +26540,18 @@ function optionsReducer(dst, objs) {
|
|
|
26675
26540
|
* @publicApi
|
|
26676
26541
|
*/
|
|
26677
26542
|
class ApplicationRef {
|
|
26543
|
+
/**
|
|
26544
|
+
* Indicates whether this instance was destroyed.
|
|
26545
|
+
*/
|
|
26546
|
+
get destroyed() {
|
|
26547
|
+
return this._destroyed;
|
|
26548
|
+
}
|
|
26549
|
+
/**
|
|
26550
|
+
* The `EnvironmentInjector` used to create this application.
|
|
26551
|
+
*/
|
|
26552
|
+
get injector() {
|
|
26553
|
+
return this._injector;
|
|
26554
|
+
}
|
|
26678
26555
|
/** @internal */
|
|
26679
26556
|
constructor(_zone, _injector, _exceptionHandler) {
|
|
26680
26557
|
this._zone = _zone;
|
|
@@ -26746,18 +26623,6 @@ class ApplicationRef {
|
|
|
26746
26623
|
this.isStable =
|
|
26747
26624
|
merge$1(isCurrentlyStable, isStable.pipe(share()));
|
|
26748
26625
|
}
|
|
26749
|
-
/**
|
|
26750
|
-
* Indicates whether this instance was destroyed.
|
|
26751
|
-
*/
|
|
26752
|
-
get destroyed() {
|
|
26753
|
-
return this._destroyed;
|
|
26754
|
-
}
|
|
26755
|
-
/**
|
|
26756
|
-
* The `EnvironmentInjector` used to create this application.
|
|
26757
|
-
*/
|
|
26758
|
-
get injector() {
|
|
26759
|
-
return this._injector;
|
|
26760
|
-
}
|
|
26761
26626
|
/**
|
|
26762
26627
|
* Bootstrap a component onto the element identified by its selector or, optionally, to a
|
|
26763
26628
|
* specified element.
|
|
@@ -26893,7 +26758,14 @@ class ApplicationRef {
|
|
|
26893
26758
|
this.tick();
|
|
26894
26759
|
this.components.push(componentRef);
|
|
26895
26760
|
// Get the listeners lazily to prevent DI cycles.
|
|
26896
|
-
const listeners = this._injector.get(APP_BOOTSTRAP_LISTENER, [])
|
|
26761
|
+
const listeners = this._injector.get(APP_BOOTSTRAP_LISTENER, []);
|
|
26762
|
+
if (ngDevMode && !Array.isArray(listeners)) {
|
|
26763
|
+
throw new RuntimeError(-209 /* RuntimeErrorCode.INVALID_MULTI_PROVIDER */, 'Unexpected type of the `APP_BOOTSTRAP_LISTENER` token value ' +
|
|
26764
|
+
`(expected an array, but got ${typeof listeners}). ` +
|
|
26765
|
+
'Please check that the `APP_BOOTSTRAP_LISTENER` token is configured as a ' +
|
|
26766
|
+
'`multi: true` provider.');
|
|
26767
|
+
}
|
|
26768
|
+
listeners.push(...this._bootstrapListeners);
|
|
26897
26769
|
listeners.forEach((listener) => listener(componentRef));
|
|
26898
26770
|
}
|
|
26899
26771
|
/** @internal */
|
|
@@ -29266,5 +29138,5 @@ if (typeof ngDevMode !== 'undefined' && ngDevMode) {
|
|
|
29266
29138
|
* Generated bundle index. Do not edit.
|
|
29267
29139
|
*/
|
|
29268
29140
|
|
|
29269
|
-
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, makeEnvironmentProviders, 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, XSS_SECURITY_URL as ɵXSS_SECURITY_URL, _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, 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, 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, isEnvironmentProviders as ɵisEnvironmentProviders, isInjectable as ɵisInjectable, isListLikeIterable as ɵisListLikeIterable, isObservable as ɵisObservable, isPromise as ɵisPromise,
|
|
29141
|
+
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, isStandalone, makeEnvironmentProviders, 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, XSS_SECURITY_URL as ɵXSS_SECURITY_URL, _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, 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, 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, isEnvironmentProviders as ɵisEnvironmentProviders, isInjectable as ɵisInjectable, isListLikeIterable as ɵisListLikeIterable, isObservable as ɵisObservable, isPromise as ɵisPromise, 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, ɵɵHostDirectivesFeature, ɵɵ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, ɵɵvalidateIframeAttribute, ɵɵviewQuery };
|
|
29270
29142
|
//# sourceMappingURL=core.mjs.map
|