{"id":13626465,"url":"https://github.com/Equal-UI/Equal","last_synced_at":"2025-04-16T14:33:37.926Z","repository":{"id":43642514,"uuid":"215322499","full_name":"Equal-UI/Equal","owner":"Equal-UI","description":"Equal UI is a Vue 3 UI library empowered by Tailwindcss","archived":false,"fork":false,"pushed_at":"2024-10-28T12:14:42.000Z","size":10115,"stargazers_count":1239,"open_issues_count":1,"forks_count":66,"subscribers_count":17,"default_branch":"master","last_synced_at":"2025-04-10T16:48:43.484Z","etag":null,"topics":["contributions-welcome","css","equal","framework","frontend","nuxt","tailwind","tailwindcss","typescript","ui","ux","vue","vue-components","vue3","vuejs"],"latest_commit_sha":null,"homepage":"https://equal-ui.github.io/Equal/","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/Equal-UI.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","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":null,"patreon":"savinov","open_collective":null,"ko_fi":null,"tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"otechie":null,"custom":null}},"created_at":"2019-10-15T14:40:47.000Z","updated_at":"2025-04-08T11:38:15.000Z","dependencies_parsed_at":"2022-07-17T00:30:33.873Z","dependency_job_id":"7dd0072a-4de5-4803-8ff2-9a7055943d00","html_url":"https://github.com/Equal-UI/Equal","commit_stats":{"total_commits":166,"total_committers":12,"mean_commits":"13.833333333333334","dds":0.463855421686747,"last_synced_commit":"58ffb918b1570d5095bc9de9a08ff07537843516"},"previous_names":["quatrochan/equal"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Equal-UI%2FEqual","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Equal-UI%2FEqual/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Equal-UI%2FEqual/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Equal-UI%2FEqual/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Equal-UI","download_url":"https://codeload.github.com/Equal-UI/Equal/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":249250821,"owners_count":21237961,"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":["contributions-welcome","css","equal","framework","frontend","nuxt","tailwind","tailwindcss","typescript","ui","ux","vue","vue-components","vue3","vuejs"],"created_at":"2024-08-01T21:02:19.645Z","updated_at":"2025-04-16T14:33:37.904Z","avatar_url":"https://github.com/Equal-UI.png","language":"TypeScript","readme":"\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://equal-ui.github.io/Equal/\"\u003e\n    \u003cimg width=\"150\" src=\"./docs/public/logo.svg\"\u003e\n  \u003c/a\u003e\n\n\u003cp align=\"center\"\u003e\n\u003cimg src=\"https://img.shields.io/npm/v/equal-vue?color=blue\"\u003e\n\u003cimg src=\"https://img.shields.io/npm/l/equal-vue\"\u003e\n\u003c/p\u003e\n\u003c/p\u003e\n\n\u003ch1 align=\"center\"\u003e\n  Equal UI\n\u003c/h2\u003e\n\n\u003cdiv align=\"center\"\u003e\nEqual UI is a Vue 3 hackable components library with 30+ components on top of Tailwindcss\n\u003cbr\u003e\n  \u003ca href=\"https://equal-ui.github.io/Equal/\"\u003e\u003cstrong\u003eExplore Equal UI docs\u003c/strong\u003e\u003c/a\u003e\n\u003c/div\u003e\n\n\u003cbr\u003e\n\u003cdiv align=\"center\"\u003e\n\u003cspan\u003e\u003cstrong\u003eEnglish\u003c/strong\u003e\u003c/span\u003e\n|\n\u003ca href=\"./README_zh-hans.md\"\u003e中文简体\u003c/a\u003e\n\u003c/div\u003e\n\n# Features\n\n- 🔥 One of the best visuals in Vue ecosystem\n- 🌃 Built-in dark theme\n- 🎨 Full customization\n- 💬 Have tooltips, notifications, popovers\n- 👌 Lightweight: 12KB brotli\n- 🔧 Includes 30+ components\n- 💅 Uses your Tailwindcss classes\n\n# Links\n\n\u003cb\u003e Twitter: \u003c/b\u003e [@Yan](https://twitter.com/k0mmsussertod)\n\n# Install\n\nYou need [Vue.js](https://v3.vuejs.org/) version 3.1+\n\n```bash\n# npm\nnpm install equal-vue\n```\n\n```bash\n# yarn\nyarn add equal-vue\n```\n\n# Usage\n\n## All components\n\n```js\nimport { createApp } from 'vue'\nimport Equal from 'equal-vue'\nimport Config from 'equal-vue/dist/theme/full' // or light / dark theme\n\ncreateApp.use(Equal, Config)\n```\n\n## Or individual components\n\n```js\nimport { createApp } from 'vue'\nimport { Button, Switch } from 'equal-vue'\nimport Config from 'equal-vue/dist/theme/full' // or light / dark theme\n\ncreateApp.use(Button, Config).use(Switch, Config)\n```\n\n# License\n\n[MIT](https://raw.githubusercontent.com/Equal-UI/Equal/master/LICENSE)\n","funding_links":["https://patreon.com/savinov"],"categories":["TypeScript"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FEqual-UI%2FEqual","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FEqual-UI%2FEqual","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FEqual-UI%2FEqual/lists"}