https://github.com/alexsds/ng-business-hours
An Angular component that allows you to show and manage business hours
https://github.com/alexsds/ng-business-hours
angular angular-components angular-material business-hours component opening-hours ui working-hours
Last synced: 3 months ago
JSON representation
An Angular component that allows you to show and manage business hours
- Host: GitHub
- URL: https://github.com/alexsds/ng-business-hours
- Owner: alexsds
- License: mit
- Created: 2021-04-17T06:18:45.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2021-05-11T16:41:28.000Z (about 4 years ago)
- Last Synced: 2025-02-18T03:17:51.884Z (4 months ago)
- Topics: angular, angular-components, angular-material, business-hours, component, opening-hours, ui, working-hours
- Language: TypeScript
- Homepage:
- Size: 250 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# NgBusinessHours
[](https://badge.fury.io/js/ng-business-hours)
[](https://github.com/debashish2014/local-package-publisher/blob/master/LICENSE)An Angular component that allows you to show and manage business hours

## Demo
https://ng-business-hours.web.app/
## Installation
To add the business hours to your Angular project:
```
npm install --save ng-business-hours
```Once installed, add the business hours to your `app.module.ts`:
```typescript
import { NgBusinessHoursModule } from 'ng-business-hours';...
@NgModule({
...
imports: [
...
NgBusinessHoursModule,
...
],
...
})
export class AppModule {}
```## Sample usage
And in template file `app.component.html`:
```html```
## License
Licensed under [MIT](http://www.opensource.org/licenses/mit-license.php)
Copyright © 2021 [Alex Kovalenko](https://github.com/alexsds)