{"id":13808304,"url":"https://github.com/uiuniversal/ngu-flow","last_synced_at":"2025-10-28T07:37:02.587Z","repository":{"id":219461401,"uuid":"674620777","full_name":"uiuniversal/ngu-flow","owner":"uiuniversal","description":"Angular flow diagram library","archived":false,"fork":false,"pushed_at":"2024-11-09T13:26:52.000Z","size":875,"stargazers_count":39,"open_issues_count":2,"forks_count":1,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-04-07T02:11:12.507Z","etag":null,"topics":["angular"],"latest_commit_sha":null,"homepage":"https://uiuniversal.github.io/ngu-flow/","language":"TypeScript","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/uiuniversal.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":"2023-08-04T11:42:23.000Z","updated_at":"2024-10-29T10:15:41.000Z","dependencies_parsed_at":"2024-01-30T18:24:47.688Z","dependency_job_id":"718b6ee4-cd67-4a9e-8ec9-1d70e05899fc","html_url":"https://github.com/uiuniversal/ngu-flow","commit_stats":null,"previous_names":["sheikalthaf/flow","uiuniversal/flow","uiuniversal/ngu-flow"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/uiuniversal%2Fngu-flow","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/uiuniversal%2Fngu-flow/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/uiuniversal%2Fngu-flow/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/uiuniversal%2Fngu-flow/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/uiuniversal","download_url":"https://codeload.github.com/uiuniversal/ngu-flow/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":252046094,"owners_count":21685945,"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":["angular"],"created_at":"2024-08-04T01:01:39.500Z","updated_at":"2025-10-28T07:36:57.549Z","avatar_url":"https://github.com/uiuniversal.png","language":"TypeScript","readme":"# Angular Flow\n\nAngular Flow is a component that allows you to create a flow diagram using Angular.\nLive Demo [link](https://uiuniversal.github.io/ngu-flow/)\n\nStackblitz Demo [link](https://stackblitz.com/edit/ngu-flow)\n\n## Installation\n\n```bash\nnpm install @ngu/flow\n```\n\n## Usage\n\n```ts\nimport { Component } from \"@angular/core\";\nimport { FlowComponent, FlowChildComponent } from \"@ngu/flow\";\n\n@Component({\n  selector: \"app-root\",\n  standalone: true,\n  imports: [FlowComponent, FlowChildComponent],\n  template: `\n    \u003cngu-flow class=\"flow\"\u003e\n      @for (item of lists; track item.id; let i = $index) {\n      \u003cdiv [flowChild]=\"item\" class=\"child\"\u003e{{ i }}\u003c/div\u003e\n      }\n    \u003c/ngu-flow\u003e\n  `,\n  styles: `\n  .flow {\n    min-height: 90vh;\n    background: #eee;\n  }\n  .child {\n    border: 1px solid #ccc;\n    width: 100px;\n    height: 50px;\n    background: white;\n    display: flex;\n    align-items: center;\n    justify-content: center;\n  }\n  `,\n})\nexport class AppComponent {\n  lists = [\n    { id: \"1\", x: 0, y: 0, deps: [] },\n    { id: \"2\", x: 0, y: 0, deps: [\"1\"] },\n  ];\n}\n```\n","funding_links":[],"categories":["Third Party Components"],"sub_categories":["Charts"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fuiuniversal%2Fngu-flow","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fuiuniversal%2Fngu-flow","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fuiuniversal%2Fngu-flow/lists"}