# @logo-software/application-tree

> Application tree module represents a hierarchical view of applications, where each item can have a number of subitems.

Latest version **11.0.33** (published 2024-03-11) · See license in LICENSE file license · 0 weekly downloads

## Install

```sh
npm install @logo-software/application-tree
pnpm add @logo-software/application-tree
yarn add @logo-software/application-tree
bun add @logo-software/application-tree
```

## Health

**Score 25/100 (F)** — status: abandoned.

Positive: has types; esm support; no vulnerabilities.

Warnings: low downloads.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 11.0.33 |
| Published | 2024-03-11 |
| First published | 2021-05-25 |
| Weekly downloads | 0 |
| License | See license in LICENSE file |
| TypeScript types | bundled |
| Module format | ESM + CommonJS |
| Dependencies | 4 |
| Unpacked size | 504.9 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | Serhan Gürbüz |
| Maintainers | furkan.cetin, yusufyilmaz, serdarates, gamzeyapici, srknc, dotnet-ankara, murat.logo, serhan.gurbuz, gulnihaleksi |
| Keywords | tree, scroll, widget, automatic, component, json, checkbox, icon, http, nested, endless, folding, foldable, collapse, expand |

## Links

- npm: https://www.npmjs.com/package/@logo-software/application-tree
- Repository: http://stash.logo.com.tr/scm/fd/theme
- Homepage: http://elements.logo.com.tr
- npm.io page: https://npm.io/package/@logo-software/application-tree

## Dependencies (4)

- [tslib](https://npm.io/package/tslib.md) ^2.0.0
- [css-vars-ponyfill](https://npm.io/package/css-vars-ponyfill.md) ^2.4.7
- [@logo-software/icons](https://npm.io/package/@logo-software/icons.md) ^1.7.3
- [@logo-software/theme](https://npm.io/package/@logo-software/theme.md) ^11.1.26

## Alternatives

- [@mapbox/jsonlint-lines-primitives](https://npm.io/package/@mapbox/jsonlint-lines-primitives.md) — 5.3M weekly downloads
- [reftools](https://npm.io/package/reftools.md) — 3.5M weekly downloads
- [@hey-api/openapi-ts](https://npm.io/package/@hey-api/openapi-ts.md) — 3.5M weekly downloads
- [@mapbox/geojson-rewind](https://npm.io/package/@mapbox/geojson-rewind.md) — 2.4M weekly downloads
- [turbo-stream](https://npm.io/package/turbo-stream.md) — 1.7M weekly downloads

## Recent versions

- 11.0.33 (latest) — 2024-03-11
- 11.0.32 — 2024-02-12
- 11.0.31 — 2024-01-10
- 11.0.30 — 2023-12-27
- 11.0.28 — 2023-12-19
- 11.0.27 — 2023-12-06
- 11.0.26 — 2023-12-01
- 11.0.25 — 2023-11-29
- 11.0.24 — 2023-11-28
- 11.0.23 — 2023-11-10
- 11.0.22 — 2023-11-10
- 11.0.21 — 2023-11-09
- 11.0.0 — 2022-10-10
- 4.0.0 — 2022-09-05
- 0.0.13 — 2021-10-19
- … 12 more at https://npm.io/package/@logo-software/application-tree/versions

## README

# Application Tree Module

Application tree module represents a hierarchical view of applications, where each item can have a number of subitems.
Click on the arrow(s) to open or close the tree branches.

Click here for [demo](http://design.logo.com.tr/#/docs/components/leftbar-module#leftbarmodule)

### Installation

All public npm packages of Logo Software is at [https://www.npmjs.com/~logofe](https://www.npmjs.com/~logofe). To
install Application Tree Module:

```bash
$ npm set registry https://registry.npmjs.org/
$ npm install @logo-software/application-tree -s
```

Then add ApplicationTreeModule to @NgModule `imports` section

<sub>app.module.ts</sub>

```typescript
@NgModule({
  imports: [CommonModule, ApplicationTreeModule],
})
export class AppModule {
}
```

### Application Tree Component

Almost anything can be represented in a tree structure. On this scope Application Tree View shows application lists in
tree structure. The Application Tree component is a way of representing the hierarchical relationship between
applications. You can also expand, collapse, and select a treeNode within a Tree.

Add the below code to your code stack and give initializer parameters.

<sub>app.component.html</sub>

```html
<logo-application-tree [items]="items" [start]="0" [iconClasses]=""></logo-application-tree>
```

For API details, please visit http://design.logo.com.tr/#/docs/components/components-overview

---
_Source: https://npm.io/package/@logo-software/application-tree · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
