import { Component } from '@angular/core'; import { DEMOS } from './demos'; // webpack html imports let titleDoc = require('html-loader!markdown-loader!./docs/title.md'); @Component({ selector: 'timepicker-section', template: `

A lightweight & configurable timepicker directive

Contents

Usage

Examples

Timepicker

Meridian

Min - Max

Show seconds

Disabled

Custom steps

Custom validation

Dynamic

Configuring defaults

Mouse wheel and Arrow keys

API Reference

` }) export class TimepickerSectionComponent { public name: string = 'Timepicker'; public src: string = 'https://github.com/valor-software/ngx-bootstrap/tree/development/src/timepicker'; public demos: any = DEMOS; public titleDoc: string = titleDoc; }