{"id":15559179,"url":"https://github.com/anthonygore/i-button","last_synced_at":"2025-08-02T07:16:44.751Z","repository":{"id":83069179,"uuid":"111155350","full_name":"anthonygore/i-button","owner":"anthonygore","description":"A simplistic button forked from VueMaterial inspired in Material Design Style Guide","archived":false,"fork":false,"pushed_at":"2017-11-17T22:12:38.000Z","size":16,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-29T04:16:46.133Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"CSS","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":"ivomarsan/i-button","license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/anthonygore.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2017-11-17T22:07:07.000Z","updated_at":"2024-01-13T03:15:29.000Z","dependencies_parsed_at":null,"dependency_job_id":"2271e99d-bc76-45c5-adbc-47837d964e01","html_url":"https://github.com/anthonygore/i-button","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/anthonygore/i-button","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/anthonygore%2Fi-button","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/anthonygore%2Fi-button/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/anthonygore%2Fi-button/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/anthonygore%2Fi-button/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/anthonygore","download_url":"https://codeload.github.com/anthonygore/i-button/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/anthonygore%2Fi-button/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":268348579,"owners_count":24236297,"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-08-02T02:00:12.353Z","response_time":74,"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":[],"created_at":"2024-10-02T15:41:55.546Z","updated_at":"2025-08-02T07:16:44.721Z","avatar_url":"https://github.com/anthonygore.png","language":"CSS","readme":"\u003cp align=\"center\"\u003e\n  \u003ca href=\"http://ivomarsan.com/\" target=\"_blank\"\u003e\n    \u003cimg width=\"128\" src=\"http://ivomarsan.com/favicon.png\"\u003e\n  \u003c/a\u003e\n\u003c/p\u003e\n\n\u003cp align=\"center\"\u003ei-button\u003c/p\u003e\n\n\u003cp align=\"center\"\u003e\n\n  \u003ca href=\"https://www.npmjs.com/package/i-button\"\u003e\n    \u003cimg src=\"https://img.shields.io/npm/dt/i-button.svg\" alt=\"Downloads\"\u003e\n  \u003c/a\u003e\n\n  \u003ca href=\"https://www.npmjs.com/package/i-button\"\u003e\n    \u003cimg src=\"https://img.shields.io/npm/v/i-button.svg\" alt=\"Version\"\u003e\n  \u003c/a\u003e\n\n  \u003ca href=\"https://www.npmjs.com/package/i-button\"\u003e\n    \u003cimg src=\"https://img.shields.io/npm/l/i-button.svg\" alt=\"License\"\u003e\n  \u003c/a\u003e\n\u003c/p\u003e\n\n----------\n\n\u003ca href=\"https://www.npmjs.com/package/i-button\"\u003e`i-button`\u003c/a\u003e is a simplistic button forked from \u003ca href=\"https://www.npmjs.com/package/vue-material\"\u003e`vue-material`\u003c/a\u003e inspired in \u003ca href=\"http://material.google.com\" target=\"_blank\"\u003eMaterial Design\u003c/a\u003e specs.\n\n## Installation\n\nInstall via `npm`\n``` bash\nnpm install i-button --save\n```\n\nImport or require in your code:\n``` javascript\nimport Vue from 'vue'\nimport iButton from 'i-button'\n\n// OR\n\nvar Vue = require('vue')\nvar iButton = require('i-button')\n```\n\n## Installation\n\n### Module\n\n``` javascript\nimport iButton from 'i-button'\n\n// ...\n\nexport default {\n  // ...\n  components: {\n    'my-awesome-button': iButton,\n  }\n  // ...\n}\n```\n\n### Browser\n\n```html\n\u003cscript src=\"https://cdn.jsdelivr.net/npm/vue\"\u003e\u003c/script\u003e\n\u003cscript src=\"dist/i-button.min.js\"\u003e\u003c/script\u003e\n\u003cscript\u003e\nVue.use(iButton);\n\nnew Vue({\n  el: '#app'\n});\n\u003c/script\u003e\n```\n\n## Usage\n\nIt's very useful to use `i-button` you only need to register then :smile: seems like with\n\n``` html\n\u003cmy-awesome-button class=\"is-background-red\"\u003e\n  🗑\n\u003c/my-awesome-button\u003e\n```\nYou also can use some properties like\n#### A Link _(href \u0026 target \u0026 rel)_\n``` html\n\u003cmy-awesome-button class=\"is-background-red\"\n:href=\"'http://ivomarsan.com'\"\n:target=\"'_blank'\"\n:rel=\"'noopener'\"\u003e\n  🗑\n\u003c/my-awesome-button\u003e\n```\n#### Button _(disabled \u0026 type)_\n``` html\n\u003cmy-awesome-button class=\"is-background-red\"\n:disabled=\"isDisabled\"\n:type=\"'button'\"\u003e\n  🗑\n\u003c/my-awesome-button\u003e\n```\n\n## Colors\n\nActually we have 10 colors, are:\n* \u003cimg src=\"https://img.shields.io/badge/red-                    -d43f3a.svg?style=for-the-badge\" alt=\"red\"\u003e\n* \u003cimg src=\"https://img.shields.io/badge/pink-                    -ff067c.svg?style=for-the-badge\" alt=\"pink\"\u003e\n* \u003cimg src=\"https://img.shields.io/badge/blue-                    -0488bb.svg?style=for-the-badge\" alt=\"blue\"\u003e\n* \u003cimg src=\"https://img.shields.io/badge/gray-                    -ada8a5.svg?style=for-the-badge\" alt=\"gray\"\u003e\n* \u003cimg src=\"https://img.shields.io/badge/black-                    -000000.svg?style=for-the-badge\" alt=\"black\"\u003e\n* \u003cimg src=\"https://img.shields.io/badge/white-                    -ffffff.svg?style=for-the-badge\" alt=\"white\"\u003e\n* \u003cimg src=\"https://img.shields.io/badge/green-                    -4cae4c.svg?style=for-the-badge\" alt=\"green\"\u003e\n* \u003cimg src=\"https://img.shields.io/badge/purple-                    -9400c8.svg?style=for-the-badge\" alt=\"purple\"\u003e\n* \u003cimg src=\"https://img.shields.io/badge/yellow-                    -ffdf00.svg?style=for-the-badge\" alt=\"yellow\"\u003e\n* \u003cimg src=\"https://img.shields.io/badge/orange-                    -ff9e00.svg?style=for-the-badge\" alt=\"orange\"\u003e\n\n## Classes\n\nClasses are formed by `prefix-type-color`, examples:\n* `is-color-green`\n* `is-outline-green`\n* `is-background-green`\n\n## Example\n\nto-do","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fanthonygore%2Fi-button","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fanthonygore%2Fi-button","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fanthonygore%2Fi-button/lists"}