Angular [PDF]

Jul 18, 2017 - Angular version 4.3 has been released. This is a minor release following our announced adoption of Semant

7 downloads 32 Views 204KB Size

Recommend Stories


PDF Angular 2 By Example
The beauty of a living thing is not the atoms that go into it, but the way those atoms are put together.

[PDF] Angular 2 By Example
In the end only three things matter: how much you loved, how gently you lived, and how gracefully you

Angular Update Guide - Beta [PDF]
Angular Update Guide. Select your current Angular version, and the desired version of Angular. We'll tell you the steps to update. from. to. How complex is your app? I use ngUpgrade. Package Manager. Show me how to update!

Angular 4
You can never cross the ocean unless you have the courage to lose sight of the shore. Andrè Gide

[PDF] Node.js, MongoDB and Angular Web Development
I cannot do all the good that the world needs, but the world needs all the good that I can do. Jana

[PDF] Online Pro Angular Online Books
The happiest people don't have the best of everything, they just make the best of everything. Anony

Photoelectron angular distributions from rotationally resolved [PDF]
Dec 8, 2017 - Chartrand, Alexander M.; McCormack, Elizabeth F.; Jacovella, Ugo; Holland, David M P; Gans, Berenger; Tang, Xiaofeng; García,. Gustavo A.; Nahon, Laurent; and Pratt, Stephen T., "Photoelectron angular distributions from rotationally re

Introduction to Radioastronomy: Angular resolution & Interferometry [PDF]
Problem No.2: Angular resolution. • Diffraction limit: to distinguish two point objects with an instrument of aperture diametre D at wavelength λ, they must be separated by an angle larger than sin α > λ/D. Human eye. 2 mm. 500 nm. 50 arcsec. ES

Angular - Payvision
Don’t grieve. Anything you lose comes round in another form. Rumi

Download Angular 2 Cookbook - Second Edition [PDF]
Knock, And He'll open the door. Vanish, And He'll make you shine like the sun. Fall, And He'll raise

Idea Transcript


More Next Blog»

Create Blog Sign In

Angular

Tuesday, July 18, 2017

Blog Archive

t 2017 (9)

Moving the Angular Blog

t July (3) Moving the Angular Blog

The Angular Blog is moving to a new URL:

Angular 4.3 Now Available

https://blog.angular.io

Angular Material Status Update June (1)

