@angular/core 19.2.15 → 19.2.17
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/event_dispatcher.d-K56StcHr.d.ts +1 -1
- package/fesm2022/core.mjs +520 -483
- package/fesm2022/core.mjs.map +1 -1
- package/fesm2022/primitives/di.mjs +1 -1
- package/fesm2022/primitives/di.mjs.map +1 -1
- package/fesm2022/primitives/event-dispatch.mjs +1 -1
- package/fesm2022/primitives/event-dispatch.mjs.map +1 -1
- package/fesm2022/primitives/signals.mjs +1 -1
- package/fesm2022/primitives/signals.mjs.map +1 -1
- package/fesm2022/rxjs-interop.mjs +1 -1
- package/fesm2022/rxjs-interop.mjs.map +1 -1
- package/fesm2022/testing.mjs +1 -1
- package/fesm2022/testing.mjs.map +1 -1
- package/fesm2022/untracked-BKcld_ew.mjs +1 -1
- package/fesm2022/untracked-BKcld_ew.mjs.map +1 -1
- package/index.d.ts +11 -10
- package/navigation_types.d-fAxd92YV.d.ts +1 -1
- package/package.json +1 -1
- package/primitives/di/index.d.ts +1 -1
- package/primitives/event-dispatch/index.d.ts +1 -1
- package/primitives/signals/index.d.ts +1 -1
- package/rxjs-interop/index.d.ts +1 -1
- package/schematics/bundles/add-bootstrap-context-to-server-main.cjs +2 -2
- package/schematics/bundles/{apply_import_manager-DF0BUe6N.cjs → apply_import_manager-BJETGeOK.cjs} +3 -3
- package/schematics/bundles/{change_tracker-BfH3nBIf.cjs → change_tracker-DCYvDUoh.cjs} +2 -2
- package/schematics/bundles/{checker-BwV9MjSQ.cjs → checker-3NZgzGls.cjs} +103 -69
- package/schematics/bundles/cleanup-unused-imports.cjs +5 -5
- package/schematics/bundles/compiler_host-CAfDJO3W.cjs +1 -1
- package/schematics/bundles/control-flow-migration.cjs +3 -3
- package/schematics/bundles/explicit-standalone-flag.cjs +3 -3
- package/schematics/bundles/imports-CIX-JgAN.cjs +1 -1
- package/schematics/bundles/{index-B6p5mHIY.cjs → index-CVdD79i5.cjs} +4 -4
- package/schematics/bundles/{index-BnJH1Hc7.cjs → index-CZ9tBi9p.cjs} +12 -12
- package/schematics/bundles/inject-migration.cjs +3 -3
- package/schematics/bundles/leading_space-D9nQ8UQC.cjs +1 -1
- package/schematics/bundles/{migrate_ts_type_references-DQe6JtwN.cjs → migrate_ts_type_references-CvSO8ojl.cjs} +5 -5
- package/schematics/bundles/ng_decorators-B5HCqr20.cjs +1 -1
- package/schematics/bundles/nodes-B16H9JUd.cjs +1 -1
- package/schematics/bundles/output-migration.cjs +6 -6
- package/schematics/bundles/pending-tasks.cjs +3 -3
- package/schematics/bundles/{project_paths-DY3SIODd.cjs → project_paths-iOxGOuAR.cjs} +3 -3
- package/schematics/bundles/project_tsconfig_paths-CDVxT6Ov.cjs +1 -1
- package/schematics/bundles/property_name-BBwFuqMe.cjs +1 -1
- package/schematics/bundles/provide-initializer.cjs +3 -3
- package/schematics/bundles/route-lazy-loading.cjs +3 -3
- package/schematics/bundles/self-closing-tags-migration.cjs +4 -4
- package/schematics/bundles/signal-input-migration.cjs +7 -7
- package/schematics/bundles/signal-queries-migration.cjs +7 -7
- package/schematics/bundles/signals.cjs +7 -7
- package/schematics/bundles/standalone-migration.cjs +4 -4
- package/testing/index.d.ts +1 -1
- package/weak_ref.d-DWHPG08n.d.ts +1 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
/**
|
|
3
|
-
* @license Angular v19.2.
|
|
3
|
+
* @license Angular v19.2.17
|
|
4
4
|
* (c) 2010-2025 Google LLC. https://angular.io/
|
|
5
5
|
* License: MIT
|
|
6
6
|
*/
|
|
@@ -468,6 +468,7 @@ var SecurityContext;
|
|
|
468
468
|
SecurityContext[SecurityContext["SCRIPT"] = 3] = "SCRIPT";
|
|
469
469
|
SecurityContext[SecurityContext["URL"] = 4] = "URL";
|
|
470
470
|
SecurityContext[SecurityContext["RESOURCE_URL"] = 5] = "RESOURCE_URL";
|
|
471
|
+
SecurityContext[SecurityContext["ATTRIBUTE_NO_BINDING"] = 6] = "ATTRIBUTE_NO_BINDING";
|
|
471
472
|
})(SecurityContext || (SecurityContext = {}));
|
|
472
473
|
var MissingTranslationStrategy;
|
|
473
474
|
(function (MissingTranslationStrategy) {
|
|
@@ -2979,6 +2980,10 @@ class Identifiers {
|
|
|
2979
2980
|
// sanitization-related functions
|
|
2980
2981
|
static sanitizeHtml = { name: 'ɵɵsanitizeHtml', moduleName: CORE };
|
|
2981
2982
|
static sanitizeStyle = { name: 'ɵɵsanitizeStyle', moduleName: CORE };
|
|
2983
|
+
static validateAttribute = {
|
|
2984
|
+
name: 'ɵɵvalidateAttribute',
|
|
2985
|
+
moduleName: CORE,
|
|
2986
|
+
};
|
|
2982
2987
|
static sanitizeResourceUrl = {
|
|
2983
2988
|
name: 'ɵɵsanitizeResourceUrl',
|
|
2984
2989
|
moduleName: CORE,
|
|
@@ -2994,10 +2999,6 @@ class Identifiers {
|
|
|
2994
2999
|
name: 'ɵɵtrustConstantResourceUrl',
|
|
2995
3000
|
moduleName: CORE,
|
|
2996
3001
|
};
|
|
2997
|
-
static validateIframeAttribute = {
|
|
2998
|
-
name: 'ɵɵvalidateIframeAttribute',
|
|
2999
|
-
moduleName: CORE,
|
|
3000
|
-
};
|
|
3001
3002
|
// type-checking
|
|
3002
3003
|
static InputSignalBrandWriteType = { name: 'ɵINPUT_SIGNAL_BRAND_WRITE_TYPE', moduleName: CORE };
|
|
3003
3004
|
static UnwrapDirectiveSignalInputs = { name: 'ɵUnwrapDirectiveSignalInputs', moduleName: CORE };
|
|
@@ -19359,7 +19360,6 @@ function interleave(left, right) {
|
|
|
19359
19360
|
// =================================================================================================
|
|
19360
19361
|
//
|
|
19361
19362
|
// DO NOT EDIT THIS LIST OF SECURITY SENSITIVE PROPERTIES WITHOUT A SECURITY REVIEW!
|
|
19362
|
-
// Reach out to mprobst for details.
|
|
19363
19363
|
//
|
|
19364
19364
|
// =================================================================================================
|
|
19365
19365
|
/** Map from tagName|propertyName to SecurityContext. Properties applying to all tags use '*'. */
|
|
@@ -19377,6 +19377,7 @@ function SECURITY_SCHEMA() {
|
|
|
19377
19377
|
'area|ping',
|
|
19378
19378
|
'audio|src',
|
|
19379
19379
|
'a|href',
|
|
19380
|
+
'a|xlink:href',
|
|
19380
19381
|
'a|ping',
|
|
19381
19382
|
'blockquote|cite',
|
|
19382
19383
|
'body|background',
|
|
@@ -19390,6 +19391,74 @@ function SECURITY_SCHEMA() {
|
|
|
19390
19391
|
'track|src',
|
|
19391
19392
|
'video|poster',
|
|
19392
19393
|
'video|src',
|
|
19394
|
+
// MathML namespace
|
|
19395
|
+
// https://crsrc.org/c/third_party/blink/renderer/core/sanitizer/sanitizer.cc;l=753-768;drc=b3eb16372dcd3317d65e9e0265015e322494edcd;bpv=1;bpt=1
|
|
19396
|
+
'annotation|href',
|
|
19397
|
+
'annotation|xlink:href',
|
|
19398
|
+
'annotation-xml|href',
|
|
19399
|
+
'annotation-xml|xlink:href',
|
|
19400
|
+
'maction|href',
|
|
19401
|
+
'maction|xlink:href',
|
|
19402
|
+
'malignmark|href',
|
|
19403
|
+
'malignmark|xlink:href',
|
|
19404
|
+
'math|href',
|
|
19405
|
+
'math|xlink:href',
|
|
19406
|
+
'mroot|href',
|
|
19407
|
+
'mroot|xlink:href',
|
|
19408
|
+
'msqrt|href',
|
|
19409
|
+
'msqrt|xlink:href',
|
|
19410
|
+
'merror|href',
|
|
19411
|
+
'merror|xlink:href',
|
|
19412
|
+
'mfrac|href',
|
|
19413
|
+
'mfrac|xlink:href',
|
|
19414
|
+
'mglyph|href',
|
|
19415
|
+
'mglyph|xlink:href',
|
|
19416
|
+
'msub|href',
|
|
19417
|
+
'msub|xlink:href',
|
|
19418
|
+
'msup|href',
|
|
19419
|
+
'msup|xlink:href',
|
|
19420
|
+
'msubsup|href',
|
|
19421
|
+
'msubsup|xlink:href',
|
|
19422
|
+
'mmultiscripts|href',
|
|
19423
|
+
'mmultiscripts|xlink:href',
|
|
19424
|
+
'mprescripts|href',
|
|
19425
|
+
'mprescripts|xlink:href',
|
|
19426
|
+
'mi|href',
|
|
19427
|
+
'mi|xlink:href',
|
|
19428
|
+
'mn|href',
|
|
19429
|
+
'mn|xlink:href',
|
|
19430
|
+
'mo|href',
|
|
19431
|
+
'mo|xlink:href',
|
|
19432
|
+
'mpadded|href',
|
|
19433
|
+
'mpadded|xlink:href',
|
|
19434
|
+
'mphantom|href',
|
|
19435
|
+
'mphantom|xlink:href',
|
|
19436
|
+
'mrow|href',
|
|
19437
|
+
'mrow|xlink:href',
|
|
19438
|
+
'ms|href',
|
|
19439
|
+
'ms|xlink:href',
|
|
19440
|
+
'mspace|href',
|
|
19441
|
+
'mspace|xlink:href',
|
|
19442
|
+
'mstyle|href',
|
|
19443
|
+
'mstyle|xlink:href',
|
|
19444
|
+
'mtable|href',
|
|
19445
|
+
'mtable|xlink:href',
|
|
19446
|
+
'mtd|href',
|
|
19447
|
+
'mtd|xlink:href',
|
|
19448
|
+
'mtr|href',
|
|
19449
|
+
'mtr|xlink:href',
|
|
19450
|
+
'mtext|href',
|
|
19451
|
+
'mtext|xlink:href',
|
|
19452
|
+
'mover|href',
|
|
19453
|
+
'mover|xlink:href',
|
|
19454
|
+
'munder|href',
|
|
19455
|
+
'munder|xlink:href',
|
|
19456
|
+
'munderover|href',
|
|
19457
|
+
'munderover|xlink:href',
|
|
19458
|
+
'semantics|href',
|
|
19459
|
+
'semantics|xlink:href',
|
|
19460
|
+
'none|href',
|
|
19461
|
+
'none|xlink:href',
|
|
19393
19462
|
]);
|
|
19394
19463
|
registerContext(SecurityContext.RESOURCE_URL, [
|
|
19395
19464
|
'applet|code',
|
|
@@ -19406,6 +19475,29 @@ function SECURITY_SCHEMA() {
|
|
|
19406
19475
|
'object|data',
|
|
19407
19476
|
'script|src',
|
|
19408
19477
|
]);
|
|
19478
|
+
// Keep this in sync with SECURITY_SENSITIVE_ELEMENTS in packages/core/src/sanitization/sanitization.ts
|
|
19479
|
+
// Unknown is the internal tag name for unknown elements example used for host-bindings.
|
|
19480
|
+
// These are unsafe as `attributeName` can be `href` or `xlink:href`
|
|
19481
|
+
// See: http://b/463880509#comment7
|
|
19482
|
+
registerContext(SecurityContext.ATTRIBUTE_NO_BINDING, [
|
|
19483
|
+
'animate|attributeName',
|
|
19484
|
+
'set|attributeName',
|
|
19485
|
+
'animateMotion|attributeName',
|
|
19486
|
+
'animateTransform|attributeName',
|
|
19487
|
+
'unknown|attributeName',
|
|
19488
|
+
'iframe|sandbox',
|
|
19489
|
+
'iframe|allow',
|
|
19490
|
+
'iframe|allowFullscreen',
|
|
19491
|
+
'iframe|referrerPolicy',
|
|
19492
|
+
'iframe|csp',
|
|
19493
|
+
'iframe|fetchPriority',
|
|
19494
|
+
'unknown|sandbox',
|
|
19495
|
+
'unknown|allow',
|
|
19496
|
+
'unknown|allowFullscreen',
|
|
19497
|
+
'unknown|referrerPolicy',
|
|
19498
|
+
'unknown|csp',
|
|
19499
|
+
'unknown|fetchPriority',
|
|
19500
|
+
]);
|
|
19409
19501
|
}
|
|
19410
19502
|
return _SECURITY_SCHEMA;
|
|
19411
19503
|
}
|
|
@@ -19413,32 +19505,6 @@ function registerContext(ctx, specs) {
|
|
|
19413
19505
|
for (const spec of specs)
|
|
19414
19506
|
_SECURITY_SCHEMA[spec.toLowerCase()] = ctx;
|
|
19415
19507
|
}
|
|
19416
|
-
/**
|
|
19417
|
-
* The set of security-sensitive attributes of an `<iframe>` that *must* be
|
|
19418
|
-
* applied as a static attribute only. This ensures that all security-sensitive
|
|
19419
|
-
* attributes are taken into account while creating an instance of an `<iframe>`
|
|
19420
|
-
* at runtime.
|
|
19421
|
-
*
|
|
19422
|
-
* Note: avoid using this set directly, use the `isIframeSecuritySensitiveAttr` function
|
|
19423
|
-
* in the code instead.
|
|
19424
|
-
*/
|
|
19425
|
-
const IFRAME_SECURITY_SENSITIVE_ATTRS = new Set([
|
|
19426
|
-
'sandbox',
|
|
19427
|
-
'allow',
|
|
19428
|
-
'allowfullscreen',
|
|
19429
|
-
'referrerpolicy',
|
|
19430
|
-
'csp',
|
|
19431
|
-
'fetchpriority',
|
|
19432
|
-
]);
|
|
19433
|
-
/**
|
|
19434
|
-
* Checks whether a given attribute name might represent a security-sensitive
|
|
19435
|
-
* attribute of an <iframe>.
|
|
19436
|
-
*/
|
|
19437
|
-
function isIframeSecuritySensitiveAttr(attrName) {
|
|
19438
|
-
// The `setAttribute` DOM API is case-insensitive, so we lowercase the value
|
|
19439
|
-
// before checking it against a known security-sensitive attributes.
|
|
19440
|
-
return IFRAME_SECURITY_SENSITIVE_ATTRS.has(attrName.toLowerCase());
|
|
19441
|
-
}
|
|
19442
19508
|
|
|
19443
19509
|
class ElementSchemaRegistry {
|
|
19444
19510
|
}
|
|
@@ -23978,6 +24044,7 @@ const sanitizerFns = new Map([
|
|
|
23978
24044
|
[SecurityContext.SCRIPT, Identifiers.sanitizeScript],
|
|
23979
24045
|
[SecurityContext.STYLE, Identifiers.sanitizeStyle],
|
|
23980
24046
|
[SecurityContext.URL, Identifiers.sanitizeUrl],
|
|
24047
|
+
[SecurityContext.ATTRIBUTE_NO_BINDING, Identifiers.validateAttribute],
|
|
23981
24048
|
]);
|
|
23982
24049
|
/**
|
|
23983
24050
|
* Map of security contexts to their trusted value function.
|
|
@@ -23991,7 +24058,6 @@ const trustedValueFns = new Map([
|
|
|
23991
24058
|
*/
|
|
23992
24059
|
function resolveSanitizers(job) {
|
|
23993
24060
|
for (const unit of job.units) {
|
|
23994
|
-
const elements = createOpXrefMap(unit);
|
|
23995
24061
|
// For normal element bindings we create trusted values for security sensitive constant
|
|
23996
24062
|
// attributes. However, for host bindings we skip this step (this matches what
|
|
23997
24063
|
// TemplateDefinitionBuilder does).
|
|
@@ -24012,8 +24078,8 @@ function resolveSanitizers(job) {
|
|
|
24012
24078
|
let sanitizerFn = null;
|
|
24013
24079
|
if (Array.isArray(op.securityContext) &&
|
|
24014
24080
|
op.securityContext.length === 2 &&
|
|
24015
|
-
op.securityContext.
|
|
24016
|
-
op.securityContext.
|
|
24081
|
+
op.securityContext.includes(SecurityContext.URL) &&
|
|
24082
|
+
op.securityContext.includes(SecurityContext.RESOURCE_URL)) {
|
|
24017
24083
|
// When the host element isn't known, some URL attributes (such as "src" and "href") may
|
|
24018
24084
|
// be part of multiple different security contexts. In this case we use special
|
|
24019
24085
|
// sanitization function and select the actual sanitizer at runtime based on a tag name
|
|
@@ -24024,43 +24090,11 @@ function resolveSanitizers(job) {
|
|
|
24024
24090
|
sanitizerFn = sanitizerFns.get(getOnlySecurityContext(op.securityContext)) ?? null;
|
|
24025
24091
|
}
|
|
24026
24092
|
op.sanitizer = sanitizerFn !== null ? importExpr(sanitizerFn) : null;
|
|
24027
|
-
// If there was no sanitization function found based on the security context of an
|
|
24028
|
-
// attribute/property, check whether this attribute/property is one of the
|
|
24029
|
-
// security-sensitive <iframe> attributes (and that the current element is actually an
|
|
24030
|
-
// <iframe>).
|
|
24031
|
-
if (op.sanitizer === null) {
|
|
24032
|
-
let isIframe = false;
|
|
24033
|
-
if (job.kind === CompilationJobKind.Host || op.kind === OpKind.HostProperty) {
|
|
24034
|
-
// Note: for host bindings defined on a directive, we do not try to find all
|
|
24035
|
-
// possible places where it can be matched, so we can not determine whether
|
|
24036
|
-
// the host element is an <iframe>. In this case, we just assume it is and append a
|
|
24037
|
-
// validation function, which is invoked at runtime and would have access to the
|
|
24038
|
-
// underlying DOM element to check if it's an <iframe> and if so - run extra checks.
|
|
24039
|
-
isIframe = true;
|
|
24040
|
-
}
|
|
24041
|
-
else {
|
|
24042
|
-
// For a normal binding we can just check if the element its on is an iframe.
|
|
24043
|
-
const ownerOp = elements.get(op.target);
|
|
24044
|
-
if (ownerOp === undefined || !isElementOrContainerOp(ownerOp)) {
|
|
24045
|
-
throw Error('Property should have an element-like owner');
|
|
24046
|
-
}
|
|
24047
|
-
isIframe = isIframeElement(ownerOp);
|
|
24048
|
-
}
|
|
24049
|
-
if (isIframe && isIframeSecuritySensitiveAttr(op.name)) {
|
|
24050
|
-
op.sanitizer = importExpr(Identifiers.validateIframeAttribute);
|
|
24051
|
-
}
|
|
24052
|
-
}
|
|
24053
24093
|
break;
|
|
24054
24094
|
}
|
|
24055
24095
|
}
|
|
24056
24096
|
}
|
|
24057
24097
|
}
|
|
24058
|
-
/**
|
|
24059
|
-
* Checks whether the given op represents an iframe element.
|
|
24060
|
-
*/
|
|
24061
|
-
function isIframeElement(op) {
|
|
24062
|
-
return op.kind === OpKind.ElementStart && op.tag?.toLowerCase() === 'iframe';
|
|
24063
|
-
}
|
|
24064
24098
|
/**
|
|
24065
24099
|
* Asserts that there is only a single security context and returns it.
|
|
24066
24100
|
*/
|
|
@@ -30742,7 +30776,7 @@ function publishFacade(global) {
|
|
|
30742
30776
|
* @description
|
|
30743
30777
|
* Entry point for all public APIs of the compiler package.
|
|
30744
30778
|
*/
|
|
30745
|
-
new Version('19.2.
|
|
30779
|
+
new Version('19.2.17');
|
|
30746
30780
|
|
|
30747
30781
|
const _I18N_ATTR = 'i18n';
|
|
30748
30782
|
const _I18N_ATTR_PREFIX = 'i18n-';
|
|
@@ -32160,7 +32194,7 @@ class NodeJSPathManipulation {
|
|
|
32160
32194
|
// G3-ESM-MARKER: G3 uses CommonJS, but externally everything in ESM.
|
|
32161
32195
|
// CommonJS/ESM interop for determining the current file name and containing dir.
|
|
32162
32196
|
const isCommonJS = typeof __filename !== 'undefined';
|
|
32163
|
-
const currentFileUrl = isCommonJS ? null : (typeof document === 'undefined' ? require('u' + 'rl').pathToFileURL(__filename).href : (_documentCurrentScript && _documentCurrentScript.tagName.toUpperCase() === 'SCRIPT' && _documentCurrentScript.src || new URL('checker-
|
|
32197
|
+
const currentFileUrl = isCommonJS ? null : (typeof document === 'undefined' ? require('u' + 'rl').pathToFileURL(__filename).href : (_documentCurrentScript && _documentCurrentScript.tagName.toUpperCase() === 'SCRIPT' && _documentCurrentScript.src || new URL('checker-3NZgzGls.cjs', document.baseURI).href));
|
|
32164
32198
|
const currentFileName = isCommonJS ? __filename : url.fileURLToPath(currentFileUrl);
|
|
32165
32199
|
/**
|
|
32166
32200
|
* A wrapper around the Node.js file-system that supports readonly operations and path manipulation.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
/**
|
|
3
|
-
* @license Angular v19.2.
|
|
3
|
+
* @license Angular v19.2.17
|
|
4
4
|
* (c) 2010-2025 Google LLC. https://angular.io/
|
|
5
5
|
* License: MIT
|
|
6
6
|
*/
|
|
@@ -8,13 +8,13 @@
|
|
|
8
8
|
|
|
9
9
|
require('@angular-devkit/core');
|
|
10
10
|
require('node:path/posix');
|
|
11
|
-
var project_paths = require('./project_paths-
|
|
11
|
+
var project_paths = require('./project_paths-iOxGOuAR.cjs');
|
|
12
12
|
var ts = require('typescript');
|
|
13
13
|
require('os');
|
|
14
|
-
var checker = require('./checker-
|
|
15
|
-
var index = require('./index-
|
|
14
|
+
var checker = require('./checker-3NZgzGls.cjs');
|
|
15
|
+
var index = require('./index-CZ9tBi9p.cjs');
|
|
16
16
|
require('path');
|
|
17
|
-
var apply_import_manager = require('./apply_import_manager-
|
|
17
|
+
var apply_import_manager = require('./apply_import_manager-BJETGeOK.cjs');
|
|
18
18
|
var leading_space = require('./leading_space-D9nQ8UQC.cjs');
|
|
19
19
|
require('@angular-devkit/schematics');
|
|
20
20
|
require('./project_tsconfig_paths-CDVxT6Ov.cjs');
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
/**
|
|
3
|
-
* @license Angular v19.2.
|
|
3
|
+
* @license Angular v19.2.17
|
|
4
4
|
* (c) 2010-2025 Google LLC. https://angular.io/
|
|
5
5
|
* License: MIT
|
|
6
6
|
*/
|
|
@@ -8,9 +8,9 @@
|
|
|
8
8
|
|
|
9
9
|
var schematics = require('@angular-devkit/schematics');
|
|
10
10
|
var p = require('path');
|
|
11
|
-
var change_tracker = require('./change_tracker-
|
|
11
|
+
var change_tracker = require('./change_tracker-DCYvDUoh.cjs');
|
|
12
12
|
var compiler_host = require('./compiler_host-CAfDJO3W.cjs');
|
|
13
|
-
var checker = require('./checker-
|
|
13
|
+
var checker = require('./checker-3NZgzGls.cjs');
|
|
14
14
|
var ts = require('typescript');
|
|
15
15
|
require('os');
|
|
16
16
|
require('fs');
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
/**
|
|
3
|
-
* @license Angular v19.2.
|
|
3
|
+
* @license Angular v19.2.17
|
|
4
4
|
* (c) 2010-2025 Google LLC. https://angular.io/
|
|
5
5
|
* License: MIT
|
|
6
6
|
*/
|
|
@@ -11,10 +11,10 @@ var p = require('path');
|
|
|
11
11
|
var project_tsconfig_paths = require('./project_tsconfig_paths-CDVxT6Ov.cjs');
|
|
12
12
|
var compiler_host = require('./compiler_host-CAfDJO3W.cjs');
|
|
13
13
|
var ts = require('typescript');
|
|
14
|
-
var change_tracker = require('./change_tracker-
|
|
14
|
+
var change_tracker = require('./change_tracker-DCYvDUoh.cjs');
|
|
15
15
|
var imports = require('./imports-CIX-JgAN.cjs');
|
|
16
16
|
require('@angular-devkit/core');
|
|
17
|
-
require('./checker-
|
|
17
|
+
require('./checker-3NZgzGls.cjs');
|
|
18
18
|
require('os');
|
|
19
19
|
require('fs');
|
|
20
20
|
require('module');
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
/**
|
|
3
|
-
* @license Angular v19.2.
|
|
3
|
+
* @license Angular v19.2.17
|
|
4
4
|
* (c) 2010-2025 Google LLC. https://angular.io/
|
|
5
5
|
* License: MIT
|
|
6
6
|
*/
|
|
@@ -8,10 +8,10 @@
|
|
|
8
8
|
|
|
9
9
|
var ts = require('typescript');
|
|
10
10
|
require('os');
|
|
11
|
-
var checker = require('./checker-
|
|
12
|
-
var index = require('./index-
|
|
11
|
+
var checker = require('./checker-3NZgzGls.cjs');
|
|
12
|
+
var index = require('./index-CZ9tBi9p.cjs');
|
|
13
13
|
require('path');
|
|
14
|
-
var project_paths = require('./project_paths-
|
|
14
|
+
var project_paths = require('./project_paths-iOxGOuAR.cjs');
|
|
15
15
|
|
|
16
16
|
function getMemberName(member) {
|
|
17
17
|
if (member.name === undefined) {
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
/**
|
|
3
|
-
* @license Angular v19.2.
|
|
3
|
+
* @license Angular v19.2.17
|
|
4
4
|
* (c) 2010-2025 Google LLC. https://angular.io/
|
|
5
5
|
* License: MIT
|
|
6
6
|
*/
|
|
7
7
|
'use strict';
|
|
8
8
|
|
|
9
|
-
var checker = require('./checker-
|
|
9
|
+
var checker = require('./checker-3NZgzGls.cjs');
|
|
10
10
|
var ts = require('typescript');
|
|
11
11
|
var p = require('path');
|
|
12
12
|
require('os');
|
|
@@ -1005,7 +1005,7 @@ const MINIMUM_PARTIAL_LINKER_DEFER_SUPPORT_VERSION = '18.0.0';
|
|
|
1005
1005
|
function compileDeclareClassMetadata(metadata) {
|
|
1006
1006
|
const definitionMap = new checker.DefinitionMap();
|
|
1007
1007
|
definitionMap.set('minVersion', checker.literal(MINIMUM_PARTIAL_LINKER_VERSION$5));
|
|
1008
|
-
definitionMap.set('version', checker.literal('19.2.
|
|
1008
|
+
definitionMap.set('version', checker.literal('19.2.17'));
|
|
1009
1009
|
definitionMap.set('ngImport', checker.importExpr(checker.Identifiers.core));
|
|
1010
1010
|
definitionMap.set('type', metadata.type);
|
|
1011
1011
|
definitionMap.set('decorators', metadata.decorators);
|
|
@@ -1023,7 +1023,7 @@ function compileComponentDeclareClassMetadata(metadata, dependencies) {
|
|
|
1023
1023
|
callbackReturnDefinitionMap.set('ctorParameters', metadata.ctorParameters ?? checker.literal(null));
|
|
1024
1024
|
callbackReturnDefinitionMap.set('propDecorators', metadata.propDecorators ?? checker.literal(null));
|
|
1025
1025
|
definitionMap.set('minVersion', checker.literal(MINIMUM_PARTIAL_LINKER_DEFER_SUPPORT_VERSION));
|
|
1026
|
-
definitionMap.set('version', checker.literal('19.2.
|
|
1026
|
+
definitionMap.set('version', checker.literal('19.2.17'));
|
|
1027
1027
|
definitionMap.set('ngImport', checker.importExpr(checker.Identifiers.core));
|
|
1028
1028
|
definitionMap.set('type', metadata.type);
|
|
1029
1029
|
definitionMap.set('resolveDeferredDeps', compileComponentMetadataAsyncResolver(dependencies));
|
|
@@ -1118,7 +1118,7 @@ function createDirectiveDefinitionMap(meta) {
|
|
|
1118
1118
|
const definitionMap = new checker.DefinitionMap();
|
|
1119
1119
|
const minVersion = getMinimumVersionForPartialOutput(meta);
|
|
1120
1120
|
definitionMap.set('minVersion', checker.literal(minVersion));
|
|
1121
|
-
definitionMap.set('version', checker.literal('19.2.
|
|
1121
|
+
definitionMap.set('version', checker.literal('19.2.17'));
|
|
1122
1122
|
// e.g. `type: MyDirective`
|
|
1123
1123
|
definitionMap.set('type', meta.type.value);
|
|
1124
1124
|
if (meta.isStandalone !== undefined) {
|
|
@@ -1534,7 +1534,7 @@ const MINIMUM_PARTIAL_LINKER_VERSION$4 = '12.0.0';
|
|
|
1534
1534
|
function compileDeclareFactoryFunction(meta) {
|
|
1535
1535
|
const definitionMap = new checker.DefinitionMap();
|
|
1536
1536
|
definitionMap.set('minVersion', checker.literal(MINIMUM_PARTIAL_LINKER_VERSION$4));
|
|
1537
|
-
definitionMap.set('version', checker.literal('19.2.
|
|
1537
|
+
definitionMap.set('version', checker.literal('19.2.17'));
|
|
1538
1538
|
definitionMap.set('ngImport', checker.importExpr(checker.Identifiers.core));
|
|
1539
1539
|
definitionMap.set('type', meta.type.value);
|
|
1540
1540
|
definitionMap.set('deps', compileDependencies(meta.deps));
|
|
@@ -1569,7 +1569,7 @@ function compileDeclareInjectableFromMetadata(meta) {
|
|
|
1569
1569
|
function createInjectableDefinitionMap(meta) {
|
|
1570
1570
|
const definitionMap = new checker.DefinitionMap();
|
|
1571
1571
|
definitionMap.set('minVersion', checker.literal(MINIMUM_PARTIAL_LINKER_VERSION$3));
|
|
1572
|
-
definitionMap.set('version', checker.literal('19.2.
|
|
1572
|
+
definitionMap.set('version', checker.literal('19.2.17'));
|
|
1573
1573
|
definitionMap.set('ngImport', checker.importExpr(checker.Identifiers.core));
|
|
1574
1574
|
definitionMap.set('type', meta.type.value);
|
|
1575
1575
|
// Only generate providedIn property if it has a non-null value
|
|
@@ -1620,7 +1620,7 @@ function compileDeclareInjectorFromMetadata(meta) {
|
|
|
1620
1620
|
function createInjectorDefinitionMap(meta) {
|
|
1621
1621
|
const definitionMap = new checker.DefinitionMap();
|
|
1622
1622
|
definitionMap.set('minVersion', checker.literal(MINIMUM_PARTIAL_LINKER_VERSION$2));
|
|
1623
|
-
definitionMap.set('version', checker.literal('19.2.
|
|
1623
|
+
definitionMap.set('version', checker.literal('19.2.17'));
|
|
1624
1624
|
definitionMap.set('ngImport', checker.importExpr(checker.Identifiers.core));
|
|
1625
1625
|
definitionMap.set('type', meta.type.value);
|
|
1626
1626
|
definitionMap.set('providers', meta.providers);
|
|
@@ -1653,7 +1653,7 @@ function createNgModuleDefinitionMap(meta) {
|
|
|
1653
1653
|
throw new Error('Invalid path! Local compilation mode should not get into the partial compilation path');
|
|
1654
1654
|
}
|
|
1655
1655
|
definitionMap.set('minVersion', checker.literal(MINIMUM_PARTIAL_LINKER_VERSION$1));
|
|
1656
|
-
definitionMap.set('version', checker.literal('19.2.
|
|
1656
|
+
definitionMap.set('version', checker.literal('19.2.17'));
|
|
1657
1657
|
definitionMap.set('ngImport', checker.importExpr(checker.Identifiers.core));
|
|
1658
1658
|
definitionMap.set('type', meta.type.value);
|
|
1659
1659
|
// We only generate the keys in the metadata if the arrays contain values.
|
|
@@ -1704,7 +1704,7 @@ function compileDeclarePipeFromMetadata(meta) {
|
|
|
1704
1704
|
function createPipeDefinitionMap(meta) {
|
|
1705
1705
|
const definitionMap = new checker.DefinitionMap();
|
|
1706
1706
|
definitionMap.set('minVersion', checker.literal(MINIMUM_PARTIAL_LINKER_VERSION));
|
|
1707
|
-
definitionMap.set('version', checker.literal('19.2.
|
|
1707
|
+
definitionMap.set('version', checker.literal('19.2.17'));
|
|
1708
1708
|
definitionMap.set('ngImport', checker.importExpr(checker.Identifiers.core));
|
|
1709
1709
|
// e.g. `type: MyPipe`
|
|
1710
1710
|
definitionMap.set('type', meta.type.value);
|
|
@@ -10730,7 +10730,7 @@ class PipeDecoratorHandler {
|
|
|
10730
10730
|
* @description
|
|
10731
10731
|
* Entry point for all public APIs of the compiler-cli package.
|
|
10732
10732
|
*/
|
|
10733
|
-
new checker.Version('19.2.
|
|
10733
|
+
new checker.Version('19.2.17');
|
|
10734
10734
|
|
|
10735
10735
|
/**
|
|
10736
10736
|
* Whether a given decorator should be treated as an Angular decorator.
|
|
@@ -18583,7 +18583,7 @@ var semver = /*@__PURE__*/getDefaultExportFromCjs(semverExports);
|
|
|
18583
18583
|
* @param minVersion Minimum required version for the feature.
|
|
18584
18584
|
*/
|
|
18585
18585
|
function coreVersionSupportsFeature(coreVersion, minVersion) {
|
|
18586
|
-
// A version of `19.2.
|
|
18586
|
+
// A version of `19.2.17` usually means that core is at head so it supports
|
|
18587
18587
|
// all features. Use string interpolation prevent the placeholder from being replaced
|
|
18588
18588
|
// with the current version during build time.
|
|
18589
18589
|
if (coreVersion === `0.0.0-${'PLACEHOLDER'}`) {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
/**
|
|
3
|
-
* @license Angular v19.2.
|
|
3
|
+
* @license Angular v19.2.17
|
|
4
4
|
* (c) 2010-2025 Google LLC. https://angular.io/
|
|
5
5
|
* License: MIT
|
|
6
6
|
*/
|
|
@@ -8,14 +8,14 @@
|
|
|
8
8
|
|
|
9
9
|
var schematics = require('@angular-devkit/schematics');
|
|
10
10
|
var p = require('path');
|
|
11
|
-
var change_tracker = require('./change_tracker-
|
|
11
|
+
var change_tracker = require('./change_tracker-DCYvDUoh.cjs');
|
|
12
12
|
var compiler_host = require('./compiler_host-CAfDJO3W.cjs');
|
|
13
13
|
var ts = require('typescript');
|
|
14
14
|
var ng_decorators = require('./ng_decorators-B5HCqr20.cjs');
|
|
15
15
|
var imports = require('./imports-CIX-JgAN.cjs');
|
|
16
16
|
var nodes = require('./nodes-B16H9JUd.cjs');
|
|
17
17
|
var leading_space = require('./leading_space-D9nQ8UQC.cjs');
|
|
18
|
-
require('./checker-
|
|
18
|
+
require('./checker-3NZgzGls.cjs');
|
|
19
19
|
require('os');
|
|
20
20
|
require('fs');
|
|
21
21
|
require('module');
|
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
/**
|
|
3
|
-
* @license Angular v19.2.
|
|
3
|
+
* @license Angular v19.2.17
|
|
4
4
|
* (c) 2010-2025 Google LLC. https://angular.io/
|
|
5
5
|
* License: MIT
|
|
6
6
|
*/
|
|
7
7
|
'use strict';
|
|
8
8
|
|
|
9
|
-
var checker = require('./checker-
|
|
9
|
+
var checker = require('./checker-3NZgzGls.cjs');
|
|
10
10
|
var ts = require('typescript');
|
|
11
11
|
require('os');
|
|
12
12
|
var assert = require('assert');
|
|
13
|
-
var index = require('./index-
|
|
14
|
-
var project_paths = require('./project_paths-
|
|
13
|
+
var index = require('./index-CVdD79i5.cjs');
|
|
14
|
+
var project_paths = require('./project_paths-iOxGOuAR.cjs');
|
|
15
15
|
var leading_space = require('./leading_space-D9nQ8UQC.cjs');
|
|
16
|
-
require('./index-
|
|
16
|
+
require('./index-CZ9tBi9p.cjs');
|
|
17
17
|
require('path');
|
|
18
18
|
|
|
19
19
|
/**
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
/**
|
|
3
|
-
* @license Angular v19.2.
|
|
3
|
+
* @license Angular v19.2.17
|
|
4
4
|
* (c) 2010-2025 Google LLC. https://angular.io/
|
|
5
5
|
* License: MIT
|
|
6
6
|
*/
|
|
@@ -8,12 +8,12 @@
|
|
|
8
8
|
|
|
9
9
|
var ts = require('typescript');
|
|
10
10
|
require('os');
|
|
11
|
-
var checker = require('./checker-
|
|
12
|
-
var index$1 = require('./index-
|
|
11
|
+
var checker = require('./checker-3NZgzGls.cjs');
|
|
12
|
+
var index$1 = require('./index-CZ9tBi9p.cjs');
|
|
13
13
|
require('path');
|
|
14
|
-
var project_paths = require('./project_paths-
|
|
15
|
-
var apply_import_manager = require('./apply_import_manager-
|
|
16
|
-
var index = require('./index-
|
|
14
|
+
var project_paths = require('./project_paths-iOxGOuAR.cjs');
|
|
15
|
+
var apply_import_manager = require('./apply_import_manager-BJETGeOK.cjs');
|
|
16
|
+
var index = require('./index-CVdD79i5.cjs');
|
|
17
17
|
require('@angular-devkit/core');
|
|
18
18
|
require('node:path/posix');
|
|
19
19
|
require('fs');
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
/**
|
|
3
|
-
* @license Angular v19.2.
|
|
3
|
+
* @license Angular v19.2.17
|
|
4
4
|
* (c) 2010-2025 Google LLC. https://angular.io/
|
|
5
5
|
* License: MIT
|
|
6
6
|
*/
|
|
@@ -11,10 +11,10 @@ var p = require('path');
|
|
|
11
11
|
var project_tsconfig_paths = require('./project_tsconfig_paths-CDVxT6Ov.cjs');
|
|
12
12
|
var compiler_host = require('./compiler_host-CAfDJO3W.cjs');
|
|
13
13
|
var ts = require('typescript');
|
|
14
|
-
var change_tracker = require('./change_tracker-
|
|
14
|
+
var change_tracker = require('./change_tracker-DCYvDUoh.cjs');
|
|
15
15
|
var imports = require('./imports-CIX-JgAN.cjs');
|
|
16
16
|
require('@angular-devkit/core');
|
|
17
|
-
require('./checker-
|
|
17
|
+
require('./checker-3NZgzGls.cjs');
|
|
18
18
|
require('os');
|
|
19
19
|
require('fs');
|
|
20
20
|
require('module');
|
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
/**
|
|
3
|
-
* @license Angular v19.2.
|
|
3
|
+
* @license Angular v19.2.17
|
|
4
4
|
* (c) 2010-2025 Google LLC. https://angular.io/
|
|
5
5
|
* License: MIT
|
|
6
6
|
*/
|
|
7
7
|
'use strict';
|
|
8
8
|
|
|
9
|
-
var index = require('./index-
|
|
9
|
+
var index = require('./index-CZ9tBi9p.cjs');
|
|
10
10
|
var schematics = require('@angular-devkit/schematics');
|
|
11
11
|
var core = require('@angular-devkit/core');
|
|
12
12
|
var posixPath = require('node:path/posix');
|
|
13
13
|
var os = require('os');
|
|
14
14
|
var ts = require('typescript');
|
|
15
|
-
var checker = require('./checker-
|
|
15
|
+
var checker = require('./checker-3NZgzGls.cjs');
|
|
16
16
|
require('path');
|
|
17
17
|
var project_tsconfig_paths = require('./project_tsconfig_paths-CDVxT6Ov.cjs');
|
|
18
18
|
|