@angular/common 17.0.0-next.0 → 17.0.0-next.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (55) hide show
  1. package/esm2022/http/src/client.mjs +3 -3
  2. package/esm2022/http/src/fetch.mjs +3 -3
  3. package/esm2022/http/src/interceptor.mjs +3 -3
  4. package/esm2022/http/src/jsonp.mjs +6 -6
  5. package/esm2022/http/src/module.mjs +12 -12
  6. package/esm2022/http/src/xhr.mjs +3 -3
  7. package/esm2022/http/src/xsrf.mjs +6 -6
  8. package/esm2022/http/testing/src/backend.mjs +3 -3
  9. package/esm2022/http/testing/src/module.mjs +4 -4
  10. package/esm2022/src/common.mjs +2 -1
  11. package/esm2022/src/common_module.mjs +4 -4
  12. package/esm2022/src/directives/ng_class.mjs +3 -3
  13. package/esm2022/src/directives/ng_component_outlet.mjs +3 -3
  14. package/esm2022/src/directives/ng_for_of.mjs +3 -3
  15. package/esm2022/src/directives/ng_if.mjs +3 -3
  16. package/esm2022/src/directives/ng_optimized_image/lcp_image_observer.mjs +3 -3
  17. package/esm2022/src/directives/ng_optimized_image/ng_optimized_image.mjs +14 -6
  18. package/esm2022/src/directives/ng_optimized_image/preconnect_link_checker.mjs +3 -3
  19. package/esm2022/src/directives/ng_optimized_image/preload-link-creator.mjs +3 -3
  20. package/esm2022/src/directives/ng_plural.mjs +6 -6
  21. package/esm2022/src/directives/ng_style.mjs +3 -3
  22. package/esm2022/src/directives/ng_switch.mjs +9 -9
  23. package/esm2022/src/directives/ng_template_outlet.mjs +3 -3
  24. package/esm2022/src/i18n/localization.mjs +6 -6
  25. package/esm2022/src/location/hash_location_strategy.mjs +3 -3
  26. package/esm2022/src/location/location.mjs +3 -3
  27. package/esm2022/src/location/location_strategy.mjs +6 -6
  28. package/esm2022/src/location/platform_location.mjs +6 -6
  29. package/esm2022/src/pipes/async_pipe.mjs +3 -3
  30. package/esm2022/src/pipes/case_conversion_pipes.mjs +9 -9
  31. package/esm2022/src/pipes/date_pipe.mjs +3 -3
  32. package/esm2022/src/pipes/i18n_plural_pipe.mjs +3 -3
  33. package/esm2022/src/pipes/i18n_select_pipe.mjs +3 -3
  34. package/esm2022/src/pipes/json_pipe.mjs +3 -3
  35. package/esm2022/src/pipes/keyvalue_pipe.mjs +3 -3
  36. package/esm2022/src/pipes/number_pipe.mjs +9 -9
  37. package/esm2022/src/pipes/slice_pipe.mjs +3 -3
  38. package/esm2022/src/version.mjs +1 -1
  39. package/esm2022/testing/src/location_mock.mjs +12 -5
  40. package/esm2022/testing/src/mock_location_strategy.mjs +3 -3
  41. package/esm2022/testing/src/mock_platform_location.mjs +3 -3
  42. package/esm2022/upgrade/src/location_upgrade_module.mjs +4 -4
  43. package/fesm2022/common.mjs +125 -117
  44. package/fesm2022/common.mjs.map +1 -1
  45. package/fesm2022/http/testing.mjs +8 -8
  46. package/fesm2022/http.mjs +37 -37
  47. package/fesm2022/testing.mjs +13 -70
  48. package/fesm2022/testing.mjs.map +1 -1
  49. package/fesm2022/upgrade.mjs +5 -5
  50. package/http/index.d.ts +1 -1
  51. package/http/testing/index.d.ts +1 -1
  52. package/index.d.ts +161 -1
  53. package/package.json +2 -2
  54. package/testing/index.d.ts +1 -1
  55. package/upgrade/index.d.ts +1 -1
