atr-components 0.0.4 → 0.0.5
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/atr-components.d.ts +0 -1
- package/lib/atr-test/atr-test/atr-test.component.css +0 -0
- package/lib/atr-test/atr-test/atr-test.component.html +1 -0
- package/lib/atr-test/atr-test/atr-test.component.spec.ts +25 -0
- package/lib/atr-test/atr-test/atr-test.component.ts +15 -0
- package/lib/atr-test/atr-test.module.ts +18 -0
- package/package.json +2 -2
- package/public-api.d.ts +1 -1
- package/lib/atr-zorro/atr-zorro.module.d.ts +0 -7
package/atr-components.d.ts
CHANGED
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<p>atr-test works!</p>
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
|
2
|
+
|
|
3
|
+
import { AtrTestComponent } from './atr-test.component';
|
|
4
|
+
|
|
5
|
+
describe('AtrTestComponent', () => {
|
|
6
|
+
let component: AtrTestComponent;
|
|
7
|
+
let fixture: ComponentFixture<AtrTestComponent>;
|
|
8
|
+
|
|
9
|
+
beforeEach(async () => {
|
|
10
|
+
await TestBed.configureTestingModule({
|
|
11
|
+
declarations: [ AtrTestComponent ]
|
|
12
|
+
})
|
|
13
|
+
.compileComponents();
|
|
14
|
+
});
|
|
15
|
+
|
|
16
|
+
beforeEach(() => {
|
|
17
|
+
fixture = TestBed.createComponent(AtrTestComponent);
|
|
18
|
+
component = fixture.componentInstance;
|
|
19
|
+
fixture.detectChanges();
|
|
20
|
+
});
|
|
21
|
+
|
|
22
|
+
it('should create', () => {
|
|
23
|
+
expect(component).toBeTruthy();
|
|
24
|
+
});
|
|
25
|
+
});
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { Component, OnInit } from '@angular/core';
|
|
2
|
+
|
|
3
|
+
@Component({
|
|
4
|
+
selector: 'atr-atr-test',
|
|
5
|
+
templateUrl: './atr-test.component.html',
|
|
6
|
+
styleUrls: ['./atr-test.component.css']
|
|
7
|
+
})
|
|
8
|
+
export class AtrTestComponent implements OnInit {
|
|
9
|
+
|
|
10
|
+
constructor() { }
|
|
11
|
+
|
|
12
|
+
ngOnInit(): void {
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { NgModule } from '@angular/core';
|
|
2
|
+
import { CommonModule } from '@angular/common';
|
|
3
|
+
import { AtrTestComponent } from './atr-test/atr-test.component';
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
@NgModule({
|
|
8
|
+
declarations: [
|
|
9
|
+
AtrTestComponent
|
|
10
|
+
],
|
|
11
|
+
imports: [
|
|
12
|
+
CommonModule
|
|
13
|
+
],
|
|
14
|
+
exports:[
|
|
15
|
+
AtrTestComponent
|
|
16
|
+
]
|
|
17
|
+
})
|
|
18
|
+
export class AtrTestModule { }
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from './lib/atr-
|
|
1
|
+
export * from './lib/atr-test/atr-test.module';
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "@angular/common";
|
|
3
|
-
export declare class AtrZorroModule {
|
|
4
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<AtrZorroModule, never>;
|
|
5
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<AtrZorroModule, never, [typeof i1.CommonModule], never>;
|
|
6
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<AtrZorroModule>;
|
|
7
|
-
}
|