hplx-feature-library 1.0.145 → 1.0.146
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/AlertPopup/index.js +5 -0
- package/dist/AlertPopup-CPKIp-41.cjs +32 -0
- package/dist/AlertPopup-CrMI2BnN.js +1069 -0
- package/dist/AllInvestigations/components/AllInvestigationsTable.d.ts +19 -0
- package/dist/AllInvestigations/index.d.ts +1 -0
- package/dist/AllInvestigations/index.js +4 -0
- package/dist/AllInvestigations/utils/test-tange-util.d.ts +8 -0
- package/dist/AllInvestigationsTable-DsVtVfGK.js +16958 -0
- package/dist/AllInvestigationsTable-_ZCcijVk.cjs +80 -0
- package/dist/Attachments/index.js +11153 -12657
- package/dist/CustomDropdown/index.js +256 -0
- package/dist/DateTimePicker/DateAndTimePicker/index.js +5907 -0
- package/dist/PediatricsCalculator/index.js +1 -1
- package/dist/PediatricsCalculatorTable-CnrU0s8_.cjs +1 -0
- package/dist/PediatricsCalculatorTable-DEwcZURh.js +832 -0
- package/dist/ReusableTable/ReusableTable.d.ts +3 -0
- package/dist/ReusableTable/ReusableTableConstants.d.ts +8 -0
- package/dist/ReusableTable/ReusableTableTypes.d.ts +96 -0
- package/dist/ReusableTable/components/EmptyTableContainer.d.ts +12 -0
- package/dist/ReusableTable/components/FilterCheckbox.d.ts +8 -0
- package/dist/ReusableTable/components/FilterDropdown.d.ts +17 -0
- package/dist/ReusableTable/components/Pagination.d.ts +2 -0
- package/dist/ReusableTable/components/TableBody.d.ts +2 -0
- package/dist/ReusableTable/components/TableCell.d.ts +3 -0
- package/dist/ReusableTable/components/TableFilterSelect.d.ts +12 -0
- package/dist/ReusableTable/components/TableHead.d.ts +2 -0
- package/dist/ReusableTable/components/TableMain.d.ts +2 -0
- package/dist/ReusableTable/components/TableRow.d.ts +3 -0
- package/dist/ReusableTable/context/TableContext.d.ts +21 -0
- package/dist/ReusableTable/context/TableContextBase.d.ts +26 -0
- package/dist/ReusableTable/context/useTableContext.d.ts +2 -0
- package/dist/ToggleButtons/index.js +17 -0
- package/dist/TrendGraphs/AreaChartComponent.d.ts +9 -0
- package/dist/TrendGraphs/LineChartComponent/DataPointToolTip.d.ts +16 -0
- package/dist/TrendGraphs/LineChartComponent/LineChartBody.d.ts +2 -0
- package/dist/TrendGraphs/LineChartComponent/LineChartHeader.d.ts +2 -0
- package/dist/TrendGraphs/LineChartComponent/index.d.ts +2 -0
- package/dist/TrendGraphs/context/index.d.ts +2 -0
- package/dist/TrendGraphs/hooks/useTrendGraphContext.d.ts +2 -0
- package/dist/TrendGraphs/utils/index.d.ts +4 -0
- package/dist/components/Modal.d.ts +5 -0
- package/dist/components/alertPopup/index.d.ts +1 -0
- package/dist/components/{CustomDropdown.d.ts → customDropdown/CustomDropdown.d.ts} +1 -1
- package/dist/components/customDropdown/index.d.ts +1 -0
- package/dist/components/dateTimePicker/DateAndTimePicker.d.ts +21 -0
- package/dist/components/dateTimePicker/index.d.ts +1 -0
- package/dist/components/{ToggleButtons.d.ts → toggleButtons/ToggleButtons.d.ts} +1 -1
- package/dist/components/toggleButtons/index.d.ts +1 -0
- package/dist/constants/TrendGraphsConstants.d.ts +2 -0
- package/dist/dayjs.min-BZVOTRKJ.cjs +1 -0
- package/dist/dayjs.min-qi3CdtFF.js +298 -0
- package/dist/hplx-feature-library.css +1 -1
- package/dist/{useOutsideClick-DZMg69d8.cjs → index-C3v1d6Xc.cjs} +23 -23
- package/dist/{useOutsideClick-CaFo7m8E.js → index-C5JVupKG.js} +755 -766
- package/dist/index-CJFGOBPb.js +122 -0
- package/dist/index-DfcUmlge.cjs +17 -0
- package/dist/index.d.ts +5 -0
- package/dist/index.js +12 -2
- package/dist/parseISO-AwyR5Nhg.cjs +1 -0
- package/dist/parseISO-Cso9HWPX.js +1414 -0
- package/dist/types/AllInvestigationTypes/index.js +4 -0
- package/dist/types/AllInvestigationTypes.d.ts +41 -0
- package/dist/types/TrendGraphTypes.d.ts +19 -0
- package/dist/useClickOutside-BjJyGTec.js +14 -0
- package/dist/useClickOutside-DsVG12Cs.cjs +1 -0
- package/dist/useOutsideClick-C4Q0aGuf.js +15 -0
- package/dist/useOutsideClick-CicUjzPP.cjs +1 -0
- package/package.json +33 -1
- package/dist/PediatricsCalculatorTable-69FLIWBN.js +0 -2163
- package/dist/PediatricsCalculatorTable-tPFxz3NE.cjs +0 -40
- /package/dist/components/{AlertPopup.d.ts → alertPopup/AlertPopup.d.ts} +0 -0
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { I_InvestigationTestWithPrint, I_TestRanges } from '../../types/AllInvestigationTypes';
|
|
2
|
+
interface InvestigationsTableProps {
|
|
3
|
+
patientAge: number;
|
|
4
|
+
patientGender: string;
|
|
5
|
+
data: I_InvestigationTestWithPrint[];
|
|
6
|
+
testDetails: I_TestRanges[];
|
|
7
|
+
enableCheckboxesToSelect: boolean;
|
|
8
|
+
tableHeaderRowClasses?: string;
|
|
9
|
+
investigationCheckBoxMap: Map<string, boolean>;
|
|
10
|
+
onColumnCheckboxClickHandler: (key: string, isClicked: boolean) => void;
|
|
11
|
+
onRowCheckboxClickHandler: (testId: string) => void;
|
|
12
|
+
onRefresh: () => void;
|
|
13
|
+
scrollOverflowXToEnd?: boolean;
|
|
14
|
+
displayOutOfRangeStyles: boolean;
|
|
15
|
+
enableDateColsEditing?: boolean;
|
|
16
|
+
onInvValueCellSave?: (updatedData: I_InvestigationTestWithPrint) => Promise<void> | void;
|
|
17
|
+
}
|
|
18
|
+
declare const AllInvestigationsTable: ({ patientAge, patientGender, data, testDetails, enableCheckboxesToSelect, tableHeaderRowClasses, investigationCheckBoxMap, onColumnCheckboxClickHandler, onRowCheckboxClickHandler, onRefresh, scrollOverflowXToEnd, displayOutOfRangeStyles, enableDateColsEditing, onInvValueCellSave, }: InvestigationsTableProps) => import("react/jsx-runtime").JSX.Element;
|
|
19
|
+
export default AllInvestigationsTable;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from './components/AllInvestigationsTable';
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
export declare const getRangeForTest: (age: number, gender: string, test_id: string, value: string, rulesWDB?: string) => {
|
|
2
|
+
isOutOfRange: boolean;
|
|
3
|
+
rule: any;
|
|
4
|
+
};
|
|
5
|
+
export declare const CheckValidation: (rule: {
|
|
6
|
+
min: any;
|
|
7
|
+
max: any;
|
|
8
|
+
}, value: string | any[]) => boolean;
|