sf-i-events 1.0.804 → 1.0.806
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 +2 -1
- package/sf-i-events.js +398 -340
- package/src/sf-i-events.ts +423 -366
package/package.json
CHANGED
package/sf-i-events.d.ts
CHANGED
|
@@ -94,6 +94,7 @@ export declare class SfIEvents extends LitElement {
|
|
|
94
94
|
COLOR_PARTIALLY_COMPLIED: string;
|
|
95
95
|
COLOR_COMPLIED: string;
|
|
96
96
|
COLOR_COMPLIED_WITH_EXCEPTION: string;
|
|
97
|
+
COLOR_REPORTED_NON_COMPLIANCE: string;
|
|
97
98
|
STATUS_NOT_STARTED: string;
|
|
98
99
|
STATUS_PENDING_APPROVAL: string;
|
|
99
100
|
STATUS_REJECTED: string;
|
|
@@ -458,7 +459,7 @@ export declare class SfIEvents extends LitElement {
|
|
|
458
459
|
renderLatestCompliance: (mmddyyyy: string, event: any) => any;
|
|
459
460
|
getCompletenessStatus: (event: any) => "rejected" | "not-started" | "pending-approval" | "approved";
|
|
460
461
|
getTimelinessStatus: (mmdd: string, event: any, completeness: string) => "late-executed" | "late-reported" | "late-approved" | "past-due-date" | "in-time";
|
|
461
|
-
getComplianceStatus: (completeness: string, timeliness: string, percentage?: string) => "scheduled" | "not-complied" | "partially-complied" | "complied" | "complied-with-
|
|
462
|
+
getComplianceStatus: (completeness: string, timeliness: string, percentage?: string) => "scheduled" | "not-complied" | "partially-complied" | "complied" | "complied-with-gaps" | "reported-non-compliance";
|
|
462
463
|
numcalled: number;
|
|
463
464
|
updateStats: (event: any, partStatus: string, lateStatus: string, complianceStatus: string) => void;
|
|
464
465
|
renderCalendarGraphs: (showGraph: boolean, parametersTitle: string, showBackgroundButton: boolean) => string;
|