@angular/common 21.0.1 → 21.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,151 @@
1
+ /**
2
+ * @license Angular v21.0.3
3
+ * (c) 2010-2025 Google LLC. https://angular.dev/
4
+ * License: MIT
5
+ */
6
+
7
+ import * as i0 from '@angular/core';
8
+ import { inject, Injectable, InjectionToken, DOCUMENT } from '@angular/core';
9
+
10
+ let _DOM = null;
11
+ function getDOM() {
12
+ return _DOM;
13
+ }
14
+ function setRootDomAdapter(adapter) {
15
+ _DOM ??= adapter;
16
+ }
17
+ class DomAdapter {}
18
+
19
+ class PlatformLocation {
20
+ historyGo(relativePosition) {
21
+ throw new Error(ngDevMode ? 'Not implemented' : '');
22
+ }
23
+ static ɵfac = i0.ɵɵngDeclareFactory({
24
+ minVersion: "12.0.0",
25
+ version: "21.0.3",
26
+ ngImport: i0,
27
+ type: PlatformLocation,
28
+ deps: [],
29
+ target: i0.ɵɵFactoryTarget.Injectable
30
+ });
31
+ static ɵprov = i0.ɵɵngDeclareInjectable({
32
+ minVersion: "12.0.0",
33
+ version: "21.0.3",
34
+ ngImport: i0,
35
+ type: PlatformLocation,
36
+ providedIn: 'platform',
37
+ useFactory: () => inject(BrowserPlatformLocation)
38
+ });
39
+ }
40
+ i0.ɵɵngDeclareClassMetadata({
41
+ minVersion: "12.0.0",
42
+ version: "21.0.3",
43
+ ngImport: i0,
44
+ type: PlatformLocation,
45
+ decorators: [{
46
+ type: Injectable,
47
+ args: [{
48
+ providedIn: 'platform',
49
+ useFactory: () => inject(BrowserPlatformLocation)
50
+ }]
51
+ }]
52
+ });
53
+ const LOCATION_INITIALIZED = new InjectionToken(typeof ngDevMode !== undefined && ngDevMode ? 'Location Initialized' : '');
54
+ class BrowserPlatformLocation extends PlatformLocation {
55
+ _location;
56
+ _history;
57
+ _doc = inject(DOCUMENT);
58
+ constructor() {
59
+ super();
60
+ this._location = window.location;
61
+ this._history = window.history;
62
+ }
63
+ getBaseHrefFromDOM() {
64
+ return getDOM().getBaseHref(this._doc);
65
+ }
66
+ onPopState(fn) {
67
+ const window = getDOM().getGlobalEventTarget(this._doc, 'window');
68
+ window.addEventListener('popstate', fn, false);
69
+ return () => window.removeEventListener('popstate', fn);
70
+ }
71
+ onHashChange(fn) {
72
+ const window = getDOM().getGlobalEventTarget(this._doc, 'window');
73
+ window.addEventListener('hashchange', fn, false);
74
+ return () => window.removeEventListener('hashchange', fn);
75
+ }
76
+ get href() {
77
+ return this._location.href;
78
+ }
79
+ get protocol() {
80
+ return this._location.protocol;
81
+ }
82
+ get hostname() {
83
+ return this._location.hostname;
84
+ }
85
+ get port() {
86
+ return this._location.port;
87
+ }
88
+ get pathname() {
89
+ return this._location.pathname;
90
+ }
91
+ get search() {
92
+ return this._location.search;
93
+ }
94
+ get hash() {
95
+ return this._location.hash;
96
+ }
97
+ set pathname(newPath) {
98
+ this._location.pathname = newPath;
99
+ }
100
+ pushState(state, title, url) {
101
+ this._history.pushState(state, title, url);
102
+ }
103
+ replaceState(state, title, url) {
104
+ this._history.replaceState(state, title, url);
105
+ }
106
+ forward() {
107
+ this._history.forward();
108
+ }
109
+ back() {
110
+ this._history.back();
111
+ }
112
+ historyGo(relativePosition = 0) {
113
+ this._history.go(relativePosition);
114
+ }
115
+ getState() {
116
+ return this._history.state;
117
+ }
118
+ static ɵfac = i0.ɵɵngDeclareFactory({
119
+ minVersion: "12.0.0",
120
+ version: "21.0.3",
121
+ ngImport: i0,
122
+ type: BrowserPlatformLocation,
123
+ deps: [],
124
+ target: i0.ɵɵFactoryTarget.Injectable
125
+ });
126
+ static ɵprov = i0.ɵɵngDeclareInjectable({
127
+ minVersion: "12.0.0",
128
+ version: "21.0.3",
129
+ ngImport: i0,
130
+ type: BrowserPlatformLocation,
131
+ providedIn: 'platform',
132
+ useFactory: () => new BrowserPlatformLocation()
133
+ });
134
+ }
135
+ i0.ɵɵngDeclareClassMetadata({
136
+ minVersion: "12.0.0",
137
+ version: "21.0.3",
138
+ ngImport: i0,
139
+ type: BrowserPlatformLocation,
140
+ decorators: [{
141
+ type: Injectable,
142
+ args: [{
143
+ providedIn: 'platform',
144
+ useFactory: () => new BrowserPlatformLocation()
145
+ }]
146
+ }],
147
+ ctorParameters: () => []
148
+ });
149
+
150
+ export { BrowserPlatformLocation, DomAdapter, LOCATION_INITIALIZED, PlatformLocation, getDOM, setRootDomAdapter };
151
+ //# sourceMappingURL=_platform_location-chunk.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"_platform_location-chunk.mjs","sources":["../../../../../darwin_arm64-fastbuild-ST-199a4f3c4e20/bin/packages/common/src/dom_adapter.ts","../../../../../darwin_arm64-fastbuild-ST-199a4f3c4e20/bin/packages/common/src/location/platform_location.ts"],"sourcesContent":["/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.dev/license\n */\n\nlet _DOM: DomAdapter = null!;\n\nexport function getDOM(): DomAdapter {\n return _DOM;\n}\n\nexport function setRootDomAdapter(adapter: DomAdapter) {\n _DOM ??= adapter;\n}\n\n/**\n * Provides DOM operations in an environment-agnostic way.\n *\n * @security Tread carefully! Interacting with the DOM directly is dangerous and\n * can introduce XSS risks.\n */\nexport abstract class DomAdapter {\n // Needs Domino-friendly test utility\n abstract dispatchEvent(el: any, evt: any): any;\n abstract readonly supportsDOMEvents: boolean;\n\n // Used by Meta\n abstract remove(el: any): void;\n abstract createElement(tagName: any, doc?: any): HTMLElement;\n abstract createHtmlDocument(): Document;\n abstract getDefaultDocument(): Document;\n\n // Used by By.css\n abstract isElementNode(node: any): boolean;\n\n // Used by Testability\n abstract isShadowRoot(node: any): boolean;\n\n // Used by KeyEventsPlugin\n abstract onAndCancel(el: any, evt: any, listener: any, options?: any): Function;\n\n // Used by PlatformLocation and ServerEventManagerPlugin\n abstract getGlobalEventTarget(doc: Document, target: string): any;\n\n // Used by PlatformLocation\n abstract getBaseHref(doc: Document): string | null;\n abstract resetBaseElement(): void;\n\n // TODO: remove dependency in DefaultValueAccessor\n abstract getUserAgent(): string;\n\n // Used in the legacy @angular/http package which has some usage in g3.\n abstract getCookie(name: string): string | null;\n}\n","/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.dev/license\n */\n\nimport {inject, Injectable, InjectionToken, DOCUMENT} from '@angular/core';\n\nimport {getDOM} from '../dom_adapter';\n\n/**\n * This class should not be used directly by an application developer. Instead, use\n * {@link Location}.\n *\n * `PlatformLocation` encapsulates all calls to DOM APIs, which allows the Router to be\n * platform-agnostic.\n * This means that we can have different implementation of `PlatformLocation` for the different\n * platforms that Angular supports. For example, `@angular/platform-browser` provides an\n * implementation specific to the browser environment, while `@angular/platform-server` provides\n * one suitable for use with server-side rendering.\n *\n * The `PlatformLocation` class is used directly by all implementations of {@link LocationStrategy}\n * when they need to interact with the DOM APIs like pushState, popState, etc.\n *\n * {@link LocationStrategy} in turn is used by the {@link Location} service which is used directly\n * by the {@link /api/router/Router Router} in order to navigate between routes. Since all interactions between\n * {@link /api/router/Router Router} /\n * {@link Location} / {@link LocationStrategy} and DOM APIs flow through the `PlatformLocation`\n * class, they are all platform-agnostic.\n *\n * @publicApi\n */\n@Injectable({providedIn: 'platform', useFactory: () => inject(BrowserPlatformLocation)})\nexport abstract class PlatformLocation {\n abstract getBaseHrefFromDOM(): string;\n abstract getState(): unknown;\n /**\n * Returns a function that, when executed, removes the `popstate` event handler.\n */\n abstract onPopState(fn: LocationChangeListener): VoidFunction;\n /**\n * Returns a function that, when executed, removes the `hashchange` event handler.\n */\n abstract onHashChange(fn: LocationChangeListener): VoidFunction;\n\n abstract get href(): string;\n abstract get protocol(): string;\n abstract get hostname(): string;\n abstract get port(): string;\n abstract get pathname(): string;\n abstract get search(): string;\n abstract get hash(): string;\n\n abstract replaceState(state: any, title: string, url: string): void;\n\n abstract pushState(state: any, title: string, url: string): void;\n\n abstract forward(): void;\n\n abstract back(): void;\n\n historyGo?(relativePosition: number): void {\n throw new Error(ngDevMode ? 'Not implemented' : '');\n }\n}\n\n/**\n * @description\n * Indicates when a location is initialized.\n *\n * @publicApi\n */\nexport const LOCATION_INITIALIZED = new InjectionToken<Promise<any>>(\n typeof ngDevMode !== undefined && ngDevMode ? 'Location Initialized' : '',\n);\n\n/**\n * @description\n * A serializable version of the event from `onPopState` or `onHashChange`\n *\n * @publicApi\n */\nexport interface LocationChangeEvent {\n type: string;\n state: any;\n}\n\n/**\n * @publicApi\n */\nexport interface LocationChangeListener {\n (event: LocationChangeEvent): any;\n}\n\n/**\n * `PlatformLocation` encapsulates all of the direct calls to platform APIs.\n * This class should not be used directly by an application developer. Instead, use\n * {@link Location}.\n *\n * @publicApi\n */\n@Injectable({\n providedIn: 'platform',\n useFactory: () => new BrowserPlatformLocation(),\n})\nexport class BrowserPlatformLocation extends PlatformLocation {\n private _location: Location;\n private _history: History;\n private _doc = inject(DOCUMENT);\n\n constructor() {\n super();\n this._location = window.location;\n this._history = window.history;\n }\n\n override getBaseHrefFromDOM(): string {\n return getDOM().getBaseHref(this._doc)!;\n }\n\n override onPopState(fn: LocationChangeListener): VoidFunction {\n const window = getDOM().getGlobalEventTarget(this._doc, 'window');\n window.addEventListener('popstate', fn, false);\n return () => window.removeEventListener('popstate', fn);\n }\n\n override onHashChange(fn: LocationChangeListener): VoidFunction {\n const window = getDOM().getGlobalEventTarget(this._doc, 'window');\n window.addEventListener('hashchange', fn, false);\n return () => window.removeEventListener('hashchange', fn);\n }\n\n override get href(): string {\n return this._location.href;\n }\n override get protocol(): string {\n return this._location.protocol;\n }\n override get hostname(): string {\n return this._location.hostname;\n }\n override get port(): string {\n return this._location.port;\n }\n override get pathname(): string {\n return this._location.pathname;\n }\n override get search(): string {\n return this._location.search;\n }\n override get hash(): string {\n return this._location.hash;\n }\n override set pathname(newPath: string) {\n this._location.pathname = newPath;\n }\n\n override pushState(state: any, title: string, url: string): void {\n this._history.pushState(state, title, url);\n }\n\n override replaceState(state: any, title: string, url: string): void {\n this._history.replaceState(state, title, url);\n }\n\n override forward(): void {\n this._history.forward();\n }\n\n override back(): void {\n this._history.back();\n }\n\n override historyGo(relativePosition: number = 0): void {\n this._history.go(relativePosition);\n }\n\n override getState(): unknown {\n return this._history.state;\n }\n}\n"],"names":["_DOM","getDOM","setRootDomAdapter","adapter","DomAdapter","PlatformLocation","historyGo","relativePosition","Error","ngDevMode","deps","target","i0","ɵɵFactoryTarget","Injectable","providedIn","useFactory","inject","BrowserPlatformLocation","decorators","args","LOCATION_INITIALIZED","InjectionToken","undefined","_location","_history","_doc","DOCUMENT","constructor","window","location","history","getBaseHrefFromDOM","getBaseHref","onPopState","fn","getGlobalEventTarget","addEventListener","removeEventListener","onHashChange","href","protocol","hostname","port","pathname","search","hash","newPath","pushState","state","title","url","replaceState","forward","back","go","getState"],"mappings":"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"}
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Angular v21.0.1
2
+ * @license Angular v21.0.3
3
3
  * (c) 2010-2025 Google LLC. https://angular.dev/
