sf-i-events 1.0.936 → 1.0.938
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/package.json +1 -1
- package/sf-i-events.d.ts +5 -2
- package/sf-i-events.js +436 -39
- package/src/sf-i-events.ts +396 -39
- package/src/util.ts +16 -1
- package/util.d.ts +2 -0
- package/util.js +10 -1
package/package.json
CHANGED
package/sf-i-events.d.ts
CHANGED
|
@@ -303,6 +303,7 @@ export declare class SfIEvents extends LitElement {
|
|
|
303
303
|
[key: string]: boolean;
|
|
304
304
|
};
|
|
305
305
|
};
|
|
306
|
+
suspenseFlag: boolean;
|
|
306
307
|
tablecols: string[];
|
|
307
308
|
static styles: import("lit").CSSResult;
|
|
308
309
|
_SfIEventsC: any;
|
|
@@ -513,6 +514,7 @@ export declare class SfIEvents extends LitElement {
|
|
|
513
514
|
renderReporting: (event: any, mmddyyyy: any) => string;
|
|
514
515
|
renderListReporting: (listReportingContainer: HTMLDivElement, event: any, mmddyyyy: any, eventsContainer: HTMLDivElement) => void;
|
|
515
516
|
attachListReportingListeners: (eventsContainer: HTMLDivElement) => void;
|
|
517
|
+
attachReviewListeners: (eventsContainer: HTMLDivElement) => void;
|
|
516
518
|
renderStreamEvents: (index: number, month: number, year: number, showGraph?: boolean, showBackgroundButton?: boolean) => string;
|
|
517
519
|
renderThisEvents: (index: number, startDate: Date, showGraph?: boolean, showBackgroundButton?: boolean) => string;
|
|
518
520
|
renderRangeEvents: (firstDate: Date, count: number, eventsContainer: HTMLDivElement, showBackgroundButton?: boolean) => void;
|
|
@@ -640,8 +642,8 @@ export declare class SfIEvents extends LitElement {
|
|
|
640
642
|
fetchRCMResourceDetails: (listEvent: any, mmddyyyy: string) => Promise<void>;
|
|
641
643
|
renewRCMResource: (listEvent: any, reportformatvalues: any) => Promise<void>;
|
|
642
644
|
renderRCMResourceDetails: (listEvent: any, mmddyyyy: string) => Promise<void>;
|
|
643
|
-
fetchEventDetails: (listEvent: any, mmddyyyy: any, currentColumnButton: HTMLButtonElement | null, eventsContainer: HTMLDivElement, flagUploadGuidance?: boolean, listEventContainer?: HTMLDivElement | null, reportercomments?: string | null, approvercomments?: string | null, inputReportingPercentage?: string | null, selectReportedLocation?: string | null, documents?: any | null, dateOfCompletion?: string | null) => Promise<void>;
|
|
644
|
-
renderEventDetail: (event: any, mmddyyyy: any, currentColumnButton: HTMLButtonElement | null, eventsContainer: HTMLDivElement) => void;
|
|
645
|
+
fetchEventDetails: (listEvent: any, mmddyyyy: any, currentColumnButton: HTMLButtonElement | null, eventsContainer: HTMLDivElement, previousId?: string, nextId?: string, flagUploadGuidance?: boolean, listEventContainer?: HTMLDivElement | null, reportercomments?: string | null, approvercomments?: string | null, inputReportingPercentage?: string | null, selectReportedLocation?: string | null, documents?: any | null, dateOfCompletion?: string | null) => Promise<void>;
|
|
646
|
+
renderEventDetail: (event: any, mmddyyyy: any, currentColumnButton: HTMLButtonElement | null, eventsContainer: HTMLDivElement, previousId: string, nextId: string) => void;
|
|
645
647
|
renderCalendar: () => void;
|
|
646
648
|
matchesOnBoardingFilter: (country: string, state: string, subcategory: string, statute: string) => boolean;
|
|
647
649
|
applyAndReloadTagging: (e: any, colName: string, taggingArray: any, sourceArray: any, divElement: any) => void;
|
|
@@ -838,6 +840,7 @@ export declare class SfIEvents extends LitElement {
|
|
|
838
840
|
fetchRcmJobs: (complianceid: string) => Promise<any>;
|
|
839
841
|
fetchCalendarJobs: () => Promise<any>;
|
|
840
842
|
deleteFromSuspense: (suspenseKey: any, year: string) => Promise<any>;
|
|
843
|
+
markReviewed: (suspenseKey: any, year: string, review: boolean) => Promise<any>;
|
|
841
844
|
fetchSuspenseList: () => Promise<any>;
|
|
842
845
|
fetchDetail: (value: any) => Promise<void>;
|
|
843
846
|
fetchGetMappedCalendar: (year: string) => Promise<any>;
|