@angular/core 5.2.7 → 5.2.11
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 +2 -2
- package/bundles/core-testing.umd.min.js +1 -1
- package/bundles/core-testing.umd.min.js.map +1 -1
- package/bundles/core.umd.js +63 -17
- package/bundles/core.umd.js.map +1 -1
- package/bundles/core.umd.min.js +2 -2
- package/bundles/core.umd.min.js.map +1 -1
- package/core.metadata.json +1 -1
- package/esm2015/core.js +59 -16
- package/esm2015/core.js.map +1 -1
- package/esm2015/testing.js +1 -1
- package/esm5/core.js +62 -16
- package/esm5/core.js.map +1 -1
- package/esm5/testing.js +1 -1
- package/package.json +1 -1
- package/src/metadata/directives.d.ts +2 -2
- package/testing.d.ts +1 -1
package/esm5/testing.js
CHANGED
package/package.json
CHANGED
|
@@ -141,7 +141,7 @@ export interface Directive {
|
|
|
141
141
|
* @Component({
|
|
142
142
|
* selector: 'app',
|
|
143
143
|
* template: `
|
|
144
|
-
* <bank-account
|
|
144
|
+
* <bank-account bankName="RBC" account-id="4747"></bank-account>
|
|
145
145
|
* `
|
|
146
146
|
* })
|
|
147
147
|
* class App {}
|
|
@@ -802,7 +802,7 @@ export interface InputDecorator {
|
|
|
802
802
|
* @Component({
|
|
803
803
|
* selector: 'app',
|
|
804
804
|
* template: `
|
|
805
|
-
* <bank-account
|
|
805
|
+
* <bank-account bankName="RBC" account-id="4747"></bank-account>
|
|
806
806
|
* `
|
|
807
807
|
* })
|
|
808
808
|
*
|
package/testing.d.ts
CHANGED