refactor: update lib exports, removes unused code

This commit is contained in:
2025-08-10 22:08:28 -03:00
parent 09737df55c
commit 97fe1575dc
9 changed files with 8 additions and 66 deletions

View File

@@ -0,0 +1,2 @@
export * from './title-bar/title-bar.component'
export * from './typography/typography.component'

View File

@@ -0,0 +1,4 @@
export * from './money-text/money-text.component';
export * from './title-bar-base-money/title-bar-base-money.component';
export * from './title-bar-category/title-bar-category.component';
export * from './title-bar-date/title-bar-date.component'

View File

@@ -1,23 +0,0 @@
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { MyWalletDsComponent } from './my-wallet-ds.component';
describe('MyWalletDsComponent', () => {
let component: MyWalletDsComponent;
let fixture: ComponentFixture<MyWalletDsComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
imports: [MyWalletDsComponent]
})
.compileComponents();
fixture = TestBed.createComponent(MyWalletDsComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});

View File

@@ -1,16 +0,0 @@
import { Component } from '@angular/core';
@Component({
selector: 'lib-my-wallet-ds',
standalone: true,
imports: [],
template: `
<p>
my-wallet-ds works!
</p>
`,
styles: ``
})
export class MyWalletDsComponent {
}

View File

@@ -1,16 +0,0 @@
import { TestBed } from '@angular/core/testing';
import { MyWalletDsService } from './my-wallet-ds.service';
describe('MyWalletDsService', () => {
let service: MyWalletDsService;
beforeEach(() => {
TestBed.configureTestingModule({});
service = TestBed.inject(MyWalletDsService);
});
it('should be created', () => {
expect(service).toBeTruthy();
});
});

View File

@@ -1,9 +0,0 @@
import { Injectable } from '@angular/core';
@Injectable({
providedIn: 'root'
})
export class MyWalletDsService {
constructor() { }
}

View File

@@ -2,5 +2,5 @@
* Public API Surface of my-wallet-ds
*/
export * from './lib/my-wallet-ds.service';
export * from './lib/my-wallet-ds.component';
export * from './lib/atoms';
export * from './lib/molecules';