{"id":20951275,"url":"https://github.com/vollowx/see","last_synced_at":"2026-01-12T15:43:14.952Z","repository":{"id":44846873,"uuid":"513038958","full_name":"vollowx/see","owner":"vollowx","description":"A web components library that can be styled and extended freely, pre-providing components in Material You.","archived":false,"fork":false,"pushed_at":"2026-01-03T12:31:37.000Z","size":1780,"stargazers_count":13,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-01-06T05:35:56.314Z","etag":null,"topics":["design-system","lit","material","material-you","typescript","web","web-components"],"latest_commit_sha":null,"homepage":"https://see.v9.nz/","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/vollowx.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":"ROADMAP.md","authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2022-07-12T07:17:36.000Z","updated_at":"2026-01-03T12:31:40.000Z","dependencies_parsed_at":"2022-08-31T04:21:27.357Z","dependency_job_id":"b335f0d5-96e3-421b-91d0-0cb33864b79f","html_url":"https://github.com/vollowx/see","commit_stats":null,"previous_names":["volpan/tiny-material","unvolo/tiny-material","vollowx/tiny-material","huge-pancake/tiny-material","vollowx/see"],"tags_count":11,"template":false,"template_full_name":null,"purl":"pkg:github/vollowx/see","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vollowx%2Fsee","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vollowx%2Fsee/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vollowx%2Fsee/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vollowx%2Fsee/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/vollowx","download_url":"https://codeload.github.com/vollowx/see/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vollowx%2Fsee/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28341522,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-12T12:22:26.515Z","status":"ssl_error","status_checked_at":"2026-01-12T12:22:10.856Z","response_time":98,"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":["design-system","lit","material","material-you","typescript","web","web-components"],"created_at":"2024-11-19T00:58:02.482Z","updated_at":"2026-01-12T15:43:14.927Z","avatar_url":"https://github.com/vollowx.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# SEE (Standard Extensible Elements)\n\n**SEE** is a modern, lightweight [Web Components](https://developer.mozilla.org/en-US/docs/Web/API/Web_components) library. It provides a set of highly customizable UI components that follow the [Material You](https://m3.material.io/) guidelines out of the box, while being designed for easy extension and restyling.\n\nVisit the [official website](https://see.v9.nz/) for documentation and demos.\n\n## Features\n\n- **Material You**: Ready-to-use components following the latest Material guidelines.\n- **Web Components**: Framework-agnostic. Works with vanilla HTML or any framework.\n- **Extensible**: Built to be extended. Create your own design system on top of SEE's logic.\n- **Lightweight**: Built on [Lit](https://lit.dev/) and [floating-ui](https://floating-ui.com/) only, ensuring fast performance and small bundle sizes.\n- **Accessible**: Designed with accessibility in mind (using `ElementInternals` and standard ARIA patterns).\n\n## Installation\n\nInstall SEE using your preferred package manager:\n\n```bash\n# npm\nnpm install @vollowx/see\n\n# pnpm\npnpm add @vollowx/see\n\n# yarn\nyarn add @vollowx/see\n\n# bun\nbun add @vollowx/see\n```\n\n## Usage\n\n### Importing Components\n\nYou can import the entire library or individual components to keep your bundle size small.\n\n```javascript\n// Import all components\nimport '@vollowx/see';\n\n// OR Import specific components (Recommended)\nimport '@vollowx/see/m3/button/common-button.js';\nimport '@vollowx/see/m3/checkbox.js';\n```\n\n### Using Components\n\nOnce imported, use the components just like standard HTML tags.\n\n```html\n\u003cmd-button variant=\"filled\"\u003eFilled Button\u003c/md-button\u003e\n\u003cmd-button variant=\"outlined\"\u003eOutlined Button\u003c/md-button\u003e\n\n\u003clabel\u003e\n  \u003cmd-checkbox checked\u003e\u003c/md-checkbox\u003e\n  Labelled Checkbox\n\u003c/label\u003e\n```\n\n### Theming\n\nSEE components use CSS variables for styling. Currently, the global Material Design 3 token variables are not included in the JavaScript bundle.\n\nTo style the components correctly, you need to define the necessary CSS variables in your project. You can find reference implementations in [vollowx/see-website](https://github.com/vollowx/see-website/) or the `dev` folder of this repository.\n\n## Browser Support\n\nSEE relies on modern web standards like `ElementInternals`.\n\n- **Chromium**: `\u003e= 125.0`\n- **Firefox**: `\u003e= 126.0`\n\n## Resources\n\n- [Roadmap](./ROADMAP.md)\n- [Contributing Guide](./CONTRIBUTING.md)\n- [License](./LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvollowx%2Fsee","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvollowx%2Fsee","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvollowx%2Fsee/lists"}