bbOpeningHours
=

Displays the opening hours for a company, if any. 

Bindings
----------- 

| Name      | Type       |                                                 |  
| -------   | ---------- | ----------------------------------------------- | 
| company   | Object     | The company object. Needs to be a HAL Resource  |



Usage
---------

```html
<bb-opening-hours
  company="yourCompanyObject">
</bb-opening-hours>
```


Config
---------
| Key                                           | Type              | Default       |  Description                                                                                                                                       |  
| -----------                                   | --------------    | ------------- |  -------------------                                                                                                                               |
| `OpeningHours.display.enabled`                | `boolean`         | `true`        |  Defines whether or not the opening hours should be displayed.                                                                                     |    
| `OpeningHours.display.highlightCurrentDay`    | `boolean`         | `true`        |  Defines whether or not the current day is highlighted     (A `--is-today` modifier is added and the default style is `font-weight: bold`.         |   
| `OpeningHours.display.firstDay`               | `string`          | `Monday`      |  Defines the day the opening hours list starts with.  Accepted values are: "Monday", "Tuesday","Wednesday","Thursday","Friday","Saturday","Sunday" |    
| `OpeningHours.display.showClosedDays`         | `booolean`        | `true`        |  Defines whether or not to display the days when the store is closed   |    
 

Example:

```json
{
 "OpeningHours": {
   "display": {
     "enabled": true,
     "highlightCurrentDay": true,
     "firstDay": "Monday"
   }
 }
}
```

