@angular/core 15.1.0-next.1 → 15.1.0-next.2
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 +13 -13
- 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 +7 -7
- 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/fesm2015/core.mjs +66 -202
- package/fesm2015/core.mjs.map +1 -1
- package/fesm2015/testing.mjs +53 -189
- package/fesm2015/testing.mjs.map +1 -1
- package/fesm2020/core.mjs +66 -202
- package/fesm2020/core.mjs.map +1 -1
- package/fesm2020/testing.mjs +53 -189
- package/fesm2020/testing.mjs.map +1 -1
- package/index.d.ts +11 -3
- 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/typed-forms/util.d.ts +1 -1
- 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 +1 -1
package/fesm2020/core.mjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Angular v15.0.2
|
|
2
|
+
* @license Angular v15.1.0-next.2
|
|
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;
|
|
@@ -1446,7 +1454,7 @@ const EMBEDDED_VIEW_INJECTOR = 21;
|
|
|
1446
1454
|
const HEADER_OFFSET = 22;
|
|
1447
1455
|
// Note: This hack is necessary so we don't erroneously get a circular dependency
|
|
1448
1456
|
// failure based on types.
|
|
1449
|
-
const unusedValueExportToPlacateAjd$
|
|
1457
|
+
const unusedValueExportToPlacateAjd$4 = 1;
|
|
1450
1458
|
|
|
1451
1459
|
/**
|
|
1452
1460
|
* @license
|
|
@@ -1491,7 +1499,7 @@ const MOVED_VIEWS = 9;
|
|
|
1491
1499
|
const CONTAINER_HEADER_OFFSET = 10;
|
|
1492
1500
|
// Note: This hack is necessary so we don't erroneously get a circular dependency
|
|
1493
1501
|
// failure based on types.
|
|
1494
|
-
const unusedValueExportToPlacateAjd$
|
|
1502
|
+
const unusedValueExportToPlacateAjd$3 = 1;
|
|
1495
1503
|
|
|
1496
1504
|
/**
|
|
1497
1505
|
* @license
|
|
@@ -1576,11 +1584,6 @@ function assertHasParent(tNode) {
|
|
|
1576
1584
|
assertDefined(tNode, 'currentTNode should exist!');
|
|
1577
1585
|
assertDefined(tNode.parent, 'currentTNode should have a parent');
|
|
1578
1586
|
}
|
|
1579
|
-
function assertDataNext(lView, index, arr) {
|
|
1580
|
-
if (arr == null)
|
|
1581
|
-
arr = lView;
|
|
1582
|
-
assertEqual(arr.length, index, `index ${index} expected to be at the end of arr (length ${arr.length})`);
|
|
1583
|
-
}
|
|
1584
1587
|
function assertLContainer(value) {
|
|
1585
1588
|
assertDefined(value, 'LContainer must be defined');
|
|
1586
1589
|
assertEqual(isLContainer(value), true, 'Expecting LContainer');
|
|
@@ -1829,14 +1832,7 @@ const profiler = function (event, instance, hookOrListener) {
|
|
|
1829
1832
|
* found in the LICENSE file at https://angular.io/license
|
|
1830
1833
|
*/
|
|
1831
1834
|
const SVG_NAMESPACE = 'svg';
|
|
1832
|
-
const SVG_NAMESPACE_URI = 'http://www.w3.org/2000/svg';
|
|
1833
1835
|
const MATH_ML_NAMESPACE = 'math';
|
|
1834
|
-
const MATH_ML_NAMESPACE_URI = 'http://www.w3.org/1998/MathML/';
|
|
1835
|
-
function getNamespaceUri(namespace) {
|
|
1836
|
-
const name = namespace.toLowerCase();
|
|
1837
|
-
return name === SVG_NAMESPACE ? SVG_NAMESPACE_URI :
|
|
1838
|
-
(name === MATH_ML_NAMESPACE ? MATH_ML_NAMESPACE_URI : null);
|
|
1839
|
-
}
|
|
1840
1836
|
|
|
1841
1837
|
/**
|
|
1842
1838
|
* @license
|
|
@@ -1885,20 +1881,6 @@ function unwrapLView(value) {
|
|
|
1885
1881
|
}
|
|
1886
1882
|
return null;
|
|
1887
1883
|
}
|
|
1888
|
-
/**
|
|
1889
|
-
* Returns `LContainer` or `null` if not found.
|
|
1890
|
-
* @param value wrapped value of `RNode`, `LView`, `LContainer`
|
|
1891
|
-
*/
|
|
1892
|
-
function unwrapLContainer(value) {
|
|
1893
|
-
while (Array.isArray(value)) {
|
|
1894
|
-
// This check is same as `isLContainer()` but we don't call at as we don't want to call
|
|
1895
|
-
// `Array.isArray()` twice and give JITer more work for inlining.
|
|
1896
|
-
if (value[TYPE] === true)
|
|
1897
|
-
return value;
|
|
1898
|
-
value = value[HOST];
|
|
1899
|
-
}
|
|
1900
|
-
return null;
|
|
1901
|
-
}
|
|
1902
1884
|
/**
|
|
1903
1885
|
* Retrieves an element value from the provided `viewData`, by unwrapping
|
|
1904
1886
|
* from any containers, component views, or style contexts.
|
|
@@ -2158,9 +2140,6 @@ function isCurrentTNodeParent() {
|
|
|
2158
2140
|
function setCurrentTNodeAsNotParent() {
|
|
2159
2141
|
instructionState.lFrame.isParent = false;
|
|
2160
2142
|
}
|
|
2161
|
-
function setCurrentTNodeAsParent() {
|
|
2162
|
-
instructionState.lFrame.isParent = true;
|
|
2163
|
-
}
|
|
2164
2143
|
function getContextLView() {
|
|
2165
2144
|
const contextLView = instructionState.lFrame.contextLView;
|
|
2166
2145
|
ngDevMode && assertDefined(contextLView, 'contextLView must be defined.');
|
|
@@ -2883,7 +2862,7 @@ function isFactory(obj) {
|
|
|
2883
2862
|
}
|
|
2884
2863
|
// Note: This hack is necessary so we don't erroneously get a circular dependency
|
|
2885
2864
|
// failure based on types.
|
|
2886
|
-
const unusedValueExportToPlacateAjd$
|
|
2865
|
+
const unusedValueExportToPlacateAjd$2 = 1;
|
|
2887
2866
|
|
|
2888
2867
|
/**
|
|
2889
2868
|
* Converts `TNodeType` into human readable text.
|
|
@@ -2902,7 +2881,7 @@ function toTNodeTypeAsString(tNodeType) {
|
|
|
2902
2881
|
}
|
|
2903
2882
|
// Note: This hack is necessary so we don't erroneously get a circular dependency
|
|
2904
2883
|
// failure based on types.
|
|
2905
|
-
const unusedValueExportToPlacateAjd$
|
|
2884
|
+
const unusedValueExportToPlacateAjd$1 = 1;
|
|
2906
2885
|
/**
|
|
2907
2886
|
* Returns `true` if the `TNode` has a directive which has `@Input()` for `class` binding.
|
|
2908
2887
|
*
|
|
@@ -4399,17 +4378,6 @@ function isType(v) {
|
|
|
4399
4378
|
* Use of this source code is governed by an MIT-style license that can be
|
|
4400
4379
|
* found in the LICENSE file at https://angular.io/license
|
|
4401
4380
|
*/
|
|
4402
|
-
/**
|
|
4403
|
-
* Equivalent to ES6 spread, add each item to an array.
|
|
4404
|
-
*
|
|
4405
|
-
* @param items The items to add
|
|
4406
|
-
* @param arr The array to which you want to add the items
|
|
4407
|
-
*/
|
|
4408
|
-
function addAllToArray(items, arr) {
|
|
4409
|
-
for (let i = 0; i < items.length; i++) {
|
|
4410
|
-
arr.push(items[i]);
|
|
4411
|
-
}
|
|
4412
|
-
}
|
|
4413
4381
|
/**
|
|
4414
4382
|
* Determines if the contents of two arrays is identical
|
|
4415
4383
|
*
|
|
@@ -4437,25 +4405,8 @@ function arrayEquals(a, b, identityAccessor) {
|
|
|
4437
4405
|
/**
|
|
4438
4406
|
* Flattens an array.
|
|
4439
4407
|
*/
|
|
4440
|
-
function flatten(list
|
|
4441
|
-
|
|
4442
|
-
dst = list;
|
|
4443
|
-
for (let i = 0; i < list.length; i++) {
|
|
4444
|
-
let item = list[i];
|
|
4445
|
-
if (Array.isArray(item)) {
|
|
4446
|
-
// we need to inline it.
|
|
4447
|
-
if (dst === list) {
|
|
4448
|
-
// Our assumption that the list was already flat was wrong and
|
|
4449
|
-
// we need to clone flat since we need to write to it.
|
|
4450
|
-
dst = list.slice(0, i);
|
|
4451
|
-
}
|
|
4452
|
-
flatten(item, dst);
|
|
4453
|
-
}
|
|
4454
|
-
else if (dst !== list) {
|
|
4455
|
-
dst.push(item);
|
|
4456
|
-
}
|
|
4457
|
-
}
|
|
4458
|
-
return dst;
|
|
4408
|
+
function flatten(list) {
|
|
4409
|
+
return list.flat(Number.POSITIVE_INFINITY);
|
|
4459
4410
|
}
|
|
4460
4411
|
function deepForEach(input, fn) {
|
|
4461
4412
|
input.forEach(value => Array.isArray(value) ? deepForEach(value, fn) : fn(value));
|
|
@@ -4565,46 +4516,6 @@ function arrayInsert2(array, index, value1, value2) {
|
|
|
4565
4516
|
array[index + 1] = value2;
|
|
4566
4517
|
}
|
|
4567
4518
|
}
|
|
4568
|
-
/**
|
|
4569
|
-
* Insert a `value` into an `array` so that the array remains sorted.
|
|
4570
|
-
*
|
|
4571
|
-
* NOTE:
|
|
4572
|
-
* - Duplicates are not allowed, and are ignored.
|
|
4573
|
-
* - This uses binary search algorithm for fast inserts.
|
|
4574
|
-
*
|
|
4575
|
-
* @param array A sorted array to insert into.
|
|
4576
|
-
* @param value The value to insert.
|
|
4577
|
-
* @returns index of the inserted value.
|
|
4578
|
-
*/
|
|
4579
|
-
function arrayInsertSorted(array, value) {
|
|
4580
|
-
let index = arrayIndexOfSorted(array, value);
|
|
4581
|
-
if (index < 0) {
|
|
4582
|
-
// if we did not find it insert it.
|
|
4583
|
-
index = ~index;
|
|
4584
|
-
arrayInsert(array, index, value);
|
|
4585
|
-
}
|
|
4586
|
-
return index;
|
|
4587
|
-
}
|
|
4588
|
-
/**
|
|
4589
|
-
* Remove `value` from a sorted `array`.
|
|
4590
|
-
*
|
|
4591
|
-
* NOTE:
|
|
4592
|
-
* - This uses binary search algorithm for fast removals.
|
|
4593
|
-
*
|
|
4594
|
-
* @param array A sorted array to remove from.
|
|
4595
|
-
* @param value The value to remove.
|
|
4596
|
-
* @returns index of the removed value.
|
|
4597
|
-
* - positive index if value found and removed.
|
|
4598
|
-
* - negative index if value not found. (`~index` to get the value where it should have been
|
|
4599
|
-
* inserted)
|
|
4600
|
-
*/
|
|
4601
|
-
function arrayRemoveSorted(array, value) {
|
|
4602
|
-
const index = arrayIndexOfSorted(array, value);
|
|
4603
|
-
if (index >= 0) {
|
|
4604
|
-
arraySplice(array, index, 1);
|
|
4605
|
-
}
|
|
4606
|
-
return index;
|
|
4607
|
-
}
|
|
4608
4519
|
/**
|
|
4609
4520
|
* Get an index of an `value` in a sorted `array`.
|
|
4610
4521
|
*
|
|
@@ -5697,6 +5608,10 @@ function unregisterLView(lView) {
|
|
|
5697
5608
|
* of the context.
|
|
5698
5609
|
*/
|
|
5699
5610
|
class LContext {
|
|
5611
|
+
/** Component's parent view data. */
|
|
5612
|
+
get lView() {
|
|
5613
|
+
return getLViewById(this.lViewId);
|
|
5614
|
+
}
|
|
5700
5615
|
constructor(
|
|
5701
5616
|
/**
|
|
5702
5617
|
* ID of the component's parent view data.
|
|
@@ -5714,10 +5629,6 @@ class LContext {
|
|
|
5714
5629
|
this.nodeIndex = nodeIndex;
|
|
5715
5630
|
this.native = native;
|
|
5716
5631
|
}
|
|
5717
|
-
/** Component's parent view data. */
|
|
5718
|
-
get lView() {
|
|
5719
|
-
return getLViewById(this.lViewId);
|
|
5720
|
-
}
|
|
5721
5632
|
}
|
|
5722
5633
|
|
|
5723
5634
|
/**
|
|
@@ -6056,28 +5967,6 @@ function ensureIcuContainerVisitorLoaded(loader) {
|
|
|
6056
5967
|
}
|
|
6057
5968
|
}
|
|
6058
5969
|
|
|
6059
|
-
/**
|
|
6060
|
-
* @license
|
|
6061
|
-
* Copyright Google LLC All Rights Reserved.
|
|
6062
|
-
*
|
|
6063
|
-
* Use of this source code is governed by an MIT-style license that can be
|
|
6064
|
-
* found in the LICENSE file at https://angular.io/license
|
|
6065
|
-
*/
|
|
6066
|
-
// Note: This hack is necessary so we don't erroneously get a circular dependency
|
|
6067
|
-
// failure based on types.
|
|
6068
|
-
const unusedValueExportToPlacateAjd$4 = 1;
|
|
6069
|
-
|
|
6070
|
-
/**
|
|
6071
|
-
* @license
|
|
6072
|
-
* Copyright Google LLC All Rights Reserved.
|
|
6073
|
-
*
|
|
6074
|
-
* Use of this source code is governed by an MIT-style license that can be
|
|
6075
|
-
* found in the LICENSE file at https://angular.io/license
|
|
6076
|
-
*/
|
|
6077
|
-
// Note: This hack is necessary so we don't erroneously get a circular dependency
|
|
6078
|
-
// failure based on types.
|
|
6079
|
-
const unusedValueExportToPlacateAjd$3 = 1;
|
|
6080
|
-
|
|
6081
5970
|
/**
|
|
6082
5971
|
* @license
|
|
6083
5972
|
* Copyright Google LLC All Rights Reserved.
|
|
@@ -6149,7 +6038,6 @@ function getNearestLContainer(viewOrContainer) {
|
|
|
6149
6038
|
* Use of this source code is governed by an MIT-style license that can be
|
|
6150
6039
|
* found in the LICENSE file at https://angular.io/license
|
|
6151
6040
|
*/
|
|
6152
|
-
const unusedValueToPlacateAjd$2 = unusedValueExportToPlacateAjd$7 + unusedValueExportToPlacateAjd$5 + unusedValueExportToPlacateAjd$4 + unusedValueExportToPlacateAjd$3 + unusedValueExportToPlacateAjd$8;
|
|
6153
6041
|
/**
|
|
6154
6042
|
* NOTE: for performance reasons, the possible actions are inlined within the function instead of
|
|
6155
6043
|
* being passed as an argument.
|
|
@@ -8543,6 +8431,12 @@ function getNullInjector() {
|
|
|
8543
8431
|
class EnvironmentInjector {
|
|
8544
8432
|
}
|
|
8545
8433
|
class R3Injector extends EnvironmentInjector {
|
|
8434
|
+
/**
|
|
8435
|
+
* Flag indicating that this injector was previously destroyed.
|
|
8436
|
+
*/
|
|
8437
|
+
get destroyed() {
|
|
8438
|
+
return this._destroyed;
|
|
8439
|
+
}
|
|
8546
8440
|
constructor(providers, parent, source, scopes) {
|
|
8547
8441
|
super();
|
|
8548
8442
|
this.parent = parent;
|
|
@@ -8577,12 +8471,6 @@ class R3Injector extends EnvironmentInjector {
|
|
|
8577
8471
|
this.injectorDefTypes =
|
|
8578
8472
|
new Set(this.get(INJECTOR_DEF_TYPES.multi, EMPTY_ARRAY, InjectFlags.Self));
|
|
8579
8473
|
}
|
|
8580
|
-
/**
|
|
8581
|
-
* Flag indicating that this injector was previously destroyed.
|
|
8582
|
-
*/
|
|
8583
|
-
get destroyed() {
|
|
8584
|
-
return this._destroyed;
|
|
8585
|
-
}
|
|
8586
8474
|
/**
|
|
8587
8475
|
* Destroy the injector and release references to every instance or provider associated with it.
|
|
8588
8476
|
*
|
|
@@ -9125,7 +9013,7 @@ class Version {
|
|
|
9125
9013
|
/**
|
|
9126
9014
|
* @publicApi
|
|
9127
9015
|
*/
|
|
9128
|
-
const VERSION = new Version('15.1.0-next.
|
|
9016
|
+
const VERSION = new Version('15.1.0-next.2');
|
|
9129
9017
|
|
|
9130
9018
|
/**
|
|
9131
9019
|
* @license
|
|
@@ -9446,7 +9334,6 @@ function classIndexOf(className, classToSearch, startingIndex) {
|
|
|
9446
9334
|
* Use of this source code is governed by an MIT-style license that can be
|
|
9447
9335
|
* found in the LICENSE file at https://angular.io/license
|
|
9448
9336
|
*/
|
|
9449
|
-
const unusedValueToPlacateAjd$1 = unusedValueExportToPlacateAjd$5 + unusedValueExportToPlacateAjd$4;
|
|
9450
9337
|
const NG_TEMPLATE_SELECTOR = 'ng-template';
|
|
9451
9338
|
/**
|
|
9452
9339
|
* Search the `TAttributes` to see if it contains `cssClassToMatch` (case insensitive)
|
|
@@ -11905,6 +11792,12 @@ function lastSelectedElementIdx(hostBindingOpCodes) {
|
|
|
11905
11792
|
function instantiateAllDirectives(tView, lView, tNode, native) {
|
|
11906
11793
|
const start = tNode.directiveStart;
|
|
11907
11794
|
const end = tNode.directiveEnd;
|
|
11795
|
+
// The component view needs to be created before creating the node injector
|
|
11796
|
+
// since it is used to inject some special symbols like `ChangeDetectorRef`.
|
|
11797
|
+
if (isComponentHost(tNode)) {
|
|
11798
|
+
ngDevMode && assertTNodeType(tNode, 3 /* TNodeType.AnyRNode */);
|
|
11799
|
+
addComponentLogic(lView, tNode, tView.data[start + tNode.componentOffset]);
|
|
11800
|
+
}
|
|
11908
11801
|
if (!tView.firstCreatePass) {
|
|
11909
11802
|
getOrCreateNodeInjectorForNode(tNode, lView);
|
|
11910
11803
|
}
|
|
@@ -11912,19 +11805,14 @@ function instantiateAllDirectives(tView, lView, tNode, native) {
|
|
|
11912
11805
|
const initialInputs = tNode.initialInputs;
|
|
11913
11806
|
for (let i = start; i < end; i++) {
|
|
11914
11807
|
const def = tView.data[i];
|
|
11915
|
-
const isComponent = isComponentDef(def);
|
|
11916
|
-
if (isComponent) {
|
|
11917
|
-
ngDevMode && assertTNodeType(tNode, 3 /* TNodeType.AnyRNode */);
|
|
11918
|
-
addComponentLogic(lView, tNode, def);
|
|
11919
|
-
}
|
|
11920
11808
|
const directive = getNodeInjectable(lView, tView, i, tNode);
|
|
11921
11809
|
attachPatchData(directive, lView);
|
|
11922
11810
|
if (initialInputs !== null) {
|
|
11923
11811
|
setInputsFromAttrs(lView, i - start, directive, def, tNode, initialInputs);
|
|
11924
11812
|
}
|
|
11925
|
-
if (
|
|
11813
|
+
if (isComponentDef(def)) {
|
|
11926
11814
|
const componentView = getComponentLViewByIndex(tNode.index, lView);
|
|
11927
|
-
componentView[CONTEXT] =
|
|
11815
|
+
componentView[CONTEXT] = getNodeInjectable(lView, tView, i, tNode);
|
|
11928
11816
|
}
|
|
11929
11817
|
}
|
|
11930
11818
|
}
|
|
@@ -12688,6 +12576,11 @@ function collectNativeNodes(tView, lView, tNode, result, isProjection = false) {
|
|
|
12688
12576
|
* found in the LICENSE file at https://angular.io/license
|
|
12689
12577
|
*/
|
|
12690
12578
|
class ViewRef$1 {
|
|
12579
|
+
get rootNodes() {
|
|
12580
|
+
const lView = this._lView;
|
|
12581
|
+
const tView = lView[TVIEW];
|
|
12582
|
+
return collectNativeNodes(tView, lView, tView.firstChild, []);
|
|
12583
|
+
}
|
|
12691
12584
|
constructor(
|
|
12692
12585
|
/**
|
|
12693
12586
|
* This represents `LView` associated with the component when ViewRef is a ChangeDetectorRef.
|
|
@@ -12713,11 +12606,6 @@ class ViewRef$1 {
|
|
|
12713
12606
|
this._appRef = null;
|
|
12714
12607
|
this._attachedToViewContainer = false;
|
|
12715
12608
|
}
|
|
12716
|
-
get rootNodes() {
|
|
12717
|
-
const lView = this._lView;
|
|
12718
|
-
const tView = lView[TVIEW];
|
|
12719
|
-
return collectNativeNodes(tView, lView, tView.firstChild, []);
|
|
12720
|
-
}
|
|
12721
12609
|
get context() {
|
|
12722
12610
|
return this._lView[CONTEXT];
|
|
12723
12611
|
}
|
|
@@ -13039,6 +12927,12 @@ class ChainedInjector {
|
|
|
13039
12927
|
* ComponentFactory interface implementation.
|
|
13040
12928
|
*/
|
|
13041
12929
|
class ComponentFactory extends ComponentFactory$1 {
|
|
12930
|
+
get inputs() {
|
|
12931
|
+
return toRefArray(this.componentDef.inputs);
|
|
12932
|
+
}
|
|
12933
|
+
get outputs() {
|
|
12934
|
+
return toRefArray(this.componentDef.outputs);
|
|
12935
|
+
}
|
|
13042
12936
|
/**
|
|
13043
12937
|
* @param componentDef The component definition.
|
|
13044
12938
|
* @param ngModule The NgModuleRef to which the factory is bound.
|
|
@@ -13053,12 +12947,6 @@ class ComponentFactory extends ComponentFactory$1 {
|
|
|
13053
12947
|
componentDef.ngContentSelectors ? componentDef.ngContentSelectors : [];
|
|
13054
12948
|
this.isBoundToModule = !!ngModule;
|
|
13055
12949
|
}
|
|
13056
|
-
get inputs() {
|
|
13057
|
-
return toRefArray(this.componentDef.inputs);
|
|
13058
|
-
}
|
|
13059
|
-
get outputs() {
|
|
13060
|
-
return toRefArray(this.componentDef.outputs);
|
|
13061
|
-
}
|
|
13062
12950
|
create(injector, projectableNodes, rootSelectorOrNode, environmentInjector) {
|
|
13063
12951
|
environmentInjector = environmentInjector || this.ngModule;
|
|
13064
12952
|
let realEnvironmentInjector = environmentInjector instanceof EnvironmentInjector ?
|
|
@@ -18827,7 +18715,7 @@ var I18nCreateOpCode;
|
|
|
18827
18715
|
})(I18nCreateOpCode || (I18nCreateOpCode = {}));
|
|
18828
18716
|
// Note: This hack is necessary so we don't erroneously get a circular dependency
|
|
18829
18717
|
// failure based on types.
|
|
18830
|
-
const unusedValueExportToPlacateAjd
|
|
18718
|
+
const unusedValueExportToPlacateAjd = 1;
|
|
18831
18719
|
|
|
18832
18720
|
/**
|
|
18833
18721
|
* @license
|
|
@@ -22309,6 +22197,12 @@ function symbolIterator() {
|
|
|
22309
22197
|
* @publicApi
|
|
22310
22198
|
*/
|
|
22311
22199
|
class QueryList {
|
|
22200
|
+
/**
|
|
22201
|
+
* Returns `Observable` of `QueryList` notifying the subscriber of changes.
|
|
22202
|
+
*/
|
|
22203
|
+
get changes() {
|
|
22204
|
+
return this._changes || (this._changes = new EventEmitter());
|
|
22205
|
+
}
|
|
22312
22206
|
/**
|
|
22313
22207
|
* @param emitDistinctChangesOnly Whether `QueryList.changes` should fire only when actual change
|
|
22314
22208
|
* has occurred. Or if it should fire when query is recomputed. (recomputing could resolve in
|
|
@@ -22332,12 +22226,6 @@ class QueryList {
|
|
|
22332
22226
|
if (!proto[symbol])
|
|
22333
22227
|
proto[symbol] = symbolIterator;
|
|
22334
22228
|
}
|
|
22335
|
-
/**
|
|
22336
|
-
* Returns `Observable` of `QueryList` notifying the subscriber of changes.
|
|
22337
|
-
*/
|
|
22338
|
-
get changes() {
|
|
22339
|
-
return this._changes || (this._changes = new EventEmitter());
|
|
22340
|
-
}
|
|
22341
22229
|
/**
|
|
22342
22230
|
* Returns the QueryList entry at `index`.
|
|
22343
22231
|
*/
|
|
@@ -22824,29 +22712,6 @@ function createContainerRef(hostTNode, hostLView) {
|
|
|
22824
22712
|
* Use of this source code is governed by an MIT-style license that can be
|
|
22825
22713
|
* found in the LICENSE file at https://angular.io/license
|
|
22826
22714
|
*/
|
|
22827
|
-
// Note: This hack is necessary so we don't erroneously get a circular dependency
|
|
22828
|
-
// failure based on types.
|
|
22829
|
-
const unusedValueExportToPlacateAjd$1 = 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
|
-
// Note: This hack is necessary so we don't erroneously get a circular dependency
|
|
22839
|
-
// failure based on types.
|
|
22840
|
-
const unusedValueExportToPlacateAjd = 1;
|
|
22841
|
-
|
|
22842
|
-
/**
|
|
22843
|
-
* @license
|
|
22844
|
-
* Copyright Google LLC All Rights Reserved.
|
|
22845
|
-
*
|
|
22846
|
-
* Use of this source code is governed by an MIT-style license that can be
|
|
22847
|
-
* found in the LICENSE file at https://angular.io/license
|
|
22848
|
-
*/
|
|
22849
|
-
const unusedValueToPlacateAjd = unusedValueExportToPlacateAjd$1 + unusedValueExportToPlacateAjd$6 + unusedValueExportToPlacateAjd$5 + unusedValueExportToPlacateAjd;
|
|
22850
22715
|
class LQuery_ {
|
|
22851
22716
|
constructor(queryList) {
|
|
22852
22717
|
this.queryList = queryList;
|
|
@@ -23676,8 +23541,7 @@ function compileNgModuleDefs(moduleType, ngModule, allowDuplicateDeclarationsInR
|
|
|
23676
23541
|
Object.defineProperty(moduleType, NG_INJ_DEF, {
|
|
23677
23542
|
get: () => {
|
|
23678
23543
|
if (ngInjectorDef === null) {
|
|
23679
|
-
ngDevMode &&
|
|
23680
|
-
verifySemanticsOfNgModuleDef(moduleType, allowDuplicateDeclarationsInRoot);
|
|
23544
|
+
ngDevMode && verifySemanticsOfNgModuleDef(moduleType, allowDuplicateDeclarationsInRoot);
|
|
23681
23545
|
const meta = {
|
|
23682
23546
|
name: moduleType.name,
|
|
23683
23547
|
type: moduleType,
|
|
@@ -26685,6 +26549,18 @@ function optionsReducer(dst, objs) {
|
|
|
26685
26549
|
* @publicApi
|
|
26686
26550
|
*/
|
|
26687
26551
|
class ApplicationRef {
|
|
26552
|
+
/**
|
|
26553
|
+
* Indicates whether this instance was destroyed.
|
|
26554
|
+
*/
|
|
26555
|
+
get destroyed() {
|
|
26556
|
+
return this._destroyed;
|
|
26557
|
+
}
|
|
26558
|
+
/**
|
|
26559
|
+
* The `EnvironmentInjector` used to create this application.
|
|
26560
|
+
*/
|
|
26561
|
+
get injector() {
|
|
26562
|
+
return this._injector;
|
|
26563
|
+
}
|
|
26688
26564
|
/** @internal */
|
|
26689
26565
|
constructor(_zone, _injector, _exceptionHandler) {
|
|
26690
26566
|
this._zone = _zone;
|
|
@@ -26756,18 +26632,6 @@ class ApplicationRef {
|
|
|
26756
26632
|
this.isStable =
|
|
26757
26633
|
merge$1(isCurrentlyStable, isStable.pipe(share()));
|
|
26758
26634
|
}
|
|
26759
|
-
/**
|
|
26760
|
-
* Indicates whether this instance was destroyed.
|
|
26761
|
-
*/
|
|
26762
|
-
get destroyed() {
|
|
26763
|
-
return this._destroyed;
|
|
26764
|
-
}
|
|
26765
|
-
/**
|
|
26766
|
-
* The `EnvironmentInjector` used to create this application.
|
|
26767
|
-
*/
|
|
26768
|
-
get injector() {
|
|
26769
|
-
return this._injector;
|
|
26770
|
-
}
|
|
26771
26635
|
/**
|
|
26772
26636
|
* Bootstrap a component onto the element identified by its selector or, optionally, to a
|
|
26773
26637
|
* specified element.
|
|
@@ -29278,5 +29142,5 @@ if (typeof ngDevMode !== 'undefined' && ngDevMode) {
|
|
|
29278
29142
|
* Generated bundle index. Do not edit.
|
|
29279
29143
|
*/
|
|
29280
29144
|
|
|
29281
|
-
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,
|
|
29145
|
+
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 };
|
|
29282
29146
|
//# sourceMappingURL=core.mjs.map
|