tango-app-ui-store-builder 1.2.17 → 1.2.18
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/access-denied/access-denied.component.mjs +31 -0
- package/esm2022/lib/components/collection-update-ai/collection-update-ai.component.mjs +3 -3
- package/esm2022/lib/components/collection-update-ai/find-replace-layout/prepare-template/prepare-template.component.mjs +3 -3
- package/esm2022/lib/components/collection-update-ai/find-replace-layout/review-replace/review-replace.component.mjs +3 -3
- package/esm2022/lib/components/fixture-template/template-assign-stores/preview-modal/preview-modal.component.mjs +3 -3
- package/esm2022/lib/components/fixture-template/template-assign-stores/template-assign-stores.component.mjs +3 -3
- package/esm2022/lib/components/fixture-template-table/find-and-replace/find-and-replace.component.mjs +3 -3
- package/esm2022/lib/components/fixture-template-table/fixture-template-table.component.mjs +25 -3
- package/esm2022/lib/components/fixture-template-tree/fixture-template-tree.component.mjs +3 -3
- package/esm2022/lib/components/manage-store-plano/manage-store-plano.component.mjs +3 -3
- package/esm2022/lib/components/manage-store-plano/plano-rollout/plano-rollout.component.mjs +3 -3
- package/esm2022/lib/components/manage-store-plano/verification-feedback/verification-feedback.component.mjs +9 -3
- package/esm2022/lib/components/manage-store-plano/zone-verification-feedback/zone-verification-feedback.component.mjs +9 -3
- package/esm2022/lib/components/onboard-store-plano/onboard-store-plano.component.mjs +133 -21
- package/esm2022/lib/components/plano-configurations/plano-configurations.component.mjs +8 -3
- package/esm2022/lib/components/plano-library/fixture-library/fixture-library.component.mjs +28 -5
- package/esm2022/lib/components/plano-tools/cad-render/cad-render.component.mjs +3 -3
- package/esm2022/lib/components/plano-tools/delete-floor/delete-floor.component.mjs +3 -3
- package/esm2022/lib/components/plano-tools/layout-touchup/layout-touchup.component.mjs +3 -3
- package/esm2022/lib/components/plano-tools/plano-migrate/plano-migrate.component.mjs +3 -3
- package/esm2022/lib/components/plano-tools/tool-page-header/tool-page-header.component.mjs +3 -3
- package/esm2022/lib/components/plano-tools/tools-parent/tools-parent.component.mjs +3 -3
- package/esm2022/lib/components/planogram/merch-compliance/merch-compliance.component.mjs +3 -3
- package/esm2022/lib/components/planogram/merch-compliance/product-locator/product-locator.component.mjs +3 -3
- package/esm2022/lib/components/planogram/plano-overview/plano-comparison/plano-comparison.component.mjs +3 -3
- package/esm2022/lib/components/planogram/plano-overview/plano-overview.component.mjs +3 -3
- package/esm2022/lib/components/popups/publish-plano-modal/publish-plano-modal.component.mjs +1 -1
- package/esm2022/lib/components/store-plano/store-plano-tree-view/store-plano-tree-view.component.mjs +3 -3
- package/esm2022/lib/components/store-plano/store-plano.component.mjs +3 -3
- package/esm2022/lib/functions/feature-access.guard.mjs +20 -0
- package/esm2022/lib/functions/plano.function.mjs +22 -1
- package/esm2022/lib/services/store-builder.service.mjs +15 -3
- package/esm2022/lib/tango-store-builder-routing.module.mjs +11 -1
- package/esm2022/lib/tango-store-builder.module.mjs +5 -2
- package/fesm2022/tango-app-ui-store-builder.mjs +318 -61
- package/fesm2022/tango-app-ui-store-builder.mjs.map +1 -1
- package/lib/components/access-denied/access-denied.component.d.ts +18 -0
- package/lib/components/fixture-template-table/fixture-template-table.component.d.ts +6 -0
- package/lib/components/manage-plano/rollout-table/rollout-table.component.d.ts +2 -2
- package/lib/components/manage-plano/verification-table/verification-table.component.d.ts +5 -5
- package/lib/components/manage-store-plano/verification-feedback/verification-feedback.component.d.ts +1 -0
- package/lib/components/manage-store-plano/zone-verification-feedback/zone-verification-feedback.component.d.ts +1 -0
- package/lib/components/onboard-store-plano/onboard-store-plano.component.d.ts +8 -0
- package/lib/components/plano-library/fixture-library/fixture-library.component.d.ts +5 -1
- package/lib/functions/feature-access.guard.d.ts +9 -0
- package/lib/functions/plano.function.d.ts +9 -0
- package/lib/services/store-builder.service.d.ts +6 -0
- package/lib/tango-store-builder.module.d.ts +38 -37
- package/package.json +1 -1
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { ActivatedRoute } from '@angular/router';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
/**
|
|
5
|
+
* Shared "Access denied" panel for the email-gated features. Reused two ways:
|
|
6
|
+
* - Inline, with [feature] bound (e.g. inside the Find & Replace tab).
|
|
7
|
+
* - As a route component (the findReplaceAccessGuard redirect target), reading
|
|
8
|
+
* the feature name from the `feature` query param.
|
|
9
|
+
* Mirrors the access-denied markup used by the Looks page.
|
|
10
|
+
*/
|
|
11
|
+
export declare class AccessDeniedComponent implements OnInit {
|
|
12
|
+
private route;
|
|
13
|
+
feature: string;
|
|
14
|
+
constructor(route: ActivatedRoute);
|
|
15
|
+
ngOnInit(): void;
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AccessDeniedComponent, never>;
|
|
17
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AccessDeniedComponent, "lib-access-denied", never, { "feature": { "alias": "feature"; "required": false; }; }, {}, never, never, false, never>;
|
|
18
|
+
}
|
|
@@ -22,6 +22,8 @@ export declare class FixtureTemplateTableComponent implements OnInit, OnDestroy
|
|
|
22
22
|
viewMode: "list" | "grid" | "tree" | string;
|
|
23
23
|
fixtureTemplateChildList: any;
|
|
24
24
|
activeTab: string;
|
|
25
|
+
frAccessChecked: boolean;
|
|
26
|
+
frAllowed: boolean;
|
|
25
27
|
sortedColumn: string;
|
|
26
28
|
sortOrder: number;
|
|
27
29
|
childSortedColumn: string;
|
|
@@ -54,6 +56,10 @@ export declare class FixtureTemplateTableComponent implements OnInit, OnDestroy
|
|
|
54
56
|
ngOnInit(): void;
|
|
55
57
|
getVmsList(): Promise<void>;
|
|
56
58
|
setPageData(): void;
|
|
59
|
+
/** Resolve whether the session user may use Find & Replace. Never throws.
|
|
60
|
+
* Hides the tab when denied; the tab content falls back to an access-denied
|
|
61
|
+
* panel for anyone who deep-links to ?tab=find-replace. */
|
|
62
|
+
private checkFindReplaceAccess;
|
|
57
63
|
getFixtureLibList(): void;
|
|
58
64
|
getFixtureTemplatesList(): void;
|
|
59
65
|
getBrandsList(): void;
|
|
@@ -54,8 +54,8 @@ 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): "
|
|
58
|
-
getTaskTooltip(data: any, type: string): "Yet to Assign" | "Task Assigned" | "Review Pending" |
|
|
57
|
+
getTaskStatus(data: any, type: string): "completed" | "yetToAssign" | "taskAssigned" | "reviewPending" | undefined;
|
|
58
|
+
getTaskTooltip(data: any, type: string): "Completed" | "Yet to Assign" | "Task Assigned" | "Review Pending" | undefined;
|
|
59
59
|
showBreach(data: any, type: string): boolean;
|
|
60
60
|
updateQueryParams(): void;
|
|
61
61
|
ngOnDestroy(): void;
|
|
@@ -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): "
|
|
58
|
-
getTaskTooltip(data: any, type: string): "Yet to Assign" | "Task Assigned" | "Review Pending" | "
|
|
59
|
-
getZoneStatus(data: any): "
|
|
57
|
+
getTaskStatus(data: any, type: string): "completed" | "yetToAssign" | "taskAssigned" | "reviewPending" | undefined;
|
|
58
|
+
getTaskTooltip(data: any, type: string): "Completed" | "Yet to Assign" | "Task Assigned" | "Review Pending" | "Task Scheduled" | undefined;
|
|
59
|
+
getZoneStatus(data: any): "completed" | "yetToAssign" | "taskAssigned" | "reviewPending" | "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): "Yet to Assign" | "Task Assigned" | "Review Pending" | "
|
|
64
|
-
getStatusBadge(data: any): "
|
|
63
|
+
getStatus(data: any): "Completed" | "Yet to Assign" | "Task Assigned" | "Review Pending" | "Ready to Publish" | "Published" | "Task Scheduled" | undefined;
|
|
64
|
+
getStatusBadge(data: any): "completed" | "yetToAssign" | "taskAssigned" | "reviewPending" | "primaryBadgeStyle" | "bg-success" | undefined;
|
|
65
65
|
getSubmit(data: any): boolean;
|
|
66
66
|
updateQueryParams(): void;
|
|
67
67
|
ngOnDestroy(): void;
|
package/lib/components/manage-store-plano/verification-feedback/verification-feedback.component.d.ts
CHANGED
|
@@ -23,6 +23,7 @@ export declare class VerificationFeedbackComponent implements OnInit, OnChanges,
|
|
|
23
23
|
currentFixtureIndex: number;
|
|
24
24
|
planoFixture: any;
|
|
25
25
|
aiFixture: any;
|
|
26
|
+
get planoFixtureCapacity(): number;
|
|
26
27
|
selectedImageForPreview: string | null;
|
|
27
28
|
imagePreviewZoom: number;
|
|
28
29
|
imagePreviewPanX: number;
|
|
@@ -20,6 +20,7 @@ export declare class ZoneVerificationFeedbackComponent implements OnChanges {
|
|
|
20
20
|
constructor(ngbModal: NgbModal);
|
|
21
21
|
planoFixture: any;
|
|
22
22
|
zoneFixture: any;
|
|
23
|
+
get planoFixtureCapacity(): number;
|
|
23
24
|
currentFixtureIndex: number;
|
|
24
25
|
selectedImageForPreview: string | null;
|
|
25
26
|
imagePreviewZoom: number;
|
|
@@ -118,12 +118,20 @@ export declare class OnboardStorePlanoComponent implements AfterViewInit, OnDest
|
|
|
118
118
|
private similarityRatio;
|
|
119
119
|
private isLibraryMatch;
|
|
120
120
|
validateFixtures(): void;
|
|
121
|
+
private readonly allocationExemptGroups;
|
|
122
|
+
private isAllocationExempt;
|
|
123
|
+
private hasBrandValue;
|
|
124
|
+
private hasZoneWithoutAllocation;
|
|
125
|
+
validateZoneAllocations(): void;
|
|
121
126
|
get hasInvalidHeaderFixtures(): boolean;
|
|
122
127
|
get invalidHeaderFixtureCount(): number;
|
|
123
128
|
get hasInvalidLibraryFixtures(): boolean;
|
|
124
129
|
get invalidLibraryFixtureCount(): number;
|
|
125
130
|
get hasInvalidFixtures(): boolean;
|
|
126
131
|
get invalidFixturesTooltip(): string;
|
|
132
|
+
get hasUnallocatedZoneFixtures(): boolean;
|
|
133
|
+
get unallocatedZoneFixtureCount(): number;
|
|
134
|
+
get unallocatedZonesTooltip(): string;
|
|
127
135
|
get isEditLayoutAllowed(): boolean;
|
|
128
136
|
renderFloor(update?: boolean): Promise<void>;
|
|
129
137
|
drawInitialContent(): Promise<void>;
|
|
@@ -40,11 +40,15 @@ export declare class FixtureLibraryComponent implements OnInit, OnDestroy {
|
|
|
40
40
|
isFilterApplied: boolean;
|
|
41
41
|
isPageLoading: boolean;
|
|
42
42
|
isError: boolean;
|
|
43
|
+
accessChecked: boolean;
|
|
44
|
+
allowed: boolean;
|
|
43
45
|
private readonly destroy$;
|
|
44
46
|
private libSub?;
|
|
45
47
|
constructor(ngbModal: NgbModal, router: Router, route: ActivatedRoute, storeBuilderService: StoreBuilderService, gs: GlobalStateService, toast: ToastService, pageInfo: PageInfoService);
|
|
46
|
-
ngOnInit(): void
|
|
48
|
+
ngOnInit(): Promise<void>;
|
|
47
49
|
setPageData(): void;
|
|
50
|
+
/** Resolve whether the session user may access the Fixture Library. Never throws. */
|
|
51
|
+
private checkAccess;
|
|
48
52
|
getFixturesList(): void;
|
|
49
53
|
getFixtureSizesList(): void;
|
|
50
54
|
downloadEmptyTemplate(): void;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { CanActivateFn } from '@angular/router';
|
|
2
|
+
/**
|
|
3
|
+
* Route guard for the Find & Replace pages. Allows navigation only when the
|
|
4
|
+
* session user's email is in the planostaticdatas `allowedFindReplaceUsers`
|
|
5
|
+
* allowlist (checked server-side via StoreBuilderService.getFindReplaceAccess).
|
|
6
|
+
* Denied users — and any error resolving access — are redirected to the shared
|
|
7
|
+
* Access-denied view. Same email-based mechanism the Looks feature uses.
|
|
8
|
+
*/
|
|
9
|
+
export declare const findReplaceAccessGuard: CanActivateFn;
|
|
@@ -20,4 +20,13 @@ export declare function uniqueFieldInFormArrayValidator(fieldName: string): Vali
|
|
|
20
20
|
export declare const getNameFromEmail: (email: string) => string;
|
|
21
21
|
export declare const indianPincodeValidator: () => ValidatorFn;
|
|
22
22
|
export declare const getFixtureCanvasLabel: (fixture: any) => string;
|
|
23
|
+
/**
|
|
24
|
+
* Computes a fixture's product capacity as the live sum of its individual
|
|
25
|
+
* shelf capacities, mirroring the backend rule: a tray holds
|
|
26
|
+
* productPerShelf x trayRows, a plain shelf holds productPerShelf, and
|
|
27
|
+
* VM-only shelves carry no products. Always derive the displayed "Products"
|
|
28
|
+
* count from this (the shelf config) rather than the stored fixtureCapacity,
|
|
29
|
+
* which can be stale relative to the current shelves.
|
|
30
|
+
*/
|
|
31
|
+
export declare const getFixtureProductCapacity: (shelfConfig: any) => number;
|
|
23
32
|
export declare const lightenColor: (hex: string, amount?: number) => string;
|
|
@@ -282,6 +282,12 @@ export declare class StoreBuilderService implements OnDestroy {
|
|
|
282
282
|
storeNames: string[];
|
|
283
283
|
vmName: string;
|
|
284
284
|
}): import("rxjs").Observable<Object>;
|
|
285
|
+
/** Whether the current session user may access Find & Replace
|
|
286
|
+
* (email present in planostaticdatas `allowedFindReplaceUsers`). */
|
|
287
|
+
getFindReplaceAccess(): import("rxjs").Observable<Object>;
|
|
288
|
+
/** Whether the current session user may access the Fixture Library
|
|
289
|
+
* (email present in planostaticdatas `allowedFixtureLibraryUsers`). */
|
|
290
|
+
getFixtureLibraryAccess(): import("rxjs").Observable<Object>;
|
|
285
291
|
/** Whether the current session user may access the Looks feature
|
|
286
292
|
* (email present in planostaticdatas `allowedLookUsers`). */
|
|
287
293
|
getLookAccess(): import("rxjs").Observable<Object>;
|
|
@@ -96,44 +96,45 @@ import * as i94 from "./components/planogram/plano-analytics/fixture-analytics/f
|
|
|
96
96
|
import * as i95 from "./components/planogram/plano-analytics/analytics-popup/analytics-popup.component";
|
|
97
97
|
import * as i96 from "./components/look-plano-collection/look-plano-collection.component";
|
|
98
98
|
import * as i97 from "./components/look-plano-collection-form/look-plano-collection-form.component";
|
|
99
|
-
import * as i98 from "./
|
|
100
|
-
import * as i99 from "./
|
|
101
|
-
import * as i100 from "
|
|
102
|
-
import * as i101 from "@angular/
|
|
103
|
-
import * as i102 from "
|
|
104
|
-
import * as i103 from "
|
|
105
|
-
import * as i104 from "@
|
|
106
|
-
import * as i105 from "
|
|
107
|
-
import * as i106 from "
|
|
108
|
-
import * as i107 from "
|
|
109
|
-
import * as i108 from "./components/manage-store-plano/template-
|
|
110
|
-
import * as i109 from "./components/manage-store-plano/template-
|
|
111
|
-
import * as i110 from "./components/
|
|
112
|
-
import * as i111 from "./components/
|
|
113
|
-
import * as i112 from "./components/
|
|
114
|
-
import * as i113 from "./components/
|
|
115
|
-
import * as i114 from "./components/
|
|
116
|
-
import * as i115 from "./components/
|
|
117
|
-
import * as i116 from "./components/
|
|
118
|
-
import * as i117 from "./components/
|
|
119
|
-
import * as i118 from "./components/
|
|
120
|
-
import * as i119 from "
|
|
121
|
-
import * as i120 from "@angular/
|
|
122
|
-
import * as i121 from "
|
|
123
|
-
import * as i122 from "
|
|
124
|
-
import * as i123 from "./components/
|
|
125
|
-
import * as i124 from "./components/
|
|
126
|
-
import * as i125 from "./components/
|
|
127
|
-
import * as i126 from "./components/
|
|
128
|
-
import * as i127 from "./components/
|
|
129
|
-
import * as i128 from "./components/
|
|
130
|
-
import * as i129 from "./components/popups/
|
|
131
|
-
import * as i130 from "./components/popups/
|
|
132
|
-
import * as i131 from "./components/
|
|
133
|
-
import * as i132 from "./components/
|
|
134
|
-
import * as i133 from "./components/
|
|
99
|
+
import * as i98 from "./components/access-denied/access-denied.component";
|
|
100
|
+
import * as i99 from "./tango-store-builder-routing.module";
|
|
101
|
+
import * as i100 from "./components/reactive-select/reactive-select.component";
|
|
102
|
+
import * as i101 from "@angular/common";
|
|
103
|
+
import * as i102 from "@angular/forms";
|
|
104
|
+
import * as i103 from "tango-app-ui-shared";
|
|
105
|
+
import * as i104 from "@angular/cdk/drag-drop";
|
|
106
|
+
import * as i105 from "@ng-bootstrap/ng-bootstrap";
|
|
107
|
+
import * as i106 from "./pipes/time-ago.pipe";
|
|
108
|
+
import * as i107 from "ngx-drag-drop";
|
|
109
|
+
import * as i108 from "./components/manage-store-plano/template-basic-details/template-basic-details.component";
|
|
110
|
+
import * as i109 from "./components/manage-store-plano/template-products/template-products.component";
|
|
111
|
+
import * as i110 from "./components/manage-store-plano/template-vms/template-vms.component";
|
|
112
|
+
import * as i111 from "./components/fixture-template-tree/fixture-template-tree.component";
|
|
113
|
+
import * as i112 from "./components/store-plano/store-plano-tree-view/store-plano-tree-view.component";
|
|
114
|
+
import * as i113 from "./components/planogram/plano-table/plano-filter/plano-filter.component";
|
|
115
|
+
import * as i114 from "./components/manage-store-plano/verification-feedback/fixture/fixture.component";
|
|
116
|
+
import * as i115 from "./components/multiselect-chip-dropdown/multiselect-chip-dropdown.component";
|
|
117
|
+
import * as i116 from "./components/planogram/plano-overview/plano-comparison/plano-comparison.component";
|
|
118
|
+
import * as i117 from "./components/fixture-overview-panel/fixture-overview-panel.component";
|
|
119
|
+
import * as i118 from "./components/manage-store-plano/verification-feedback/editable-fixture/editable-fixture.component";
|
|
120
|
+
import * as i119 from "./components/collection-update-ai/find-replace-table/find-replace-table.component";
|
|
121
|
+
import * as i120 from "@angular/router";
|
|
122
|
+
import * as i121 from "@angular/material/autocomplete";
|
|
123
|
+
import * as i122 from "ngx-daterangepicker-material";
|
|
124
|
+
import * as i123 from "./components/onboard-store-plano/onboard-fixture/onboard-fixture.component";
|
|
125
|
+
import * as i124 from "./components/ivm-logic-explorer/ivm-logic-explorer.component";
|
|
126
|
+
import * as i125 from "./components/manage-store-plano/popups/schedule-task-popup/schedule-task-popup.component";
|
|
127
|
+
import * as i126 from "./components/date-picker/date-picker.component";
|
|
128
|
+
import * as i127 from "./components/fixture-preview/fixture-preview.component";
|
|
129
|
+
import * as i128 from "./components/collection-update-ai/components/store-select/store-select.component";
|
|
130
|
+
import * as i129 from "./components/popups/publish-plano-modal/publish-plano-modal.component";
|
|
131
|
+
import * as i130 from "./components/popups/set-current-plano-modal/set-current-plano-modal.component";
|
|
132
|
+
import * as i131 from "./components/popups/edit-revision-name-modal/edit-revision-name-modal.component";
|
|
133
|
+
import * as i132 from "./components/fixture-template/template-products/template-products.component";
|
|
134
|
+
import * as i133 from "./components/searchable-select/searchable-select.component";
|
|
135
|
+
import * as i134 from "./components/chips-input/chips-input.component";
|
|
135
136
|
export declare class TangoStoreBuilderModule {
|
|
136
137
|
static ɵfac: i0.ɵɵFactoryDeclaration<TangoStoreBuilderModule, never>;
|
|
137
|
-
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.DeleteFloorComponent, typeof i69.UpdateFixtureTypeComponent, typeof i70.ModifyFixtureNumbersComponent, typeof i71.SwapTemplateComponent, typeof i72.MoveBucketComponent, typeof i73.CadFilesComponent, typeof i74.LayoutTouchupComponent, typeof i75.TouchupEditorComponent, typeof i76.PlanoDataExportComponent, typeof i77.StoreExportsComponent, typeof i78.FixtureProductsComponent, typeof i79.ZoneProductsComponent, typeof i80.ZoneAnalyticsComponent, typeof i81.ToolsParentComponent, typeof i82.ToolPageHeaderComponent, typeof i83.PlanoTableComponent, typeof i84.PlanoDetailsParentComponent, typeof i85.MerchComplianceComponent, typeof i86.PlanoOverviewComponent, typeof i87.FixtureOverviewComponent, typeof i88.TemplateDetailsComponent, typeof i89.ProductLocatorComponent, typeof i90.MisplacedProductFixtureComponent, typeof i91.ProductZoneLocatorComponent, typeof i92.PlanoAnalyticsComponent, typeof i93.DateRangePickerComponent, typeof i94.FixtureAnalyticsComponent, typeof i95.AnalyticsPopupComponent, typeof i96.LookPlanoCollectionComponent, typeof i97.LookPlanoCollectionFormComponent], [typeof
|
|
138
|
+
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.DeleteFloorComponent, typeof i69.UpdateFixtureTypeComponent, typeof i70.ModifyFixtureNumbersComponent, typeof i71.SwapTemplateComponent, typeof i72.MoveBucketComponent, typeof i73.CadFilesComponent, typeof i74.LayoutTouchupComponent, typeof i75.TouchupEditorComponent, typeof i76.PlanoDataExportComponent, typeof i77.StoreExportsComponent, typeof i78.FixtureProductsComponent, typeof i79.ZoneProductsComponent, typeof i80.ZoneAnalyticsComponent, typeof i81.ToolsParentComponent, typeof i82.ToolPageHeaderComponent, typeof i83.PlanoTableComponent, typeof i84.PlanoDetailsParentComponent, typeof i85.MerchComplianceComponent, typeof i86.PlanoOverviewComponent, typeof i87.FixtureOverviewComponent, typeof i88.TemplateDetailsComponent, typeof i89.ProductLocatorComponent, typeof i90.MisplacedProductFixtureComponent, typeof i91.ProductZoneLocatorComponent, typeof i92.PlanoAnalyticsComponent, typeof i93.DateRangePickerComponent, typeof i94.FixtureAnalyticsComponent, typeof i95.AnalyticsPopupComponent, typeof i96.LookPlanoCollectionComponent, typeof i97.LookPlanoCollectionFormComponent, typeof i98.AccessDeniedComponent], [typeof i99.TangoStoreBuilderRoutingModule, typeof i100.ReactiveSelectComponent, typeof i101.CommonModule, typeof i102.FormsModule, typeof i103.CommonSharedModule, typeof i102.ReactiveFormsModule, typeof i104.DragDropModule, typeof i105.NgbTooltipModule, typeof i105.NgbAccordionModule, typeof i106.TimeAgoPipe, typeof i107.DndModule, typeof i108.InstanceBasicDetailsComponent, typeof i109.InstanceProductsComponent, typeof i110.InstanceVmsComponent, typeof i111.TemplateTreeComponent, typeof i112.StorePlanoTreeViewComponent, typeof i113.PlanoFilterComponent, typeof i114.FixtureComponent, typeof i115.MultiselectChipDropdownComponent, typeof i105.NgbOffcanvasModule, typeof i116.PlanoComparisonComponent, typeof i117.FixtureOverviewPanelComponent, typeof i118.EditableFixtureComponent, typeof i119.FindReplaceTableComponent, typeof i120.RouterModule, typeof i121.MatAutocompleteModule, typeof i122.NgxDaterangepickerMd, typeof i123.OnboardFixtureComponent, typeof i124.IvmLogicExplorerComponent, typeof i125.ScheduleTaskPopupComponent, typeof i126.DatePickerComponent, typeof i127.FixturePreviewComponent, typeof i128.StoreSelectComponent, typeof i105.NgbDropdownModule, typeof i129.PublishPlanoModalComponent, typeof i130.SetCurrentPlanoModalComponent, typeof i131.EditRevisionNameModalComponent, typeof i132.TemplateProductsComponent, typeof i133.SearchableSelectComponent, typeof i134.ChipsInputComponent], never>;
|
|
138
139
|
static ɵinj: i0.ɵɵInjectorDeclaration<TangoStoreBuilderModule>;
|
|
139
140
|
}
|