tango-app-ui-store-builder 1.0.76 → 1.0.78
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/fixture-preview/fixture-preview.component.mjs +11 -0
- package/esm2022/lib/components/manage-store-plano/manage-store-plano.component.mjs +3 -3
- package/esm2022/lib/components/manage-store-plano/popups/schedule-task-popup/schedule-task-popup.component.mjs +2 -2
- package/esm2022/lib/components/onboard-store-plano/create-planogram/create-planogram.component.mjs +121 -58
- package/esm2022/lib/components/onboard-store-plano/onboard-fixture/onboard-fixture.component.mjs +5 -3
- package/esm2022/lib/components/onboard-store-plano/onboard-store-plano.component.mjs +7 -8
- package/fesm2022/tango-app-ui-store-builder.mjs +145 -74
- package/fesm2022/tango-app-ui-store-builder.mjs.map +1 -1
- package/lib/components/fixture-preview/fixture-preview.component.d.ts +5 -0
- package/lib/components/manage-plano/onboard-table/onboard-table.component.d.ts +1 -1
- 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/popups/schedule-task-popup/schedule-task-popup.component.d.ts +1 -1
- package/lib/components/onboard-store-plano/create-planogram/create-planogram.component.d.ts +3 -1
- package/lib/components/onboard-store-plano/onboard-store-plano.component.d.ts +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class FixturePreviewComponent {
|
|
3
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FixturePreviewComponent, never>;
|
|
4
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FixturePreviewComponent, "fixture-preview", never, {}, {}, never, never, true, never>;
|
|
5
|
+
}
|
|
@@ -57,7 +57,7 @@ export declare class PlanoOnboardTableComponent implements OnInit, OnDestroy {
|
|
|
57
57
|
onPageSizeChange(pageSize: number): void;
|
|
58
58
|
planoFloorDetails(data: any): string | 1;
|
|
59
59
|
getProgressValue(plano: any): 0 | 25;
|
|
60
|
-
getStatus(plano: any): "
|
|
60
|
+
getStatus(plano: any): "Draft" | "Allocation pending";
|
|
61
61
|
getStatusBadge(plano: any): any;
|
|
62
62
|
getPriorityFloor(plano: any): any;
|
|
63
63
|
getSubmit(data: any): boolean;
|
|
@@ -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): "Review Pending" | "Yet to Assign" | "Task Assigned" |
|
|
57
|
+
getTaskStatus(data: any, type: string): "completed" | "yetToAssign" | "reviewPending" | "taskAssigned" | undefined;
|
|
58
|
+
getTaskTooltip(data: any, type: string): "Completed" | "Review Pending" | "Yet to Assign" | "Task Assigned" | undefined;
|
|
59
59
|
showBreach(data: any, type: string): boolean;
|
|
60
60
|
updateQueryParams(): void;
|
|
61
61
|
ngOnDestroy(): void;
|
|
@@ -54,12 +54,12 @@ 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): "Review Pending" | "Yet to Assign" | "Task Assigned" | "
|
|
59
|
-
getProgressValue(data: any):
|
|
57
|
+
getTaskStatus(data: any, type: string): "completed" | "yetToAssign" | "reviewPending" | "taskAssigned" | undefined;
|
|
58
|
+
getTaskTooltip(data: any, type: string): "Completed" | "Review Pending" | "Yet to Assign" | "Task Assigned" | "Task Scheduled" | undefined;
|
|
59
|
+
getProgressValue(data: any): 25 | 100 | 50;
|
|
60
60
|
showBreach(data: any, type: string): boolean;
|
|
61
|
-
getStatus(data: any): "Review Pending" | "Yet to Assign" | "Task Assigned" | "
|
|
62
|
-
getStatusBadge(data: any): "
|
|
61
|
+
getStatus(data: any): "Completed" | "Review Pending" | "Yet to Assign" | "Task Assigned" | "Ready to Publish" | "Published" | "Task Scheduled" | undefined;
|
|
62
|
+
getStatusBadge(data: any): "completed" | "yetToAssign" | "reviewPending" | "taskAssigned" | "primaryBadgeStyle" | "bg-success" | undefined;
|
|
63
63
|
getSubmit(data: any): boolean;
|
|
64
64
|
updateQueryParams(): void;
|
|
65
65
|
ngOnDestroy(): void;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { OnInit } from "@angular/core";
|
|
2
2
|
import { NgbActiveModal } from "@ng-bootstrap/ng-bootstrap";
|
|
3
|
-
import { StoreBuilderService } from "
|
|
3
|
+
import { StoreBuilderService } from "../../../../services/store-builder.service";
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
export declare class ScheduleTaskPopupComponent implements OnInit {
|
|
6
6
|
private activeModal;
|
|
@@ -44,7 +44,7 @@ export declare class CreatePlanogramComponent implements OnInit, OnDestroy {
|
|
|
44
44
|
constructor(activeModal: NgbActiveModal, storeBuilderService: StoreBuilderService, toastService: ToastService, fb: FormBuilder);
|
|
45
45
|
ngOnInit(): Promise<void>;
|
|
46
46
|
ngOnDestroy(): void;
|
|
47
|
-
get isValidToCreatePlano():
|
|
47
|
+
get isValidToCreatePlano(): any;
|
|
48
48
|
get isModalBusy(): boolean;
|
|
49
49
|
getStoreList(): Promise<void>;
|
|
50
50
|
onStoreChange(): Promise<void>;
|
|
@@ -56,6 +56,8 @@ export declare class CreatePlanogramComponent implements OnInit, OnDestroy {
|
|
|
56
56
|
private loadCadProcessingAnimation;
|
|
57
57
|
private destroyCadProcessingAnimation;
|
|
58
58
|
onCreateStore(): Promise<void>;
|
|
59
|
+
private buildPendingStoreDetails;
|
|
60
|
+
private ensureStoreForPlanoCreation;
|
|
59
61
|
getSpocUserDetails(storeName: string): Promise<{
|
|
60
62
|
name: string;
|
|
61
63
|
email: any;
|
|
@@ -185,7 +185,7 @@ export declare class OnboardStorePlanoComponent implements AfterViewInit, OnDest
|
|
|
185
185
|
updateLayout(editMode?: boolean): Promise<void>;
|
|
186
186
|
onClickEdit(): void;
|
|
187
187
|
get getProgressValue(): 0 | 25;
|
|
188
|
-
get getStatusText(): "
|
|
188
|
+
get getStatusText(): "Draft" | "Allocation pending";
|
|
189
189
|
get getStatus(): any;
|
|
190
190
|
getElementNumber(group: any): number | null;
|
|
191
191
|
highlightFixture(group: any, blink?: boolean): void;
|