@angular/core 15.0.0-rc.4 → 15.0.1
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/esm2020/src/core_private_export.mjs +2 -1
- package/esm2020/src/error_details_base_url.mjs +6 -2
- package/esm2020/src/metadata/directives.mjs +1 -1
- package/esm2020/src/render3/i18n/i18n_parse.mjs +3 -2
- package/esm2020/src/render3/instructions/listener.mjs +6 -5
- package/esm2020/src/render3/node_manipulation.mjs +11 -20
- package/esm2020/src/sanitization/bypass.mjs +4 -3
- package/esm2020/src/sanitization/html_sanitizer.mjs +3 -2
- package/esm2020/src/sanitization/sanitization.mjs +3 -3
- package/esm2020/src/sanitization/url_sanitizer.mjs +3 -2
- package/esm2020/src/version.mjs +1 -1
- package/esm2020/testing/src/logger.mjs +3 -3
- package/esm2020/testing/src/ng_zone_mock.mjs +3 -3
- package/fesm2015/core.mjs +28 -33
- package/fesm2015/core.mjs.map +1 -1
- package/fesm2015/testing.mjs +27 -32
- package/fesm2015/testing.mjs.map +1 -1
- package/fesm2020/core.mjs +28 -33
- package/fesm2020/core.mjs.map +1 -1
- package/fesm2020/testing.mjs +27 -32
- package/fesm2020/testing.mjs.map +1 -1
- package/index.d.ts +14 -3
- package/package.json +1 -1
- package/testing/index.d.ts +1 -1
package/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Angular v15.0.
|
|
2
|
+
* @license Angular v15.0.1
|
|
3
3
|
* (c) 2010-2022 Google LLC. https://angular.io/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
@@ -2385,8 +2385,13 @@ export declare interface Directive {
|
|
|
2385
2385
|
standalone?: boolean;
|
|
2386
2386
|
/**
|
|
2387
2387
|
* Standalone directives that should be applied to the host whenever the directive is matched.
|
|
2388
|
-
* By default none of the inputs or outputs of the host directives will be available on the host,
|
|
2388
|
+
* By default, none of the inputs or outputs of the host directives will be available on the host,
|
|
2389
2389
|
* unless they are specified in the `inputs` or `outputs` properties.
|
|
2390
|
+
*
|
|
2391
|
+
* You can additionally alias inputs and outputs by putting a colon and the alias after the
|
|
2392
|
+
* original input or output name. For example, if a directive applied via `hostDirectives`
|
|
2393
|
+
* defines an input named `menuDisabled`, you can alias this to `disabled` by adding
|
|
2394
|
+
* `'menuDisabled: disabled'` as an entry to `inputs`.
|
|
2390
2395
|
*/
|
|
2391
2396
|
hostDirectives?: (Type<unknown> | {
|
|
2392
2397
|
directive: Type<unknown>;
|
|
@@ -11389,6 +11394,11 @@ export declare class ɵViewRef<T> implements EmbeddedViewRef<T>, InternalViewRef
|
|
|
11389
11394
|
attachToAppRef(appRef: ViewRefTracker): void;
|
|
11390
11395
|
}
|
|
11391
11396
|
|
|
11397
|
+
/**
|
|
11398
|
+
* URL for the XSS security documentation.
|
|
11399
|
+
*/
|
|
11400
|
+
export declare const ɵXSS_SECURITY_URL = "https://g.co/ng/security#xss";
|
|
11401
|
+
|
|
11392
11402
|
/**
|
|
11393
11403
|
* Advances to an element for later binding instructions.
|
|
11394
11404
|
*
|
|
@@ -13028,7 +13038,8 @@ export declare function ɵɵinvalidFactoryDep(index: number): never;
|
|
|
13028
13038
|
*
|
|
13029
13039
|
* @param eventName Name of the event
|
|
13030
13040
|
* @param listenerFn The function to be called when event emits
|
|
13031
|
-
* @param useCapture Whether or not to use capture in event listener
|
|
13041
|
+
* @param useCapture Whether or not to use capture in event listener - this argument is a reminder
|
|
13042
|
+
* from the Renderer3 infrastructure and should be removed from the instruction arguments
|
|
13032
13043
|
* @param eventTargetResolver Function that returns global target information in case this listener
|
|
13033
13044
|
* should be attached to a global object like window, document or body
|
|
13034
13045
|
*
|
package/package.json
CHANGED
package/testing/index.d.ts
CHANGED