jenniferfell
00c4751f37
docs: update lts and labs practices ( #23922 )
...
PR Close #23922
2018-05-29 18:01:31 -04:00
George Kalpakas
c2e131119b
refactor(aio): rename method (loadContainingCustomElements --> loadContainedCustomElements) ( #23944 )
...
PR Close #23944
2018-05-29 18:00:33 -04:00
George Kalpakas
7866684f2b
fix(aio): avoid loading the ToC component until it is necessary ( #23944 )
...
PR Close #23944
2018-05-29 18:00:33 -04:00
George Kalpakas
6e05ae02a2
fix(aio): show embedded ToC ( #23944 )
...
On narrow screens (where there is not enough room on the right to show
the floating ToC), an embedded ToC is shown (via an `<aio-toc embedded>`
element in the document). Since ToC was not a custom element, the
component was not instantiated for the embedded element.
This commit fixes it by making `aio-toc` a custom element and loading it
manually for the floating ToC (if necessary).
PR Close #23944
2018-05-29 18:00:33 -04:00
George Kalpakas
431a42a238
feat(aio): add component for lazy-loading custom element ( #23944 )
...
PR Close #23944
2018-05-29 18:00:33 -04:00
George Kalpakas
7a9c987e56
refactor(aio): order custom elements by selector ( #23944 )
...
PR Close #23944
2018-05-29 18:00:33 -04:00
George Kalpakas
ae86cb3be0
fix(aio): do not load custom elements again while already loading ( #23944 )
...
PR Close #23944
2018-05-29 18:00:33 -04:00
George Kalpakas
a6f34be9f5
build(aio): update payload size limits ( #23944 )
...
PR Close #23944
2018-05-29 18:00:33 -04:00
Danny Rademacher
d74078fb88
docs(http): correct spelling error ( #23675 )
...
Correct a spelling error. I changed HttpParms to HttpParams
PR Close #23675
2018-05-29 16:55:06 -04:00
Pete Bacon Darwin
ddd6124802
feat(aio): display code-tabs in a Material Design "card" ( #24027 )
...
This helps to connect the "content" of the tab to its label.
Closes #23985
PR Close #24027
2018-05-29 16:52:06 -04:00
Pete Bacon Darwin
96a0e131bf
feat(aio): render hover status on code-tabs ( #24027 )
...
The Material Design spec states that there should be a change
of background when hovering over a tab label.
See https://material.io/design/components/tabs.html#states
Related to #23985
PR Close #24027
2018-05-29 16:52:06 -04:00
Juri
7657535718
docs(aio): fix link to correct bio image ( #24150 )
...
PR Close #24150
2018-05-29 16:27:49 -04:00
Mashhood Rastgar
3de80fc7fb
docs(aio): Added Mashhood as GDE in contributors ( #24157 )
...
PR Close #24157
2018-05-29 16:20:05 -04:00
Zhicheng Wang
b7f7ca8bdf
fix: 文字微调
2018-05-26 09:49:01 +08:00
Zhicheng Wang
45e579236e
fix: 移除不用的菜单
2018-05-26 09:27:52 +08:00
Tiago Temporin
83bb5d1922
docs(aio): add material community components ( #24042 )
...
PR Close #24042
2018-05-25 13:45:40 -04:00
George Kalpakas
3e39fef274
refactor(aio): improve logging output in update-preview-server.sh
( #24071 )
...
PR Close #24071
2018-05-25 13:44:44 -04:00
Juri
36cc72ee5b
docs(aio): add Juri Strumpflohner to GDE resources ( #24086 )
...
PR Close #24086
2018-05-25 13:43:50 -04:00
Stephen Fluin
186118e684
docs(aio): remove outdated rangle link ( #24108 )
...
PR Close #24108
2018-05-25 13:41:59 -04:00
Zhicheng Wang
23f1e76479
fix: 翻译微调
2018-05-25 12:56:56 +08:00
thebyteman
fb906a87e8
docs(aio): fix typo ( #23925 )
...
PR Close #23925
2018-05-22 16:35:17 -04:00
Brandon Roberts
608c3748e8
docs(aio): Remove outdated README.md from cli-quickstart zip ( #23947 )
...
Closes #23936
PR Close #23947
2018-05-22 13:37:15 -04:00
Patrick McDonald
6d8c847e7b
docs: fix typo ( #23998 )
...
"Made" doesn't make sense (redoing and closing #23940 )
PR Close #23998
2018-05-22 13:35:13 -04:00
Brandon Roberts
db2329ef6a
docs(aio): Add missing dependencies and files to testing zip file download ( #23948 )
...
Closes #23060
PR Close #23948
2018-05-21 16:12:40 -04:00
VTHINKXIE
de267e97c9
docs(aio): add ant design of angular in resources ( #23953 )
...
PR Close #23953
2018-05-21 16:11:13 -04:00
George Kalpakas
f8c6947205
fix(aio): avoid unnecessary re-calculations in live-examples ( #23960 )
...
With `plnkrs`, we used to choose a different plnkr mode (normal vs
embedded) based on the size of the screen. This affected the layout of
the plnkr page ("embedded" plnkr mode was usable on small screens, while
"normal" mode wasn't). This is not to be confused with the live-example
mode we use today to determine whether the live-example should be a link
(that open StackBlitz on a new page) or embedded into the document
(using an iframe).
Since we no longer need to change the live-example URL based on the
screen size, there is no need to listen for rezise events on Window. The
necessary properties can be computed once and certain variables are
obsolete.
PR Close #23960
2018-05-21 16:10:12 -04:00
George Kalpakas
41fea84957
fix(aio): allow setting live-example title from content ( #23960 )
...
Previously, it was possible to set the live-example title as content in
the `<live-example>` element. This relied on our custom loader
functionality that extracted the content from the DOM element before
passing it to the Angular compiler and stored it on a property for later
retrieval.
Since we switched to custom elements (and got rid of the custom loader),
the property is no longer populated with the contents. As a result, many
live examples show the default title ("live example") instead of the one
specified as content.
This commit fixes it by projecting the content into an invisible node
for later retrieval (similar to what we do in other components, such as
the `CodeExampleComponent`).
PR Close #23960
2018-05-21 16:10:12 -04:00
George Kalpakas
a7b07defe1
refactor(aio): clean up attribute-utils
( #23960 )
...
PR Close #23960
2018-05-21 16:10:12 -04:00
George Kalpakas
99d330a1b7
style(aio): remove background from lazy-loading
concept icon ( #23950 )
...
Fixes #23938
PR Close #23950
2018-05-21 16:08:08 -04:00
mhartington
3cdf5afc6e
docs(aio): add mhartington to gde ( #23777 )
...
PR Close #23777
2018-05-21 16:05:18 -04:00
Akihito Tamagawa
ea4321d912
docs(aio): fix typo ( #23990 )
...
are are -> are
PR Close #23990
2018-05-21 16:04:08 -04:00
Zhicheng Wang
8494cf4b25
fix: 翻译微调
2018-05-19 22:22:18 +08:00
NAIVEddd
1b2560cf4e
fix: translate error.
2018-05-19 10:55:39 +08:00
NAIVEddd
d4fa1d4c61
fix: translate error.
2018-05-19 10:55:39 +08:00
Chris Yu
d6e2a8f614
fixed some translation errors and typo
2018-05-19 10:53:47 +08:00
Jerry
e1090c1c54
修改翻译错误
...
应该显示响应式表单的基础类,而不是CSS类。
2018-05-19 10:48:34 +08:00
Zhicheng Wang
f73b11cfe1
fix: minor text fix
2018-05-18 16:34:19 +08:00
Collin Klopfenstein
88ab1d0e55
docs(aio): changed 'onVoted' output property to 'voted' to be in line with the styleguide ( #23832 )
...
PR Close #23832
2018-05-16 17:23:05 -04:00
Brandon Roberts
20d76374ed
docs(aio): Expose server and CLI configuration for universal in guide ( #23842 )
...
Closes #23795
PR Close #23842
2018-05-16 17:21:44 -04:00
Alexander Burakevych
55103419e9
docs(aio): add Angular Conf Australia to events ( #22929 )
...
Angular Conf Australia 2018 will be held at June 22 in Melbourne, Australia!
https://www.angularconf.com.au/
PR Close #22929
2018-05-16 17:18:46 -04:00
Suguru Inatomi
547efb5f4d
docs(aio): fix path to observables guide ( #23858 )
...
PR Close #23858
2018-05-16 17:16:48 -04:00
Jonathan Sharpe
091b11a4ab
docs(aio): update HTTP error test example ( #22844 )
...
Update the example to match the description preceding it, which refers to the
use of the error method and ErrorEvent rather than the flush method with a
non-2xx status as shown previously.
PR Close #22844
2018-05-16 17:15:20 -04:00
Stephen Fluin
6a24c02d73
docs(aio): Remove Intertech with no courses scheduled ( #22867 )
...
PR Close #22867
2018-05-16 17:09:43 -04:00
Zhicheng Wang
f5b24bf615
fix: fine-tuning translation
2018-05-16 13:08:17 +08:00
Zhicheng Wang
b6a0b06454
fix: translate new chapter "Angular Elements Overview"
2018-05-16 12:59:27 +08:00
Zhicheng Wang
f7a6ccbb5d
fix: merge code & fix some issues
2018-05-16 08:19:28 +08:00
Stefanie Fluin
b7c417f618
feat(aio): add brand and concept icons, img style class more flexible ( #23589 )
...
PR Close #23589
2018-05-15 15:36:06 -07:00
George Kalpakas
1d378e2987
fix(service-worker): deprecate versionedFiles
in asset-group resources ( #23584 )
...
Since `versionedFiles` behaves in the exact same way as `files`, there
is no reaason to have both. Users should use `files` instead.
This commit deprecates the property and prints a warning when coming
across an asset-group that uses it. It should be completely removed in
a future version.
Note, it has also been removed from the default `ngsw-config.json`
template in angular/devkit#754.
PR Close #23584
2018-05-15 12:19:08 -07:00
Zhicheng Wang
8136953a09
Merge branch 'en-master' into aio
...
# Conflicts:
# aio/content/examples/dynamic-component-loader/src/app/ad-banner.component.ts
# aio/content/examples/reactive-forms/src/app/hero-list/hero-list.component.ts
# aio/content/examples/upgrade-module/src/systemjs.config.1.js
# aio/content/guide/aot-compiler.md
# aio/content/guide/architecture-components.md
# aio/content/guide/architecture-modules.md
# aio/content/guide/architecture-next-steps.md
# aio/content/guide/architecture-services.md
# aio/content/guide/architecture.md
# aio/content/guide/bootstrapping.md
# aio/content/guide/cheatsheet.md
# aio/content/guide/comparing-observables.md
# aio/content/guide/component-styles.md
# aio/content/guide/dependency-injection-in-action.md
# aio/content/guide/dependency-injection.md
# aio/content/guide/deployment.md
# aio/content/guide/docs-style-guide.md
# aio/content/guide/dynamic-component-loader.md
# aio/content/guide/elements.md
# aio/content/guide/glossary.md
# aio/content/guide/hierarchical-dependency-injection.md
# aio/content/guide/http.md
# aio/content/guide/lifecycle-hooks.md
# aio/content/guide/ngmodule-faq.md
# aio/content/guide/npm-packages.md
# aio/content/guide/observables.md
# aio/content/guide/providers.md
# aio/content/guide/quickstart.md
# aio/content/guide/reactive-forms.md
# aio/content/guide/releases.md
# aio/content/guide/router.md
# aio/content/guide/service-worker-config.md
# aio/content/guide/service-worker-devops.md
# aio/content/guide/service-worker-getting-started.md
# aio/content/guide/service-worker-intro.md
# aio/content/guide/setup.md
# aio/content/guide/singleton-services.md
# aio/content/guide/styleguide.md
# aio/content/guide/testing.md
# aio/content/guide/typescript-configuration.md
# aio/content/guide/universal.md
# aio/content/guide/updating.md
# aio/content/guide/upgrade.md
# aio/content/marketing/features.html
# aio/content/navigation.json
# aio/content/tutorial/toh-pt0.md
# aio/content/tutorial/toh-pt3.md
# aio/content/tutorial/toh-pt4.md
# aio/content/tutorial/toh-pt5.md
# aio/content/tutorial/toh-pt6.md
# aio/package.json
# aio/src/app/documents/document.service.ts
# aio/src/app/layout/doc-viewer/doc-viewer.component.ts
# aio/src/app/shared/toc.service.ts
# aio/tools/transforms/templates/api/base.template.html
# aio/yarn.lock
2018-05-15 23:26:31 +08:00
Zhicheng Wang
d3ed81064b
chore: extract dict
2018-05-15 23:10:30 +08:00