All Projects → tonysamperi → ngx-mat-timepicker

tonysamperi / ngx-mat-timepicker

Licence: MIT license
A true material timepicker

Programming Languages

typescript
32286 projects
HTML
75241 projects
SCSS
7915 projects
javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to ngx-mat-timepicker

popoPicker
popoPicker是一个移动端3D滚轮日期时间和单项的选择器,支持无限循环滚动,不依赖第三方库
Stars: ✭ 26 (-42.22%)
Mutual labels:  time, timepicker, picker
Angular Moment Picker
Angular Moment Picker is an AngularJS directive for date and time picker using Moment.js.
Stars: ✭ 536 (+1091.11%)
Mutual labels:  time, timepicker, picker
Vue Ctk Date Time Picker
VueJS component to select dates & time, including a range mode
Stars: ✭ 707 (+1471.11%)
Mutual labels:  time, timepicker, picker
vue-timeselector
🕒 Simply customizable powerful time picker for Vue.js
Stars: ✭ 41 (-8.89%)
Mutual labels:  time, timepicker, picker
clocklet
An opinionated clock-style vanilla-js timepicker.
Stars: ✭ 31 (-31.11%)
Mutual labels:  time, timepicker, picker
WatchKitTimePicker
⏱ A Time Picker data source for WatchKit that mirrors the behavior of UIDatePicker.
Stars: ✭ 37 (-17.78%)
Mutual labels:  time, picker
Md Date Time Picker
An implementation of Material Design Picker components in vanilla CSS, JS, and HTML
Stars: ✭ 272 (+504.44%)
Mutual labels:  time, picker
nativescript-datetimepicker
Plugin with date and time picking fields
Stars: ✭ 26 (-42.22%)
Mutual labels:  time, timepicker
React Timekeeper
Google Keep app inspired time picker for react 🕓
Stars: ✭ 651 (+1346.67%)
Mutual labels:  time, picker
Linear Time Picker
Gorgeous Android Time and Date picker library inspired by the Timely app
Stars: ✭ 613 (+1262.22%)
Mutual labels:  time, picker
Singledateandtimepicker
You can now select a date and a time with only one widget !
Stars: ✭ 921 (+1946.67%)
Mutual labels:  time, picker
Pickadate.js
The mobile-friendly, responsive, and lightweight jQuery date & time input picker.
Stars: ✭ 7,753 (+17128.89%)
Mutual labels:  time, picker
react-picky-date-time
A react component for date time picker. Online demo examples
Stars: ✭ 41 (-8.89%)
Mutual labels:  time, picker
HijriDatePicker
Material (Gregorian - Hijri) Date & Time Picker
Stars: ✭ 128 (+184.44%)
Mutual labels:  time, picker
React Picky Date Time
A react component for date time picker. Online demo examples
Stars: ✭ 31 (-31.11%)
Mutual labels:  time, picker
Date Picker
📅 Custom responsive date picker widget for Android, written in Kotlin.
Stars: ✭ 146 (+224.44%)
Mutual labels:  time, picker
React Native Modal Datetime Picker
A React-Native datetime-picker for Android and iOS
Stars: ✭ 2,412 (+5260%)
Mutual labels:  time, picker
silverware-calendar
SilverWare Calendar Module
Stars: ✭ 15 (-66.67%)
Mutual labels:  time, timepicker
Vue Datetime
Mobile friendly datetime picker for Vue. Supports date and datetime modes, i18n and more.
Stars: ✭ 928 (+1962.22%)
Mutual labels:  time, timepicker
Brpickerview
BRPickerView 封装的是iOS中常用的选择器组件,主要包括:日期选择器(支持年月日、年月等15种日期样式选择,支持设置星期、至今等)、地址选择器(支持省市区、省市、省三种地区选择)、自定义字符串选择器(支持单列、多列、二级联动、三级联动选择)。支持自定义主题样式,适配深色模式,支持将选择器组件添加到指定容器视图。
Stars: ✭ 2,149 (+4675.56%)
Mutual labels:  time, picker

ngx-mat-timepicker

npm npm MIT licensed Build state Size Rate this package

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.

VERY IMPORTANT READ THIS

I'm moving this to the top because it appears that people don't get to reading it in the contribute section.
FOR THIS LIBRARY PLEASE USE ISSUES ONLY FOR BUG REPORTING. DON'T OPEN ISSUES SUCH AS "I need upgrade for Angular 1745646456" especially if Angular 1745646456 was released a few days ago.
I guarantee that I manage the updates AS SOON AS POSSIBLE. But as you understand this is not a paying job, so you can't get Angular 1745646456 the day it gets released.
ISSUES NOT RESPECTING THIS WILL BE DELETED IMMEDIATELY WITHOUT ANY RESPONSE.
Thank you.

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 < v16

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

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

