atr-components 0.0.3 → 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.
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "atr-components",
3
- "version": "0.0.3",
3
+ "version": "0.0.5",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^13.3.0",
6
6
  "@angular/core": "^13.3.0"
@@ -28,4 +28,4 @@
28
28
  }
29
29
  },
30
30
  "sideEffects": false
31
- }
31
+ }
package/public-api.d.ts CHANGED
@@ -1 +1 @@
1
- export * from './lib/atr-zorro/atr-zorro.module';
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
- }