package/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Angular v17.0.0-next.0
2
+ * @license Angular v17.0.0-next.2
3
3
  * (c) 2010-2022 Google LLC. https://angular.io/
4
4
  * License: MIT
5
5
  */
@@ -31,6 +31,18 @@ import { Type } from '@angular/core';
31
31
  import { Version } from '@angular/core';
32
32
  import { ViewContainerRef } from '@angular/core';
33
33
 
34
+ declare function allowSanitizationBypassAndThrow(value: any, type: BypassType.Html): value is SafeHtml;
35
+
36
+ declare function allowSanitizationBypassAndThrow(value: any, type: BypassType.ResourceUrl): value is SafeResourceUrl;
37
+
38
+ declare function allowSanitizationBypassAndThrow(value: any, type: BypassType.Script): value is SafeScript;
39
+
40
+ declare function allowSanitizationBypassAndThrow(value: any, type: BypassType.Style): value is SafeStyle;
41
+
42
+ declare function allowSanitizationBypassAndThrow(value: any, type: BypassType.Url): value is SafeUrl;
43
+
44
+ declare function allowSanitizationBypassAndThrow(value: any, type: BypassType): boolean;
45
+
34
46
  /**
35
47
  * A predefined [DI token](guide/glossary#di-token) for the base href
36
48
  * to be used with the `PathLocationStrategy`.
@@ -136,6 +148,70 @@ export declare class BrowserPlatformLocation extends PlatformLocation {
136
148
  static ɵprov: i0.ɵɵInjectableDeclaration<BrowserPlatformLocation>;
137
149
  }
138
150
 
151
+ /**
152
+ * Mark `html` string as trusted.
153
+ *
154
+ * This function wraps the trusted string in `String` and brands it in a way which makes it
155
+ * recognizable to {@link htmlSanitizer} to be trusted implicitly.
156
+ *
157
+ * @param trustedHtml `html` string which needs to be implicitly trusted.
158
+ * @returns a `html` which has been branded to be implicitly trusted.
159
+ */
160
+ declare function bypassSanitizationTrustHtml(trustedHtml: string): SafeHtml;
161
+
162
+ /**
163
+ * Mark `url` string as trusted.
164
+ *
165
+ * This function wraps the trusted string in `String` and brands it in a way which makes it
166
+ * recognizable to {@link resourceUrlSanitizer} to be trusted implicitly.
167
+ *
168
+ * @param trustedResourceUrl `url` string which needs to be implicitly trusted.
169
+ * @returns a `url` which has been branded to be implicitly trusted.
170
+ */
171
+ declare function bypassSanitizationTrustResourceUrl(trustedResourceUrl: string): SafeResourceUrl;
172
+
173
+ /**
174
+ * Mark `script` string as trusted.
175
+ *
176
+ * This function wraps the trusted string in `String` and brands it in a way which makes it
177
+ * recognizable to {@link scriptSanitizer} to be trusted implicitly.
178
+ *
179
+ * @param trustedScript `script` string which needs to be implicitly trusted.
180
+ * @returns a `script` which has been branded to be implicitly trusted.
181
+ */
182
+ declare function bypassSanitizationTrustScript(trustedScript: string): SafeScript;
183
+
184
+ /**
185
+ * Mark `style` string as trusted.
186
+ *
187
+ * This function wraps the trusted string in `String` and brands it in a way which makes it
188
+ * recognizable to {@link styleSanitizer} to be trusted implicitly.
189
+ *
190
+ * @param trustedStyle `style` string which needs to be implicitly trusted.
191
+ * @returns a `style` hich has been branded to be implicitly trusted.
192
+ */
193
+ declare function bypassSanitizationTrustStyle(trustedStyle: string): SafeStyle;
194
+
195
+ /**
196
+ * Mark `url` string as trusted.
197
+ *
198
+ * This function wraps the trusted string in `String` and brands it in a way which makes it
199
+ * recognizable to {@link urlSanitizer} to be trusted implicitly.
200
+ *
201
+ * @param trustedUrl `url` string which needs to be implicitly trusted.
202
+ * @returns a `url` which has been branded to be implicitly trusted.
203
+ */
204
+ declare function bypassSanitizationTrustUrl(trustedUrl: string): SafeUrl;
205
+
206
+
207
+ declare const enum BypassType {
208
+ Url = "URL",
209
+ Html = "HTML",
210
+ ResourceUrl = "ResourceURL",
211
+ Script = "Script",
212
+ Style = "Style"
213
+ }
214
+
139
215
  /**
140
216
  * Exports all the basic Angular directives and pipes,
141
217
  * such as `NgIf`, `NgForOf`, `DecimalPipe`, and so on.
@@ -949,6 +1025,8 @@ export declare function getLocaleWeekEndRange(locale: string): [WeekDay, WeekDay
949
1025
  */
