@angular/core 10.0.1 → 10.0.5
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/bundles/core-testing.umd.js +320 -271
- package/bundles/core-testing.umd.js.map +1 -1
- package/bundles/core-testing.umd.min.js +11 -25
- package/bundles/core-testing.umd.min.js.map +1 -1
- package/bundles/core.umd.js +834 -1043
- package/bundles/core.umd.js.map +1 -1
- package/bundles/core.umd.min.js +132 -286
- package/bundles/core.umd.min.js.map +1 -1
- package/core.d.ts +193 -183
- package/core.metadata.json +1 -1
- package/esm2015/core.js +11 -10
- package/esm2015/src/application_init.js +9 -5
- package/esm2015/src/application_tokens.js +16 -12
- package/esm2015/src/change_detection/change_detector_ref.js +6 -3
- package/esm2015/src/change_detection/constants.js +3 -1
- package/esm2015/src/core_render3_private_export.js +2 -2
- package/esm2015/src/di/injectable.js +1 -1
- package/esm2015/src/di/metadata.js +2 -2
- package/esm2015/src/interface/type.js +2 -2
- package/esm2015/src/linker/ng_module_factory.js +3 -5
- package/esm2015/src/linker/view_ref.js +3 -6
- package/esm2015/src/metadata/directives.js +1 -1
- package/esm2015/src/metadata/ng_module.js +1 -1
- package/esm2015/src/render3/definition.js +3 -11
- package/esm2015/src/render3/di.js +13 -5
- package/esm2015/src/render3/di_setup.js +5 -5
- package/esm2015/src/render3/features/inherit_definition_feature.js +1 -11
- package/esm2015/src/render3/features/ng_onchanges_feature.js +32 -22
- package/esm2015/src/render3/hooks.js +27 -23
- package/esm2015/src/render3/i18n.js +3 -3
- package/esm2015/src/render3/index.js +3 -3
- package/esm2015/src/render3/instructions/element.js +4 -4
- package/esm2015/src/render3/instructions/host_property.js +3 -3
- package/esm2015/src/render3/instructions/listener.js +3 -3
- package/esm2015/src/render3/instructions/shared.js +15 -26
- package/esm2015/src/render3/interfaces/definition.js +1 -1
- package/esm2015/src/render3/interfaces/node.js +1 -1
- package/esm2015/src/render3/jit/environment.js +3 -3
- package/esm2015/src/render3/util/discovery_utils.js +2 -2
- package/esm2015/src/render3/view_ref.js +3 -3
- package/esm2015/src/sanitization/html_sanitizer.js +3 -3
- package/esm2015/src/sanitization/inert_body.js +39 -82
- package/esm2015/src/util/ng_dev_mode.js +2 -2
- package/esm2015/src/version.js +1 -1
- package/esm2015/testing/src/fake_async_fallback.js +5 -1
- package/fesm2015/core.js +266 -309
- package/fesm2015/core.js.map +1 -1
- package/fesm2015/testing.js +5 -1
- package/fesm2015/testing.js.map +1 -1
- package/package.json +1 -1
- package/src/r3_symbols.d.ts +15 -17
- package/testing/testing.d.ts +1 -1
- package/testing.d.ts +1 -1
- package/esm2015/src/util/WrappedValue.js +0 -48
package/package.json
CHANGED
package/src/r3_symbols.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @license Angular v10.0.
|
|
2
|
+
* @license Angular v10.0.5
|
|
3
3
|
* (c) 2010-2020 Google LLC. https://angular.io/
|
|
4
4
|
* License: MIT
|
|
5
5
|
*/
|
|
@@ -18,10 +18,13 @@ declare interface AbstractType<T> extends Function {
|
|
|
18
18
|
}
|
|
19
19
|
|
|
20
20
|
/**
|
|
21
|
-
* Base class
|
|
21
|
+
* Base class that provides change detection functionality.
|
|
22
22
|
* A change-detection tree collects all views that are to be checked for changes.
|
|
23
23
|
* Use the methods to add and remove views from the tree, initiate change-detection,
|
|
24
|
-
* and explicitly mark views as _dirty_, meaning that they have changed and need to be
|
|
24
|
+
* and explicitly mark views as _dirty_, meaning that they have changed and need to be re-rendered.
|
|
25
|
+
*
|
|
26
|
+
* @see [Using change detection hooks](guide/lifecycle-hooks#using-change-detection-hooks)
|
|
27
|
+
* @see [Defining custom change detection](guide/lifecycle-hooks#defining-custom-change-detection)
|
|
25
28
|
*
|
|
26
29
|
* @usageNotes
|
|
27
30
|
*
|
|
@@ -691,25 +694,23 @@ declare abstract class NgModuleFactory_2<T> {
|
|
|
691
694
|
}
|
|
692
695
|
|
|
693
696
|
/**
|
|
694
|
-
* Represents an instance of an NgModule created
|
|
695
|
-
*
|
|
696
|
-
* `NgModuleRef` provides access to the NgModule Instance as well other objects related to this
|
|
697
|
-
* NgModule Instance.
|
|
697
|
+
* Represents an instance of an `NgModule` created by an `NgModuleFactory`.
|
|
698
|
+
* Provides access to the `NgModule` instance and related objects.
|
|
698
699
|
*
|
|
699
700
|
* @publicApi
|
|
700
701
|
*/
|
|
701
702
|
declare abstract class NgModuleRef<T> {
|
|
702
703
|
/**
|
|
703
|
-
* The injector that contains all of the providers of the NgModule
|
|
704
|
+
* The injector that contains all of the providers of the `NgModule`.
|
|
704
705
|
*/
|
|
705
706
|
abstract get injector(): Injector;
|
|
706
707
|
/**
|
|
707
|
-
* The
|
|
708
|
+
* The resolver that can retrieve the component factories
|
|
708
709
|
* declared in the `entryComponents` property of the module.
|
|
709
710
|
*/
|
|
710
711
|
abstract get componentFactoryResolver(): ComponentFactoryResolver;
|
|
711
712
|
/**
|
|
712
|
-
* The NgModule instance.
|
|
713
|
+
* The `NgModule` instance.
|
|
713
714
|
*/
|
|
714
715
|
abstract get instance(): T;
|
|
715
716
|
/**
|
|
@@ -717,7 +718,7 @@ declare abstract class NgModuleRef<T> {
|
|
|
717
718
|
*/
|
|
718
719
|
abstract destroy(): void;
|
|
719
720
|
/**
|
|
720
|
-
*
|
|
721
|
+
* Registers a callback to be executed when the module is destroyed.
|
|
721
722
|
*/
|
|
722
723
|
abstract onDestroy(callback: () => void): void;
|
|
723
724
|
}
|
|
@@ -835,7 +836,7 @@ declare type StaticProvider = ValueProvider | ExistingProvider | StaticClassProv
|
|
|
835
836
|
*
|
|
836
837
|
* Represents a type that a Component or other object is instances of.
|
|
837
838
|
*
|
|
838
|
-
* An example of a `Type` is `MyCustomComponent` class, which in JavaScript is
|
|
839
|
+
* An example of a `Type` is `MyCustomComponent` class, which in JavaScript is represented by
|
|
839
840
|
* the `MyCustomComponent` constructor function.
|
|
840
841
|
*
|
|
841
842
|
* @publicApi
|
|
@@ -888,12 +889,9 @@ declare interface ValueSansProvider {
|
|
|
888
889
|
}
|
|
889
890
|
|
|
890
891
|
/**
|
|
891
|
-
* Represents an Angular [view](guide/glossary#view)
|
|
892
|
-
* specifically the [host view](guide/glossary#view-tree) that is defined by a component.
|
|
893
|
-
* Also serves as the base class
|
|
894
|
-
* that adds destroy methods for [embedded views](guide/glossary#view-tree).
|
|
892
|
+
* Represents an Angular [view](guide/glossary#view "Definition").
|
|
895
893
|
*
|
|
896
|
-
* @see
|
|
894
|
+
* @see {@link ChangeDetectorRef#usage-notes Change detection usage}
|
|
897
895
|
*
|
|
898
896
|
* @publicApi
|
|
899
897
|
*/
|
package/testing/testing.d.ts
CHANGED
package/testing.d.ts
CHANGED
|
@@ -1,48 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @license
|
|
3
|
-
* Copyright Google LLC All Rights Reserved.
|
|
4
|
-
*
|
|
5
|
-
* Use of this source code is governed by an MIT-style license that can be
|
|
6
|
-
* found in the LICENSE file at https://angular.io/license
|
|
7
|
-
*/
|
|
8
|
-
/**
|
|
9
|
-
* Indicates that the result of a {@link Pipe} transformation has changed even though the
|
|
10
|
-
* reference has not changed.
|
|
11
|
-
*
|
|
12
|
-
* Wrapped values are unwrapped automatically during the change detection, and the unwrapped value
|
|
13
|
-
* is stored.
|
|
14
|
-
*
|
|
15
|
-
* Example:
|
|
16
|
-
*
|
|
17
|
-
* ```
|
|
18
|
-
* if (this._latestValue === this._latestReturnedValue) {
|
|
19
|
-
* return this._latestReturnedValue;
|
|
20
|
-
* } else {
|
|
21
|
-
* this._latestReturnedValue = this._latestValue;
|
|
22
|
-
* return WrappedValue.wrap(this._latestValue); // this will force update
|
|
23
|
-
* }
|
|
24
|
-
* ```
|
|
25
|
-
*
|
|
26
|
-
* @publicApi
|
|
27
|
-
*/
|
|
28
|
-
export class WrappedValue {
|
|
29
|
-
constructor(value) {
|
|
30
|
-
this.wrapped = value;
|
|
31
|
-
}
|
|
32
|
-
/** Creates a wrapped value. */
|
|
33
|
-
static wrap(value) {
|
|
34
|
-
return new WrappedValue(value);
|
|
35
|
-
}
|
|
36
|
-
/**
|
|
37
|
-
* Returns the underlying value of a wrapped value.
|
|
38
|
-
* Returns the given `value` when it is not wrapped.
|
|
39
|
-
**/
|
|
40
|
-
static unwrap(value) {
|
|
41
|
-
return WrappedValue.isWrapped(value) ? value.wrapped : value;
|
|
42
|
-
}
|
|
43
|
-
/** Returns true if `value` is a wrapped value. */
|
|
44
|
-
static isWrapped(value) {
|
|
45
|
-
return value instanceof WrappedValue;
|
|
46
|
-
}
|
|
47
|
-
}
|
|
48
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiV3JhcHBlZFZhbHVlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vcGFja2FnZXMvY29yZS9zcmMvdXRpbC9XcmFwcGVkVmFsdWUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUE7Ozs7OztHQU1HO0FBRUg7Ozs7Ozs7Ozs7Ozs7Ozs7Ozs7R0FtQkc7QUFDSCxNQUFNLE9BQU8sWUFBWTtJQUl2QixZQUFZLEtBQVU7UUFDcEIsSUFBSSxDQUFDLE9BQU8sR0FBRyxLQUFLLENBQUM7SUFDdkIsQ0FBQztJQUVELCtCQUErQjtJQUMvQixNQUFNLENBQUMsSUFBSSxDQUFDLEtBQVU7UUFDcEIsT0FBTyxJQUFJLFlBQVksQ0FBQyxLQUFLLENBQUMsQ0FBQztJQUNqQyxDQUFDO0lBRUQ7OztRQUdJO0lBQ0osTUFBTSxDQUFDLE1BQU0sQ0FBQyxLQUFVO1FBQ3RCLE9BQU8sWUFBWSxDQUFDLFNBQVMsQ0FBQyxLQUFLLENBQUMsQ0FBQyxDQUFDLENBQUMsS0FBSyxDQUFDLE9BQU8sQ0FBQyxDQUFDLENBQUMsS0FBSyxDQUFDO0lBQy9ELENBQUM7SUFFRCxrREFBa0Q7SUFDbEQsTUFBTSxDQUFDLFNBQVMsQ0FBQyxLQUFVO1FBQ3pCLE9BQU8sS0FBSyxZQUFZLFlBQVksQ0FBQztJQUN2QyxDQUFDO0NBQ0YiLCJzb3VyY2VzQ29udGVudCI6WyIvKipcbiAqIEBsaWNlbnNlXG4gKiBDb3B5cmlnaHQgR29vZ2xlIExMQyBBbGwgUmlnaHRzIFJlc2VydmVkLlxuICpcbiAqIFVzZSBvZiB0aGlzIHNvdXJjZSBjb2RlIGlzIGdvdmVybmVkIGJ5IGFuIE1JVC1zdHlsZSBsaWNlbnNlIHRoYXQgY2FuIGJlXG4gKiBmb3VuZCBpbiB0aGUgTElDRU5TRSBmaWxlIGF0IGh0dHBzOi8vYW5ndWxhci5pby9saWNlbnNlXG4gKi9cblxuLyoqXG4gKiBJbmRpY2F0ZXMgdGhhdCB0aGUgcmVzdWx0IG9mIGEge0BsaW5rIFBpcGV9IHRyYW5zZm9ybWF0aW9uIGhhcyBjaGFuZ2VkIGV2ZW4gdGhvdWdoIHRoZVxuICogcmVmZXJlbmNlIGhhcyBub3QgY2hhbmdlZC5cbiAqXG4gKiBXcmFwcGVkIHZhbHVlcyBhcmUgdW53cmFwcGVkIGF1dG9tYXRpY2FsbHkgZHVyaW5nIHRoZSBjaGFuZ2UgZGV0ZWN0aW9uLCBhbmQgdGhlIHVud3JhcHBlZCB2YWx1ZVxuICogaXMgc3RvcmVkLlxuICpcbiAqIEV4YW1wbGU6XG4gKlxuICogYGBgXG4gKiBpZiAodGhpcy5fbGF0ZXN0VmFsdWUgPT09IHRoaXMuX2xhdGVzdFJldHVybmVkVmFsdWUpIHtcbiAqICAgIHJldHVybiB0aGlzLl9sYXRlc3RSZXR1cm5lZFZhbHVlO1xuICogIH0gZWxzZSB7XG4gKiAgICB0aGlzLl9sYXRlc3RSZXR1cm5lZFZhbHVlID0gdGhpcy5fbGF0ZXN0VmFsdWU7XG4gKiAgICByZXR1cm4gV3JhcHBlZFZhbHVlLndyYXAodGhpcy5fbGF0ZXN0VmFsdWUpOyAvLyB0aGlzIHdpbGwgZm9yY2UgdXBkYXRlXG4gKiAgfVxuICogYGBgXG4gKlxuICogQHB1YmxpY0FwaVxuICovXG5leHBvcnQgY2xhc3MgV3JhcHBlZFZhbHVlIHtcbiAgLyoqIEBkZXByZWNhdGVkIGZyb20gNS4zLCB1c2UgYHVud3JhcCgpYCBpbnN0ZWFkIC0gd2lsbCBzd2l0Y2ggdG8gcHJvdGVjdGVkICovXG4gIHdyYXBwZWQ6IGFueTtcblxuICBjb25zdHJ1Y3Rvcih2YWx1ZTogYW55KSB7XG4gICAgdGhpcy53cmFwcGVkID0gdmFsdWU7XG4gIH1cblxuICAvKiogQ3JlYXRlcyBhIHdyYXBwZWQgdmFsdWUuICovXG4gIHN0YXRpYyB3cmFwKHZhbHVlOiBhbnkpOiBXcmFwcGVkVmFsdWUge1xuICAgIHJldHVybiBuZXcgV3JhcHBlZFZhbHVlKHZhbHVlKTtcbiAgfVxuXG4gIC8qKlxuICAgKiBSZXR1cm5zIHRoZSB1bmRlcmx5aW5nIHZhbHVlIG9mIGEgd3JhcHBlZCB2YWx1ZS5cbiAgICogUmV0dXJucyB0aGUgZ2l2ZW4gYHZhbHVlYCB3aGVuIGl0IGlzIG5vdCB3cmFwcGVkLlxuICAgKiovXG4gIHN0YXRpYyB1bndyYXAodmFsdWU6IGFueSk6IGFueSB7XG4gICAgcmV0dXJuIFdyYXBwZWRWYWx1ZS5pc1dyYXBwZWQodmFsdWUpID8gdmFsdWUud3JhcHBlZCA6IHZhbHVlO1xuICB9XG5cbiAgLyoqIFJldHVybnMgdHJ1ZSBpZiBgdmFsdWVgIGlzIGEgd3JhcHBlZCB2YWx1ZS4gKi9cbiAgc3RhdGljIGlzV3JhcHBlZCh2YWx1ZTogYW55KTogdmFsdWUgaXMgV3JhcHBlZFZhbHVlIHtcbiAgICByZXR1cm4gdmFsdWUgaW5zdGFuY2VvZiBXcmFwcGVkVmFsdWU7XG4gIH1cbn1cbiJdfQ==
|