@dhutaryan/ngx-mat-timepicker 12.0.1 → 12.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -0
- package/bundles/dhutaryan-ngx-mat-timepicker.umd.js +547 -369
- package/bundles/dhutaryan-ngx-mat-timepicker.umd.js.map +1 -1
- package/esm2015/lib/clock-dials.js +24 -7
- package/esm2015/lib/minutes-clock-dial.js +15 -4
- package/esm2015/lib/orientation.js +2 -0
- package/esm2015/lib/time-face-base.js +25 -6
- package/esm2015/lib/time-inputs.js +35 -8
- package/esm2015/lib/time-period.js +2 -2
- package/esm2015/lib/timepicker-actions.js +11 -5
- package/esm2015/lib/timepicker-base.js +43 -3
- package/esm2015/lib/timepicker-content-layout.js +10 -2
- package/esm2015/lib/timepicker-content.js +21 -9
- package/esm2015/lib/timepicker-input.js +11 -2
- package/esm2015/lib/timepicker-intl.js +5 -1
- package/esm2015/lib/timepicker-toggle.js +12 -7
- package/esm2015/public-api.js +3 -1
- package/fesm2015/dhutaryan-ngx-mat-timepicker.js +404 -253
- package/fesm2015/dhutaryan-ngx-mat-timepicker.js.map +1 -1
- package/lib/clock-dials.d.ts +10 -4
- package/lib/minutes-clock-dial.d.ts +5 -1
- package/lib/orientation.d.ts +2 -0
- package/lib/time-face-base.d.ts +29 -2
- package/lib/time-inputs.d.ts +11 -4
- package/lib/timepicker-base.d.ts +21 -1
- package/lib/timepicker-content-layout.d.ts +4 -1
- package/lib/timepicker-content.d.ts +24 -5
- package/lib/timepicker-input.d.ts +3 -1
- package/lib/timepicker-intl.d.ts +4 -0
- package/lib/timepicker-toggle.d.ts +7 -3
- package/package.json +1 -1
- package/public-api.d.ts +2 -0
package/README.md
CHANGED
|
@@ -12,6 +12,10 @@ The timepicker module using Angular material.
|
|
|
12
12
|
| -------------- | ------------------- |
|
|
13
13
|
| 12.x.x | >=12.0.0 && <15.0.0 |
|
|
14
14
|
|
|
15
|
+
## Documentation
|
|
16
|
+
|
|
17
|
+
Check out the [demo](https://dhutaryan.github.io/ngx-mat-timepicker/) and [API](https://github.com/dhutaryan/ngx-mat-timepicker/wiki/API).
|
|
18
|
+
|
|
15
19
|
## Installation
|
|
16
20
|
|
|
17
21
|
You have to install the Angular Material and set it up. [Learn more about the setup](https://material.angular.io/guide/getting-started).
|