tango-app-ui-manage-stores 3.0.0

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/.eslintrc.json ADDED
@@ -0,0 +1,37 @@
1
+ {
2
+ "extends": "../../.eslintrc.json",
3
+ "ignorePatterns": [
4
+ "!**/*"
5
+ ],
6
+ "overrides": [
7
+ {
8
+ "files": [
9
+ "*.ts"
10
+ ],
11
+ "rules": {
12
+ "@angular-eslint/directive-selector": [
13
+ "error",
14
+ {
15
+ "type": "attribute",
16
+ "prefix": "lib",
17
+ "style": "camelCase"
18
+ }
19
+ ],
20
+ "@angular-eslint/component-selector": [
21
+ "error",
22
+ {
23
+ "type": "element",
24
+ "prefix": "lib",
25
+ "style": "kebab-case"
26
+ }
27
+ ]
28
+ }
29
+ },
30
+ {
31
+ "files": [
32
+ "*.html"
33
+ ],
34
+ "rules": {}
35
+ }
36
+ ]
37
+ }
package/README.md ADDED
@@ -0,0 +1,24 @@
1
+ # TangoManageStores
2
+
3
+ This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 17.0.0.
4
+
5
+ ## Code scaffolding
6
+
7
+ Run `ng generate component component-name --project tango-manage-stores` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module --project tango-manage-stores`.
8
+ > Note: Don't forget to add `--project tango-manage-stores` or else it will be added to the default project in your `angular.json` file.
9
+
10
+ ## Build
11
+
12
+ Run `ng build tango-manage-stores` to build the project. The build artifacts will be stored in the `dist/` directory.
13
+
14
+ ## Publishing
15
+
16
+ After building your library with `ng build tango-manage-stores`, go to the dist folder `cd dist/tango-manage-stores` and run `npm publish`.
17
+
18
+ ## Running unit tests
19
+
20
+ Run `ng test tango-manage-stores` to execute the unit tests via [Karma](https://karma-runner.github.io).
21
+
22
+ ## Further help
23
+
24
+ To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI Overview and Command Reference](https://angular.io/cli) page.
@@ -0,0 +1,7 @@
1
+ {
2
+ "$schema": "../../node_modules/ng-packagr/ng-package.schema.json",
3
+ "dest": "../../dist/tango-manage-stores",
4
+ "lib": {
5
+ "entryFile": "src/public-api.ts"
6
+ }
7
+ }
package/package.json ADDED
@@ -0,0 +1,12 @@
1
+ {
2
+ "name": "tango-app-ui-manage-stores",
3
+ "version": "3.0.0",
4
+ "peerDependencies": {
5
+ "@angular/common": "^17.0.0",
6
+ "@angular/core": "^17.0.0"
7
+ },
8
+ "dependencies": {
9
+ "tslib": "^2.3.0"
10
+ },
11
+ "sideEffects": false
12
+ }
@@ -0,0 +1,3 @@
1
+ <p>tango-manage-stores works!</p>
2
+
3
+ <button routerLink="/manage/stores/LKST123">Go to Store</button>
@@ -0,0 +1,23 @@
1
+ import { ComponentFixture, TestBed } from '@angular/core/testing';
2
+
3
+ import { TangoManageStoresComponent } from './tango-manage-stores.component';
4
+
5
+ describe('TangoManageStoresComponent', () => {
6
+ let component: TangoManageStoresComponent;
7
+ let fixture: ComponentFixture<TangoManageStoresComponent>;
8
+
9
+ beforeEach(async () => {
10
+ await TestBed.configureTestingModule({
11
+ declarations: [TangoManageStoresComponent]
12
+ })
13
+ .compileComponents();
14
+
15
+ fixture = TestBed.createComponent(TangoManageStoresComponent);
16
+ component = fixture.componentInstance;
17
+ fixture.detectChanges();
18
+ });
19
+
20
+ it('should create', () => {
21
+ expect(component).toBeTruthy();
22
+ });
23
+ });
@@ -0,0 +1,28 @@
1
+ import { Component, OnInit } from '@angular/core';
2
+ import { PageInfoService } from 'tango-app-metronics';
3
+
4
+ @Component({
5
+ selector: 'lib-tango-manage-stores',
6
+ templateUrl: './tango-manage-stores.component.html',
7
+ styleUrl: './tango-manage-stores.component.scss'
8
+ })
9
+ export class TangoManageStoresComponent implements OnInit {
10
+
11
+
12
+ constructor(private pageInfo:PageInfoService){
13
+ }
14
+
15
+ ngOnInit(): void {
16
+ this.setPageData()
17
+ }
18
+
19
+ setPageData(){
20
+ this.pageInfo.setTitle('Stores')
21
+ this.pageInfo.setDescription('To optimize and improve existing algorithm')
22
+ this.pageInfo.setBreadcrumbs([
23
+ {title:'Manage', path: '/manage', isActive: false, isSeparator: false},
24
+ {title:'Manage', path: '/manage', isActive: false, isSeparator: true},
25
+ ])
26
+ }
27
+
28
+ }
@@ -0,0 +1,16 @@
1
+ import { NgModule } from '@angular/core';
2
+ import { RouterModule, Routes } from '@angular/router';
3
+ import { TangoManageStoresComponent } from './components/tango-manage-stores/tango-manage-stores.component';
4
+
5
+ const routes: Routes = [
6
+ {
7
+ path:'',
8
+ component:TangoManageStoresComponent
9
+ }
10
+ ];
11
+
12
+ @NgModule({
13
+ imports: [RouterModule.forChild(routes)],
14
+ exports: [RouterModule]
15
+ })
16
+ export class TangoManageStoresRoutingModule { }
@@ -0,0 +1,17 @@
1
+ import { NgModule } from '@angular/core';
2
+ import { CommonModule } from '@angular/common';
3
+
4
+ import { TangoManageStoresRoutingModule } from './tango-manage-stores-routing.module';
5
+ import { TangoManageStoresComponent } from './components/tango-manage-stores/tango-manage-stores.component';
6
+
7
+
8
+ @NgModule({
9
+ declarations: [
10
+ TangoManageStoresComponent
11
+ ],
12
+ imports: [
13
+ CommonModule,
14
+ TangoManageStoresRoutingModule
15
+ ]
16
+ })
17
+ export class TangoManageStoresModule { }
@@ -0,0 +1,8 @@
1
+ /*
2
+ * Public API Surface of tango-manage-stores
3
+ */
4
+
5
+ export * from './lib/tango-manage-stores.module';
6
+
7
+ export * from './lib/components/tango-manage-stores/tango-manage-stores.component';
8
+
@@ -0,0 +1,14 @@
1
+ /* To learn more about this file see: https://angular.io/config/tsconfig. */
2
+ {
3
+ "extends": "../../tsconfig.json",
4
+ "compilerOptions": {
5
+ "outDir": "../../out-tsc/lib",
6
+ "declaration": true,
7
+ "declarationMap": true,
8
+ "inlineSources": true,
9
+ "types": []
10
+ },
11
+ "exclude": [
12
+ "**/*.spec.ts"
13
+ ]
14
+ }
@@ -0,0 +1,10 @@
1
+ /* To learn more about this file see: https://angular.io/config/tsconfig. */
2
+ {
3
+ "extends": "./tsconfig.lib.json",
4
+ "compilerOptions": {
5
+ "declarationMap": false
6
+ },
7
+ "angularCompilerOptions": {
8
+ "compilationMode": "partial"
9
+ }
10
+ }
@@ -0,0 +1,14 @@
1
+ /* To learn more about this file see: https://angular.io/config/tsconfig. */
2
+ {
3
+ "extends": "../../tsconfig.json",
4
+ "compilerOptions": {
5
+ "outDir": "../../out-tsc/spec",
6
+ "types": [
7
+ "jasmine"
8
+ ]
9
+ },
10
+ "include": [
11
+ "**/*.spec.ts",
12
+ "**/*.d.ts"
13
+ ]
14
+ }