tango-app-ui-store-builder 1.2.2 → 1.2.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/esm2022/lib/components/custom-select/custom-select.component.mjs +14 -5
- package/esm2022/lib/components/manage-store-plano/manage-store-plano.component.mjs +60 -20
- package/esm2022/lib/components/manage-store-plano/zone-verification-feedback/zone-verification-feedback.component.mjs +7 -2
- package/esm2022/lib/components/onboard-store-plano/onboard-store-plano.component.mjs +173 -22
- package/esm2022/lib/components/plano-tools/cad-files/cad-files.component.mjs +88 -0
- package/esm2022/lib/components/plano-tools/move-bucket/move-bucket.component.mjs +239 -0
- package/esm2022/lib/components/plano-tools/plano-migrate/plano-migrate.component.mjs +3 -3
- package/esm2022/lib/components/plano-tools/swap-template/swap-template.component.mjs +325 -0
- package/esm2022/lib/components/plano-tools/tools-parent/tools-parent.component.mjs +3 -3
- package/esm2022/lib/components/popups/delete-confirmation/delete-confirmation.component.mjs +10 -3
- package/esm2022/lib/services/store-builder.service.mjs +15 -1
- package/esm2022/lib/tango-store-builder-routing.module.mjs +16 -1
- package/esm2022/lib/tango-store-builder.module.mjs +10 -1
- package/fesm2022/tango-app-ui-store-builder.mjs +918 -52
- package/fesm2022/tango-app-ui-store-builder.mjs.map +1 -1
- package/lib/components/custom-select/custom-select.component.d.ts +5 -2
- package/lib/components/manage-plano/rollout-table/rollout-table.component.d.ts +4 -4
- package/lib/components/manage-plano/verification-table/verification-table.component.d.ts +5 -5
- package/lib/components/manage-store-plano/manage-store-plano.component.d.ts +4 -0
- package/lib/components/onboard-store-plano/onboard-store-plano.component.d.ts +11 -1
- package/lib/components/plano-tools/cad-files/cad-files.component.d.ts +30 -0
- package/lib/components/plano-tools/move-bucket/move-bucket.component.d.ts +64 -0
- package/lib/components/plano-tools/swap-template/swap-template.component.d.ts +83 -0
- package/lib/components/popups/delete-confirmation/delete-confirmation.component.d.ts +3 -1
- package/lib/services/store-builder.service.d.ts +16 -0
- package/lib/tango-store-builder.module.d.ts +56 -53
- package/package.json +1 -1
|
@@ -1,9 +1,10 @@
|
|
|
1
|
-
import { ChangeDetectorRef, EventEmitter, OnChanges, OnInit, SimpleChanges } from '@angular/core';
|
|
1
|
+
import { ChangeDetectorRef, EventEmitter, OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angular/core';
|
|
2
2
|
import { StoreBuilderService } from '../../services/store-builder.service';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class CustomSelectComponent implements OnChanges, OnInit {
|
|
4
|
+
export declare class CustomSelectComponent implements OnChanges, OnInit, OnDestroy {
|
|
5
5
|
private cd;
|
|
6
6
|
private authService;
|
|
7
|
+
private readonly destroy$;
|
|
7
8
|
onClick(event: MouseEvent): void;
|
|
8
9
|
items: any;
|
|
9
10
|
searchField: string;
|
|
@@ -18,8 +19,10 @@ export declare class CustomSelectComponent implements OnChanges, OnInit {
|
|
|
18
19
|
showDropdown: boolean;
|
|
19
20
|
searchValue: string;
|
|
20
21
|
instanceId: any;
|
|
22
|
+
trackByItem: (_: number, item: any) => any;
|
|
21
23
|
constructor(cd: ChangeDetectorRef, authService: StoreBuilderService);
|
|
22
24
|
ngOnInit(): void;
|
|
25
|
+
ngOnDestroy(): void;
|
|
23
26
|
ngOnChanges(changes: SimpleChanges): void;
|
|
24
27
|
initializeItems(): void;
|
|
25
28
|
updateSelectedValues(): void;
|
|
@@ -54,13 +54,13 @@ export declare class PlanoRolloutTableComponent implements OnInit, OnDestroy {
|
|
|
54
54
|
paginationSize(): number;
|
|
55
55
|
onPageChange(pageOffset: number): void;
|
|
56
56
|
onPageSizeChange(pageSize: number): void;
|
|
57
|
-
getTaskStatus(data: any, type: string): "completed" | "yetToAssign" | "
|
|
58
|
-
getTaskTooltip(data: any, type: string): "
|
|
57
|
+
getTaskStatus(data: any, type: string): "completed" | "yetToAssign" | "reviewPending" | "taskAssigned" | undefined;
|
|
58
|
+
getTaskTooltip(data: any, type: string): "Review Pending" | "Yet to Assign" | "Task Assigned" | "Completed" | undefined;
|
|
59
59
|
showBreach(data: any, type: string): boolean;
|
|
60
60
|
updateQueryParams(): void;
|
|
61
61
|
ngOnDestroy(): void;
|
|
62
|
-
getStatus(data: any): "Yet to Assign" | "Task Assigned" | "
|
|
63
|
-
getStatusBadge(data: any): "yetToAssign" | "
|
|
62
|
+
getStatus(data: any): "Review Pending" | "Yet to Assign" | "Task Assigned" | "Ready to Publish" | "Published" | undefined;
|
|
63
|
+
getStatusBadge(data: any): "yetToAssign" | "reviewPending" | "taskAssigned" | "primaryBadgeStyle" | "bg-success" | undefined;
|
|
64
64
|
onExport(): void;
|
|
65
65
|
static ɵfac: i0.ɵɵFactoryDeclaration<PlanoRolloutTableComponent, never>;
|
|
66
66
|
static ɵcmp: i0.ɵɵComponentDeclaration<PlanoRolloutTableComponent, "lib-plano-rollout-table", never, {}, {}, never, never, false, never>;
|
|
@@ -54,14 +54,14 @@ export declare class PlanoVerificationTableComponent implements OnInit, OnDestro
|
|
|
54
54
|
onPageChange(pageOffset: number): void;
|
|
55
55
|
onPageSizeChange(pageSize: number): void;
|
|
56
56
|
planoFloorDetails(data: any): string | 1;
|
|
57
|
-
getTaskStatus(data: any, type: string): "completed" | "yetToAssign" | "
|
|
58
|
-
getTaskTooltip(data: any, type: string): "
|
|
59
|
-
getZoneStatus(data: any): "completed" | "yetToAssign" | "
|
|
57
|
+
getTaskStatus(data: any, type: string): "completed" | "yetToAssign" | "reviewPending" | "taskAssigned" | undefined;
|
|
58
|
+
getTaskTooltip(data: any, type: string): "Review Pending" | "Yet to Assign" | "Task Assigned" | "Task Scheduled" | "Completed" | undefined;
|
|
59
|
+
getZoneStatus(data: any): "completed" | "yetToAssign" | "reviewPending" | "taskAssigned" | "flag";
|
|
60
60
|
getZoneTooltip(data: any): any;
|
|
61
61
|
getProgressValue(data: any): 100 | 50 | 25;
|
|
62
62
|
showBreach(data: any, type: string): boolean;
|
|
63
|
-
getStatus(data: any): "
|
|
64
|
-
getStatusBadge(data: any): "completed" | "yetToAssign" | "
|
|
63
|
+
getStatus(data: any): "Review Pending" | "Yet to Assign" | "Task Assigned" | "Ready to Publish" | "Published" | "Task Scheduled" | "Completed" | undefined;
|
|
64
|
+
getStatusBadge(data: any): "completed" | "yetToAssign" | "reviewPending" | "taskAssigned" | "primaryBadgeStyle" | "bg-success" | undefined;
|
|
65
65
|
getSubmit(data: any): boolean;
|
|
66
66
|
updateQueryParams(): void;
|
|
67
67
|
ngOnDestroy(): void;
|
|
@@ -58,6 +58,7 @@ export declare class ManageStorePlanoComponent implements AfterViewInit, OnDestr
|
|
|
58
58
|
storeFeedback: any;
|
|
59
59
|
zoneFeedback: any;
|
|
60
60
|
selectedZoneFeedback: any;
|
|
61
|
+
private isClComplianceAnswer;
|
|
61
62
|
get zonePendingCount(): number;
|
|
62
63
|
get zoneRedoCount(): number;
|
|
63
64
|
get zoneRedoStatus(): boolean;
|
|
@@ -65,6 +66,9 @@ export declare class ManageStorePlanoComponent implements AfterViewInit, OnDestr
|
|
|
65
66
|
name: string;
|
|
66
67
|
class: string;
|
|
67
68
|
};
|
|
69
|
+
get showTopPublish(): boolean;
|
|
70
|
+
get topPublishDisabled(): boolean;
|
|
71
|
+
get shouldRevertOnEdit(): boolean;
|
|
68
72
|
selectedFixture: any;
|
|
69
73
|
selectedFixtureData: any;
|
|
70
74
|
selectedFixtureFeedback: any;
|
|
@@ -83,6 +83,7 @@ export declare class OnboardStorePlanoComponent implements AfterViewInit, OnDest
|
|
|
83
83
|
layoutBounds: any;
|
|
84
84
|
isRunAllocationAllowed: boolean;
|
|
85
85
|
ivmAliasKeys: Set<string>;
|
|
86
|
+
fixtureLibraryByWidth: Map<number, Set<string>>;
|
|
86
87
|
restrictedUsers: string[];
|
|
87
88
|
constructor(apiService: StoreBuilderService, route: ActivatedRoute, fb: FormBuilder, gs: GlobalStateService, titleCase: TitleCasePipe, toastService: ToastService, modalService: NgbModal, pageInfo: PageInfoService, location: Location, router: Router, cd: ChangeDetectorRef);
|
|
88
89
|
ngOnInit(): void;
|
|
@@ -106,9 +107,18 @@ export declare class OnboardStorePlanoComponent implements AfterViewInit, OnDest
|
|
|
106
107
|
extractAllFixtures(floorData: any): void;
|
|
107
108
|
get allFixtureInstances(): any[];
|
|
108
109
|
fetchIvmAlias(): Promise<void>;
|
|
109
|
-
|
|
110
|
+
fetchFixtureLibraryKeys(): Promise<void>;
|
|
111
|
+
private normalizeForMatch;
|
|
112
|
+
private damerauLevenshteinDistance;
|
|
113
|
+
private similarityRatio;
|
|
114
|
+
private isLibraryMatch;
|
|
115
|
+
validateFixtures(): void;
|
|
110
116
|
get hasInvalidHeaderFixtures(): boolean;
|
|
111
117
|
get invalidHeaderFixtureCount(): number;
|
|
118
|
+
get hasInvalidLibraryFixtures(): boolean;
|
|
119
|
+
get invalidLibraryFixtureCount(): number;
|
|
120
|
+
get hasInvalidFixtures(): boolean;
|
|
121
|
+
get invalidFixturesTooltip(): string;
|
|
112
122
|
get isEditLayoutAllowed(): boolean;
|
|
113
123
|
renderFloor(update?: boolean): Promise<void>;
|
|
114
124
|
drawInitialContent(): Promise<void>;
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { OnDestroy } from '@angular/core';
|
|
2
|
+
import { StoreBuilderService } from '../../../services/store-builder.service';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
interface CadFile {
|
|
5
|
+
name: string;
|
|
6
|
+
key: string;
|
|
7
|
+
uploadedAt: string;
|
|
8
|
+
size: number;
|
|
9
|
+
url: string;
|
|
10
|
+
}
|
|
11
|
+
export declare class CadFilesComponent implements OnDestroy {
|
|
12
|
+
private sbs;
|
|
13
|
+
storeName: string;
|
|
14
|
+
files: CadFile[];
|
|
15
|
+
hasSearched: boolean;
|
|
16
|
+
isLoading: boolean;
|
|
17
|
+
downloadingKey: string | null;
|
|
18
|
+
message: string;
|
|
19
|
+
messageType: 'success' | 'error';
|
|
20
|
+
private readonly destroy$;
|
|
21
|
+
constructor(sbs: StoreBuilderService);
|
|
22
|
+
onFetch(): void;
|
|
23
|
+
onDownload(file: CadFile): Promise<void>;
|
|
24
|
+
formatSize(bytes: number): string;
|
|
25
|
+
showMessage(msg: string, type: 'success' | 'error'): void;
|
|
26
|
+
ngOnDestroy(): void;
|
|
27
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CadFilesComponent, never>;
|
|
28
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CadFilesComponent, "lib-cad-files", never, {}, {}, never, never, false, never>;
|
|
29
|
+
}
|
|
30
|
+
export {};
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
import { OnDestroy, OnInit } from "@angular/core";
|
|
2
|
+
import { NgbModal } from "@ng-bootstrap/ng-bootstrap";
|
|
3
|
+
import { GlobalStateService } from "tango-app-ui-global";
|
|
4
|
+
import { StoreBuilderService } from "../../../services/store-builder.service";
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
interface StoreOption {
|
|
7
|
+
id: string;
|
|
8
|
+
label: string;
|
|
9
|
+
}
|
|
10
|
+
interface FloorOption {
|
|
11
|
+
_id: string;
|
|
12
|
+
floorNumber: number;
|
|
13
|
+
floorName: string;
|
|
14
|
+
status: BucketStatus;
|
|
15
|
+
isPlanoApproved?: boolean;
|
|
16
|
+
displayName: string;
|
|
17
|
+
}
|
|
18
|
+
type BucketStatus = "draft" | "allocationPending" | "completed";
|
|
19
|
+
interface StatusOption {
|
|
20
|
+
value: BucketStatus;
|
|
21
|
+
label: string;
|
|
22
|
+
bucket: string;
|
|
23
|
+
}
|
|
24
|
+
export declare class MoveBucketComponent implements OnInit, OnDestroy {
|
|
25
|
+
private sbs;
|
|
26
|
+
private gs;
|
|
27
|
+
private modalService;
|
|
28
|
+
clientId: string;
|
|
29
|
+
storeOptions: StoreOption[];
|
|
30
|
+
selectedStoreId: string | null;
|
|
31
|
+
selectedStoreLabel: string | null;
|
|
32
|
+
floors: FloorOption[];
|
|
33
|
+
selectedFloorId: string | null;
|
|
34
|
+
isLoadingFloors: boolean;
|
|
35
|
+
statusOptions: StatusOption[];
|
|
36
|
+
targetStatus: BucketStatus | null;
|
|
37
|
+
currentStatus: BucketStatus | null;
|
|
38
|
+
clearLayoutTasks: boolean;
|
|
39
|
+
clearFixtureTasks: boolean;
|
|
40
|
+
clearZoneTasks: boolean;
|
|
41
|
+
isSubmitting: boolean;
|
|
42
|
+
message: string;
|
|
43
|
+
messageType: "success" | "error";
|
|
44
|
+
private readonly destroy$;
|
|
45
|
+
constructor(sbs: StoreBuilderService, gs: GlobalStateService, modalService: NgbModal);
|
|
46
|
+
ngOnInit(): void;
|
|
47
|
+
loadStores(): void;
|
|
48
|
+
onStoreSelected(storeId: string | null): void;
|
|
49
|
+
private resetFloorState;
|
|
50
|
+
loadFloors(): void;
|
|
51
|
+
onFloorSelected(floorId: string | null): void;
|
|
52
|
+
onTargetStatusSelected(value: BucketStatus | null): void;
|
|
53
|
+
get statusChanged(): boolean;
|
|
54
|
+
get canSubmit(): boolean;
|
|
55
|
+
getStatusLabel(status: BucketStatus | null | undefined): string;
|
|
56
|
+
getBucketLabel(status: BucketStatus | null | undefined): string;
|
|
57
|
+
onSubmit(): Promise<void>;
|
|
58
|
+
private confirm;
|
|
59
|
+
showMessage(msg: string, type: "success" | "error"): void;
|
|
60
|
+
ngOnDestroy(): void;
|
|
61
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MoveBucketComponent, never>;
|
|
62
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MoveBucketComponent, "lib-move-bucket", never, {}, {}, never, never, false, never>;
|
|
63
|
+
}
|
|
64
|
+
export {};
|
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
import { ChangeDetectorRef, OnDestroy, OnInit } from '@angular/core';
|
|
2
|
+
import { NgbModal } from '@ng-bootstrap/ng-bootstrap';
|
|
3
|
+
import { GlobalStateService } from 'tango-app-ui-global';
|
|
4
|
+
import { ToastService } from 'tango-app-ui-shared';
|
|
5
|
+
import { StoreBuilderService } from '../../../services/store-builder.service';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
interface StoreItem {
|
|
8
|
+
id: string;
|
|
9
|
+
label: string;
|
|
10
|
+
}
|
|
11
|
+
interface FixtureItem {
|
|
12
|
+
_id: string;
|
|
13
|
+
fixtureNumber: number;
|
|
14
|
+
fixtureName: string;
|
|
15
|
+
fixtureCategory: string;
|
|
16
|
+
fixtureWidthValue: number;
|
|
17
|
+
associatedElementType: string;
|
|
18
|
+
associatedElementFixtureNumber: number | null;
|
|
19
|
+
displayName: string;
|
|
20
|
+
}
|
|
21
|
+
interface TemplateItem {
|
|
22
|
+
_id: string;
|
|
23
|
+
fixtureName: string;
|
|
24
|
+
displayName: string;
|
|
25
|
+
subtext: string;
|
|
26
|
+
}
|
|
27
|
+
interface SwapRow {
|
|
28
|
+
rowId: number;
|
|
29
|
+
fixtureId: string | null;
|
|
30
|
+
templateId: string | null;
|
|
31
|
+
fixture: FixtureItem | null;
|
|
32
|
+
template: TemplateItem | null;
|
|
33
|
+
fixtureOptions: FixtureItem[];
|
|
34
|
+
wallPosition: string;
|
|
35
|
+
}
|
|
36
|
+
export declare class SwapTemplateComponent implements OnInit, OnDestroy {
|
|
37
|
+
private sbs;
|
|
38
|
+
private gs;
|
|
39
|
+
private modalService;
|
|
40
|
+
private toast;
|
|
41
|
+
private cdr;
|
|
42
|
+
clientId: string;
|
|
43
|
+
storeOptions: StoreItem[];
|
|
44
|
+
selectedStoreId: string | null;
|
|
45
|
+
selectedStore: StoreItem | null;
|
|
46
|
+
fixtures: FixtureItem[];
|
|
47
|
+
templates: TemplateItem[];
|
|
48
|
+
rows: SwapRow[];
|
|
49
|
+
isLoadingFixtures: boolean;
|
|
50
|
+
isSubmitting: boolean;
|
|
51
|
+
canAddRow: boolean;
|
|
52
|
+
canSubmit: boolean;
|
|
53
|
+
private readonly destroy$;
|
|
54
|
+
private readonly storeSelected$;
|
|
55
|
+
private templatesCache$;
|
|
56
|
+
private cachedTemplatesClientId;
|
|
57
|
+
private rowIdSeq;
|
|
58
|
+
constructor(sbs: StoreBuilderService, gs: GlobalStateService, modalService: NgbModal, toast: ToastService, cdr: ChangeDetectorRef);
|
|
59
|
+
ngOnInit(): void;
|
|
60
|
+
loadStores(): void;
|
|
61
|
+
private prefetchTemplates;
|
|
62
|
+
private getCachedTemplates;
|
|
63
|
+
onStoreSelected(storeId: string | null): void;
|
|
64
|
+
private makeEmptyRow;
|
|
65
|
+
private computeFixtureOptions;
|
|
66
|
+
private refreshAllFixtureOptions;
|
|
67
|
+
private computeWallPosition;
|
|
68
|
+
private recomputeFlags;
|
|
69
|
+
onRowFixtureChange(row: SwapRow, fixtureId: string | null): void;
|
|
70
|
+
onRowTemplateChange(row: SwapRow, templateId: string | null): void;
|
|
71
|
+
addRow(): void;
|
|
72
|
+
removeRow(index: number): void;
|
|
73
|
+
onCancel(): void;
|
|
74
|
+
private resetSelection;
|
|
75
|
+
onSubmit(): Promise<void>;
|
|
76
|
+
private summarizeErrors;
|
|
77
|
+
private confirmSwap;
|
|
78
|
+
trackByRow: (_: number, row: SwapRow) => number;
|
|
79
|
+
ngOnDestroy(): void;
|
|
80
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SwapTemplateComponent, never>;
|
|
81
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SwapTemplateComponent, "lib-swap-template", never, {}, {}, never, never, false, never>;
|
|
82
|
+
}
|
|
83
|
+
export {};
|
|
@@ -4,9 +4,11 @@ export declare class DeleteConfirmationComponent {
|
|
|
4
4
|
private activeModal;
|
|
5
5
|
title: string;
|
|
6
6
|
description: string;
|
|
7
|
+
confirmLabel: string;
|
|
8
|
+
confirmClass: string;
|
|
7
9
|
constructor(activeModal: NgbActiveModal);
|
|
8
10
|
onCancel(): void;
|
|
9
11
|
onDelete(): void;
|
|
10
12
|
static ɵfac: i0.ɵɵFactoryDeclaration<DeleteConfirmationComponent, never>;
|
|
11
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DeleteConfirmationComponent, "app-delete-confirmation", never, { "title": { "alias": "title"; "required": false; }; "description": { "alias": "description"; "required": false; }; }, {}, never, never, false, never>;
|
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DeleteConfirmationComponent, "app-delete-confirmation", never, { "title": { "alias": "title"; "required": false; }; "description": { "alias": "description"; "required": false; }; "confirmLabel": { "alias": "confirmLabel"; "required": false; }; "confirmClass": { "alias": "confirmClass"; "required": false; }; }, {}, never, never, false, never>;
|
|
12
14
|
}
|
|
@@ -207,7 +207,23 @@ export declare class StoreBuilderService implements OnDestroy {
|
|
|
207
207
|
associatedElementFixtureNumber?: number;
|
|
208
208
|
}): import("rxjs").Observable<Object>;
|
|
209
209
|
deleteTaskForStores(data: any): import("rxjs").Observable<Object>;
|
|
210
|
+
getFloorsWithStatus(storeName: string, clientId: string): import("rxjs").Observable<Object>;
|
|
211
|
+
moveStoreBucket(data: {
|
|
212
|
+
floorId: string;
|
|
213
|
+
targetStatus: "draft" | "allocationPending" | "completed";
|
|
214
|
+
clearLayoutTasks: boolean;
|
|
215
|
+
clearFixtureTasks: boolean;
|
|
216
|
+
clearZoneTasks: boolean;
|
|
217
|
+
}): import("rxjs").Observable<Object>;
|
|
218
|
+
swapFixtureTemplate(data: {
|
|
219
|
+
data: {
|
|
220
|
+
storeName: string;
|
|
221
|
+
fixtureNumber: number;
|
|
222
|
+
templateName: string;
|
|
223
|
+
}[];
|
|
224
|
+
}): import("rxjs").Observable<Object>;
|
|
210
225
|
getPlanoDataSchema(): import("rxjs").Observable<Object>;
|
|
226
|
+
getCadFiles(storeName: string): import("rxjs").Observable<Object>;
|
|
211
227
|
runPlanoDataQuery(data: {
|
|
212
228
|
clientId: string;
|
|
213
229
|
storeNames: string[];
|
|
@@ -68,60 +68,63 @@ import * as i66 from "./components/plano-tools/allow-edit/allow-edit.component";
|
|
|
68
68
|
import * as i67 from "./components/plano-tools/delete-task/delete-task.component";
|
|
69
69
|
import * as i68 from "./components/plano-tools/update-fixture-type/update-fixture-type.component";
|
|
70
70
|
import * as i69 from "./components/plano-tools/modify-fixture-numbers/modify-fixture-numbers.component";
|
|
71
|
-
import * as i70 from "./components/plano-tools/
|
|
72
|
-
import * as i71 from "./components/plano-tools/
|
|
73
|
-
import * as i72 from "./components/
|
|
74
|
-
import * as i73 from "./components/
|
|
75
|
-
import * as i74 from "./components/
|
|
76
|
-
import * as i75 from "./components/
|
|
77
|
-
import * as i76 from "./components/planogram/
|
|
78
|
-
import * as i77 from "./components/planogram/plano-
|
|
79
|
-
import * as i78 from "./components/
|
|
80
|
-
import * as i79 from "./components/planogram/plano-
|
|
81
|
-
import * as i80 from "./components/planogram/plano-
|
|
82
|
-
import * as i81 from "./components/
|
|
83
|
-
import * as i82 from "./components/planogram/
|
|
84
|
-
import * as i83 from "./components/planogram/
|
|
85
|
-
import * as i84 from "./components/
|
|
86
|
-
import * as i85 from "./components/planogram/
|
|
87
|
-
import * as i86 from "./components/planogram/
|
|
88
|
-
import * as i87 from "./components/planogram/
|
|
89
|
-
import * as i88 from "./components/planogram/plano-analytics/
|
|
90
|
-
import * as i89 from "./
|
|
91
|
-
import * as i90 from "./components/
|
|
92
|
-
import * as i91 from "
|
|
93
|
-
import * as i92 from "
|
|
94
|
-
import * as i93 from "
|
|
95
|
-
import * as i94 from "@angular/
|
|
96
|
-
import * as i95 from "@
|
|
97
|
-
import * as i96 from "
|
|
98
|
-
import * as i97 from "
|
|
99
|
-
import * as i98 from "
|
|
100
|
-
import * as i99 from "./
|
|
101
|
-
import * as i100 from "
|
|
102
|
-
import * as i101 from "./components/
|
|
103
|
-
import * as i102 from "./components/store-plano/
|
|
104
|
-
import * as i103 from "./components/
|
|
105
|
-
import * as i104 from "./components/
|
|
106
|
-
import * as i105 from "./components/
|
|
107
|
-
import * as i106 from "./components/planogram/plano-
|
|
108
|
-
import * as i107 from "./components/
|
|
109
|
-
import * as i108 from "./components/
|
|
110
|
-
import * as i109 from "./components/
|
|
111
|
-
import * as i110 from "
|
|
112
|
-
import * as i111 from "
|
|
113
|
-
import * as i112 from "
|
|
114
|
-
import * as i113 from "
|
|
115
|
-
import * as i114 from "
|
|
116
|
-
import * as i115 from "
|
|
117
|
-
import * as i116 from "./components/
|
|
118
|
-
import * as i117 from "./components/
|
|
119
|
-
import * as i118 from "./components/
|
|
120
|
-
import * as i119 from "./components/
|
|
121
|
-
import * as i120 from "./components/
|
|
122
|
-
import * as i121 from "./components/
|
|
71
|
+
import * as i70 from "./components/plano-tools/swap-template/swap-template.component";
|
|
72
|
+
import * as i71 from "./components/plano-tools/move-bucket/move-bucket.component";
|
|
73
|
+
import * as i72 from "./components/plano-tools/cad-files/cad-files.component";
|
|
74
|
+
import * as i73 from "./components/plano-tools/plano-data-export/plano-data-export.component";
|
|
75
|
+
import * as i74 from "./components/plano-tools/store-exports/store-exports.component";
|
|
76
|
+
import * as i75 from "./components/planogram/merch-compliance/fixture-products/fixture-products.component";
|
|
77
|
+
import * as i76 from "./components/planogram/merch-compliance/zone-products/zone-products.component";
|
|
78
|
+
import * as i77 from "./components/planogram/plano-analytics/zone-analytics/zone-analytics.component";
|
|
79
|
+
import * as i78 from "./components/plano-tools/tools-parent/tools-parent.component";
|
|
80
|
+
import * as i79 from "./components/planogram/plano-table/plano-table.component";
|
|
81
|
+
import * as i80 from "./components/planogram/plano-details-parent/plano-details-parent.component";
|
|
82
|
+
import * as i81 from "./components/planogram/merch-compliance/merch-compliance.component";
|
|
83
|
+
import * as i82 from "./components/planogram/plano-overview/plano-overview.component";
|
|
84
|
+
import * as i83 from "./components/planogram/plano-overview/fixture-overview/fixture-overview.component";
|
|
85
|
+
import * as i84 from "./components/fixture-template/template-details/template-details.component";
|
|
86
|
+
import * as i85 from "./components/planogram/merch-compliance/product-locator/product-locator.component";
|
|
87
|
+
import * as i86 from "./components/planogram/merch-compliance/product-locator/misplaced-product-fixture/misplaced-product-fixture.component";
|
|
88
|
+
import * as i87 from "./components/planogram/merch-compliance/product-locator/product-zone-locator/product-zone-locator.component";
|
|
89
|
+
import * as i88 from "./components/planogram/plano-analytics/plano-analytics.component";
|
|
90
|
+
import * as i89 from "./components/planogram/plano-analytics/date-range-picker/date-range-picker.component";
|
|
91
|
+
import * as i90 from "./components/planogram/plano-analytics/fixture-analytics/fixture-analytics.component";
|
|
92
|
+
import * as i91 from "./components/planogram/plano-analytics/analytics-popup/analytics-popup.component";
|
|
93
|
+
import * as i92 from "./tango-store-builder-routing.module";
|
|
94
|
+
import * as i93 from "./components/reactive-select/reactive-select.component";
|
|
95
|
+
import * as i94 from "@angular/common";
|
|
96
|
+
import * as i95 from "@angular/forms";
|
|
97
|
+
import * as i96 from "tango-app-ui-shared";
|
|
98
|
+
import * as i97 from "@angular/cdk/drag-drop";
|
|
99
|
+
import * as i98 from "@ng-bootstrap/ng-bootstrap";
|
|
100
|
+
import * as i99 from "./pipes/time-ago.pipe";
|
|
101
|
+
import * as i100 from "ngx-drag-drop";
|
|
102
|
+
import * as i101 from "./components/manage-store-plano/template-basic-details/template-basic-details.component";
|
|
103
|
+
import * as i102 from "./components/manage-store-plano/template-products/template-products.component";
|
|
104
|
+
import * as i103 from "./components/manage-store-plano/template-vms/template-vms.component";
|
|
105
|
+
import * as i104 from "./components/fixture-template-tree/fixture-template-tree.component";
|
|
106
|
+
import * as i105 from "./components/store-plano/store-plano-tree-view/store-plano-tree-view.component";
|
|
107
|
+
import * as i106 from "./components/planogram/plano-table/plano-filter/plano-filter.component";
|
|
108
|
+
import * as i107 from "./components/manage-store-plano/verification-feedback/fixture/fixture.component";
|
|
109
|
+
import * as i108 from "./components/multiselect-chip-dropdown/multiselect-chip-dropdown.component";
|
|
110
|
+
import * as i109 from "./components/planogram/plano-overview/plano-comparison/plano-comparison.component";
|
|
111
|
+
import * as i110 from "./components/fixture-overview-panel/fixture-overview-panel.component";
|
|
112
|
+
import * as i111 from "./components/manage-store-plano/verification-feedback/editable-fixture/editable-fixture.component";
|
|
113
|
+
import * as i112 from "./components/collection-update-ai/find-replace-table/find-replace-table.component";
|
|
114
|
+
import * as i113 from "@angular/router";
|
|
115
|
+
import * as i114 from "@angular/material/autocomplete";
|
|
116
|
+
import * as i115 from "ngx-daterangepicker-material";
|
|
117
|
+
import * as i116 from "./components/onboard-store-plano/onboard-fixture/onboard-fixture.component";
|
|
118
|
+
import * as i117 from "./components/ivm-logic-explorer/ivm-logic-explorer.component";
|
|
119
|
+
import * as i118 from "./components/manage-store-plano/popups/schedule-task-popup/schedule-task-popup.component";
|
|
120
|
+
import * as i119 from "./components/date-picker/date-picker.component";
|
|
121
|
+
import * as i120 from "./components/fixture-preview/fixture-preview.component";
|
|
122
|
+
import * as i121 from "./components/collection-update-ai/components/store-select/store-select.component";
|
|
123
|
+
import * as i122 from "./components/popups/publish-plano-modal/publish-plano-modal.component";
|
|
124
|
+
import * as i123 from "./components/popups/set-current-plano-modal/set-current-plano-modal.component";
|
|
125
|
+
import * as i124 from "./components/popups/edit-revision-name-modal/edit-revision-name-modal.component";
|
|
123
126
|
export declare class TangoStoreBuilderModule {
|
|
124
127
|
static ɵfac: i0.ɵɵFactoryDeclaration<TangoStoreBuilderModule, never>;
|
|
125
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<TangoStoreBuilderModule, [typeof i1.LayoutBuilderComponent, typeof i2.CreateLayoutComponent, typeof i3.LayoutSummaryComponent, typeof i4.StoreLayoutTableComponent, typeof i5.CustomSelectComponent, typeof i6.StoreOffcanvasComponentComponent, typeof i7.AddFloorComponent, typeof i8.ClearAllStepsComponent, typeof i9.DeleteLayoutComponent, typeof i10.CompleteLayoutComponent, typeof i11.StoreBuilderComponent, typeof i12.CreateStoreComponent, typeof i13.LayoutElementsComponent, typeof i14.ElementFormComponent, typeof i15.VisualizeVmDataComponent, typeof i16.ManageStorePlanoComponent, typeof i17.OnboardStorePlanoComponent, typeof i18.FixtureTemplateComponent, typeof i19.FixtureTemplateTableComponent, typeof i20.TemplateVmsComponent, typeof i21.TemplateSummaryComponent, typeof i22.PlanoLibraryComponent, typeof i23.FixtureLibraryComponent, typeof i24.VmLibraryComponent, typeof i25.ProductLibraryComponent, typeof i26.CreateProductComponent, typeof i27.PlanoConfigurationsComponent, typeof i28.FixtureBulkUploadComponent, typeof i29.CreateFixtureModalComponent, typeof i30.BulkUploadFixtureTemplateComponent, typeof i31.CreateFixtureTemplateComponent, typeof i32.BulkUploadPlanogramComponent, typeof i33.AddVmTypeComponent, typeof i34.VMBulkUploadComponent, typeof i35.CustomFilterComponent, typeof i36.PopupsComponent, typeof i37.ManageStorePlanoFeedbackComponent, typeof i38.ConfirmationPopupComponent, typeof i39.PublishTaskPopupComponent, typeof i40.DeleteConfirmationComponent, typeof i41.CompleteConfirmationComponent, typeof i42.ExitConfirmationComponent, typeof i43.RevokeConfirmationComponent, typeof i44.CannotPerformComponent, typeof i45.LayoutEditConfirmationComponent, typeof i46.PlanoRolloutTableComponent, typeof i47.PlanoVerificationTableComponent, typeof i48.PlanoOnboardTableComponent, typeof i49.ManagePlanoComponent, typeof i50.PlanoRolloutComponent, typeof i51.PublishRolloutPopupComponent, typeof i52.RolloutFeedbackComponent, typeof i53.VerificationFeedbackComponent, typeof i54.ZoneVerificationFeedbackComponent, typeof i55.ZoneEditableFixtureComponent, typeof i56.ActionConfirmPopupComponent, typeof i57.TemplateAssignStoresComponent, typeof i58.PreviewModalComponent, typeof i59.FindAndReplaceComponent, typeof i60.CustomsingleSelectComponent, typeof i61.VariantPopupComponent, typeof i62.PublishConfirmationComponent, typeof i63.StoreTaskRevokeComponent, typeof i64.PlanoMigrateComponent, typeof i65.CadRenderComponent, typeof i66.AllowEditComponent, typeof i67.DeleteTaskComponent, typeof i68.UpdateFixtureTypeComponent, typeof i69.ModifyFixtureNumbersComponent, typeof i70.
|
|
128
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<TangoStoreBuilderModule, [typeof i1.LayoutBuilderComponent, typeof i2.CreateLayoutComponent, typeof i3.LayoutSummaryComponent, typeof i4.StoreLayoutTableComponent, typeof i5.CustomSelectComponent, typeof i6.StoreOffcanvasComponentComponent, typeof i7.AddFloorComponent, typeof i8.ClearAllStepsComponent, typeof i9.DeleteLayoutComponent, typeof i10.CompleteLayoutComponent, typeof i11.StoreBuilderComponent, typeof i12.CreateStoreComponent, typeof i13.LayoutElementsComponent, typeof i14.ElementFormComponent, typeof i15.VisualizeVmDataComponent, typeof i16.ManageStorePlanoComponent, typeof i17.OnboardStorePlanoComponent, typeof i18.FixtureTemplateComponent, typeof i19.FixtureTemplateTableComponent, typeof i20.TemplateVmsComponent, typeof i21.TemplateSummaryComponent, typeof i22.PlanoLibraryComponent, typeof i23.FixtureLibraryComponent, typeof i24.VmLibraryComponent, typeof i25.ProductLibraryComponent, typeof i26.CreateProductComponent, typeof i27.PlanoConfigurationsComponent, typeof i28.FixtureBulkUploadComponent, typeof i29.CreateFixtureModalComponent, typeof i30.BulkUploadFixtureTemplateComponent, typeof i31.CreateFixtureTemplateComponent, typeof i32.BulkUploadPlanogramComponent, typeof i33.AddVmTypeComponent, typeof i34.VMBulkUploadComponent, typeof i35.CustomFilterComponent, typeof i36.PopupsComponent, typeof i37.ManageStorePlanoFeedbackComponent, typeof i38.ConfirmationPopupComponent, typeof i39.PublishTaskPopupComponent, typeof i40.DeleteConfirmationComponent, typeof i41.CompleteConfirmationComponent, typeof i42.ExitConfirmationComponent, typeof i43.RevokeConfirmationComponent, typeof i44.CannotPerformComponent, typeof i45.LayoutEditConfirmationComponent, typeof i46.PlanoRolloutTableComponent, typeof i47.PlanoVerificationTableComponent, typeof i48.PlanoOnboardTableComponent, typeof i49.ManagePlanoComponent, typeof i50.PlanoRolloutComponent, typeof i51.PublishRolloutPopupComponent, typeof i52.RolloutFeedbackComponent, typeof i53.VerificationFeedbackComponent, typeof i54.ZoneVerificationFeedbackComponent, typeof i55.ZoneEditableFixtureComponent, typeof i56.ActionConfirmPopupComponent, typeof i57.TemplateAssignStoresComponent, typeof i58.PreviewModalComponent, typeof i59.FindAndReplaceComponent, typeof i60.CustomsingleSelectComponent, typeof i61.VariantPopupComponent, typeof i62.PublishConfirmationComponent, typeof i63.StoreTaskRevokeComponent, typeof i64.PlanoMigrateComponent, typeof i65.CadRenderComponent, typeof i66.AllowEditComponent, typeof i67.DeleteTaskComponent, typeof i68.UpdateFixtureTypeComponent, typeof i69.ModifyFixtureNumbersComponent, typeof i70.SwapTemplateComponent, typeof i71.MoveBucketComponent, typeof i72.CadFilesComponent, typeof i73.PlanoDataExportComponent, typeof i74.StoreExportsComponent, typeof i75.FixtureProductsComponent, typeof i76.ZoneProductsComponent, typeof i77.ZoneAnalyticsComponent, typeof i78.ToolsParentComponent, typeof i79.PlanoTableComponent, typeof i80.PlanoDetailsParentComponent, typeof i81.MerchComplianceComponent, typeof i82.PlanoOverviewComponent, typeof i83.FixtureOverviewComponent, typeof i84.TemplateDetailsComponent, typeof i85.ProductLocatorComponent, typeof i86.MisplacedProductFixtureComponent, typeof i87.ProductZoneLocatorComponent, typeof i88.PlanoAnalyticsComponent, typeof i89.DateRangePickerComponent, typeof i90.FixtureAnalyticsComponent, typeof i91.AnalyticsPopupComponent], [typeof i92.TangoStoreBuilderRoutingModule, typeof i93.ReactiveSelectComponent, typeof i94.CommonModule, typeof i95.FormsModule, typeof i96.CommonSharedModule, typeof i95.ReactiveFormsModule, typeof i97.DragDropModule, typeof i98.NgbTooltipModule, typeof i98.NgbAccordionModule, typeof i99.TimeAgoPipe, typeof i100.DndModule, typeof i101.InstanceBasicDetailsComponent, typeof i102.InstanceProductsComponent, typeof i103.InstanceVmsComponent, typeof i104.TemplateTreeComponent, typeof i105.StorePlanoTreeViewComponent, typeof i106.PlanoFilterComponent, typeof i107.FixtureComponent, typeof i108.MultiselectChipDropdownComponent, typeof i98.NgbOffcanvasModule, typeof i109.PlanoComparisonComponent, typeof i110.FixtureOverviewPanelComponent, typeof i111.EditableFixtureComponent, typeof i112.FindReplaceTableComponent, typeof i113.RouterModule, typeof i114.MatAutocompleteModule, typeof i115.NgxDaterangepickerMd, typeof i116.OnboardFixtureComponent, typeof i117.IvmLogicExplorerComponent, typeof i118.ScheduleTaskPopupComponent, typeof i119.DatePickerComponent, typeof i120.FixturePreviewComponent, typeof i121.StoreSelectComponent, typeof i98.NgbDropdownModule, typeof i122.PublishPlanoModalComponent, typeof i123.SetCurrentPlanoModalComponent, typeof i124.EditRevisionNameModalComponent], never>;
|
|
126
129
|
static ɵinj: i0.ɵɵInjectorDeclaration<TangoStoreBuilderModule>;
|
|
127
130
|
}
|