13.0.2 • Published 2 months ago

@mat-datetimepicker/core v13.0.2

Weekly downloads
6,894
License
MIT
Repository
github
Last release
2 months ago

Material Datetimepicker for @angular/material

The example application is on GitHub Pages!

Build Latest Stable Version License NPM Downloads


The datetimepicker was initially taken from Promact/md2 and modified to use @angular/material. We have also added theming support.

Like the @angular/material datepicker it contains a native-datetime-adapter as well as a moment-datetime-adapter .

Contents

Usage

Installation

Install:

npm install --save @mat-datetimepicker/core

And for the moment adapter:

npm install --save @angular/material-moment-adapter mat-datetimepicker/moment

Setup

Basically the same way the @angular/material datepicker is configured and imported.

imports: [
  ...MatDatepickerModule,
  // use this if you want to use native javascript dates and INTL API if available
  // MatNativeDatetimeModule,
  MatMomentDatetimeModule,
  MatDatetimepickerModule,
];

@see src/app/app.module.ts

Using the component

<form [formGroup]="group">
  <mat-form-field>
    <mat-placeholder>Start DateTime</mat-placeholder>
    <mat-datetimepicker-toggle [for]="datetimePicker" matSuffix></mat-datetimepicker-toggle>
    <mat-datetimepicker #datetimePicker type="datetime" openOnFocus="true" timeInterval="5"> </mat-datetimepicker>
    <input matInput formControlName="start" [matDatetimepicker]="datetimePicker" required autocomplete="false" />
  </mat-form-field>
</form>

Date formatting

In order to change the default input/output formats, a custom instance of MAT_DATETIME_FORMATS needs to be provided in the global configuration.

Input/output formats can be changed separately for the existing datetime picker types date, month , datetimeand time.

Accessibility

You can use the following properties to provide values for ARIA- attributes:

PropertyDescriptionDefault
ariaNextMonthLabelaria-label for the Next button in the month mode"Next month"
ariaPrevMonthLabelaria-label for the Previous button in the month mode"Previous month"
ariaNextYearLabelaria-label for the Next button in the year mode"Next year"
ariaPrevYearLabelaria-label for the Previous button in the year mode"Previous year"

The component supports property bindings or pipes with the aria- values.

Native

Parsing does not work with the native adapter because the Intl.DateTimeFormat API does not provide that feature.

providers: [
  {
    provide: MAT_DATETIME_FORMATS,
    useValue: {
      parse: {},
      display: {
        dateInput: {
          year: 'numeric',
          month: '2-digit',
          day: '2-digit',
        },
        monthInput: {
          month: 'long',
        },
        datetimeInput: {
          year: 'numeric',
          month: '2-digit',
          day: '2-digit',
          hour: '2-digit',
          minute: '2-digit',
        },
        timeInput: {
          hour: '2-digit',
          minute: '2-digit',
        },
        monthYearLabel: {
          year: 'numeric',
          month: 'short',
        },
        dateA11yLabel: {
          year: 'numeric',
          month: 'long',
          day: 'numeric',
        },
        monthYearA11yLabel: {
          year: 'numeric',
          month: 'long',
        },
        popupHeaderDateLabel: {
          weekday: 'short',
          month: 'short',
          day: '2-digit',
        },
      },
    },
  },
];

@see defaults in native-datetime-formats.ts \ @see Intl.DateTimeFormat API documentation

Moment

providers: [
  {
    provide: MAT_DATETIME_FORMATS,
    useValue: {
      parse: {
        dateInput: 'L',
        monthInput: 'MMMM',
        timeInput: 'LT',
        datetimeInput: 'L LT',
      },
      display: {
        dateInput: 'L',
        monthInput: 'MMMM',
        datetimeInput: 'L LT',
        timeInput: 'LT',
        monthYearLabel: 'MMM YYYY',
        dateA11yLabel: 'LL',
        monthYearA11yLabel: 'MMMM YYYY',
        popupHeaderDateLabel: 'ddd, DD MMM',
      },
    },
  },
];

@see defaults in moment-datetime-formats.ts \ @see moment.js documentation

Theming

