Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

ngx-mat-timepicker

Package Overview
Dependencies
Maintainers
1
Versions
77
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ngx-mat-timepicker

ngx-mat-timepicker is an Angular material 9+ extension to add time pickers!

  • 10.0.3
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
19K
increased by5.88%
Maintainers
1
Weekly downloads
 
Created
Source

ngx-mat-timepicker

npm npm MIT licensed Build Status Size

A simple time picker module using Angular Material: it provides an Android style dialog for time selection and a handy input for time selection in Material style.

Why this project?

The original was nice, but for some reason it didn't adapt to your Material theme. So an extra config was necessary to have a nice integration in your app. This project automatically adapts to your Material theme, even if a custom one (so, for example, if you have a dark theme, you'll have a dark dialog!). By default it will use the primary color. You can choose the color scheme among the three ThemePalette items, natively provided by Material: primary, accent, warn.

Also a few components were unnecessary and not in material style, so I got rid of them and integrated Material components, such as mat-select and others.

Other general improvements

  • Improved clock hand alignments
  • Changed clock hand appearance for minutes which aren't multiple of 5 (as in Android timepicker)
  • Improved appearance of focused inputs, the toggle and increase/decrease arrows in timepicker-field
  • Improved header content disposition when 24h format is enabled
  • Used material buttons for dialog actions (CANCEL/OK)
  • Added leading zero for the hours in the dialog header (as in Android timepicker)
  • More consistent naming
  • Removed useless exports from NgxMatTimepickerModule

Compatibility

  • v9 < Angular/Material < v12

IMPORTANT Remember to include a Material Theme in your project, example:

@import "~@angular/material/prebuilt-themes/indigo-pink.css";

Refer to the Angular Material website for theming options.

Table of contents

Getting started

Install timepicker through npm:

npm i --save ngx-mat-timepicker

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

import {NgModule} from '@angular/core';
import {NgxMatTimepickerModule} from 'ngx-mat-timepicker';

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

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

<input [ngxMatTimepicker]="picker">
<ngx-mat-timepicker #picker></ngx-mat-timepicker>

The timepicker opens once you click on the input

Internationalization

Timepicker supports locales in format BCP 47. It has en-US locale by default.

To override default locale:

import {NgModule} from '@angular/core';
import {NgxMatTimepickerModule} from 'ngx-mat-timepicker';

@NgModule({
  imports: [NgxMatTimepickerModule.setLocale('en-GB')]
})
export class MyModule {}

Documentation

API reference for Angular Material Timepicker
import {NgxMatTimepickerModule} from 'ngx-mat-timepicker';
NgxMatTimepicker

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

Selector: ngxMatTimepicker

Properties

NameDescription
@Input()
ngxMatTimepicker: NgxMatTimepickerComponentThe timepicker that this input is associated with.
@Input()
color: ThemePaletteThe material palette to use.
@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 DateTimeSet min time for timepicker (11:15 pm )
@Input()
max: string or DateTimeSet max time for timepicker (11:15 pm )
@Input()
disableClick: booleanSet true to disable opening timepicker by clicking on the input
NgxMatTimepickerComponent

Component responsible for visualisation the timepicker

Selector: ngx-mat-timepicker

Properties

NameDescription
@Input()
cancelBtnTmpl: TemplateRefSet if you want to change cancel button to your custom one.
@Input()
confirmBtnTmpl: TemplateRefSet if you want to change confirm button to your custom one.
@Input()
editableHintTmpl: TemplateRefSet 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
@Input()
hoursOnly: booleanSet true to prevent switching to minutes automatically once hour is selected. Uses false by default
@Input()
theme: NgxMatTimepickerThemeCustom css properties which will override the defaults
@Input()
timepickerClass: stringTo provide a custom css class for the timepicker
@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.
@Output()
timeChanged: EventEmitter<string>Emits once time was changed.
NgxMatTimepickerFieldComponent

The timepicker as a control.

Selector: ngx-mat-timepicker-field

Properties

NameDescription
@Input()
disabled: booleanWhether the timepicker is disabled
@Input()
floatLabel: 'never' or 'always' or 'auto'Whether the labels of the fields should float, default to never
@Input()
toggleIcon: TemplateRef<HTMLObjectElement>Provide custom svg icon for toggle button
@Input()
buttonAlign: 'right' or 'left'Positioning toggle button (right by default)
@Input()
clockTheme: NgxMatTimepickerThemeCustom 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.
@Input()
cancelBtnTmpl: TemplateRef<Node>Set if you want to change cancel button for timepicker to your custom one.
@Input()
confirmBtnTmpl: TemplateRef<Node>Set if you want to change confirm button for timepicker to your custom one.
@Input()
min: string or DateTimeSet min time for timepicker (11:15 pm )
@Input()
max: string or DateTimeSet max time for timepicker (11:15 pm )
@Output()
timeChanged: EventEmitter<string>Emit a new time once it is changed.
NgxMatTimepickerToggleComponent

Component responsible for opening the timepicker.

Selector: ngx-mat-timepicker-toggle

Properties

NameDescription
@Input()
for: NgxMatTimepickerComponentTimepicker instance that the button will toggle
@Input()
disabled: booleanWhether the toggle button is disabled
NgxMatTimepickerToggleIconDirective

Can be used to override the icon of a NgxMatTimepickerToggleComponent.

Selector: [ngxMatTimepickerToggleIcon]

Properties

NameDescription
@Input()
ngxMatTimepickerTheme: NgxMatTimepickerThemeCustom css properties which will override the defaults

Demo

Demo

Contribute

Hell ya!!!

  $ npm install
  $ npm run start  //run example

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

License

This project is licensed under the MIT License - see the LICENSE file for details

Thanks to

Agranom for setting up the original repo.

Keywords

FAQs

Package last updated on 12 Apr 2021

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