Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/CirclonGroup/angular-tree-component
A simple yet powerful tree component for Angular (>=2)
https://github.com/CirclonGroup/angular-tree-component
angular angular2 angular4 angular5 frontend frontend-components javascript javascript-library library open-source opensource tree tree-component treeview typescript typescript-library
Last synced: about 2 months ago
JSON representation
A simple yet powerful tree component for Angular (>=2)
- Host: GitHub
- URL: https://github.com/CirclonGroup/angular-tree-component
- Owner: CirclonGroup
- License: mit
- Created: 2016-03-10T21:29:15.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2024-07-17T21:58:55.000Z (5 months ago)
- Last Synced: 2024-09-27T09:31:10.596Z (3 months ago)
- Topics: angular, angular2, angular4, angular5, frontend, frontend-components, javascript, javascript-library, library, open-source, opensource, tree, tree-component, treeview, typescript, typescript-library
- Language: TypeScript
- Homepage: https://angular2-tree.readme.io/docs
- Size: 32.2 MB
- Stars: 1,093
- Watchers: 38
- Forks: 490
- Open Issues: 131
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
[![npm version](https://badge.fury.io/js/%40circlon%2Fangular-tree-component.svg)](https://badge.fury.io/js/%40circlon%2Fangular-tree-component)
[![Build Status](https://dev.azure.com/pdsgmbh/AngularTree/_apis/build/status/AngularTreeComponent-CI?branchName=master)](https://dev.azure.com/pdsgmbh/AngularTree/_build/latest?definitionId=59&branchName=master)# angular tree component
## Getting started
Install `angular-tree-component`:
```npm install @circlon/angular-tree-component```
Import `TreeModule`:
```
import { TreeModule } from '@circlon/angular-tree-component';@NgModule({
declarations: [AppComponent],
imports: [TreeModule],
bootstrap: [AppComponent]
})
export class AppModule {}
```Add css to `styles.scss` or include in `angular.json`:
```
@import '~@circlon/angular-tree-component/css/angular-tree-component.css';
```## Docs, Demos & More
We are redoing the documentation. You can find the new documentation here:
[https://circlongroup.github.io/angular-tree-component/](https://circlongroup.github.io/angular-tree-component/)The API Reference is still in our old documentation for now:
[https://angular2-tree.readme.io/docs/](https://angular2-tree.readme.io/docs/)
## Support
[Stackoverflow](https://stackoverflow.com/questions/tagged/angular-tree-component)[Slack Community](https://angular-tree-component.herokuapp.com/)
## Angular supported version
angular-tree-component supports angular 2 and above, and AoT compilation.
## Contributing
Run `npm run build` (`npm run build:win` for windows users) to build. Run `npm start:example-app` and open [localhost:4200](http://localhost:4200) to test your code before submitting a pull request.
To run tests locally - make sure port 4200 is available and run:
```
$ npm run build # build:win for windows; wait until build finished
$ npm run start:example-app # Wait until webpack finishes and http://localhost:4200 is available
$ npm run test:dev
```Please check the issues / project before starting to work on a feature / bug to make sure it's not already in progress.
## Contributors
This project exists thanks to all the people who contribute.