sf-i-events 1.0.713 → 1.0.715
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 +7 -4
- package/sf-i-events.js +659 -143
- package/src/sf-i-events.ts +586 -26
package/package.json
CHANGED
package/sf-i-events.d.ts
CHANGED
|
@@ -461,8 +461,11 @@ export declare class SfIEvents extends LitElement {
|
|
|
461
461
|
renderStatusHtml: (partStatus: string, lateStatus: string, complianceStatus: string, i: number) => string;
|
|
462
462
|
renderStatusString: (partStatus: string, lateStatus: string, complianceStatus: string) => string;
|
|
463
463
|
getGraphParam: (event: any) => string;
|
|
464
|
-
renderCalendarAnnotations: (event: any) => string;
|
|
464
|
+
renderCalendarAnnotations: (event: any, mmdd: string, i: number, j: number) => string;
|
|
465
465
|
renderEvents: (_firstDay: any, _endDay: any, iInit: number, iLast: number, showGraph: boolean, index: number, month: number, period: string, firstDate: any, parametersTitle: string) => string;
|
|
466
|
+
renderReporting: (event: any, mmddyyyy: any) => string;
|
|
467
|
+
renderListReporting: (listReportingContainer: HTMLDivElement, event: any, mmddyyyy: any, eventsContainer: HTMLDivElement) => void;
|
|
468
|
+
attachListReportingListeners: (eventsContainer: HTMLDivElement) => void;
|
|
466
469
|
renderStreamEvents: (index: number, month: number, year: number, showGraph?: boolean) => string;
|
|
467
470
|
renderThisEvents: (index: number, startDate: Date, showGraph?: boolean) => string;
|
|
468
471
|
renderRangeEvents: (firstDate: Date, count: number, eventsContainer: HTMLDivElement) => void;
|
|
@@ -565,8 +568,8 @@ export declare class SfIEvents extends LitElement {
|
|
|
565
568
|
renderPieCsv: (pieData: any, csv: string, param: string) => string;
|
|
566
569
|
renderGraph: (divContainer: HTMLDivElement, pieData: any, partData: any, lateData: any, complianceData: any, param: string) => void;
|
|
567
570
|
renderEventDetailShort: (compliance: any) => void;
|
|
568
|
-
fetchEventDetails: (listEvent: any, mmddyyyy: any, currentColumnButton: HTMLButtonElement | null) => Promise<void>;
|
|
569
|
-
renderEventDetail: (event: any, mmddyyyy: any, currentColumnButton: HTMLButtonElement | null) => void;
|
|
571
|
+
fetchEventDetails: (listEvent: any, mmddyyyy: any, currentColumnButton: HTMLButtonElement | null, eventsContainer: HTMLDivElement) => Promise<void>;
|
|
572
|
+
renderEventDetail: (event: any, mmddyyyy: any, currentColumnButton: HTMLButtonElement | null, eventsContainer: HTMLDivElement) => void;
|
|
570
573
|
renderCalendar: () => void;
|
|
571
574
|
matchesOnBoardingFilter: (country: string, state: string, subcategory: string, statute: string) => boolean;
|
|
572
575
|
applyAndReloadTagging: (e: any, colName: string, taggingArray: any, sourceArray: any, divElement: any) => void;
|
|
@@ -701,7 +704,7 @@ export declare class SfIEvents extends LitElement {
|
|
|
701
704
|
fetchDeleteReview: (eventId: string, mmddyyyy: string, entityId: string, locationId: string) => Promise<any>;
|
|
702
705
|
fetchStatuteDefinitionDetails: (statuteName: string) => Promise<void>;
|
|
703
706
|
fetchSearchDefinitions: (searchString: string, cursor?: string) => Promise<any>;
|
|
704
|
-
fetchReportFormat: (searchName: string, reportformatschema?: string, reportformatvalues?: string) => Promise<void>;
|
|
707
|
+
fetchReportFormat: (reportingContainer: HTMLDivElement, searchName: string, reportformatschema?: string, reportformatvalues?: string) => Promise<void>;
|
|
705
708
|
fetchSearchReportformats: (searchString: string, cursor?: string) => Promise<any>;
|
|
706
709
|
fetchSearchStatutes: (searchString: string, cursor?: string) => Promise<any>;
|
|
707
710
|
fetchSearchCompliances: (searchString: string, cursor: string | undefined, count: number, length: number) => Promise<any>;
|