{"id":24589101,"url":"https://github.com/openwebstudio/airui","last_synced_at":"2025-04-30T05:07:22.077Z","repository":{"id":270329923,"uuid":"909570952","full_name":"openwebstudio/AirUI","owner":"openwebstudio","description":null,"archived":false,"fork":false,"pushed_at":"2025-02-06T11:03:45.000Z","size":572,"stargazers_count":21,"open_issues_count":0,"forks_count":5,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-04-30T05:06:52.730Z","etag":null,"topics":["stencil","stenciljs-components","webcomponents"],"latest_commit_sha":null,"homepage":"http://opencomponent.org","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/openwebstudio.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-12-29T05:35:32.000Z","updated_at":"2025-02-22T20:29:15.000Z","dependencies_parsed_at":"2025-01-05T06:25:12.733Z","dependency_job_id":"516f55df-f344-4dcb-8f4f-79b12e4208c0","html_url":"https://github.com/openwebstudio/AirUI","commit_stats":null,"previous_names":["aircomponents/components","aircomponents/ui","openwebstudio/opencomponent","openwebstudio/aircomponents","openwebstudio/airc"],"tags_count":7,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/openwebstudio%2FAirUI","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/openwebstudio%2FAirUI/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/openwebstudio%2FAirUI/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/openwebstudio%2FAirUI/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/openwebstudio","download_url":"https://codeload.github.com/openwebstudio/AirUI/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":251644842,"owners_count":21620634,"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":["stencil","stenciljs-components","webcomponents"],"created_at":"2025-01-24T08:13:42.139Z","updated_at":"2025-04-30T05:07:22.055Z","avatar_url":"https://github.com/openwebstudio.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# In Early Development Version, Currently Unavailable\n\n![Air-Components Logo](./src/assets/air-components-board.png)\n\n[中文](https://github.com/SisyphusZheng/Components/blob/main/README_CN.md) \n[![npm version](https://img.shields.io/npm/v/air-components)](https://www.npmjs.com/package/air-components) \n[![npm downloads](https://img.shields.io/npm/dm/air-components)](https://www.npmjs.com/package/air-components) \n[![GitHub license](https://img.shields.io/github/license/aircomponents/Components)](https://github.com/aircomponents/Components/blob/main/LICENSE)  \n[![Last Commit](https://img.shields.io/github/last-commit/aircomponents/Components)](https://github.com/aircomponents/Components/commits/main) \n[![Dependabot Status](https://img.shields.io/badge/dependencies-up%20to%20date-brightgreen)](https://github.com/aircomponents/Components/network/updates)\n\n## Project Highlights\n\n- **Modular Architecture**: Focused on creating reusable and flexible components.\n\n- **Modern Design Principles**: Emphasizes minimalist UI design with support for multiple themes and visual styles.\n- **Customizable Components**: Easily adapt component styles to meet project-specific requirements using standard CSS.\n\n---\n\n## Installation\n\nInstall Air-Components using npm:\n\n```bash\nnpm install @airdesign/ui\n```\n\n### CDN\n\n```html\n  \u003ctitle\u003eTest AirComponents\u003c/title\u003e\n  \u003cscript type=\"module\" src=\"https://unpkg.com/@aircomponents/ui@0.0.7/dist/aircomponents/aircomponents.esm.js\"\u003e\u003c/script\u003e\n\u003c/head\u003e\n\u003cbody\u003e\n  \u003cair-button size=\"medium\" variant=\"solid\" color=\"primary\"\u003ePrimary Button\u003c/air-button\u003e\n  \u003cair-button size=\"medium\" variant=\"outline\" color=\"primary\"\u003eOutline Primary\u003c/air-button\u003e\n\u003c/body\u003e\n\u003c/html\u003e\n```\n\n```JS\nimport '@aircomponents/ui';\n\ndocument.body.innerHTML = `\n  \u003cair-button size=\"medium\" variant=\"solid\" color=\"primary\"\u003ePrimary Button\u003c/air-button\u003e\n`;\n```\n\n### React\n\n```js\nimport 'air-components';\n\nfunction App() {\n  return (\n    \u003cdiv\u003e\n      \u003cair-button size=\"medium\" variant=\"solid\" color=\"primary\"\u003e\n        Primary Button\n      \u003c/air-button\u003e\n    \u003c/div\u003e\n  );\n}\n\nexport default App;\n```\n\n### Vue\n\n#### Vue Config\n\n```js\nmodule.exports = {\n  chainWebpack: config =\u003e {\n    config.module\n      .rule('vue')\n      .use('vue-loader')\n      .loader('vue-loader')\n      .tap(options =\u003e {\n        options.compilerOptions = {\n          isCustomElement: tag =\u003e tag.startsWith('air-'),\n        };\n        return options;\n      });\n  },\n};\n```\n\n#### USE Vue\n\n```js\n\u003ctemplate\u003e\n  \u003cdiv\u003e\n    \u003cair-button size=\"medium\" variant=\"solid\" color=\"primary\"\u003e\n      Primary Button\n    \u003c/air-button\u003e\n  \u003c/div\u003e\n\u003c/template\u003e\n\n\u003cscript\u003e\nimport 'air-components';\nexport default {\n  name: 'App',\n};\n\u003c/script\u003e\n```\n\n## Development Notes\n\n### This project is in early development; features and components are actively being built\n\n### Contributions and feedback are welcome. Visit our GitHub repository for more information\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fopenwebstudio%2Fairui","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fopenwebstudio%2Fairui","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fopenwebstudio%2Fairui/lists"}