sf-i-events 1.0.712 → 1.0.714
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 +6 -4
- package/sf-i-events.js +695 -144
- package/src/sf-i-events.ts +621 -27
package/package.json
CHANGED
package/sf-i-events.d.ts
CHANGED
|
@@ -461,8 +461,10 @@ 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;
|
|
466
468
|
renderStreamEvents: (index: number, month: number, year: number, showGraph?: boolean) => string;
|
|
467
469
|
renderThisEvents: (index: number, startDate: Date, showGraph?: boolean) => string;
|
|
468
470
|
renderRangeEvents: (firstDate: Date, count: number, eventsContainer: HTMLDivElement) => void;
|
|
@@ -565,8 +567,8 @@ export declare class SfIEvents extends LitElement {
|
|
|
565
567
|
renderPieCsv: (pieData: any, csv: string, param: string) => string;
|
|
566
568
|
renderGraph: (divContainer: HTMLDivElement, pieData: any, partData: any, lateData: any, complianceData: any, param: string) => void;
|
|
567
569
|
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;
|
|
570
|
+
fetchEventDetails: (listEvent: any, mmddyyyy: any, currentColumnButton: HTMLButtonElement | null, eventsContainer: HTMLDivElement) => Promise<void>;
|
|
571
|
+
renderEventDetail: (event: any, mmddyyyy: any, currentColumnButton: HTMLButtonElement | null, eventsContainer: HTMLDivElement) => void;
|
|
570
572
|
renderCalendar: () => void;
|
|
571
573
|
matchesOnBoardingFilter: (country: string, state: string, subcategory: string, statute: string) => boolean;
|
|
572
574
|
applyAndReloadTagging: (e: any, colName: string, taggingArray: any, sourceArray: any, divElement: any) => void;
|
|
@@ -701,7 +703,7 @@ export declare class SfIEvents extends LitElement {
|
|
|
701
703
|
fetchDeleteReview: (eventId: string, mmddyyyy: string, entityId: string, locationId: string) => Promise<any>;
|
|
702
704
|
fetchStatuteDefinitionDetails: (statuteName: string) => Promise<void>;
|
|
703
705
|
fetchSearchDefinitions: (searchString: string, cursor?: string) => Promise<any>;
|
|
704
|
-
fetchReportFormat: (searchName: string, reportformatschema?: string, reportformatvalues?: string) => Promise<void>;
|
|
706
|
+
fetchReportFormat: (reportingContainer: HTMLDivElement, searchName: string, reportformatschema?: string, reportformatvalues?: string) => Promise<void>;
|
|
705
707
|
fetchSearchReportformats: (searchString: string, cursor?: string) => Promise<any>;
|
|
706
708
|
fetchSearchStatutes: (searchString: string, cursor?: string) => Promise<any>;
|
|
707
709
|
fetchSearchCompliances: (searchString: string, cursor: string | undefined, count: number, length: number) => Promise<any>;
|