(#itsjustangular !)

April (2)

Please follow us there for the latest news, updates, and tips, and stories from the field.

March (1) January (2)

Posted by Stephen Fluin at 12:04 PM

No comments:

2016 (32) 2015 (14) 2014 (10)

Friday, July 14, 2017

2013 (13) 2012 (23)

Angular 4.3 Now Available Angular version 4.3 has been released. This is a minor release following our announced adoption of Semantic Versioning, meaning that it contains no breaking changes and that it is a drop-in replacement for 4.x.x. What’s new? We are introducing HttpClient, a smaller, easier to use, and more powerful library for making HTTP Requests. Learn more about it from our docs New router life cycle events for Guards and Resolvers. Four new events: GuardsCheckStart, GuardsCheckEnd, ResolveStart, ResolveEnd join the existing set of life cycle event such as NavigationStart Conditionally disable animations via a new attribute, [@.disabled] Support for the emulated /deep/ CSS Selector (the Shadow-Piercing descendant combinator aka >>>) has been deprecated to match browser implementations and Chrome’s intent to remove. ::ngdeep has been added to provide a temporary workaround for developers currently using this feature. For the complete list of features and bugfixes please see the changelog.

Posted by Stephen Fluin at 3:43 PM

No comments:

Labels: 4.x, angular, animations, announcements, http, release, router

Thursday, July 6, 2017

Angular Material Status Update In the six months since our last post about Angular Material, the team been hard at work building cool new components and applying a heaping of polish. Some of the highlights include: Datepicker, expansion panel, and accordion components Improved support for @angular/platform-server Configurable scrolling strategies for Overlays Strict-null checks and no-unused-params compliance Typography extension to theming Live theme-picker on material.angular.io Lots and lots of bug fixes We're excited to announce today's release of the brand new Component Dev Kit, and the initial version of the > User {{i}} of {{count}} Loading...

Angular Universal Universal, the project that allows developers to run Angular on a server, is now up to date with Angular again, and this is the first release since Universal, originally a community-driven project, was adopted by the Angular team. This release now includes the results of the internal and external work from the Universal team over the last few months. The majority of the Universal code is now located in @angular/platform-server. To learn more about taking advantage of Angular Universal, take a look at the new renderModuleFactory method in @angular/platform-server, or Rob Wormald’s Demo Repository. More documentation and code samples are forthcoming.

TypeScript 2.1 and 2.2 compatibility We’ve updated Angular to a more recent version of TypeScript. This will improve the speed of ngc and you will get better type checking throughout your application.

Source Maps for Templates Now when there is an error caused by something in one of your templates, we generate source maps that give a meaningful context in terms of the original template.

Packaging Changes Flat ES Modules (Flat ESM / FESM) We now ship flattened versions of our modules ("rolled up" version of our code in the EcmaScript Module format, see example file). This format should help tree-shaking, help reduce the size of your generated bundles, and speed up build, transpilation, and loading in the browser in certain scenarios. Read more about the importance of Flat ES Modules in "The cost of small modules".

Experimental ES2015 Builds We now also ship our packages in the ES2015 Flat ESM format. This option is experimental and opt-in. Developers have reported up to 7% bundle size savings when combining these packages with Rollup. To try out these new packages, configure your build toolchain to resolve "es2015" property in package.json over the regular "module" property.

Experimental Closure Compatibility All of our code now has Closure annotations, making it possible to take advantage of advanced Closure optimizations, resulting in smaller bundle sizes and better tree shaking.

Updating to 4.0.0 Updating to 4 is as easy as updating your Angular dependencies to the latest version, and double checking if you want animations. This will work for most use cases.

On Linux/Mac: npm install @angular/{common,compiler,compiler-cli,core,forms,http,platform-browser,platformbrowser-dynamic,platform-server,router,animations}@latest typescript@latest --save

On Windows: npm install @angular/common@latest @angular/compiler@latest @angular/compiler-cli@latest @angular/core@latest @angular/forms@latest @angular/http@latest @angular/platform-browser@latest @angular/platform-browser-dynamic@latest @angular/platform-server@latest @angular/router@latest @angular/animations@latest typescript@latest --save Then run whatever ng serve or npm start command you normally use, and everything should work. If you rely on Animations, import the new BrowserAnimationsModule from @angular/platformbrowser/animations in your root NgModule. Without this, your code will compile and run, but animations will trigger an error. Imports from @angular/core were deprecated, use imports from the new package import { trigger, state, style, transition, animate } from '@angular/animations';. We are beginning work on an interactive Angular Update Guide if you would like to see more information about making any needed changes to your application.

Known Issues One of the goals for version 4 was to make Angular compatible with TypeScript's strictNullChecks setting, allowing for a more restrictive subset of types to be mandated. We discovered during the RC period that there is more work to be done for this to function properly in all use cases, so we intentionally made 4.0 incompatible with the strictNullChecks setting in order to avoid breaking apps that would otherwise eagerly adopt this TypeScript mode when the proper support lands in 4.1 (tracking issue is #15432).

What's next? We are in the process of setting the roadmap for the next 6 months, following the same cadence as our published release schedule for 2.x. You'll see patch updates to 4.0.0 and we are already getting started on 4.1. We are going to continue making Angular smaller and faster, and we're going to evolve capabilities such as @angular/http, @angular/service-worker, and @angular/language-service out of experimental. You should also stay tuned for updates to our documentation, a stable release of the CLI, and guidance for library authors on packaging.

Posted by Stephen Fluin at 5:42 PM

No comments:

Home

Older Posts

Subscribe to: Posts (Atom)

Simple theme. Powered by Blogger.

Smile Life

When life gives you a hundred reasons to cry, show life that you have a thousand reasons to smile

Get in touch

© Copyright 2015 - 2024 PDFFOX.COM - All rights reserved.