sf-i-events 1.0.846 → 1.0.848
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/dev/index.html +760 -738
- package/package.json +1 -1
- package/sf-i-events.d.ts +3 -0
- package/sf-i-events.js +878 -103
- package/src/sf-i-events.ts +1060 -197
package/package.json
CHANGED
package/sf-i-events.d.ts
CHANGED
|
@@ -146,6 +146,7 @@ export declare class SfIEvents extends LitElement {
|
|
|
146
146
|
apiIdUsers: string;
|
|
147
147
|
apiIdTags: string;
|
|
148
148
|
apiIdNotices: string;
|
|
149
|
+
apiIdAgreements: string;
|
|
149
150
|
apiMethodList: string;
|
|
150
151
|
apiMethodDetail: string;
|
|
151
152
|
apiBodyList: string;
|
|
@@ -603,6 +604,7 @@ export declare class SfIEvents extends LitElement {
|
|
|
603
604
|
renderEventDetailShort: (compliance: any) => void;
|
|
604
605
|
fetchNoticeDetails: (listEvent: any) => Promise<void>;
|
|
605
606
|
renderNoticeDetails: (listEvent: any, mmddyyyy: string) => Promise<void>;
|
|
607
|
+
renderAgreementDetails: (listEvent: any, mmddyyyy: string) => Promise<void>;
|
|
606
608
|
fetchEventDetails: (listEvent: any, mmddyyyy: any, currentColumnButton: HTMLButtonElement | null, eventsContainer: HTMLDivElement, flagUploadGuidance?: boolean, listEventContainer?: HTMLDivElement | null) => Promise<void>;
|
|
607
609
|
renderEventDetail: (event: any, mmddyyyy: any, currentColumnButton: HTMLButtonElement | null, eventsContainer: HTMLDivElement) => void;
|
|
608
610
|
renderCalendar: () => void;
|
|
@@ -803,6 +805,7 @@ export declare class SfIEvents extends LitElement {
|
|
|
803
805
|
renderWithFeatures: (startDate?: string, endDate?: string, searchString?: string, list?: string, month?: string, year?: string) => Promise<void>;
|
|
804
806
|
fetchAndYearlyRenderUserCalendar_2: (startDate?: string, endDate?: string, searchString?: string, list?: string, month?: string, year?: string) => Promise<void>;
|
|
805
807
|
fetchAndRenderNotices: (startDate?: string, endDate?: string, searchString?: string, list?: string, month?: string, year?: string) => Promise<void>;
|
|
808
|
+
fetchAndRenderAgreements: (startDate?: string, endDate?: string, searchString?: string, list?: string, month?: string, year?: string) => Promise<void>;
|
|
806
809
|
fetchStatistics: (startDate: string | undefined, endDate: string | undefined, filtercriteria: string, filterid: string, subfiltercriteria: string, subfilterid: string) => Promise<any>;
|
|
807
810
|
fetchBulkReportingData: () => Promise<void>;
|
|
808
811
|
fetchUserCalendar: () => Promise<void>;
|