@kenyaemr/esm-patient-registration-app 8.0.1-pre.99 → 8.0.2
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/.turbo/turbo-build.log +23 -22
- package/dist/108.js +1 -0
- package/dist/108.js.map +1 -0
- package/dist/130.js +1 -1
- package/dist/130.js.LICENSE.txt +2 -0
- package/dist/130.js.map +1 -1
- package/dist/2.js +1 -0
- package/dist/2.js.map +1 -0
- package/dist/250.js +1 -0
- package/dist/250.js.map +1 -0
- package/dist/271.js +1 -1
- package/dist/319.js +1 -1
- package/dist/325.js +1 -0
- package/dist/325.js.map +1 -0
- package/dist/372.js +2 -0
- package/dist/372.js.map +1 -0
- package/dist/460.js +1 -1
- package/dist/574.js +1 -1
- package/dist/644.js +1 -1
- package/dist/66.js +1 -0
- package/dist/66.js.map +1 -0
- package/dist/662.js +1 -0
- package/dist/662.js.map +1 -0
- package/dist/757.js +1 -1
- package/dist/{59.js → 76.js} +1 -1
- package/dist/{59.js.map → 76.js.map} +1 -1
- package/dist/788.js +1 -1
- package/dist/807.js +1 -1
- package/dist/833.js +1 -1
- package/dist/895.js +2 -0
- package/dist/895.js.LICENSE.txt +34 -0
- package/dist/895.js.map +1 -0
- package/dist/kenyaemr-esm-patient-registration-app.js +1 -1
- package/dist/kenyaemr-esm-patient-registration-app.js.buildmanifest.json +161 -188
- package/dist/kenyaemr-esm-patient-registration-app.js.map +1 -1
- package/dist/main.js +1 -1
- package/dist/main.js.LICENSE.txt +10 -0
- package/dist/main.js.map +1 -1
- package/dist/routes.json +1 -1
- package/package-lock.json +6047 -0
- package/package.json +3 -4
- package/src/client-registry/client-registry.component.tsx +22 -0
- package/src/client-registry/hie-client-registry/hie-client-registry.component.tsx +134 -0
- package/src/client-registry/hie-client-registry/hie-client-registry.scss +53 -0
- package/src/client-registry/hie-client-registry/hie-resource.ts +162 -0
- package/src/client-registry/hie-client-registry/hie-types.ts +29 -0
- package/src/client-registry/hie-client-registry/modal/confirm-hie.modal.tsx +82 -0
- package/src/client-registry/hie-client-registry/modal/confirm-hie.scss +10 -0
- package/src/{patient-verification → client-registry/patient-verification}/patient-verification-hook.tsx +1 -1
- package/src/{patient-verification → client-registry/patient-verification}/patient-verification-utils.ts +1 -1
- package/src/{patient-verification → client-registry/patient-verification}/patient-verification.component.tsx +1 -1
- package/src/{patient-verification → client-registry/patient-verification}/patient-verification.scss +1 -1
- package/src/{patient-verification → client-registry/patient-verification}/verification-modal/empty-prompt.component.tsx +9 -6
- package/src/config-schema.ts +72 -2
- package/src/index.ts +6 -6
- package/src/patient-registration/field/cause-of-death/cause-of-death.component.tsx +98 -0
- package/src/patient-registration/field/date-and-time-of-death/date-and-time-of-death.component.tsx +84 -0
- package/src/patient-registration/field/dob/dob.component.tsx +21 -7
- package/src/patient-registration/field/field.component.tsx +11 -5
- package/src/patient-registration/field/field.resource.ts +11 -4
- package/src/patient-registration/field/field.scss +44 -5
- package/src/patient-registration/field/gender/gender-field.component.tsx +2 -1
- package/src/patient-registration/field/gender/gender-field.test.tsx +1 -0
- package/src/patient-registration/field/id/id-field.component.tsx +8 -6
- package/src/patient-registration/field/id/id-field.test.tsx +27 -8
- package/src/patient-registration/field/name/name-field.component.tsx +5 -1
- package/src/patient-registration/field/person-attributes/coded-person-attribute-field.component.tsx +1 -0
- package/src/patient-registration/field/person-attributes/custom-person-attribute-field.component.tsx +76 -27
- package/src/patient-registration/field/person-attributes/location-person-attribute-field.component.tsx +105 -0
- package/src/patient-registration/field/person-attributes/location-person-attribute-field.resource.tsx +48 -0
- package/src/patient-registration/field/person-attributes/person-attribute-field.component.tsx +12 -1
- package/src/patient-registration/field/person-attributes/useUpdateIdentifierRequirement.tsx +83 -0
- package/src/patient-registration/form-manager.test.ts +21 -0
- package/src/patient-registration/form-manager.ts +40 -20
- package/src/patient-registration/input/basic-input/input/input.component.tsx +5 -1
- package/src/patient-registration/input/custom-input/identifier/identifier-input.component.tsx +18 -10
- package/src/patient-registration/input/custom-input/identifier/identifier-input.test.tsx +166 -67
- package/src/patient-registration/input/dummy-data/dummy-data-input.component.tsx +3 -0
- package/src/patient-registration/input/input.scss +5 -0
- package/src/patient-registration/patient-registration-context.ts +4 -3
- package/src/patient-registration/patient-registration-hooks.ts +67 -9
- package/src/patient-registration/patient-registration-utils.ts +3 -7
- package/src/patient-registration/patient-registration.component.tsx +44 -30
- package/src/patient-registration/patient-registration.resource.ts +8 -0
- package/src/patient-registration/patient-registration.test.tsx +9 -3
- package/src/patient-registration/patient-registration.types.ts +4 -1
- package/src/patient-registration/section/death-info/death-info-section.component.tsx +22 -17
- package/src/patient-registration/section/death-info/death-info-section.test.tsx +4 -14
- package/src/patient-registration/section/section.component.tsx +1 -1
- package/src/patient-registration/section/section.scss +5 -0
- package/src/patient-registration/validation/{patient-registration-validation.test.tsx → patient-registration-validation.test.ts} +26 -4
- package/src/patient-registration/validation/patient-registration-validation.ts +126 -0
- package/src/routes.json +14 -17
- package/src/widgets/cancel-patient-edit.modal.tsx +33 -0
- package/src/widgets/cancel-patient-edit.test.tsx +2 -3
- package/src/widgets/delete-identifier-confirmation.modal.tsx +22 -15
- package/src/widgets/delete-identifier-confirmation.test.tsx +2 -1
- package/translations/am.json +36 -25
- package/translations/ar.json +37 -26
- package/translations/en.json +51 -20
- package/translations/es.json +38 -26
- package/translations/fr.json +47 -35
- package/translations/he.json +37 -30
- package/translations/km.json +37 -30
- package/translations/zh.json +37 -20
- package/translations/zh_CN.json +37 -20
- package/dist/152.js +0 -1
- package/dist/152.js.map +0 -1
- package/dist/255.js +0 -2
- package/dist/255.js.map +0 -1
- package/dist/303.js +0 -1
- package/dist/303.js.map +0 -1
- package/dist/330.js +0 -1
- package/dist/330.js.map +0 -1
- package/dist/564.js +0 -1
- package/dist/564.js.map +0 -1
- package/dist/623.js +0 -1
- package/dist/623.js.map +0 -1
- package/dist/729.js +0 -1
- package/dist/729.js.map +0 -1
- package/dist/735.js +0 -1
- package/dist/735.js.map +0 -1
- package/dist/831.js +0 -2
- package/dist/831.js.LICENSE.txt +0 -14
- package/dist/831.js.map +0 -1
- package/src/patient-registration/validation/patient-registration-validation.tsx +0 -60
- package/src/widgets/cancel-patient-edit.component.tsx +0 -37
- package/src/widgets/delete-identifier-confirmation.scss +0 -34
- /package/dist/{255.js.LICENSE.txt → 372.js.LICENSE.txt} +0 -0
- /package/src/{patient-verification → client-registry/patient-verification}/assets/counties.json +0 -0
- /package/src/{patient-verification → client-registry/patient-verification}/assets/verification-assets.ts +0 -0
- /package/src/{patient-verification → client-registry/patient-verification}/verification-modal/confirm-prompt.component.tsx +0 -0
- /package/src/{patient-verification → client-registry/patient-verification}/verification-types.ts +0 -0
|
@@ -1 +1 @@
|
|
|
1
|
-
var _kenyaemr_esm_patient_registration_app;(()=>{"use strict";var e,r,t,n,a,o,i,l,s,u,p,f,d,h,c,m={372:(e,r,t)=>{var n={"./start":()=>Promise.all([t.e(
|
|
1
|
+
var _kenyaemr_esm_patient_registration_app;(()=>{"use strict";var e,r,t,n,a,o,i,l,s,u,p,f,d,h,c,m={372:(e,r,t)=>{var n={"./start":()=>Promise.all([t.e(895),t.e(268),t.e(629),t.e(66)]).then((()=>()=>t(8066)))},a=(e,r)=>(t.R=r,r=t.o(n,e)?n[e]():Promise.resolve().then((()=>{throw new Error('Module "'+e+'" does not exist in container.')})),t.R=void 0,r),o=(e,r)=>{if(t.S){var n="default",a=t.S[n];if(a&&a!==e)throw new Error("Container initialization failed as it has already been initialized with a different share scope");return t.S[n]=e,t.I(n,r)}};t.d(r,{get:()=>a,init:()=>o})}},v={};function g(e){var r=v[e];if(void 0!==r)return r.exports;var t=v[e]={id:e,loaded:!1,exports:{}};return m[e].call(t.exports,t,t.exports,g),t.loaded=!0,t.exports}g.m=m,g.c=v,g.n=e=>{var r=e&&e.__esModule?()=>e.default:()=>e;return g.d(r,{a:r}),r},g.d=(e,r)=>{for(var t in r)g.o(r,t)&&!g.o(e,t)&&Object.defineProperty(e,t,{enumerable:!0,get:r[t]})},g.f={},g.e=e=>Promise.all(Object.keys(g.f).reduce(((r,t)=>(g.f[t](e,r),r)),[])),g.u=e=>e+".js",g.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(e){if("object"==typeof window)return window}}(),g.o=(e,r)=>Object.prototype.hasOwnProperty.call(e,r),e={},r="@kenyaemr/esm-patient-registration-app:",g.l=(t,n,a,o)=>{if(e[t])e[t].push(n);else{var i,l;if(void 0!==a)for(var s=document.getElementsByTagName("script"),u=0;u<s.length;u++){var p=s[u];if(p.getAttribute("src")==t||p.getAttribute("data-webpack")==r+a){i=p;break}}i||(l=!0,(i=document.createElement("script")).charset="utf-8",i.timeout=120,g.nc&&i.setAttribute("nonce",g.nc),i.setAttribute("data-webpack",r+a),i.src=t),e[t]=[n];var f=(r,n)=>{i.onerror=i.onload=null,clearTimeout(d);var a=e[t];if(delete e[t],i.parentNode&&i.parentNode.removeChild(i),a&&a.forEach((e=>e(n))),r)return r(n)},d=setTimeout(f.bind(null,void 0,{type:"timeout",target:i}),12e4);i.onerror=f.bind(null,i.onerror),i.onload=f.bind(null,i.onload),l&&document.head.appendChild(i)}},g.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},g.nmd=e=>(e.paths=[],e.children||(e.children=[]),e),(()=>{g.S={};var e={},r={};g.I=(t,n)=>{n||(n=[]);var a=r[t];if(a||(a=r[t]={}),!(n.indexOf(a)>=0)){if(n.push(a),e[t])return e[t];g.o(g.S,t)||(g.S[t]={});var o=g.S[t],i="@kenyaemr/esm-patient-registration-app",l=(e,r,t,n)=>{var a=o[e]=o[e]||{},l=a[r];(!l||!l.loaded&&(!n!=!l.eager?n:i>l.from))&&(a[r]={get:t,from:i,eager:!!n})},s=[];return"default"===t&&(l("@openmrs/esm-framework","5.8.2-pre.2420",(()=>Promise.all([g.e(130),g.e(268),g.e(753)]).then((()=>()=>g(130))))),l("dayjs","1.11.10",(()=>g.e(879).then((()=>()=>g(8879))))),l("react-i18next","11.18.6",(()=>Promise.all([g.e(268),g.e(501)]).then((()=>()=>g(5501))))),l("react-router-dom","6.4.3",(()=>Promise.all([g.e(591),g.e(268)]).then((()=>()=>g(6591))))),l("react","18.2.0",(()=>g.e(784).then((()=>()=>g(2784))))),l("swr/_internal","2.2.5",(()=>Promise.all([g.e(325),g.e(268)]).then((()=>()=>g(1325))))),l("swr/immutable","2.2.5",(()=>Promise.all([g.e(268),g.e(629),g.e(372)]).then((()=>()=>g(3372)))))),e[t]=s.length?Promise.all(s).then((()=>e[t]=1)):1}}})(),(()=>{var e;g.g.importScripts&&(e=g.g.location+"");var r=g.g.document;if(!e&&r&&(r.currentScript&&(e=r.currentScript.src),!e)){var t=r.getElementsByTagName("script");if(t.length)for(var n=t.length-1;n>-1&&!e;)e=t[n--].src}if(!e)throw new Error("Automatic publicPath is not supported in this browser");e=e.replace(/#.*$/,"").replace(/\?.*$/,"").replace(/\/[^\/]+$/,"/"),g.p=e})(),t=e=>{var r=e=>e.split(".").map((e=>+e==e?+e:e)),t=/^([^-+]+)?(?:-([^+]+))?(?:\+(.+))?$/.exec(e),n=t[1]?r(t[1]):[];return t[2]&&(n.length++,n.push.apply(n,r(t[2]))),t[3]&&(n.push([]),n.push.apply(n,r(t[3]))),n},n=(e,r)=>{e=t(e),r=t(r);for(var n=0;;){if(n>=e.length)return n<r.length&&"u"!=(typeof r[n])[0];var a=e[n],o=(typeof a)[0];if(n>=r.length)return"u"==o;var i=r[n],l=(typeof i)[0];if(o!=l)return"o"==o&&"n"==l||"s"==l||"u"==o;if("o"!=o&&"u"!=o&&a!=i)return a<i;n++}},a=e=>{var r=e[0],t="";if(1===e.length)return"*";if(r+.5){t+=0==r?">=":-1==r?"<":1==r?"^":2==r?"~":r>0?"=":"!=";for(var n=1,o=1;o<e.length;o++)n--,t+="u"==(typeof(l=e[o]))[0]?"-":(n>0?".":"")+(n=2,l);return t}var i=[];for(o=1;o<e.length;o++){var l=e[o];i.push(0===l?"not("+s()+")":1===l?"("+s()+" || "+s()+")":2===l?i.pop()+" "+i.pop():a(l))}return s();function s(){return i.pop().replace(/^\((.+)\)$/,"$1")}},o=(e,r)=>{if(0 in e){r=t(r);var n=e[0],a=n<0;a&&(n=-n-1);for(var i=0,l=1,s=!0;;l++,i++){var u,p,f=l<e.length?(typeof e[l])[0]:"";if(i>=r.length||"o"==(p=(typeof(u=r[i]))[0]))return!s||("u"==f?l>n&&!a:""==f!=a);if("u"==p){if(!s||"u"!=f)return!1}else if(s)if(f==p)if(l<=n){if(u!=e[l])return!1}else{if(a?u>e[l]:u<e[l])return!1;u!=e[l]&&(s=!1)}else if("s"!=f&&"n"!=f){if(a||l<=n)return!1;s=!1,l--}else{if(l<=n||p<f!=a)return!1;s=!1}else"s"!=f&&"n"!=f&&(s=!1,l--)}}var d=[],h=d.pop.bind(d);for(i=1;i<e.length;i++){var c=e[i];d.push(1==c?h()|h():2==c?h()&h():c?o(c,r):!h())}return!!h()},i=(e,r)=>{var t=e[r];return Object.keys(t).reduce(((e,r)=>!e||!t[e].loaded&&n(e,r)?r:e),0)},l=(e,r,t,n)=>"Unsatisfied version "+t+" from "+(t&&e[r][t].from)+" of shared singleton module "+r+" (required "+a(n)+")",s=(e,r,t,n)=>{var a=i(e,t);return o(n,a)||u(l(e,t,a,n)),p(e[t][a])},u=e=>{"undefined"!=typeof console&&console.warn&&console.warn(e)},p=e=>(e.loaded=1,e.get()),f=(e=>function(r,t,n,a){var o=g.I(r);return o&&o.then?o.then(e.bind(e,r,g.S[r],t,n,a)):e(0,g.S[r],t,n,a)})(((e,r,t,n,a)=>r&&g.o(r,t)?s(r,0,t,n):a())),d={},h={268:()=>f("default","react",[1,18],(()=>g.e(784).then((()=>()=>g(2784))))),3629:()=>f("default","swr/_internal",[1,2],(()=>g.e(325).then((()=>()=>g(1325))))),2870:()=>f("default","@openmrs/esm-framework",[1,5],(()=>g.e(130).then((()=>()=>g(130))))),3565:()=>f("default","dayjs",[1,1],(()=>g.e(879).then((()=>()=>g(8879))))),4924:()=>f("default","react-i18next",[1,11],(()=>g.e(169).then((()=>()=>g(5501))))),5907:()=>f("default","swr/immutable",[1,2],(()=>g.e(2).then((()=>()=>g(3372))))),8744:()=>f("default","react-router-dom",[1,6],(()=>g.e(591).then((()=>()=>g(6591)))))},c={66:[2870,3565,4924,5907,8744],268:[268],629:[3629]},g.f.consumes=(e,r)=>{g.o(c,e)&&c[e].forEach((e=>{if(g.o(d,e))return r.push(d[e]);var t=r=>{d[e]=0,g.m[e]=t=>{delete g.c[e],t.exports=r()}},n=r=>{delete d[e],g.m[e]=t=>{throw delete g.c[e],r}};try{var a=h[e]();a.then?r.push(d[e]=a.then(t).catch(n)):t(a)}catch(e){n(e)}}))},(()=>{var e={884:0};g.f.j=(r,t)=>{var n=g.o(e,r)?e[r]:void 0;if(0!==n)if(n)t.push(n[2]);else if(/^(268|629)$/.test(r))e[r]=0;else{var a=new Promise(((t,a)=>n=e[r]=[t,a]));t.push(n[2]=a);var o=g.p+g.u(r),i=new Error;g.l(o,(t=>{if(g.o(e,r)&&(0!==(n=e[r])&&(e[r]=void 0),n)){var a=t&&("load"===t.type?"missing":t.type),o=t&&t.target&&t.target.src;i.message="Loading chunk "+r+" failed.\n("+a+": "+o+")",i.name="ChunkLoadError",i.type=a,i.request=o,n[1](i)}}),"chunk-"+r,r)}};var r=(r,t)=>{var n,a,[o,i,l]=t,s=0;if(o.some((r=>0!==e[r]))){for(n in i)g.o(i,n)&&(g.m[n]=i[n]);l&&l(g)}for(r&&r(t);s<o.length;s++)a=o[s],g.o(e,a)&&e[a]&&e[a][0](),e[a]=0},t=globalThis.webpackChunk_kenyaemr_esm_patient_registration_app=globalThis.webpackChunk_kenyaemr_esm_patient_registration_app||[];t.forEach(r.bind(null,0)),t.push=r.bind(null,t.push.bind(t))})(),g.nc=void 0;var y=g(372);_kenyaemr_esm_patient_registration_app=y})();
|
|
@@ -5,9 +5,9 @@
|
|
|
5
5
|
"initial": false,
|
|
6
6
|
"entry": false,
|
|
7
7
|
"recorded": false,
|
|
8
|
-
"size":
|
|
8
|
+
"size": 24274,
|
|
9
9
|
"sizes": {
|
|
10
|
-
"javascript":
|
|
10
|
+
"javascript": 24274
|
|
11
11
|
},
|
|
12
12
|
"names": [],
|
|
13
13
|
"idHints": [],
|
|
@@ -16,12 +16,12 @@
|
|
|
16
16
|
"main"
|
|
17
17
|
],
|
|
18
18
|
"files": [
|
|
19
|
-
"
|
|
19
|
+
"2.js"
|
|
20
20
|
],
|
|
21
21
|
"auxiliaryFiles": [
|
|
22
|
-
"
|
|
22
|
+
"2.js.map"
|
|
23
23
|
],
|
|
24
|
-
"hash": "
|
|
24
|
+
"hash": "4c73ccaaa33ade5f",
|
|
25
25
|
"childrenByOrder": {}
|
|
26
26
|
},
|
|
27
27
|
{
|
|
@@ -29,26 +29,47 @@
|
|
|
29
29
|
"initial": false,
|
|
30
30
|
"entry": false,
|
|
31
31
|
"recorded": false,
|
|
32
|
-
"
|
|
33
|
-
"size": 3484420,
|
|
32
|
+
"size": 931622,
|
|
34
33
|
"sizes": {
|
|
35
|
-
"javascript":
|
|
34
|
+
"javascript": 931412,
|
|
35
|
+
"consume-shared": 210
|
|
36
36
|
},
|
|
37
37
|
"names": [],
|
|
38
|
-
"idHints": [
|
|
39
|
-
|
|
38
|
+
"idHints": [],
|
|
39
|
+
"runtime": [
|
|
40
|
+
"@kenyaemr/esm-patient-registration-app"
|
|
40
41
|
],
|
|
42
|
+
"files": [
|
|
43
|
+
"66.js"
|
|
44
|
+
],
|
|
45
|
+
"auxiliaryFiles": [
|
|
46
|
+
"66.js.map"
|
|
47
|
+
],
|
|
48
|
+
"hash": "3aa629809f8403d4",
|
|
49
|
+
"childrenByOrder": {}
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
"rendered": true,
|
|
53
|
+
"initial": false,
|
|
54
|
+
"entry": false,
|
|
55
|
+
"recorded": false,
|
|
56
|
+
"size": 4486,
|
|
57
|
+
"sizes": {
|
|
58
|
+
"javascript": 4486
|
|
59
|
+
},
|
|
60
|
+
"names": [],
|
|
61
|
+
"idHints": [],
|
|
41
62
|
"runtime": [
|
|
42
63
|
"@kenyaemr/esm-patient-registration-app",
|
|
43
64
|
"main"
|
|
44
65
|
],
|
|
45
66
|
"files": [
|
|
46
|
-
"
|
|
67
|
+
"76.js"
|
|
47
68
|
],
|
|
48
69
|
"auxiliaryFiles": [
|
|
49
|
-
"
|
|
70
|
+
"76.js.map"
|
|
50
71
|
],
|
|
51
|
-
"hash": "
|
|
72
|
+
"hash": "d6412af29b8217a7",
|
|
52
73
|
"childrenByOrder": {}
|
|
53
74
|
},
|
|
54
75
|
{
|
|
@@ -56,9 +77,9 @@
|
|
|
56
77
|
"initial": false,
|
|
57
78
|
"entry": false,
|
|
58
79
|
"recorded": false,
|
|
59
|
-
"size":
|
|
80
|
+
"size": 1342,
|
|
60
81
|
"sizes": {
|
|
61
|
-
"javascript":
|
|
82
|
+
"javascript": 1342
|
|
62
83
|
},
|
|
63
84
|
"names": [],
|
|
64
85
|
"idHints": [],
|
|
@@ -67,12 +88,39 @@
|
|
|
67
88
|
"main"
|
|
68
89
|
],
|
|
69
90
|
"files": [
|
|
70
|
-
"
|
|
91
|
+
"108.js"
|
|
71
92
|
],
|
|
72
93
|
"auxiliaryFiles": [
|
|
73
|
-
"
|
|
94
|
+
"108.js.map"
|
|
74
95
|
],
|
|
75
|
-
"hash": "
|
|
96
|
+
"hash": "32d172ea5795aef0",
|
|
97
|
+
"childrenByOrder": {}
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
"rendered": true,
|
|
101
|
+
"initial": false,
|
|
102
|
+
"entry": false,
|
|
103
|
+
"recorded": false,
|
|
104
|
+
"reason": "reused as split chunk (cache group: defaultVendors)",
|
|
105
|
+
"size": 4879750,
|
|
106
|
+
"sizes": {
|
|
107
|
+
"javascript": 4879750
|
|
108
|
+
},
|
|
109
|
+
"names": [],
|
|
110
|
+
"idHints": [
|
|
111
|
+
"vendors"
|
|
112
|
+
],
|
|
113
|
+
"runtime": [
|
|
114
|
+
"@kenyaemr/esm-patient-registration-app",
|
|
115
|
+
"main"
|
|
116
|
+
],
|
|
117
|
+
"files": [
|
|
118
|
+
"130.js"
|
|
119
|
+
],
|
|
120
|
+
"auxiliaryFiles": [
|
|
121
|
+
"130.js.map"
|
|
122
|
+
],
|
|
123
|
+
"hash": "8f8825c5cb7adc76",
|
|
76
124
|
"childrenByOrder": {}
|
|
77
125
|
},
|
|
78
126
|
{
|
|
@@ -104,12 +152,12 @@
|
|
|
104
152
|
"initial": true,
|
|
105
153
|
"entry": true,
|
|
106
154
|
"recorded": false,
|
|
107
|
-
"size":
|
|
155
|
+
"size": 3378604,
|
|
108
156
|
"sizes": {
|
|
109
157
|
"consume-shared": 294,
|
|
110
|
-
"javascript":
|
|
158
|
+
"javascript": 3357279,
|
|
111
159
|
"share-init": 294,
|
|
112
|
-
"runtime":
|
|
160
|
+
"runtime": 20737
|
|
113
161
|
},
|
|
114
162
|
"names": [
|
|
115
163
|
"main"
|
|
@@ -124,7 +172,7 @@
|
|
|
124
172
|
"auxiliaryFiles": [
|
|
125
173
|
"main.js.map"
|
|
126
174
|
],
|
|
127
|
-
"hash": "
|
|
175
|
+
"hash": "f322dccbaa508ace",
|
|
128
176
|
"childrenByOrder": {}
|
|
129
177
|
},
|
|
130
178
|
{
|
|
@@ -132,26 +180,23 @@
|
|
|
132
180
|
"initial": false,
|
|
133
181
|
"entry": false,
|
|
134
182
|
"recorded": false,
|
|
135
|
-
"
|
|
136
|
-
"size": 25337,
|
|
183
|
+
"size": 1648,
|
|
137
184
|
"sizes": {
|
|
138
|
-
"javascript":
|
|
185
|
+
"javascript": 1648
|
|
139
186
|
},
|
|
140
187
|
"names": [],
|
|
141
|
-
"idHints": [
|
|
142
|
-
"vendors"
|
|
143
|
-
],
|
|
188
|
+
"idHints": [],
|
|
144
189
|
"runtime": [
|
|
145
190
|
"@kenyaemr/esm-patient-registration-app",
|
|
146
191
|
"main"
|
|
147
192
|
],
|
|
148
193
|
"files": [
|
|
149
|
-
"
|
|
194
|
+
"250.js"
|
|
150
195
|
],
|
|
151
196
|
"auxiliaryFiles": [
|
|
152
|
-
"
|
|
197
|
+
"250.js.map"
|
|
153
198
|
],
|
|
154
|
-
"hash": "
|
|
199
|
+
"hash": "462dd2676164306a",
|
|
155
200
|
"childrenByOrder": {}
|
|
156
201
|
},
|
|
157
202
|
{
|
|
@@ -180,9 +225,9 @@
|
|
|
180
225
|
"initial": false,
|
|
181
226
|
"entry": false,
|
|
182
227
|
"recorded": false,
|
|
183
|
-
"size":
|
|
228
|
+
"size": 4758,
|
|
184
229
|
"sizes": {
|
|
185
|
-
"javascript":
|
|
230
|
+
"javascript": 4758
|
|
186
231
|
},
|
|
187
232
|
"names": [],
|
|
188
233
|
"idHints": [],
|
|
@@ -194,7 +239,7 @@
|
|
|
194
239
|
"271.js"
|
|
195
240
|
],
|
|
196
241
|
"auxiliaryFiles": [],
|
|
197
|
-
"hash": "
|
|
242
|
+
"hash": "92dd431b467ff8aa",
|
|
198
243
|
"childrenByOrder": {}
|
|
199
244
|
},
|
|
200
245
|
{
|
|
@@ -202,9 +247,9 @@
|
|
|
202
247
|
"initial": false,
|
|
203
248
|
"entry": false,
|
|
204
249
|
"recorded": false,
|
|
205
|
-
"size":
|
|
250
|
+
"size": 6953,
|
|
206
251
|
"sizes": {
|
|
207
|
-
"javascript":
|
|
252
|
+
"javascript": 6953
|
|
208
253
|
},
|
|
209
254
|
"names": [],
|
|
210
255
|
"idHints": [],
|
|
@@ -213,12 +258,10 @@
|
|
|
213
258
|
"main"
|
|
214
259
|
],
|
|
215
260
|
"files": [
|
|
216
|
-
"
|
|
217
|
-
],
|
|
218
|
-
"auxiliaryFiles": [
|
|
219
|
-
"303.js.map"
|
|
261
|
+
"319.js"
|
|
220
262
|
],
|
|
221
|
-
"
|
|
263
|
+
"auxiliaryFiles": [],
|
|
264
|
+
"hash": "a5e7ba541642bbb2",
|
|
222
265
|
"childrenByOrder": {}
|
|
223
266
|
},
|
|
224
267
|
{
|
|
@@ -226,42 +269,26 @@
|
|
|
226
269
|
"initial": false,
|
|
227
270
|
"entry": false,
|
|
228
271
|
"recorded": false,
|
|
229
|
-
"
|
|
272
|
+
"reason": "reused as split chunk (cache group: defaultVendors)",
|
|
273
|
+
"size": 25608,
|
|
230
274
|
"sizes": {
|
|
231
|
-
"javascript":
|
|
275
|
+
"javascript": 25608
|
|
232
276
|
},
|
|
233
277
|
"names": [],
|
|
234
|
-
"idHints": [
|
|
278
|
+
"idHints": [
|
|
279
|
+
"vendors"
|
|
280
|
+
],
|
|
235
281
|
"runtime": [
|
|
236
282
|
"@kenyaemr/esm-patient-registration-app",
|
|
237
283
|
"main"
|
|
238
284
|
],
|
|
239
285
|
"files": [
|
|
240
|
-
"
|
|
286
|
+
"325.js"
|
|
241
287
|
],
|
|
242
|
-
"auxiliaryFiles": [
|
|
243
|
-
|
|
244
|
-
"childrenByOrder": {}
|
|
245
|
-
},
|
|
246
|
-
{
|
|
247
|
-
"rendered": false,
|
|
248
|
-
"initial": false,
|
|
249
|
-
"entry": false,
|
|
250
|
-
"recorded": false,
|
|
251
|
-
"reason": "split chunk (cache group: default)",
|
|
252
|
-
"size": 42,
|
|
253
|
-
"sizes": {
|
|
254
|
-
"consume-shared": 42
|
|
255
|
-
},
|
|
256
|
-
"names": [],
|
|
257
|
-
"idHints": [],
|
|
258
|
-
"runtime": [
|
|
259
|
-
"@kenyaemr/esm-patient-registration-app",
|
|
260
|
-
"main"
|
|
288
|
+
"auxiliaryFiles": [
|
|
289
|
+
"325.js.map"
|
|
261
290
|
],
|
|
262
|
-
"
|
|
263
|
-
"auxiliaryFiles": [],
|
|
264
|
-
"hash": "2e589cb17a3a6274",
|
|
291
|
+
"hash": "7ee402a2d5bc4a24",
|
|
265
292
|
"childrenByOrder": {}
|
|
266
293
|
},
|
|
267
294
|
{
|
|
@@ -269,9 +296,9 @@
|
|
|
269
296
|
"initial": false,
|
|
270
297
|
"entry": false,
|
|
271
298
|
"recorded": false,
|
|
272
|
-
"size":
|
|
299
|
+
"size": 25557,
|
|
273
300
|
"sizes": {
|
|
274
|
-
"javascript":
|
|
301
|
+
"javascript": 25557
|
|
275
302
|
},
|
|
276
303
|
"names": [],
|
|
277
304
|
"idHints": [],
|
|
@@ -280,12 +307,12 @@
|
|
|
280
307
|
"main"
|
|
281
308
|
],
|
|
282
309
|
"files": [
|
|
283
|
-
"
|
|
310
|
+
"372.js"
|
|
284
311
|
],
|
|
285
312
|
"auxiliaryFiles": [
|
|
286
|
-
"
|
|
313
|
+
"372.js.map"
|
|
287
314
|
],
|
|
288
|
-
"hash": "
|
|
315
|
+
"hash": "0721fc8440a4bf83",
|
|
289
316
|
"childrenByOrder": {}
|
|
290
317
|
},
|
|
291
318
|
{
|
|
@@ -293,9 +320,9 @@
|
|
|
293
320
|
"initial": false,
|
|
294
321
|
"entry": false,
|
|
295
322
|
"recorded": false,
|
|
296
|
-
"size":
|
|
323
|
+
"size": 6367,
|
|
297
324
|
"sizes": {
|
|
298
|
-
"javascript":
|
|
325
|
+
"javascript": 6367
|
|
299
326
|
},
|
|
300
327
|
"names": [],
|
|
301
328
|
"idHints": [],
|
|
@@ -307,7 +334,7 @@
|
|
|
307
334
|
"460.js"
|
|
308
335
|
],
|
|
309
336
|
"auxiliaryFiles": [],
|
|
310
|
-
"hash": "
|
|
337
|
+
"hash": "2f9dec945e43b5f2",
|
|
311
338
|
"childrenByOrder": {}
|
|
312
339
|
},
|
|
313
340
|
{
|
|
@@ -339,33 +366,9 @@
|
|
|
339
366
|
"initial": false,
|
|
340
367
|
"entry": false,
|
|
341
368
|
"recorded": false,
|
|
342
|
-
"size":
|
|
343
|
-
"sizes": {
|
|
344
|
-
"javascript": 771593,
|
|
345
|
-
"consume-shared": 210
|
|
346
|
-
},
|
|
347
|
-
"names": [],
|
|
348
|
-
"idHints": [],
|
|
349
|
-
"runtime": [
|
|
350
|
-
"@kenyaemr/esm-patient-registration-app"
|
|
351
|
-
],
|
|
352
|
-
"files": [
|
|
353
|
-
"564.js"
|
|
354
|
-
],
|
|
355
|
-
"auxiliaryFiles": [
|
|
356
|
-
"564.js.map"
|
|
357
|
-
],
|
|
358
|
-
"hash": "9963532b71f3cc2a",
|
|
359
|
-
"childrenByOrder": {}
|
|
360
|
-
},
|
|
361
|
-
{
|
|
362
|
-
"rendered": true,
|
|
363
|
-
"initial": false,
|
|
364
|
-
"entry": false,
|
|
365
|
-
"recorded": false,
|
|
366
|
-
"size": 5796,
|
|
369
|
+
"size": 7449,
|
|
367
370
|
"sizes": {
|
|
368
|
-
"javascript":
|
|
371
|
+
"javascript": 7449
|
|
369
372
|
},
|
|
370
373
|
"names": [],
|
|
371
374
|
"idHints": [],
|
|
@@ -377,7 +380,7 @@
|
|
|
377
380
|
"574.js"
|
|
378
381
|
],
|
|
379
382
|
"auxiliaryFiles": [],
|
|
380
|
-
"hash": "
|
|
383
|
+
"hash": "24fcba5709860029",
|
|
381
384
|
"childrenByOrder": {}
|
|
382
385
|
},
|
|
383
386
|
{
|
|
@@ -408,13 +411,14 @@
|
|
|
408
411
|
"childrenByOrder": {}
|
|
409
412
|
},
|
|
410
413
|
{
|
|
411
|
-
"rendered":
|
|
414
|
+
"rendered": false,
|
|
412
415
|
"initial": false,
|
|
413
416
|
"entry": false,
|
|
414
417
|
"recorded": false,
|
|
415
|
-
"
|
|
418
|
+
"reason": "split chunk (cache group: default)",
|
|
419
|
+
"size": 42,
|
|
416
420
|
"sizes": {
|
|
417
|
-
"
|
|
421
|
+
"consume-shared": 42
|
|
418
422
|
},
|
|
419
423
|
"names": [],
|
|
420
424
|
"idHints": [],
|
|
@@ -422,13 +426,9 @@
|
|
|
422
426
|
"@kenyaemr/esm-patient-registration-app",
|
|
423
427
|
"main"
|
|
424
428
|
],
|
|
425
|
-
"files": [
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
"auxiliaryFiles": [
|
|
429
|
-
"623.js.map"
|
|
430
|
-
],
|
|
431
|
-
"hash": "cbe44d75d943919a",
|
|
429
|
+
"files": [],
|
|
430
|
+
"auxiliaryFiles": [],
|
|
431
|
+
"hash": "b3d4e2103baffb5c",
|
|
432
432
|
"childrenByOrder": {}
|
|
433
433
|
},
|
|
434
434
|
{
|
|
@@ -436,9 +436,9 @@
|
|
|
436
436
|
"initial": false,
|
|
437
437
|
"entry": false,
|
|
438
438
|
"recorded": false,
|
|
439
|
-
"size":
|
|
439
|
+
"size": 4758,
|
|
440
440
|
"sizes": {
|
|
441
|
-
"javascript":
|
|
441
|
+
"javascript": 4758
|
|
442
442
|
},
|
|
443
443
|
"names": [],
|
|
444
444
|
"idHints": [],
|
|
@@ -450,7 +450,7 @@
|
|
|
450
450
|
"644.js"
|
|
451
451
|
],
|
|
452
452
|
"auxiliaryFiles": [],
|
|
453
|
-
"hash": "
|
|
453
|
+
"hash": "6373d8e9bb798eb1",
|
|
454
454
|
"childrenByOrder": {}
|
|
455
455
|
},
|
|
456
456
|
{
|
|
@@ -458,36 +458,9 @@
|
|
|
458
458
|
"initial": false,
|
|
459
459
|
"entry": false,
|
|
460
460
|
"recorded": false,
|
|
461
|
-
"
|
|
462
|
-
"size": 25530,
|
|
461
|
+
"size": 1095,
|
|
463
462
|
"sizes": {
|
|
464
|
-
"javascript":
|
|
465
|
-
},
|
|
466
|
-
"names": [],
|
|
467
|
-
"idHints": [
|
|
468
|
-
"vendors"
|
|
469
|
-
],
|
|
470
|
-
"runtime": [
|
|
471
|
-
"@kenyaemr/esm-patient-registration-app",
|
|
472
|
-
"main"
|
|
473
|
-
],
|
|
474
|
-
"files": [
|
|
475
|
-
"729.js"
|
|
476
|
-
],
|
|
477
|
-
"auxiliaryFiles": [
|
|
478
|
-
"729.js.map"
|
|
479
|
-
],
|
|
480
|
-
"hash": "1a562c10067b2876",
|
|
481
|
-
"childrenByOrder": {}
|
|
482
|
-
},
|
|
483
|
-
{
|
|
484
|
-
"rendered": true,
|
|
485
|
-
"initial": false,
|
|
486
|
-
"entry": false,
|
|
487
|
-
"recorded": false,
|
|
488
|
-
"size": 1183,
|
|
489
|
-
"sizes": {
|
|
490
|
-
"javascript": 1183
|
|
463
|
+
"javascript": 1095
|
|
491
464
|
},
|
|
492
465
|
"names": [],
|
|
493
466
|
"idHints": [],
|
|
@@ -496,12 +469,12 @@
|
|
|
496
469
|
"main"
|
|
497
470
|
],
|
|
498
471
|
"files": [
|
|
499
|
-
"
|
|
472
|
+
"662.js"
|
|
500
473
|
],
|
|
501
474
|
"auxiliaryFiles": [
|
|
502
|
-
"
|
|
475
|
+
"662.js.map"
|
|
503
476
|
],
|
|
504
|
-
"hash": "
|
|
477
|
+
"hash": "348bd8b2ea78c444",
|
|
505
478
|
"childrenByOrder": {}
|
|
506
479
|
},
|
|
507
480
|
{
|
|
@@ -533,9 +506,9 @@
|
|
|
533
506
|
"initial": false,
|
|
534
507
|
"entry": false,
|
|
535
508
|
"recorded": false,
|
|
536
|
-
"size":
|
|
509
|
+
"size": 6697,
|
|
537
510
|
"sizes": {
|
|
538
|
-
"javascript":
|
|
511
|
+
"javascript": 6697
|
|
539
512
|
},
|
|
540
513
|
"names": [],
|
|
541
514
|
"idHints": [],
|
|
@@ -547,7 +520,7 @@
|
|
|
547
520
|
"757.js"
|
|
548
521
|
],
|
|
549
522
|
"auxiliaryFiles": [],
|
|
550
|
-
"hash": "
|
|
523
|
+
"hash": "572076741b60cca2",
|
|
551
524
|
"childrenByOrder": {}
|
|
552
525
|
},
|
|
553
526
|
{
|
|
@@ -579,9 +552,9 @@
|
|
|
579
552
|
"initial": false,
|
|
580
553
|
"entry": false,
|
|
581
554
|
"recorded": false,
|
|
582
|
-
"size":
|
|
555
|
+
"size": 6409,
|
|
583
556
|
"sizes": {
|
|
584
|
-
"javascript":
|
|
557
|
+
"javascript": 6409
|
|
585
558
|
},
|
|
586
559
|
"names": [],
|
|
587
560
|
"idHints": [],
|
|
@@ -593,7 +566,7 @@
|
|
|
593
566
|
"788.js"
|
|
594
567
|
],
|
|
595
568
|
"auxiliaryFiles": [],
|
|
596
|
-
"hash": "
|
|
569
|
+
"hash": "e9fc8e9e3fedb4bd",
|
|
597
570
|
"childrenByOrder": {}
|
|
598
571
|
},
|
|
599
572
|
{
|
|
@@ -601,9 +574,9 @@
|
|
|
601
574
|
"initial": false,
|
|
602
575
|
"entry": false,
|
|
603
576
|
"recorded": false,
|
|
604
|
-
"size":
|
|
577
|
+
"size": 6557,
|
|
605
578
|
"sizes": {
|
|
606
|
-
"javascript":
|
|
579
|
+
"javascript": 6557
|
|
607
580
|
},
|
|
608
581
|
"names": [],
|
|
609
582
|
"idHints": [],
|
|
@@ -615,7 +588,7 @@
|
|
|
615
588
|
"807.js"
|
|
616
589
|
],
|
|
617
590
|
"auxiliaryFiles": [],
|
|
618
|
-
"hash": "
|
|
591
|
+
"hash": "67b141165730ab60",
|
|
619
592
|
"childrenByOrder": {}
|
|
620
593
|
},
|
|
621
594
|
{
|
|
@@ -623,35 +596,9 @@
|
|
|
623
596
|
"initial": false,
|
|
624
597
|
"entry": false,
|
|
625
598
|
"recorded": false,
|
|
626
|
-
"
|
|
627
|
-
"size": 2053438,
|
|
599
|
+
"size": 6103,
|
|
628
600
|
"sizes": {
|
|
629
|
-
"javascript":
|
|
630
|
-
},
|
|
631
|
-
"names": [],
|
|
632
|
-
"idHints": [
|
|
633
|
-
"vendors"
|
|
634
|
-
],
|
|
635
|
-
"runtime": [
|
|
636
|
-
"@kenyaemr/esm-patient-registration-app"
|
|
637
|
-
],
|
|
638
|
-
"files": [
|
|
639
|
-
"831.js"
|
|
640
|
-
],
|
|
641
|
-
"auxiliaryFiles": [
|
|
642
|
-
"831.js.map"
|
|
643
|
-
],
|
|
644
|
-
"hash": "eedc81d8b08e7733",
|
|
645
|
-
"childrenByOrder": {}
|
|
646
|
-
},
|
|
647
|
-
{
|
|
648
|
-
"rendered": true,
|
|
649
|
-
"initial": false,
|
|
650
|
-
"entry": false,
|
|
651
|
-
"recorded": false,
|
|
652
|
-
"size": 5314,
|
|
653
|
-
"sizes": {
|
|
654
|
-
"javascript": 5314
|
|
601
|
+
"javascript": 6103
|
|
655
602
|
},
|
|
656
603
|
"names": [],
|
|
657
604
|
"idHints": [],
|
|
@@ -663,7 +610,7 @@
|
|
|
663
610
|
"833.js"
|
|
664
611
|
],
|
|
665
612
|
"auxiliaryFiles": [],
|
|
666
|
-
"hash": "
|
|
613
|
+
"hash": "1e297232bb6fe5a2",
|
|
667
614
|
"childrenByOrder": {}
|
|
668
615
|
},
|
|
669
616
|
{
|
|
@@ -695,11 +642,11 @@
|
|
|
695
642
|
"initial": true,
|
|
696
643
|
"entry": true,
|
|
697
644
|
"recorded": false,
|
|
698
|
-
"size":
|
|
645
|
+
"size": 20673,
|
|
699
646
|
"sizes": {
|
|
700
647
|
"javascript": 42,
|
|
701
648
|
"share-init": 294,
|
|
702
|
-
"runtime":
|
|
649
|
+
"runtime": 20337
|
|
703
650
|
},
|
|
704
651
|
"names": [
|
|
705
652
|
"@kenyaemr/esm-patient-registration-app"
|
|
@@ -714,7 +661,33 @@
|
|
|
714
661
|
"auxiliaryFiles": [
|
|
715
662
|
"kenyaemr-esm-patient-registration-app.js.map"
|
|
716
663
|
],
|
|
717
|
-
"hash": "
|
|
664
|
+
"hash": "28e3eac536ee7933",
|
|
665
|
+
"childrenByOrder": {}
|
|
666
|
+
},
|
|
667
|
+
{
|
|
668
|
+
"rendered": true,
|
|
669
|
+
"initial": false,
|
|
670
|
+
"entry": false,
|
|
671
|
+
"recorded": false,
|
|
672
|
+
"reason": "split chunk (cache group: defaultVendors)",
|
|
673
|
+
"size": 2425867,
|
|
674
|
+
"sizes": {
|
|
675
|
+
"javascript": 2425867
|
|
676
|
+
},
|
|
677
|
+
"names": [],
|
|
678
|
+
"idHints": [
|
|
679
|
+
"vendors"
|
|
680
|
+
],
|
|
681
|
+
"runtime": [
|
|
682
|
+
"@kenyaemr/esm-patient-registration-app"
|
|
683
|
+
],
|
|
684
|
+
"files": [
|
|
685
|
+
"895.js"
|
|
686
|
+
],
|
|
687
|
+
"auxiliaryFiles": [
|
|
688
|
+
"895.js.map"
|
|
689
|
+
],
|
|
690
|
+
"hash": "ff45c0a305217b11",
|
|
718
691
|
"childrenByOrder": {}
|
|
719
692
|
}
|
|
720
693
|
]
|