{"id":46109570,"url":"https://github.com/banthagroup/fslightbox-angular","last_synced_at":"2026-03-13T17:00:47.407Z","repository":{"id":337663679,"uuid":"1127393976","full_name":"banthagroup/fslightbox-angular","owner":"banthagroup","description":"The Angular version of Fullscreen Lightbox.","archived":false,"fork":false,"pushed_at":"2026-02-10T16:55:26.000Z","size":276,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2026-02-10T20:47:09.371Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/banthagroup.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-01-03T19:45:06.000Z","updated_at":"2026-02-10T16:55:30.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/banthagroup/fslightbox-angular","commit_stats":null,"previous_names":["banthagroup/fslightbox-angular"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/banthagroup/fslightbox-angular","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/banthagroup%2Ffslightbox-angular","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/banthagroup%2Ffslightbox-angular/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/banthagroup%2Ffslightbox-angular/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/banthagroup%2Ffslightbox-angular/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/banthagroup","download_url":"https://codeload.github.com/banthagroup/fslightbox-angular/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/banthagroup%2Ffslightbox-angular/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30471114,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-13T11:00:43.441Z","status":"ssl_error","status_checked_at":"2026-03-13T11:00:23.173Z","response_time":60,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":"2026-03-01T22:00:55.622Z","updated_at":"2026-03-13T17:00:47.372Z","avatar_url":"https://github.com/banthagroup.png","language":"TypeScript","readme":"# Angular Fullscreen Lightbox Basic\n\n## Description\nAn Angular component for displaying images, videos, or, through custom sources, anything you want in a clean overlying box.\nThe project's website: https://fslightbox.com.\n\n| Dependency | Version |\n| --- | --- |\n| @angular/core | at least 16.0.0 |\n| @angular/common | at least 16.0.0 |\n\n## Installation\n### Through a package manager\n```\nnpm install fslightbox-angular\n```\n### Or, through an archive downloaded from the website\nThe .tgz archive, in its entirety, should be put somewhere in the end project, for example, \"./src/lib\". Then run the package manager's install command with the path to that archive. The command have to be run from the directory where your project's \"package.json\" file is.\n``` \n$ npm install ./src/lib/[lightbox archive name] \n```\nFor example:\n``` \n$ npm install ./src/lib/fslightbox-angular-1.0.0.tgz\n```\n\n## Basic usage \n```ts\nimport { Component } from \"@angular/core\";\nimport { FsLightbox } from \"fslightbox-angular\"; // for Angular versions \u003e= 20.0.0\n// import { FsLightbox } from \"fslightbox-angular/16-19\"; for Angular versions 16–19\nimport { Text } from \"./Text\";\n\n@Component({\n\tselector: 'app-root',\n\timports: [FsLightbox],\n\ttemplate: `\u003cdiv\u003e\n\t\t\u003cfslightbox \n\t\t\t[toggler]=\"toggler\"\n\t\t\t[slide]=\"slide\"\n\t\t\t[sources]=\"sources\"\n  \t\t/\u003e\n\t\t\u003cbutton (click)=\"open(1)\"\u003e\n\t\t\tThe first slide\n\t\t\u003c/button\u003e\n\t\t\u003cbutton (click)=\"open(2)\"\u003e\n\t\t\tThe second slide\n\t\t\u003c/button\u003e\n\t\u003c/div\u003e`\n})\nexport class Demo {\n\ttoggler = false;\n\tslide = 1;\n\tsources = [\n\t\t'https://i.imgur.com/fsyrScY.jpg',\n\t\t'https://www.youtube.com/watch?v=xshEZzpS4CQ',\n\t\t'https://commondatastorage.googleapis.com/gtv-videos-bucket/sample/BigBuckBunny.mp4',\n\t\t{\n\t\t\tcomponent: Text,\n\t\t\tinputs: {\n\t\t\t\tvalue: \"An example message\"\n\t\t\t}\n\t\t}\n\t];\n\topen(n : number) {\n\t\tthis.slide = n;\n\t\tthis.toggler = !this.toggler\n\t}\n}\n```\n\n## Documentation\nAvailable at: https://fslightbox.com/angular/documentation.\n\n## Demo\nAvailable at: https://fslightbox.com/angular.\n\n## Browser Compatibility\n| Browser | Works? |\n| --- | --- |\n| Chrome | Yes |\n| Firefox | Yes |\n| Safari | Yes |\n| Edge | Yes |\n","funding_links":[],"categories":["Third Party Components"],"sub_categories":["Carousels"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbanthagroup%2Ffslightbox-angular","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbanthagroup%2Ffslightbox-angular","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbanthagroup%2Ffslightbox-angular/lists"}