sf-i-events 1.0.770 → 1.0.772
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 +8 -8
- package/sf-i-events.js +139 -86
- package/src/sf-i-events.ts +138 -94
package/package.json
CHANGED
package/sf-i-events.d.ts
CHANGED
|
@@ -455,7 +455,7 @@ export declare class SfIEvents extends LitElement {
|
|
|
455
455
|
getComplianceStatus: (completeness: string, timeliness: string) => "scheduled" | "not-complied" | "partially-complied" | "complied";
|
|
456
456
|
numcalled: number;
|
|
457
457
|
updateStats: (event: any, partStatus: string, lateStatus: string, complianceStatus: string) => void;
|
|
458
|
-
renderCalendarGraphs: (showGraph: boolean, parametersTitle: string) => string;
|
|
458
|
+
renderCalendarGraphs: (showGraph: boolean, parametersTitle: string, showBackgroundButton: boolean) => string;
|
|
459
459
|
renderCalendarStatisticsGraphs: (showGraph: boolean, parametersTitle: string) => string;
|
|
460
460
|
renderCalendarContainerDivStart: (index: number) => string;
|
|
461
461
|
renderCalendarContainerDivEnd: () => string;
|
|
@@ -478,14 +478,14 @@ export declare class SfIEvents extends LitElement {
|
|
|
478
478
|
renderStatusString: (partStatus: string, lateStatus: string, complianceStatus: string) => string;
|
|
479
479
|
getGraphParam: (event: any) => string;
|
|
480
480
|
renderCalendarAnnotations: (event: any, mmdd: string, j: number) => string;
|
|
481
|
-
renderEvents: (_firstDay: any, _endDay: any, iInit: number, iLast: number, showGraph: boolean, index: number, month: number, period: string, firstDate: any, parametersTitle: string) => string;
|
|
481
|
+
renderEvents: (_firstDay: any, _endDay: any, iInit: number, iLast: number, showGraph: boolean, index: number, month: number, period: string, firstDate: any, parametersTitle: string, showBackgroundButton: boolean) => string;
|
|
482
482
|
renderStatistics: (_firstDay: any, _endDay: any, iInit: number, iLast: number, showGraph: boolean, index: number, month: number, period: string, firstDate: any, parametersTitle: string) => string;
|
|
483
483
|
renderReporting: (event: any, mmddyyyy: any) => string;
|
|
484
484
|
renderListReporting: (listReportingContainer: HTMLDivElement, event: any, mmddyyyy: any, eventsContainer: HTMLDivElement) => void;
|
|
485
485
|
attachListReportingListeners: (eventsContainer: HTMLDivElement) => void;
|
|
486
|
-
renderStreamEvents: (index: number, month: number, year: number, showGraph?: boolean) => string;
|
|
487
|
-
renderThisEvents: (index: number, startDate: Date, showGraph?: boolean) => string;
|
|
488
|
-
renderRangeEvents: (firstDate: Date, count: number, eventsContainer: HTMLDivElement) => void;
|
|
486
|
+
renderStreamEvents: (index: number, month: number, year: number, showGraph?: boolean, showBackgroundButton?: boolean) => string;
|
|
487
|
+
renderThisEvents: (index: number, startDate: Date, showGraph?: boolean, showBackgroundButton?: boolean) => string;
|
|
488
|
+
renderRangeEvents: (firstDate: Date, count: number, eventsContainer: HTMLDivElement, showBackgroundButton?: boolean) => void;
|
|
489
489
|
renderRangeStatistics: (firstDate: Date, count: number, eventsContainer: HTMLDivElement) => void;
|
|
490
490
|
renderStatisticsFilters: (eventsContainer: HTMLDivElement) => void;
|
|
491
491
|
renderSelectAllButtons: () => string;
|
|
@@ -560,9 +560,9 @@ export declare class SfIEvents extends LitElement {
|
|
|
560
560
|
renderFind: () => void;
|
|
561
561
|
renderCustom: () => void;
|
|
562
562
|
renderCustomViewer: () => void;
|
|
563
|
-
renderThis: (index
|
|
563
|
+
renderThis: (index: number | undefined, showGraph: boolean | undefined, showBackgroundButton: boolean) => void;
|
|
564
564
|
renderButtonRefresh: (eventsContainer: HTMLDivElement) => void;
|
|
565
|
-
renderStream: (index
|
|
565
|
+
renderStream: (index: number | undefined, showGraph: boolean | undefined, showBackgroundButton: boolean) => void;
|
|
566
566
|
attachTimelineFilterHandlers: (divContainer: HTMLDivElement) => void;
|
|
567
567
|
getCurrentYear: (mm: string) => string;
|
|
568
568
|
clearButtonSelection: () => void;
|
|
@@ -787,7 +787,7 @@ export declare class SfIEvents extends LitElement {
|
|
|
787
787
|
fetchDetail: (value: any) => Promise<void>;
|
|
788
788
|
fetchGetMappedCalendar: (year: string) => Promise<any>;
|
|
789
789
|
sleepFunction: (ms: number) => Promise<unknown>;
|
|
790
|
-
renderAppropriateStream: (startDate: string, endDate: string, showGraph?: boolean) => void;
|
|
790
|
+
renderAppropriateStream: (startDate: string, endDate: string, showGraph?: boolean, showBackgroundButton?: boolean) => void;
|
|
791
791
|
fetchRegisters: (searchString?: string) => Promise<any>;
|
|
792
792
|
renderWithFeatures: (startDate?: string, endDate?: string, searchString?: string, list?: string, month?: string) => Promise<void>;
|
|
793
793
|
fetchAndYearlyRenderUserCalendar_2: (startDate?: string, endDate?: string, searchString?: string, list?: string, month?: string) => Promise<void>;
|