or

@use "@angular/material" as mat;  
  
@include mat.all-component-themes($my-theme);  

IMPORTANT ABOUT MATERIAL V15 This library uses the new set of Material components, so it doesn't support the legacy theming. Support for legacy components has been considered, but won't be developed. If you still need the legacy version you can contact me and we'll see what can be done, but a real effort will be put through only for a huge amount of requests.

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:  
```typescript  
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

Name Description
@Input()
ngxMatTimepicker: NgxMatTimepickerComponent The timepicker that this input is associated with.
@Input()
color: ThemePalette The material palette to use.
disabled: boolean Weather the timepicker popup should be disabled.
@Input()
value: string Set 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: number 12 or 24 . 12h/24h view for hour selection clock . 12 (AM/PM) format by default.
@Input()
min: string or DateTime Set min time for timepicker (11:15 pm )
@Input()
max: string or DateTime Set max time for timepicker (11:15 pm )
@Input()
disableClick: boolean Set true to disable opening timepicker by clicking on the input

NgxMatTimepickerLocaleService (NEW FROM v 13.2.0!!!)

This service allows to change the locale anytime.
You can inject this in your component or extend and provide your version, in order to provide your current locale to all the pickers!
At this time is semi-static, which means you can't change the locale for pickers that are already opened.
But new pickers will always get the updated locale.

NgxMatTimepickerComponent

Component responsible for visualisation the timepicker

Selector: ngx-mat-timepicker

Properties

Name Description
@Input()
cancelBtnTmpl: TemplateRef Set if you want to change cancel button to your custom one.
confirmBtnTmpl: TemplateRef Set if you want to change confirm button to your custom one.
@Input()
editableHintTmpl: TemplateRef Set if you want to change dial hint to your custom one. Works only if enableKeyboardInput = true
@Input()
ESC: boolean Disable or enable closing timepicker by ESC.
@Input()
enableKeyboardInput: boolean To disable or enable changing time through a keyboard on the timepicker dial without interaction with a clock face. Set false by default
@Input()
minutesGap: number To define a gap between minutes. Set 1 by default
@Input()
defaultTime: string Set default time for a timepicker. 12:00 AM by default
@Input()
preventOverlayClick: boolean Set true to prevent closing the timepicker by overlay click. Uses false by default
@Input()
disableAnimation: boolean Set true to prevent opening and closing timepicker animation. Uses false by default
@Input()
hoursOnly: boolean Set true to prevent switching to minutes automatically once hour is selected. Uses false by default
@Input()
theme: NgxMatTimepickerTheme Custom css properties which will override the defaults
@Input()
timepickerClass: string To 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

Name Description
@Input()
disabled: boolean Whether the timepicker is disabled
@Input()
floatLabel: 'never' or 'always' or 'auto' Whether the labels of the fields should float, default to never
toggleIcon: TemplateRef<HTMLObjectElement> Provide custom svg icon for toggle button
@Input()
buttonAlign: 'right' or 'left' Positioning toggle button (right by default)
@Input()
clockTheme: NgxMatTimepickerTheme Custom css properties which will override timepicker clock
@Input()
controlOnly: boolean Hide or display toggle button with the timepicker clock
@Input()
format: number 12 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.
confirmBtnTmpl: TemplateRef<Node> Set if you want to change confirm button for timepicker to your custom one.
@Input()
min: string or DateTime Set min time for timepicker (11:15 pm )
@Input()
max: string or DateTime Set 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

Name Description
@Input()
for: NgxMatTimepickerComponent Timepicker instance that the button will toggle
disabled: boolean Whether the toggle button is disabled

NgxMatTimepickerToggleIconDirective

Can be used to override the icon of a NgxMatTimepickerToggleComponent.

Selector: [ngxMatTimepickerToggleIcon]

Properties

Name Description
@Input()
ngxMatTimepickerTheme: NgxMatTimepickerTheme Custom css properties which will override the defaults

Demo

Demo

 $ npm install $ npm run start  //run example

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

Special thanks

Jetbrains is now supporting this library with an open-source license, which will allow a better code! 🎉

jetbrains-logo

License

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

Thanks to

LayZeeDK - For his great work on the unit tests and upgrades for v15 "legacy"

Agranom for setting up the original repo.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].