950
1026
  export declare function getNumberOfCurrencyDigits(code: string): number;
951
1027
 
1028
+ declare function getSanitizationBypassType(value: any): BypassType | null;
1029
+
952
1030
  /**
953
1031
  * @description
954
1032
  * A {@link LocationStrategy} used to configure the {@link Location} service to
@@ -1111,6 +1189,26 @@ export declare class I18nSelectPipe implements PipeTransform {
1111
1189
  static ɵpipe: i0.ɵɵPipeDeclaration<I18nSelectPipe, "i18nSelect", true>;
1112
1190
  }
1113
1191
 
1192
+ declare namespace i1_2 {
1193
+ export {
1194
+ unwrapSafeValue,
1195
+ allowSanitizationBypassAndThrow,
1196
+ getSanitizationBypassType,
1197
+ bypassSanitizationTrustHtml,
1198
+ bypassSanitizationTrustStyle,
1199
+ bypassSanitizationTrustScript,
1200
+ bypassSanitizationTrustUrl,
1201
+ bypassSanitizationTrustResourceUrl,
1202
+ BypassType,
1203
+ SafeValue,
1204
+ SafeHtml,
1205
+ SafeStyle,
1206
+ SafeScript,
1207
+ SafeUrl,
1208
+ SafeResourceUrl
1209
+ }
1210
+ }
1211
+
1114
1212
  declare namespace i2 {
1115
1213
  export {
1116
1214
  NgComponentOutlet
@@ -2309,6 +2407,7 @@ export declare class NgOptimizedImage implements OnInit, OnChanges, OnDestroy {
2309
2407
  private setHostAttribute;
2310
2408
  static ɵfac: i0.ɵɵFactoryDeclaration<NgOptimizedImage, never>;
2311
2409
  static ɵdir: i0.ɵɵDirectiveDeclaration<NgOptimizedImage, "img[ngSrc]", never, { "ngSrc": { "alias": "ngSrc"; "required": true; }; "ngSrcset": { "alias": "ngSrcset"; "required": false; }; "sizes": { "alias": "sizes"; "required": false; }; "width": { "alias": "width"; "required": false; }; "height": { "alias": "height"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "priority": { "alias": "priority"; "required": false; }; "loaderParams": { "alias": "loaderParams"; "required": false; }; "disableOptimizedSrcset": { "alias": "disableOptimizedSrcset"; "required": false; }; "fill": { "alias": "fill"; "required": false; }; "src": { "alias": "src"; "required": false; }; "srcset": { "alias": "srcset"; "required": false; }; }, {}, never, never, true, never>;
2410
+ static ngAcceptInputType_ngSrc: string | i1_2.SafeValue;
2312
2411
  static ngAcceptInputType_width: unknown;
2313
2412
  static ngAcceptInputType_height: unknown;
2314
2413
  static ngAcceptInputType_priority: unknown;
@@ -2977,6 +3076,54 @@ export declare const provideImgixLoader: (path: string) => Provider[];
2977
3076
  */
