hplx-feature-library 1.0.1 → 1.0.3
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/PediatricsCalculator/components/AdditionalInfoCell.d.ts +1 -1
- package/dist/PediatricsCalculator/components/MedicineRow.d.ts +1 -1
- package/dist/PediatricsCalculator/components/PediatricsCalculatorTable.d.ts +1 -1
- package/dist/PediatricsCalculator/components/PediatricsCalculatorTableContext.d.ts +1 -1
- package/dist/PediatricsCalculator/components/RowOptions.d.ts +1 -1
- package/dist/PediatricsCalculator/constants/{contants.d.ts → PediatricsCalculatorConstants.d.ts} +1 -1
- package/dist/components/CustomDropdown.d.ts +1 -1
- package/dist/components/ToggleButtons.d.ts +1 -1
- package/dist/types/{PediatricsCalculator.d.ts → PediatricsCalculatorTypes.d.ts} +1 -1
- package/package.json +9 -1
- /package/dist/types/{PediatricCalculator → PediatricsCalculatorTypes}/index.js +0 -0
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { IMedicineViewData } from '../../types/
|
|
1
|
+
import { IMedicineViewData } from '../../types/PediatricsCalculatorTypes';
|
|
2
2
|
export interface IPediatricsCalculatorTableContext {
|
|
3
3
|
variant: 'standard' | 'prescription';
|
|
4
4
|
externallyTriggeredEditMode: boolean;
|
package/dist/PediatricsCalculator/constants/{contants.d.ts → PediatricsCalculatorConstants.d.ts}
RENAMED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { I_CalcFields_MgKg, I_CalcFields_MlKg } from '../../types/PediatricsCalculatorTypes';
|
|
2
2
|
export declare const C_Table_Column_Name: string[];
|
|
3
3
|
export declare const C_MedicineTypeList: string[];
|
|
4
4
|
export declare const C_MedicineFrequencyList: 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.3",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"dev": "vite",
|
|
@@ -34,6 +34,14 @@
|
|
|
34
34
|
"./PediatricsCalculator": {
|
|
35
35
|
"import": "./dist/PediatricsCalculator/index.js",
|
|
36
36
|
"types": "./dist/PediatricsCalculator/index.d.ts"
|
|
37
|
+
},
|
|
38
|
+
"./Types/PediatricsCalculatorTypes": {
|
|
39
|
+
"import": "./dist/types/PediatricsCalculatorTypes/index.js",
|
|
40
|
+
"types": "./dist/types/PediatricsCalculatorTypes.d.ts"
|
|
41
|
+
},
|
|
42
|
+
"./Contants/PediatricsCalculatorConstants": {
|
|
43
|
+
"import": "./dist/constants/PediatricsCalculatorConstants/index.js",
|
|
44
|
+
"types": "./dist/constants/PediatricsCalculatorConstants.d.ts"
|
|
37
45
|
}
|
|
38
46
|
},
|
|
39
47
|
"dependencies": {
|
|
File without changes
|