{"id":14990102,"url":"https://github.com/opensource-paper/paperui","last_synced_at":"2025-10-03T16:27:19.564Z","repository":{"id":235575534,"uuid":"790929241","full_name":"Opensource-Paper/PaperUI","owner":"Opensource-Paper","description":"The Paper UI library allows users to easily import and style a wide range of components with a singular cdn link.","archived":false,"fork":false,"pushed_at":"2024-06-12T17:08:24.000Z","size":667,"stargazers_count":6,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-04-12T02:05:09.369Z","etag":null,"topics":["cdn","component","component-library","components","css","documentation","html","inter","javascript","js","npm","paper","paper-ui","paperui","react","ui","ui-components","ui-design","ui-library","web-components"],"latest_commit_sha":null,"homepage":"https://paperui.com","language":"JavaScript","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/Opensource-Paper.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":"2024-04-23T19:31:02.000Z","updated_at":"2025-01-07T14:52:41.000Z","dependencies_parsed_at":"2024-04-25T10:31:38.054Z","dependency_job_id":"cc089eb2-ca42-43f5-a378-90b5be1ad749","html_url":"https://github.com/Opensource-Paper/PaperUI","commit_stats":null,"previous_names":["greenestgoat/onyx-ui","greenestgoat/prism-ui","greenestgoat/paperui","opensource-paper/paperui"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Opensource-Paper%2FPaperUI","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Opensource-Paper%2FPaperUI/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Opensource-Paper%2FPaperUI/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Opensource-Paper%2FPaperUI/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Opensource-Paper","download_url":"https://codeload.github.com/Opensource-Paper/PaperUI/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248505863,"owners_count":21115354,"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":["cdn","component","component-library","components","css","documentation","html","inter","javascript","js","npm","paper","paper-ui","paperui","react","ui","ui-components","ui-design","ui-library","web-components"],"created_at":"2024-09-24T14:19:27.576Z","updated_at":"2025-10-03T16:27:14.522Z","avatar_url":"https://github.com/Opensource-Paper.png","language":"JavaScript","readme":"\u003cp align=\"center\"\u003e\n\u003cimg alt=\"Logo Banner\" src=\"https://paperui.com/banner/banner.svg?sanitize=true\"/\u003e\n\u003cbr/\u003e\n\n\u003c!--\u003cdiv align=\"center\"\u003e\u003ca href='https://ko-fi.com/brick_wall' target='_blank'\u003e\u003cimg height='30' style='border:0px;height:41px;' src='https://az743702.vo.msecnd.net/cdn/kofi3.png?v=0' border='0' margin-top=\"10px\" alt='Buy Me a Coffee at ko-fi.com'/\u003e\u003c/a\u003e\u003c/div\u003e--\u003e\n\u003cdiv align=\"left\"\u003eThe Paper UI library allows users to easily import and style a wide range of components with a singular cdn link.\u003c/div\u003e\n\u003cdiv align=\"left\"\u003e\n\n[Documentation](https://paperui.com/)\n\n\u003c/div\u003e\n\n## Installation\n\n### CDN\n\nImport Paper UI web components using CDN. The all.min.js file will automatically import all styles and JavaScript files into the ```\u003chead\u003e```.\n\n```html\n\u003cscript type=\"module\" src=\"https://unpkg.com/paperui-web\"\u003e\u003c/script\u003e\n```\n#### 🚧 Development\n```html\n\u003cscript type=\"module\" src=\"https://unpkg.com/paperui-web@latest\"\u003e\u003c/script\u003e\n```\n\n### NPM\n\nInstall Paper UI web components using [npm and node](https://nodejs.org/en).\n\n```bash\nnpm install paperui-web\n```\n\n## Import\n\nImport element definitions from ```paperui-web/\u003ccomponent\u003e/\u003ccomponent\u003e.js```.\n\n```index.js```\n\n```js\nimport 'paperui-web/switch/switch.js';\nimport 'paperui-web/checkbox/checkbox.js';\n```\n\n## Usage\n\nUse the ```\u003ccomponent-name\u003e``` tag in HTML markup. Refer to the [Component Docs](https://paperui.com) for more guidance on using each component. That's it 🎉.\n\n```HTML```\n\n```html\n\u003cmedia-button-filled\u003eFilled\u003c/media-button-filled\u003e\n\u003cmedia-button-outlined\u003eOutlined\u003c/media-button-outlined\u003e\n```\n\n```html\n\u003cmedia-switch\u003e\u003c/media-switch\u003e\n\u003cmedia-switch disabled checked\u003e\u003c/media-switch\u003e\n```\n\n\u003c!--\u003cp align=\"center\"\u003e\n\u003cimg alt=\"Logo Banner\" src=\"https://paperui.com/banner/switch.gif?sanitize=true\"/\u003e\n\u003cbr/\u003e--\u003e\n\nCheck out the demo on [codepen](https://codepen.io/GreenestGoat/pen/BaeZpvo).\n\n## Copyright and license\n\nLicensed under the MIT License, Copyright © 2024-present Opensource-Paper.\n\nSee [LICENSE](https://github.com/Opensource-Paper/PaperUI/blob/main/LICENSE) for more information.\n","funding_links":["https://ko-fi.com/brick_wall'"],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fopensource-paper%2Fpaperui","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fopensource-paper%2Fpaperui","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fopensource-paper%2Fpaperui/lists"}