hplx-feature-library 1.0.125 → 1.0.127
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 +2 -2
- package/dist/{AlertPopup-P2joyIIA.cjs → AlertPopup-CPKIp-41.cjs} +1 -1
- package/dist/{AlertPopup-CLdK7wLo.js → AlertPopup-CrMI2BnN.js} +1 -1
- package/dist/AllInvestigations/components/AllInvestigationsTable.d.ts +3 -1
- package/dist/AllInvestigations/index.js +1 -1
- package/dist/AllInvestigations/utils/test-tange-util.d.ts +8 -0
- package/dist/AllInvestigationsTable-7v_TPWGY.cjs +80 -0
- package/dist/AllInvestigationsTable-Czmj0INe.js +16957 -0
- package/dist/Attachments/index.js +5305 -5422
- package/dist/CustomDropdown/index.js +1 -1
- package/dist/DateTimePicker/DateAndTimePicker/index.js +1728 -2018
- package/dist/PediatricsCalculator/index.js +1 -1
- package/dist/{PediatricsCalculatorTable-BNX4SXMR.cjs → PediatricsCalculatorTable-CnrU0s8_.cjs} +1 -1
- package/dist/{PediatricsCalculatorTable-DVXb5kMA.js → PediatricsCalculatorTable-DEwcZURh.js} +2 -2
- package/dist/ToggleButtons/index.js +1 -1
- package/dist/TrendGraphs/LineChartComponent/DataPointToolTip.d.ts +16 -0
- package/dist/TrendGraphs/utils/index.d.ts +3 -1
- package/dist/components/Modal.d.ts +1 -1
- 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/{index-Buj0cYbU.cjs → index-C3v1d6Xc.cjs} +23 -23
- package/dist/{index-CuCeJNEo.js → index-C5JVupKG.js} +1 -0
- package/dist/index-CJFGOBPb.js +122 -0
- package/dist/index-DfcUmlge.cjs +17 -0
- package/dist/index.js +3 -3
- package/dist/types/TrendGraphTypes.d.ts +1 -2
- package/package.json +1 -1
- package/dist/AllInvestigationsTable-CjTQClZv.cjs +0 -1
- package/dist/AllInvestigationsTable-DOBhwtGr.js +0 -809
package/dist/AlertPopup/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
"use strict";const R=require("./index-
|
|
1
|
+
"use strict";const R=require("./index-C3v1d6Xc.cjs"),me=require("react"),Ne=require("react-dom");var G={exports:{}},k={},J={exports:{}},T={},Q={exports:{}},ne;function he(){return ne||(ne=1,function(d,a){Object.defineProperty(a,"__esModule",{value:!0}),a.default=s;/*!
|
|
2
2
|
* Adapted from jQuery UI core
|
|
3
3
|
*
|
|
4
4
|
* http://jqueryui.com
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { r as ye, b as Re, g as Te, j as H, P as ne, Y as oe } from "./index-
|
|
1
|
+
import { r as ye, b as Re, g as Te, j as H, P as ne, Y as oe } from "./index-C5JVupKG.js";
|
|
2
2
|
import be from "react";
|
|
3
3
|
import xe from "react-dom";
|
|
4
4
|
var G = { exports: {} }, k = {}, J = { exports: {} }, T = {}, Q = { exports: {} }, re;
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import { I_InvestigationTestWithPrint, I_TestRanges } from '../../types/AllInvestigationTypes';
|
|
2
2
|
interface InvestigationsTableProps {
|
|
3
|
+
patientAge: number;
|
|
4
|
+
patientGender: string;
|
|
3
5
|
data: I_InvestigationTestWithPrint[];
|
|
4
6
|
testDetails: I_TestRanges[];
|
|
5
7
|
enableCheckboxesToSelect: boolean;
|
|
@@ -13,5 +15,5 @@ interface InvestigationsTableProps {
|
|
|
13
15
|
enableDateColsEditing?: boolean;
|
|
14
16
|
onInvValueCellSave?: (updatedData: I_InvestigationTestWithPrint) => Promise<void> | void;
|
|
15
17
|
}
|
|
16
|
-
declare const AllInvestigationsTable: ({ data, testDetails, enableCheckboxesToSelect, tableHeaderRowClasses, investigationCheckBoxMap, onColumnCheckboxClickHandler, onRowCheckboxClickHandler, onRefresh, scrollOverflowXToEnd, displayOutOfRangeStyles, enableDateColsEditing, onInvValueCellSave, }: InvestigationsTableProps) => import("react/jsx-runtime").JSX.Element;
|
|
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;
|
|
17
19
|
export default 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;
|