4
4
  * License: MIT
5
5
  */
@@ -10,7 +10,7 @@ import { Injectable } from '@angular/core';
10
10
  class PlatformNavigation {
11
11
  static ɵfac = i0.ɵɵngDeclareFactory({
12
12
  minVersion: "12.0.0",
13
- version: "21.0.1",
13
+ version: "21.0.3",
14
14
  ngImport: i0,
15
15
  type: PlatformNavigation,
16
16
  deps: [],
@@ -18,7 +18,7 @@ class PlatformNavigation {
18
18
  });
19
19
  static ɵprov = i0.ɵɵngDeclareInjectable({
20
20
  minVersion: "12.0.0",
21
- version: "21.0.1",
21
+ version: "21.0.3",
22
22
  ngImport: i0,
23
23
  type: PlatformNavigation,
24
24
  providedIn: 'platform',
@@ -27,7 +27,7 @@ class PlatformNavigation {
27
27
  }
28
28
  i0.ɵɵngDeclareClassMetadata({
29
29
  minVersion: "12.0.0",
30
- version: "21.0.1",
30
+ version: "21.0.3",
31
31
  ngImport: i0,
32
32
  type: PlatformNavigation,
33
33
  decorators: [{
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Angular v21.0.1
2
+ * @license Angular v21.0.3
3
3
  * (c) 2010-2025 Google LLC. https://angular.dev/
4
4
  * License: MIT
5
5
  */
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Angular v21.0.1
2
+ * @license Angular v21.0.3
3
3
  * (c) 2010-2025 Google LLC. https://angular.dev/
4
4
  * License: MIT
5
5
  */
@@ -11,7 +11,8 @@ export { DOCUMENT, ɵIMAGE_CONFIG as IMAGE_CONFIG } from '@angular/core';
11
11
  import { PlatformNavigation } from './_platform_navigation-chunk.mjs';
12
12
  export { XhrFactory, parseCookieValue as ɵparseCookieValue } from './_xhr-chunk.mjs';
13
13
  import { Location, LocationStrategy, normalizeQueryParams } from './_location-chunk.mjs';
14
- export { APP_BASE_HREF, BrowserPlatformLocation, LOCATION_INITIALIZED, PathLocationStrategy, PlatformLocation, DomAdapter as ɵDomAdapter, getDOM as ɵgetDOM, setRootDomAdapter as ɵsetRootDomAdapter } from './_location-chunk.mjs';
14
+ export { APP_BASE_HREF, PathLocationStrategy } from './_location-chunk.mjs';
15
+ export { BrowserPlatformLocation, LOCATION_INITIALIZED, PlatformLocation, DomAdapter as ɵDomAdapter, getDOM as ɵgetDOM, setRootDomAdapter as ɵsetRootDomAdapter } from './_platform_location-chunk.mjs';
15
16
  import 'rxjs';
16
17
 
17
18
  class NavigationAdapterForLocation extends Location {
@@ -62,7 +63,7 @@ class NavigationAdapterForLocation extends Location {
62
63
  }
63
64
  static ɵfac = i0.ɵɵngDeclareFactory({
64
65
  minVersion: "12.0.0",
65
- version: "21.0.1",
66
+ version: "21.0.3",
66
67
  ngImport: i0,
67
68
  type: NavigationAdapterForLocation,
68
69
  deps: [],
@@ -70,14 +71,14 @@ class NavigationAdapterForLocation extends Location {
70
71
  });
71
72
  static ɵprov = i0.ɵɵngDeclareInjectable({
72
73
  minVersion: "12.0.0",
73
- version: "21.0.1",
74
+ version: "21.0.3",
74
75
  ngImport: i0,
75
76
  type: NavigationAdapterForLocation
76
77
  });
77
78
  }
78
79
  i0.ɵɵngDeclareClassMetadata({
79
80
  minVersion: "12.0.0",
80
- version: "21.0.1",
81
+ version: "21.0.3",
81
82
  ngImport: i0,
82
83
  type: NavigationAdapterForLocation,
83
84
  decorators: [{
@@ -99,7 +100,7 @@ function isPlatformServer(platformId) {
99
100
  return platformId === PLATFORM_SERVER_ID;
100
101
  }
101
102
 
102
- const VERSION = /* @__PURE__ */new Version('21.0.1');
103
+ const VERSION = /* @__PURE__ */new Version('21.0.3');
103
104
 
104
105
  class ViewportScroller {
105
106
  static ɵprov =
@@ -463,7 +464,7 @@ class LCPImageObserver {
463
464
  }
464
465
  static ɵfac = i0.ɵɵngDeclareFactory({
465
466
  minVersion: "12.0.0",
466
- version: "21.0.1",
467
+ version: "21.0.3",
467
468
  ngImport: i0,
468
469
  type: LCPImageObserver,
469
470
  deps: [],
@@ -471,7 +472,7 @@ class LCPImageObserver {
471
472
  });
472
473
  static ɵprov = i0.ɵɵngDeclareInjectable({
473
474
  minVersion: "12.0.0",
474
- version: "21.0.1",
475
+ version: "21.0.3",
475
476
  ngImport: i0,
476
477
  type: LCPImageObserver,
477
478
  providedIn: 'root'
@@ -479,7 +480,7 @@ class LCPImageObserver {
479
480
  }
480
481
  i0.ɵɵngDeclareClassMetadata({
481
482
  minVersion: "12.0.0",
482
- version: "21.0.1",
483
+ version: "21.0.3",
483
484
  ngImport: i0,
484
485
  type: LCPImageObserver,
485
486
  decorators: [{
@@ -550,7 +551,7 @@ class PreconnectLinkChecker {
550
551
  }
551
552
  static ɵfac = i0.ɵɵngDeclareFactory({
552
553
  minVersion: "12.0.0",
553
- version: "21.0.1",
554
+ version: "21.0.3",
554
555
  ngImport: i0,
555
556
  type: PreconnectLinkChecker,
556
557
  deps: [],
@@ -558,7 +559,7 @@ class PreconnectLinkChecker {
558
559
  });
559
560
  static ɵprov = i0.ɵɵngDeclareInjectable({
560
561
  minVersion: "12.0.0",
561
- version: "21.0.1",
562
+ version: "21.0.3",
562
563
  ngImport: i0,
563
564
  type: PreconnectLinkChecker,
564
565
  providedIn: 'root'
@@ -566,7 +567,7 @@ class PreconnectLinkChecker {
566
567
  }
567
568
  i0.ɵɵngDeclareClassMetadata({
568
569
  minVersion: "12.0.0",
569
- version: "21.0.1",
570
+ version: "21.0.3",
570
571
  ngImport: i0,
571
572
  type: PreconnectLinkChecker,
572
573
  decorators: [{
@@ -616,7 +617,7 @@ class PreloadLinkCreator {
616
617
  }
617
618
  static ɵfac = i0.ɵɵngDeclareFactory({
618
619
  minVersion: "12.0.0",
619
- version: "21.0.1",
620
+ version: "21.0.3",
620
621
  ngImport: i0,
621
622
  type: PreloadLinkCreator,
622
623
  deps: [],
@@ -624,7 +625,7 @@ class PreloadLinkCreator {
624
625
  });
625
626
  static ɵprov = i0.ɵɵngDeclareInjectable({
626
627
  minVersion: "12.0.0",
627
- version: "21.0.1",
628
+ version: "21.0.3",
628
629
  ngImport: i0,
629
630
  type: PreloadLinkCreator,
630
631
  providedIn: 'root'
@@ -632,7 +633,7 @@ class PreloadLinkCreator {
632
633
  }
633
634
  i0.ɵɵngDeclareClassMetadata({
634
635
  minVersion: "12.0.0",
635
- version: "21.0.1",
636
+ version: "21.0.3",
636
637
  ngImport: i0,
637
638
  type: PreloadLinkCreator,
638
639
  decorators: [{
@@ -931,7 +932,7 @@ class NgOptimizedImage {
931
932
  }
932
933
  static ɵfac = i0.ɵɵngDeclareFactory({
933
934
  minVersion: "12.0.0",
934
- version: "21.0.1",
935
+ version: "21.0.3",
935
936
  ngImport: i0,
936
937
  type: NgOptimizedImage,
937
938
  deps: [],
@@ -939,7 +940,7 @@ class NgOptimizedImage {
939
940
  });
940
941
  static ɵdir = i0.ɵɵngDeclareDirective({
941
942
  minVersion: "16.1.0",
942
- version: "21.0.1",
943
+ version: "21.0.3",
943
944
  type: NgOptimizedImage,
944
945
  isStandalone: true,
945
946
  selector: "img[ngSrc]",
@@ -979,7 +980,7 @@ class NgOptimizedImage {
979
980
  }
980
981
  i0.ɵɵngDeclareClassMetadata({
981
982
  minVersion: "12.0.0",
982
- version: "21.0.1",
983
+ version: "21.0.3",
983
984
  ngImport: i0,
984
985
  type: NgOptimizedImage,
985
986
  decorators: [{