ngx-mat-tui-calendar 0.0.10 → 0.0.14
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 +115 -9
- package/bundles/ngx-mat-tui-calendar.umd.js +23 -5
- package/bundles/ngx-mat-tui-calendar.umd.js.map +1 -1
- package/esm2015/lib/ngx-mat-tui-calendar-wrapper/ngx-mat-tui-calendar-wrapper.component.js +18 -0
- package/esm2015/lib/ngx-mat-tui-calendar.component.js +4 -3
- package/esm2015/lib/ngx-mat-tui-calendar.module.js +5 -4
- package/fesm2015/ngx-mat-tui-calendar.js +21 -5
- package/fesm2015/ngx-mat-tui-calendar.js.map +1 -1
- package/lib/ngx-mat-tui-calendar-wrapper/ngx-mat-tui-calendar-wrapper.component.d.ts +8 -0
- package/lib/ngx-mat-tui-calendar.module.d.ts +2 -1
- package/package.json +19 -3
package/README.md
CHANGED
@@ -1,23 +1,129 @@
|
|
1
|
-
# NgxMatTuiCalendar
|
2
1
|
|
3
|
-
|
2
|
+

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

|
9
|
+

|
10
|
+
|
11
|
+

|
12
|
+

|
13
|
+
|
14
|
+
# ngx-mat-tui-calendar
|
15
|
+
|
16
|
+
 `Work In Progress`
