https://github.com/juracy/flex-layout
https://github.com/juracy/flex-layout
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/juracy/flex-layout
- Owner: juracy
- License: mit
- Created: 2016-12-22T14:33:52.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-12-22T19:55:53.000Z (over 9 years ago)
- Last Synced: 2025-01-29T04:42:08.696Z (over 1 year ago)
- Language: JavaScript
- Size: 117 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Flex Layout
Angular Flex Layout provides a sophisticated layout API using FlexBox CSS + mediaQuery. This module provides Angular (v2.x and higher) developers with component layout features using a custom Layout API, mediaQuery observables,and injected DOM flexbox-2016 css stylings.
The Layout engine intelligently automates the process of applying appropriate FlexBox CSS to browser view hierarchies. This automation also addresses many of the complexities and workarounds encountered with the traditional, manual, CSS-only application of Flexbox CSS.
---
The sources for this package are in the [Flex-Layout](https://github.com/angular/flex-layout) repository.
Please file issues and pull requests against that repo.
License: MIT
---
### BREAKING CHANGE
Directive selectors are now camelCase (instead of dash-case); as specified in the Angular Style Guide (Q4, 2016):
* @Component selectors always use dash-case
* @Directive selectors always use camelCase
> Except when the directive is pretending to be a component (i.e, if it had a template it would be '').
* @Directive properties are prefixed with namespace info
> @Component properties are not
```html
```
### Quick Links
* [Wiki Docs](https://github.com/angular/flex-layout/wiki)
* [License: MIT](https://raw.githubusercontent.com/angular/flex-layout-builds/master/LICENSE)
Developers
* [API Overview](https://github.com/angular/flex-layout/wiki/API-Overview)
* [Developer Setup](https://github.com/angular/flex-layout/wiki/Developer-Setup)
* [Builds + Fast Start](https://github.com/angular/flex-layout/wiki/Fast-Starts)
* [Integration with Angular CLI](https://github.com/angular/flex-layout/wiki/Integration-with-Angular-CLI)
Demos
* [Explore Online](https://tburleson-layouts-demos.firebaseapp.com/)
* [Source Code](https://github.com/angular/flex-layout/blob/master/src/demo-app/app/demo-app-module.ts)
Templates
* [Plunkr Template](https://plnkr.co/edit/h8hzyoEyqdCXmTBA7DfK?p=preview)
----
### Why choose Flex-Layout
While other Flexbox CSS libraries are implementations of:
* pure CSS-only implementations, or
* the JS+CSS Stylesheets implementation of Angular Material v1.x Layouts.
Angular Flex Layout - in contrast - is a pure-Typescript UI Layout engine with an implementation that:
* uses HTML attributes (aka Layout API) to specify the layout configurations
* is currently only available for Angular (v2.x or higher) Applications.
* is independent of Angular Material (v1 or v2).
* requires no external stylesheets.
* requires Angular v2.x or higher.
### Browser Support