{"id":13535563,"url":"https://github.com/bullhorn/novo-elements","last_synced_at":"2025-04-10T04:23:35.640Z","repository":{"id":37951916,"uuid":"56453136","full_name":"bullhorn/novo-elements","owner":"bullhorn","description":"UI Repository for Bullhorn's Novo Theme","archived":false,"fork":false,"pushed_at":"2024-05-22T15:23:06.000Z","size":276429,"stargazers_count":75,"open_issues_count":28,"forks_count":61,"subscribers_count":48,"default_branch":"next","last_synced_at":"2024-05-22T15:35:16.520Z","etag":null,"topics":["angular2","bullhorn","framework","ui-components"],"latest_commit_sha":null,"homepage":"http://bullhorn.github.io/novo-elements","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/bullhorn.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","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":"2016-04-17T19:00:11.000Z","updated_at":"2024-05-28T20:27:36.035Z","dependencies_parsed_at":"2023-12-20T10:08:01.272Z","dependency_job_id":"1ff8fddd-65c0-4569-9bce-d57b5a398020","html_url":"https://github.com/bullhorn/novo-elements","commit_stats":null,"previous_names":[],"tags_count":774,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bullhorn%2Fnovo-elements","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bullhorn%2Fnovo-elements/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bullhorn%2Fnovo-elements/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bullhorn%2Fnovo-elements/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bullhorn","download_url":"https://codeload.github.com/bullhorn/novo-elements/tar.gz/refs/heads/next","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248155737,"owners_count":21056697,"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":["angular2","bullhorn","framework","ui-components"],"created_at":"2024-08-01T08:00:58.468Z","updated_at":"2025-04-10T04:23:35.622Z","avatar_url":"https://github.com/bullhorn.png","language":"TypeScript","funding_links":[],"categories":["Uncategorized"],"sub_categories":["Uncategorized"],"readme":"# NOVO Elements [![npm version](https://badge.fury.io/js/novo-elements.svg)](http://badge.fury.io/js/novo-elements) [![Build Status](https://travis-ci.org/bullhorn/novo-elements.svg?branch=master)](https://travis-ci.org/bullhorn/novo-elements) [![Coverage Status](https://coveralls.io/repos/github/bullhorn/novo-elements/badge.svg?branch=master)](https://coveralls.io/github/bullhorn/novo-elements?branch=master)\n\n[![Gitter](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/bullhorn/Open-Source?utm_source=badge\u0026utm_medium=badge\u0026utm_campaign=pr-badge)\n[![Dependency Status](https://david-dm.org/bullhorn/novo-elements.svg)](https://david-dm.org/bullhorn/novo-elements)\n[![devDependency Status](https://david-dm.org/bullhorn/novo-elements/dev-status.svg)](https://david-dm.org/bullhorn/novo-elements#info=devDependencies)\n\n## Dependencies\n\n- [NodeJS v18.3+](https://nodejs.org/en/)\n\n## Quick Start\n\n    # Clone the project\n    git clone git@github.com:bullhorn/novo-elements.git\n\n    # Change directory\n    cd novo-elements\n\n    # Install\n    npm install\n\n    # Start (you will need two terminals)\n    npm run build (builds the library, alternatively you can use npm run build:watch for live-reload)\n    npm start (starts the demo)\n\n    # Access the Demo in your browser at\n    http://localhost:4200/\n\n## Integrating into a project\n\n    # Install the module from NPM\n    npm install --save novo-elements\n\nDepending on what system you are using (SystemJS, Webpack, etc..) the setup will vary.\n\nIf using SCSS/SASS you will need to include the following includes: `node_modules/novo-elements/lib`.\n\n## Building Examples\n\n\u003e All examples can be added to the appropriate directory in the `novo-examples` project. Each markdown file will be converted to a demo page and a route will automatically be added to the demo. You can import any example project by using the angular selector, or inject it using the `code-example` tag, ie. `\u003ccode-example example=\"demo-name\"\u003e\u003c/code-example\u003e`.\n\n    # Compile markdown, generate routes, and AOT build the project\n    npm run build:examples\n\n    # Automatically rebuild changes to the examples project\n    npm run build:examples:watch\n\n## Customizing Labels\n\nWith Novo Elements there are a few hard-coded labels throughout the library. To override these labels with your own, you will simply extend the `NovoLabelService` and override any labels that you wish.\n\nTo make Angular use this new class over the default one you can provide in the bootstrapping of your application as a provider.\n\n```ts\n{ provide: NovoLabelService, useClass: MyLabelService }\n```\n\nTo use the default labels, you will need to provide the `NOVO_ELEMENTS_LABELS_PROVIDERS` via\n\n```ts\nimport {NOVO_ELEMENTS_LABELS_PROVIDERS} from 'novo-elements';\nbootstrap(MyApp [..NOVO_ELEMENTS_LABELS_PROVIDERS]);\n```\n\n## Upgrading Novo Elements\n\n### To Version 6\n\n\u003e Note: Ensure your tsconfig.app.json `include` property references all the ts files the migrations should be run against.  You can add a glob then remove it to ensure your build system works the same as before.\n\n```\nnpm install --save timezone-support@2 novo-design-tokens@0 angular-imask@6 imask@6\nnpm install --save novo-elements@6\nng update novo-elements --migrate-only --from=0.0.0 --to=6.0.0 --force --allow-dirty  \n```\n\n\n## Contribute\n\nThere are many ways to **[contribute](https://github.com/bullhorn/novo-elements/blob/master/CONTRIBUTING.md)** to our OpenSource projects.\n\n- **[Submit bugs](https://github.com/bullhorn/novo-elements/issues)** and help us verify fixes as they are checked in.\n- Review **[source code changes](https://github.com/bullhorn/novo-elements/pulls)**.\n- **[Contribute bug fixes](https://github.com/bullhorn/novo-elements/blob/master/CONTRIBUTING.md)**.\n\n\u003e TL;DR: Fork this repository, make any required change and then submit a PR :)\n\n### Contributors\n\n\u003cobject type=\"image/svg+xml\" data=\"contributors.svg\"\u003e\n  \u003cimg src=\"contributors.svg\" /\u003e\n\u003c/object\u003e\n\n# License\n\nCopyright (c) forever [Bullhorn](http://www.bullhorn.com).\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbullhorn%2Fnovo-elements","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbullhorn%2Fnovo-elements","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbullhorn%2Fnovo-elements/lists"}