{"id":49005602,"url":"https://github.com/waggylabs/yumekit","last_synced_at":"2026-04-25T21:03:40.910Z","repository":{"id":342616069,"uuid":"1173926901","full_name":"waggylabs/yumekit","owner":"waggylabs","description":"Web Component UI Kit","archived":false,"fork":false,"pushed_at":"2026-04-14T17:56:35.000Z","size":1135,"stargazers_count":4,"open_issues_count":11,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-04-14T19:27:26.138Z","etag":null,"topics":["ui-components","uikit","web-components"],"latest_commit_sha":null,"homepage":"https://www.yumekit.com","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/waggylabs.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":".github/FUNDING.yml","license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","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},"funding":{"github":"waggylabs"}},"created_at":"2026-03-05T22:27:57.000Z","updated_at":"2026-04-14T15:12:01.000Z","dependencies_parsed_at":null,"dependency_job_id":"59c54955-3bf1-4e2d-ab11-50f25c9562c9","html_url":"https://github.com/waggylabs/yumekit","commit_stats":null,"previous_names":["waggylabs/yumekit"],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/waggylabs/yumekit","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/waggylabs%2Fyumekit","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/waggylabs%2Fyumekit/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/waggylabs%2Fyumekit/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/waggylabs%2Fyumekit/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/waggylabs","download_url":"https://codeload.github.com/waggylabs/yumekit/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/waggylabs%2Fyumekit/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31982756,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-18T17:30:12.329Z","status":"ssl_error","status_checked_at":"2026-04-18T17:29:59.069Z","response_time":103,"last_error":"SSL_read: 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":["ui-components","uikit","web-components"],"created_at":"2026-04-18T20:04:21.241Z","updated_at":"2026-04-18T20:04:22.937Z","avatar_url":"https://github.com/waggylabs.png","language":"JavaScript","funding_links":["https://github.com/sponsors/waggylabs"],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n  \u003cimg src=\"logo.svg\" alt=\"Yumekit Logo\" width=\"120\" /\u003e\n\u003c/p\u003e\n\n\u003ch1 align=\"center\"\u003eYumekit\u003c/h1\u003e\n\n\u003cp align=\"center\"\u003e\n  A modern, themeable Web Components UI kit — no framework required.\n\u003c/p\u003e\n\n\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://www.npmjs.com/package/@waggylabs/yumekit\"\u003e\u003cimg src=\"https://img.shields.io/npm/v/@waggylabs/yumekit\" alt=\"npm version\" /\u003e\u003c/a\u003e\n  \u003ca href=\"https://github.com/waggylabs/yumekit/blob/main/LICENSE\"\u003e\u003cimg src=\"https://img.shields.io/npm/l/@waggylabs/yumekit\" alt=\"license\" /\u003e\u003c/a\u003e\n\u003c/p\u003e\n\n---\n\n## Overview\n\nYumeKit is a collection of 35 production-ready custom elements built with native Web Components. It works with any framework — or none at all — and ships with a comprehensive design token system, built-in theming, an icon registry, and full TypeScript support.\n\n- **Zero dependencies** — built entirely on web standards\n- **Framework-agnostic** — works with React, Vue, Svelte, or plain HTML\n- **Themeable** — 22 built-in themes plus support for fully custom themes\n- **Accessible** — ARIA-compliant, keyboard navigable, form-associated inputs\n- **Tree-shakeable** — import only the components you use\n\n---\n\n## Installation\n\n```bash\nnpm install @waggylabs/yumekit\n```\n\n---\n\n## Usage\n\n### Via CDN (script tag)\n\nThe IIFE bundle includes all components and icons. Drop it into any HTML page:\n\n```html\n\u003cscript src=\"https://cdn.jsdelivr.net/npm/@waggylabs/yumekit/dist/yumekit.min.js\"\u003e\u003c/script\u003e\n\n\u003cy-button color=\"primary\"\u003eClick me\u003c/y-button\u003e\n```\n\n### Via ESM (recommended)\n\nImport the full library or individual components for tree-shaking:\n\n```js\n// Full library\nimport \"@waggylabs/yumekit\";\n\n// Individual components\nimport \"@waggylabs/yumekit/components/y-theme\";\nimport \"@waggylabs/yumekit/components/y-button\";\nimport \"@waggylabs/yumekit/components/y-input\";\n```\n\nThen use the `\u003cy-theme\u003e` component to apply a theme:\n\n```html\n\u003cy-theme theme=\"blue-light\"\u003e\n    \u003c!-- your app content --\u003e\n\u003c/y-theme\u003e\n```\n\n---\n\n## Components\n\n| Component    | Element            | Description                                         |\n| ------------ | ------------------ | --------------------------------------------------- |\n| App Bar      | `\u003cy-appbar\u003e`       | Top or side navigation bar                          |\n| Avatar       | `\u003cy-avatar\u003e`       | User avatar with shape and color variants           |\n| Badge        | `\u003cy-badge\u003e`        | Status badge or label                               |\n| Breadcrumbs  | `\u003cy-breadcrumbs\u003e`  | Navigation breadcrumb trail with collapse support   |\n| Button       | `\u003cy-button\u003e`       | Button with icon, size, and style variants          |\n| Button Group | `\u003cy-button-group\u003e` | Groups buttons (or inputs) into a connected toolbar |\n| Card         | `\u003cy-card\u003e`         | Content card container                              |\n| Checkbox     | `\u003cy-checkbox\u003e`     | Form checkbox input                                 |\n| Date         | `\u003cy-date\u003e`         | Date input                                          |\n| DatePicker   | `\u003cy-datepicker\u003e`   | A date and time picker                              |\n| Dialog       | `\u003cy-dialog\u003e`       | Modal dialog                                        |\n| Dock         | `\u003cy-dock\u003e`         | Fixed navigation dock                               |\n| Drawer       | `\u003cy-drawer\u003e`       | Side drawer / sidebar                               |\n| Gallery      | `\u003cy-gallery\u003e`      | Media gallery with lightbox                         |\n| Icon         | `\u003cy-icon\u003e`         | SVG icon display                                    |\n| Input        | `\u003cy-input\u003e`        | Text input field                                    |\n| Menu         | `\u003cy-menu\u003e`         | Dropdown navigation menu                            |\n| Panel        | `\u003cy-panel\u003e`        | Accordion panel                                     |\n| Panel Bar    | `\u003cy-panelbar\u003e`     | Accordion panel group                               |\n| Progress     | `\u003cy-progress\u003e`     | Progress bar                                        |\n| Radio        | `\u003cy-radio\u003e`        | Radio button input                                  |\n| Rating       | `\u003cy-rating\u003e`       | Star / icon rating input                            |\n| Select       | `\u003cy-select\u003e`       | Select / dropdown input                             |\n| Slider       | `\u003cy-slider\u003e`       | Range slider input                                  |\n| Stack        | `\u003cy-stack\u003e`        | Layout container (row, column, grid, masonry)       |\n| Stepper      | `\u003cy-stepper\u003e`      | Multi-step wizard with sequential flow              |\n| Switch       | `\u003cy-switch\u003e`       | Toggle switch                                       |\n| Table        | `\u003cy-table\u003e`        | Sortable data table                                 |\n| Textarea     | `\u003cy-textarea\u003e`     | Multi-line text input                               |\n| Tabs         | `\u003cy-tabs\u003e`         | Tabbed interface                                    |\n| Tag          | `\u003cy-tag\u003e`          | Tag / chip label                                    |\n| Theme        | `\u003cy-theme\u003e`        | Theme provider                                      |\n| Toast        | `\u003cy-toast\u003e`        | Notification toast                                  |\n| Tooltip      | `\u003cy-tooltip\u003e`      | Tooltip / popover                                   |\n\n---\n\n## TypeScript\n\nType definitions are included. React-specific type augmentations are available at `@waggylabs/yumekit/react`.\n\n```ts\nimport \"@waggylabs/yumekit\";\n```\n\n---\n\n## License\n\nMIT © [WaggyLabs](https://github.com/waggylabs)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwaggylabs%2Fyumekit","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwaggylabs%2Fyumekit","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwaggylabs%2Fyumekit/lists"}