KO
|
EN
gitlite โ search
Search
#python
#react
#javascript
#typescript
#pytorch
#solidity
#hacktoberfest
#nextjs
#ethereum
#nft
#deep-learning
#html
ngu-flow
โ 40
Open GitHub โ
Angular flow diagram library
Download README (.md)
Explore Similar Repositories
kirara-webui
:
๐ ๆไปถ็ๆ x ๅทฅไฝๆต็ณป็ป๏ผ DIY ไฝ ่ชๅทฑ็ AI ่ๅคฉๆบๅจไบบ๏ผ Kirara AI WebUI ็ฎก็้ขๆฟๅ็ซฏ
Alex-The-Analyst-Bootcamp
:
This repository contains all the portfolio projects I made while completing Alex The Analyst's Bootcamp on YouTube
devsleague.com
:
Competiciรณn entre Creadores de Contenido de Programaciรณn
BiDistFSCIL
:
Official implementation of CVPR 2023 paper Few-Shot Class-Incremental Learning via Class-Aware Bilateral Distillation.
Projeto-Agenda
:
No description available.
// repository documentation
Was this content helpful?
โ 0
(0 ratings)
Select Rating:
โ
โ
โ
โ
โ
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
ngu-flow
?
Download (.md)
# Angular Flow Angular Flow is a component that allows you to create a flow diagram using Angular. Live Demo [link](https://uiuniversal.github.io/ngu-flow/) Stackblitz Demo [link](https://stackblitz.com/edit/ngu-flow) ## Installation ```bash npm install @ngu/flow ``` ## Usage ```ts import { Component } from "@angular/core"; import { FlowComponent, FlowChildComponent } from "@ngu/flow"; @Component({ selector: "app-root", standalone: true, imports: [FlowComponent, FlowChildComponent], template: ` <ngu-flow class="flow"> @for (item of lists; track item.id; let i = $index) { <div [flowChild]="item" class="child">{{ i }}</div> } </ngu-flow> `, styles: ` .flow { min-height: 90vh; background: #eee; } .child { border: 1px solid #ccc; width: 100px; height: 50px; background: white; display: flex; align-items: center; justify-content: center; } `, }) export class AppComponent { lists = [ { id: "1", x: 0, y: 0, deps: [] }, { id: "2", x: 0, y: 0, deps: ["1"] }, ]; } ```