{"id":17108849,"url":"https://github.com/juracy/flex-layout","last_synced_at":"2025-03-23T21:21:15.089Z","repository":{"id":66643548,"uuid":"77151284","full_name":"juracy/flex-layout","owner":"juracy","description":null,"archived":false,"fork":false,"pushed_at":"2016-12-22T19:55:53.000Z","size":120,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-01-29T04:42:08.696Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/juracy.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2016-12-22T14:33:52.000Z","updated_at":"2016-12-22T14:34:14.000Z","dependencies_parsed_at":"2023-06-10T14:03:16.247Z","dependency_job_id":null,"html_url":"https://github.com/juracy/flex-layout","commit_stats":{"total_commits":2,"total_committers":1,"mean_commits":2.0,"dds":0.0,"last_synced_commit":"bc56a06c3c02b4ef45d54b8e295f03958af9cf83"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/juracy%2Fflex-layout","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/juracy%2Fflex-layout/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/juracy%2Fflex-layout/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/juracy%2Fflex-layout/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/juracy","download_url":"https://codeload.github.com/juracy/flex-layout/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245169868,"owners_count":20571971,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-10-14T16:06:24.206Z","updated_at":"2025-03-23T21:21:15.054Z","avatar_url":"https://github.com/juracy.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Flex Layout\n\nAngular 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.  \n\nThe 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. \n\n---\n\nThe sources for this package are in the [Flex-Layout](https://github.com/angular/flex-layout) repository. \u003cbr/\u003e\nPlease file issues and pull requests against that repo.\n\nLicense: MIT\n\n---\n\n### BREAKING CHANGE\n\nDirective selectors are now camelCase (instead of dash-case); as specified in the Angular Style Guide (Q4, 2016):\n\n*  @Component selectors always use dash-case\n*  @Directive selectors always use camelCase\n\u003e Except when the directive is pretending to be a component (i.e, if it had a template it would be '\u003cng-content\u003e\u003c/ng-content\u003e').\n*  @Directive properties are prefixed with namespace info\n\u003e @Component properties are not\n\n\n```html\n\u003cdiv class=\"flex-container\" \n     fxLayout=\"row\" \n     fxLayout.xs=\"column\"\n     fxLayoutAlign=\"center center\"\n     fxLayoutAlign.xs=\"start\"\u003e\n  \u003cdiv class=\"flex-item\" fxFlex=\"20%\" fxFlex.xs=\"40%\"\u003e  \u003c/div\u003e\n  \u003cdiv class=\"flex-item\" fxFlex\u003e        \u003c/div\u003e\n  \u003cdiv class=\"flex-item\" fxFlex=\"25px\"\u003e \u003c/div\u003e\n\u003c/div\u003e \n```\n\n### Quick Links\n\n*  [Wiki Docs](https://github.com/angular/flex-layout/wiki)\n*  [License: MIT](https://raw.githubusercontent.com/angular/flex-layout-builds/master/LICENSE)\n\nDevelopers\n\n*  [API Overview](https://github.com/angular/flex-layout/wiki/API-Overview)\n*  [Developer Setup](https://github.com/angular/flex-layout/wiki/Developer-Setup)\n*  [Builds + Fast Start](https://github.com/angular/flex-layout/wiki/Fast-Starts)\n*  [Integration with Angular CLI](https://github.com/angular/flex-layout/wiki/Integration-with-Angular-CLI)\n\nDemos \n\n*  [Explore Online](https://tburleson-layouts-demos.firebaseapp.com/)\n*  [Source Code](https://github.com/angular/flex-layout/blob/master/src/demo-app/app/demo-app-module.ts)\n\nTemplates\n\n*  [Plunkr Template](https://plnkr.co/edit/h8hzyoEyqdCXmTBA7DfK?p=preview)\n\n----\n\n\n### Why choose Flex-Layout\n\nWhile other Flexbox CSS libraries are implementations of:\n\n* pure CSS-only implementations, or \n* the JS+CSS Stylesheets implementation of Angular Material v1.x Layouts.\n\nAngular Flex Layout - in contrast - is a pure-Typescript UI Layout engine with an implementation that: \n\n*  uses HTML attributes (aka Layout API) to specify the layout configurations\n*  is currently only available for Angular (v2.x or higher) Applications.\n*  is independent of Angular Material (v1 or v2).\n*  requires no external stylesheets.\n*  requires Angular v2.x or higher.\n\n\u003cbr/\u003e\n\n### Browser Support\n\n\u003ca href=\"http://caniuse.com/#feat=flexbox\" target=\"_blank\"\u003e\n![caniuseflexbox](https://cloud.githubusercontent.com/assets/210413/21288118/917e3faa-c440-11e6-9b08-28aff590c7ae.png)\n\u003c/a\u003e\n\n\u003cbr/\u003e\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjuracy%2Fflex-layout","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjuracy%2Fflex-layout","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjuracy%2Fflex-layout/lists"}