{"id":22877388,"url":"https://github.com/geekyeggo/sdpi-components","last_synced_at":"2025-05-06T21:47:01.369Z","repository":{"id":38378297,"uuid":"283244998","full_name":"GeekyEggo/sdpi-components","owner":"GeekyEggo","description":"Web components for your Stream Deck plugin; take the hassle out of the property inspector.","archived":false,"fork":false,"pushed_at":"2025-03-21T13:05:30.000Z","size":4701,"stargazers_count":27,"open_issues_count":1,"forks_count":3,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-04-08T03:37:06.639Z","etag":null,"topics":["property-inspector","sdpi","streamdeck","streamdeck-plugins","streamdeck-tools"],"latest_commit_sha":null,"homepage":"https://sdpi-components.dev","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/GeekyEggo.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE.md","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},"funding":{"github":["GeekyEggo"],"patreon":null,"open_collective":null,"ko_fi":null,"tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"otechie":null,"lfx_crowdfunding":null,"custom":null}},"created_at":"2020-07-28T14:57:56.000Z","updated_at":"2025-03-21T13:05:34.000Z","dependencies_parsed_at":"2024-11-06T07:33:53.017Z","dependency_job_id":"752671ab-1d42-4d8a-a094-c965d5b1de9f","html_url":"https://github.com/GeekyEggo/sdpi-components","commit_stats":null,"previous_names":[],"tags_count":21,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GeekyEggo%2Fsdpi-components","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GeekyEggo%2Fsdpi-components/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GeekyEggo%2Fsdpi-components/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GeekyEggo%2Fsdpi-components/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/GeekyEggo","download_url":"https://codeload.github.com/GeekyEggo/sdpi-components/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":252776475,"owners_count":21802461,"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":["property-inspector","sdpi","streamdeck","streamdeck-plugins","streamdeck-tools"],"created_at":"2024-12-13T15:37:10.485Z","updated_at":"2025-05-06T21:47:01.315Z","avatar_url":"https://github.com/GeekyEggo.png","language":"TypeScript","funding_links":["https://github.com/sponsors/GeekyEggo"],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://sdpi-components.dev\" title=\"sdpi-components\"\u003e\u003cimg src=\"assets/logo.svg\" alt=\"sdpi-components Logo\" height=\"256\" width=\"256\"/\u003e\u003c/a\u003e\n\u003c/p\u003e\n\u003ch1 align=\"center\"\u003esdpi-components\u003c/h1\u003e\n\n[![build-shield]](https://github.com/GeekyEggo/sdpi-components/actions?query=workflow%3Abuild)\n[![coverage-shield]](https://github.com/GeekyEggo/sdpi-components/actions?query=workflow%3Abuild)\n[![docs-shield]](https://sdpi-components.dev)\n[![x-shield]](https://x.com/elgato)\n\nDesigned to complement Stream Deck plugins; sdpi-components provides a collection of web components that focuses on the plugin's property inspector, and makes persisting settings consistent, user-friendly, and hassle-free.\n\n-   ✏️ [Getting Started](#%EF%B8%8F-getting-started)\n-   📦 [Example](#-example)\n-   🪶 [Components](#-components)\n\n## ✏️ Getting Started\n\nGetting started is easy; simply reference the following JavaScript file in your property inspector, and you're ready to start adding [components](https://sdpi-components.dev/docs/components).\n\n```html\n\u003cscript src=\"https://sdpi-components.dev/releases/v3/sdpi-components.js\"\u003e\u003c/script\u003e\n```\n\n## 📦 Example\n\nThe example below highlights some of the components available; alternatively you can check out the [property inspector](./example/pi/index.html) in this repositories example plugin.\n\n![The property inspector, in the Elgato Stream Deck software, with components from sdpi-components](./assets/example.png \"Example of sdpi-components in the property inspector\")\n\n```html\n\u003c!doctype html\u003e\n\u003chead lang=\"en-gb\"\u003e\n    \u003cmeta charset=\"utf-8\" /\u003e\n    \u003cscript src=\"https://sdpi-components.dev/releases/v3/sdpi-components.js\"\u003e\u003c/script\u003e\n\u003c/head\u003e\n\u003chtml\u003e\n    \u003cbody\u003e\n        \u003c!--\n            Given the following setup, the plugin's settings would look like this:\n            {\n                \"name\": string,\n                \"show_name\": true | false,\n                \"fav_color\": \"red\" | \"green\" | \"blue\"\n            }\n        --\u003e\n\n        \u003csdpi-item label=\"Name\"\u003e\n            \u003csdpi-textfield setting=\"name\"\u003e\u003c/sdpi-textfield\u003e\n        \u003c/sdpi-item\u003e\n\n        \u003csdpi-item label=\"Show Name\"\u003e\n            \u003csdpi-checkbox setting=\"show_name\"\u003e\u003c/sdpi-checkbox\u003e\n        \u003c/sdpi-item\u003e\n\n        \u003csdpi-item label=\"Favorite Color\"\u003e\n            \u003csdpi-select setting=\"fav_color\" placeholder=\"Please choose a color\"\u003e\n                \u003coption value=\"red\"\u003eRed\u003c/option\u003e\n                \u003coption value=\"green\"\u003eGreen\u003c/option\u003e\n                \u003coption value=\"blue\"\u003eBlue\u003c/option\u003e\n            \u003c/sdpi-select\u003e\n        \u003c/sdpi-item\u003e\n    \u003c/body\u003e\n\u003c/html\u003e\n```\n\n## 🪶 Components\n\nTo discover all of the components available, check out the [documentation](https://sdpi-components.dev/docs/components).\n\n[![The property inspector with all of the components found in the sdpi-components library](./assets/all-components.png \"Some of the components in sdpi-components\")](https://sdpi-components.dev/docs/components)\n\n[build-shield]: https://img.shields.io/github/actions/workflow/status/geekyeggo/sdpi-components/build.yml?branch=main\u0026label=Build\u0026logo=GitHub\n[coverage-shield]: assets/coverage.svg\n[docs-shield]: https://img.shields.io/static/v1?style=flat\u0026message=Documentation\u0026label=\u0026color=orange\u0026logoColor=white\u0026labelColor=grey\u0026logo=data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjAiIHdpZHRoPSIyMCI+PHBhdGggZmlsbD0iI2ZmZmZmZiIgZD0iTTguOTM4IDguODc1SDE0LjE4OFY3LjYyNUg4LjkzOFpNOC45MzggMTEuODMzSDExLjk3OVYxMC41ODNIOC45MzhaTTguOTM4IDUuOTE3SDE0LjE4OFY0LjY2N0g4LjkzOFpNNy4yMDggMTQuNjI1UTYuMzc1IDE0LjYyNSA1LjgwMiAxNC4wNTJRNS4yMjkgMTMuNDc5IDUuMjI5IDEyLjY0NlYzLjg1NFE1LjIyOSAzLjAyMSA1LjgwMiAyLjQ0OFE2LjM3NSAxLjg3NSA3LjIwOCAxLjg3NUgxNlExNi44MzMgMS44NzUgMTcuNDA2IDIuNDQ4UTE3Ljk3OSAzLjAyMSAxNy45NzkgMy44NTRWMTIuNjQ2UTE3Ljk3OSAxMy40NzkgMTcuNDA2IDE0LjA1MlExNi44MzMgMTQuNjI1IDE2IDE0LjYyNVpNNCAxNy44MzNRMy4xNjcgMTcuODMzIDIuNTk0IDE3LjI2UTIuMDIxIDE2LjY4OCAyLjAyMSAxNS44NTRWNS42MDRIMy40NzlWMTUuODU0UTMuNDc5IDE2LjA2MiAzLjYzNSAxNi4yMTlRMy43OTIgMTYuMzc1IDQgMTYuMzc1SDE0LjI1VjE3LjgzM1oiLz48L3N2Zz4=\n[x-shield]: https://img.shields.io/static/v1?style=flat\u0026message=Elgato\u0026logo=X\u0026label=\u0026color=blue\u0026logoColor=white\u0026labelColor=grey\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgeekyeggo%2Fsdpi-components","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgeekyeggo%2Fsdpi-components","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgeekyeggo%2Fsdpi-components/lists"}