tango-app-ui-manage-stores 3.0.15-dev → 3.0.17-dev
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/esm2022/lib/components/add-stores/add-stores.component.mjs +3 -3
- package/esm2022/lib/components/add-stores-form/add-stores-form.component.mjs +3 -3
- package/esm2022/lib/components/create-group/create-group.component.mjs +7 -6
- package/esm2022/lib/components/group-delete-popup/group-delete-popup.component.mjs +3 -3
- package/esm2022/lib/components/group-details/group-details.component.mjs +6 -5
- package/esm2022/lib/components/tango-manage-groups/tango-manage-groups.component.mjs +5 -5
- package/esm2022/lib/components/tango-manage-stores/tango-manage-stores.component.mjs +11 -10
- package/esm2022/lib/services/excel.service.mjs +3 -3
- package/esm2022/lib/services/group.service.mjs +5 -5
- package/esm2022/lib/services/stores.service.mjs +5 -5
- package/esm2022/lib/tango-manage-stores-routing.module.mjs +4 -4
- package/esm2022/lib/tango-manage-stores.module.mjs +4 -4
- package/esm2022/lib/utils/filters/filters.component.mjs +3 -3
- package/fesm2022/tango-app-ui-manage-stores.mjs +51 -50
- package/fesm2022/tango-app-ui-manage-stores.mjs.map +1 -1
- package/lib/components/create-group/create-group.component.d.ts +2 -1
- package/lib/components/group-details/group-details.component.d.ts +1 -1
- package/lib/components/tango-manage-groups/tango-manage-groups.component.d.ts +1 -1
- package/lib/components/tango-manage-stores/tango-manage-stores.component.d.ts +2 -2
- package/lib/services/group.service.d.ts +1 -1
- package/lib/services/stores.service.d.ts +1 -1
- package/package.json +1 -1
|
@@ -2,7 +2,8 @@ import { ChangeDetectorRef, OnInit } from "@angular/core";
|
|
|
2
2
|
import { FormBuilder, FormGroup } from "@angular/forms";
|
|
3
3
|
import { NgbActiveModal } from "@ng-bootstrap/ng-bootstrap";
|
|
4
4
|
import { GroupService } from "../../services/group.service";
|
|
5
|
-
import {
|
|
5
|
+
import { ToastService } from "tango-app-ui-shared";
|
|
6
|
+
import { GlobalStateService } from "tango-app-ui-global";
|
|
6
7
|
import * as i0 from "@angular/core";
|
|
7
8
|
export declare class CreateGroupComponent implements OnInit {
|
|
8
9
|
private activeModal;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { ChangeDetectorRef, EventEmitter, OnInit } from "@angular/core";
|
|
2
2
|
import { Router } from "@angular/router";
|
|
3
3
|
import { StoresService } from "../../services/stores.service";
|
|
4
|
-
import { GlobalStateService } from "tango-app-ui-
|
|
4
|
+
import { GlobalStateService } from "tango-app-ui-global";
|
|
5
5
|
import { GroupService } from "../../services/group.service";
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
export declare class GroupDetailsComponent implements OnInit {
|
|
@@ -2,7 +2,7 @@ import { EventEmitter, ElementRef, OnInit, ChangeDetectorRef } from "@angular/co
|
|
|
2
2
|
import { Router } from "@angular/router";
|
|
3
3
|
import { NgbModal } from "@ng-bootstrap/ng-bootstrap";
|
|
4
4
|
import { GroupService } from "../../services/group.service";
|
|
5
|
-
import { GlobalStateService } from "tango-app-ui-
|
|
5
|
+
import { GlobalStateService } from "tango-app-ui-global";
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
export declare class TangoManageGroupsComponent implements OnInit {
|
|
8
8
|
private elementRef;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { ChangeDetectorRef, OnDestroy, OnInit } from "@angular/core";
|
|
2
|
-
import { PageInfoService } from "tango-app-ui-
|
|
2
|
+
import { PageInfoService } from "tango-app-ui-global";
|
|
3
3
|
import { StoresService } from "../../services/stores.service";
|
|
4
4
|
import { ExcelService } from "../../services/excel.service";
|
|
5
5
|
import { Router } from "@angular/router";
|
|
6
6
|
import { FormControl } from "@angular/forms";
|
|
7
|
-
import { GlobalStateService } from "tango-app-ui-
|
|
7
|
+
import { GlobalStateService } from "tango-app-ui-global";
|
|
8
8
|
import * as i0 from "@angular/core";
|
|
9
9
|
export interface pagination {
|
|
10
10
|
limit: number;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { HttpClient } from "@angular/common/http";
|
|
2
2
|
import { BehaviorSubject, Observable } from "rxjs";
|
|
3
|
-
import { GlobalStateService } from "tango-app-ui-
|
|
3
|
+
import { GlobalStateService } from "tango-app-ui-global";
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
export declare class GroupService {
|
|
6
6
|
private http;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { HttpClient } from "@angular/common/http";
|
|
2
2
|
import { Observable } from "rxjs";
|
|
3
3
|
import { Store, StoreResponse } from "../interfaces/store.interface";
|
|
4
|
-
import { GlobalStateService } from "tango-app-ui-
|
|
4
|
+
import { GlobalStateService } from "tango-app-ui-global";
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
export declare class StoresService {
|
|
7
7
|
private http;
|