|
17
|
+
This project is an Angular, Material Design wrapper for the [Toast UI Calendar](https://github.com/nhn/tui.calendar).
|
18
|
+
* Material Design theming
|
19
|
+
* Material Design buttons and dialog
|
20
|
+
* Responsive to mobile devices
|
21
|
+
* Dark mode in progress...
|
22
|
+
|
23
|
+
This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 12.2.3.
|
24
|
+
|
25
|
+
Using Angular 12 which requires node ^v14.15 (npm ^v6.14)
|
26
|
+
|
27
|
+
# UI
|
28
|
+
## Month View
|
29
|
+
|
30
|
+
<img src="https://user-images.githubusercontent.com/11559541/141834376-3f815d1e-7e2b-4f2e-8540-f45303292cfb.png" width="70%" height="70%">
|
31
|
+
|
32
|
+
## Week View
|
33
|
+
<img src="https://user-images.githubusercontent.com/11559541/141834444-89f511c0-8ada-4269-8490-c2864f481bc7.png" width="70%" height="70%">
|
34
|
+
|
35
|
+
## Day View
|
36
|
+
<img src="https://user-images.githubusercontent.com/11559541/141834457-ec741af5-df67-4029-8830-c5b4fd356fff.png" width="70%" height="70%">
|
37
|
+
|
38
|
+
## Event Editing Dialog
|
39
|
+
<img src="https://user-images.githubusercontent.com/11559541/141834468-3b3a81be-c4f5-4d76-8f29-88c193e1adba.JPG" width="70%" height="70%">
|
40
|
+
|
41
|
+
# Usage
|
42
|
+
## Getting started
|
43
|
+
|
44
|
+
Install via npm:
|
45
|
+
```bash
|
46
|
+
npm i --save ngx-mat-tui-calendar
|
47
|
+
```
|
48
|
+
Next import the module into your app's ```app.module.ts```:
|
49
|
+
```typescript
|
50
|
+
import {NgxMatTuiCalendarModule} from 'ngx-mat-tui-calendar';
|
51
|
+
|
52
|
+
@NgModule({
|
53
|
+
imports: [NgxMatTuiCalendarModule]
|
54
|
+
})
|
55
|
+
|
56
|
+
```
|
57
|
+
|
58
|
+
Insert the following HTML into one of your app's template files
|
59
|
+
```angular2html
|
60
|
+
<mat-tui-calendar></mat-tui-calendar>
|
61
|
+
```
|
62
|
+
|
63
|
+
## Demo Project
|
64
|
+
|
65
|
+
## Stackblitz
|
66
|
+
|
67
|
+
# Documentation
|
68
|
+
|
69
|
+
## MatTuiCalendar
|
70
|
+
|
71
|
+
Directive responsible for managing the timepicker popup and setting value to input
|
72
|
+
|
73
|
+
Selector: `mat-tui-calendar`
|
74
|
+
|
75
|
+
```typescript
|
76
|
+
<mat-tui-calendar #tuiCalendar
|
77
|
+
(userCreatedSchedule)="onUserCreatedSchedule($event)"
|
78
|
+
(userUpdatedSchedule)="onUserUpdatedSchedule($event)"
|
79
|
+
(userDeletedSchedule)="onUserDeletedSchedule($event)"
|
80
|
+
[options]="options"
|
81
|
+
>
|
82
|
+
```
|
83
|
+
|
84
|
+
### Properties
|
85
|
+
|
86
|
+
| Name | Description |
|
87
|
+
|------|-------------|
|
88
|
+
| @Input()
|
89
|
+
ngxMatTimepicker: NgxMatTimepickerComponent | The timepicker that this input is associated with. |
|
90
|
+
| @Input()
|
91
|
+
color: ThemePalette | The material palette to use. |
|
92
|
+
| @Input()
|
93
|
+
disabled: boolean | Weather the timepicker popup should be disabled. |
|
94
|
+
| @Input()
|
95
|
+
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. |
|
96
|
+
| @Input()
|
97
|
+
format: number | `12` or `24` . 12h/24h view for hour selection clock . `12` (AM/PM) format by default. |
|
98
|
+
| @Input()
|
99
|
+
min: string or DateTime | Set min time for timepicker (`11:15 pm` ) |
|
100
|
+
| @Input()
|
101
|
+
max: string or DateTime | Set max time for timepicker (`11:15 pm` ) |
|
102
|
+
| @Input()
|
103
|
+
disableClick: boolean | Set `true` to disable opening timepicker by clicking on the input |
|
104
|
+
|
105
|
+
|
106
|
+
# Development
|
107
|
+
|
108
|
+
## Development server
|
109
|
+
|
110
|
+
Run `ng serve` for a dev server. Navigate to `http://localhost:4200/`. The app will automatically reload if you change any of the source files.
|
4
111
|
|
5
112
|
## Code scaffolding
|
6
113
|
|
7
|
-
Run `ng generate component component-name
|
8
|
-
> Note: Don't forget to add `--project ngx-mat-tui-calendar` or else it will be added to the default project in your `angular.json` file.
|
114
|
+
Run `ng generate component component-name` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module`.
|
9
115
|
|
10
116
|
## Build
|
11
117
|
|
12
|
-
Run `ng build
|
118
|
+
Run `ng build` to build the project. The build artifacts will be stored in the `dist/` directory.
|
13
119
|
|
14
|
-
##
|
120
|
+
## Running unit tests
|
15
121
|
|
16
|
-
|
122
|
+
Run `ng test` to execute the unit tests via [Karma](https://karma-runner.github.io).
|
17
123
|
|
18
|
-
## Running
|
124
|
+
## Running end-to-end tests
|
19
125
|
|
20
|
-
Run `ng
|
126
|
+
Run `ng e2e` to execute the end-to-end tests via a platform of your choice. To use this command, you need to first add a package that implements end-to-end testing capabilities.
|
21
127
|
|
22
128
|
## Further help
|
23
129
|
|
@@ -38,6 +38,24 @@
|
|
38
38
|
}]
|
39
39
|
}], ctorParameters: function () { return []; } });
|
40
40
|
|
41
|
+
var NgxMatTuiCalendarWrapperComponent = /** @class */ (function () {
|
42
|
+
function NgxMatTuiCalendarWrapperComponent() {
|
43
|
+
}
|
44
|
+
NgxMatTuiCalendarWrapperComponent.prototype.ngOnInit = function () {
|
45
|
+
};
|
46
|
+
return NgxMatTuiCalendarWrapperComponent;
|
47
|
+
}());
|
48
|
+
NgxMatTuiCalendarWrapperComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.13", ngImport: i0__namespace, type: NgxMatTuiCalendarWrapperComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
|
49
|
+
NgxMatTuiCalendarWrapperComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.13", type: NgxMatTuiCalendarWrapperComponent, selector: "ngx-mat-tui-calendar-wrapper", ngImport: i0__namespace, template: "<p>ngx-mat-tui-calendar-wrapper works!</p>\n<div id=\"calendar\"></div> <!-- TUI Calendar gets instatited here -->\n", styles: [".tui-full-calendar-week-container{min-height:auto}\n"] });
|
50
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.13", ngImport: i0__namespace, type: NgxMatTuiCalendarWrapperComponent, decorators: [{
|
51
|
+
type: i0.Component,
|
52
|
+
args: [{
|
53
|
+
selector: 'ngx-mat-tui-calendar-wrapper',
|
54
|
+
templateUrl: './ngx-mat-tui-calendar-wrapper.component.html',
|
55
|
+
styleUrls: ['./ngx-mat-tui-calendar-wrapper.component.scss']
|
56
|
+
}]
|
57
|
+
}], ctorParameters: function () { return []; } });
|
58
|
+
|
41
59
|
var NgxMatTuiCalendarComponent = /** @class */ (function () {
|
42
60
|
function NgxMatTuiCalendarComponent() {
|
43
61
|
}
|
@@ -46,31 +64,31 @@
|
|
46
64
|
return NgxMatTuiCalendarComponent;
|
47
65
|
}());
|
48
66
|
NgxMatTuiCalendarComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.13", ngImport: i0__namespace, type: NgxMatTuiCalendarComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
|
49
|
-
NgxMatTuiCalendarComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.13", type: NgxMatTuiCalendarComponent, selector: "ngx-mat-tui-calendar", ngImport: i0__namespace, template: "", styles: [""] });
|
67
|
+
NgxMatTuiCalendarComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.13", type: NgxMatTuiCalendarComponent, selector: "ngx-mat-tui-calendar", ngImport: i0__namespace, template: "<p>\r\n ngx-mat-tui-calendar v0.0.14 works! added tui-calendar\r\n</p>\r\n<ngx-mat-tui-calendar-wrapper></ngx-mat-tui-calendar-wrapper>", styles: [""], components: [{ type: NgxMatTuiCalendarWrapperComponent, selector: "ngx-mat-tui-calendar-wrapper" }] });
|
50
68
|
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.13", ngImport: i0__namespace, type: NgxMatTuiCalendarComponent, decorators: [{
|
51
69
|
type: i0.Component,
|
52
70
|
args: [{
|
53
71
|
selector: 'ngx-mat-tui-calendar',
|
54
72
|
templateUrl: './ngx-mat-tui-calendar.component.html',
|
55
|
-
styleUrls: ['./ngx-mat-tui-calendar.component.scss']
|
73
|
+
styleUrls: ['./ngx-mat-tui-calendar.component.scss']
|
56
74
|
}]
|
57
75
|
}], ctorParameters: function () { return []; } });
|
58
76
|
|
59
|
-
// import { NgxMatTuiCalendarWrapperComponent } from './ngx-mat-tui-calendar-wrapper/ngx-mat-tui-calendar-wrapper.component';
|
60
77
|
var NgxMatTuiCalendarModule = /** @class */ (function () {
|
61
78
|
function NgxMatTuiCalendarModule() {
|
62
79
|
}
|
63
80
|
return NgxMatTuiCalendarModule;
|
64
81
|
}());
|
65
82
|
NgxMatTuiCalendarModule.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.13", ngImport: i0__namespace, type: NgxMatTuiCalendarModule, deps: [], target: i0__namespace.ɵɵFactoryTarget.NgModule });
|
66
|
-
NgxMatTuiCalendarModule.ɵmod = i0__namespace.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.13", ngImport: i0__namespace, type: NgxMatTuiCalendarModule, declarations: [NgxMatTuiCalendarComponent
|
83
|
+
NgxMatTuiCalendarModule.ɵmod = i0__namespace.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.13", ngImport: i0__namespace, type: NgxMatTuiCalendarModule, declarations: [NgxMatTuiCalendarComponent,
|
84
|
+
NgxMatTuiCalendarWrapperComponent], exports: [NgxMatTuiCalendarComponent] });
|
67
85
|
NgxMatTuiCalendarModule.ɵinj = i0__namespace.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.13", ngImport: i0__namespace, type: NgxMatTuiCalendarModule, imports: [[]] });
|
68
86
|
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.13", ngImport: i0__namespace, type: NgxMatTuiCalendarModule, decorators: [{
|
69
87
|
type: i0.NgModule,
|
70
88
|
args: [{
|
71
89
|
declarations: [
|
72
90
|
NgxMatTuiCalendarComponent,
|
73
|
-
|
91
|
+
NgxMatTuiCalendarWrapperComponent,
|
74
92
|
],
|
75
93
|
imports: [],
|
76
94
|
exports: [
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"ngx-mat-tui-calendar.umd.js","sources":["../../../projects/ngx-mat-tui-calendar/src/lib/ngx-mat-tui-calendar.service.ts","../../../projects/ngx-mat-tui-calendar/src/lib/ngx-mat-tui-calendar.component.ts","../../../projects/ngx-mat-tui-calendar/src/lib/ngx-mat-tui-calendar.component.html","../../../projects/ngx-mat-tui-calendar/src/lib/ngx-mat-tui-calendar.module.ts","../../../projects/ngx-mat-tui-calendar/src/public-api.ts","../../../projects/ngx-mat-tui-calendar/src/ngx-mat-tui-calendar.ts"],"sourcesContent":["import { Injectable } from '@angular/core';\n\n@Injectable({\n providedIn: 'root'\n})\nexport class NgxMatTuiCalendarService {\n\n constructor() { }\n}\n","import { Component, OnInit } from '@angular/core';\n\n@Component({\n selector: 'ngx-mat-tui-calendar',\n templateUrl: './ngx-mat-tui-calendar.component.html',\n styleUrls: ['./ngx-mat-tui-calendar.component.scss'],\n})\nexport class NgxMatTuiCalendarComponent implements OnInit {\n\n constructor() { }\n\n ngOnInit(): void {\n }\n\n}\n","","import { NgModule } from '@angular/core';\nimport { NgxMatTuiCalendarComponent } from './ngx-mat-tui-calendar.component';\
|
1
|
+
{"version":3,"file":"ngx-mat-tui-calendar.umd.js","sources":["../../../projects/ngx-mat-tui-calendar/src/lib/ngx-mat-tui-calendar.service.ts","../../../projects/ngx-mat-tui-calendar/src/lib/ngx-mat-tui-calendar-wrapper/ngx-mat-tui-calendar-wrapper.component.ts","../../../projects/ngx-mat-tui-calendar/src/lib/ngx-mat-tui-calendar-wrapper/ngx-mat-tui-calendar-wrapper.component.html","../../../projects/ngx-mat-tui-calendar/src/lib/ngx-mat-tui-calendar.component.ts","../../../projects/ngx-mat-tui-calendar/src/lib/ngx-mat-tui-calendar.component.html","../../../projects/ngx-mat-tui-calendar/src/lib/ngx-mat-tui-calendar.module.ts","../../../projects/ngx-mat-tui-calendar/src/public-api.ts","../../../projects/ngx-mat-tui-calendar/src/ngx-mat-tui-calendar.ts"],"sourcesContent":["import { Injectable } from '@angular/core';\n\n@Injectable({\n providedIn: 'root'\n})\nexport class NgxMatTuiCalendarService {\n\n constructor() { }\n}\n","import { Component, OnInit } from '@angular/core';\n\n@Component({\n selector: 'ngx-mat-tui-calendar-wrapper',\n templateUrl: './ngx-mat-tui-calendar-wrapper.component.html',\n styleUrls: ['./ngx-mat-tui-calendar-wrapper.component.scss']\n})\nexport class NgxMatTuiCalendarWrapperComponent implements OnInit {\n\n constructor() { }\n\n ngOnInit(): void {\n }\n\n}\n","<p>ngx-mat-tui-calendar-wrapper works!</p>\n<div id=\"calendar\"></div> <!-- TUI Calendar gets instatited here -->\n","import { Component, OnInit } from '@angular/core';\r\n\r\n@Component({\r\n selector: 'ngx-mat-tui-calendar',\r\n templateUrl: './ngx-mat-tui-calendar.component.html',\r\n styleUrls: ['./ngx-mat-tui-calendar.component.scss']\r\n})\r\nexport class NgxMatTuiCalendarComponent implements OnInit {\r\n\r\n constructor() { }\r\n\r\n ngOnInit(): void {\r\n }\r\n\r\n}\r\n","<p>\r\n ngx-mat-tui-calendar v0.0.14 works! added tui-calendar\r\n</p>\r\n<ngx-mat-tui-calendar-wrapper></ngx-mat-tui-calendar-wrapper>","import { NgModule } from '@angular/core';\r\nimport { NgxMatTuiCalendarComponent } from './ngx-mat-tui-calendar.component';\nimport { NgxMatTuiCalendarWrapperComponent } from './ngx-mat-tui-calendar-wrapper/ngx-mat-tui-calendar-wrapper.component';\r\n\r\n@NgModule({\r\n declarations: [\r\n NgxMatTuiCalendarComponent,\r\n NgxMatTuiCalendarWrapperComponent,\r\n ],\r\n imports: [\r\n ],\r\n exports: [\r\n NgxMatTuiCalendarComponent,\r\n ],\r\n entryComponents: [\r\n NgxMatTuiCalendarComponent,\r\n ],\r\n})\r\nexport class NgxMatTuiCalendarModule { }\r\n","/*\n * Public API Surface of ngx-mat-tui-calendar\n */\n\nexport * from './lib/ngx-mat-tui-calendar.service';\nexport * from './lib/ngx-mat-tui-calendar.component';\nexport * from './lib/ngx-mat-tui-calendar.module';\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":["Injectable","Component","NgModule"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;QAOE;SAAiB;;;gJAFN,wBAAwB;oJAAxB,wBAAwB,cAFvB,MAAM;sHAEP,wBAAwB;sBAHpCA,aAAU;uBAAC;wBACV,UAAU,EAAE,MAAM;qBACnB;;;ICGD;QAEE;SAAiB;QAEjB,oDAAQ,GAAR;SACC;;;yJALU,iCAAiC;kIAAjC,iCAAiC,+ECP9C,uHAEA;sHDKa,iCAAiC;sBAL7CC,YAAS;uBAAC;wBACT,QAAQ,EAAE,8BAA8B;wBACxC,WAAW,EAAE,+CAA+C;wBAC5D,SAAS,EAAE,CAAC,+CAA+C,CAAC;qBAC7D;;;;QEGC;SAAiB;QAEjB,6CAAQ,GAAR;SACC;;;kJALU,0BAA0B;2HAA1B,0BAA0B,uECPvC,6IAG6D;sHDIhD,0BAA0B;sBALtCA,YAAS;uBAAC;wBACT,QAAQ,EAAE,sBAAsB;wBAChC,WAAW,EAAE,uCAAuC;wBACpD,SAAS,EAAE,CAAC,uCAAuC,CAAC;qBACrD;;;;QEYD;;;;+IAAa,uBAAuB;gJAAvB,uBAAuB,iBAZhC,0BAA0B;YAC1B,iCAAiC,aAKjC,0BAA0B;gJAMjB,uBAAuB,YATzB,EACR;sHAQU,uBAAuB;sBAdnCC,WAAQ;uBAAC;wBACR,YAAY,EAAE;4BACZ,0BAA0B;4BAC1B,iCAAiC;yBAClC;wBACD,OAAO,EAAE,EACR;wBACD,OAAO,EAAE;4BACP,0BAA0B;yBAC3B;wBACD,eAAe,EAAE;4BACf,0BAA0B;yBAC3B;qBACF;;;ICjBD;;;;ICAA;;;;;;;;;;;;;;"}
|
@@ -0,0 +1,18 @@
|
|
1
|
+
import { Component } from '@angular/core';
|
2
|
+
import * as i0 from "@angular/core";
|
3
|
+
export class NgxMatTuiCalendarWrapperComponent {
|
4
|
+
constructor() { }
|
5
|
+
ngOnInit() {
|
6
|
+
}
|
7
|
+
}
|
8
|
+
NgxMatTuiCalendarWrapperComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.13", ngImport: i0, type: NgxMatTuiCalendarWrapperComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
9
|
+
NgxMatTuiCalendarWrapperComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.13", type: NgxMatTuiCalendarWrapperComponent, selector: "ngx-mat-tui-calendar-wrapper", ngImport: i0, template: "<p>ngx-mat-tui-calendar-wrapper works!</p>\n<div id=\"calendar\"></div> <!-- TUI Calendar gets instatited here -->\n", styles: [".tui-full-calendar-week-container{min-height:auto}\n"] });
|
10
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.13", ngImport: i0, type: NgxMatTuiCalendarWrapperComponent, decorators: [{
|
11
|
+
type: Component,
|
12
|
+
args: [{
|
13
|
+
selector: 'ngx-mat-tui-calendar-wrapper',
|
14
|
+
templateUrl: './ngx-mat-tui-calendar-wrapper.component.html',
|
15
|
+
styleUrls: ['./ngx-mat-tui-calendar-wrapper.component.scss']
|
16
|
+
}]
|
17
|
+
}], ctorParameters: function () { return []; } });
|
18
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibmd4LW1hdC10dWktY2FsZW5kYXItd3JhcHBlci5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9uZ3gtbWF0LXR1aS1jYWxlbmRhci9zcmMvbGliL25neC1tYXQtdHVpLWNhbGVuZGFyLXdyYXBwZXIvbmd4LW1hdC10dWktY2FsZW5kYXItd3JhcHBlci5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy9uZ3gtbWF0LXR1aS1jYWxlbmRhci9zcmMvbGliL25neC1tYXQtdHVpLWNhbGVuZGFyLXdyYXBwZXIvbmd4LW1hdC10dWktY2FsZW5kYXItd3JhcHBlci5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFVLE1BQU0sZUFBZSxDQUFDOztBQU9sRCxNQUFNLE9BQU8saUNBQWlDO0lBRTVDLGdCQUFnQixDQUFDO0lBRWpCLFFBQVE7SUFDUixDQUFDOzsrSEFMVSxpQ0FBaUM7bUhBQWpDLGlDQUFpQyxvRUNQOUMsdUhBRUE7NEZES2EsaUNBQWlDO2tCQUw3QyxTQUFTO21CQUFDO29CQUNULFFBQVEsRUFBRSw4QkFBOEI7b0JBQ3hDLFdBQVcsRUFBRSwrQ0FBK0M7b0JBQzVELFNBQVMsRUFBRSxDQUFDLCtDQUErQyxDQUFDO2lCQUM3RCIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbXBvbmVudCwgT25Jbml0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ25neC1tYXQtdHVpLWNhbGVuZGFyLXdyYXBwZXInLFxuICB0ZW1wbGF0ZVVybDogJy4vbmd4LW1hdC10dWktY2FsZW5kYXItd3JhcHBlci5jb21wb25lbnQuaHRtbCcsXG4gIHN0eWxlVXJsczogWycuL25neC1tYXQtdHVpLWNhbGVuZGFyLXdyYXBwZXIuY29tcG9uZW50LnNjc3MnXVxufSlcbmV4cG9ydCBjbGFzcyBOZ3hNYXRUdWlDYWxlbmRhcldyYXBwZXJDb21wb25lbnQgaW1wbGVtZW50cyBPbkluaXQge1xuXG4gIGNvbnN0cnVjdG9yKCkgeyB9XG5cbiAgbmdPbkluaXQoKTogdm9pZCB7XG4gIH1cblxufVxuIiwiPHA+bmd4LW1hdC10dWktY2FsZW5kYXItd3JhcHBlciB3b3JrcyE8L3A+XG48ZGl2IGlkPVwiY2FsZW5kYXJcIj48L2Rpdj4gIDwhLS0gVFVJIENhbGVuZGFyIGdldHMgaW5zdGF0aXRlZCBoZXJlIC0tPlxuIl19
|
@@ -1,18 +1,19 @@
|
|
1
1
|
import { Component } from '@angular/core';
|
2
2
|
import * as i0 from "@angular/core";
|
3
|
+
import * as i1 from "./ngx-mat-tui-calendar-wrapper/ngx-mat-tui-calendar-wrapper.component";
|
3
4
|
export class NgxMatTuiCalendarComponent {
|
4
5
|
constructor() { }
|
5
6
|
ngOnInit() {
|
6
7
|
}
|
7
8
|
}
|
8
9
|
NgxMatTuiCalendarComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.13", ngImport: i0, type: NgxMatTuiCalendarComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
9
|
-
NgxMatTuiCalendarComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.13", type: NgxMatTuiCalendarComponent, selector: "ngx-mat-tui-calendar", ngImport: i0, template: "", styles: [""] });
|
10
|
+
NgxMatTuiCalendarComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.13", type: NgxMatTuiCalendarComponent, selector: "ngx-mat-tui-calendar", ngImport: i0, template: "<p>\r\n ngx-mat-tui-calendar v0.0.14 works! added tui-calendar\r\n</p>\r\n<ngx-mat-tui-calendar-wrapper></ngx-mat-tui-calendar-wrapper>", styles: [""], components: [{ type: i1.NgxMatTuiCalendarWrapperComponent, selector: "ngx-mat-tui-calendar-wrapper" }] });
|
10
11
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.13", ngImport: i0, type: NgxMatTuiCalendarComponent, decorators: [{
|
11
12
|
type: Component,
|
12
13
|
args: [{
|
13
14
|
selector: 'ngx-mat-tui-calendar',
|
14
15
|
templateUrl: './ngx-mat-tui-calendar.component.html',
|
15
|
-
styleUrls: ['./ngx-mat-tui-calendar.component.scss']
|
16
|
+
styleUrls: ['./ngx-mat-tui-calendar.component.scss']
|
16
17
|
}]
|
17
18
|
}], ctorParameters: function () { return []; } });
|
18
|
-
//# sourceMappingURL=data:application/json;base64,
|
19
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibmd4LW1hdC10dWktY2FsZW5kYXIuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vcHJvamVjdHMvbmd4LW1hdC10dWktY2FsZW5kYXIvc3JjL2xpYi9uZ3gtbWF0LXR1aS1jYWxlbmRhci5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi9wcm9qZWN0cy9uZ3gtbWF0LXR1aS1jYWxlbmRhci9zcmMvbGliL25neC1tYXQtdHVpLWNhbGVuZGFyLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQVUsTUFBTSxlQUFlLENBQUM7OztBQU9sRCxNQUFNLE9BQU8sMEJBQTBCO0lBRXJDLGdCQUFnQixDQUFDO0lBRWpCLFFBQVE7SUFDUixDQUFDOzt3SEFMVSwwQkFBMEI7NEdBQTFCLDBCQUEwQiw0RENQdkMsNklBRzZEOzRGREloRCwwQkFBMEI7a0JBTHRDLFNBQVM7bUJBQUM7b0JBQ1QsUUFBUSxFQUFFLHNCQUFzQjtvQkFDaEMsV0FBVyxFQUFFLHVDQUF1QztvQkFDcEQsU0FBUyxFQUFFLENBQUMsdUNBQXVDLENBQUM7aUJBQ3JEIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tcG9uZW50LCBPbkluaXQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcclxuXHJcbkBDb21wb25lbnQoe1xyXG4gIHNlbGVjdG9yOiAnbmd4LW1hdC10dWktY2FsZW5kYXInLFxyXG4gIHRlbXBsYXRlVXJsOiAnLi9uZ3gtbWF0LXR1aS1jYWxlbmRhci5jb21wb25lbnQuaHRtbCcsXHJcbiAgc3R5bGVVcmxzOiBbJy4vbmd4LW1hdC10dWktY2FsZW5kYXIuY29tcG9uZW50LnNjc3MnXVxyXG59KVxyXG5leHBvcnQgY2xhc3MgTmd4TWF0VHVpQ2FsZW5kYXJDb21wb25lbnQgaW1wbGVtZW50cyBPbkluaXQge1xyXG5cclxuICBjb25zdHJ1Y3RvcigpIHsgfVxyXG5cclxuICBuZ09uSW5pdCgpOiB2b2lkIHtcclxuICB9XHJcblxyXG59XHJcbiIsIjxwPlxyXG4gICAgbmd4LW1hdC10dWktY2FsZW5kYXIgdjAuMC4xNCB3b3JrcyEgIGFkZGVkIHR1aS1jYWxlbmRhclxyXG48L3A+XHJcbjxuZ3gtbWF0LXR1aS1jYWxlbmRhci13cmFwcGVyPjwvbmd4LW1hdC10dWktY2FsZW5kYXItd3JhcHBlcj4iXX0=
|
@@ -1,18 +1,19 @@
|
|
1
1
|
import { NgModule } from '@angular/core';
|
2
2
|
import { NgxMatTuiCalendarComponent } from './ngx-mat-tui-calendar.component';
|
3
|
+
import { NgxMatTuiCalendarWrapperComponent } from './ngx-mat-tui-calendar-wrapper/ngx-mat-tui-calendar-wrapper.component';
|
3
4
|
import * as i0 from "@angular/core";
|
4
|
-
// import { NgxMatTuiCalendarWrapperComponent } from './ngx-mat-tui-calendar-wrapper/ngx-mat-tui-calendar-wrapper.component';
|
5
5
|
export class NgxMatTuiCalendarModule {
|
6
6
|
}
|
7
7
|
NgxMatTuiCalendarModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.13", ngImport: i0, type: NgxMatTuiCalendarModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
8
|
-
NgxMatTuiCalendarModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.13", ngImport: i0, type: NgxMatTuiCalendarModule, declarations: [NgxMatTuiCalendarComponent
|
8
|
+
NgxMatTuiCalendarModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.13", ngImport: i0, type: NgxMatTuiCalendarModule, declarations: [NgxMatTuiCalendarComponent,
|
9
|
+
NgxMatTuiCalendarWrapperComponent], exports: [NgxMatTuiCalendarComponent] });
|
9
10
|
NgxMatTuiCalendarModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.13", ngImport: i0, type: NgxMatTuiCalendarModule, imports: [[]] });
|
10
11
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.13", ngImport: i0, type: NgxMatTuiCalendarModule, decorators: [{
|
11
12
|
type: NgModule,
|
12
13
|
args: [{
|
13
14
|
declarations: [
|
14
15
|
NgxMatTuiCalendarComponent,
|
15
|
-
|
16
|
+
NgxMatTuiCalendarWrapperComponent,
|
16
17
|
],
|
17
18
|
imports: [],
|
18
19
|
exports: [
|
@@ -23,4 +24,4 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.13", ngImpo
|
|
23
24
|
],
|
24
25
|
}]
|
25
26
|
}] });
|
26
|
-
//# sourceMappingURL=data:application/json;base64,
|
27
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoibmd4LW1hdC10dWktY2FsZW5kYXIubW9kdWxlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vcHJvamVjdHMvbmd4LW1hdC10dWktY2FsZW5kYXIvc3JjL2xpYi9uZ3gtbWF0LXR1aS1jYWxlbmRhci5tb2R1bGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFFBQVEsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUN6QyxPQUFPLEVBQUUsMEJBQTBCLEVBQUUsTUFBTSxrQ0FBa0MsQ0FBQztBQUM5RSxPQUFPLEVBQUUsaUNBQWlDLEVBQUUsTUFBTSx1RUFBdUUsQ0FBQzs7QUFnQjFILE1BQU0sT0FBTyx1QkFBdUI7O3FIQUF2Qix1QkFBdUI7c0hBQXZCLHVCQUF1QixpQkFaaEMsMEJBQTBCO1FBQzFCLGlDQUFpQyxhQUtqQywwQkFBMEI7c0hBTWpCLHVCQUF1QixZQVR6QixFQUNSOzRGQVFVLHVCQUF1QjtrQkFkbkMsUUFBUTttQkFBQztvQkFDUixZQUFZLEVBQUU7d0JBQ1osMEJBQTBCO3dCQUMxQixpQ0FBaUM7cUJBQ2xDO29CQUNELE9BQU8sRUFBRSxFQUNSO29CQUNELE9BQU8sRUFBRTt3QkFDUCwwQkFBMEI7cUJBQzNCO29CQUNELGVBQWUsRUFBRTt3QkFDZiwwQkFBMEI7cUJBQzNCO2lCQUNGIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgTmdNb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcclxuaW1wb3J0IHsgTmd4TWF0VHVpQ2FsZW5kYXJDb21wb25lbnQgfSBmcm9tICcuL25neC1tYXQtdHVpLWNhbGVuZGFyLmNvbXBvbmVudCc7XG5pbXBvcnQgeyBOZ3hNYXRUdWlDYWxlbmRhcldyYXBwZXJDb21wb25lbnQgfSBmcm9tICcuL25neC1tYXQtdHVpLWNhbGVuZGFyLXdyYXBwZXIvbmd4LW1hdC10dWktY2FsZW5kYXItd3JhcHBlci5jb21wb25lbnQnO1xyXG5cclxuQE5nTW9kdWxlKHtcclxuICBkZWNsYXJhdGlvbnM6IFtcclxuICAgIE5neE1hdFR1aUNhbGVuZGFyQ29tcG9uZW50LFxyXG4gICAgTmd4TWF0VHVpQ2FsZW5kYXJXcmFwcGVyQ29tcG9uZW50LFxyXG4gIF0sXHJcbiAgaW1wb3J0czogW1xyXG4gIF0sXHJcbiAgZXhwb3J0czogW1xyXG4gICAgTmd4TWF0VHVpQ2FsZW5kYXJDb21wb25lbnQsXHJcbiAgXSxcclxuICBlbnRyeUNvbXBvbmVudHM6IFtcclxuICAgIE5neE1hdFR1aUNhbGVuZGFyQ29tcG9uZW50LFxyXG4gIF0sXHJcbn0pXHJcbmV4cG9ydCBjbGFzcyBOZ3hNYXRUdWlDYWxlbmRhck1vZHVsZSB7IH1cclxuIl19
|
@@ -13,34 +13,50 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.13", ngImpo
|
|
13
13
|
}]
|
14
14
|
}], ctorParameters: function () { return []; } });
|
15
15
|
|
16
|
+
class NgxMatTuiCalendarWrapperComponent {
|
17
|
+
constructor() { }
|
18
|
+
ngOnInit() {
|
19
|
+
}
|
20
|
+
}
|
21
|
+
NgxMatTuiCalendarWrapperComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.13", ngImport: i0, type: NgxMatTuiCalendarWrapperComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
22
|
+
NgxMatTuiCalendarWrapperComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.13", type: NgxMatTuiCalendarWrapperComponent, selector: "ngx-mat-tui-calendar-wrapper", ngImport: i0, template: "<p>ngx-mat-tui-calendar-wrapper works!</p>\n<div id=\"calendar\"></div> <!-- TUI Calendar gets instatited here -->\n", styles: [".tui-full-calendar-week-container{min-height:auto}\n"] });
|
23
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.13", ngImport: i0, type: NgxMatTuiCalendarWrapperComponent, decorators: [{
|
24
|
+
type: Component,
|
25
|
+
args: [{
|
26
|
+
selector: 'ngx-mat-tui-calendar-wrapper',
|
27
|
+
templateUrl: './ngx-mat-tui-calendar-wrapper.component.html',
|
28
|
+
styleUrls: ['./ngx-mat-tui-calendar-wrapper.component.scss']
|
29
|
+
}]
|
30
|
+
}], ctorParameters: function () { return []; } });
|
31
|
+
|
16
32
|
class NgxMatTuiCalendarComponent {
|
17
33
|
constructor() { }
|
18
34
|
ngOnInit() {
|
19
35
|
}
|
20
36
|
}
|
21
37
|
NgxMatTuiCalendarComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.13", ngImport: i0, type: NgxMatTuiCalendarComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
22
|
-
NgxMatTuiCalendarComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.13", type: NgxMatTuiCalendarComponent, selector: "ngx-mat-tui-calendar", ngImport: i0, template: "", styles: [""] });
|
38
|
+
NgxMatTuiCalendarComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.13", type: NgxMatTuiCalendarComponent, selector: "ngx-mat-tui-calendar", ngImport: i0, template: "<p>\r\n ngx-mat-tui-calendar v0.0.14 works! added tui-calendar\r\n</p>\r\n<ngx-mat-tui-calendar-wrapper></ngx-mat-tui-calendar-wrapper>", styles: [""], components: [{ type: NgxMatTuiCalendarWrapperComponent, selector: "ngx-mat-tui-calendar-wrapper" }] });
|
23
39
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.13", ngImport: i0, type: NgxMatTuiCalendarComponent, decorators: [{
|
24
40
|
type: Component,
|
25
41
|
args: [{
|
26
42
|
selector: 'ngx-mat-tui-calendar',
|
27
43
|
templateUrl: './ngx-mat-tui-calendar.component.html',
|
28
|
-
styleUrls: ['./ngx-mat-tui-calendar.component.scss']
|
44
|
+
styleUrls: ['./ngx-mat-tui-calendar.component.scss']
|
29
45
|
}]
|
30
46
|
}], ctorParameters: function () { return []; } });
|
31
47
|
|
32
|
-
// import { NgxMatTuiCalendarWrapperComponent } from './ngx-mat-tui-calendar-wrapper/ngx-mat-tui-calendar-wrapper.component';
|
33
48
|
class NgxMatTuiCalendarModule {
|
34
49
|
}
|
35
50
|
NgxMatTuiCalendarModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.13", ngImport: i0, type: NgxMatTuiCalendarModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
36
|
-
NgxMatTuiCalendarModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.13", ngImport: i0, type: NgxMatTuiCalendarModule, declarations: [NgxMatTuiCalendarComponent
|
51
|
+
NgxMatTuiCalendarModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.13", ngImport: i0, type: NgxMatTuiCalendarModule, declarations: [NgxMatTuiCalendarComponent,
|
52
|
+
NgxMatTuiCalendarWrapperComponent], exports: [NgxMatTuiCalendarComponent] });
|
37
53
|
NgxMatTuiCalendarModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.13", ngImport: i0, type: NgxMatTuiCalendarModule, imports: [[]] });
|
38
54
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.13", ngImport: i0, type: NgxMatTuiCalendarModule, decorators: [{
|
39
55
|
type: NgModule,
|
40
56
|
args: [{
|
41
57
|
declarations: [
|
42
58
|
NgxMatTuiCalendarComponent,
|
43
|
-
|
59
|
+
NgxMatTuiCalendarWrapperComponent,
|
44
60
|
],
|
45
61
|
imports: [],
|
46
62
|
exports: [
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"ngx-mat-tui-calendar.js","sources":["../../../projects/ngx-mat-tui-calendar/src/lib/ngx-mat-tui-calendar.service.ts","../../../projects/ngx-mat-tui-calendar/src/lib/ngx-mat-tui-calendar.component.ts","../../../projects/ngx-mat-tui-calendar/src/lib/ngx-mat-tui-calendar.component.html","../../../projects/ngx-mat-tui-calendar/src/lib/ngx-mat-tui-calendar.module.ts","../../../projects/ngx-mat-tui-calendar/src/public-api.ts","../../../projects/ngx-mat-tui-calendar/src/ngx-mat-tui-calendar.ts"],"sourcesContent":["import { Injectable } from '@angular/core';\n\n@Injectable({\n providedIn: 'root'\n})\nexport class NgxMatTuiCalendarService {\n\n constructor() { }\n}\n","import { Component, OnInit } from '@angular/core';\n\n@Component({\n selector: 'ngx-mat-tui-calendar',\n templateUrl: './ngx-mat-tui-calendar.component.html',\n styleUrls: ['./ngx-mat-tui-calendar.component.scss'],\n})\nexport class NgxMatTuiCalendarComponent implements OnInit {\n\n constructor() { }\n\n ngOnInit(): void {\n }\n\n}\n","","import { NgModule } from '@angular/core';\nimport { NgxMatTuiCalendarComponent } from './ngx-mat-tui-calendar.component';\
|
1
|
+
{"version":3,"file":"ngx-mat-tui-calendar.js","sources":["../../../projects/ngx-mat-tui-calendar/src/lib/ngx-mat-tui-calendar.service.ts","../../../projects/ngx-mat-tui-calendar/src/lib/ngx-mat-tui-calendar-wrapper/ngx-mat-tui-calendar-wrapper.component.ts","../../../projects/ngx-mat-tui-calendar/src/lib/ngx-mat-tui-calendar-wrapper/ngx-mat-tui-calendar-wrapper.component.html","../../../projects/ngx-mat-tui-calendar/src/lib/ngx-mat-tui-calendar.component.ts","../../../projects/ngx-mat-tui-calendar/src/lib/ngx-mat-tui-calendar.component.html","../../../projects/ngx-mat-tui-calendar/src/lib/ngx-mat-tui-calendar.module.ts","../../../projects/ngx-mat-tui-calendar/src/public-api.ts","../../../projects/ngx-mat-tui-calendar/src/ngx-mat-tui-calendar.ts"],"sourcesContent":["import { Injectable } from '@angular/core';\n\n@Injectable({\n providedIn: 'root'\n})\nexport class NgxMatTuiCalendarService {\n\n constructor() { }\n}\n","import { Component, OnInit } from '@angular/core';\n\n@Component({\n selector: 'ngx-mat-tui-calendar-wrapper',\n templateUrl: './ngx-mat-tui-calendar-wrapper.component.html',\n styleUrls: ['./ngx-mat-tui-calendar-wrapper.component.scss']\n})\nexport class NgxMatTuiCalendarWrapperComponent implements OnInit {\n\n constructor() { }\n\n ngOnInit(): void {\n }\n\n}\n","<p>ngx-mat-tui-calendar-wrapper works!</p>\n<div id=\"calendar\"></div> <!-- TUI Calendar gets instatited here -->\n","import { Component, OnInit } from '@angular/core';\r\n\r\n@Component({\r\n selector: 'ngx-mat-tui-calendar',\r\n templateUrl: './ngx-mat-tui-calendar.component.html',\r\n styleUrls: ['./ngx-mat-tui-calendar.component.scss']\r\n})\r\nexport class NgxMatTuiCalendarComponent implements OnInit {\r\n\r\n constructor() { }\r\n\r\n ngOnInit(): void {\r\n }\r\n\r\n}\r\n","<p>\r\n ngx-mat-tui-calendar v0.0.14 works! added tui-calendar\r\n</p>\r\n<ngx-mat-tui-calendar-wrapper></ngx-mat-tui-calendar-wrapper>","import { NgModule } from '@angular/core';\r\nimport { NgxMatTuiCalendarComponent } from './ngx-mat-tui-calendar.component';\nimport { NgxMatTuiCalendarWrapperComponent } from './ngx-mat-tui-calendar-wrapper/ngx-mat-tui-calendar-wrapper.component';\r\n\r\n@NgModule({\r\n declarations: [\r\n NgxMatTuiCalendarComponent,\r\n NgxMatTuiCalendarWrapperComponent,\r\n ],\r\n imports: [\r\n ],\r\n exports: [\r\n NgxMatTuiCalendarComponent,\r\n ],\r\n entryComponents: [\r\n NgxMatTuiCalendarComponent,\r\n ],\r\n})\r\nexport class NgxMatTuiCalendarModule { }\r\n","/*\n * Public API Surface of ngx-mat-tui-calendar\n */\n\nexport * from './lib/ngx-mat-tui-calendar.service';\nexport * from './lib/ngx-mat-tui-calendar.component';\nexport * from './lib/ngx-mat-tui-calendar.module';\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":";;;MAKa,wBAAwB;IAEnC,iBAAiB;;sHAFN,wBAAwB;0HAAxB,wBAAwB,cAFvB,MAAM;4FAEP,wBAAwB;kBAHpC,UAAU;mBAAC;oBACV,UAAU,EAAE,MAAM;iBACnB;;;MCGY,iCAAiC;IAE5C,iBAAiB;IAEjB,QAAQ;KACP;;+HALU,iCAAiC;mHAAjC,iCAAiC,oECP9C,uHAEA;4FDKa,iCAAiC;kBAL7C,SAAS;mBAAC;oBACT,QAAQ,EAAE,8BAA8B;oBACxC,WAAW,EAAE,+CAA+C;oBAC5D,SAAS,EAAE,CAAC,+CAA+C,CAAC;iBAC7D;;;MECY,0BAA0B;IAErC,iBAAiB;IAEjB,QAAQ;KACP;;wHALU,0BAA0B;4GAA1B,0BAA0B,4DCPvC,6IAG6D;4FDIhD,0BAA0B;kBALtC,SAAS;mBAAC;oBACT,QAAQ,EAAE,sBAAsB;oBAChC,WAAW,EAAE,uCAAuC;oBACpD,SAAS,EAAE,CAAC,uCAAuC,CAAC;iBACrD;;;MEYY,uBAAuB;;qHAAvB,uBAAuB;sHAAvB,uBAAuB,iBAZhC,0BAA0B;QAC1B,iCAAiC,aAKjC,0BAA0B;sHAMjB,uBAAuB,YATzB,EACR;4FAQU,uBAAuB;kBAdnC,QAAQ;mBAAC;oBACR,YAAY,EAAE;wBACZ,0BAA0B;wBAC1B,iCAAiC;qBAClC;oBACD,OAAO,EAAE,EACR;oBACD,OAAO,EAAE;wBACP,0BAA0B;qBAC3B;oBACD,eAAe,EAAE;wBACf,0BAA0B;qBAC3B;iBACF;;;ACjBD;;;;ACAA;;;;;;"}
|
@@ -0,0 +1,8 @@
|
|
1
|
+
import { OnInit } from '@angular/core';
|
2
|
+
import * as i0 from "@angular/core";
|
3
|
+
export declare class NgxMatTuiCalendarWrapperComponent implements OnInit {
|
4
|
+
constructor();
|
5
|
+
ngOnInit(): void;
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<NgxMatTuiCalendarWrapperComponent, never>;
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NgxMatTuiCalendarWrapperComponent, "ngx-mat-tui-calendar-wrapper", never, {}, {}, never, never>;
|
8
|
+
}
|
@@ -1,7 +1,8 @@
|
|
1
1
|
import * as i0 from "@angular/core";
|
2
2
|
import * as i1 from "./ngx-mat-tui-calendar.component";
|
3
|
+
import * as i2 from "./ngx-mat-tui-calendar-wrapper/ngx-mat-tui-calendar-wrapper.component";
|
3
4
|
export declare class NgxMatTuiCalendarModule {
|
4
5
|
static ɵfac: i0.ɵɵFactoryDeclaration<NgxMatTuiCalendarModule, never>;
|
5
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<NgxMatTuiCalendarModule, [typeof i1.NgxMatTuiCalendarComponent], never, [typeof i1.NgxMatTuiCalendarComponent]>;
|
6
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<NgxMatTuiCalendarModule, [typeof i1.NgxMatTuiCalendarComponent, typeof i2.NgxMatTuiCalendarWrapperComponent], never, [typeof i1.NgxMatTuiCalendarComponent]>;
|
6
7
|
static ɵinj: i0.ɵɵInjectorDeclaration<NgxMatTuiCalendarModule>;
|
7
8
|
}
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "ngx-mat-tui-calendar",
|
3
|
-
"version": "0.0.
|
3
|
+
"version": "0.0.14",
|
4
4
|
"repository": {
|
5
5
|
"type": "git",
|
6
6
|
"url": "git+https://github.com/ron2015schmitt/ngx-mat-tui-calendar.git"
|
@@ -15,12 +15,28 @@
|
|
15
15
|
},
|
16
16
|
"homepage": "https://github.com/ron2015schmitt/ngx-mat-tui-calendar#readme",
|
17
17
|
"peerDependencies": {
|
18
|
-
"@angular/
|
19
|
-
"@angular/
|
18
|
+
"@angular/animations": "^12.2.12",
|
19
|
+
"@angular/common": "^12.2.12",
|
20
|
+
"@angular/compiler": "^12.2.12",
|
21
|
+
"@angular/core": "^12.2.12",
|
22
|
+
"@angular/flex-layout": "^12.0.0-beta",
|
23
|
+
"@angular/forms": "^12.2.12",
|
24
|
+
"@angular/material": "^12.2.12",
|
25
|
+
"@angular/material-moment-adapter": "^12.2.12",
|
26
|
+
"@angular/platform-browser": "^12.2.12",
|
27
|
+
"@angular/platform-browser-dynamic": "^12.2.12",
|
28
|
+
"tui-calendar": "^1.15.1",
|
29
|
+
"tui-date-picker": "^4.3.1",
|
30
|
+
"tui-time-picker": "^2.1.4"
|
20
31
|
},
|
21
32
|
"dependencies": {
|
22
33
|
"tslib": "^2.3.0"
|
23
34
|
},
|
35
|
+
"browser": {
|
36
|
+
"fs": false,
|
37
|
+
"path": false,
|
38
|
+
"os": false
|
39
|
+
},
|
24
40
|
"main": "bundles/ngx-mat-tui-calendar.umd.js",
|
25
41
|
"module": "fesm2015/ngx-mat-tui-calendar.js",
|
26
42
|
"es2015": "fesm2015/ngx-mat-tui-calendar.js",
|