hplx-feature-library 1.0.194 → 1.0.195
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/PatientPopup/index.js +1 -1
- package/dist/{PatientPopupContainer-COgXobfy.cjs → PatientPopupContainer-B6h6Ro_W.cjs} +1 -1
- package/dist/{PatientPopupContainer-_1ZRT2iA.js → PatientPopupContainer-Dr_1ZyDM.js} +1 -1
- package/dist/{PrintModal-DBIODbrQ.cjs → PrintModal-8N1cT8wF.cjs} +4 -4
- package/dist/{PrintModal-C_u3LGLk.js → PrintModal-C18CHi_f.js} +21 -8
- package/dist/index.js +2 -2
- package/dist/print-pdf/index.js +1 -1
- package/package.json +1 -1
|
@@ -6957,17 +6957,30 @@ var renderElement = function(N, W) {
|
|
|
6957
6957
|
return W === Y.documentElement ? isTransparent(X) ? isTransparent(I) ? w : I : X : w;
|
|
6958
6958
|
};
|
|
6959
6959
|
const findChangedProperties = (N, W, M = "") => {
|
|
6960
|
-
|
|
6961
|
-
for (const X in N)
|
|
6960
|
+
const Y = {};
|
|
6961
|
+
for (const X in N) {
|
|
6962
|
+
if (!Object.prototype.hasOwnProperty.call(N, X)) continue;
|
|
6963
|
+
const I = N[X], w = W[X];
|
|
6962
6964
|
if (Object.prototype.hasOwnProperty.call(W, X))
|
|
6963
|
-
if (typeof
|
|
6964
|
-
const
|
|
6965
|
-
|
|
6966
|
-
|
|
6965
|
+
if (typeof I == "object" && I !== null && typeof w == "object" && w !== null) {
|
|
6966
|
+
const D = findChangedProperties(
|
|
6967
|
+
I,
|
|
6968
|
+
w,
|
|
6969
|
+
M ? `${M}.${X}` : X
|
|
6970
|
+
);
|
|
6971
|
+
Object.assign(Y, D);
|
|
6972
|
+
} else I !== w && (Y[`${M ? `${M}.` : ""}${X}`] = {
|
|
6973
|
+
oldValue: I,
|
|
6974
|
+
newValue: w
|
|
6975
|
+
});
|
|
6967
6976
|
else
|
|
6968
|
-
Y[`${M}
|
|
6977
|
+
Y[`${M ? `${M}.` : ""}${X}`] = {
|
|
6978
|
+
oldValue: I,
|
|
6979
|
+
newValue: void 0
|
|
6980
|
+
};
|
|
6981
|
+
}
|
|
6969
6982
|
for (const X in W)
|
|
6970
|
-
Object.prototype.hasOwnProperty.call(
|
|
6983
|
+
Object.prototype.hasOwnProperty.call(W, X) || (Y[`${M ? `${M}.` : ""}${X}`] = {
|
|
6971
6984
|
oldValue: void 0,
|
|
6972
6985
|
newValue: W[X]
|
|
6973
6986
|
});
|
package/dist/index.js
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { P as r } from "./PediatricsCalculatorTable-G0ttbDpi.js";
|
|
2
2
|
import { A as e } from "./AllInvestigationsTable-Dg-YXASz.js";
|
|
3
|
-
import { P as i } from "./PatientPopupContainer-
|
|
3
|
+
import { P as i } from "./PatientPopupContainer-Dr_1ZyDM.js";
|
|
4
4
|
import { A as P } from "./Attachments-BzZHI8d3.js";
|
|
5
5
|
import { P as m } from "./PatientAddEdit-CPjv2_ZF.js";
|
|
6
6
|
import { S as n } from "./SearchPatients-BYGGaUoD.js";
|
|
7
7
|
import { N as d } from "./NineDots-CCtE2t9I.js";
|
|
8
8
|
import { U as c } from "./UserProfile-CcEbhDhd.js";
|
|
9
|
-
import { P as u } from "./PrintModal-
|
|
9
|
+
import { P as u } from "./PrintModal-C18CHi_f.js";
|
|
10
10
|
export {
|
|
11
11
|
e as AllInvestigations,
|
|
12
12
|
P as Attachments,
|
package/dist/print-pdf/index.js
CHANGED