chore: remove .angular cache directory

This commit is contained in:
Bruno Charest 2025-09-29 08:42:25 -04:00
parent 1c7a49fd0e
commit 0e604c06d0
219 changed files with 606 additions and 493 deletions

File diff suppressed because one or more lines are too long

Binary file not shown.

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -1,8 +0,0 @@
{
"hash": "c91a5572",
"configHash": "9e47cd39",
"lockfileHash": "610c0484",
"browserHash": "db821900",
"optimized": {},
"chunks": {}
}

File diff suppressed because one or more lines are too long

View File

@ -1,7 +1,7 @@
import {
isPlatformBrowser
} from "./chunk-NNL7YDF7.js";
import "./chunk-ZJ25XCV3.js";
} from "./chunk-76DXN4JH.js";
import "./chunk-4X6VR2I6.js";
import {
APP_ID,
ApplicationRef,
@ -28,7 +28,7 @@ import {
ɵɵdefineComponent,
ɵɵdefineDirective,
ɵɵdefineNgModule
} from "./chunk-A3W7CVOL.js";
} from "./chunk-UEBPW2IJ.js";
import {
DOCUMENT,
EnvironmentInjector,
@ -40,7 +40,7 @@ import {
signal,
ɵɵdefineInjectable,
ɵɵdefineInjector
} from "./chunk-M4YA2FTX.js";
} from "./chunk-QLJXSR7F.js";
import {
BehaviorSubject,
Observable,

View File

@ -91,17 +91,17 @@ import {
provideNetlifyLoader,
registerLocaleData,
setRootDomAdapter
} from "./chunk-NNL7YDF7.js";
} from "./chunk-76DXN4JH.js";
import {
XhrFactory,
parseCookieValue
} from "./chunk-ZJ25XCV3.js";
} from "./chunk-4X6VR2I6.js";
import {
IMAGE_CONFIG
} from "./chunk-A3W7CVOL.js";
} from "./chunk-UEBPW2IJ.js";
import {
DOCUMENT
} from "./chunk-M4YA2FTX.js";
} from "./chunk-QLJXSR7F.js";
import "./chunk-RSS3ODKE.js";
import "./chunk-TKSB4YUA.js";
export {

View File

@ -38,10 +38,10 @@ import {
withNoXsrfProtection,
withRequestsMadeViaParent,
withXsrfConfiguration
} from "./chunk-QEGKXTBA.js";
import "./chunk-ZJ25XCV3.js";
import "./chunk-A3W7CVOL.js";
import "./chunk-M4YA2FTX.js";
} from "./chunk-4JODBTHE.js";
import "./chunk-4X6VR2I6.js";
import "./chunk-UEBPW2IJ.js";
import "./chunk-QLJXSR7F.js";
import "./chunk-RSS3ODKE.js";
import "./chunk-TKSB4YUA.js";
export {

View File

@ -416,7 +416,7 @@ import {
ɵɵvalidateIframeAttribute,
ɵɵviewQuery,
ɵɵviewQuerySignal
} from "./chunk-A3W7CVOL.js";
} from "./chunk-UEBPW2IJ.js";
import {
CONTAINER_HEADER_OFFSET,
ChangeDetectionScheduler,
@ -496,7 +496,7 @@ import {
ɵɵnamespaceSVG,
ɵɵresetView,
ɵɵrestoreView
} from "./chunk-M4YA2FTX.js";
} from "./chunk-QLJXSR7F.js";
import "./chunk-RSS3ODKE.js";
import "./chunk-TKSB4YUA.js";
export {

View File

@ -13,7 +13,7 @@ import {
resource,
signal,
untracked
} from "./chunk-M4YA2FTX.js";
} from "./chunk-QLJXSR7F.js";
import {
Observable,
ReplaySubject,
@ -243,7 +243,7 @@ export {
@angular/core/fesm2022/rxjs-interop.mjs:
(**
* @license Angular v20.3.1
* @license Angular v20.3.2
* (c) 2010-2025 Google LLC. https://angular.io/
* License: MIT
*)

View File

@ -1,7 +1,7 @@
import {
getDOM
} from "./chunk-NNL7YDF7.js";
import "./chunk-ZJ25XCV3.js";
} from "./chunk-76DXN4JH.js";
import "./chunk-4X6VR2I6.js";
import {
ApplicationRef,
ChangeDetectorRef,
@ -33,7 +33,7 @@ import {
ɵɵdirectiveInject,
ɵɵgetInheritedFactory,
ɵɵlistener
} from "./chunk-A3W7CVOL.js";
} from "./chunk-UEBPW2IJ.js";
import {
DestroyRef,
InjectionToken,
@ -47,7 +47,7 @@ import {
untracked,
ɵɵdefineInjectable,
ɵɵdefineInjector
} from "./chunk-M4YA2FTX.js";
} from "./chunk-QLJXSR7F.js";
import {
Subject,
forkJoin,
@ -2619,6 +2619,9 @@ var FormGroup = class extends AbstractControl {
this._updatePristine(options, this);
this._updateTouched(options, this);
this.updateValueAndValidity(options);
if (options?.emitEvent !== false) {
this._events.next(new FormResetEvent(this));
}
}
/**
* The aggregate value of the `FormGroup`, including any disabled controls.
@ -3144,7 +3147,6 @@ var NgForm = class _NgForm extends ControlContainer {
resetForm(value = void 0) {
this.form.reset(value);
this.submittedReactive.set(false);
this.form._events.next(new FormResetEvent(this.form));
}
_setUpdateStrategy() {
if (this.options && this.options.updateOn != null) {
@ -3283,6 +3285,9 @@ var FormControl = class FormControl2 extends AbstractControl {
this.markAsUntouched(options);
this.setValue(this.value, options);
this._pendingChange = false;
if (options?.emitEvent !== false) {
this._events.next(new FormResetEvent(this));
}
}
/** @internal */
_updateValue() {
@ -4621,9 +4626,6 @@ var FormGroupDirective = class _FormGroupDirective extends ControlContainer {
resetForm(value = void 0, options = {}) {
this.form.reset(value, options);
this._submittedReactive.set(false);
if (options?.emitEvent !== false) {
this.form._events.next(new FormResetEvent(this.form));
}
}
/** @internal */
_updateDomValue() {
@ -6461,6 +6463,9 @@ var FormArray = class extends AbstractControl {
this._updatePristine(options, this);
this._updateTouched(options, this);
this.updateValueAndValidity(options);
if (options?.emitEvent !== false) {
this._events.next(new FormResetEvent(this));
}
}
/**
* The aggregate value of the array, including any disabled controls.
@ -6804,7 +6809,7 @@ var UntypedFormBuilder = class _UntypedFormBuilder extends FormBuilder {
}]
}], null, null);
})();
var VERSION = new Version("20.3.1");
var VERSION = new Version("20.3.2");
var FormsModule = class _FormsModule {
/**
* @description
@ -6957,7 +6962,7 @@ export {
@angular/forms/fesm2022/forms.mjs:
(**
* @license Angular v20.3.1
* @license Angular v20.3.2
* (c) 2010-2025 Google LLC. https://angular.io/
* License: MIT
*)

File diff suppressed because one or more lines are too long

View File

@ -1,17 +1,17 @@
import {
withHttpTransferCache
} from "./chunk-4JODBTHE.js";
import {
CommonModule,
DomAdapter,
PLATFORM_BROWSER_ID,
getDOM,
setRootDomAdapter
} from "./chunk-NNL7YDF7.js";
import {
withHttpTransferCache
} from "./chunk-QEGKXTBA.js";
} from "./chunk-76DXN4JH.js";
import {
XhrFactory,
parseCookieValue
} from "./chunk-ZJ25XCV3.js";
} from "./chunk-4X6VR2I6.js";
import {
APP_ID,
ApplicationModule,
@ -55,7 +55,7 @@ import {
withI18nSupport,
withIncrementalHydration,
ɵɵdefineNgModule
} from "./chunk-A3W7CVOL.js";
} from "./chunk-UEBPW2IJ.js";
import {
DOCUMENT,
ENVIRONMENT_INITIALIZER,
@ -75,7 +75,7 @@ import {
ɵɵdefineInjectable,
ɵɵdefineInjector,
ɵɵinject
} from "./chunk-M4YA2FTX.js";
} from "./chunk-QLJXSR7F.js";
import "./chunk-RSS3ODKE.js";
import {
__spreadValues
@ -1989,7 +1989,7 @@ function provideClientHydration(...features) {
}
return makeEnvironmentProviders([typeof ngDevMode !== "undefined" && ngDevMode ? provideZoneJsCompatibilityDetector() : [], typeof ngDevMode !== "undefined" && ngDevMode ? provideEnabledBlockingInitialNavigationDetector() : [], withDomHydration(), featuresKind.has(HydrationFeatureKind.NoHttpTransferCache) || hasHttpTransferCacheOptions ? [] : withHttpTransferCache({}), providers]);
}
var VERSION = new Version("20.3.1");
var VERSION = new Version("20.3.2");
export {
BrowserModule,
By,
@ -2034,7 +2034,7 @@ export {
@angular/platform-browser/fesm2022/browser.mjs:
@angular/platform-browser/fesm2022/platform-browser.mjs:
(**
* @license Angular v20.3.1
* @license Angular v20.3.2
* (c) 2010-2025 Google LLC. https://angular.io/
* License: MIT
*)

View File

@ -1,121 +1,121 @@
{
"hash": "7e911bc9",
"configHash": "6d2fe504",
"lockfileHash": "610c0484",
"browserHash": "449bae22",
"hash": "060111b7",
"configHash": "333a67ac",
"lockfileHash": "c8679eae",
"browserHash": "b1283bde",
"optimized": {
"@angular/cdk/a11y": {
"src": "../../../../../../node_modules/@angular/cdk/fesm2022/a11y.mjs",
"file": "@angular_cdk_a11y.js",
"fileHash": "ba521394",
"fileHash": "01d0dcfa",
"needsInterop": false
},
"@angular/common": {
"src": "../../../../../../node_modules/@angular/common/fesm2022/common.mjs",
"file": "@angular_common.js",
"fileHash": "7db29729",
"fileHash": "dc955e3c",
"needsInterop": false
},
"@angular/common/http": {
"src": "../../../../../../node_modules/@angular/common/fesm2022/http.mjs",
"file": "@angular_common_http.js",
"fileHash": "9fd91a95",
"fileHash": "1261b65c",
"needsInterop": false
},
"@angular/common/locales/fr": {
"src": "../../../../../../node_modules/@angular/common/locales/fr.js",
"file": "@angular_common_locales_fr.js",
"fileHash": "b1d8412a",
"fileHash": "f1f524ad",
"needsInterop": false
},
"@angular/core": {
"src": "../../../../../../node_modules/@angular/core/fesm2022/core.mjs",
"file": "@angular_core.js",
"fileHash": "4aab6957",
"fileHash": "b07dee75",
"needsInterop": false
},
"@angular/core/rxjs-interop": {
"src": "../../../../../../node_modules/@angular/core/fesm2022/rxjs-interop.mjs",
"file": "@angular_core_rxjs-interop.js",
"fileHash": "83149d22",
"fileHash": "bbc262e2",
"needsInterop": false
},
"@angular/forms": {
"src": "../../../../../../node_modules/@angular/forms/fesm2022/forms.mjs",
"file": "@angular_forms.js",
"fileHash": "1fffec30",
"fileHash": "244465b8",
"needsInterop": false
},
"@angular/platform-browser": {
"src": "../../../../../../node_modules/@angular/platform-browser/fesm2022/platform-browser.mjs",
"file": "@angular_platform-browser.js",
"fileHash": "8a1d0c5e",
"fileHash": "445452ee",
"needsInterop": false
},
"angular-calendar": {
"src": "../../../../../../node_modules/angular-calendar/fesm2022/angular-calendar.mjs",
"file": "angular-calendar.js",
"fileHash": "6ade82aa",
"fileHash": "3d47f40f",
"needsInterop": false
},
"angular-calendar/date-adapters/date-fns": {
"src": "../../../../../../node_modules/angular-calendar/date-adapters/esm/date-fns/index.js",
"file": "angular-calendar_date-adapters_date-fns.js",
"fileHash": "bc3d3c33",
"fileHash": "ab948026",
"needsInterop": false
},
"highlight.js": {
"src": "../../../../../../node_modules/highlight.js/es/index.js",
"file": "highlight__js.js",
"fileHash": "1c76d52d",
"fileHash": "0e8cbe64",
"needsInterop": false
},
"markdown-it": {
"src": "../../../../../../node_modules/markdown-it/index.mjs",
"file": "markdown-it.js",
"fileHash": "8e6c68f6",
"fileHash": "7c4b011d",
"needsInterop": false
},
"markdown-it-anchor": {
"src": "../../../../../../node_modules/markdown-it-anchor/dist/markdownItAnchor.mjs",
"file": "markdown-it-anchor.js",
"fileHash": "5e692d12",
"fileHash": "6ac1a54d",
"needsInterop": false
},
"markdown-it-attrs": {
"src": "../../../../../../node_modules/markdown-it-attrs/index.js",
"file": "markdown-it-attrs.js",
"fileHash": "2c29aea3",
"fileHash": "9ce95917",
"needsInterop": true
},
"markdown-it-footnote": {
"src": "../../../../../../node_modules/markdown-it-footnote/index.js",
"file": "markdown-it-footnote.js",
"fileHash": "4ea0b149",
"fileHash": "4a4e4566",
"needsInterop": true
},
"markdown-it-multimd-table": {
"src": "../../../../../../node_modules/markdown-it-multimd-table/index.js",
"file": "markdown-it-multimd-table.js",
"fileHash": "13033d9b",
"fileHash": "c2ae9bab",
"needsInterop": true
},
"markdown-it-task-lists": {
"src": "../../../../../../node_modules/markdown-it-task-lists/index.js",
"file": "markdown-it-task-lists.js",
"fileHash": "b724aca3",
"fileHash": "a38337fd",
"needsInterop": true
},
"mermaid": {
"src": "../../../../../../node_modules/mermaid/dist/mermaid.core.mjs",
"file": "mermaid.js",
"fileHash": "b2047cf6",
"fileHash": "5f056dc7",
"needsInterop": false
},
"rxjs": {
"src": "../../../../../../node_modules/rxjs/dist/esm5/index.js",
"file": "rxjs.js",
"fileHash": "bff53593",
"fileHash": "a3099ed4",
"needsInterop": false
}
},
@ -123,20 +123,20 @@
"sankeyDiagram-TZEHDZUN-GH26R5YW": {
"file": "sankeyDiagram-TZEHDZUN-GH26R5YW.js"
},
"diagram-S2PKOQOG-D6F7ANDO": {
"file": "diagram-S2PKOQOG-D6F7ANDO.js"
"diagram-S2PKOQOG-RM7ASWFZ": {
"file": "diagram-S2PKOQOG-RM7ASWFZ.js"
},
"diagram-QEK2KX5R-KMPAAIQN": {
"file": "diagram-QEK2KX5R-KMPAAIQN.js"
"diagram-QEK2KX5R-QLL2LDZJ": {
"file": "diagram-QEK2KX5R-QLL2LDZJ.js"
},
"blockDiagram-VD42YOAC-KZTUA5HK": {
"file": "blockDiagram-VD42YOAC-KZTUA5HK.js"
"blockDiagram-VD42YOAC-6W666JF2": {
"file": "blockDiagram-VD42YOAC-6W666JF2.js"
},
"architectureDiagram-VXUJARFQ-WEBFVMSU": {
"file": "architectureDiagram-VXUJARFQ-WEBFVMSU.js"
"architectureDiagram-VXUJARFQ-7JNJRGGM": {
"file": "architectureDiagram-VXUJARFQ-7JNJRGGM.js"
},
"diagram-PSM6KHXK-OYEWFDFJ": {
"file": "diagram-PSM6KHXK-OYEWFDFJ.js"
"diagram-PSM6KHXK-3GNQQWOU": {
"file": "diagram-PSM6KHXK-3GNQQWOU.js"
},
"classDiagram-2ON5EDUG-NO6W7S54": {
"file": "classDiagram-2ON5EDUG-NO6W7S54.js"
@ -165,8 +165,8 @@
"mindmap-definition-VGOIOE7T-LIQX7OEO": {
"file": "mindmap-definition-VGOIOE7T-LIQX7OEO.js"
},
"kanban-definition-3W4ZIXB7-H4KIKSB7": {
"file": "kanban-definition-3W4ZIXB7-H4KIKSB7.js"
"kanban-definition-3W4ZIXB7-GUMHX2OD": {
"file": "kanban-definition-3W4ZIXB7-GUMHX2OD.js"
},
"gitGraphDiagram-NY62KEGX-DAVBKLGM": {
"file": "gitGraphDiagram-NY62KEGX-DAVBKLGM.js"
@ -174,11 +174,11 @@
"ganttDiagram-LVOFAZNH-HYMY4RKD": {
"file": "ganttDiagram-LVOFAZNH-HYMY4RKD.js"
},
"infoDiagram-F6ZHWCRC-L22DC2WZ": {
"file": "infoDiagram-F6ZHWCRC-L22DC2WZ.js"
"infoDiagram-F6ZHWCRC-HMHRPPWW": {
"file": "infoDiagram-F6ZHWCRC-HMHRPPWW.js"
},
"pieDiagram-ADFJNKIX-QYG3H4AZ": {
"file": "pieDiagram-ADFJNKIX-QYG3H4AZ.js"
"pieDiagram-ADFJNKIX-HTPFO6AD": {
"file": "pieDiagram-ADFJNKIX-HTPFO6AD.js"
},
"chunk-PNW5KFH4": {
"file": "chunk-PNW5KFH4.js"
@ -249,12 +249,6 @@
"chunk-WHHJWK6B": {
"file": "chunk-WHHJWK6B.js"
},
"chunk-BSULYXPT": {
"file": "chunk-BSULYXPT.js"
},
"chunk-B5NQPFQG": {
"file": "chunk-B5NQPFQG.js"
},
"katex-JJTYNRHT": {
"file": "katex-JJTYNRHT.js"
},
@ -270,9 +264,6 @@
"chunk-6SIVX7OU": {
"file": "chunk-6SIVX7OU.js"
},
"chunk-NGEE2U2J": {
"file": "chunk-NGEE2U2J.js"
},
"cose-bilkent-S5V4N54A-5WYXQMNH": {
"file": "cose-bilkent-S5V4N54A-5WYXQMNH.js"
},
@ -297,6 +288,15 @@
"chunk-LHH5RO5K": {
"file": "chunk-LHH5RO5K.js"
},
"chunk-BSULYXPT": {
"file": "chunk-BSULYXPT.js"
},
"chunk-B5NQPFQG": {
"file": "chunk-B5NQPFQG.js"
},
"chunk-NGEE2U2J": {
"file": "chunk-NGEE2U2J.js"
},
"chunk-JSZQKJT3": {
"file": "chunk-JSZQKJT3.js"
},
@ -336,20 +336,20 @@
"chunk-I65GBZ6F": {
"file": "chunk-I65GBZ6F.js"
},
"chunk-NNL7YDF7": {
"file": "chunk-NNL7YDF7.js"
"chunk-4JODBTHE": {
"file": "chunk-4JODBTHE.js"
},
"chunk-QEGKXTBA": {
"file": "chunk-QEGKXTBA.js"
"chunk-76DXN4JH": {
"file": "chunk-76DXN4JH.js"
},
"chunk-ZJ25XCV3": {
"file": "chunk-ZJ25XCV3.js"
"chunk-4X6VR2I6": {
"file": "chunk-4X6VR2I6.js"
},
"chunk-A3W7CVOL": {
"file": "chunk-A3W7CVOL.js"
"chunk-UEBPW2IJ": {
"file": "chunk-UEBPW2IJ.js"
},
"chunk-M4YA2FTX": {
"file": "chunk-M4YA2FTX.js"
"chunk-QLJXSR7F": {
"file": "chunk-QLJXSR7F.js"
},
"chunk-RSS3ODKE": {
"file": "chunk-RSS3ODKE.js"

View File

@ -6,8 +6,8 @@ import {
SlicePipe,
formatDate,
isPlatformBrowser
} from "./chunk-NNL7YDF7.js";
import "./chunk-ZJ25XCV3.js";
} from "./chunk-76DXN4JH.js";
import "./chunk-4X6VR2I6.js";
import {
ChangeDetectorRef,
Component,
@ -69,7 +69,7 @@ import {
ɵɵtext,
ɵɵtextInterpolate,
ɵɵtextInterpolate1
} from "./chunk-A3W7CVOL.js";
} from "./chunk-UEBPW2IJ.js";
import {
DOCUMENT,
InjectionToken,
@ -79,7 +79,7 @@ import {
ɵɵdefineInjector,
ɵɵresetView,
ɵɵrestoreView
} from "./chunk-M4YA2FTX.js";
} from "./chunk-QLJXSR7F.js";
import {
BehaviorSubject,
Observable,

View File

@ -12,14 +12,14 @@ import "./chunk-FNEVJCCX.js";
import "./chunk-R33GOAXK.js";
import "./chunk-5SXTVVUG.js";
import "./chunk-WHHJWK6B.js";
import {
selectSvgElement
} from "./chunk-B5NQPFQG.js";
import "./chunk-6SIVX7OU.js";
import "./chunk-NGEE2U2J.js";
import {
cytoscape as cytoscape2
} from "./chunk-4434HPF7.js";
import {
selectSvgElement
} from "./chunk-B5NQPFQG.js";
import "./chunk-NGEE2U2J.js";
import {
createText,
getIconSVG,
@ -8843,4 +8843,4 @@ var diagram = {
export {
diagram
};
//# sourceMappingURL=architectureDiagram-VXUJARFQ-WEBFVMSU.js.map
//# sourceMappingURL=architectureDiagram-VXUJARFQ-7JNJRGGM.js.map

View File

@ -4,10 +4,10 @@ import {
import {
clone_default
} from "./chunk-6SIVX7OU.js";
import "./chunk-NGEE2U2J.js";
import {
getIconStyles
} from "./chunk-I4QIIVJ7.js";
import "./chunk-NGEE2U2J.js";
import {
getLineFunctionsWithOffset
} from "./chunk-2HSIUWWJ.js";
@ -3745,4 +3745,4 @@ var diagram = {
export {
diagram
};
//# sourceMappingURL=blockDiagram-VD42YOAC-KZTUA5HK.js.map
//# sourceMappingURL=blockDiagram-VD42YOAC-6W666JF2.js.map

View File

@ -1,7 +1,7 @@
import {
XhrFactory,
parseCookieValue
} from "./chunk-ZJ25XCV3.js";
} from "./chunk-4X6VR2I6.js";
import {
APP_BOOTSTRAP_LISTENER,
ApplicationRef,
@ -14,7 +14,7 @@ import {
performanceMarkFeature,
setClassMetadata,
ɵɵdefineNgModule
} from "./chunk-A3W7CVOL.js";
} from "./chunk-UEBPW2IJ.js";
import {
DOCUMENT,
DestroyRef,
@ -37,7 +37,7 @@ import {
ɵɵdefineInjectable,
ɵɵdefineInjector,
ɵɵinject
} from "./chunk-M4YA2FTX.js";
} from "./chunk-QLJXSR7F.js";
import {
Observable,
concatMap,
@ -2773,9 +2773,9 @@ export {
@angular/common/fesm2022/module.mjs:
@angular/common/fesm2022/http.mjs:
(**
* @license Angular v20.3.1
* @license Angular v20.3.2
* (c) 2010-2025 Google LLC. https://angular.io/
* License: MIT
*)
*/
//# sourceMappingURL=chunk-QEGKXTBA.js.map
//# sourceMappingURL=chunk-4JODBTHE.js.map

View File

@ -21,9 +21,9 @@ export {
@angular/common/fesm2022/xhr.mjs:
(**
* @license Angular v20.3.1
* @license Angular v20.3.2
* (c) 2010-2025 Google LLC. https://angular.io/
* License: MIT
*)
*/
//# sourceMappingURL=chunk-ZJ25XCV3.js.map
//# sourceMappingURL=chunk-4X6VR2I6.js.map

View File

@ -1,7 +1,7 @@
{
"version": 3,
"sources": ["../../../../../../node_modules/@angular/common/fesm2022/xhr.mjs"],
"sourcesContent": ["/**\n * @license Angular v20.3.1\n * (c) 2010-2025 Google LLC. https://angular.io/\n * License: MIT\n */\n\nfunction parseCookieValue(cookieStr, name) {\n name = encodeURIComponent(name);\n for (const cookie of cookieStr.split(';')) {\n const eqIndex = cookie.indexOf('=');\n const [cookieName, cookieValue] = eqIndex == -1 ? [cookie, ''] : [cookie.slice(0, eqIndex), cookie.slice(eqIndex + 1)];\n if (cookieName.trim() === name) {\n return decodeURIComponent(cookieValue);\n }\n }\n return null;\n}\n\n/**\n * A wrapper around the `XMLHttpRequest` constructor.\n *\n * @publicApi\n */\nclass XhrFactory {\n}\n\nexport { XhrFactory, parseCookieValue };\n\n"],
"sourcesContent": ["/**\n * @license Angular v20.3.2\n * (c) 2010-2025 Google LLC. https://angular.io/\n * License: MIT\n */\n\nfunction parseCookieValue(cookieStr, name) {\n name = encodeURIComponent(name);\n for (const cookie of cookieStr.split(';')) {\n const eqIndex = cookie.indexOf('=');\n const [cookieName, cookieValue] = eqIndex == -1 ? [cookie, ''] : [cookie.slice(0, eqIndex), cookie.slice(eqIndex + 1)];\n if (cookieName.trim() === name) {\n return decodeURIComponent(cookieValue);\n }\n }\n return null;\n}\n\n/**\n * A wrapper around the `XMLHttpRequest` constructor.\n *\n * @publicApi\n */\nclass XhrFactory {\n}\n\nexport { XhrFactory, parseCookieValue };\n\n"],
"mappings": ";AAMA,SAAS,iBAAiB,WAAW,MAAM;AACvC,SAAO,mBAAmB,IAAI;AAC9B,aAAW,UAAU,UAAU,MAAM,GAAG,GAAG;AACvC,UAAM,UAAU,OAAO,QAAQ,GAAG;AAClC,UAAM,CAAC,YAAY,WAAW,IAAI,WAAW,KAAK,CAAC,QAAQ,EAAE,IAAI,CAAC,OAAO,MAAM,GAAG,OAAO,GAAG,OAAO,MAAM,UAAU,CAAC,CAAC;AACrH,QAAI,WAAW,KAAK,MAAM,MAAM;AAC5B,aAAO,mBAAmB,WAAW;AAAA,IACzC;AAAA,EACJ;AACA,SAAO;AACX;AAOA,IAAM,aAAN,MAAiB;AACjB;",
"names": []
}

View File

@ -43,7 +43,7 @@ import {
ɵɵdirectiveInject,
ɵɵinjectAttribute,
ɵɵstyleProp
} from "./chunk-A3W7CVOL.js";
} from "./chunk-UEBPW2IJ.js";
import {
DOCUMENT,
DestroyRef,
@ -59,7 +59,7 @@ import {
ɵɵdefineInjectable,
ɵɵdefineInjector,
ɵɵinject
} from "./chunk-M4YA2FTX.js";
} from "./chunk-QLJXSR7F.js";
import {
Subject
} from "./chunk-RSS3ODKE.js";
@ -3717,7 +3717,7 @@ function isPlatformBrowser(platformId) {
function isPlatformServer(platformId) {
return platformId === PLATFORM_SERVER_ID;
}
var VERSION = new Version("20.3.1");
var VERSION = new Version("20.3.2");
var ViewportScroller = class _ViewportScroller {
// De-sugared tree-shakable injection
// See #23917
@ -5185,9 +5185,9 @@ export {
@angular/common/fesm2022/platform_navigation.mjs:
@angular/common/fesm2022/common.mjs:
(**
* @license Angular v20.3.1
* @license Angular v20.3.2
* (c) 2010-2025 Google LLC. https://angular.io/
* License: MIT
*)
*/
//# sourceMappingURL=chunk-NNL7YDF7.js.map
//# sourceMappingURL=chunk-76DXN4JH.js.map

View File

@ -490,15 +490,14 @@ var BASE_EFFECT_NODE = (() => __spreadProps(__spreadValues({}, REACTIVE_NODE), {
consumerIsAlwaysLive: true,
consumerAllowSignalWrites: true,
dirty: true,
hasRun: false,
kind: "effect"
}))();
function runEffect(node) {
node.dirty = false;
if (node.hasRun && !consumerPollProducersForChange(node)) {
if (node.version > 0 && !consumerPollProducersForChange(node)) {
return;
}
node.hasRun = true;
node.version++;
const prevNode = consumerBeforeComputation(node);
try {
node.cleanup();
@ -524,7 +523,6 @@ var WATCH_NODE = (() => {
node.schedule(node.ref);
}
},
hasRun: false,
cleanupFn: NOOP_CLEANUP_FN
});
})();
@ -543,7 +541,7 @@ var Version = class {
this.patch = parts.slice(2).join(".");
}
};
var VERSION = new Version("20.3.1");
var VERSION = new Version("20.3.2");
var ERROR_DETAILS_PAGE_BASE_URL = (() => {
const versionSubDomain = VERSION.major !== "0" ? `v${VERSION.major}.` : "";
return `https://${versionSubDomain}angular.dev/errors`;
@ -3166,15 +3164,16 @@ var identityFn = (v) => v;
function linkedSignal(optionsOrComputation, options) {
if (typeof optionsOrComputation === "function") {
const getter = createLinkedSignal(optionsOrComputation, identityFn, options?.equal);
return upgradeLinkedSignalGetter(getter);
return upgradeLinkedSignalGetter(getter, options?.debugName);
} else {
const getter = createLinkedSignal(optionsOrComputation.source, optionsOrComputation.computation, optionsOrComputation.equal);
return upgradeLinkedSignalGetter(getter);
return upgradeLinkedSignalGetter(getter, optionsOrComputation.debugName);
}
}
function upgradeLinkedSignalGetter(getter) {
function upgradeLinkedSignalGetter(getter, debugName) {
if (ngDevMode) {
getter.toString = () => `[LinkedSignal: ${getter()}]`;
getter[SIGNAL].debugName = debugName;
}
const node = getter[SIGNAL];
const upgradedGetter = getter;
@ -3762,9 +3761,9 @@ export {
@angular/core/fesm2022/root_effect_scheduler.mjs:
@angular/core/fesm2022/resource.mjs:
(**
* @license Angular v20.3.1
* @license Angular v20.3.2
* (c) 2010-2025 Google LLC. https://angular.io/
* License: MIT
*)
*/
//# sourceMappingURL=chunk-M4YA2FTX.js.map
//# sourceMappingURL=chunk-QLJXSR7F.js.map

Some files were not shown because too many files have changed in this diff Show More