2978
3077
  export declare function registerLocaleData(data: any, localeId?: string | any, extraData?: any): void;
2979
3078
 
3079
+ /**
3080
+ * Marker interface for a value that's safe to use as HTML.
3081
+ *
3082
+ * @publicApi
3083
+ */
3084
+ declare interface SafeHtml extends SafeValue {
3085
+ }
3086
+
3087
+ /**
3088
+ * Marker interface for a value that's safe to use as a URL to load executable code from.
3089
+ *
3090
+ * @publicApi
3091
+ */
3092
+ declare interface SafeResourceUrl extends SafeValue {
3093
+ }
3094
+
3095
+ /**
3096
+ * Marker interface for a value that's safe to use as JavaScript.
3097
+ *
3098
+ * @publicApi
3099
+ */
3100
+ declare interface SafeScript extends SafeValue {
3101
+ }
3102
+
3103
+ /**
3104
+ * Marker interface for a value that's safe to use as style (CSS).
3105
+ *
3106
+ * @publicApi
3107
+ */
3108
+ declare interface SafeStyle extends SafeValue {
3109
+ }
3110
+
3111
+ /**
3112
+ * Marker interface for a value that's safe to use as a URL linking to a document.
3113
+ *
3114
+ * @publicApi
3115
+ */
3116
+ declare interface SafeUrl extends SafeValue {
3117
+ }
3118
+
3119
+ /**
3120
+ * Marker interface for a value that's safe to use in a particular context.
3121
+ *
3122
+ * @publicApi
3123
+ */
3124
+ declare interface SafeValue {
3125
+ }
3126
+
2980
3127
  /**
2981
3128
  * @ngModule CommonModule
2982
3129
  * @description
@@ -3104,6 +3251,10 @@ export declare enum TranslationWidth {
3104
3251
  Short = 3
3105
3252
  }
3106
3253
 
3254
+ declare function unwrapSafeValue(value: SafeValue): string;
3255
+
3256
+ declare function unwrapSafeValue<T>(value: T): T;
3257
+
3107
3258
  /**
3108
3259
  * Transforms text to all upper case.
3109
3260
  * @see {@link LowerCasePipe}
@@ -3218,6 +3369,15 @@ export declare abstract class ɵDomAdapter {
3218
3369
 
3219
3370
  export declare function ɵgetDOM(): ɵDomAdapter;
3220
3371
 
3372
+ /**
3373
+ * Normalizes URL parameters by prepending with `?` if needed.
3374
+ *
3375
+ * @param params String of URL parameters.
3376
+ *
3377
+ * @returns The normalized URL parameters string.
3378
+ */
3379
+ export declare function ɵnormalizeQueryParams(params: string): string;
3380
+
3221
3381
  /**
3222
3382
  * Provides an empty implementation of the viewport scroller.
3223
3383
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@angular/common",
3
- "version": "17.0.0-next.0",
3
+ "version": "17.0.0-next.2",
4
4
  "description": "Angular - commonly needed directives and services",
5
5
  "author": "angular",
6
6
  "license": "MIT",
@@ -53,7 +53,7 @@
53
53
  }
54
54
  },
55
55
  "peerDependencies": {
56
- "@angular/core": "17.0.0-next.0",
56
+ "@angular/core": "17.0.0-next.2",
57
57
  "rxjs": "^6.5.3 || ^7.4.0"
58
58
  },
59
59
  "repository": {
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Angular v17.0.0-next.0
2
+ * @license Angular v17.0.0-next.2
3
3
  * (c) 2010-2022 Google LLC. https://angular.io/
4
4
  * License: MIT
5
5
  */
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @license Angular v17.0.0-next.0
2
+ * @license Angular v17.0.0-next.2
3
3
  * (c) 2010-2022 Google LLC. https://angular.io/
4
4
  * License: MIT
5
5
  */