ngx-mat-tui-calendar 0.0.13 → 12.0.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 +11 -6
- package/bundles/ngx-mat-tui-calendar.umd.js +1151 -14
- package/bundles/ngx-mat-tui-calendar.umd.js.map +1 -1
- package/esm2015/lib/calendar-editor-options.js +2 -0
- package/esm2015/lib/calendar-options.js +2 -0
- package/esm2015/lib/local-date.js +102 -0
- package/esm2015/lib/ngx-mat-tui-calendar-editor-dialog/ngx-mat-tui-calendar-editor-dialog.component.js +147 -0
- package/esm2015/lib/ngx-mat-tui-calendar-wrapper/ngx-mat-tui-calendar-wrapper.component.js +5 -4
- package/esm2015/lib/ngx-mat-tui-calendar.component.js +495 -8
- package/esm2015/lib/ngx-mat-tui-calendar.module.js +106 -4
- package/esm2015/public-api.js +4 -1
- package/fesm2015/ngx-mat-tui-calendar.js +835 -12
- package/fesm2015/ngx-mat-tui-calendar.js.map +1 -1
- package/lib/calendar-editor-options.d.ts +6 -0
- package/lib/calendar-options.d.ts +6 -0
- package/lib/local-date.d.ts +43 -0
- package/lib/ngx-mat-tui-calendar-editor-dialog/ngx-mat-tui-calendar-editor-dialog.component.d.ts +35 -0
- package/lib/ngx-mat-tui-calendar.component.d.ts +71 -4
- package/lib/ngx-mat-tui-calendar.module.d.ts +23 -1
- package/ngx-mat-tui-calendar.theme.scss +9 -0
- package/package.json +55 -16
- package/public-api.d.ts +3 -0
- package/src/lib/ngx-mat-tui-calendar-editor-dialog/ngx-mat-tui-calendar-editor-dialog.component.theme.scss +75 -0
- package/src/lib/ngx-mat-tui-calendar-wrapper/ngx-mat-tui-calendar-wrapper.component.theme.scss +38 -0
- package/src/lib/ngx-mat-tui-calendar.component.theme.scss +112 -0
package/README.md
CHANGED
@@ -1,20 +1,20 @@
|
|
1
1
|
|
2
2
|

|
3
3
|
|
4
|
-
[](https://www.repostatus.org/#wip)
|
5
|
-
|
6
4
|
[](https://opensource.org/licenses/MIT)
|
5
|
+
[](https://www.repostatus.org/#active)
|
7
6
|
[](https://github.com/ron2015schmitt/ngx-mat-tui-calendar/stargazers)
|
8
7
|

|
9
8
|

|
10
9
|
|
11
|
-

|
10
|
+
[](https://www.npmjs.com/package/ngx-mat-tui-calendar)
|
12
11
|

|
13
12
|
|
14
13
|
# ngx-mat-tui-calendar
|
15
14
|
|
16
|
-
|
17
|
-
|
15
|
+
This project is an [Angular](https://angular.io/), [Material Design](https://material.angular.io/) wrapper for the [Toast UI Calendar](https://github.com/nhn/tui.calendar), published via [
|
16
|
+
](https://www.npmjs.com/package/ngx-mat-tui-calendar).
|
17
|
+
|
18
18
|
* Material Design theming
|
19
19
|
* Material Design buttons and dialog
|
20
20
|
* Responsive to mobile devices
|
@@ -22,7 +22,12 @@ This project is an Angular, Material Design wrapper for the [Toast UI Calendar](
|
|
22
22
|
|
23
23
|
This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 12.2.3.
|
24
24
|
|
25
|
-
|
25
|
+
Curently using Angular ^12.2, which requires node ^v14.15 (npm ^v6.14).
|
26
|
+
|
27
|
+
|
28
|
+
|
29
|
+
|
30
|
+
|
26
31
|
|
27
32
|
# UI
|
28
33
|
## Month View
|