hplx-feature-library 1.0.175 → 1.0.177
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/APIAction-GKwgCFa7.cjs +1 -0
- package/dist/{index-nNWK2dDb.js → APIAction-owCQeK4h.js} +1 -1
- package/dist/AllInvestigations/index.js +1 -1
- package/dist/{AllInvestigationsTable-txmu7PTJ.js → AllInvestigationsTable-230u6fB3.js} +40 -38
- package/dist/{AllInvestigationsTable-C7uQ56B0.cjs → AllInvestigationsTable-BDLPOHjr.cjs} +4 -4
- package/dist/NineDots/index.js +4 -0
- package/dist/NineDots-Cy5GdMqh.cjs +3 -0
- package/dist/NineDots-Q7DH5xQq.js +1787 -0
- package/dist/{components → PatientAddEdit/components}/PatientAddEdit.d.ts +1 -1
- package/dist/PatientAddEdit/index.d.ts +1 -0
- package/dist/PatientAddEdit/index.js +2 -1661
- package/dist/PatientAddEdit-D-PuyA4h.cjs +7 -0
- package/dist/PatientAddEdit-MgBWiJqX.js +1665 -0
- package/dist/PatientPopup/components/bills/Bills.d.ts +3 -1
- package/dist/PatientPopup/index.js +1 -1
- package/dist/PatientPopupContainer-BREW2AZX.cjs +36 -0
- package/dist/{PatientPopupContainer-BSWU5CPk.js → PatientPopupContainer-CyTTjYhk.js} +3976 -3967
- package/dist/{PrintModal-BeR4-UcB.js → PrintModal-BR_tTgyn.js} +2 -1
- package/dist/{PrintModal-PPpn_LGy.cjs → PrintModal-CaqANEG3.cjs} +8 -8
- package/dist/{components → SearchPatients/components}/SearchPatients.d.ts +1 -1
- package/dist/SearchPatients/index.d.ts +1 -0
- package/dist/SearchPatients/index.js +4 -0
- package/dist/SearchPatients-BEQ0kjtj.js +233 -0
- package/dist/SearchPatients-eiOJOnND.cjs +1 -0
- package/dist/UserProfile/index.js +4 -0
- package/dist/UserProfile-Bs3EzSqu.js +1761 -0
- package/dist/UserProfile-C4cNhkeg.cjs +14 -0
- package/dist/common-utils-CDvwCtzy.js +2328 -0
- package/dist/common-utils-lI6oOpoS.cjs +6 -0
- package/dist/hplx-feature-library.css +1 -1
- package/dist/index.d.ts +4 -3
- package/dist/index.esm-BdlMQ1M7.cjs +4 -0
- package/dist/index.esm-Bn1Rklqj.js +1275 -0
- package/dist/index.js +16 -2023
- package/dist/nineDots/{nineDots.d.ts → NineDots.d.ts} +1 -1
- package/dist/nineDots/NineDotsUtils.d.ts +1 -1
- package/dist/nineDots/index.d.ts +1 -0
- package/dist/print-pdf/index.js +1 -1
- package/dist/types/AllInvestigationTypes.d.ts +2 -0
- package/dist/useMediaQuery-CZAbdJzN.js +13 -0
- package/dist/useMediaQuery-D4SIgdMW.cjs +1 -0
- package/dist/userProfile/index.d.ts +1 -0
- package/package.json +22 -11
- package/dist/PatientPopupContainer-nZZA67ZY.cjs +0 -36
- package/dist/index-Cy8OvNyb.cjs +0 -1
- package/dist/index.esm-BJMiy-rl.js +0 -3597
- package/dist/index.esm-DvJKLbVG.cjs +0 -9
- /package/dist/{nineDots → types}/NineDotsTypes.d.ts +0 -0
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
import { NineDotsInterface, NineDotsProps } from '
|
|
1
|
+
import { NineDotsInterface, NineDotsProps } from '../types/NineDotsTypes';
|
|
2
2
|
export declare const getNineDotsData: (props: Partial<NineDotsProps>) => NineDotsInterface[];
|
|
3
3
|
export declare const getSvgByName: (iconName: string) => any;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from './NineDots';
|
package/dist/print-pdf/index.js
CHANGED
|
@@ -14,6 +14,7 @@ export interface I_InvestigationTest {
|
|
|
14
14
|
source_id: number;
|
|
15
15
|
source_type: E_INVESTIGATIONS_SOURCE;
|
|
16
16
|
isEditPermitted?: boolean;
|
|
17
|
+
id: string;
|
|
17
18
|
}
|
|
18
19
|
export interface I_InvestigationTestWithPrint extends I_InvestigationTest {
|
|
19
20
|
isPrintable?: boolean;
|
|
@@ -33,6 +34,7 @@ export interface I_AllInvestigationsDateDetail {
|
|
|
33
34
|
source_id: number;
|
|
34
35
|
source_type: E_INVESTIGATIONS_SOURCE;
|
|
35
36
|
isEditPermitted: boolean;
|
|
37
|
+
id: string;
|
|
36
38
|
}
|
|
37
39
|
export interface I_TestRanges {
|
|
38
40
|
test_id: string;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { useState as i, useEffect as r } from "react";
|
|
2
|
+
const o = (s) => {
|
|
3
|
+
const [e, n] = i(!1);
|
|
4
|
+
return r(() => {
|
|
5
|
+
const t = window.matchMedia(s);
|
|
6
|
+
t.matches !== e && n(t.matches);
|
|
7
|
+
const a = () => n(t.matches);
|
|
8
|
+
return window.addEventListener("resize", a), () => window.removeEventListener("resize", a);
|
|
9
|
+
}, [e, s]), e;
|
|
10
|
+
};
|
|
11
|
+
export {
|
|
12
|
+
o as u
|
|
13
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";const a=require("react"),c=s=>{const[e,i]=a.useState(!1);return a.useEffect(()=>{const t=window.matchMedia(s);t.matches!==e&&i(t.matches);const n=()=>i(t.matches);return window.addEventListener("resize",n),()=>window.removeEventListener("resize",n)},[e,s]),e};exports.useMediaQuery=c;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from './UserProfile';
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "hplx-feature-library",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.177",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"dev": "npm i hplx-react-elements-dev@qa && vite",
|
|
@@ -63,9 +63,17 @@
|
|
|
63
63
|
"import": "./dist/constants/AttachmentConstants/index.js",
|
|
64
64
|
"types": "./dist/constants/AttachmentConstants.d.ts"
|
|
65
65
|
},
|
|
66
|
+
"./AllInvestigations": {
|
|
67
|
+
"import": "./dist/AllInvestigations/index.js",
|
|
68
|
+
"types": "./dist/AllInvestigations/index.d.ts"
|
|
69
|
+
},
|
|
70
|
+
"./Types/AllInvestigationTypes": {
|
|
71
|
+
"import": "./dist/types/AllInvestigationTypes/index.js",
|
|
72
|
+
"types": "./dist/types/AllInvestigationTypes.d.ts"
|
|
73
|
+
},
|
|
66
74
|
"./PatientAddEdit": {
|
|
67
75
|
"import": "./dist/PatientAddEdit/index.js",
|
|
68
|
-
"types": "./dist/PatientAddEdit.d.ts"
|
|
76
|
+
"types": "./dist/PatientAddEdit/index.d.ts"
|
|
69
77
|
},
|
|
70
78
|
"./Types/PatientAddEditTypes": {
|
|
71
79
|
"import": "./dist/types/PatientAddEditTypes/index.js",
|
|
@@ -83,13 +91,17 @@
|
|
|
83
91
|
"import": "./dist/print-pdf/index.js",
|
|
84
92
|
"types": "./dist/print-pdf/index.d.ts"
|
|
85
93
|
},
|
|
86
|
-
"./
|
|
87
|
-
"import": "./dist/
|
|
88
|
-
"types": "./dist/
|
|
94
|
+
"./NineDots": {
|
|
95
|
+
"import": "./dist/NineDots/index.js",
|
|
96
|
+
"types": "./dist/NineDots/index.d.ts"
|
|
89
97
|
},
|
|
90
|
-
"./
|
|
91
|
-
"import": "./dist/
|
|
92
|
-
"types": "./dist/
|
|
98
|
+
"./UserProfile": {
|
|
99
|
+
"import": "./dist/UserProfile/index.js",
|
|
100
|
+
"types": "./dist/UserProfile/index.d.ts"
|
|
101
|
+
},
|
|
102
|
+
"./SearchPatients": {
|
|
103
|
+
"import": "./dist/SearchPatients/index.js",
|
|
104
|
+
"types": "./dist/SearchPatients/index.d.ts"
|
|
93
105
|
}
|
|
94
106
|
},
|
|
95
107
|
"dependencies": {
|
|
@@ -105,7 +117,6 @@
|
|
|
105
117
|
"nanoid": "^5.1.5",
|
|
106
118
|
"react-device-detect": "^2.2.3",
|
|
107
119
|
"react-konva": "^18.2.12",
|
|
108
|
-
"react-router-dom": "^7.9.4",
|
|
109
120
|
"react-table": "^7.8.0",
|
|
110
121
|
"recharts": "^3.1.2",
|
|
111
122
|
"swr": "^2.3.4",
|
|
@@ -117,7 +128,8 @@
|
|
|
117
128
|
"react": "^18.3.1",
|
|
118
129
|
"react-dom": "^18.3.1",
|
|
119
130
|
"react-modal": "^3.16.3",
|
|
120
|
-
"react-pdf": "^7.7.1"
|
|
131
|
+
"react-pdf": "^7.7.1",
|
|
132
|
+
"react-router-dom": "^7.9.4"
|
|
121
133
|
},
|
|
122
134
|
"devDependencies": {
|
|
123
135
|
"@commitlint/config-conventional": "^19.8.1",
|
|
@@ -140,7 +152,6 @@
|
|
|
140
152
|
"husky": "^9.1.7",
|
|
141
153
|
"jsdom": "^26.1.0",
|
|
142
154
|
"lint-staged": "^16.1.2",
|
|
143
|
-
"node": "^24.6.0",
|
|
144
155
|
"postcss": "^8.5.6",
|
|
145
156
|
"prettier": "^3.6.2",
|
|
146
157
|
"tailwindcss": "^3.4.17",
|