Socket
Socket
Sign inDemoInstall

ngx-material-timepicker-datefns

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ngx-material-timepicker-datefns

Material design timepicker for angular with date-fns 2 under the hood


Version published
Weekly downloads
2
decreased by-50%
Maintainers
1
Weekly downloads
 
Created
Source

Angular Material Timepicker

Handy multifunctional material design timepicker for Angular 6.0+. Forked from original timepicker by Agranom. Original version used luxon under the hood. This version is usinig date-fns v2.

Demo

https://samvimes01.github.io/ngx-material-timepicker-datefns/

Getting started

Install timepicker through npm:

npm install --save ngx-material-timepicker-datefns

Next import the timepicker module into your app's module:

import {NgModule} from '@angular/core';
import {NgxMaterialTimepickerModule} from 'ngx-material-timepicker-datefns';

@NgModule({
  imports: [NgxMaterialTimepickerModule]
})
export class MyModule {}

Finally connect the timepicker to an input via a template property:

<input [ngxTimepicker]="picker">
<ngx-material-timepicker #picker></ngx-material-timepicker>

The timepicker opens once you click on the input

Documentation

API reference for Angular Material Timepicker

import {NgxMaterialTimepickerModule} from 'ngx-material-timepicker-datefns';
NgxTimepicker

Directive responsible for managing the timepicker popup and setting value to input

Selector: ngxTimepicker

Properties
NameDescription
@Input()
ngxTimepicker: NgxMaterialTimepickerComponentThe timepicker that this input is associated with.
@Input()
disabled: booleanWeather the timepicker popup should be disabled.
@Input()
value: stringSet a default value and time for a timepicker. The format of the time is in 12 hours notation 11:00 PM or in 24 hours notation 23:00. A Date string won't work.
@Input()
format: number12 or 24 . 12h/24h view for hour selection clock . 12 (AM/PM) format by default.
@Input()
min: string or DateSet min time for timepicker (11:15 pm )
@Input()
max: string or DateSet max time for timepicker (11:15 pm )
@Input()
disableClick: booleanSet true to disable opening timepicker by clicking on the input
NgxMaterialTimepickerComponent

Component responsible for visualisation the timepicker

Selector: ngx-material-timepicker

Properties
NameDescription
@Input()
cancelBtnTmpl: TemplateRef<Node>Set if you want to change cancel button to your custom one.
@Input()
confirmBtnTmpl: TemplateRef<Node>Set if you want to change confirm button to your custom one.
@Input()
editableHintTmpl: TemplateRef<Node>Set if you want to change dial hint to your custom one. Works only if enableKeyboardInput = true
@Input()
ESC: booleanDisable or enable closing timepicker by ESC.
@Input()
enableKeyboardInput: booleanTo disable or enable changing time through a keyboard on the timepicker dial without interaction with a clock face. Set false by default
@Input()
minutesGap: numberTo define a gap between minutes. Set 1 by default
@Input()
defaultTime: stringSet default time for a timepicker. 12:00 AM by default
@Input()
preventOverlayClick: booleanSet true to prevent closing the timepicker by overlay click. Uses false by default
@Input()
disableAnimation: booleanSet true to prevent opening and closing timepicker animation. Uses false by default
@Output()
timeSet: EventEmitter<string>Emits time when that was set.
@Output()
opened: EventEmitter<null>Emits after timepicker was opened.
@Output()
closed: EventEmitter<null>Emits after timepicker was closed.
@Output()
hourSelected: EventEmitter<number>Emits after hour was selected.
NgxTimepickerFieldComponent

The timepicker as a control.

Selector: ngx-timepicker-field

Properties
NameDescription
@Input()
disabled: booleanWhether the timepicker is disabled
@Input()
toggleIcon: TemplateRef<HTMLObjectElement>Provide custom svg icon for toggle button
@Input()
buttonAlign: 'right' or 'left'Positioning toggle button (right by default)
@Input()
clockTheme: NgxMaterialTimepickerThemeCustom css properties which will override timepicker clock
@Input()
controlOnly: booleanHide or display toggle button with the timepicker clock
@Input()
format: number12 or 24 . Set format for timepicker. 12 (AM/PM) format by default.
NgxMaterialTimepickerToggleComponent

Component responsible for opening the timepicker.

Selector: ngx-material-timepicker-toggle

Properties
NameDescription
@Input()
for: NgxMaterialTimepickerComponentTimepicker instance that the button will toggle
@Input()
disabled: booleanWhether the toggle button is disabled
NgxMaterialTimepickerToggleIconDirective

Can be used to override the icon of a NgxMaterialTimepickerToggleComponent.

Selector: [ngxMaterialTimepickerToggleIcon]

NgxMaterialTimepickerThemeDirective

Can be used to override styles of a NgxMaterialTimepicker.

Selector: ngx-material-timepicker[ngxMaterialTimepickerTheme]

Properties
NameDescription
@Input()
ngxMaterialTimepickerTheme: NgxMaterialTimepickerThemeCustom css properties which will override the defaults

Development

Prepare your environment

Install local dev dependencies: npm install while current directory is this repo.

Development server

Run npm start to start a development server on a port 4200.

Open http//:localhost:4200 on your browser.

Tests

Run npm test to run tests once or npm run test:watch to continually run tests.

License

MIT

Keywords

FAQs

Package last updated on 25 Aug 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc