fansunited-management-components 1.27.0 → 1.28.0
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/index.es.js +3056 -3035
- package/index.umd.js +181 -181
- package/package.json +1 -1
- package/src/components/Buttons/SignoutButtton.d.ts +8 -0
- package/src/components/Calendars/CustomFlatpickrCalendar.d.ts +1 -0
- package/src/components/Calendars/MuiXDatePicker.d.ts +5 -0
- package/src/services/https/HttpsService.d.ts +2 -0
package/package.json
CHANGED
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Example component for Mui X date picker. The component will be commented out because it is not used in consumer projects yet.
|
|
3
|
+
* When used, the @mui/x-date-pickers package should be added to external dependencies in vite.config.ts.
|
|
4
|
+
* Also, all consumer projects should have the @mui/x-date-pickers package installed.
|
|
5
|
+
*/
|
|
@@ -58,4 +58,6 @@ export default class HttpsService extends Https {
|
|
|
58
58
|
updateBracketGame: (id: string, requestBody: BracketGameRequestBody) => Promise<Response>;
|
|
59
59
|
resolvePredictions: (gameId: string) => Promise<Response>;
|
|
60
60
|
exportLeadsPerEntity: (entityId: string) => Promise<Response>;
|
|
61
|
+
getLeadStatistics: (queryParams: Record<string, string> | null) => Promise<Response>;
|
|
62
|
+
exportLeads: (queryParams: Record<string, string> | null) => Promise<Response>;
|
|
61
63
|
}
|