{"id":13805280,"url":"https://github.com/LeavittSoftware/titanium-elements","last_synced_at":"2025-05-13T19:30:43.876Z","repository":{"id":37242357,"uuid":"145903688","full_name":"LeavittSoftware/titanium-elements","owner":"LeavittSoftware","description":null,"archived":false,"fork":false,"pushed_at":"2024-11-13T16:47:56.000Z","size":10402,"stargazers_count":18,"open_issues_count":3,"forks_count":0,"subscribers_count":10,"default_branch":"master","last_synced_at":"2024-11-17T10:45:13.749Z","etag":null,"topics":["hacktoberfest","lit-element","lit-html","webcomponents"],"latest_commit_sha":null,"homepage":"https://storybook.leavitt.com","language":"TypeScript","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/LeavittSoftware.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":"CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-08-23T20:28:16.000Z","updated_at":"2024-11-13T16:47:03.000Z","dependencies_parsed_at":"2023-09-28T17:50:34.230Z","dependency_job_id":"55c107ee-0f82-439a-8b76-e95b0385b732","html_url":"https://github.com/LeavittSoftware/titanium-elements","commit_stats":{"total_commits":2246,"total_committers":22,"mean_commits":102.0909090909091,"dds":0.5712377560106856,"last_synced_commit":"c7c22c2772ef8caee22d9e216d30ce91e0bf0179"},"previous_names":[],"tags_count":2743,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LeavittSoftware%2Ftitanium-elements","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LeavittSoftware%2Ftitanium-elements/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LeavittSoftware%2Ftitanium-elements/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LeavittSoftware%2Ftitanium-elements/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/LeavittSoftware","download_url":"https://codeload.github.com/LeavittSoftware/titanium-elements/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":225254291,"owners_count":17445160,"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":["hacktoberfest","lit-element","lit-html","webcomponents"],"created_at":"2024-08-04T01:00:59.571Z","updated_at":"2024-11-18T21:31:01.279Z","avatar_url":"https://github.com/LeavittSoftware.png","language":"TypeScript","readme":"# Titanium Elements\n\n[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)\n[![lerna](https://img.shields.io/badge/maintained%20with-lerna-cc00ff.svg)](https://lerna.js.org/)\n[![TypeScript](https://img.shields.io/badge/%3C%2F%3E-TypeScript-%230074c1.svg)](http://www.typescriptlang.org/)\n[![code style: prettier](https://img.shields.io/badge/code_style-prettier-f8bc45.svg)](https://github.com/prettier/prettier)\n\n![Publish](https://github.com/LeavittSoftware/titanium-elements/workflows/Publish/badge.svg?branch=master)\n\nA collection of lightweight web components used by Leavitt Group Enterprises and partnering organizations.\n\n## Development\n\n    npm i\n    npm start\n\n## Contributions\n\n**[Conventional Commits ](https://www.conventionalcommits.org/en/v1.0.0-beta.4/#summary) Required**\n\nThe Conventional Commits specification is a lightweight convention on top of commit messages. It provides an easy set of rules for creating an explicit commit history; which makes it easier to write automated tools on top of. This convention dovetails with [SemVer](http://semver.org/), by describing the features, fixes, and breaking changes made in commit messages.\n\n**[TypeScript](https://www.typescriptlang.org/) Required**\n\nTypes enable JavaScript developers to use highly-productive development tools and practices like static checking and code refactoring when developing JavaScript applications.\n\n## Creating a new component\n\n### Create the component\n\n- [ ] Copy an existing component\n- [ ] Delete the CHANGELOG.md\n- [ ] Update the package.json\n  - Find and replace the old package name with the new package name\n  - Change dependencies (keep tslib)\n  - Reset version number to 1.0.0 (this is important)\n- [ ] Delete lib and node_modules inside the new component folder\n- [ ] Replace the copied component in src with your component\n- [ ] Add a path to your component in the root level tsconfig.json\n- [ ] Run npm start (npm install prior if you haven't ran it already)\n\n### Create the leavittbook story\n\n- [ ] Copy an existing component story leavittbook/demos/titanium-chip\n- [ ] Rename all folders and files replacing the old component name with the new one\n- [ ] find and replace old component name with new in the following files\n  - index.html\n  - project.json\n  - {componentname}-demo.ts (find and replace will miss a few places here)\n  - {componentname}-playground.ts\n- [ ] Update my-app inside of leavittbook\n  - Add a PageJS route for your story\n  - Add a link in the menu for your story\n  - Add your component tags in the main content\n- [ ] Write your stories in the playground.ts file\n\n### Important\n\n- [ ] Publish to NPM after the PR has been approved but before it gets merged\n\n### Publishing to NPM\n\n- [ ] Create NPM account and get invited to the leavittsoftware org\n- [ ] Run the login command - `npm login`\n- [ ] Change directory to the new package (Verify the version is 1.0.0 in package.json)\n- [ ] Run the publish command - `npm publish --access=public`\n","funding_links":[],"categories":["Real World","Component Libraries"],"sub_categories":["Component Libraries"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FLeavittSoftware%2Ftitanium-elements","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FLeavittSoftware%2Ftitanium-elements","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FLeavittSoftware%2Ftitanium-elements/lists"}