valtech-components 2.0.2 → 2.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/package.json CHANGED
@@ -1,12 +1,16 @@
1
1
  {
2
2
  "name": "valtech-components",
3
- "version": "2.0.2",
3
+ "version": "2.0.5",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^18.0.0",
6
- "@angular/core": "^18.0.0"
6
+ "@angular/core": "^18.0.0",
7
+ "@ionic/angular": "^8.0.0"
7
8
  },
8
9
  "dependencies": {
9
10
  "tslib": "^2.3.0"
10
11
  },
11
- "sideEffects": false
12
+ "sideEffects": false,
13
+ "devDependencies": {
14
+ "@ionic/angular": "^8.0.0"
15
+ }
12
16
  }
@@ -1,16 +1,16 @@
1
1
  import { Component } from '@angular/core';
2
2
 
3
3
  @Component({
4
- selector: 'lib-valtech-components',
4
+ selector: 'val-hello-world',
5
5
  standalone: true,
6
6
  imports: [],
7
7
  template: `
8
8
  <p>
9
- valtech-components works!
9
+ hello-world works!
10
10
  </p>
11
11
  `,
12
12
  styles: ``
13
13
  })
14
- export class ValtechComponentsComponent {
14
+ export class HelloWorldComponent {
15
15
 
16
16
  }
package/src/public-api.ts CHANGED
@@ -2,5 +2,4 @@
2
2
  * Public API Surface of valtech-components
3
3
  */
4
4
 
5
- export * from './lib/valtech-components.service';
6
- export * from './lib/valtech-components.component';
5
+ export * from './lib/components/hello-world/hello-world.component';
@@ -1,23 +0,0 @@
1
- import { ComponentFixture, TestBed } from '@angular/core/testing';
2
-
3
- import { ValtechComponentsComponent } from './valtech-components.component';
4
-
5
- describe('ValtechComponentsComponent', () => {
6
- let component: ValtechComponentsComponent;
7
- let fixture: ComponentFixture<ValtechComponentsComponent>;
8
-
9
- beforeEach(async () => {
10
- await TestBed.configureTestingModule({
11
- imports: [ValtechComponentsComponent]
12
- })
13
- .compileComponents();
14
-
15
- fixture = TestBed.createComponent(ValtechComponentsComponent);
16
- component = fixture.componentInstance;
17
- fixture.detectChanges();
18
- });
19
-
20
- it('should create', () => {
21
- expect(component).toBeTruthy();
22
- });
23
- });
@@ -1,16 +0,0 @@
1
- import { TestBed } from '@angular/core/testing';
2
-
3
- import { ValtechComponentsService } from './valtech-components.service';
4
-
5
- describe('ValtechComponentsService', () => {
6
- let service: ValtechComponentsService;
7
-
8
- beforeEach(() => {
9
- TestBed.configureTestingModule({});
10
- service = TestBed.inject(ValtechComponentsService);
11
- });
12
-
13
- it('should be created', () => {
14
- expect(service).toBeTruthy();
15
- });
16
- });
@@ -1,9 +0,0 @@
1
- import { Injectable } from '@angular/core';
2
-
3
- @Injectable({
4
- providedIn: 'root'
5
- })
6
- export class ValtechComponentsService {
7
-
8
- constructor() { }
9
- }