ngx-mat-tui-calendar 0.0.6 → 0.0.7
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/package.json
CHANGED
@@ -1,20 +1,20 @@
|
|
1
1
|
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
2
2
|
|
3
|
-
import {
|
3
|
+
import { NgxMatTuiCalendarComponent } from './ngx-mat-tui-calendar.component';
|
4
4
|
|
5
|
-
describe('
|
6
|
-
let component:
|
7
|
-
let fixture: ComponentFixture<
|
5
|
+
describe('NgxMatTuiCalendarComponent', () => {
|
6
|
+
let component: NgxMatTuiCalendarComponent;
|
7
|
+
let fixture: ComponentFixture<NgxMatTuiCalendarComponent>;
|
8
8
|
|
9
9
|
beforeEach(async () => {
|
10
10
|
await TestBed.configureTestingModule({
|
11
|
-
declarations: [
|
11
|
+
declarations: [ NgxMatTuiCalendarComponent ]
|
12
12
|
})
|
13
13
|
.compileComponents();
|
14
14
|
});
|
15
15
|
|
16
16
|
beforeEach(() => {
|
17
|
-
fixture = TestBed.createComponent(
|
17
|
+
fixture = TestBed.createComponent(NgxMatTuiCalendarComponent);
|
18
18
|
component = fixture.componentInstance;
|
19
19
|
fixture.detectChanges();
|
20
20
|
});
|
@@ -1,16 +1,16 @@
|
|
1
1
|
import { Component, OnInit } from '@angular/core';
|
2
2
|
|
3
3
|
@Component({
|
4
|
-
selector: 'mat-tui-calendar',
|
4
|
+
selector: 'ngx-mat-tui-calendar',
|
5
5
|
template: `
|
6
6
|
<p>
|
7
|
-
mat-tui-calendar works!
|
7
|
+
ngx-mat-tui-calendar works!
|
8
8
|
</p>
|
9
9
|
`,
|
10
10
|
styles: [
|
11
11
|
]
|
12
12
|
})
|
13
|
-
export class
|
13
|
+
export class NgxMatTuiCalendarComponent implements OnInit {
|
14
14
|
|
15
15
|
constructor() { }
|
16
16
|
|
@@ -1,17 +1,17 @@
|
|
1
1
|
import { NgModule } from '@angular/core';
|
2
|
-
import {
|
2
|
+
import { NgxMatTuiCalendarComponent } from './ngx-mat-tui-calendar.component';
|
3
3
|
|
4
4
|
@NgModule({
|
5
5
|
declarations: [
|
6
|
-
|
6
|
+
NgxMatTuiCalendarComponent,
|
7
7
|
],
|
8
8
|
imports: [
|
9
9
|
],
|
10
10
|
exports: [
|
11
|
-
|
11
|
+
NgxMatTuiCalendarComponent,
|
12
12
|
],
|
13
13
|
entryComponents: [
|
14
|
-
|
14
|
+
NgxMatTuiCalendarComponent,
|
15
15
|
],
|
16
16
|
})
|
17
17
|
export class NgxMatTuiCalendarModule { }
|