Skip to content

Commit 6e7a772

Browse files
author
Zhicheng WANG
committed
add CNAME
0 parents  commit 6e7a772

File tree

2,364 files changed

+112415
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

2,364 files changed

+112415
-0
lines changed

3rdpartylicenses.txt

+457
Large diffs are not rendered by default.

404.html

+137
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,137 @@
1+
<!DOCTYPE html><html lang="zh-Hans"><head>
2+
<meta charset="utf-8">
3+
<title>Angular</title>
4+
<meta name="Description" content="Angular is a platform for building mobile and desktop web applications.
5+
Join the community of millions of developers who build compelling user interfaces with Angular.">
6+
<base href="/">
7+
8+
<link rel="preconnect" href="https://www.google-analytics.com">
9+
<link rel="dns-prefetch" href="https://www.google-analytics.com">
10+
<link rel="preconnect" href="https://stats.g.doubleclick.net">
11+
<link rel="dns-prefetch" href="https://stats.g.doubleclick.net">
12+
13+
<meta name="viewport" content="width=device-width, initial-scale=1">
14+
15+
<link rel="search" type="application/opensearchdescription+xml" href="assets/opensearch.xml">
16+
<link rel="icon" type="image/x-icon" href="assets/images/favicons/favicon.ico">
17+
<link rel="icon" type="image/png" href="assets/images/favicons/favicon-32x32.png" sizes="32x32">
18+
<link rel="icon" type="image/png" href="assets/images/favicons/favicon-194x194.png" sizes="194x194">
19+
<link rel="icon" type="image/png" href="assets/images/favicons/favicon-96x96.png" sizes="96x96">
20+
<link rel="icon" type="image/png" href="assets/images/favicons/favicon-16x16.png" sizes="16x16">
21+
<link rel="apple-touch-icon" sizes="144x144" href="assets/images/favicons/favicon-144x144.png">
22+
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="assets/images/favicons/favicon-144x144.png">
23+
24+
<!-- NOTE: These need to be kept in sync with `ngsw-config.json`. -->
25+
<link rel="stylesheet" href="assets/css/roboto.css" media="print" onload="this.media='all'"><noscript><link rel="stylesheet" href="assets/css/roboto.css"></noscript>
26+
<link rel="stylesheet" href="assets/css/roboto-mono.css" media="print" onload="this.media='all'"><noscript><link rel="stylesheet" href="assets/css/roboto-mono.css"></noscript>
27+
<link rel="stylesheet" href="assets/css/material-icons.css" media="print" onload="this.media='all'"><noscript><link rel="stylesheet" href="assets/css/material-icons.css"></noscript>
28+
<!-- -->
29+
30+
<link rel="manifest" href="pwa-manifest.json">
31+
<meta name="theme-color" content="#1976d2">
32+
<meta name="apple-mobile-web-app-capable" content="yes">
33+
<meta name="apple-mobile-web-app-status-bar-style" content="translucent">
34+
35+
<!-- Google Analytics -->
36+
<script>
37+
// Note this is a customised version of the GA tracking snippet
38+
// See the comments below for more info
39+
(function (i, s, o, g, r, a, m) {
40+
i['GoogleAnalyticsObject'] = r; i[r] = i[r] || function () {
41+
(i[r].q = i[r].q || []).push(arguments)
42+
}, i[r].l = 1 * new Date(); a = s.createElement(o),
43+
m = s.getElementsByTagName(o)[0]; a.async = 1; a.src = g;
44+
~i.name.indexOf('NG_DEFER_BOOTSTRAP') || // only load library if not running e2e tests
45+
m.parentNode.insertBefore(a, m)
46+
})(window, document, 'script', 'assets/js/analytics.js', 'ga');
47+
</script>
48+
<!-- End Google Analytics -->
49+
50+
<script>
51+
// Report fatal errors to Google Analytics
52+
window.onerror = function () {
53+
ga('send', 'exception', { exDescription: formatError.apply(null, arguments), exFatal: true });
54+
55+
function formatError(msg, url, line, col, e) {
56+
var stack;
57+
msg = msg.replace(/^Error: /, '');
58+
if (e) {
59+
stack = e.stack
60+
// strip the leading "Error: " from the stack trace
61+
.replace(/^Error: /, '')
62+
// strip the message from the stack trace, if present
63+
.replace(msg + '\n', '')
64+
// strip leading spaces
65+
.replace(/^ +/gm, '')
66+
// strip all leading "at " for each frame
67+
.replace(/^at /gm, '')
68+
// replace long urls with just the last segment: `filename:line:column`
69+
.replace(/(?: \(|@)http.+\/([^/)]+)\)?(?:\n|$)/gm, '@$1\n')
70+
// replace "eval code" in Edge
71+
.replace(/ *\(eval code(:\d+:\d+)\)(?:\n|$)/gm, '@???$1\n')
72+
} else {
73+
line = line || '?';
74+
col = col || '?';
75+
stack = url + ':' + line + ':' + col;
76+
}
77+
return (msg + '\n' + stack).substr(0, 150);
78+
}
79+
};
80+
</script>
81+
82+
<style>html{font-size:62.5%;}body{font-family:Roboto,Helvetica Neue Light,Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif;margin:0;color:#444;font-size:16px;font-size:1.6rem;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;}body,html{height:100%;}body{background-color:#fff;}@media print{*{box-shadow:none!important;}body{background:none!important;}}</style><link rel="stylesheet" href="styles.26c7acdc1e2d44a6f9e6.css" media="print" onload="this.media='all'"><noscript><link rel="stylesheet" href="styles.26c7acdc1e2d44a6f9e6.css"></noscript></head>
83+
84+
<body>
85+
<!--
86+
This content replaces the `<body>` content of `index.html` to generate our custom `404.html` page.
87+
The content must visually and structurally resemble the resulting HTML of the main app for not
88+
found pages (e.g. https://angular.io/not/exist.ing).
89+
-->
90+
91+
<style>
92+
.mat-toolbar-row{display:flex;box-sizing:border-box;padding:0 16px;width:100%;flex-direction:row;align-items:center;white-space:nowrap}
93+
.mat-toolbar-row{height:64px}
94+
@media (max-width:600px){.mat-toolbar-row{height:56px}}
95+
.nav-link.home{margin-left:24px}
96+
</style>
97+
98+
<aio-shell class="mode-stable page-file-not-found folder-file-not-found view- aio-notification-hide">
99+
100+
<mat-toolbar class="app-toolbar no-print mat-toolbar mat-primary">
101+
<mat-toolbar-row class="mat-toolbar-row">
102+
<a class="nav-link home" href="/">
103+
<img alt="Home" height="40" src="assets/images/logos/angular/[email protected]" title="Home" width="150">
104+
</a>
105+
</mat-toolbar-row>
106+
</mat-toolbar>
107+
108+
<mat-sidenav-container class="sidenav-container mat-drawer-container mat-sidenav-container" role="main">
109+
<mat-sidenav-content class="mat-drawer-content mat-sidenav-content">
110+
<section class="sidenav-content" role="article">
111+
<aio-doc-viewer>
112+
<div class="content">
113+
<div class="nf-container l-flex-wrap flex-center">
114+
<img src="assets/images/support/angular-404.svg" width="300" height="300" />
115+
<div class="nf-response l-flex-wrap">
116+
<h1 class="no-toc" id="page-not-found">Resource Not Found</h1>
117+
<p>We're sorry. The resource you are looking for cannot be found.</p>
118+
</div>
119+
</div>
120+
</div>
121+
</aio-doc-viewer>
122+
</section>
123+
</mat-sidenav-content>
124+
</mat-sidenav-container>
125+
126+
<footer class="no-print">
127+
<aio-footer>
128+
<p>
129+
Powered by Google ©2010-2021.
130+
Code licensed under an <a href="license" title="License text">MIT-style License</a>.
131+
Documentation licensed under <a href="https://creativecommons.org/licenses/by/4.0/">CC BY 4.0</a>.
132+
</p>
133+
</aio-footer>
134+
</footer>
135+
136+
</aio-shell>
137+
</body></html>

README.html

+9
Large diffs are not rendered by default.

about.html

+2
Large diffs are not rendered by default.

analytics.html

+17
Large diffs are not rendered by default.

api.html

+2
Large diffs are not rendered by default.

api/animations.html

+9
Large diffs are not rendered by default.

api/animations/AUTO_STYLE.html

+12
Large diffs are not rendered by default.

api/animations/AnimateChildOptions.html

+18
Large diffs are not rendered by default.

api/animations/AnimateTimings.html

+2
Large diffs are not rendered by default.

api/animations/AnimationAnimateChildMetadata.html

+17
Large diffs are not rendered by default.

api/animations/AnimationAnimateMetadata.html

+18
Large diffs are not rendered by default.

api/animations/AnimationAnimateRefMetadata.html

+18
Large diffs are not rendered by default.

api/animations/AnimationBuilder.html

+2
Large diffs are not rendered by default.

api/animations/AnimationEvent.html

+45
Large diffs are not rendered by default.

api/animations/AnimationFactory.html

+16
Large diffs are not rendered by default.

api/animations/AnimationGroupMetadata.html

+18
Large diffs are not rendered by default.

api/animations/AnimationKeyframesSequenceMetadata.html

+2
Large diffs are not rendered by default.

api/animations/AnimationMetadata.html

+2
Large diffs are not rendered by default.

api/animations/AnimationMetadataType.html

+2
Large diffs are not rendered by default.

api/animations/AnimationOptions.html

+2
Large diffs are not rendered by default.

api/animations/AnimationPlayer.html

+55
Large diffs are not rendered by default.

api/animations/AnimationQueryMetadata.html

+2
Large diffs are not rendered by default.

api/animations/AnimationQueryOptions.html

+19
Large diffs are not rendered by default.

api/animations/AnimationReferenceMetadata.html

+2
Large diffs are not rendered by default.

api/animations/AnimationSequenceMetadata.html

+18
Large diffs are not rendered by default.

api/animations/AnimationStaggerMetadata.html

+2
Large diffs are not rendered by default.

api/animations/AnimationStateMetadata.html

+2
Large diffs are not rendered by default.

api/animations/AnimationStyleMetadata.html

+18
Large diffs are not rendered by default.

api/animations/AnimationTransitionMetadata.html

+2
Large diffs are not rendered by default.

api/animations/AnimationTriggerMetadata.html

+2
Large diffs are not rendered by default.

api/animations/NoopAnimationPlayer.html

+2
Large diffs are not rendered by default.

api/animations/animate.html

+2
Large diffs are not rendered by default.

api/animations/animateChild.html

+12
Large diffs are not rendered by default.

api/animations/animation.html

+31
Large diffs are not rendered by default.

api/animations/browser.html

+2
Large diffs are not rendered by default.

api/animations/browser/AnimationDriver.html

+33
Large diffs are not rendered by default.

api/animations/browser/testing.html

+10
Large diffs are not rendered by default.

api/animations/browser/testing/MockAnimationDriver.html

+33
Large diffs are not rendered by default.

api/animations/browser/testing/MockAnimationPlayer.html

+67
Large diffs are not rendered by default.

api/animations/group.html

+2
Large diffs are not rendered by default.

api/animations/keyframes.html

+31
Large diffs are not rendered by default.

api/animations/query.html

+2
Large diffs are not rendered by default.

api/animations/sequence.html

+19
Large diffs are not rendered by default.

api/animations/stagger.html

+68
Large diffs are not rendered by default.

api/animations/state.html

+2
Large diffs are not rendered by default.

api/animations/style.html

+25
Large diffs are not rendered by default.

api/animations/transition.html

+100
Large diffs are not rendered by default.

api/animations/trigger.html

+92
Large diffs are not rendered by default.

api/animations/useAnimation.html

+2
Large diffs are not rendered by default.

api/api-list.html

+2
Large diffs are not rendered by default.

api/common.html

+9
Large diffs are not rendered by default.

api/common/APP_BASE_HREF.html

+22
Large diffs are not rendered by default.

api/common/AsyncPipe.html

+2
Large diffs are not rendered by default.

api/common/CommonModule.html

+2
Large diffs are not rendered by default.

api/common/CurrencyPipe.html

+2
Large diffs are not rendered by default.

api/common/DOCUMENT.html

+2
Large diffs are not rendered by default.

api/common/DatePipe.html

+2
Large diffs are not rendered by default.

api/common/DecimalPipe.html

+2
Large diffs are not rendered by default.

api/common/FormStyle.html

+15
Large diffs are not rendered by default.

api/common/FormatWidth.html

+2
Large diffs are not rendered by default.

api/common/HashLocationStrategy.html

+2
Large diffs are not rendered by default.

api/common/I18nPluralPipe.html

+26
Large diffs are not rendered by default.

api/common/I18nSelectPipe.html

+2
Large diffs are not rendered by default.

api/common/JsonPipe.html

+2
Large diffs are not rendered by default.

api/common/KeyValue.html

+2
Large diffs are not rendered by default.

api/common/KeyValuePipe.html

+2
Large diffs are not rendered by default.

api/common/LOCATION_INITIALIZED.html

+12
Large diffs are not rendered by default.

api/common/Location.html

+2
Large diffs are not rendered by default.

api/common/LocationChangeEvent.html

+2
Large diffs are not rendered by default.

api/common/LocationChangeListener.html

+16
Large diffs are not rendered by default.

api/common/LocationStrategy.html

+44
Large diffs are not rendered by default.

api/common/LowerCasePipe.html

+32
Large diffs are not rendered by default.

api/common/NgClass.html

+2
Large diffs are not rendered by default.

api/common/NgComponentOutlet.html

+83
Large diffs are not rendered by default.

api/common/NgForOf.html

+32
Large diffs are not rendered by default.

api/common/NgForOfContext.html

+24
Large diffs are not rendered by default.

api/common/NgIf.html

+152
Large diffs are not rendered by default.

api/common/NgIfContext.html

+15
Large diffs are not rendered by default.

api/common/NgLocaleLocalization.html

+20
Large diffs are not rendered by default.

api/common/NgLocalization.html

+18
Large diffs are not rendered by default.

api/common/NgPlural.html

+22
Large diffs are not rendered by default.

api/common/NgPluralCase.html

+19
Large diffs are not rendered by default.

api/common/NgStyle.html

+26
Large diffs are not rendered by default.

api/common/NgSwitch.html

+49
Large diffs are not rendered by default.

api/common/NgSwitchCase.html

+22
Large diffs are not rendered by default.

api/common/NgSwitchDefault.html

+12
Large diffs are not rendered by default.

api/common/NgTemplateOutlet.html

+39
Large diffs are not rendered by default.

api/common/NumberFormatStyle.html

+17
Large diffs are not rendered by default.

api/common/NumberSymbol.html

+27
Large diffs are not rendered by default.

api/common/PathLocationStrategy.html

+75
Large diffs are not rendered by default.

api/common/PercentPipe.html

+34
Large diffs are not rendered by default.

api/common/PlatformLocation.html

+49
Large diffs are not rendered by default.

api/common/Plural.html

+19
Large diffs are not rendered by default.

api/common/PopStateEvent.html

+17
Large diffs are not rendered by default.

api/common/SlicePipe.html

+48
Large diffs are not rendered by default.

api/common/Time.html

+15
Large diffs are not rendered by default.

api/common/TitleCasePipe.html

+30
Large diffs are not rendered by default.

api/common/TranslationWidth.html

+17
Large diffs are not rendered by default.

api/common/UpperCasePipe.html

+14
Large diffs are not rendered by default.

api/common/ViewportScroller.html

+32
Large diffs are not rendered by default.

api/common/WeekDay.html

+20
Large diffs are not rendered by default.

api/common/XhrFactory.html

+2
Large diffs are not rendered by default.

api/common/formatCurrency.html

+12
Large diffs are not rendered by default.

api/common/formatDate.html

+12
Large diffs are not rendered by default.

api/common/formatNumber.html

+12
Large diffs are not rendered by default.

api/common/formatPercent.html

+12
Large diffs are not rendered by default.

api/common/getCurrencySymbol.html

+12
Large diffs are not rendered by default.

api/common/getLocaleCurrencyCode.html

+12
Large diffs are not rendered by default.

api/common/getLocaleCurrencyName.html

+12
Large diffs are not rendered by default.

api/common/getLocaleCurrencySymbol.html

+12
Large diffs are not rendered by default.

api/common/getLocaleDateFormat.html

+12
Large diffs are not rendered by default.

api/common/getLocaleDateTimeFormat.html

+12
Large diffs are not rendered by default.

api/common/getLocaleDayNames.html

+12
Large diffs are not rendered by default.

api/common/getLocaleDayPeriods.html

+12
Large diffs are not rendered by default.

api/common/getLocaleDirection.html

+12
Large diffs are not rendered by default.

api/common/getLocaleEraNames.html

+12
Large diffs are not rendered by default.

api/common/getLocaleExtraDayPeriodRules.html

+12
Large diffs are not rendered by default.

api/common/getLocaleExtraDayPeriods.html

+12
Large diffs are not rendered by default.

api/common/getLocaleFirstDayOfWeek.html

+12
Large diffs are not rendered by default.

api/common/getLocaleId.html

+12
Large diffs are not rendered by default.

api/common/getLocaleMonthNames.html

+12
Large diffs are not rendered by default.

api/common/getLocaleNumberFormat.html

+12
Large diffs are not rendered by default.

api/common/getLocaleNumberSymbol.html

+12
Large diffs are not rendered by default.

api/common/getLocalePluralCase.html

+12
Large diffs are not rendered by default.

api/common/getLocaleTimeFormat.html

+12
Large diffs are not rendered by default.

api/common/getLocaleWeekEndRange.html

+12
Large diffs are not rendered by default.

api/common/getNumberOfCurrencyDigits.html

+12
Large diffs are not rendered by default.

api/common/http.html

+10
Large diffs are not rendered by default.

api/common/http/HTTP_INTERCEPTORS.html

+13
Large diffs are not rendered by default.

api/common/http/HttpBackend.html

+21
Large diffs are not rendered by default.

api/common/http/HttpClient.html

+2
Large diffs are not rendered by default.

api/common/http/HttpClientJsonpModule.html

+20
Large diffs are not rendered by default.

api/common/http/HttpClientModule.html

+22
Large diffs are not rendered by default.

api/common/http/HttpClientXsrfModule.html

+30
Large diffs are not rendered by default.

api/common/http/HttpContext.html

+47
Large diffs are not rendered by default.

api/common/http/HttpContextToken.html

+18
Large diffs are not rendered by default.

api/common/http/HttpDownloadProgressEvent.html

+21
Large diffs are not rendered by default.

api/common/http/HttpErrorResponse.html

+30
Large diffs are not rendered by default.

api/common/http/HttpEvent.html

+13
Large diffs are not rendered by default.

api/common/http/HttpEventType.html

+20
Large diffs are not rendered by default.

api/common/http/HttpHandler.html

+19
Large diffs are not rendered by default.

api/common/http/HttpHeaderResponse.html

+30
Large diffs are not rendered by default.

api/common/http/HttpHeaders.html

+38
Large diffs are not rendered by default.

api/common/http/HttpInterceptor.html

+17
Large diffs are not rendered by default.

api/common/http/HttpParameterCodec.html

+26
Large diffs are not rendered by default.

api/common/http/HttpParams.html

+44
Large diffs are not rendered by default.

api/common/http/HttpParamsOptions.html

+17
Large diffs are not rendered by default.

api/common/http/HttpProgressEvent.html

+17
Large diffs are not rendered by default.

api/common/http/HttpRequest.html

+48
Large diffs are not rendered by default.

api/common/http/HttpResponse.html

+35
Large diffs are not rendered by default.

api/common/http/HttpResponseBase.html

+23
Large diffs are not rendered by default.

api/common/http/HttpSentEvent.html

+15
Large diffs are not rendered by default.

api/common/http/HttpStatusCode.html

+2
Large diffs are not rendered by default.

api/common/http/HttpUploadProgressEvent.html

+20
Large diffs are not rendered by default.

api/common/http/HttpUrlEncodingCodec.html

+26
Large diffs are not rendered by default.

api/common/http/HttpUserEvent.html

+15
Large diffs are not rendered by default.

api/common/http/HttpXhrBackend.html

+19
Large diffs are not rendered by default.

api/common/http/HttpXsrfTokenExtractor.html

+19
Large diffs are not rendered by default.

api/common/http/JsonpClientBackend.html

+19
Large diffs are not rendered by default.

api/common/http/JsonpInterceptor.html

+17
Large diffs are not rendered by default.

api/common/http/XhrFactory.html

+13
Large diffs are not rendered by default.

api/common/http/testing.html

+10
Large diffs are not rendered by default.

api/common/http/testing/HttpClientTestingModule.html

+20
Large diffs are not rendered by default.

api/common/http/testing/HttpTestingController.html

+40
Large diffs are not rendered by default.

api/common/http/testing/RequestMatch.html

+16
Large diffs are not rendered by default.

api/common/http/testing/TestRequest.html

+2
Large diffs are not rendered by default.

api/common/isPlatformBrowser.html

+12
Large diffs are not rendered by default.

api/common/isPlatformServer.html

+12
Large diffs are not rendered by default.

api/common/isPlatformWorkerApp.html

+12
Large diffs are not rendered by default.

api/common/isPlatformWorkerUi.html

+12
Large diffs are not rendered by default.

api/common/registerLocaleData.html

+12
Large diffs are not rendered by default.

api/common/testing.html

+10
Large diffs are not rendered by default.

api/common/testing/MOCK_PLATFORM_LOCATION_CONFIG.html

+13
Large diffs are not rendered by default.

api/common/testing/MockLocationStrategy.html

+2
Large diffs are not rendered by default.

api/common/testing/MockPlatformLocation.html

+50
Large diffs are not rendered by default.

api/common/testing/MockPlatformLocationConfig.html

+16
Large diffs are not rendered by default.

api/common/testing/SpyLocation.html

+63
Large diffs are not rendered by default.

api/common/upgrade.html

+10
Large diffs are not rendered by default.

api/common/upgrade/$locationShim.html

+2
Large diffs are not rendered by default.

api/common/upgrade/$locationShimProvider.html

+26
Large diffs are not rendered by default.

api/common/upgrade/AngularJSUrlCodec.html

+2
Large diffs are not rendered by default.

api/common/upgrade/LOCATION_UPGRADE_CONFIGURATION.html

+13
Large diffs are not rendered by default.

api/common/upgrade/LocationUpgradeConfig.html

+19
Large diffs are not rendered by default.

api/common/upgrade/LocationUpgradeModule.html

+17
Large diffs are not rendered by default.

api/common/upgrade/UrlCodec.html

+2
Large diffs are not rendered by default.

api/core.html

+2
Large diffs are not rendered by default.

api/core/ANALYZE_FOR_ENTRY_COMPONENTS.html

+33
Large diffs are not rendered by default.

api/core/APP_BOOTSTRAP_LISTENER.html

+12
Large diffs are not rendered by default.

api/core/APP_ID.html

+12
Large diffs are not rendered by default.

api/core/APP_INITIALIZER.html

+55
Large diffs are not rendered by default.

api/core/AbstractType.html

+14
Large diffs are not rendered by default.

api/core/AfterContentChecked.html

+25
Large diffs are not rendered by default.

api/core/AfterContentInit.html

+25
Large diffs are not rendered by default.

api/core/AfterViewChecked.html

+25
Large diffs are not rendered by default.

api/core/AfterViewInit.html

+25
Large diffs are not rendered by default.

api/core/ApplicationInitStatus.html

+15
Large diffs are not rendered by default.

api/core/ApplicationModule.html

+15
Large diffs are not rendered by default.

api/core/ApplicationRef.html

+87
Large diffs are not rendered by default.

api/core/Attribute.html

+14
Large diffs are not rendered by default.

api/core/AttributeDecorator.html

+42
Large diffs are not rendered by default.

api/core/COMPILER_OPTIONS.html

+12
Large diffs are not rendered by default.

api/core/CUSTOM_ELEMENTS_SCHEMA.html

+12
Large diffs are not rendered by default.

api/core/ChangeDetectionStrategy.html

+15
Large diffs are not rendered by default.

api/core/ChangeDetectorRef.html

+121
Large diffs are not rendered by default.

api/core/ClassProvider.html

+64
Large diffs are not rendered by default.

api/core/ClassSansProvider.html

+14
Large diffs are not rendered by default.

api/core/Compiler.html

+26
Large diffs are not rendered by default.

api/core/CompilerFactory.html

+16
Large diffs are not rendered by default.

api/core/CompilerOptions.html

+18
Large diffs are not rendered by default.

api/core/Component.html

+151
Large diffs are not rendered by default.

api/core/ComponentFactory.html

+21
Large diffs are not rendered by default.

api/core/ComponentFactoryResolver.html

+17
Large diffs are not rendered by default.

api/core/ComponentRef.html

+2
Large diffs are not rendered by default.

api/core/ConstructorProvider.html

+43
Large diffs are not rendered by default.

api/core/ConstructorSansProvider.html

+19
Large diffs are not rendered by default.

api/core/ContentChild.html

+65
Large diffs are not rendered by default.

api/core/ContentChildren.html

+80
Large diffs are not rendered by default.

api/core/DEFAULT_CURRENCY_CODE.html

+25
Large diffs are not rendered by default.

api/core/DebugElement.html

+43
Large diffs are not rendered by default.

api/core/DebugEventListener.html

+18
Large diffs are not rendered by default.

api/core/DebugNode.html

+21
Large diffs are not rendered by default.

api/core/DefaultIterableDiffer.html

+49
Large diffs are not rendered by default.

api/core/Directive.html

+134
Large diffs are not rendered by default.

api/core/DoBootstrap.html

+24
Large diffs are not rendered by default.

api/core/DoCheck.html

+25
Large diffs are not rendered by default.

api/core/ElementRef.html

+17
Large diffs are not rendered by default.

api/core/EmbeddedViewRef.html

+56
Large diffs are not rendered by default.

api/core/ErrorHandler.html

+29
Large diffs are not rendered by default.

api/core/EventEmitter.html

+52
Large diffs are not rendered by default.

api/core/ExistingProvider.html

+51
Large diffs are not rendered by default.

api/core/ExistingSansProvider.html

+14
Large diffs are not rendered by default.

api/core/FactoryProvider.html

+65
Large diffs are not rendered by default.

api/core/FactorySansProvider.html

+15
Large diffs are not rendered by default.

api/core/ForwardRefFn.html

+20
Large diffs are not rendered by default.

api/core/GetTestability.html

+19
Large diffs are not rendered by default.

api/core/Host.html

+43
Large diffs are not rendered by default.

api/core/HostBinding.html

+29
Large diffs are not rendered by default.

api/core/HostListener.html

+53
Large diffs are not rendered by default.

api/core/INJECTOR-1.html

+12
Large diffs are not rendered by default.

api/core/Inject-1.html

+26
Large diffs are not rendered by default.

api/core/InjectFlags.html

+18
Large diffs are not rendered by default.

api/core/Injectable.html

+29
Large diffs are not rendered by default.

api/core/InjectableProvider.html

+12
Large diffs are not rendered by default.

api/core/InjectableType.html

+16
Large diffs are not rendered by default.

api/core/InjectionToken.html

+50
Large diffs are not rendered by default.

api/core/Injector-0.html

+52
Large diffs are not rendered by default.

api/core/InjectorType.html

+16
Large diffs are not rendered by default.

api/core/Input.html

+40
Large diffs are not rendered by default.

api/core/IterableChangeRecord.html

+17
Large diffs are not rendered by default.

api/core/IterableChanges.html

+34
Large diffs are not rendered by default.

api/core/IterableDiffer.html

+16
Large diffs are not rendered by default.

api/core/IterableDifferFactory.html

+19
Large diffs are not rendered by default.

api/core/IterableDiffers.html

+36
Large diffs are not rendered by default.

api/core/KeyValueChangeRecord.html

+16
Large diffs are not rendered by default.

api/core/KeyValueChanges.html

+28
Large diffs are not rendered by default.

api/core/KeyValueDiffer.html

+16
Large diffs are not rendered by default.

api/core/KeyValueDifferFactory.html

+19
Large diffs are not rendered by default.

api/core/KeyValueDiffers.html

+36
Large diffs are not rendered by default.

api/core/LOCALE_ID.html

+22
Large diffs are not rendered by default.

api/core/MissingTranslationStrategy.html

+26
Large diffs are not rendered by default.

api/core/ModuleWithComponentFactories.html

+18
Large diffs are not rendered by default.

api/core/ModuleWithProviders.html

+15
Large diffs are not rendered by default.

api/core/NO_ERRORS_SCHEMA.html

+12
Large diffs are not rendered by default.

api/core/NgIterable.html

+12
Large diffs are not rendered by default.

api/core/NgModule.html

+73
Large diffs are not rendered by default.

api/core/NgModuleFactory.html

+17
Large diffs are not rendered by default.

api/core/NgModuleFactoryLoader.html

+18
Large diffs are not rendered by default.

api/core/NgModuleRef.html

+22
Large diffs are not rendered by default.

api/core/NgProbeToken.html

+18
Large diffs are not rendered by default.

api/core/NgZone.html

+102
Large diffs are not rendered by default.

api/core/OnChanges.html

+28
Large diffs are not rendered by default.

api/core/OnDestroy.html

+25
Large diffs are not rendered by default.

api/core/OnInit.html

+25
Large diffs are not rendered by default.

api/core/Optional.html

+23
Large diffs are not rendered by default.

api/core/Output.html

+12
Large diffs are not rendered by default.

api/core/PACKAGE_ROOT_URL.html

+12
Large diffs are not rendered by default.

api/core/PLATFORM_ID.html

+12
Large diffs are not rendered by default.

api/core/PLATFORM_INITIALIZER.html

+12
Large diffs are not rendered by default.

api/core/Pipe.html

+18
Large diffs are not rendered by default.

api/core/PipeTransform.html

+54
Large diffs are not rendered by default.

api/core/PlatformRef.html

+51
Large diffs are not rendered by default.

api/core/Predicate.html

+16
Large diffs are not rendered by default.

api/core/Provider.html

+12
Large diffs are not rendered by default.

api/core/ProviderToken.html

+12
Large diffs are not rendered by default.

api/core/Query.html

+20
Large diffs are not rendered by default.

api/core/QueryList.html

+68
Large diffs are not rendered by default.

api/core/ReflectiveInjector.html

+167
Large diffs are not rendered by default.

api/core/ReflectiveKey.html

+23
Large diffs are not rendered by default.

api/core/Renderer2.html

+72
Large diffs are not rendered by default.

api/core/RendererFactory2.html

+25
Large diffs are not rendered by default.

api/core/RendererStyleFlags2.html

+15
Large diffs are not rendered by default.

api/core/RendererType2.html

+17
Large diffs are not rendered by default.

api/core/ResolvedReflectiveFactory.html

+18
Large diffs are not rendered by default.

api/core/ResolvedReflectiveProvider.html

+23
Large diffs are not rendered by default.

api/core/Sanitizer.html

+18
Large diffs are not rendered by default.

api/core/SchemaMetadata.html

+14
Large diffs are not rendered by default.

api/core/SecurityContext.html

+19
Large diffs are not rendered by default.

api/core/Self.html

+35
Large diffs are not rendered by default.

api/core/SimpleChange.html

+22
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)