@import '@mat-datetimepicker/core/datetimepicker/datetimepicker-theme.scss';

// Using the $theme variable from the pre-built theme you can call the theming function
@include mat-datetimepicker-theme($theme);

@see src/styles.scss

Development

Run npm install in order to install all required dependencies and initialize the Git hooks. Further instructions are available in the DEVELOPMENT.md.

Make sure you read at least the "Committing" section before committing anything.

13.0.2

2 months ago

13.0.1

5 months ago

12.0.1

7 months ago

13.0.0

5 months ago

12.0.0

12 months ago

11.0.2

1 year ago

11.0.3

1 year ago

11.0.0

1 year ago

11.0.1

1 year ago

10.1.0

1 year ago

10.1.1

1 year ago

10.0.5

2 years ago

10.0.6

2 years ago

10.0.7

2 years ago

10.0.8

2 years ago

10.0.9

2 years ago

10.0.3

2 years ago

10.0.4

2 years ago

10.0.10

2 years ago

10.0.1

2 years ago

10.0.2

2 years ago

10.0.0

2 years ago

9.0.68

2 years ago

9.0.67

2 years ago

9.0.64

2 years ago

9.0.63

2 years ago

9.0.66

2 years ago

9.0.65

2 years ago

9.0.62

2 years ago

9.0.49

2 years ago

9.0.46

2 years ago

9.0.48

2 years ago

9.0.47

2 years ago

9.0.57

2 years ago

9.0.56

2 years ago

9.0.59

2 years ago

9.0.58

2 years ago

9.0.53

2 years ago

9.0.52

2 years ago

9.0.55

2 years ago

9.0.54

2 years ago

9.0.51

2 years ago

9.0.50

2 years ago

9.0.60

2 years ago

9.0.61

2 years ago

9.0.45

2 years ago

9.0.42

2 years ago

9.0.41

2 years ago

9.0.44

2 years ago

9.0.43

2 years ago

9.0.40

2 years ago

9.0.39

2 years ago

9.0.38

2 years ago

9.0.37

2 years ago

9.0.36

2 years ago

9.0.35

2 years ago

9.0.34

2 years ago

9.0.9

2 years ago

9.0.8

2 years ago

9.0.7

2 years ago

9.0.6

2 years ago

9.0.5

2 years ago

9.0.4

2 years ago

9.0.3

2 years ago

9.0.17

2 years ago

9.0.16

2 years ago

9.0.19

2 years ago

9.0.18

2 years ago

9.0.13

2 years ago

9.0.12

2 years ago

9.0.15

2 years ago

9.0.14

2 years ago

9.0.11

2 years ago

9.0.10

2 years ago

9.0.28

2 years ago

9.0.27

2 years ago

9.0.29

2 years ago

9.0.24

2 years ago

9.0.23

2 years ago

9.0.26

2 years ago

9.0.25

2 years ago

9.0.20

2 years ago

9.0.22

2 years ago

9.0.21

2 years ago

8.0.0

2 years ago

9.0.31

2 years ago

9.0.30

2 years ago

9.0.33

2 years ago

9.0.32

2 years ago

9.0.2

2 years ago

9.0.1

2 years ago

9.0.0

2 years ago

7.0.0

3 years ago

7.0.1

3 years ago

6.0.3

3 years ago

6.0.2

3 years ago

6.0.0

3 years ago

5.1.2

3 years ago

6.0.0-0

3 years ago

5.1.1

3 years ago

5.1.0

4 years ago

5.1.0-0

4 years ago

5.0.1

4 years ago

5.0.0

4 years ago

4.1.0

4 years ago

4.0.2

4 years ago

3.1.0

4 years ago

4.0.1

4 years ago

3.0.2

4 years ago

3.0.1

4 years ago

4.0.0

4 years ago

3.0.0

4 years ago

3.0.0-beta.0

5 years ago

2.0.1

6 years ago

2.0.1-beta.1

6 years ago

2.0.1-beta.0

6 years ago

2.0.0

6 years ago

1.0.5

6 years ago

1.0.4

6 years ago

1.0.3

6 years ago

1.0.2

6 years ago

1.0.1

6 years ago