@propriety/court-calendar 1.0.65 → 1.0.66
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/dist/helpers/cases.d.ts +1 -0
- package/dist/index.mjs +2115 -2111
- package/package.json +1 -1
- package/src/_components/Modal/CaseDetails/EvidenceRow.tsx +3 -3
- package/src/_components/Modal/DateDetails/CaseToolbar.tsx +1 -1
- package/src/_components/Modal/DateDetails/CaseViewer.tsx +3 -2
- package/src/_components/Toolbar/CaseFilter.tsx +1 -1
- package/src/helpers/cases.ts +7 -1
package/dist/helpers/cases.d.ts
CHANGED
|
@@ -2,4 +2,5 @@ import { CalendarFilterCtx, Case } from '../types';
|
|
|
2
2
|
export declare function isCaseSettled(c: Case, isVillage: boolean): boolean;
|
|
3
3
|
export declare function isCaseUploadedOrSettled(c: Case, isVillage: boolean): boolean;
|
|
4
4
|
export declare function isCaseMissingEvidence(c: Case): boolean;
|
|
5
|
+
export declare function hasCaseUnuploadedEvidence(c: Case): boolean;
|
|
5
6
|
export declare function filterCases(cases: Case[], filterCtx: CalendarFilterCtx, isVillage: boolean, selectedDate?: Date): Case[];
|