@angular/core 8.0.0-rc.4 → 8.0.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/bundles/core-testing.umd.js +1 -24
- package/bundles/core-testing.umd.js.map +1 -1
- package/bundles/core-testing.umd.min.js +13 -13
- package/bundles/core-testing.umd.min.js.map +1 -1
- package/bundles/core.umd.js +537 -531
- package/bundles/core.umd.js.map +1 -1
- package/bundles/core.umd.min.js +127 -135
- package/bundles/core.umd.min.js.map +1 -1
- package/core.d.ts +188 -184
- package/core.metadata.json +1 -1
- package/esm2015/index.js +2 -2
- package/esm2015/public_api.js +2 -2
- package/esm2015/src/change_detection/differs/iterable_differs.js +3 -3
- package/esm2015/src/change_detection/differs/keyvalue_differs.js +3 -3
- package/esm2015/src/core.js +3 -3
- package/esm2015/src/core_private_export.js +2 -2
- package/esm2015/src/core_render3_private_export.js +3 -3
- package/esm2015/src/di/index.js +3 -3
- package/esm2015/src/di/injectable.js +3 -3
- package/esm2015/src/di/injection_token.js +3 -3
- package/esm2015/src/di/injector.js +5 -5
- package/esm2015/src/di/injector_compatibility.js +5 -11
- package/esm2015/src/di/interface/defs.js +5 -11
- package/esm2015/src/di/jit/environment.js +7 -7
- package/esm2015/src/di/r3_injector.js +3 -3
- package/esm2015/src/di/util.js +3 -3
- package/esm2015/src/di.js +2 -2
- package/esm2015/src/metadata/di.js +1 -1
- package/esm2015/src/metadata/ng_module.js +4 -4
- package/esm2015/src/profile/profile.js +5 -1
- package/esm2015/src/profile/wtf_impl.js +2 -1
- package/esm2015/src/r3_symbols.js +4 -4
- package/esm2015/src/render3/component_ref.js +4 -6
- package/esm2015/src/render3/definition.js +12 -12
- package/esm2015/src/render3/di.js +4 -4
- package/esm2015/src/render3/di_setup.js +4 -4
- package/esm2015/src/render3/features/inherit_definition_feature.js +4 -4
- package/esm2015/src/render3/features/ng_onchanges_feature.js +2 -2
- package/esm2015/src/render3/features/providers_feature.js +2 -2
- package/esm2015/src/render3/i18n.js +17 -17
- package/esm2015/src/render3/index.js +15 -15
- package/esm2015/src/render3/instructions/all.js +18 -18
- package/esm2015/src/render3/instructions/alloc_host_vars.js +2 -2
- package/esm2015/src/render3/instructions/container.js +5 -5
- package/esm2015/src/render3/instructions/di.js +5 -5
- package/esm2015/src/render3/instructions/element.js +8 -8
- package/esm2015/src/render3/instructions/element_container.js +3 -3
- package/esm2015/src/render3/instructions/embedded_view.js +3 -3
- package/esm2015/src/render3/instructions/get_current_view.js +2 -2
- package/esm2015/src/render3/instructions/listener.js +3 -3
- package/esm2015/src/render3/instructions/namespace.js +2 -2
- package/esm2015/src/render3/instructions/next_context.js +2 -2
- package/esm2015/src/render3/instructions/projection.js +53 -14
- package/esm2015/src/render3/instructions/property.js +7 -7
- package/esm2015/src/render3/instructions/property_interpolation.js +50 -50
- package/esm2015/src/render3/instructions/select.js +3 -3
- package/esm2015/src/render3/instructions/shared.js +3 -3
- package/esm2015/src/render3/instructions/storage.js +3 -3
- package/esm2015/src/render3/instructions/styling.js +11 -11
- package/esm2015/src/render3/instructions/text.js +3 -3
- package/esm2015/src/render3/interfaces/definition.js +7 -7
- package/esm2015/src/render3/interfaces/projection.js +1 -1
- package/esm2015/src/render3/jit/environment.js +126 -126
- package/esm2015/src/render3/jit/module.js +10 -7
- package/esm2015/src/render3/node_selector_matcher.js +2 -27
- package/esm2015/src/render3/pipe.js +20 -19
- package/esm2015/src/render3/pure_function.js +11 -11
- package/esm2015/src/render3/query.js +12 -12
- package/esm2015/src/render3/state.js +11 -11
- package/esm2015/src/render3/styling/class_and_style_bindings.js +2 -2
- package/esm2015/src/render3/util/misc_utils.js +4 -4
- package/esm2015/src/render3/view_engine_compatibility_prebound.js +2 -2
- package/esm2015/src/sanitization/sanitization.js +11 -11
- package/esm2015/src/util/array_utils.js +16 -17
- package/esm2015/src/version.js +1 -1
- package/esm2015/src/view/ng_module.js +1 -1
- package/esm2015/src/view/services.js +1 -1
- package/esm2015/testing/src/r3_test_bed.js +1 -27
- package/esm2015/testing/src/r3_test_bed_compiler.js +1 -1
- package/esm2015/testing/src/test_bed.js +1 -18
- package/esm2015/testing/src/test_bed_common.js +5 -23
- package/esm5/src/change_detection/differs/iterable_differs.js +3 -3
- package/esm5/src/change_detection/differs/keyvalue_differs.js +3 -3
- package/esm5/src/core_private_export.js +2 -2
- package/esm5/src/core_render3_private_export.js +3 -3
- package/esm5/src/di/index.js +3 -3
- package/esm5/src/di/injectable.js +3 -3
- package/esm5/src/di/injection_token.js +3 -3
- package/esm5/src/di/injector.js +5 -5
- package/esm5/src/di/injector_compatibility.js +5 -10
- package/esm5/src/di/interface/defs.js +5 -11
- package/esm5/src/di/jit/environment.js +7 -7
- package/esm5/src/di/r3_injector.js +3 -3
- package/esm5/src/di/util.js +3 -3
- package/esm5/src/metadata/di.js +1 -1
- package/esm5/src/metadata/ng_module.js +3 -3
- package/esm5/src/profile/profile.js +5 -1
- package/esm5/src/profile/wtf_impl.js +1 -1
- package/esm5/src/r3_symbols.js +4 -4
- package/esm5/src/render3/component_ref.js +4 -6
- package/esm5/src/render3/definition.js +12 -12
- package/esm5/src/render3/di.js +4 -4
- package/esm5/src/render3/di_setup.js +4 -4
- package/esm5/src/render3/features/inherit_definition_feature.js +4 -4
- package/esm5/src/render3/features/ng_onchanges_feature.js +2 -2
- package/esm5/src/render3/features/providers_feature.js +2 -2
- package/esm5/src/render3/i18n.js +17 -17
- package/esm5/src/render3/index.js +15 -15
- package/esm5/src/render3/instructions/alloc_host_vars.js +2 -2
- package/esm5/src/render3/instructions/container.js +5 -5
- package/esm5/src/render3/instructions/di.js +5 -5
- package/esm5/src/render3/instructions/element.js +8 -8
- package/esm5/src/render3/instructions/element_container.js +3 -3
- package/esm5/src/render3/instructions/embedded_view.js +3 -3
- package/esm5/src/render3/instructions/get_current_view.js +2 -2
- package/esm5/src/render3/instructions/listener.js +3 -3
- package/esm5/src/render3/instructions/namespace.js +2 -2
- package/esm5/src/render3/instructions/next_context.js +2 -2
- package/esm5/src/render3/instructions/projection.js +50 -15
- package/esm5/src/render3/instructions/property.js +7 -7
- package/esm5/src/render3/instructions/property_interpolation.js +50 -50
- package/esm5/src/render3/instructions/select.js +3 -3
- package/esm5/src/render3/instructions/shared.js +3 -3
- package/esm5/src/render3/instructions/storage.js +3 -3
- package/esm5/src/render3/instructions/styling.js +11 -11
- package/esm5/src/render3/instructions/text.js +3 -3
- package/esm5/src/render3/interfaces/definition.js +1 -1
- package/esm5/src/render3/interfaces/projection.js +1 -1
- package/esm5/src/render3/jit/environment.js +126 -126
- package/esm5/src/render3/jit/module.js +10 -7
- package/esm5/src/render3/node_selector_matcher.js +2 -23
- package/esm5/src/render3/pipe.js +20 -19
- package/esm5/src/render3/pure_function.js +11 -11
- package/esm5/src/render3/query.js +12 -12
- package/esm5/src/render3/state.js +11 -11
- package/esm5/src/render3/styling/class_and_style_bindings.js +2 -2
- package/esm5/src/render3/util/misc_utils.js +4 -4
- package/esm5/src/render3/view_engine_compatibility_prebound.js +2 -2
- package/esm5/src/sanitization/sanitization.js +11 -11
- package/esm5/src/util/array_utils.js +15 -16
- package/esm5/src/version.js +1 -1
- package/esm5/src/view/ng_module.js +1 -1
- package/esm5/src/view/services.js +1 -1
- package/esm5/testing/src/r3_test_bed.js +1 -17
- package/esm5/testing/src/r3_test_bed_compiler.js +1 -1
- package/esm5/testing/src/test_bed.js +1 -8
- package/esm5/testing/src/test_bed_common.js +1 -1
- package/fesm2015/core.js +419 -412
- package/fesm2015/core.js.map +1 -1
- package/fesm2015/testing.js +1 -44
- package/fesm2015/testing.js.map +1 -1
- package/fesm5/core.js +415 -407
- package/fesm5/core.js.map +1 -1
- package/fesm5/testing.js +1 -24
- package/fesm5/testing.js.map +1 -1
- package/package.json +1 -1
- package/schematics/migrations/injectable-pipe/index.js +5 -2
- package/schematics/migrations/move-document/index.js +5 -2
- package/schematics/migrations/static-queries/index.js +44 -23
- package/schematics/migrations/static-queries/strategies/template_strategy/template_strategy.js +7 -9
- package/schematics/migrations/template-var-assignment/index.js +6 -3
- package/schematics/utils/project_tsconfig_paths.js +5 -3
- package/src/r3_symbols.d.ts +10 -10
- package/testing/testing.d.ts +9 -85
- package/testing/testing.metadata.json +1 -1
- package/testing.d.ts +1 -1
- package/schematics/migrations/static-queries/strategy_prompt.d.ts +0 -19
- package/schematics/migrations/static-queries/strategy_prompt.js +0 -70
package/bundles/core.umd.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Angular v8.0.
|
|
2
|
+
* @license Angular v8.0.2
|
|
3
3
|
* (c) 2010-2019 Google LLC. https://angular.io/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
@@ -360,23 +360,17 @@
|
|
|
360
360
|
*
|
|
361
361
|
* @codeGenApi
|
|
362
362
|
*/
|
|
363
|
-
function
|
|
363
|
+
function ɵɵdefineInjectable(opts) {
|
|
364
364
|
return {
|
|
365
365
|
providedIn: opts.providedIn || null, factory: opts.factory, value: undefined,
|
|
366
366
|
};
|
|
367
367
|
}
|
|
368
368
|
/**
|
|
369
369
|
* @deprecated in v8, delete after v10. This API should be used only be generated code, and that
|
|
370
|
-
* code should now use
|
|
370
|
+
* code should now use ɵɵdefineInjectable instead.
|
|
371
371
|
* @publicApi
|
|
372
372
|
*/
|
|
373
|
-
var defineInjectable =
|
|
374
|
-
/**
|
|
375
|
-
* @deprecated delete before v8. Use `defineInjectable`, which is also deprecated, but will be
|
|
376
|
-
* around until v10.
|
|
377
|
-
* @publicApi
|
|
378
|
-
*/
|
|
379
|
-
var ɵɵdefineInjectable = ΔdefineInjectable;
|
|
373
|
+
var defineInjectable = ɵɵdefineInjectable;
|
|
380
374
|
/**
|
|
381
375
|
* Construct an `InjectorDef` which configures an injector.
|
|
382
376
|
*
|
|
@@ -397,7 +391,7 @@
|
|
|
397
391
|
*
|
|
398
392
|
* @publicApi
|
|
399
393
|
*/
|
|
400
|
-
function
|
|
394
|
+
function ɵɵdefineInjector(options) {
|
|
401
395
|
return {
|
|
402
396
|
factory: options.factory, providers: options.providers || [], imports: options.imports || [],
|
|
403
397
|
};
|
|
@@ -601,7 +595,7 @@
|
|
|
601
595
|
return _currentInjector.get(token, flags & exports.InjectFlags.Optional ? null : undefined, flags);
|
|
602
596
|
}
|
|
603
597
|
}
|
|
604
|
-
function
|
|
598
|
+
function ɵɵinject(token, flags) {
|
|
605
599
|
if (flags === void 0) { flags = exports.InjectFlags.Default; }
|
|
606
600
|
return (_injectImplementation || injectInjectorOnly)(token, flags);
|
|
607
601
|
}
|
|
@@ -629,12 +623,7 @@
|
|
|
629
623
|
*
|
|
630
624
|
* @publicApi
|
|
631
625
|
*/
|
|
632
|
-
var inject =
|
|
633
|
-
/**
|
|
634
|
-
* @deprecated delete by v8, use `inject`.
|
|
635
|
-
* @codeGenApi
|
|
636
|
-
*/
|
|
637
|
-
var ɵɵinject = Δinject;
|
|
626
|
+
var inject = ɵɵinject;
|
|
638
627
|
/**
|
|
639
628
|
* Injects `root` tokens in limp mode.
|
|
640
629
|
*
|
|
@@ -682,10 +671,10 @@
|
|
|
682
671
|
type = meta;
|
|
683
672
|
}
|
|
684
673
|
}
|
|
685
|
-
args.push(
|
|
674
|
+
args.push(ɵɵinject(type, flags));
|
|
686
675
|
}
|
|
687
676
|
else {
|
|
688
|
-
args.push(
|
|
677
|
+
args.push(ɵɵinject(arg));
|
|
689
678
|
}
|
|
690
679
|
}
|
|
691
680
|
return args;
|
|
@@ -704,10 +693,10 @@
|
|
|
704
693
|
* This should be kept up to date with the public exports of @angular/core.
|
|
705
694
|
*/
|
|
706
695
|
var angularCoreDiEnv = {
|
|
707
|
-
'
|
|
708
|
-
'
|
|
709
|
-
'
|
|
710
|
-
'
|
|
696
|
+
'ɵɵdefineInjectable': ɵɵdefineInjectable,
|
|
697
|
+
'ɵɵdefineInjector': ɵɵdefineInjector,
|
|
698
|
+
'ɵɵinject': ɵɵinject,
|
|
699
|
+
'ɵɵgetFactoryOf': getFactoryOf,
|
|
711
700
|
};
|
|
712
701
|
function getFactoryOf(type) {
|
|
713
702
|
var typeAny = type;
|
|
@@ -1160,7 +1149,7 @@
|
|
|
1160
1149
|
}
|
|
1161
1150
|
else if (provider.useExisting) {
|
|
1162
1151
|
var existingProvider_1 = provider;
|
|
1163
|
-
return function () { return
|
|
1152
|
+
return function () { return ɵɵinject(existingProvider_1.useExisting); };
|
|
1164
1153
|
}
|
|
1165
1154
|
else if (provider.useFactory) {
|
|
1166
1155
|
var factoryProvider_1 = provider;
|
|
@@ -1208,7 +1197,7 @@
|
|
|
1208
1197
|
*/
|
|
1209
1198
|
function render2CompileInjectable(injectableType, options) {
|
|
1210
1199
|
if (options && options.providedIn !== undefined && !getInjectableDef(injectableType)) {
|
|
1211
|
-
injectableType.ngInjectableDef =
|
|
1200
|
+
injectableType.ngInjectableDef = ɵɵdefineInjectable({
|
|
1212
1201
|
providedIn: options.providedIn,
|
|
1213
1202
|
factory: convertInjectableProviderToFactory(injectableType, options),
|
|
1214
1203
|
});
|
|
@@ -1278,7 +1267,7 @@
|
|
|
1278
1267
|
this.__NG_ELEMENT_ID__ = options;
|
|
1279
1268
|
}
|
|
1280
1269
|
else if (options !== undefined) {
|
|
1281
|
-
this.ngInjectableDef =
|
|
1270
|
+
this.ngInjectableDef = ɵɵdefineInjectable({
|
|
1282
1271
|
providedIn: options.providedIn || 'root',
|
|
1283
1272
|
factory: options.factory,
|
|
1284
1273
|
});
|
|
@@ -1364,9 +1353,9 @@
|
|
|
1364
1353
|
Injector.THROW_IF_NOT_FOUND = _THROW_IF_NOT_FOUND;
|
|
1365
1354
|
Injector.NULL = new NullInjector();
|
|
1366
1355
|
/** @nocollapse */
|
|
1367
|
-
Injector.ngInjectableDef =
|
|
1356
|
+
Injector.ngInjectableDef = ɵɵdefineInjectable({
|
|
1368
1357
|
providedIn: 'any',
|
|
1369
|
-
factory: function () { return
|
|
1358
|
+
factory: function () { return ɵɵinject(INJECTOR); },
|
|
1370
1359
|
});
|
|
1371
1360
|
/**
|
|
1372
1361
|
* @internal
|
|
@@ -2987,7 +2976,7 @@
|
|
|
2987
2976
|
* ```
|
|
2988
2977
|
* @codeGenApi
|
|
2989
2978
|
*/
|
|
2990
|
-
function
|
|
2979
|
+
function ɵɵdefineComponent(componentDefinition) {
|
|
2991
2980
|
var type = componentDefinition.type;
|
|
2992
2981
|
var typePrototype = type.prototype;
|
|
2993
2982
|
var declaredInputs = {};
|
|
@@ -3050,7 +3039,7 @@
|
|
|
3050
3039
|
// be retrieved through the node injector, so this isn't a problem.
|
|
3051
3040
|
if (!type.hasOwnProperty(NG_INJECTABLE_DEF)) {
|
|
3052
3041
|
type[NG_INJECTABLE_DEF] =
|
|
3053
|
-
|
|
3042
|
+
ɵɵdefineInjectable({ factory: componentDefinition.factory });
|
|
3054
3043
|
}
|
|
3055
3044
|
});
|
|
3056
3045
|
return def;
|
|
@@ -3058,7 +3047,7 @@
|
|
|
3058
3047
|
/**
|
|
3059
3048
|
* @codeGenApi
|
|
3060
3049
|
*/
|
|
3061
|
-
function
|
|
3050
|
+
function ɵɵsetComponentScope(type, directives, pipes) {
|
|
3062
3051
|
var def = type.ngComponentDef;
|
|
3063
3052
|
def.directiveDefs = function () { return directives.map(extractDirectiveDef); };
|
|
3064
3053
|
def.pipeDefs = function () { return pipes.map(extractPipeDef); };
|
|
@@ -3080,7 +3069,7 @@
|
|
|
3080
3069
|
/**
|
|
3081
3070
|
* @codeGenApi
|
|
3082
3071
|
*/
|
|
3083
|
-
function
|
|
3072
|
+
function ɵɵdefineNgModule(def) {
|
|
3084
3073
|
var res = {
|
|
3085
3074
|
type: def.type,
|
|
3086
3075
|
bootstrap: def.bootstrap || EMPTY_ARRAY$1,
|
|
@@ -3102,7 +3091,7 @@
|
|
|
3102
3091
|
*
|
|
3103
3092
|
* @codeGenApi
|
|
3104
3093
|
*/
|
|
3105
|
-
function
|
|
3094
|
+
function ɵɵsetNgModuleScope(type, scope) {
|
|
3106
3095
|
return noSideEffects(function () {
|
|
3107
3096
|
var ngModuleDef = getNgModuleDef(type, true);
|
|
3108
3097
|
ngModuleDef.declarations = scope.declarations || EMPTY_ARRAY$1;
|
|
@@ -3191,7 +3180,7 @@
|
|
|
3191
3180
|
* # Example
|
|
3192
3181
|
* ```ts
|
|
3193
3182
|
* class ShouldBeInherited {
|
|
3194
|
-
* static ngBaseDef =
|
|
3183
|
+
* static ngBaseDef = ɵɵdefineBase({
|
|
3195
3184
|
* ...
|
|
3196
3185
|
* })
|
|
3197
3186
|
* }
|
|
@@ -3201,7 +3190,7 @@
|
|
|
3201
3190
|
*
|
|
3202
3191
|
* @codeGenApi
|
|
3203
3192
|
*/
|
|
3204
|
-
function
|
|
3193
|
+
function ɵɵdefineBase(baseDefinition) {
|
|
3205
3194
|
var declaredInputs = {};
|
|
3206
3195
|
return {
|
|
3207
3196
|
inputs: invertObject(baseDefinition.inputs, declaredInputs),
|
|
@@ -3219,7 +3208,7 @@
|
|
|
3219
3208
|
* class MyDirective {
|
|
3220
3209
|
* // Generated by Angular Template Compiler
|
|
3221
3210
|
* // [Symbol] syntax will not be supported by TypeScript until v2.7
|
|
3222
|
-
* static ngDirectiveDef =
|
|
3211
|
+
* static ngDirectiveDef = ɵɵdefineDirective({
|
|
3223
3212
|
* ...
|
|
3224
3213
|
* });
|
|
3225
3214
|
* }
|
|
@@ -3227,7 +3216,7 @@
|
|
|
3227
3216
|
*
|
|
3228
3217
|
* @codeGenApi
|
|
3229
3218
|
*/
|
|
3230
|
-
var
|
|
3219
|
+
var ɵɵdefineDirective = ɵɵdefineComponent;
|
|
3231
3220
|
/**
|
|
3232
3221
|
* Create a pipe definition object.
|
|
3233
3222
|
*
|
|
@@ -3244,7 +3233,7 @@
|
|
|
3244
3233
|
*
|
|
3245
3234
|
* @codeGenApi
|
|
3246
3235
|
*/
|
|
3247
|
-
function
|
|
3236
|
+
function ɵɵdefinePipe(pipeDef) {
|
|
3248
3237
|
return {
|
|
3249
3238
|
name: pipeDef.name,
|
|
3250
3239
|
factory: pipeDef.factory,
|
|
@@ -3329,21 +3318,21 @@
|
|
|
3329
3318
|
*
|
|
3330
3319
|
* @codeGenApi
|
|
3331
3320
|
*/
|
|
3332
|
-
function
|
|
3321
|
+
function ɵɵresolveWindow(element) {
|
|
3333
3322
|
return { name: 'window', target: element.ownerDocument.defaultView };
|
|
3334
3323
|
}
|
|
3335
3324
|
/**
|
|
3336
3325
|
*
|
|
3337
3326
|
* @codeGenApi
|
|
3338
3327
|
*/
|
|
3339
|
-
function
|
|
3328
|
+
function ɵɵresolveDocument(element) {
|
|
3340
3329
|
return { name: 'document', target: element.ownerDocument };
|
|
3341
3330
|
}
|
|
3342
3331
|
/**
|
|
3343
3332
|
*
|
|
3344
3333
|
* @codeGenApi
|
|
3345
3334
|
*/
|
|
3346
|
-
function
|
|
3335
|
+
function ɵɵresolveBody(element) {
|
|
3347
3336
|
return { name: 'body', target: element.ownerDocument.body };
|
|
3348
3337
|
}
|
|
3349
3338
|
/**
|
|
@@ -4163,17 +4152,17 @@
|
|
|
4163
4152
|
* Should match component / directive.
|
|
4164
4153
|
* </my-comp>
|
|
4165
4154
|
* <div ngNonBindable>
|
|
4166
|
-
* <!--
|
|
4155
|
+
* <!-- ɵɵdisableBindings() -->
|
|
4167
4156
|
* <my-comp my-directive>
|
|
4168
4157
|
* Should not match component / directive because we are in ngNonBindable.
|
|
4169
4158
|
* </my-comp>
|
|
4170
|
-
* <!--
|
|
4159
|
+
* <!-- ɵɵenableBindings() -->
|
|
4171
4160
|
* </div>
|
|
4172
4161
|
* ```
|
|
4173
4162
|
*
|
|
4174
4163
|
* @codeGenApi
|
|
4175
4164
|
*/
|
|
4176
|
-
function
|
|
4165
|
+
function ɵɵenableBindings() {
|
|
4177
4166
|
bindingsEnabled = true;
|
|
4178
4167
|
}
|
|
4179
4168
|
/**
|
|
@@ -4185,17 +4174,17 @@
|
|
|
4185
4174
|
* Should match component / directive.
|
|
4186
4175
|
* </my-comp>
|
|
4187
4176
|
* <div ngNonBindable>
|
|
4188
|
-
* <!--
|
|
4177
|
+
* <!-- ɵɵdisableBindings() -->
|
|
4189
4178
|
* <my-comp my-directive>
|
|
4190
4179
|
* Should not match component / directive because we are in ngNonBindable.
|
|
4191
4180
|
* </my-comp>
|
|
4192
|
-
* <!--
|
|
4181
|
+
* <!-- ɵɵenableBindings() -->
|
|
4193
4182
|
* </div>
|
|
4194
4183
|
* ```
|
|
4195
4184
|
*
|
|
4196
4185
|
* @codeGenApi
|
|
4197
4186
|
*/
|
|
4198
|
-
function
|
|
4187
|
+
function ɵɵdisableBindings() {
|
|
4199
4188
|
bindingsEnabled = false;
|
|
4200
4189
|
}
|
|
4201
4190
|
function getLView() {
|
|
@@ -4337,7 +4326,7 @@
|
|
|
4337
4326
|
*
|
|
4338
4327
|
* @codeGenApi
|
|
4339
4328
|
*/
|
|
4340
|
-
function
|
|
4329
|
+
function ɵɵrestoreView(viewToRestore) {
|
|
4341
4330
|
contextLView = viewToRestore;
|
|
4342
4331
|
}
|
|
4343
4332
|
/** Used to set the parent property when nodes are created and track query results. */
|
|
@@ -4527,7 +4516,7 @@
|
|
|
4527
4516
|
*
|
|
4528
4517
|
* @codeGenApi
|
|
4529
4518
|
*/
|
|
4530
|
-
function
|
|
4519
|
+
function ɵɵnamespaceSVG() {
|
|
4531
4520
|
_currentNamespace = 'http://www.w3.org/2000/svg';
|
|
4532
4521
|
}
|
|
4533
4522
|
/**
|
|
@@ -4535,7 +4524,7 @@
|
|
|
4535
4524
|
*
|
|
4536
4525
|
* @codeGenApi
|
|
4537
4526
|
*/
|
|
4538
|
-
function
|
|
4527
|
+
function ɵɵnamespaceMathML() {
|
|
4539
4528
|
_currentNamespace = 'http://www.w3.org/1998/MathML/';
|
|
4540
4529
|
}
|
|
4541
4530
|
/**
|
|
@@ -4544,7 +4533,7 @@
|
|
|
4544
4533
|
*
|
|
4545
4534
|
* @codeGenApi
|
|
4546
4535
|
*/
|
|
4547
|
-
function
|
|
4536
|
+
function ɵɵnamespaceHTML() {
|
|
4548
4537
|
_currentNamespace = null;
|
|
4549
4538
|
}
|
|
4550
4539
|
function getNamespace() {
|
|
@@ -5867,7 +5856,7 @@
|
|
|
5867
5856
|
/**
|
|
5868
5857
|
* @codeGenApi
|
|
5869
5858
|
*/
|
|
5870
|
-
function
|
|
5859
|
+
function ɵɵgetFactoryOf(type) {
|
|
5871
5860
|
var typeAny = type;
|
|
5872
5861
|
var def = getComponentDef(typeAny) || getDirectiveDef(typeAny) ||
|
|
5873
5862
|
getPipeDef(typeAny) || getInjectableDef(typeAny) || getInjectorDef(typeAny);
|
|
@@ -5879,9 +5868,9 @@
|
|
|
5879
5868
|
/**
|
|
5880
5869
|
* @codeGenApi
|
|
5881
5870
|
*/
|
|
5882
|
-
function
|
|
5871
|
+
function ɵɵgetInheritedFactory(type) {
|
|
5883
5872
|
var proto = Object.getPrototypeOf(type.prototype).constructor;
|
|
5884
|
-
var factory =
|
|
5873
|
+
var factory = ɵɵgetFactoryOf(proto);
|
|
5885
5874
|
if (factory !== null) {
|
|
5886
5875
|
return factory;
|
|
5887
5876
|
}
|
|
@@ -6762,7 +6751,7 @@
|
|
|
6762
6751
|
*
|
|
6763
6752
|
* @publicApi
|
|
6764
6753
|
*/
|
|
6765
|
-
function
|
|
6754
|
+
function ɵɵsanitizeHtml(unsafeHtml) {
|
|
6766
6755
|
var sanitizer = getSanitizer();
|
|
6767
6756
|
if (sanitizer) {
|
|
6768
6757
|
return sanitizer.sanitize(exports.SecurityContext.HTML, unsafeHtml) || '';
|
|
@@ -6787,7 +6776,7 @@
|
|
|
6787
6776
|
*
|
|
6788
6777
|
* @publicApi
|
|
6789
6778
|
*/
|
|
6790
|
-
function
|
|
6779
|
+
function ɵɵsanitizeStyle(unsafeStyle) {
|
|
6791
6780
|
var sanitizer = getSanitizer();
|
|
6792
6781
|
if (sanitizer) {
|
|
6793
6782
|
return sanitizer.sanitize(exports.SecurityContext.STYLE, unsafeStyle) || '';
|
|
@@ -6813,7 +6802,7 @@
|
|
|
6813
6802
|
*
|
|
6814
6803
|
* @publicApi
|
|
6815
6804
|
*/
|
|
6816
|
-
function
|
|
6805
|
+
function ɵɵsanitizeUrl(unsafeUrl) {
|
|
6817
6806
|
var sanitizer = getSanitizer();
|
|
6818
6807
|
if (sanitizer) {
|
|
6819
6808
|
return sanitizer.sanitize(exports.SecurityContext.URL, unsafeUrl) || '';
|
|
@@ -6834,7 +6823,7 @@
|
|
|
6834
6823
|
*
|
|
6835
6824
|
* @publicApi
|
|
6836
6825
|
*/
|
|
6837
|
-
function
|
|
6826
|
+
function ɵɵsanitizeResourceUrl(unsafeResourceUrl) {
|
|
6838
6827
|
var sanitizer = getSanitizer();
|
|
6839
6828
|
if (sanitizer) {
|
|
6840
6829
|
return sanitizer.sanitize(exports.SecurityContext.RESOURCE_URL, unsafeResourceUrl) || '';
|
|
@@ -6856,7 +6845,7 @@
|
|
|
6856
6845
|
*
|
|
6857
6846
|
* @publicApi
|
|
6858
6847
|
*/
|
|
6859
|
-
function
|
|
6848
|
+
function ɵɵsanitizeScript(unsafeScript) {
|
|
6860
6849
|
var sanitizer = getSanitizer();
|
|
6861
6850
|
if (sanitizer) {
|
|
6862
6851
|
return sanitizer.sanitize(exports.SecurityContext.SCRIPT, unsafeScript) || '';
|
|
@@ -6877,9 +6866,9 @@
|
|
|
6877
6866
|
if ((prop === 'src' && (tag === 'embed' || tag === 'frame' || tag === 'iframe' ||
|
|
6878
6867
|
tag === 'media' || tag === 'script')) ||
|
|
6879
6868
|
(prop === 'href' && (tag === 'base' || tag === 'link'))) {
|
|
6880
|
-
return
|
|
6869
|
+
return ɵɵsanitizeResourceUrl;
|
|
6881
6870
|
}
|
|
6882
|
-
return
|
|
6871
|
+
return ɵɵsanitizeUrl;
|
|
6883
6872
|
}
|
|
6884
6873
|
/**
|
|
6885
6874
|
* Sanitizes URL, selecting sanitizer function based on tag and property names.
|
|
@@ -6896,7 +6885,7 @@
|
|
|
6896
6885
|
*
|
|
6897
6886
|
* @publicApi
|
|
6898
6887
|
*/
|
|
6899
|
-
function
|
|
6888
|
+
function ɵɵsanitizeUrlOrResourceUrl(unsafeUrl, tag, prop) {
|
|
6900
6889
|
return getUrlSanitizer(tag, prop)(unsafeUrl);
|
|
6901
6890
|
}
|
|
6902
6891
|
/**
|
|
@@ -6905,12 +6894,12 @@
|
|
|
6905
6894
|
*
|
|
6906
6895
|
* @publicApi
|
|
6907
6896
|
*/
|
|
6908
|
-
var
|
|
6897
|
+
var ɵɵdefaultStyleSanitizer = function (prop, value) {
|
|
6909
6898
|
if (value === undefined) {
|
|
6910
6899
|
return prop === 'background-image' || prop === 'background' || prop === 'border-image' ||
|
|
6911
6900
|
prop === 'filter' || prop === 'list-style' || prop === 'list-style-image';
|
|
6912
6901
|
}
|
|
6913
|
-
return
|
|
6902
|
+
return ɵɵsanitizeStyle(value);
|
|
6914
6903
|
};
|
|
6915
6904
|
function validateAgainstEventProperties(name) {
|
|
6916
6905
|
if (name.toLowerCase().startsWith('on')) {
|
|
@@ -8954,7 +8943,7 @@
|
|
|
8954
8943
|
return styleString;
|
|
8955
8944
|
}
|
|
8956
8945
|
/**
|
|
8957
|
-
* Returns the current cached
|
|
8946
|
+
* Returns the current cached multi-value for a given directiveIndex within the provided context.
|
|
8958
8947
|
*/
|
|
8959
8948
|
function readCachedMapValue(context, entryIsClassBased, directiveIndex) {
|
|
8960
8949
|
var values = context[entryIsClassBased ? 6 /* CachedMultiClasses */ : 7 /* CachedMultiStyles */];
|
|
@@ -9333,27 +9322,6 @@
|
|
|
9333
9322
|
}
|
|
9334
9323
|
return null;
|
|
9335
9324
|
}
|
|
9336
|
-
/**
|
|
9337
|
-
* Checks a given node against matching projection selectors and returns
|
|
9338
|
-
* selector index (or 0 if none matched).
|
|
9339
|
-
*
|
|
9340
|
-
* This function takes into account the parsed ngProjectAs selector from the node's attributes.
|
|
9341
|
-
* If present, it will check whether the ngProjectAs selector matches any of the projection
|
|
9342
|
-
* selectors.
|
|
9343
|
-
*/
|
|
9344
|
-
function matchingProjectionSelectorIndex(tNode, selectors) {
|
|
9345
|
-
var ngProjectAsAttrVal = getProjectAsAttrValue(tNode);
|
|
9346
|
-
for (var i = 0; i < selectors.length; i++) {
|
|
9347
|
-
// If we ran into an `ngProjectAs` attribute, we should match its parsed selector
|
|
9348
|
-
// to the list of selectors, otherwise we fall back to matching against the node.
|
|
9349
|
-
if (ngProjectAsAttrVal === null ?
|
|
9350
|
-
isNodeMatchingSelectorList(tNode, selectors[i], /* isProjectionMode */ true) :
|
|
9351
|
-
isSelectorInSelectorList(ngProjectAsAttrVal, selectors[i])) {
|
|
9352
|
-
return i + 1; // first matching selector "captures" a given node
|
|
9353
|
-
}
|
|
9354
|
-
}
|
|
9355
|
-
return 0;
|
|
9356
|
-
}
|
|
9357
9325
|
function getNameOnlyMarkerIndex(nodeAttrs) {
|
|
9358
9326
|
for (var i = 0; i < nodeAttrs.length; i++) {
|
|
9359
9327
|
var nodeAttr = nodeAttrs[i];
|
|
@@ -9713,7 +9681,7 @@
|
|
|
9713
9681
|
}
|
|
9714
9682
|
}
|
|
9715
9683
|
function executeTemplate(templateFn, rf, context) {
|
|
9716
|
-
|
|
9684
|
+
ɵɵnamespaceHTML();
|
|
9717
9685
|
var prevSelectedIndex = getSelectedIndex();
|
|
9718
9686
|
try {
|
|
9719
9687
|
setActiveHostElement(null);
|
|
@@ -10929,7 +10897,7 @@
|
|
|
10929
10897
|
*
|
|
10930
10898
|
* @codeGenApi
|
|
10931
10899
|
*/
|
|
10932
|
-
function
|
|
10900
|
+
function ɵɵallocHostVars(count) {
|
|
10933
10901
|
var lView = getLView();
|
|
10934
10902
|
var tView = lView[TVIEW];
|
|
10935
10903
|
if (!tView.firstTemplatePass)
|
|
@@ -11800,7 +11768,7 @@
|
|
|
11800
11768
|
*
|
|
11801
11769
|
* @codeGenApi
|
|
11802
11770
|
*/
|
|
11803
|
-
function
|
|
11771
|
+
function ɵɵcontainer(index) {
|
|
11804
11772
|
var tNode = containerInternal(index, null, null);
|
|
11805
11773
|
var lView = getLView();
|
|
11806
11774
|
if (lView[TVIEW].firstTemplatePass) {
|
|
@@ -11828,7 +11796,7 @@
|
|
|
11828
11796
|
*
|
|
11829
11797
|
* @codeGenApi
|
|
11830
11798
|
*/
|
|
11831
|
-
function
|
|
11799
|
+
function ɵɵtemplate(index, templateFn, consts, vars, tagName, attrs, localRefs, localRefExtractor) {
|
|
11832
11800
|
var lView = getLView();
|
|
11833
11801
|
var tView = lView[TVIEW];
|
|
11834
11802
|
// TODO: consider a separate node type for templates
|
|
@@ -11849,7 +11817,7 @@
|
|
|
11849
11817
|
*
|
|
11850
11818
|
* @codeGenApi
|
|
11851
11819
|
*/
|
|
11852
|
-
function
|
|
11820
|
+
function ɵɵcontainerRefreshStart(index) {
|
|
11853
11821
|
var lView = getLView();
|
|
11854
11822
|
var tView = lView[TVIEW];
|
|
11855
11823
|
var previousOrParentTNode = loadInternal(tView.data, index);
|
|
@@ -11868,7 +11836,7 @@
|
|
|
11868
11836
|
*
|
|
11869
11837
|
* @codeGenApi
|
|
11870
11838
|
*/
|
|
11871
|
-
function
|
|
11839
|
+
function ɵɵcontainerRefreshEnd() {
|
|
11872
11840
|
var previousOrParentTNode = getPreviousOrParentTNode();
|
|
11873
11841
|
if (getIsParent()) {
|
|
11874
11842
|
setIsParent(false);
|
|
@@ -11960,7 +11928,7 @@
|
|
|
11960
11928
|
*
|
|
11961
11929
|
* @codeGenApi
|
|
11962
11930
|
*/
|
|
11963
|
-
function
|
|
11931
|
+
function ɵɵreference(index) {
|
|
11964
11932
|
var contextLView = getContextLView();
|
|
11965
11933
|
return loadInternal(contextLView, index);
|
|
11966
11934
|
}
|
|
@@ -11969,7 +11937,7 @@
|
|
|
11969
11937
|
*
|
|
11970
11938
|
* @codeGenApi
|
|
11971
11939
|
*/
|
|
11972
|
-
function
|
|
11940
|
+
function ɵɵload(index) {
|
|
11973
11941
|
return loadInternal(getLView(), index);
|
|
11974
11942
|
}
|
|
11975
11943
|
|
|
@@ -11980,14 +11948,14 @@
|
|
|
11980
11948
|
* Use of this source code is governed by an MIT-style license that can be
|
|
11981
11949
|
* found in the LICENSE file at https://angular.io/license
|
|
11982
11950
|
*/
|
|
11983
|
-
function
|
|
11951
|
+
function ɵɵdirectiveInject(token, flags) {
|
|
11984
11952
|
if (flags === void 0) { flags = exports.InjectFlags.Default; }
|
|
11985
11953
|
token = resolveForwardRef(token);
|
|
11986
11954
|
var lView = getLView();
|
|
11987
11955
|
// Fall back to inject() if view hasn't been created. This situation can happen in tests
|
|
11988
11956
|
// if inject utilities are used before bootstrapping.
|
|
11989
11957
|
if (lView == null)
|
|
11990
|
-
return
|
|
11958
|
+
return ɵɵinject(token, flags);
|
|
11991
11959
|
return getOrCreateInjectable(getPreviousOrParentTNode(), lView, token, flags);
|
|
11992
11960
|
}
|
|
11993
11961
|
/**
|
|
@@ -11995,7 +11963,7 @@
|
|
|
11995
11963
|
*
|
|
11996
11964
|
* @codeGenApi
|
|
11997
11965
|
*/
|
|
11998
|
-
function
|
|
11966
|
+
function ɵɵinjectAttribute(attrNameToInject) {
|
|
11999
11967
|
return injectAttributeImpl(getPreviousOrParentTNode(), attrNameToInject);
|
|
12000
11968
|
}
|
|
12001
11969
|
|
|
@@ -12038,7 +12006,7 @@
|
|
|
12038
12006
|
*
|
|
12039
12007
|
* @codeGenApi
|
|
12040
12008
|
*/
|
|
12041
|
-
function
|
|
12009
|
+
function ɵɵelementStyling(classBindingNames, styleBindingNames, styleSanitizer) {
|
|
12042
12010
|
var tNode = getPreviousOrParentTNode();
|
|
12043
12011
|
if (!tNode.stylingTemplate) {
|
|
12044
12012
|
tNode.stylingTemplate = createEmptyStylingContext();
|
|
@@ -12074,7 +12042,7 @@
|
|
|
12074
12042
|
*
|
|
12075
12043
|
* @codeGenApi
|
|
12076
12044
|
*/
|
|
12077
|
-
function
|
|
12045
|
+
function ɵɵelementHostStyling(classBindingNames, styleBindingNames, styleSanitizer) {
|
|
12078
12046
|
var tNode = getPreviousOrParentTNode();
|
|
12079
12047
|
if (!tNode.stylingTemplate) {
|
|
12080
12048
|
tNode.stylingTemplate = createEmptyStylingContext();
|
|
@@ -12120,7 +12088,7 @@
|
|
|
12120
12088
|
*
|
|
12121
12089
|
* @codeGenApi
|
|
12122
12090
|
*/
|
|
12123
|
-
function
|
|
12091
|
+
function ɵɵelementStyleProp(index, styleIndex, value, suffix, forceOverride) {
|
|
12124
12092
|
var valueToAdd = resolveStylePropValue(value, suffix);
|
|
12125
12093
|
var stylingContext = getStylingContext(index, getLView());
|
|
12126
12094
|
updateStyleProp(stylingContext, styleIndex, valueToAdd, DEFAULT_TEMPLATE_DIRECTIVE_INDEX, forceOverride);
|
|
@@ -12150,7 +12118,7 @@
|
|
|
12150
12118
|
*
|
|
12151
12119
|
* @codeGenApi
|
|
12152
12120
|
*/
|
|
12153
|
-
function
|
|
12121
|
+
function ɵɵelementHostStyleProp(styleIndex, value, suffix, forceOverride) {
|
|
12154
12122
|
var directiveStylingIndex = getActiveDirectiveStylingIndex();
|
|
12155
12123
|
var hostElementIndex = getSelectedIndex();
|
|
12156
12124
|
var stylingContext = getStylingContext(hostElementIndex, getLView());
|
|
@@ -12194,7 +12162,7 @@
|
|
|
12194
12162
|
*
|
|
12195
12163
|
* @codeGenApi
|
|
12196
12164
|
*/
|
|
12197
|
-
function
|
|
12165
|
+
function ɵɵelementClassProp(index, classIndex, value, forceOverride) {
|
|
12198
12166
|
var input = (value instanceof BoundPlayerFactory) ?
|
|
12199
12167
|
value :
|
|
12200
12168
|
booleanOrNull(value);
|
|
@@ -12219,7 +12187,7 @@
|
|
|
12219
12187
|
*
|
|
12220
12188
|
* @codeGenApi
|
|
12221
12189
|
*/
|
|
12222
|
-
function
|
|
12190
|
+
function ɵɵelementHostClassProp(classIndex, value, forceOverride) {
|
|
12223
12191
|
var directiveStylingIndex = getActiveDirectiveStylingIndex();
|
|
12224
12192
|
var hostElementIndex = getSelectedIndex();
|
|
12225
12193
|
var stylingContext = getStylingContext(hostElementIndex, getLView());
|
|
@@ -12254,7 +12222,7 @@
|
|
|
12254
12222
|
*
|
|
12255
12223
|
* @codeGenApi
|
|
12256
12224
|
*/
|
|
12257
|
-
function
|
|
12225
|
+
function ɵɵelementStylingMap(index, classes, styles) {
|
|
12258
12226
|
var lView = getLView();
|
|
12259
12227
|
var stylingContext = getStylingContext(index, lView);
|
|
12260
12228
|
var tNode = getTNode(index, lView);
|
|
@@ -12298,7 +12266,7 @@
|
|
|
12298
12266
|
*
|
|
12299
12267
|
* @codeGenApi
|
|
12300
12268
|
*/
|
|
12301
|
-
function
|
|
12269
|
+
function ɵɵelementHostStylingMap(classes, styles) {
|
|
12302
12270
|
var directiveStylingIndex = getActiveDirectiveStylingIndex();
|
|
12303
12271
|
var hostElementIndex = getSelectedIndex();
|
|
12304
12272
|
var stylingContext = getStylingContext(hostElementIndex, getLView());
|
|
@@ -12316,7 +12284,7 @@
|
|
|
12316
12284
|
*
|
|
12317
12285
|
* @codeGenApi
|
|
12318
12286
|
*/
|
|
12319
|
-
function
|
|
12287
|
+
function ɵɵelementStylingApply(index) {
|
|
12320
12288
|
elementStylingApplyInternal(DEFAULT_TEMPLATE_DIRECTIVE_INDEX, index);
|
|
12321
12289
|
}
|
|
12322
12290
|
/**
|
|
@@ -12329,7 +12297,7 @@
|
|
|
12329
12297
|
*
|
|
12330
12298
|
* @codeGenApi
|
|
12331
12299
|
*/
|
|
12332
|
-
function
|
|
12300
|
+
function ɵɵelementHostStylingApply() {
|
|
12333
12301
|
elementStylingApplyInternal(getActiveDirectiveStylingIndex(), getSelectedIndex());
|
|
12334
12302
|
}
|
|
12335
12303
|
function elementStylingApplyInternal(directiveStylingIndex, index) {
|
|
@@ -12399,7 +12367,7 @@
|
|
|
12399
12367
|
*
|
|
12400
12368
|
* @codeGenApi
|
|
12401
12369
|
*/
|
|
12402
|
-
function
|
|
12370
|
+
function ɵɵelementStart(index, name, attrs, localRefs) {
|
|
12403
12371
|
var lView = getLView();
|
|
12404
12372
|
var tView = lView[TVIEW];
|
|
12405
12373
|
ngDevMode && assertEqual(lView[BINDING_INDEX], tView.bindingStartIndex, 'elements should be created before any bindings ');
|
|
@@ -12468,7 +12436,7 @@
|
|
|
12468
12436
|
*
|
|
12469
12437
|
* @codeGenApi
|
|
12470
12438
|
*/
|
|
12471
|
-
function
|
|
12439
|
+
function ɵɵelementEnd() {
|
|
12472
12440
|
var previousOrParentTNode = getPreviousOrParentTNode();
|
|
12473
12441
|
if (getIsParent()) {
|
|
12474
12442
|
setIsParent(false);
|
|
@@ -12514,9 +12482,9 @@
|
|
|
12514
12482
|
*
|
|
12515
12483
|
* @codeGenApi
|
|
12516
12484
|
*/
|
|
12517
|
-
function
|
|
12518
|
-
|
|
12519
|
-
|
|
12485
|
+
function ɵɵelement(index, name, attrs, localRefs) {
|
|
12486
|
+
ɵɵelementStart(index, name, attrs, localRefs);
|
|
12487
|
+
ɵɵelementEnd();
|
|
12520
12488
|
}
|
|
12521
12489
|
/**
|
|
12522
12490
|
* Updates the value of removes an attribute on an Element.
|
|
@@ -12530,7 +12498,7 @@
|
|
|
12530
12498
|
*
|
|
12531
12499
|
* @codeGenApi
|
|
12532
12500
|
*/
|
|
12533
|
-
function
|
|
12501
|
+
function ɵɵelementAttribute(index, name, value, sanitizer, namespace) {
|
|
12534
12502
|
if (value !== NO_CHANGE) {
|
|
12535
12503
|
ngDevMode && validateAgainstEventAttributes(name);
|
|
12536
12504
|
var lView = getLView();
|
|
@@ -12594,7 +12562,7 @@
|
|
|
12594
12562
|
*
|
|
12595
12563
|
* @codeGenApi
|
|
12596
12564
|
*/
|
|
12597
|
-
function
|
|
12565
|
+
function ɵɵelementHostAttrs(attrs) {
|
|
12598
12566
|
var hostElementIndex = getSelectedIndex();
|
|
12599
12567
|
var lView = getLView();
|
|
12600
12568
|
var tNode = getTNode(hostElementIndex, lView);
|
|
@@ -12639,7 +12607,7 @@
|
|
|
12639
12607
|
*
|
|
12640
12608
|
* @codeGenApi
|
|
12641
12609
|
*/
|
|
12642
|
-
function
|
|
12610
|
+
function ɵɵelementContainerStart(index, attrs, localRefs) {
|
|
12643
12611
|
var lView = getLView();
|
|
12644
12612
|
var tView = lView[TVIEW];
|
|
12645
12613
|
var renderer = lView[RENDERER];
|
|
@@ -12669,7 +12637,7 @@
|
|
|
12669
12637
|
*
|
|
12670
12638
|
* @codeGenApi
|
|
12671
12639
|
*/
|
|
12672
|
-
function
|
|
12640
|
+
function ɵɵelementContainerEnd() {
|
|
12673
12641
|
var previousOrParentTNode = getPreviousOrParentTNode();
|
|
12674
12642
|
var lView = getLView();
|
|
12675
12643
|
var tView = lView[TVIEW];
|
|
@@ -12707,7 +12675,7 @@
|
|
|
12707
12675
|
*
|
|
12708
12676
|
* @codeGenApi
|
|
12709
12677
|
*/
|
|
12710
|
-
function
|
|
12678
|
+
function ɵɵembeddedViewStart(viewBlockId, consts, vars) {
|
|
12711
12679
|
var lView = getLView();
|
|
12712
12680
|
var previousOrParentTNode = getPreviousOrParentTNode();
|
|
12713
12681
|
// The previous node can be a view node if we are processing an inline for loop
|
|
@@ -12800,7 +12768,7 @@
|
|
|
12800
12768
|
*
|
|
12801
12769
|
* @codeGenApi
|
|
12802
12770
|
*/
|
|
12803
|
-
function
|
|
12771
|
+
function ɵɵembeddedViewEnd() {
|
|
12804
12772
|
var lView = getLView();
|
|
12805
12773
|
var viewHost = lView[T_HOST];
|
|
12806
12774
|
if (isCreationMode(lView)) {
|
|
@@ -12825,7 +12793,7 @@
|
|
|
12825
12793
|
*
|
|
12826
12794
|
* @codeGenApi
|
|
12827
12795
|
*/
|
|
12828
|
-
function
|
|
12796
|
+
function ɵɵgetCurrentView() {
|
|
12829
12797
|
return getLView();
|
|
12830
12798
|
}
|
|
12831
12799
|
|
|
@@ -12874,7 +12842,7 @@
|
|
|
12874
12842
|
*
|
|
12875
12843
|
* @codeGenApi
|
|
12876
12844
|
*/
|
|
12877
|
-
function
|
|
12845
|
+
function ɵɵlistener(eventName, listenerFn, useCapture, eventTargetResolver) {
|
|
12878
12846
|
if (useCapture === void 0) { useCapture = false; }
|
|
12879
12847
|
listenerInternal(eventName, listenerFn, useCapture, eventTargetResolver);
|
|
12880
12848
|
}
|
|
@@ -12899,7 +12867,7 @@
|
|
|
12899
12867
|
*
|
|
12900
12868
|
* @codeGenApi
|
|
12901
12869
|
*/
|
|
12902
|
-
function
|
|
12870
|
+
function ɵɵcomponentHostSyntheticListener(eventName, listenerFn, useCapture, eventTargetResolver) {
|
|
12903
12871
|
if (useCapture === void 0) { useCapture = false; }
|
|
12904
12872
|
listenerInternal(eventName, listenerFn, useCapture, eventTargetResolver, loadComponentRenderer);
|
|
12905
12873
|
}
|
|
@@ -13107,11 +13075,40 @@
|
|
|
13107
13075
|
*
|
|
13108
13076
|
* @codeGenApi
|
|
13109
13077
|
*/
|
|
13110
|
-
function
|
|
13078
|
+
function ɵɵnextContext(level) {
|
|
13111
13079
|
if (level === void 0) { level = 1; }
|
|
13112
13080
|
return nextContextImpl(level);
|
|
13113
13081
|
}
|
|
13114
13082
|
|
|
13083
|
+
/**
|
|
13084
|
+
* Checks a given node against matching projection slots and returns the
|
|
13085
|
+
* determined slot index. Returns "null" if no slot matched the given node.
|
|
13086
|
+
*
|
|
13087
|
+
* This function takes into account the parsed ngProjectAs selector from the
|
|
13088
|
+
* node's attributes. If present, it will check whether the ngProjectAs selector
|
|
13089
|
+
* matches any of the projection slot selectors.
|
|
13090
|
+
*/
|
|
13091
|
+
function matchingProjectionSlotIndex(tNode, projectionSlots) {
|
|
13092
|
+
var wildcardNgContentIndex = null;
|
|
13093
|
+
var ngProjectAsAttrVal = getProjectAsAttrValue(tNode);
|
|
13094
|
+
for (var i = 0; i < projectionSlots.length; i++) {
|
|
13095
|
+
var slotValue = projectionSlots[i];
|
|
13096
|
+
// The last wildcard projection slot should match all nodes which aren't matching
|
|
13097
|
+
// any selector. This is necessary to be backwards compatible with view engine.
|
|
13098
|
+
if (slotValue === '*') {
|
|
13099
|
+
wildcardNgContentIndex = i;
|
|
13100
|
+
continue;
|
|
13101
|
+
}
|
|
13102
|
+
// If we ran into an `ngProjectAs` attribute, we should match its parsed selector
|
|
13103
|
+
// to the list of selectors, otherwise we fall back to matching against the node.
|
|
13104
|
+
if (ngProjectAsAttrVal === null ?
|
|
13105
|
+
isNodeMatchingSelectorList(tNode, slotValue, /* isProjectionMode */ true) :
|
|
13106
|
+
isSelectorInSelectorList(ngProjectAsAttrVal, slotValue)) {
|
|
13107
|
+
return i; // first matching selector "captures" a given node
|
|
13108
|
+
}
|
|
13109
|
+
}
|
|
13110
|
+
return wildcardNgContentIndex;
|
|
13111
|
+
}
|
|
13115
13112
|
/**
|
|
13116
13113
|
* Instruction to distribute projectable nodes among <ng-content> occurrences in a given template.
|
|
13117
13114
|
* It takes all the selectors from the entire component's template and decides where
|
|
@@ -13130,28 +13127,34 @@
|
|
|
13130
13127
|
* - we can't have only a parsed as we can't re-construct textual form from it (as entered by a
|
|
13131
13128
|
* template author).
|
|
13132
13129
|
*
|
|
13133
|
-
* @param
|
|
13134
|
-
*
|
|
13130
|
+
* @param projectionSlots? A collection of projection slots. A projection slot can be based
|
|
13131
|
+
* on a parsed CSS selectors or set to the wildcard selector ("*") in order to match
|
|
13132
|
+
* all nodes which do not match any selector. If not specified, a single wildcard
|
|
13133
|
+
* selector projection slot will be defined.
|
|
13135
13134
|
*
|
|
13136
13135
|
* @codeGenApi
|
|
13137
13136
|
*/
|
|
13138
|
-
function
|
|
13137
|
+
function ɵɵprojectionDef(projectionSlots) {
|
|
13139
13138
|
var componentNode = findComponentView(getLView())[T_HOST];
|
|
13140
13139
|
if (!componentNode.projection) {
|
|
13141
|
-
|
|
13140
|
+
// If no explicit projection slots are defined, fall back to a single
|
|
13141
|
+
// projection slot with the wildcard selector.
|
|
13142
|
+
var numProjectionSlots = projectionSlots ? projectionSlots.length : 1;
|
|
13142
13143
|
var projectionHeads = componentNode.projection =
|
|
13143
|
-
new Array(
|
|
13144
|
+
new Array(numProjectionSlots).fill(null);
|
|
13144
13145
|
var tails = projectionHeads.slice();
|
|
13145
13146
|
var componentChild = componentNode.child;
|
|
13146
13147
|
while (componentChild !== null) {
|
|
13147
|
-
var
|
|
13148
|
-
if (
|
|
13149
|
-
tails[
|
|
13150
|
-
|
|
13151
|
-
|
|
13152
|
-
|
|
13148
|
+
var slotIndex = projectionSlots ? matchingProjectionSlotIndex(componentChild, projectionSlots) : 0;
|
|
13149
|
+
if (slotIndex !== null) {
|
|
13150
|
+
if (tails[slotIndex]) {
|
|
13151
|
+
tails[slotIndex].projectionNext = componentChild;
|
|
13152
|
+
}
|
|
13153
|
+
else {
|
|
13154
|
+
projectionHeads[slotIndex] = componentChild;
|
|
13155
|
+
}
|
|
13156
|
+
tails[slotIndex] = componentChild;
|
|
13153
13157
|
}
|
|
13154
|
-
tails[bucketIndex] = componentChild;
|
|
13155
13158
|
componentChild = componentChild.next;
|
|
13156
13159
|
}
|
|
13157
13160
|
}
|
|
@@ -13167,7 +13170,7 @@
|
|
|
13167
13170
|
*
|
|
13168
13171
|
* @codeGenApi
|
|
13169
13172
|
*/
|
|
13170
|
-
function
|
|
13173
|
+
function ɵɵprojection(nodeIndex, selectorIndex, attrs) {
|
|
13171
13174
|
if (selectorIndex === void 0) { selectorIndex = 0; }
|
|
13172
13175
|
var lView = getLView();
|
|
13173
13176
|
var tProjectionNode = createNodeAtIndex(nodeIndex, 1 /* Projection */, null, null, attrs || null);
|
|
@@ -13409,12 +13412,12 @@
|
|
|
13409
13412
|
*
|
|
13410
13413
|
* @codeGenApi
|
|
13411
13414
|
*/
|
|
13412
|
-
function
|
|
13415
|
+
function ɵɵproperty(propName, value, sanitizer, nativeOnly) {
|
|
13413
13416
|
var index = getSelectedIndex();
|
|
13414
13417
|
ngDevMode && assertNotEqual(index, -1, 'selected index cannot be -1');
|
|
13415
|
-
var bindReconciledValue =
|
|
13418
|
+
var bindReconciledValue = ɵɵbind(value);
|
|
13416
13419
|
elementPropertyInternal(index, propName, bindReconciledValue, sanitizer, nativeOnly);
|
|
13417
|
-
return
|
|
13420
|
+
return ɵɵproperty;
|
|
13418
13421
|
}
|
|
13419
13422
|
/**
|
|
13420
13423
|
* Creates a single value binding.
|
|
@@ -13423,7 +13426,7 @@
|
|
|
13423
13426
|
*
|
|
13424
13427
|
* @codeGenApi
|
|
13425
13428
|
*/
|
|
13426
|
-
function
|
|
13429
|
+
function ɵɵbind(value) {
|
|
13427
13430
|
var lView = getLView();
|
|
13428
13431
|
var bindingIndex = lView[BINDING_INDEX]++;
|
|
13429
13432
|
storeBindingMetadata(lView);
|
|
@@ -13447,7 +13450,7 @@
|
|
|
13447
13450
|
*
|
|
13448
13451
|
* @codeGenApi
|
|
13449
13452
|
*/
|
|
13450
|
-
function
|
|
13453
|
+
function ɵɵelementProperty(index, propName, value, sanitizer, nativeOnly) {
|
|
13451
13454
|
elementPropertyInternal(index, propName, value, sanitizer, nativeOnly);
|
|
13452
13455
|
}
|
|
13453
13456
|
/**
|
|
@@ -13473,7 +13476,7 @@
|
|
|
13473
13476
|
*
|
|
13474
13477
|
* @codeGenApi
|
|
13475
13478
|
*/
|
|
13476
|
-
function
|
|
13479
|
+
function ɵɵcomponentHostSyntheticProperty(index, propName, value, sanitizer, nativeOnly) {
|
|
13477
13480
|
elementPropertyInternal(index, propName, value, sanitizer, nativeOnly, loadComponentRenderer);
|
|
13478
13481
|
}
|
|
13479
13482
|
|
|
@@ -13498,7 +13501,7 @@
|
|
|
13498
13501
|
*
|
|
13499
13502
|
* @codeGenApi
|
|
13500
13503
|
*/
|
|
13501
|
-
function
|
|
13504
|
+
function ɵɵinterpolationV(values) {
|
|
13502
13505
|
ngDevMode && assertLessThan(2, values.length, 'should have at least 3 values');
|
|
13503
13506
|
ngDevMode && assertEqual(values.length % 2, 1, 'should have an odd number of values');
|
|
13504
13507
|
var different = false;
|
|
@@ -13537,7 +13540,7 @@
|
|
|
13537
13540
|
*
|
|
13538
13541
|
* @codeGenApi
|
|
13539
13542
|
*/
|
|
13540
|
-
function
|
|
13543
|
+
function ɵɵinterpolation1(prefix, v0, suffix) {
|
|
13541
13544
|
var lView = getLView();
|
|
13542
13545
|
var different = bindingUpdated(lView, lView[BINDING_INDEX]++, v0);
|
|
13543
13546
|
storeBindingMetadata(lView, prefix, suffix);
|
|
@@ -13548,7 +13551,7 @@
|
|
|
13548
13551
|
*
|
|
13549
13552
|
* @codeGenApi
|
|
13550
13553
|
*/
|
|
13551
|
-
function
|
|
13554
|
+
function ɵɵinterpolation2(prefix, v0, i0, v1, suffix) {
|
|
13552
13555
|
var lView = getLView();
|
|
13553
13556
|
var bindingIndex = lView[BINDING_INDEX];
|
|
13554
13557
|
var different = bindingUpdated2(lView, bindingIndex, v0, v1);
|
|
@@ -13565,7 +13568,7 @@
|
|
|
13565
13568
|
*
|
|
13566
13569
|
* @codeGenApi
|
|
13567
13570
|
*/
|
|
13568
|
-
function
|
|
13571
|
+
function ɵɵinterpolation3(prefix, v0, i0, v1, i1, v2, suffix) {
|
|
13569
13572
|
var lView = getLView();
|
|
13570
13573
|
var bindingIndex = lView[BINDING_INDEX];
|
|
13571
13574
|
var different = bindingUpdated3(lView, bindingIndex, v0, v1, v2);
|
|
@@ -13586,7 +13589,7 @@
|
|
|
13586
13589
|
*
|
|
13587
13590
|
* @codeGenApi
|
|
13588
13591
|
*/
|
|
13589
|
-
function
|
|
13592
|
+
function ɵɵinterpolation4(prefix, v0, i0, v1, i1, v2, i2, v3, suffix) {
|
|
13590
13593
|
var lView = getLView();
|
|
13591
13594
|
var bindingIndex = lView[BINDING_INDEX];
|
|
13592
13595
|
var different = bindingUpdated4(lView, bindingIndex, v0, v1, v2, v3);
|
|
@@ -13609,7 +13612,7 @@
|
|
|
13609
13612
|
*
|
|
13610
13613
|
* @codeGenApi
|
|
13611
13614
|
*/
|
|
13612
|
-
function
|
|
13615
|
+
function ɵɵinterpolation5(prefix, v0, i0, v1, i1, v2, i2, v3, i3, v4, suffix) {
|
|
13613
13616
|
var lView = getLView();
|
|
13614
13617
|
var bindingIndex = lView[BINDING_INDEX];
|
|
13615
13618
|
var different = bindingUpdated4(lView, bindingIndex, v0, v1, v2, v3);
|
|
@@ -13634,7 +13637,7 @@
|
|
|
13634
13637
|
*
|
|
13635
13638
|
* @codeGenApi
|
|
13636
13639
|
*/
|
|
13637
|
-
function
|
|
13640
|
+
function ɵɵinterpolation6(prefix, v0, i0, v1, i1, v2, i2, v3, i3, v4, i4, v5, suffix) {
|
|
13638
13641
|
var lView = getLView();
|
|
13639
13642
|
var bindingIndex = lView[BINDING_INDEX];
|
|
13640
13643
|
var different = bindingUpdated4(lView, bindingIndex, v0, v1, v2, v3);
|
|
@@ -13660,7 +13663,7 @@
|
|
|
13660
13663
|
*
|
|
13661
13664
|
* @codeGenApi
|
|
13662
13665
|
*/
|
|
13663
|
-
function
|
|
13666
|
+
function ɵɵinterpolation7(prefix, v0, i0, v1, i1, v2, i2, v3, i3, v4, i4, v5, i5, v6, suffix) {
|
|
13664
13667
|
var lView = getLView();
|
|
13665
13668
|
var bindingIndex = lView[BINDING_INDEX];
|
|
13666
13669
|
var different = bindingUpdated4(lView, bindingIndex, v0, v1, v2, v3);
|
|
@@ -13688,7 +13691,7 @@
|
|
|
13688
13691
|
*
|
|
13689
13692
|
* @codeGenApi
|
|
13690
13693
|
*/
|
|
13691
|
-
function
|
|
13694
|
+
function ɵɵinterpolation8(prefix, v0, i0, v1, i1, v2, i2, v3, i3, v4, i4, v5, i5, v6, i6, v7, suffix) {
|
|
13692
13695
|
var lView = getLView();
|
|
13693
13696
|
var bindingIndex = lView[BINDING_INDEX];
|
|
13694
13697
|
var different = bindingUpdated4(lView, bindingIndex, v0, v1, v2, v3);
|
|
@@ -13729,7 +13732,7 @@
|
|
|
13729
13732
|
* Its compiled representation is::
|
|
13730
13733
|
*
|
|
13731
13734
|
* ```ts
|
|
13732
|
-
*
|
|
13735
|
+
* ɵɵpropertyInterpolate('title', v0);
|
|
13733
13736
|
* ```
|
|
13734
13737
|
*
|
|
13735
13738
|
* If the property name also exists as an input property on one of the element's directives,
|
|
@@ -13744,9 +13747,9 @@
|
|
|
13744
13747
|
* @returns itself, so that it may be chained.
|
|
13745
13748
|
* @codeGenApi
|
|
13746
13749
|
*/
|
|
13747
|
-
function
|
|
13748
|
-
|
|
13749
|
-
return
|
|
13750
|
+
function ɵɵpropertyInterpolate(propName, v0, sanitizer) {
|
|
13751
|
+
ɵɵpropertyInterpolate1(propName, '', v0, '', sanitizer);
|
|
13752
|
+
return ɵɵpropertyInterpolate;
|
|
13750
13753
|
}
|
|
13751
13754
|
/**
|
|
13752
13755
|
*
|
|
@@ -13761,7 +13764,7 @@
|
|
|
13761
13764
|
* Its compiled representation is::
|
|
13762
13765
|
*
|
|
13763
13766
|
* ```ts
|
|
13764
|
-
*
|
|
13767
|
+
* ɵɵpropertyInterpolate1('title', 'prefix', v0, 'suffix');
|
|
13765
13768
|
* ```
|
|
13766
13769
|
*
|
|
13767
13770
|
* If the property name also exists as an input property on one of the element's directives,
|
|
@@ -13776,10 +13779,10 @@
|
|
|
13776
13779
|
* @returns itself, so that it may be chained.
|
|
13777
13780
|
* @codeGenApi
|
|
13778
13781
|
*/
|
|
13779
|
-
function
|
|
13782
|
+
function ɵɵpropertyInterpolate1(propName, prefix, v0, suffix, sanitizer) {
|
|
13780
13783
|
var index = getSelectedIndex();
|
|
13781
|
-
elementPropertyInternal(index, propName,
|
|
13782
|
-
return
|
|
13784
|
+
elementPropertyInternal(index, propName, ɵɵinterpolation1(prefix, v0, suffix), sanitizer);
|
|
13785
|
+
return ɵɵpropertyInterpolate1;
|
|
13783
13786
|
}
|
|
13784
13787
|
/**
|
|
13785
13788
|
*
|
|
@@ -13794,7 +13797,7 @@
|
|
|
13794
13797
|
* Its compiled representation is::
|
|
13795
13798
|
*
|
|
13796
13799
|
* ```ts
|
|
13797
|
-
*
|
|
13800
|
+
* ɵɵpropertyInterpolate2('title', 'prefix', v0, '-', v1, 'suffix');
|
|
13798
13801
|
* ```
|
|
13799
13802
|
*
|
|
13800
13803
|
* If the property name also exists as an input property on one of the element's directives,
|
|
@@ -13811,10 +13814,10 @@
|
|
|
13811
13814
|
* @returns itself, so that it may be chained.
|
|
13812
13815
|
* @codeGenApi
|
|
13813
13816
|
*/
|
|
13814
|
-
function
|
|
13817
|
+
function ɵɵpropertyInterpolate2(propName, prefix, v0, i0, v1, suffix, sanitizer) {
|
|
13815
13818
|
var index = getSelectedIndex();
|
|
13816
|
-
elementPropertyInternal(index, propName,
|
|
13817
|
-
return
|
|
13819
|
+
elementPropertyInternal(index, propName, ɵɵinterpolation2(prefix, v0, i0, v1, suffix), sanitizer);
|
|
13820
|
+
return ɵɵpropertyInterpolate2;
|
|
13818
13821
|
}
|
|
13819
13822
|
/**
|
|
13820
13823
|
*
|
|
@@ -13829,7 +13832,7 @@
|
|
|
13829
13832
|
* Its compiled representation is::
|
|
13830
13833
|
*
|
|
13831
13834
|
* ```ts
|
|
13832
|
-
*
|
|
13835
|
+
* ɵɵpropertyInterpolate3(
|
|
13833
13836
|
* 'title', 'prefix', v0, '-', v1, '-', v2, 'suffix');
|
|
13834
13837
|
* ```
|
|
13835
13838
|
*
|
|
@@ -13849,10 +13852,10 @@
|
|
|
13849
13852
|
* @returns itself, so that it may be chained.
|
|
13850
13853
|
* @codeGenApi
|
|
13851
13854
|
*/
|
|
13852
|
-
function
|
|
13855
|
+
function ɵɵpropertyInterpolate3(propName, prefix, v0, i0, v1, i1, v2, suffix, sanitizer) {
|
|
13853
13856
|
var index = getSelectedIndex();
|
|
13854
|
-
elementPropertyInternal(index, propName,
|
|
13855
|
-
return
|
|
13857
|
+
elementPropertyInternal(index, propName, ɵɵinterpolation3(prefix, v0, i0, v1, i1, v2, suffix), sanitizer);
|
|
13858
|
+
return ɵɵpropertyInterpolate3;
|
|
13856
13859
|
}
|
|
13857
13860
|
/**
|
|
13858
13861
|
*
|
|
@@ -13867,7 +13870,7 @@
|
|
|
13867
13870
|
* Its compiled representation is::
|
|
13868
13871
|
*
|
|
13869
13872
|
* ```ts
|
|
13870
|
-
*
|
|
13873
|
+
* ɵɵpropertyInterpolate4(
|
|
13871
13874
|
* 'title', 'prefix', v0, '-', v1, '-', v2, '-', v3, 'suffix');
|
|
13872
13875
|
* ```
|
|
13873
13876
|
*
|
|
@@ -13889,10 +13892,10 @@
|
|
|
13889
13892
|
* @returns itself, so that it may be chained.
|
|
13890
13893
|
* @codeGenApi
|
|
13891
13894
|
*/
|
|
13892
|
-
function
|
|
13895
|
+
function ɵɵpropertyInterpolate4(propName, prefix, v0, i0, v1, i1, v2, i2, v3, suffix, sanitizer) {
|
|
13893
13896
|
var index = getSelectedIndex();
|
|
13894
|
-
elementPropertyInternal(index, propName,
|
|
13895
|
-
return
|
|
13897
|
+
elementPropertyInternal(index, propName, ɵɵinterpolation4(prefix, v0, i0, v1, i1, v2, i2, v3, suffix), sanitizer);
|
|
13898
|
+
return ɵɵpropertyInterpolate4;
|
|
13896
13899
|
}
|
|
13897
13900
|
/**
|
|
13898
13901
|
*
|
|
@@ -13907,7 +13910,7 @@
|
|
|
13907
13910
|
* Its compiled representation is::
|
|
13908
13911
|
*
|
|
13909
13912
|
* ```ts
|
|
13910
|
-
*
|
|
13913
|
+
* ɵɵpropertyInterpolate5(
|
|
13911
13914
|
* 'title', 'prefix', v0, '-', v1, '-', v2, '-', v3, '-', v4, 'suffix');
|
|
13912
13915
|
* ```
|
|
13913
13916
|
*
|
|
@@ -13931,10 +13934,10 @@
|
|
|
13931
13934
|
* @returns itself, so that it may be chained.
|
|
13932
13935
|
* @codeGenApi
|
|
13933
13936
|
*/
|
|
13934
|
-
function
|
|
13937
|
+
function ɵɵpropertyInterpolate5(propName, prefix, v0, i0, v1, i1, v2, i2, v3, i3, v4, suffix, sanitizer) {
|
|
13935
13938
|
var index = getSelectedIndex();
|
|
13936
|
-
elementPropertyInternal(index, propName,
|
|
13937
|
-
return
|
|
13939
|
+
elementPropertyInternal(index, propName, ɵɵinterpolation5(prefix, v0, i0, v1, i1, v2, i2, v3, i3, v4, suffix), sanitizer);
|
|
13940
|
+
return ɵɵpropertyInterpolate5;
|
|
13938
13941
|
}
|
|
13939
13942
|
/**
|
|
13940
13943
|
*
|
|
@@ -13949,7 +13952,7 @@
|
|
|
13949
13952
|
* Its compiled representation is::
|
|
13950
13953
|
*
|
|
13951
13954
|
* ```ts
|
|
13952
|
-
*
|
|
13955
|
+
* ɵɵpropertyInterpolate6(
|
|
13953
13956
|
* 'title', 'prefix', v0, '-', v1, '-', v2, '-', v3, '-', v4, '-', v5, 'suffix');
|
|
13954
13957
|
* ```
|
|
13955
13958
|
*
|
|
@@ -13975,10 +13978,10 @@
|
|
|
13975
13978
|
* @returns itself, so that it may be chained.
|
|
13976
13979
|
* @codeGenApi
|
|
13977
13980
|
*/
|
|
13978
|
-
function
|
|
13981
|
+
function ɵɵpropertyInterpolate6(propName, prefix, v0, i0, v1, i1, v2, i2, v3, i3, v4, i4, v5, suffix, sanitizer) {
|
|
13979
13982
|
var index = getSelectedIndex();
|
|
13980
|
-
elementPropertyInternal(index, propName,
|
|
13981
|
-
return
|
|
13983
|
+
elementPropertyInternal(index, propName, ɵɵinterpolation6(prefix, v0, i0, v1, i1, v2, i2, v3, i3, v4, i4, v5, suffix), sanitizer);
|
|
13984
|
+
return ɵɵpropertyInterpolate6;
|
|
13982
13985
|
}
|
|
13983
13986
|
/**
|
|
13984
13987
|
*
|
|
@@ -13993,7 +13996,7 @@
|
|
|
13993
13996
|
* Its compiled representation is::
|
|
13994
13997
|
*
|
|
13995
13998
|
* ```ts
|
|
13996
|
-
*
|
|
13999
|
+
* ɵɵpropertyInterpolate7(
|
|
13997
14000
|
* 'title', 'prefix', v0, '-', v1, '-', v2, '-', v3, '-', v4, '-', v5, '-', v6, 'suffix');
|
|
13998
14001
|
* ```
|
|
13999
14002
|
*
|
|
@@ -14021,10 +14024,10 @@
|
|
|
14021
14024
|
* @returns itself, so that it may be chained.
|
|
14022
14025
|
* @codeGenApi
|
|
14023
14026
|
*/
|
|
14024
|
-
function
|
|
14027
|
+
function ɵɵpropertyInterpolate7(propName, prefix, v0, i0, v1, i1, v2, i2, v3, i3, v4, i4, v5, i5, v6, suffix, sanitizer) {
|
|
14025
14028
|
var index = getSelectedIndex();
|
|
14026
|
-
elementPropertyInternal(index, propName,
|
|
14027
|
-
return
|
|
14029
|
+
elementPropertyInternal(index, propName, ɵɵinterpolation7(prefix, v0, i0, v1, i1, v2, i2, v3, i3, v4, i4, v5, i5, v6, suffix), sanitizer);
|
|
14030
|
+
return ɵɵpropertyInterpolate7;
|
|
14028
14031
|
}
|
|
14029
14032
|
/**
|
|
14030
14033
|
*
|
|
@@ -14039,7 +14042,7 @@
|
|
|
14039
14042
|
* Its compiled representation is::
|
|
14040
14043
|
*
|
|
14041
14044
|
* ```ts
|
|
14042
|
-
*
|
|
14045
|
+
* ɵɵpropertyInterpolate8(
|
|
14043
14046
|
* 'title', 'prefix', v0, '-', v1, '-', v2, '-', v3, '-', v4, '-', v5, '-', v6, '-', v7, 'suffix');
|
|
14044
14047
|
* ```
|
|
14045
14048
|
*
|
|
@@ -14069,10 +14072,10 @@
|
|
|
14069
14072
|
* @returns itself, so that it may be chained.
|
|
14070
14073
|
* @codeGenApi
|
|
14071
14074
|
*/
|
|
14072
|
-
function
|
|
14075
|
+
function ɵɵpropertyInterpolate8(propName, prefix, v0, i0, v1, i1, v2, i2, v3, i3, v4, i4, v5, i5, v6, i6, v7, suffix, sanitizer) {
|
|
14073
14076
|
var index = getSelectedIndex();
|
|
14074
|
-
elementPropertyInternal(index, propName,
|
|
14075
|
-
return
|
|
14077
|
+
elementPropertyInternal(index, propName, ɵɵinterpolation8(prefix, v0, i0, v1, i1, v2, i2, v3, i3, v4, i4, v5, i5, v6, i6, v7, suffix), sanitizer);
|
|
14078
|
+
return ɵɵpropertyInterpolate8;
|
|
14076
14079
|
}
|
|
14077
14080
|
/**
|
|
14078
14081
|
* Update an interpolated property on an element with 8 or more bound values surrounded by text.
|
|
@@ -14087,7 +14090,7 @@
|
|
|
14087
14090
|
* Its compiled representation is::
|
|
14088
14091
|
*
|
|
14089
14092
|
* ```ts
|
|
14090
|
-
*
|
|
14093
|
+
* ɵɵpropertyInterpolateV(
|
|
14091
14094
|
* 'title', ['prefix', v0, '-', v1, '-', v2, '-', v3, '-', v4, '-', v5, '-', v6, '-', v7, '-', v9,
|
|
14092
14095
|
* 'suffix']);
|
|
14093
14096
|
* ```
|
|
@@ -14104,10 +14107,10 @@
|
|
|
14104
14107
|
* @returns itself, so that it may be chained.
|
|
14105
14108
|
* @codeGenApi
|
|
14106
14109
|
*/
|
|
14107
|
-
function
|
|
14110
|
+
function ɵɵpropertyInterpolateV(propName, values, sanitizer) {
|
|
14108
14111
|
var index = getSelectedIndex();
|
|
14109
|
-
elementPropertyInternal(index, propName,
|
|
14110
|
-
return
|
|
14112
|
+
elementPropertyInternal(index, propName, ɵɵinterpolationV(values), sanitizer);
|
|
14113
|
+
return ɵɵpropertyInterpolateV;
|
|
14111
14114
|
}
|
|
14112
14115
|
|
|
14113
14116
|
/**
|
|
@@ -14138,7 +14141,7 @@
|
|
|
14138
14141
|
*
|
|
14139
14142
|
* @codeGenApi
|
|
14140
14143
|
*/
|
|
14141
|
-
function
|
|
14144
|
+
function ɵɵselect(index) {
|
|
14142
14145
|
ngDevMode && assertGreaterThan(index, -1, 'Invalid index');
|
|
14143
14146
|
ngDevMode &&
|
|
14144
14147
|
assertLessThan(index, getLView().length - HEADER_OFFSET, 'Should be within range for the view data');
|
|
@@ -14148,7 +14151,7 @@
|
|
|
14148
14151
|
// We must set the selected index *after* running the hooks, because hooks may have side-effects
|
|
14149
14152
|
// that cause other template functions to run, thus updating the selected index, which is global
|
|
14150
14153
|
// state. If we run `setSelectedIndex` *before* we run the hooks, in some cases the selected index
|
|
14151
|
-
// will be altered by the time we leave the
|
|
14154
|
+
// will be altered by the time we leave the `ɵɵselect` instruction.
|
|
14152
14155
|
setSelectedIndex(index);
|
|
14153
14156
|
}
|
|
14154
14157
|
|
|
@@ -14167,7 +14170,7 @@
|
|
|
14167
14170
|
*
|
|
14168
14171
|
* @codeGenApi
|
|
14169
14172
|
*/
|
|
14170
|
-
function
|
|
14173
|
+
function ɵɵtext(index, value) {
|
|
14171
14174
|
var lView = getLView();
|
|
14172
14175
|
ngDevMode && assertEqual(lView[BINDING_INDEX], lView[TVIEW].bindingStartIndex, 'text nodes should be created before any bindings');
|
|
14173
14176
|
ngDevMode && ngDevMode.rendererCreateTextNode++;
|
|
@@ -14186,7 +14189,7 @@
|
|
|
14186
14189
|
*
|
|
14187
14190
|
* @codeGenApi
|
|
14188
14191
|
*/
|
|
14189
|
-
function
|
|
14192
|
+
function ɵɵtextBinding(index, value) {
|
|
14190
14193
|
if (value !== NO_CHANGE) {
|
|
14191
14194
|
var lView = getLView();
|
|
14192
14195
|
ngDevMode && assertDataInRange(lView, index + HEADER_OFFSET);
|
|
@@ -14821,7 +14824,7 @@
|
|
|
14821
14824
|
*
|
|
14822
14825
|
* @codeGenApi
|
|
14823
14826
|
*/
|
|
14824
|
-
function
|
|
14827
|
+
function ɵɵNgOnChangesFeature() {
|
|
14825
14828
|
// This option ensures that the ngOnChanges lifecycle hook will be inherited
|
|
14826
14829
|
// from superclasses (in InheritDefinitionFeature).
|
|
14827
14830
|
NgOnChangesFeatureImpl.ngInherit = true;
|
|
@@ -14888,7 +14891,7 @@
|
|
|
14888
14891
|
*
|
|
14889
14892
|
* @codeGenApi
|
|
14890
14893
|
*/
|
|
14891
|
-
function
|
|
14894
|
+
function ɵɵInheritDefinitionFeature(definition) {
|
|
14892
14895
|
var superType = getSuperType(definition.type);
|
|
14893
14896
|
var _loop_1 = function () {
|
|
14894
14897
|
var e_1, _a;
|
|
@@ -15008,7 +15011,7 @@
|
|
|
15008
15011
|
definition.onDestroy = definition.onDestroy || superPrototype.ngOnDestroy;
|
|
15009
15012
|
definition.onInit = definition.onInit || superPrototype.ngOnInit;
|
|
15010
15013
|
if (superPrototype.ngOnChanges) {
|
|
15011
|
-
|
|
15014
|
+
ɵɵNgOnChangesFeature()(definition);
|
|
15012
15015
|
}
|
|
15013
15016
|
}
|
|
15014
15017
|
}
|
|
@@ -15407,7 +15410,7 @@
|
|
|
15407
15410
|
factory = function () { return resolveForwardRef(provider.useValue); };
|
|
15408
15411
|
}
|
|
15409
15412
|
else if (isExistingProvider(provider)) {
|
|
15410
|
-
factory = function () { return
|
|
15413
|
+
factory = function () { return ɵɵinject(resolveForwardRef(provider.useExisting)); };
|
|
15411
15414
|
}
|
|
15412
15415
|
else if (isFactoryProvider(provider)) {
|
|
15413
15416
|
factory = function () { return provider.useFactory.apply(provider, __spread(injectArgs(provider.deps || []))); };
|
|
@@ -15539,7 +15542,7 @@
|
|
|
15539
15542
|
}
|
|
15540
15543
|
if (isTypeProvider(provider) || !provider.multi) {
|
|
15541
15544
|
// Single provider case: the factory is created and pushed immediately
|
|
15542
|
-
var factory = new NodeInjectorFactory(providerFactory, isViewProvider,
|
|
15545
|
+
var factory = new NodeInjectorFactory(providerFactory, isViewProvider, ɵɵdirectiveInject);
|
|
15543
15546
|
var existingFactoryIndex = indexOf(token, tInjectables, isViewProvider ? beginIndex : beginIndex + cptViewProvidersCount, endIndex);
|
|
15544
15547
|
if (existingFactoryIndex == -1) {
|
|
15545
15548
|
diPublicInInjector(getOrCreateNodeInjectorForNode(tNode, lView), lView, token);
|
|
@@ -15677,7 +15680,7 @@
|
|
|
15677
15680
|
* Creates a multi factory.
|
|
15678
15681
|
*/
|
|
15679
15682
|
function multiFactory(factoryFn, index, isViewProvider, isComponent, f) {
|
|
15680
|
-
var factory = new NodeInjectorFactory(factoryFn, isViewProvider,
|
|
15683
|
+
var factory = new NodeInjectorFactory(factoryFn, isViewProvider, ɵɵdirectiveInject);
|
|
15681
15684
|
factory.multi = [];
|
|
15682
15685
|
factory.index = index;
|
|
15683
15686
|
factory.componentProviders = 0;
|
|
@@ -15715,7 +15718,7 @@
|
|
|
15715
15718
|
*
|
|
15716
15719
|
* @codeGenApi
|
|
15717
15720
|
*/
|
|
15718
|
-
function
|
|
15721
|
+
function ɵɵProvidersFeature(providers, viewProviders) {
|
|
15719
15722
|
if (viewProviders === void 0) { viewProviders = []; }
|
|
15720
15723
|
return function (definition) {
|
|
15721
15724
|
definition.providersResolver =
|
|
@@ -16639,7 +16642,7 @@
|
|
|
16639
16642
|
/**
|
|
16640
16643
|
* @publicApi
|
|
16641
16644
|
*/
|
|
16642
|
-
var VERSION = new Version('8.0.
|
|
16645
|
+
var VERSION = new Version('8.0.2');
|
|
16643
16646
|
|
|
16644
16647
|
/**
|
|
16645
16648
|
* @license
|
|
@@ -17640,7 +17643,7 @@
|
|
|
17640
17643
|
}
|
|
17641
17644
|
};
|
|
17642
17645
|
/** @nocollapse */
|
|
17643
|
-
IterableDiffers.ngInjectableDef =
|
|
17646
|
+
IterableDiffers.ngInjectableDef = ɵɵdefineInjectable({
|
|
17644
17647
|
providedIn: 'root',
|
|
17645
17648
|
factory: function () { return new IterableDiffers([new DefaultIterableDifferFactory()]); }
|
|
17646
17649
|
});
|
|
@@ -17716,7 +17719,7 @@
|
|
|
17716
17719
|
throw new Error("Cannot find a differ supporting object '" + kv + "'");
|
|
17717
17720
|
};
|
|
17718
17721
|
/** @nocollapse */
|
|
17719
|
-
KeyValueDiffers.ngInjectableDef =
|
|
17722
|
+
KeyValueDiffers.ngInjectableDef = ɵɵdefineInjectable({
|
|
17720
17723
|
providedIn: 'root',
|
|
17721
17724
|
factory: function () { return new KeyValueDiffers([new DefaultKeyValueDifferFactory()]); }
|
|
17722
17725
|
});
|
|
@@ -19744,7 +19747,7 @@
|
|
|
19744
19747
|
/**
|
|
19745
19748
|
* Default {@link RootContext} for all components rendered with {@link renderComponent}.
|
|
19746
19749
|
*/
|
|
19747
|
-
var ROOT_CONTEXT = new InjectionToken('ROOT_CONTEXT_TOKEN', { providedIn: 'root', factory: function () { return createRootContext(
|
|
19750
|
+
var ROOT_CONTEXT = new InjectionToken('ROOT_CONTEXT_TOKEN', { providedIn: 'root', factory: function () { return createRootContext(ɵɵinject(SCHEDULER)); } });
|
|
19748
19751
|
/**
|
|
19749
19752
|
* A change detection scheduler token for {@link RootContext}. This token is the default value used
|
|
19750
19753
|
* for the default `RootContext` found in the {@link ROOT_CONTEXT} token.
|
|
@@ -19785,10 +19788,8 @@
|
|
|
19785
19788
|
_this.ngModule = ngModule;
|
|
19786
19789
|
_this.componentType = componentDef.type;
|
|
19787
19790
|
_this.selector = componentDef.selectors[0][0];
|
|
19788
|
-
// The component definition does not include the wildcard ('*') selector in its list.
|
|
19789
|
-
// It is implicitly expected as the first item in the projectable nodes array.
|
|
19790
19791
|
_this.ngContentSelectors =
|
|
19791
|
-
componentDef.ngContentSelectors ?
|
|
19792
|
+
componentDef.ngContentSelectors ? componentDef.ngContentSelectors : [];
|
|
19792
19793
|
_this.isBoundToModule = !!ngModule;
|
|
19793
19794
|
return _this;
|
|
19794
19795
|
}
|
|
@@ -19949,28 +19950,27 @@
|
|
|
19949
19950
|
}
|
|
19950
19951
|
}
|
|
19951
19952
|
/**
|
|
19952
|
-
* Flattens an array
|
|
19953
|
+
* Flattens an array.
|
|
19953
19954
|
*/
|
|
19954
|
-
function flatten(list,
|
|
19955
|
-
|
|
19956
|
-
|
|
19957
|
-
|
|
19955
|
+
function flatten(list, dst) {
|
|
19956
|
+
if (dst === undefined)
|
|
19957
|
+
dst = list;
|
|
19958
|
+
for (var i = 0; i < list.length; i++) {
|
|
19958
19959
|
var item = list[i];
|
|
19959
19960
|
if (Array.isArray(item)) {
|
|
19960
|
-
|
|
19961
|
-
|
|
19962
|
-
|
|
19963
|
-
|
|
19964
|
-
|
|
19965
|
-
i++;
|
|
19961
|
+
// we need to inline it.
|
|
19962
|
+
if (dst === list) {
|
|
19963
|
+
// Our assumption that the list was already flat was wrong and
|
|
19964
|
+
// we need to clone flat since we need to write to it.
|
|
19965
|
+
dst = list.slice(0, i);
|
|
19966
19966
|
}
|
|
19967
|
+
flatten(item, dst);
|
|
19967
19968
|
}
|
|
19968
|
-
else {
|
|
19969
|
-
|
|
19970
|
-
i++;
|
|
19969
|
+
else if (dst !== list) {
|
|
19970
|
+
dst.push(item);
|
|
19971
19971
|
}
|
|
19972
19972
|
}
|
|
19973
|
-
return
|
|
19973
|
+
return dst;
|
|
19974
19974
|
}
|
|
19975
19975
|
|
|
19976
19976
|
/**
|
|
@@ -20235,7 +20235,7 @@
|
|
|
20235
20235
|
*
|
|
20236
20236
|
* @codeGenApi
|
|
20237
20237
|
*/
|
|
20238
|
-
function
|
|
20238
|
+
function ɵɵi18nStart(index, message, subTemplateIndex) {
|
|
20239
20239
|
var tView = getLView()[TVIEW];
|
|
20240
20240
|
ngDevMode && assertDefined(tView, "tView should be defined");
|
|
20241
20241
|
i18nIndexStack[++i18nIndexStackPointer] = index;
|
|
@@ -20398,7 +20398,7 @@
|
|
|
20398
20398
|
*
|
|
20399
20399
|
* @codeGenApi
|
|
20400
20400
|
*/
|
|
20401
|
-
function
|
|
20401
|
+
function ɵɵi18nPostprocess(message, replacements) {
|
|
20402
20402
|
if (replacements === void 0) { replacements = {}; }
|
|
20403
20403
|
/**
|
|
20404
20404
|
* Step 1: resolve all multi-value placeholders like [�#5�|�*1:1��#2:1�|�#4:1�]
|
|
@@ -20489,7 +20489,7 @@
|
|
|
20489
20489
|
*
|
|
20490
20490
|
* @codeGenApi
|
|
20491
20491
|
*/
|
|
20492
|
-
function
|
|
20492
|
+
function ɵɵi18nEnd() {
|
|
20493
20493
|
var tView = getLView()[TVIEW];
|
|
20494
20494
|
ngDevMode && assertDefined(tView, "tView should be defined");
|
|
20495
20495
|
i18nEndFirstPass(tView);
|
|
@@ -20582,7 +20582,7 @@
|
|
|
20582
20582
|
var elementNodeIndex = opCode >>> 3 /* SHIFT_REF */;
|
|
20583
20583
|
var attrName = createOpCodes[++i];
|
|
20584
20584
|
var attrValue = createOpCodes[++i];
|
|
20585
|
-
|
|
20585
|
+
ɵɵelementAttribute(elementNodeIndex, attrName, attrValue);
|
|
20586
20586
|
break;
|
|
20587
20587
|
default:
|
|
20588
20588
|
throw new Error("Unable to determine the type of mutate operation for \"" + opCode + "\"");
|
|
@@ -20652,10 +20652,10 @@
|
|
|
20652
20652
|
case 1 /* Attr */:
|
|
20653
20653
|
var attrName = updateOpCodes[++j];
|
|
20654
20654
|
var sanitizeFn = updateOpCodes[++j];
|
|
20655
|
-
|
|
20655
|
+
ɵɵelementAttribute(nodeIndex, attrName, value, sanitizeFn);
|
|
20656
20656
|
break;
|
|
20657
20657
|
case 0 /* Text */:
|
|
20658
|
-
|
|
20658
|
+
ɵɵtextBinding(nodeIndex, value);
|
|
20659
20659
|
break;
|
|
20660
20660
|
case 2 /* IcuSwitch */:
|
|
20661
20661
|
tIcuIndex = updateOpCodes[++j];
|
|
@@ -20711,7 +20711,7 @@
|
|
|
20711
20711
|
if (removedPhRNode) {
|
|
20712
20712
|
nativeRemoveNode(viewData[RENDERER], removedPhRNode);
|
|
20713
20713
|
}
|
|
20714
|
-
var slotValue =
|
|
20714
|
+
var slotValue = ɵɵload(index);
|
|
20715
20715
|
if (isLContainer(slotValue)) {
|
|
20716
20716
|
var lContainer = slotValue;
|
|
20717
20717
|
if (removedPhTNode.type !== 0 /* Container */) {
|
|
@@ -20746,9 +20746,9 @@
|
|
|
20746
20746
|
*
|
|
20747
20747
|
* @codeGenApi
|
|
20748
20748
|
*/
|
|
20749
|
-
function
|
|
20750
|
-
|
|
20751
|
-
|
|
20749
|
+
function ɵɵi18n(index, message, subTemplateIndex) {
|
|
20750
|
+
ɵɵi18nStart(index, message, subTemplateIndex);
|
|
20751
|
+
ɵɵi18nEnd();
|
|
20752
20752
|
}
|
|
20753
20753
|
/**
|
|
20754
20754
|
* Marks a list of attributes as translatable.
|
|
@@ -20758,7 +20758,7 @@
|
|
|
20758
20758
|
*
|
|
20759
20759
|
* @codeGenApi
|
|
20760
20760
|
*/
|
|
20761
|
-
function
|
|
20761
|
+
function ɵɵi18nAttributes(index, values) {
|
|
20762
20762
|
var tView = getLView()[TVIEW];
|
|
20763
20763
|
ngDevMode && assertDefined(tView, "tView should be defined");
|
|
20764
20764
|
if (tView.firstTemplatePass && tView.data[index + HEADER_OFFSET] === null) {
|
|
@@ -20786,7 +20786,7 @@
|
|
|
20786
20786
|
addAllToArray(generateBindingUpdateOpCodes(value, previousElementIndex, attrName), updateOpCodes);
|
|
20787
20787
|
}
|
|
20788
20788
|
else {
|
|
20789
|
-
|
|
20789
|
+
ɵɵelementAttribute(previousElementIndex, attrName, value);
|
|
20790
20790
|
}
|
|
20791
20791
|
}
|
|
20792
20792
|
}
|
|
@@ -20803,7 +20803,7 @@
|
|
|
20803
20803
|
*
|
|
20804
20804
|
* @codeGenApi
|
|
20805
20805
|
*/
|
|
20806
|
-
function
|
|
20806
|
+
function ɵɵi18nExp(expression) {
|
|
20807
20807
|
if (expression !== NO_CHANGE) {
|
|
20808
20808
|
changeMask = changeMask | (1 << shiftsCounter);
|
|
20809
20809
|
}
|
|
@@ -20817,7 +20817,7 @@
|
|
|
20817
20817
|
*
|
|
20818
20818
|
* @codeGenApi
|
|
20819
20819
|
*/
|
|
20820
|
-
function
|
|
20820
|
+
function ɵɵi18nApply(index) {
|
|
20821
20821
|
if (shiftsCounter) {
|
|
20822
20822
|
var lView = getLView();
|
|
20823
20823
|
var tView = lView[TVIEW];
|
|
@@ -21466,7 +21466,7 @@
|
|
|
21466
21466
|
* @publicApi
|
|
21467
21467
|
* @deprecated this method is temporary & should not be used as it will be removed soon
|
|
21468
21468
|
*/
|
|
21469
|
-
function
|
|
21469
|
+
function ɵɵi18nLocalize(input, placeholders) {
|
|
21470
21470
|
if (placeholders === void 0) { placeholders = {}; }
|
|
21471
21471
|
if (typeof TRANSLATIONS[input] !== 'undefined') { // to account for empty string
|
|
21472
21472
|
input = TRANSLATIONS[input];
|
|
@@ -21644,7 +21644,7 @@
|
|
|
21644
21644
|
*
|
|
21645
21645
|
* @codeGenApi
|
|
21646
21646
|
*/
|
|
21647
|
-
function
|
|
21647
|
+
function ɵɵpureFunction0(slotOffset, pureFn, thisArg) {
|
|
21648
21648
|
// TODO(kara): use bindingRoot instead of bindingStartIndex when implementing host bindings
|
|
21649
21649
|
var bindingIndex = getBindingRoot() + slotOffset;
|
|
21650
21650
|
var lView = getLView();
|
|
@@ -21664,7 +21664,7 @@
|
|
|
21664
21664
|
*
|
|
21665
21665
|
* @codeGenApi
|
|
21666
21666
|
*/
|
|
21667
|
-
function
|
|
21667
|
+
function ɵɵpureFunction1(slotOffset, pureFn, exp, thisArg) {
|
|
21668
21668
|
// TODO(kara): use bindingRoot instead of bindingStartIndex when implementing host bindings
|
|
21669
21669
|
var lView = getLView();
|
|
21670
21670
|
var bindingIndex = getBindingRoot() + slotOffset;
|
|
@@ -21685,7 +21685,7 @@
|
|
|
21685
21685
|
*
|
|
21686
21686
|
* @codeGenApi
|
|
21687
21687
|
*/
|
|
21688
|
-
function
|
|
21688
|
+
function ɵɵpureFunction2(slotOffset, pureFn, exp1, exp2, thisArg) {
|
|
21689
21689
|
// TODO(kara): use bindingRoot instead of bindingStartIndex when implementing host bindings
|
|
21690
21690
|
var bindingIndex = getBindingRoot() + slotOffset;
|
|
21691
21691
|
var lView = getLView();
|
|
@@ -21707,7 +21707,7 @@
|
|
|
21707
21707
|
*
|
|
21708
21708
|
* @codeGenApi
|
|
21709
21709
|
*/
|
|
21710
|
-
function
|
|
21710
|
+
function ɵɵpureFunction3(slotOffset, pureFn, exp1, exp2, exp3, thisArg) {
|
|
21711
21711
|
// TODO(kara): use bindingRoot instead of bindingStartIndex when implementing host bindings
|
|
21712
21712
|
var bindingIndex = getBindingRoot() + slotOffset;
|
|
21713
21713
|
var lView = getLView();
|
|
@@ -21730,7 +21730,7 @@
|
|
|
21730
21730
|
*
|
|
21731
21731
|
* @codeGenApi
|
|
21732
21732
|
*/
|
|
21733
|
-
function
|
|
21733
|
+
function ɵɵpureFunction4(slotOffset, pureFn, exp1, exp2, exp3, exp4, thisArg) {
|
|
21734
21734
|
// TODO(kara): use bindingRoot instead of bindingStartIndex when implementing host bindings
|
|
21735
21735
|
var bindingIndex = getBindingRoot() + slotOffset;
|
|
21736
21736
|
var lView = getLView();
|
|
@@ -21754,7 +21754,7 @@
|
|
|
21754
21754
|
*
|
|
21755
21755
|
* @codeGenApi
|
|
21756
21756
|
*/
|
|
21757
|
-
function
|
|
21757
|
+
function ɵɵpureFunction5(slotOffset, pureFn, exp1, exp2, exp3, exp4, exp5, thisArg) {
|
|
21758
21758
|
// TODO(kara): use bindingRoot instead of bindingStartIndex when implementing host bindings
|
|
21759
21759
|
var bindingIndex = getBindingRoot() + slotOffset;
|
|
21760
21760
|
var lView = getLView();
|
|
@@ -21781,7 +21781,7 @@
|
|
|
21781
21781
|
*
|
|
21782
21782
|
* @codeGenApi
|
|
21783
21783
|
*/
|
|
21784
|
-
function
|
|
21784
|
+
function ɵɵpureFunction6(slotOffset, pureFn, exp1, exp2, exp3, exp4, exp5, exp6, thisArg) {
|
|
21785
21785
|
// TODO(kara): use bindingRoot instead of bindingStartIndex when implementing host bindings
|
|
21786
21786
|
var bindingIndex = getBindingRoot() + slotOffset;
|
|
21787
21787
|
var lView = getLView();
|
|
@@ -21810,7 +21810,7 @@
|
|
|
21810
21810
|
*
|
|
21811
21811
|
* @codeGenApi
|
|
21812
21812
|
*/
|
|
21813
|
-
function
|
|
21813
|
+
function ɵɵpureFunction7(slotOffset, pureFn, exp1, exp2, exp3, exp4, exp5, exp6, exp7, thisArg) {
|
|
21814
21814
|
// TODO(kara): use bindingRoot instead of bindingStartIndex when implementing host bindings
|
|
21815
21815
|
var bindingIndex = getBindingRoot() + slotOffset;
|
|
21816
21816
|
var lView = getLView();
|
|
@@ -21840,7 +21840,7 @@
|
|
|
21840
21840
|
*
|
|
21841
21841
|
* @codeGenApi
|
|
21842
21842
|
*/
|
|
21843
|
-
function
|
|
21843
|
+
function ɵɵpureFunction8(slotOffset, pureFn, exp1, exp2, exp3, exp4, exp5, exp6, exp7, exp8, thisArg) {
|
|
21844
21844
|
// TODO(kara): use bindingRoot instead of bindingStartIndex when implementing host bindings
|
|
21845
21845
|
var bindingIndex = getBindingRoot() + slotOffset;
|
|
21846
21846
|
var lView = getLView();
|
|
@@ -21866,7 +21866,7 @@
|
|
|
21866
21866
|
*
|
|
21867
21867
|
* @codeGenApi
|
|
21868
21868
|
*/
|
|
21869
|
-
function
|
|
21869
|
+
function ɵɵpureFunctionV(slotOffset, pureFn, exps, thisArg) {
|
|
21870
21870
|
// TODO(kara): use bindingRoot instead of bindingStartIndex when implementing host bindings
|
|
21871
21871
|
var bindingIndex = getBindingRoot() + slotOffset;
|
|
21872
21872
|
var different = false;
|
|
@@ -21894,7 +21894,7 @@
|
|
|
21894
21894
|
*
|
|
21895
21895
|
* @codeGenApi
|
|
21896
21896
|
*/
|
|
21897
|
-
function
|
|
21897
|
+
function ɵɵpipe(index, pipeName) {
|
|
21898
21898
|
var tView = getLView()[TVIEW];
|
|
21899
21899
|
var pipeDef;
|
|
21900
21900
|
var adjustedIndex = index + HEADER_OFFSET;
|
|
@@ -21945,9 +21945,9 @@
|
|
|
21945
21945
|
*
|
|
21946
21946
|
* @codeGenApi
|
|
21947
21947
|
*/
|
|
21948
|
-
function
|
|
21949
|
-
var pipeInstance =
|
|
21950
|
-
return unwrapValue$1(isPure(index) ?
|
|
21948
|
+
function ɵɵpipeBind1(index, slotOffset, v1) {
|
|
21949
|
+
var pipeInstance = ɵɵload(index);
|
|
21950
|
+
return unwrapValue$1(isPure(index) ? ɵɵpureFunction1(slotOffset, pipeInstance.transform, v1, pipeInstance) :
|
|
21951
21951
|
pipeInstance.transform(v1));
|
|
21952
21952
|
}
|
|
21953
21953
|
/**
|
|
@@ -21963,9 +21963,9 @@
|
|
|
21963
21963
|
*
|
|
21964
21964
|
* @codeGenApi
|
|
21965
21965
|
*/
|
|
21966
|
-
function
|
|
21967
|
-
var pipeInstance =
|
|
21968
|
-
return unwrapValue$1(isPure(index) ?
|
|
21966
|
+
function ɵɵpipeBind2(index, slotOffset, v1, v2) {
|
|
21967
|
+
var pipeInstance = ɵɵload(index);
|
|
21968
|
+
return unwrapValue$1(isPure(index) ? ɵɵpureFunction2(slotOffset, pipeInstance.transform, v1, v2, pipeInstance) :
|
|
21969
21969
|
pipeInstance.transform(v1, v2));
|
|
21970
21970
|
}
|
|
21971
21971
|
/**
|
|
@@ -21982,9 +21982,10 @@
|
|
|
21982
21982
|
*
|
|
21983
21983
|
* @codeGenApi
|
|
21984
21984
|
*/
|
|
21985
|
-
function
|
|
21986
|
-
var pipeInstance =
|
|
21987
|
-
return unwrapValue$1(isPure(index) ?
|
|
21985
|
+
function ɵɵpipeBind3(index, slotOffset, v1, v2, v3) {
|
|
21986
|
+
var pipeInstance = ɵɵload(index);
|
|
21987
|
+
return unwrapValue$1(isPure(index) ?
|
|
21988
|
+
ɵɵpureFunction3(slotOffset, pipeInstance.transform, v1, v2, v3, pipeInstance) :
|
|
21988
21989
|
pipeInstance.transform(v1, v2, v3));
|
|
21989
21990
|
}
|
|
21990
21991
|
/**
|
|
@@ -22002,10 +22003,10 @@
|
|
|
22002
22003
|
*
|
|
22003
22004
|
* @codeGenApi
|
|
22004
22005
|
*/
|
|
22005
|
-
function
|
|
22006
|
-
var pipeInstance =
|
|
22006
|
+
function ɵɵpipeBind4(index, slotOffset, v1, v2, v3, v4) {
|
|
22007
|
+
var pipeInstance = ɵɵload(index);
|
|
22007
22008
|
return unwrapValue$1(isPure(index) ?
|
|
22008
|
-
|
|
22009
|
+
ɵɵpureFunction4(slotOffset, pipeInstance.transform, v1, v2, v3, v4, pipeInstance) :
|
|
22009
22010
|
pipeInstance.transform(v1, v2, v3, v4));
|
|
22010
22011
|
}
|
|
22011
22012
|
/**
|
|
@@ -22020,9 +22021,9 @@
|
|
|
22020
22021
|
*
|
|
22021
22022
|
* @codeGenApi
|
|
22022
22023
|
*/
|
|
22023
|
-
function
|
|
22024
|
-
var pipeInstance =
|
|
22025
|
-
return unwrapValue$1(isPure(index) ?
|
|
22024
|
+
function ɵɵpipeBindV(index, slotOffset, values) {
|
|
22025
|
+
var pipeInstance = ɵɵload(index);
|
|
22026
|
+
return unwrapValue$1(isPure(index) ? ɵɵpureFunctionV(slotOffset, pipeInstance.transform, values, pipeInstance) :
|
|
22026
22027
|
pipeInstance.transform.apply(pipeInstance, values));
|
|
22027
22028
|
}
|
|
22028
22029
|
function isPure(index) {
|
|
@@ -22570,7 +22571,7 @@
|
|
|
22570
22571
|
*
|
|
22571
22572
|
* @codeGenApi
|
|
22572
22573
|
*/
|
|
22573
|
-
function
|
|
22574
|
+
function ɵɵqueryRefresh(queryList) {
|
|
22574
22575
|
var queryListImpl = queryList;
|
|
22575
22576
|
var creationMode = isCreationMode();
|
|
22576
22577
|
// if creation mode and static or update mode and not static
|
|
@@ -22590,10 +22591,10 @@
|
|
|
22590
22591
|
*
|
|
22591
22592
|
* @codeGenApi
|
|
22592
22593
|
*/
|
|
22593
|
-
function
|
|
22594
|
+
function ɵɵstaticViewQuery(
|
|
22594
22595
|
// TODO(FW-486): "read" should be an AbstractType
|
|
22595
22596
|
predicate, descend, read) {
|
|
22596
|
-
var queryList =
|
|
22597
|
+
var queryList = ɵɵviewQuery(predicate, descend, read);
|
|
22597
22598
|
var tView = getLView()[TVIEW];
|
|
22598
22599
|
queryList._static = true;
|
|
22599
22600
|
if (!tView.staticViewQueries) {
|
|
@@ -22610,7 +22611,7 @@
|
|
|
22610
22611
|
*
|
|
22611
22612
|
* @codeGenApi
|
|
22612
22613
|
*/
|
|
22613
|
-
function
|
|
22614
|
+
function ɵɵviewQuery(
|
|
22614
22615
|
// TODO(FW-486): "read" should be an AbstractType
|
|
22615
22616
|
predicate, descend, read) {
|
|
22616
22617
|
var lView = getLView();
|
|
@@ -22629,10 +22630,10 @@
|
|
|
22629
22630
|
*
|
|
22630
22631
|
* @codeGenApi
|
|
22631
22632
|
*/
|
|
22632
|
-
function
|
|
22633
|
+
function ɵɵloadViewQuery() {
|
|
22633
22634
|
var index = getCurrentQueryIndex();
|
|
22634
22635
|
setCurrentQueryIndex(index + 1);
|
|
22635
|
-
return
|
|
22636
|
+
return ɵɵload(index - HEADER_OFFSET);
|
|
22636
22637
|
}
|
|
22637
22638
|
/**
|
|
22638
22639
|
* Registers a QueryList, associated with a content query, for later refresh (part of a view
|
|
@@ -22646,7 +22647,7 @@
|
|
|
22646
22647
|
*
|
|
22647
22648
|
* @codeGenApi
|
|
22648
22649
|
*/
|
|
22649
|
-
function
|
|
22650
|
+
function ɵɵcontentQuery(directiveIndex, predicate, descend,
|
|
22650
22651
|
// TODO(FW-486): "read" should be an AbstractType
|
|
22651
22652
|
read) {
|
|
22652
22653
|
var lView = getLView();
|
|
@@ -22674,10 +22675,10 @@
|
|
|
22674
22675
|
*
|
|
22675
22676
|
* @codeGenApi
|
|
22676
22677
|
*/
|
|
22677
|
-
function
|
|
22678
|
+
function ɵɵstaticContentQuery(directiveIndex, predicate, descend,
|
|
22678
22679
|
// TODO(FW-486): "read" should be an AbstractType
|
|
22679
22680
|
read) {
|
|
22680
|
-
var queryList =
|
|
22681
|
+
var queryList = ɵɵcontentQuery(directiveIndex, predicate, descend, read);
|
|
22681
22682
|
var tView = getLView()[TVIEW];
|
|
22682
22683
|
queryList._static = true;
|
|
22683
22684
|
if (!tView.staticContentQueries) {
|
|
@@ -22688,7 +22689,7 @@
|
|
|
22688
22689
|
*
|
|
22689
22690
|
* @codeGenApi
|
|
22690
22691
|
*/
|
|
22691
|
-
function
|
|
22692
|
+
function ɵɵloadContentQuery() {
|
|
22692
22693
|
var lView = getLView();
|
|
22693
22694
|
ngDevMode &&
|
|
22694
22695
|
assertDefined(lView[CONTENT_QUERIES], 'Content QueryList array should be defined if reading a query.');
|
|
@@ -22711,7 +22712,7 @@
|
|
|
22711
22712
|
*
|
|
22712
22713
|
* @codeGenApi
|
|
22713
22714
|
*/
|
|
22714
|
-
function
|
|
22715
|
+
function ɵɵtemplateRefExtractor(tNode, currentView) {
|
|
22715
22716
|
return createTemplateRef(TemplateRef, ElementRef, tNode, currentView);
|
|
22716
22717
|
}
|
|
22717
22718
|
|
|
@@ -22798,129 +22799,129 @@
|
|
|
22798
22799
|
* found in the LICENSE file at https://angular.io/license
|
|
22799
22800
|
*/
|
|
22800
22801
|
var ɵ0$8 = function () { return ({
|
|
22801
|
-
'
|
|
22802
|
-
'
|
|
22803
|
-
'
|
|
22804
|
-
'
|
|
22805
|
-
'
|
|
22806
|
-
'
|
|
22807
|
-
'
|
|
22808
|
-
'
|
|
22809
|
-
'
|
|
22810
|
-
'
|
|
22811
|
-
'
|
|
22812
|
-
'
|
|
22813
|
-
'
|
|
22814
|
-
'
|
|
22815
|
-
'
|
|
22816
|
-
'
|
|
22817
|
-
'
|
|
22818
|
-
'
|
|
22819
|
-
'
|
|
22820
|
-
'
|
|
22821
|
-
'
|
|
22822
|
-
'
|
|
22823
|
-
'
|
|
22824
|
-
'
|
|
22825
|
-
'
|
|
22826
|
-
'
|
|
22827
|
-
'
|
|
22828
|
-
'
|
|
22829
|
-
'
|
|
22830
|
-
'
|
|
22831
|
-
'
|
|
22832
|
-
'
|
|
22833
|
-
'
|
|
22834
|
-
'
|
|
22835
|
-
'
|
|
22836
|
-
'
|
|
22837
|
-
'
|
|
22838
|
-
'
|
|
22839
|
-
'
|
|
22840
|
-
'
|
|
22841
|
-
'
|
|
22842
|
-
'
|
|
22843
|
-
'
|
|
22844
|
-
'
|
|
22845
|
-
'
|
|
22846
|
-
'
|
|
22847
|
-
'
|
|
22848
|
-
'
|
|
22849
|
-
'
|
|
22850
|
-
'
|
|
22851
|
-
'
|
|
22852
|
-
'
|
|
22853
|
-
'
|
|
22854
|
-
'
|
|
22855
|
-
'
|
|
22856
|
-
'
|
|
22857
|
-
'
|
|
22858
|
-
'
|
|
22859
|
-
'
|
|
22860
|
-
'
|
|
22861
|
-
'
|
|
22862
|
-
'
|
|
22863
|
-
'
|
|
22864
|
-
'
|
|
22865
|
-
'
|
|
22866
|
-
'
|
|
22867
|
-
'
|
|
22868
|
-
'
|
|
22869
|
-
'
|
|
22870
|
-
'
|
|
22871
|
-
'
|
|
22872
|
-
'
|
|
22873
|
-
'
|
|
22874
|
-
'
|
|
22875
|
-
'
|
|
22876
|
-
'
|
|
22877
|
-
'
|
|
22878
|
-
'
|
|
22879
|
-
'
|
|
22880
|
-
'
|
|
22881
|
-
'
|
|
22882
|
-
'
|
|
22883
|
-
'
|
|
22884
|
-
'
|
|
22885
|
-
'
|
|
22886
|
-
'
|
|
22887
|
-
'
|
|
22888
|
-
'
|
|
22889
|
-
'
|
|
22890
|
-
'
|
|
22891
|
-
'
|
|
22892
|
-
'
|
|
22893
|
-
'
|
|
22894
|
-
'
|
|
22895
|
-
'
|
|
22896
|
-
'
|
|
22897
|
-
'
|
|
22898
|
-
'
|
|
22899
|
-
'
|
|
22900
|
-
'
|
|
22901
|
-
'
|
|
22902
|
-
'
|
|
22903
|
-
'
|
|
22904
|
-
'
|
|
22905
|
-
'
|
|
22906
|
-
'
|
|
22907
|
-
'
|
|
22908
|
-
'
|
|
22909
|
-
'
|
|
22910
|
-
'
|
|
22911
|
-
'
|
|
22912
|
-
'
|
|
22913
|
-
'
|
|
22914
|
-
'
|
|
22915
|
-
'
|
|
22916
|
-
'
|
|
22917
|
-
'
|
|
22918
|
-
'
|
|
22919
|
-
'
|
|
22920
|
-
'
|
|
22921
|
-
'
|
|
22922
|
-
'
|
|
22923
|
-
'
|
|
22802
|
+
'ɵɵdefineBase': ɵɵdefineBase,
|
|
22803
|
+
'ɵɵdefineComponent': ɵɵdefineComponent,
|
|
22804
|
+
'ɵɵdefineDirective': ɵɵdefineDirective,
|
|
22805
|
+
'ɵɵdefineInjectable': ɵɵdefineInjectable,
|
|
22806
|
+
'ɵɵdefineInjector': ɵɵdefineInjector,
|
|
22807
|
+
'ɵɵdefineNgModule': ɵɵdefineNgModule,
|
|
22808
|
+
'ɵɵdefinePipe': ɵɵdefinePipe,
|
|
22809
|
+
'ɵɵdirectiveInject': ɵɵdirectiveInject,
|
|
22810
|
+
'ɵɵgetFactoryOf': ɵɵgetFactoryOf,
|
|
22811
|
+
'ɵɵgetInheritedFactory': ɵɵgetInheritedFactory,
|
|
22812
|
+
'ɵɵinject': ɵɵinject,
|
|
22813
|
+
'ɵɵinjectAttribute': ɵɵinjectAttribute,
|
|
22814
|
+
'ɵɵtemplateRefExtractor': ɵɵtemplateRefExtractor,
|
|
22815
|
+
'ɵɵNgOnChangesFeature': ɵɵNgOnChangesFeature,
|
|
22816
|
+
'ɵɵProvidersFeature': ɵɵProvidersFeature,
|
|
22817
|
+
'ɵɵInheritDefinitionFeature': ɵɵInheritDefinitionFeature,
|
|
22818
|
+
'ɵɵelementAttribute': ɵɵelementAttribute,
|
|
22819
|
+
'ɵɵbind': ɵɵbind,
|
|
22820
|
+
'ɵɵcontainer': ɵɵcontainer,
|
|
22821
|
+
'ɵɵnextContext': ɵɵnextContext,
|
|
22822
|
+
'ɵɵcontainerRefreshStart': ɵɵcontainerRefreshStart,
|
|
22823
|
+
'ɵɵcontainerRefreshEnd': ɵɵcontainerRefreshEnd,
|
|
22824
|
+
'ɵɵnamespaceHTML': ɵɵnamespaceHTML,
|
|
22825
|
+
'ɵɵnamespaceMathML': ɵɵnamespaceMathML,
|
|
22826
|
+
'ɵɵnamespaceSVG': ɵɵnamespaceSVG,
|
|
22827
|
+
'ɵɵenableBindings': ɵɵenableBindings,
|
|
22828
|
+
'ɵɵdisableBindings': ɵɵdisableBindings,
|
|
22829
|
+
'ɵɵallocHostVars': ɵɵallocHostVars,
|
|
22830
|
+
'ɵɵelementStart': ɵɵelementStart,
|
|
22831
|
+
'ɵɵelementEnd': ɵɵelementEnd,
|
|
22832
|
+
'ɵɵelement': ɵɵelement,
|
|
22833
|
+
'ɵɵelementContainerStart': ɵɵelementContainerStart,
|
|
22834
|
+
'ɵɵelementContainerEnd': ɵɵelementContainerEnd,
|
|
22835
|
+
'ɵɵpureFunction0': ɵɵpureFunction0,
|
|
22836
|
+
'ɵɵpureFunction1': ɵɵpureFunction1,
|
|
22837
|
+
'ɵɵpureFunction2': ɵɵpureFunction2,
|
|
22838
|
+
'ɵɵpureFunction3': ɵɵpureFunction3,
|
|
22839
|
+
'ɵɵpureFunction4': ɵɵpureFunction4,
|
|
22840
|
+
'ɵɵpureFunction5': ɵɵpureFunction5,
|
|
22841
|
+
'ɵɵpureFunction6': ɵɵpureFunction6,
|
|
22842
|
+
'ɵɵpureFunction7': ɵɵpureFunction7,
|
|
22843
|
+
'ɵɵpureFunction8': ɵɵpureFunction8,
|
|
22844
|
+
'ɵɵpureFunctionV': ɵɵpureFunctionV,
|
|
22845
|
+
'ɵɵgetCurrentView': ɵɵgetCurrentView,
|
|
22846
|
+
'ɵɵrestoreView': ɵɵrestoreView,
|
|
22847
|
+
'ɵɵinterpolation1': ɵɵinterpolation1,
|
|
22848
|
+
'ɵɵinterpolation2': ɵɵinterpolation2,
|
|
22849
|
+
'ɵɵinterpolation3': ɵɵinterpolation3,
|
|
22850
|
+
'ɵɵinterpolation4': ɵɵinterpolation4,
|
|
22851
|
+
'ɵɵinterpolation5': ɵɵinterpolation5,
|
|
22852
|
+
'ɵɵinterpolation6': ɵɵinterpolation6,
|
|
22853
|
+
'ɵɵinterpolation7': ɵɵinterpolation7,
|
|
22854
|
+
'ɵɵinterpolation8': ɵɵinterpolation8,
|
|
22855
|
+
'ɵɵinterpolationV': ɵɵinterpolationV,
|
|
22856
|
+
'ɵɵlistener': ɵɵlistener,
|
|
22857
|
+
'ɵɵload': ɵɵload,
|
|
22858
|
+
'ɵɵprojection': ɵɵprojection,
|
|
22859
|
+
'ɵɵelementProperty': ɵɵelementProperty,
|
|
22860
|
+
'ɵɵcomponentHostSyntheticProperty': ɵɵcomponentHostSyntheticProperty,
|
|
22861
|
+
'ɵɵcomponentHostSyntheticListener': ɵɵcomponentHostSyntheticListener,
|
|
22862
|
+
'ɵɵpipeBind1': ɵɵpipeBind1,
|
|
22863
|
+
'ɵɵpipeBind2': ɵɵpipeBind2,
|
|
22864
|
+
'ɵɵpipeBind3': ɵɵpipeBind3,
|
|
22865
|
+
'ɵɵpipeBind4': ɵɵpipeBind4,
|
|
22866
|
+
'ɵɵpipeBindV': ɵɵpipeBindV,
|
|
22867
|
+
'ɵɵprojectionDef': ɵɵprojectionDef,
|
|
22868
|
+
'ɵɵproperty': ɵɵproperty,
|
|
22869
|
+
'ɵɵpropertyInterpolate': ɵɵpropertyInterpolate,
|
|
22870
|
+
'ɵɵpropertyInterpolate1': ɵɵpropertyInterpolate1,
|
|
22871
|
+
'ɵɵpropertyInterpolate2': ɵɵpropertyInterpolate2,
|
|
22872
|
+
'ɵɵpropertyInterpolate3': ɵɵpropertyInterpolate3,
|
|
22873
|
+
'ɵɵpropertyInterpolate4': ɵɵpropertyInterpolate4,
|
|
22874
|
+
'ɵɵpropertyInterpolate5': ɵɵpropertyInterpolate5,
|
|
22875
|
+
'ɵɵpropertyInterpolate6': ɵɵpropertyInterpolate6,
|
|
22876
|
+
'ɵɵpropertyInterpolate7': ɵɵpropertyInterpolate7,
|
|
22877
|
+
'ɵɵpropertyInterpolate8': ɵɵpropertyInterpolate8,
|
|
22878
|
+
'ɵɵpropertyInterpolateV': ɵɵpropertyInterpolateV,
|
|
22879
|
+
'ɵɵpipe': ɵɵpipe,
|
|
22880
|
+
'ɵɵqueryRefresh': ɵɵqueryRefresh,
|
|
22881
|
+
'ɵɵviewQuery': ɵɵviewQuery,
|
|
22882
|
+
'ɵɵstaticViewQuery': ɵɵstaticViewQuery,
|
|
22883
|
+
'ɵɵstaticContentQuery': ɵɵstaticContentQuery,
|
|
22884
|
+
'ɵɵloadViewQuery': ɵɵloadViewQuery,
|
|
22885
|
+
'ɵɵcontentQuery': ɵɵcontentQuery,
|
|
22886
|
+
'ɵɵloadContentQuery': ɵɵloadContentQuery,
|
|
22887
|
+
'ɵɵreference': ɵɵreference,
|
|
22888
|
+
'ɵɵelementHostAttrs': ɵɵelementHostAttrs,
|
|
22889
|
+
'ɵɵelementStyling': ɵɵelementStyling,
|
|
22890
|
+
'ɵɵelementStylingMap': ɵɵelementStylingMap,
|
|
22891
|
+
'ɵɵelementStyleProp': ɵɵelementStyleProp,
|
|
22892
|
+
'ɵɵelementStylingApply': ɵɵelementStylingApply,
|
|
22893
|
+
'ɵɵelementClassProp': ɵɵelementClassProp,
|
|
22894
|
+
'ɵɵelementHostStyling': ɵɵelementHostStyling,
|
|
22895
|
+
'ɵɵelementHostStylingMap': ɵɵelementHostStylingMap,
|
|
22896
|
+
'ɵɵelementHostStyleProp': ɵɵelementHostStyleProp,
|
|
22897
|
+
'ɵɵelementHostStylingApply': ɵɵelementHostStylingApply,
|
|
22898
|
+
'ɵɵelementHostClassProp': ɵɵelementHostClassProp,
|
|
22899
|
+
'ɵɵselect': ɵɵselect,
|
|
22900
|
+
'ɵɵtemplate': ɵɵtemplate,
|
|
22901
|
+
'ɵɵtext': ɵɵtext,
|
|
22902
|
+
'ɵɵtextBinding': ɵɵtextBinding,
|
|
22903
|
+
'ɵɵembeddedViewStart': ɵɵembeddedViewStart,
|
|
22904
|
+
'ɵɵembeddedViewEnd': ɵɵembeddedViewEnd,
|
|
22905
|
+
'ɵɵi18n': ɵɵi18n,
|
|
22906
|
+
'ɵɵi18nAttributes': ɵɵi18nAttributes,
|
|
22907
|
+
'ɵɵi18nExp': ɵɵi18nExp,
|
|
22908
|
+
'ɵɵi18nStart': ɵɵi18nStart,
|
|
22909
|
+
'ɵɵi18nEnd': ɵɵi18nEnd,
|
|
22910
|
+
'ɵɵi18nApply': ɵɵi18nApply,
|
|
22911
|
+
'ɵɵi18nPostprocess': ɵɵi18nPostprocess,
|
|
22912
|
+
'ɵɵi18nLocalize': ɵɵi18nLocalize,
|
|
22913
|
+
'ɵɵresolveWindow': ɵɵresolveWindow,
|
|
22914
|
+
'ɵɵresolveDocument': ɵɵresolveDocument,
|
|
22915
|
+
'ɵɵresolveBody': ɵɵresolveBody,
|
|
22916
|
+
'ɵɵsetComponentScope': ɵɵsetComponentScope,
|
|
22917
|
+
'ɵɵsetNgModuleScope': ɵɵsetNgModuleScope,
|
|
22918
|
+
'ɵɵsanitizeHtml': ɵɵsanitizeHtml,
|
|
22919
|
+
'ɵɵsanitizeStyle': ɵɵsanitizeStyle,
|
|
22920
|
+
'ɵɵdefaultStyleSanitizer': ɵɵdefaultStyleSanitizer,
|
|
22921
|
+
'ɵɵsanitizeResourceUrl': ɵɵsanitizeResourceUrl,
|
|
22922
|
+
'ɵɵsanitizeScript': ɵɵsanitizeScript,
|
|
22923
|
+
'ɵɵsanitizeUrl': ɵɵsanitizeUrl,
|
|
22924
|
+
'ɵɵsanitizeUrlOrResourceUrl': ɵɵsanitizeUrlOrResourceUrl,
|
|
22924
22925
|
'ɵregisterNgModuleType': registerNgModuleType,
|
|
22925
22926
|
}); };
|
|
22926
22927
|
/**
|
|
@@ -23009,11 +23010,13 @@
|
|
|
23009
23010
|
if (ngModuleDef === null) {
|
|
23010
23011
|
ngModuleDef = getCompilerFacade().compileNgModule(angularCoreEnv, "ng:///" + moduleType.name + "/ngModuleDef.js", {
|
|
23011
23012
|
type: moduleType,
|
|
23012
|
-
bootstrap: flatten(ngModule.bootstrap || EMPTY_ARRAY$4
|
|
23013
|
+
bootstrap: flatten(ngModule.bootstrap || EMPTY_ARRAY$4).map(resolveForwardRef),
|
|
23013
23014
|
declarations: declarations.map(resolveForwardRef),
|
|
23014
|
-
imports: flatten(ngModule.imports || EMPTY_ARRAY$4
|
|
23015
|
+
imports: flatten(ngModule.imports || EMPTY_ARRAY$4)
|
|
23016
|
+
.map(resolveForwardRef)
|
|
23015
23017
|
.map(expandModuleWithProviders),
|
|
23016
|
-
exports: flatten(ngModule.exports || EMPTY_ARRAY$4
|
|
23018
|
+
exports: flatten(ngModule.exports || EMPTY_ARRAY$4)
|
|
23019
|
+
.map(resolveForwardRef)
|
|
23017
23020
|
.map(expandModuleWithProviders),
|
|
23018
23021
|
emitInline: true,
|
|
23019
23022
|
schemas: ngModule.schemas ? flatten(ngModule.schemas) : null,
|
|
@@ -23057,17 +23060,18 @@
|
|
|
23057
23060
|
var errors = [];
|
|
23058
23061
|
var declarations = maybeUnwrapFn(ngModuleDef.declarations);
|
|
23059
23062
|
var imports = maybeUnwrapFn(ngModuleDef.imports);
|
|
23060
|
-
flatten(imports
|
|
23063
|
+
flatten(imports).map(unwrapModuleWithProvidersImports).forEach(verifySemanticsOfNgModuleDef);
|
|
23061
23064
|
var exports = maybeUnwrapFn(ngModuleDef.exports);
|
|
23062
23065
|
declarations.forEach(verifyDeclarationsHaveDefinitions);
|
|
23063
|
-
var combinedDeclarations = __spread(declarations.map(resolveForwardRef), flatten(imports.map(computeCombinedExports)
|
|
23066
|
+
var combinedDeclarations = __spread(declarations.map(resolveForwardRef), flatten(imports.map(computeCombinedExports)).map(resolveForwardRef));
|
|
23064
23067
|
exports.forEach(verifyExportsAreDeclaredOrReExported);
|
|
23065
23068
|
declarations.forEach(verifyDeclarationIsUnique);
|
|
23066
23069
|
declarations.forEach(verifyComponentEntryComponentsIsPartOfNgModule);
|
|
23067
23070
|
var ngModule = getAnnotation(moduleType, 'NgModule');
|
|
23068
23071
|
if (ngModule) {
|
|
23069
23072
|
ngModule.imports &&
|
|
23070
|
-
flatten(ngModule.imports
|
|
23073
|
+
flatten(ngModule.imports)
|
|
23074
|
+
.map(unwrapModuleWithProvidersImports)
|
|
23071
23075
|
.forEach(verifySemanticsOfNgModuleDef);
|
|
23072
23076
|
ngModule.bootstrap && ngModule.bootstrap.forEach(verifyCorrectBootstrapType);
|
|
23073
23077
|
ngModule.bootstrap && ngModule.bootstrap.forEach(verifyComponentIsPartOfNgModule);
|
|
@@ -23737,7 +23741,7 @@
|
|
|
23737
23741
|
if (metadata && metadata.exports) {
|
|
23738
23742
|
imports = __spread(imports, [metadata.exports]);
|
|
23739
23743
|
}
|
|
23740
|
-
moduleType.ngInjectorDef =
|
|
23744
|
+
moduleType.ngInjectorDef = ɵɵdefineInjector({
|
|
23741
23745
|
factory: convertInjectableProviderToFactory(moduleType, { useClass: moduleType }),
|
|
23742
23746
|
providers: metadata && metadata.providers,
|
|
23743
23747
|
imports: imports,
|
|
@@ -24093,6 +24097,7 @@
|
|
|
24093
24097
|
* an exception is expected during normal execution while profiling.
|
|
24094
24098
|
*
|
|
24095
24099
|
* @publicApi
|
|
24100
|
+
* @deprecated the Web Tracing Framework is no longer supported in Angular
|
|
24096
24101
|
*/
|
|
24097
24102
|
var wtfCreateScope = wtfEnabled ? createScope : function (signature, flags) { return noopScope; };
|
|
24098
24103
|
/**
|
|
@@ -24103,6 +24108,7 @@
|
|
|
24103
24108
|
*
|
|
24104
24109
|
* Returns the `returnValue for easy chaining.
|
|
24105
24110
|
* @publicApi
|
|
24111
|
+
* @deprecated the Web Tracing Framework is no longer supported in Angular
|
|
24106
24112
|
*/
|
|
24107
24113
|
var wtfLeave = wtfEnabled ? leave : function (s, r) { return r; };
|
|
24108
24114
|
/**
|
|
@@ -24117,6 +24123,7 @@
|
|
|
24117
24123
|
* });
|
|
24118
24124
|
* }
|
|
24119
24125
|
* @publicApi
|
|
24126
|
+
* @deprecated the Web Tracing Framework is no longer supported in Angular
|
|
24120
24127
|
*/
|
|
24121
24128
|
var wtfStartTimeRange = wtfEnabled ? startTimeRange : function (rangeType, action) { return null; };
|
|
24122
24129
|
/**
|
|
@@ -24124,6 +24131,7 @@
|
|
|
24124
24131
|
* [range] is the return value from [wtfStartTimeRange] Async ranges only work if WTF has been
|
|
24125
24132
|
* enabled.
|
|
24126
24133
|
* @publicApi
|
|
24134
|
+
* @deprecated the Web Tracing Framework is no longer supported in Angular
|
|
24127
24135
|
*/
|
|
24128
24136
|
var wtfEndTimeRange = wtfEnabled ? endTimeRange : function (r) { return null; };
|
|
24129
24137
|
|
|
@@ -28826,18 +28834,16 @@
|
|
|
28826
28834
|
exports.NO_ERRORS_SCHEMA = NO_ERRORS_SCHEMA;
|
|
28827
28835
|
exports.Version = Version;
|
|
28828
28836
|
exports.VERSION = VERSION;
|
|
28829
|
-
exports.ΔdefineInjectable = ΔdefineInjectable;
|
|
28830
|
-
exports.defineInjectable = defineInjectable;
|
|
28831
28837
|
exports.ɵɵdefineInjectable = ɵɵdefineInjectable;
|
|
28832
|
-
exports
|
|
28838
|
+
exports.defineInjectable = defineInjectable;
|
|
28839
|
+
exports.ɵɵdefineInjector = ɵɵdefineInjector;
|
|
28833
28840
|
exports.forwardRef = forwardRef;
|
|
28834
28841
|
exports.resolveForwardRef = resolveForwardRef;
|
|
28835
28842
|
exports.Injectable = Injectable;
|
|
28836
28843
|
exports.INJECTOR = INJECTOR;
|
|
28837
28844
|
exports.Injector = Injector;
|
|
28838
|
-
exports.Δinject = Δinject;
|
|
28839
|
-
exports.inject = inject;
|
|
28840
28845
|
exports.ɵɵinject = ɵɵinject;
|
|
28846
|
+
exports.inject = inject;
|
|
28841
28847
|
exports.ReflectiveInjector = ReflectiveInjector;
|
|
28842
28848
|
exports.ResolvedReflectiveFactory = ResolvedReflectiveFactory;
|
|
28843
28849
|
exports.ReflectiveKey = ReflectiveKey;
|
|
@@ -28914,134 +28920,134 @@
|
|
|
28914
28920
|
exports.ɵoverrideComponentView = overrideComponentView;
|
|
28915
28921
|
exports.ɵoverrideProvider = overrideProvider;
|
|
28916
28922
|
exports.ɵNOT_FOUND_CHECK_ONLY_ELEMENT_INJECTOR = NOT_FOUND_CHECK_ONLY_ELEMENT_INJECTOR;
|
|
28917
|
-
exports
|
|
28918
|
-
exports
|
|
28919
|
-
exports
|
|
28920
|
-
exports
|
|
28921
|
-
exports
|
|
28923
|
+
exports.ɵɵdefineBase = ɵɵdefineBase;
|
|
28924
|
+
exports.ɵɵdefineComponent = ɵɵdefineComponent;
|
|
28925
|
+
exports.ɵɵdefineDirective = ɵɵdefineDirective;
|
|
28926
|
+
exports.ɵɵdefinePipe = ɵɵdefinePipe;
|
|
28927
|
+
exports.ɵɵdefineNgModule = ɵɵdefineNgModule;
|
|
28922
28928
|
exports.ɵdetectChanges = detectChanges;
|
|
28923
28929
|
exports.ɵrenderComponent = renderComponent;
|
|
28924
28930
|
exports.ɵRender3ComponentFactory = ComponentFactory$1;
|
|
28925
28931
|
exports.ɵRender3ComponentRef = ComponentRef$1;
|
|
28926
|
-
exports
|
|
28927
|
-
exports
|
|
28928
|
-
exports
|
|
28929
|
-
exports
|
|
28930
|
-
exports
|
|
28931
|
-
exports
|
|
28932
|
-
exports
|
|
28933
|
-
exports
|
|
28934
|
-
exports
|
|
28935
|
-
exports
|
|
28932
|
+
exports.ɵɵdirectiveInject = ɵɵdirectiveInject;
|
|
28933
|
+
exports.ɵɵinjectAttribute = ɵɵinjectAttribute;
|
|
28934
|
+
exports.ɵɵgetFactoryOf = ɵɵgetFactoryOf;
|
|
28935
|
+
exports.ɵɵgetInheritedFactory = ɵɵgetInheritedFactory;
|
|
28936
|
+
exports.ɵɵsetComponentScope = ɵɵsetComponentScope;
|
|
28937
|
+
exports.ɵɵsetNgModuleScope = ɵɵsetNgModuleScope;
|
|
28938
|
+
exports.ɵɵtemplateRefExtractor = ɵɵtemplateRefExtractor;
|
|
28939
|
+
exports.ɵɵProvidersFeature = ɵɵProvidersFeature;
|
|
28940
|
+
exports.ɵɵInheritDefinitionFeature = ɵɵInheritDefinitionFeature;
|
|
28941
|
+
exports.ɵɵNgOnChangesFeature = ɵɵNgOnChangesFeature;
|
|
28936
28942
|
exports.ɵLifecycleHooksFeature = LifecycleHooksFeature;
|
|
28937
28943
|
exports.ɵRender3NgModuleRef = NgModuleRef$1;
|
|
28938
28944
|
exports.ɵmarkDirty = markDirty;
|
|
28939
28945
|
exports.ɵNgModuleFactory = NgModuleFactory$1;
|
|
28940
28946
|
exports.ɵNO_CHANGE = NO_CHANGE;
|
|
28941
|
-
exports
|
|
28942
|
-
exports
|
|
28943
|
-
exports
|
|
28944
|
-
exports
|
|
28945
|
-
exports
|
|
28946
|
-
exports
|
|
28947
|
-
exports
|
|
28948
|
-
exports
|
|
28949
|
-
exports
|
|
28950
|
-
exports
|
|
28951
|
-
exports
|
|
28952
|
-
exports
|
|
28953
|
-
exports
|
|
28954
|
-
exports
|
|
28955
|
-
exports
|
|
28956
|
-
exports
|
|
28957
|
-
exports
|
|
28958
|
-
exports
|
|
28959
|
-
exports
|
|
28960
|
-
exports
|
|
28961
|
-
exports
|
|
28962
|
-
exports
|
|
28963
|
-
exports
|
|
28964
|
-
exports
|
|
28965
|
-
exports
|
|
28966
|
-
exports
|
|
28967
|
-
exports
|
|
28968
|
-
exports
|
|
28969
|
-
exports
|
|
28970
|
-
exports
|
|
28971
|
-
exports
|
|
28972
|
-
exports
|
|
28973
|
-
exports
|
|
28974
|
-
exports
|
|
28975
|
-
exports
|
|
28976
|
-
exports
|
|
28977
|
-
exports
|
|
28947
|
+
exports.ɵɵcontainer = ɵɵcontainer;
|
|
28948
|
+
exports.ɵɵnextContext = ɵɵnextContext;
|
|
28949
|
+
exports.ɵɵelementStart = ɵɵelementStart;
|
|
28950
|
+
exports.ɵɵnamespaceHTML = ɵɵnamespaceHTML;
|
|
28951
|
+
exports.ɵɵnamespaceMathML = ɵɵnamespaceMathML;
|
|
28952
|
+
exports.ɵɵnamespaceSVG = ɵɵnamespaceSVG;
|
|
28953
|
+
exports.ɵɵelement = ɵɵelement;
|
|
28954
|
+
exports.ɵɵlistener = ɵɵlistener;
|
|
28955
|
+
exports.ɵɵtext = ɵɵtext;
|
|
28956
|
+
exports.ɵɵembeddedViewStart = ɵɵembeddedViewStart;
|
|
28957
|
+
exports.ɵɵprojection = ɵɵprojection;
|
|
28958
|
+
exports.ɵɵbind = ɵɵbind;
|
|
28959
|
+
exports.ɵɵinterpolation1 = ɵɵinterpolation1;
|
|
28960
|
+
exports.ɵɵinterpolation2 = ɵɵinterpolation2;
|
|
28961
|
+
exports.ɵɵinterpolation3 = ɵɵinterpolation3;
|
|
28962
|
+
exports.ɵɵinterpolation4 = ɵɵinterpolation4;
|
|
28963
|
+
exports.ɵɵinterpolation5 = ɵɵinterpolation5;
|
|
28964
|
+
exports.ɵɵinterpolation6 = ɵɵinterpolation6;
|
|
28965
|
+
exports.ɵɵinterpolation7 = ɵɵinterpolation7;
|
|
28966
|
+
exports.ɵɵinterpolation8 = ɵɵinterpolation8;
|
|
28967
|
+
exports.ɵɵinterpolationV = ɵɵinterpolationV;
|
|
28968
|
+
exports.ɵɵpipeBind1 = ɵɵpipeBind1;
|
|
28969
|
+
exports.ɵɵpipeBind2 = ɵɵpipeBind2;
|
|
28970
|
+
exports.ɵɵpipeBind3 = ɵɵpipeBind3;
|
|
28971
|
+
exports.ɵɵpipeBind4 = ɵɵpipeBind4;
|
|
28972
|
+
exports.ɵɵpipeBindV = ɵɵpipeBindV;
|
|
28973
|
+
exports.ɵɵpureFunction0 = ɵɵpureFunction0;
|
|
28974
|
+
exports.ɵɵpureFunction1 = ɵɵpureFunction1;
|
|
28975
|
+
exports.ɵɵpureFunction2 = ɵɵpureFunction2;
|
|
28976
|
+
exports.ɵɵpureFunction3 = ɵɵpureFunction3;
|
|
28977
|
+
exports.ɵɵpureFunction4 = ɵɵpureFunction4;
|
|
28978
|
+
exports.ɵɵpureFunction5 = ɵɵpureFunction5;
|
|
28979
|
+
exports.ɵɵpureFunction6 = ɵɵpureFunction6;
|
|
28980
|
+
exports.ɵɵpureFunction7 = ɵɵpureFunction7;
|
|
28981
|
+
exports.ɵɵpureFunction8 = ɵɵpureFunction8;
|
|
28982
|
+
exports.ɵɵpureFunctionV = ɵɵpureFunctionV;
|
|
28983
|
+
exports.ɵɵgetCurrentView = ɵɵgetCurrentView;
|
|
28978
28984
|
exports.ɵgetDirectives = getDirectives;
|
|
28979
28985
|
exports.ɵgetHostElement = getHostElement;
|
|
28980
|
-
exports
|
|
28981
|
-
exports
|
|
28982
|
-
exports
|
|
28983
|
-
exports
|
|
28984
|
-
exports
|
|
28985
|
-
exports
|
|
28986
|
-
exports
|
|
28987
|
-
exports
|
|
28988
|
-
exports
|
|
28989
|
-
exports
|
|
28990
|
-
exports
|
|
28991
|
-
exports
|
|
28992
|
-
exports
|
|
28993
|
-
exports
|
|
28994
|
-
exports
|
|
28995
|
-
exports
|
|
28996
|
-
exports
|
|
28997
|
-
exports
|
|
28998
|
-
exports
|
|
28999
|
-
exports
|
|
29000
|
-
exports
|
|
29001
|
-
exports
|
|
29002
|
-
exports
|
|
29003
|
-
exports
|
|
29004
|
-
exports
|
|
29005
|
-
exports
|
|
29006
|
-
exports
|
|
29007
|
-
exports
|
|
29008
|
-
exports
|
|
29009
|
-
exports
|
|
29010
|
-
exports
|
|
29011
|
-
exports
|
|
29012
|
-
exports
|
|
29013
|
-
exports
|
|
29014
|
-
exports
|
|
29015
|
-
exports
|
|
29016
|
-
exports
|
|
29017
|
-
exports
|
|
29018
|
-
exports
|
|
29019
|
-
exports
|
|
29020
|
-
exports
|
|
29021
|
-
exports
|
|
29022
|
-
exports
|
|
29023
|
-
exports
|
|
29024
|
-
exports
|
|
29025
|
-
exports
|
|
29026
|
-
exports
|
|
29027
|
-
exports
|
|
28986
|
+
exports.ɵɵrestoreView = ɵɵrestoreView;
|
|
28987
|
+
exports.ɵɵcontainerRefreshStart = ɵɵcontainerRefreshStart;
|
|
28988
|
+
exports.ɵɵcontainerRefreshEnd = ɵɵcontainerRefreshEnd;
|
|
28989
|
+
exports.ɵɵqueryRefresh = ɵɵqueryRefresh;
|
|
28990
|
+
exports.ɵɵviewQuery = ɵɵviewQuery;
|
|
28991
|
+
exports.ɵɵstaticViewQuery = ɵɵstaticViewQuery;
|
|
28992
|
+
exports.ɵɵstaticContentQuery = ɵɵstaticContentQuery;
|
|
28993
|
+
exports.ɵɵloadViewQuery = ɵɵloadViewQuery;
|
|
28994
|
+
exports.ɵɵcontentQuery = ɵɵcontentQuery;
|
|
28995
|
+
exports.ɵɵloadContentQuery = ɵɵloadContentQuery;
|
|
28996
|
+
exports.ɵɵelementEnd = ɵɵelementEnd;
|
|
28997
|
+
exports.ɵɵelementProperty = ɵɵelementProperty;
|
|
28998
|
+
exports.ɵɵproperty = ɵɵproperty;
|
|
28999
|
+
exports.ɵɵpropertyInterpolate = ɵɵpropertyInterpolate;
|
|
29000
|
+
exports.ɵɵpropertyInterpolate1 = ɵɵpropertyInterpolate1;
|
|
29001
|
+
exports.ɵɵpropertyInterpolate2 = ɵɵpropertyInterpolate2;
|
|
29002
|
+
exports.ɵɵpropertyInterpolate3 = ɵɵpropertyInterpolate3;
|
|
29003
|
+
exports.ɵɵpropertyInterpolate4 = ɵɵpropertyInterpolate4;
|
|
29004
|
+
exports.ɵɵpropertyInterpolate5 = ɵɵpropertyInterpolate5;
|
|
29005
|
+
exports.ɵɵpropertyInterpolate6 = ɵɵpropertyInterpolate6;
|
|
29006
|
+
exports.ɵɵpropertyInterpolate7 = ɵɵpropertyInterpolate7;
|
|
29007
|
+
exports.ɵɵpropertyInterpolate8 = ɵɵpropertyInterpolate8;
|
|
29008
|
+
exports.ɵɵpropertyInterpolateV = ɵɵpropertyInterpolateV;
|
|
29009
|
+
exports.ɵɵcomponentHostSyntheticProperty = ɵɵcomponentHostSyntheticProperty;
|
|
29010
|
+
exports.ɵɵcomponentHostSyntheticListener = ɵɵcomponentHostSyntheticListener;
|
|
29011
|
+
exports.ɵɵprojectionDef = ɵɵprojectionDef;
|
|
29012
|
+
exports.ɵɵreference = ɵɵreference;
|
|
29013
|
+
exports.ɵɵenableBindings = ɵɵenableBindings;
|
|
29014
|
+
exports.ɵɵdisableBindings = ɵɵdisableBindings;
|
|
29015
|
+
exports.ɵɵallocHostVars = ɵɵallocHostVars;
|
|
29016
|
+
exports.ɵɵelementAttribute = ɵɵelementAttribute;
|
|
29017
|
+
exports.ɵɵelementContainerStart = ɵɵelementContainerStart;
|
|
29018
|
+
exports.ɵɵelementContainerEnd = ɵɵelementContainerEnd;
|
|
29019
|
+
exports.ɵɵelementStyling = ɵɵelementStyling;
|
|
29020
|
+
exports.ɵɵelementStylingMap = ɵɵelementStylingMap;
|
|
29021
|
+
exports.ɵɵelementStyleProp = ɵɵelementStyleProp;
|
|
29022
|
+
exports.ɵɵelementStylingApply = ɵɵelementStylingApply;
|
|
29023
|
+
exports.ɵɵelementClassProp = ɵɵelementClassProp;
|
|
29024
|
+
exports.ɵɵelementHostAttrs = ɵɵelementHostAttrs;
|
|
29025
|
+
exports.ɵɵelementHostStyling = ɵɵelementHostStyling;
|
|
29026
|
+
exports.ɵɵelementHostStylingMap = ɵɵelementHostStylingMap;
|
|
29027
|
+
exports.ɵɵelementHostStyleProp = ɵɵelementHostStyleProp;
|
|
29028
|
+
exports.ɵɵelementHostClassProp = ɵɵelementHostClassProp;
|
|
29029
|
+
exports.ɵɵelementHostStylingApply = ɵɵelementHostStylingApply;
|
|
29030
|
+
exports.ɵɵselect = ɵɵselect;
|
|
29031
|
+
exports.ɵɵtextBinding = ɵɵtextBinding;
|
|
29032
|
+
exports.ɵɵtemplate = ɵɵtemplate;
|
|
29033
|
+
exports.ɵɵembeddedViewEnd = ɵɵembeddedViewEnd;
|
|
29028
29034
|
exports.ɵstore = store;
|
|
29029
|
-
exports
|
|
29030
|
-
exports
|
|
29035
|
+
exports.ɵɵload = ɵɵload;
|
|
29036
|
+
exports.ɵɵpipe = ɵɵpipe;
|
|
29031
29037
|
exports.ɵwhenRendered = whenRendered;
|
|
29032
|
-
exports
|
|
29033
|
-
exports
|
|
29034
|
-
exports
|
|
29035
|
-
exports
|
|
29036
|
-
exports
|
|
29037
|
-
exports
|
|
29038
|
-
exports
|
|
29038
|
+
exports.ɵɵi18n = ɵɵi18n;
|
|
29039
|
+
exports.ɵɵi18nAttributes = ɵɵi18nAttributes;
|
|
29040
|
+
exports.ɵɵi18nExp = ɵɵi18nExp;
|
|
29041
|
+
exports.ɵɵi18nStart = ɵɵi18nStart;
|
|
29042
|
+
exports.ɵɵi18nEnd = ɵɵi18nEnd;
|
|
29043
|
+
exports.ɵɵi18nApply = ɵɵi18nApply;
|
|
29044
|
+
exports.ɵɵi18nPostprocess = ɵɵi18nPostprocess;
|
|
29039
29045
|
exports.ɵi18nConfigureLocalize = i18nConfigureLocalize;
|
|
29040
|
-
exports
|
|
29046
|
+
exports.ɵɵi18nLocalize = ɵɵi18nLocalize;
|
|
29041
29047
|
exports.ɵsetClassMetadata = setClassMetadata;
|
|
29042
|
-
exports
|
|
29043
|
-
exports
|
|
29044
|
-
exports
|
|
29048
|
+
exports.ɵɵresolveWindow = ɵɵresolveWindow;
|
|
29049
|
+
exports.ɵɵresolveDocument = ɵɵresolveDocument;
|
|
29050
|
+
exports.ɵɵresolveBody = ɵɵresolveBody;
|
|
29045
29051
|
exports.ɵcompileComponent = compileComponent;
|
|
29046
29052
|
exports.ɵcompileDirective = compileDirective;
|
|
29047
29053
|
exports.ɵcompileNgModule = compileNgModule;
|
|
@@ -29051,13 +29057,13 @@
|
|
|
29051
29057
|
exports.ɵflushModuleScopingQueueAsMuchAsPossible = flushModuleScopingQueueAsMuchAsPossible;
|
|
29052
29058
|
exports.ɵtransitiveScopesFor = transitiveScopesFor;
|
|
29053
29059
|
exports.ɵcompilePipe = compilePipe;
|
|
29054
|
-
exports
|
|
29055
|
-
exports
|
|
29056
|
-
exports
|
|
29057
|
-
exports
|
|
29058
|
-
exports
|
|
29059
|
-
exports
|
|
29060
|
-
exports
|
|
29060
|
+
exports.ɵɵsanitizeHtml = ɵɵsanitizeHtml;
|
|
29061
|
+
exports.ɵɵsanitizeStyle = ɵɵsanitizeStyle;
|
|
29062
|
+
exports.ɵɵdefaultStyleSanitizer = ɵɵdefaultStyleSanitizer;
|
|
29063
|
+
exports.ɵɵsanitizeScript = ɵɵsanitizeScript;
|
|
29064
|
+
exports.ɵɵsanitizeUrl = ɵɵsanitizeUrl;
|
|
29065
|
+
exports.ɵɵsanitizeResourceUrl = ɵɵsanitizeResourceUrl;
|
|
29066
|
+
exports.ɵɵsanitizeUrlOrResourceUrl = ɵɵsanitizeUrlOrResourceUrl;
|
|
29061
29067
|
exports.ɵbypassSanitizationTrustHtml = bypassSanitizationTrustHtml;
|
|
29062
29068
|
exports.ɵbypassSanitizationTrustStyle = bypassSanitizationTrustStyle;
|
|
29063
29069
|
exports.ɵbypassSanitizationTrustScript = bypassSanitizationTrustScript;
|