{"id":31931250,"url":"https://github.com/walissoncf/wally-ui","last_synced_at":"2025-10-14T04:32:44.064Z","repository":{"id":315331834,"uuid":"1059049389","full_name":"WalissonCF/wally-ui","owner":"WalissonCF","description":"Where’s Wally? Right here — bringing you ready-to-use Angular components with Wally-UI. Stop searching, start building.","archived":false,"fork":false,"pushed_at":"2025-10-09T02:09:40.000Z","size":295,"stargazers_count":3,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-10T18:52:20.995Z","etag":null,"topics":["angular","angular-library","tailwind","wally-ui"],"latest_commit_sha":null,"homepage":"https://wally-ui.com/","language":"HTML","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/WalissonCF.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":"2025-09-17T23:33:48.000Z","updated_at":"2025-10-09T02:09:43.000Z","dependencies_parsed_at":"2025-09-18T02:37:01.802Z","dependency_job_id":"cdd4bb3c-c6b5-42cb-89cd-2c58fbeadaab","html_url":"https://github.com/WalissonCF/wally-ui","commit_stats":null,"previous_names":["walissoncf/wally-ui"],"tags_count":32,"template":false,"template_full_name":null,"purl":"pkg:github/WalissonCF/wally-ui","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/WalissonCF%2Fwally-ui","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/WalissonCF%2Fwally-ui/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/WalissonCF%2Fwally-ui/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/WalissonCF%2Fwally-ui/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/WalissonCF","download_url":"https://codeload.github.com/WalissonCF/wally-ui/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/WalissonCF%2Fwally-ui/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279017942,"owners_count":26086213,"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","status":"online","status_checked_at":"2025-10-14T02:00:06.444Z","response_time":60,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["angular","angular-library","tailwind","wally-ui"],"created_at":"2025-10-14T04:32:43.085Z","updated_at":"2025-10-14T04:32:44.059Z","avatar_url":"https://github.com/WalissonCF.png","language":"HTML","readme":"# Wally UI\n\nA modern Angular component library with individual component installation, Tailwind CSS styling, and enterprise-grade accessibility.\n\n[![npm version](https://img.shields.io/npm/v/wally-ui.svg)](https://www.npmjs.com/package/wally-ui)\n[![MIT License](https://img.shields.io/badge/License-MIT-green.svg)](https://opensource.org/licenses/MIT)\n\n**[Live Documentation](https://wally-ui.com/)**\n\n## Installation\n\n### List all available components\n```bash\nnpx wally-ui list\n```\n\n### Install a component\n```bash\nnpx wally-ui add button\nnpx wally-ui add input\nnpx wally-ui add carousel\nnpx wally-ui add breadcrumb\n```\n\nComponents are installed directly into `src/app/components/wally-ui/{component}/`\n\n## Requirements\n\n- Tailwind CSS v3 or v4\n- Node.js 18+\n- Angular 17+\n\n## Available Components\n\n| Component | Status | Features |\n|-----------|--------|----------|\n| **Button** | Production | Variants (primary, secondary), loading states, ARIA support |\n| **Input** | Production | Form integration, validation, password toggle, loading states |\n| **Carousel** | Production | Touch gestures, keyboard navigation, circular buffer algorithm |\n| **Breadcrumb** | Production | Semantic HTML, ARIA navigation, responsive design |\n\n## Quick Start\n\n### Basic Usage\n```typescript\nimport { Component } from '@angular/core';\nimport { Button } from './components/wally-ui/button/button';\n\n@Component({\n  selector: 'app-example',\n  imports: [Button],\n  template: `\n    \u003cwally-button variant=\"primary\"\u003eClick me\u003c/wally-button\u003e\n  `\n})\nexport class ExampleComponent {}\n```\n\n### Reactive Forms Integration\n```typescript\nimport { Component } from '@angular/core';\nimport { FormBuilder, ReactiveFormsModule, Validators } from '@angular/forms';\nimport { Input } from './components/wally-ui/input/input';\n\n@Component({\n  selector: 'app-form',\n  imports: [Input, ReactiveFormsModule],\n  template: `\n    \u003cform [formGroup]=\"form\"\u003e\n      \u003cwally-input\n        formControlName=\"email\"\n        label=\"Email\"\n        type=\"email\"\u003e\n      \u003c/wally-input\u003e\n    \u003c/form\u003e\n  `\n})\nexport class FormComponent {\n  form = this.fb.group({\n    email: ['', [Validators.required, Validators.email]]\n  });\n\n  constructor(private fb: FormBuilder) {}\n}\n```\n\n## Component Examples\n\n### Button Component\n```html\n\u003c!-- Variants --\u003e\n\u003cwally-button variant=\"primary\"\u003ePrimary Button\u003c/wally-button\u003e\n\u003cwally-button variant=\"secondary\"\u003eSecondary Button\u003c/wally-button\u003e\n\n\u003c!-- States --\u003e\n\u003cwally-button [loading]=\"true\"\u003eLoading...\u003c/wally-button\u003e\n\u003cwally-button [disabled]=\"true\"\u003eDisabled\u003c/wally-button\u003e\n```\n\n### Input Component\n```html\n\u003c!-- Basic input --\u003e\n\u003cwally-input label=\"Username\" placeholder=\"Enter username\"\u003e\u003c/wally-input\u003e\n\n\u003c!-- Password with toggle --\u003e\n\u003cwally-input type=\"password\" label=\"Password\"\u003e\u003c/wally-input\u003e\n\n\u003c!-- States --\u003e\n\u003cwally-input [loading]=\"true\"\u003e\u003c/wally-input\u003e\n\u003cwally-input [valid]=\"true\"\u003e\u003c/wally-input\u003e\n\u003cwally-input errorMessage=\"Required field\"\u003e\u003c/wally-input\u003e\n```\n\n### Carousel Component\n```html\n\u003cwally-carousel\u003e\n  \u003cdiv\u003eSlide 1\u003c/div\u003e\n  \u003cdiv\u003eSlide 2\u003c/div\u003e\n  \u003cdiv\u003eSlide 3\u003c/div\u003e\n\u003c/wally-carousel\u003e\n```\n\n### Breadcrumb Component\n```html\n\u003cwally-breadcrumb [items]=\"[\n  { label: 'Home', link: '/' },\n  { label: 'Components', link: '/components' },\n  { label: 'Button' }\n]\"\u003e\u003c/wally-breadcrumb\u003e\n```\n\n## Project Structure\n\nComponents install into:\n```\nsrc/app/components/wally-ui/{component}/\n├── {component}.ts      # Component logic\n└── {component}.html    # Template\n```\n\n## Features\n\n- Zero configuration - install only what you need\n- Enterprise-grade accessibility with ARIA support\n- Dark mode support out of the box\n- Server-Side Rendering compatible\n- Angular Signals architecture\n- TypeScript interfaces included\n- Copy-paste ready examples\n\n## Documentation\n\nFull documentation and live examples: **[wally-ui.com](https://wally-ui.com/)**\n\n## License\n\nMIT","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwalissoncf%2Fwally-ui","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwalissoncf%2Fwally-ui","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwalissoncf%2Fwally-ui/lists"}