hplx-feature-library 1.0.165 → 1.0.166
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/AllInvestigations/components/AllInvestigationsTable.d.ts +1 -1
- package/dist/AllInvestigations/index.js +1 -1
- package/dist/{AllInvestigationsTable-C8nNMrbb.js → AllInvestigationsTable-D2-HK9-M.js} +2993 -2988
- package/dist/{AllInvestigationsTable-CrCvlB_t.cjs → AllInvestigationsTable-DoqX89NX.cjs} +14 -14
- package/dist/ReusableTable/ReusableTableTypes.d.ts +1 -0
- package/dist/index.js +1 -1
- package/dist/types/AllInvestigationTypes.d.ts +4 -0
- package/package.json +2 -5
|
@@ -54,6 +54,7 @@ export interface ITableColDef<T> {
|
|
|
54
54
|
maxWidth?: string;
|
|
55
55
|
minWidth?: string;
|
|
56
56
|
pinned?: (typeof PinnableValues)[keyof typeof PinnableValues];
|
|
57
|
+
renderHeaderCell?: (column: ITableColDef<T>) => React.ReactNode;
|
|
57
58
|
renderCell?: (value: unknown, row: T, column: ITableColDef<T>, rowIndex: number) => React.ReactNode;
|
|
58
59
|
valueFormatter?: (value: unknown, row: T, column: ITableColDef<T>, rowIndex: number) => React.ReactNode;
|
|
59
60
|
enableFilter?: boolean;
|
package/dist/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { P as r } from "./PediatricsCalculatorTable-DGWlajqt.js";
|
|
2
|
-
import { A as a } from "./AllInvestigationsTable-
|
|
2
|
+
import { A as a } from "./AllInvestigationsTable-D2-HK9-M.js";
|
|
3
3
|
import { A as f } from "./AlertPopup-CSD_rZzv.js";
|
|
4
4
|
import { default as p } from "./CustomDropdown/index.js";
|
|
5
5
|
import { default as u } from "./DateTimePicker/DateAndTimePicker/index.js";
|
|
@@ -13,6 +13,8 @@ export interface I_InvestigationTest {
|
|
|
13
13
|
test_unit?: string;
|
|
14
14
|
source_id: number;
|
|
15
15
|
source_type: E_INVESTIGATIONS_SOURCE;
|
|
16
|
+
isEditPermitted?: boolean;
|
|
17
|
+
id: string;
|
|
16
18
|
}
|
|
17
19
|
export interface I_InvestigationTestWithPrint extends I_InvestigationTest {
|
|
18
20
|
isPrintable?: boolean;
|
|
@@ -31,6 +33,8 @@ export interface I_AllInvestigationsDateDetail {
|
|
|
31
33
|
created_on: string;
|
|
32
34
|
source_id: number;
|
|
33
35
|
source_type: E_INVESTIGATIONS_SOURCE;
|
|
36
|
+
isEditPermitted: boolean;
|
|
37
|
+
id: string;
|
|
34
38
|
}
|
|
35
39
|
export interface I_TestRanges {
|
|
36
40
|
test_id: string;
|
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.166",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"dev": "npm i hplx-react-elements-dev@qa && vite",
|
|
@@ -99,12 +99,8 @@
|
|
|
99
99
|
"konva": "^9.3.22",
|
|
100
100
|
"lodash.debounce": "^4.0.8",
|
|
101
101
|
"nanoid": "^5.1.5",
|
|
102
|
-
"node": "^24.6.0",
|
|
103
|
-
"react": "^18.3.1",
|
|
104
102
|
"react-datepicker": "^8.5.0",
|
|
105
|
-
"react-dom": "^18.3.1",
|
|
106
103
|
"react-konva": "^18.2.12",
|
|
107
|
-
"react-modal": "^3.16.3",
|
|
108
104
|
"recharts": "^3.1.2",
|
|
109
105
|
"swr": "^2.3.4",
|
|
110
106
|
"zustand": "^5.0.6"
|
|
@@ -136,6 +132,7 @@
|
|
|
136
132
|
"husky": "^9.1.7",
|
|
137
133
|
"jsdom": "^26.1.0",
|
|
138
134
|
"lint-staged": "^16.1.2",
|
|
135
|
+
"node": "^24.6.0",
|
|
139
136
|
"postcss": "^8.5.6",
|
|
140
137
|
"prettier": "^3.6.2",
|
|
141
138
|
"tailwindcss": "^3.4.17",
|