{"id":19247852,"url":"https://github.com/vicdata4/seed-catalog","last_synced_at":"2025-04-21T11:33:46.307Z","repository":{"id":39354932,"uuid":"199273998","full_name":"vicdata4/seed-catalog","owner":"vicdata4","description":"Seed-catalog is an open-source web-components library. It contains CSS-styles and standards-based web templates such as buttons, modals, dropdowns and other interface components.","archived":false,"fork":false,"pushed_at":"2022-07-20T16:02:37.000Z","size":16181,"stargazers_count":4,"open_issues_count":19,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2024-04-27T20:04:26.298Z","etag":null,"topics":["catalog","css","custom-elements","html","javascript","library","litelement","webcomponents"],"latest_commit_sha":null,"homepage":"https://vicdata4.github.io/seed-catalog","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/vicdata4.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}},"created_at":"2019-07-28T10:37:56.000Z","updated_at":"2022-03-03T14:51:18.000Z","dependencies_parsed_at":"2022-09-04T22:10:18.565Z","dependency_job_id":null,"html_url":"https://github.com/vicdata4/seed-catalog","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vicdata4%2Fseed-catalog","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vicdata4%2Fseed-catalog/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vicdata4%2Fseed-catalog/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vicdata4%2Fseed-catalog/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/vicdata4","download_url":"https://codeload.github.com/vicdata4/seed-catalog/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":223863951,"owners_count":17216232,"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":["catalog","css","custom-elements","html","javascript","library","litelement","webcomponents"],"created_at":"2024-11-09T18:05:28.740Z","updated_at":"2024-11-09T18:05:29.383Z","avatar_url":"https://github.com/vicdata4.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cimg src=\"https://cdn.jsdelivr.net/gh/vicdata4/doc-template/assets/seed-icon.png\" width=\"40\"\u003e\n\n## Seed Catalog\n\n![npm](https://img.shields.io/badge/npm-v1.1.0-blue.svg)\n![LICENSE](https://img.shields.io/badge/license-MIT-blue.svg)\n\n### [Website](https://vicdata4.github.io/seed-catalog)\n\nSeed-catalog is an open-source `web-components library`. It contains CSS-styles and standards-based web templates such as buttons, modals, dropdowns and other interface components.\n\n### [Dependencies](package.json)\n\n- [LitElement](https://lit-element.polymer-project.org) Web Components\n- [Storybook](https://storybook.js.org) WC Interface (dev)\n- [ESLint](https://eslint.org) Coding style (dev)\n- [Open-wc](https://open-wc.org/) Testing recommendations (Karma, Mocha, Chai)\n\n\n## Quick start\n\nInstall via npm\n\n```\nnpm i @seed-catalog/modal\n```\n\n## Catalog\n\n- [Carousel](https://vicdata4.github.io/seed-catalog/seed/carousel)\n- [Dropdown](https://vicdata4.github.io/seed-catalog/seed/dropdown)\n- [Modal](https://vicdata4.github.io/seed-catalog/seed/modal)\n- [Progress ring](https://vicdata4.github.io/seed-catalog/seed/ring)\n- [Stepper](https://vicdata4.github.io/seed-catalog/seed/stepper)\n\n## Styles\n\n- [Button]()\n- [Button Group]()\n- [Button Icon]()\n- [Button Input]()\n\n## Style classes\n\n#### Buttons\n\nYou can play with different combinations of colors, types and sizes according with the requirements of your application or website.\n\n- [Material Icons](https://material.io/resources/icons) Crafted symbols\n\nMaterial icons is integrated as dependency of this class, so you can create more complex and dynamic buttons, easy and fast just importing `seedStyle` class.\n\n```js\n\nimport { LitElement, css } from 'lit-element';\nimport { seedStyle } from '@seed-catalog/styles';\nimport '@seed-catalog/dropdown';\n\nclass MyComponent extends LitElement {\n    static get styles() {\n        return [\n            seedStyle,\n            css`\n                ...\n            `\n        ];\n    }\n\n    render() {\n        return html`\n            \u003cseed-dropdown maxWidth=\"300\" clickout\u003e\n                \u003cbutton slot=\"button\" class=\"sd-btn red\"\u003eDropdown\u003c/button\u003e\n                \u003cp slot=\"content\"\u003e\n                    Lorem ipsum dolor sit amet, consectetur adipiscing elit.\n                    Cras ut viverra leo, vel dapibus quam. Proin a sollicitudin quam,\n                    eget viverra diam. Donec euismod mattis dignissim.\n                \u003c/p\u003e\n            \u003c/seed-dropdown\u003e\n        `;\n    }\n}\n```\n\n##### Color classes:\n- ![](https://placehold.it/15/de3d4c/000000?text=+) `.red`\n- ![](https://placehold.it/15/22ac41/000000?text=+) `.green`\n- ![](https://placehold.it/15/2dabb4/000000?text=+) `.blue`\n- ![](https://placehold.it/15/e6af0e/000000?text=+) `.yellow`\n- ![](https://placehold.it/15/903e8d/000000?text=+) `.purple`\n- ![](https://placehold.it/15/2f2d2d/000000?text=+) `.black`\n- ![](https://placehold.it/15/d58309/000000?text=+) `.orange`\n- ![](https://placehold.it/15/bf4545/000000?text=+) `.red-mate`\n- ![](https://placehold.it/15/1C8281/000000?text=+) `.green-mate`\n- ![](https://placehold.it/15/3f76b6/000000?text=+) `.blue-mate`\n- ![](https://placehold.it/15/fff/000000?text=+) `default`\n\n##### Button classes\n\n- .sd-btn\n- .sd-btn-mix\n- .sd-btn-mixr\n- .sd-btn-group\n- .sd-icon\n- .clear\n- .circle\n- .sm\n- .lg\n\n##### Input classes\n\n- .sd-input-submit\n- .sd-input-icon\n- .sd-input-icon left\n- .sd-input-label\n\n\n##### Fonts\n\n- Material icons\n- Ubuntu, sans-serif\n\n\n\n### How to use\n\nWe recommend to see the [website documentation](https://vicdata4.github.io/seed-catalog) to learn more about seed-components catalog and how to use them.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvicdata4%2Fseed-catalog","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvicdata4%2Fseed-catalog","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvicdata4%2Fseed-catalog/lists"}