@ampath/esm-reports-app 1.0.0-next.2 → 1.0.0-next.21
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/138.js +2 -0
- package/dist/138.js.LICENSE.txt +20 -0
- package/dist/138.js.map +1 -0
- package/dist/184.js +1 -1
- package/dist/184.js.map +1 -1
- package/dist/205.js +1 -0
- package/dist/205.js.map +1 -0
- package/dist/282.js +1 -1
- package/dist/282.js.LICENSE.txt +3 -3
- package/dist/282.js.map +1 -1
- package/dist/311.js +1 -0
- package/dist/311.js.map +1 -0
- package/dist/353.js +1 -1
- package/dist/353.js.map +1 -1
- package/dist/478.js +2 -0
- package/dist/478.js.LICENSE.txt +9 -0
- package/dist/478.js.map +1 -0
- package/dist/51.js +1 -0
- package/dist/51.js.map +1 -0
- package/dist/540.js +1 -1
- package/dist/540.js.map +1 -1
- package/dist/812.js +1 -0
- package/dist/812.js.map +1 -0
- package/dist/961.js +1 -1
- package/dist/961.js.map +1 -1
- package/dist/ampath-esm-reports-app.js +1 -1
- package/dist/ampath-esm-reports-app.js.buildmanifest.json +128 -151
- package/dist/ampath-esm-reports-app.js.map +1 -1
- package/dist/main.js +1 -1
- package/dist/main.js.map +1 -1
- package/dist/routes.json +1 -1
- package/package.json +2 -1
- package/src/common/report-filters/report-filters.component.tsx +127 -0
- package/src/common/report-filters/report-filters.scss +49 -0
- package/src/config-schema.ts +6 -37
- package/src/createDashboardLink.tsx +9 -0
- package/src/dashboard/reports-dasboard.tsx +44 -0
- package/src/dashboard/reports-dashboard.module.scss +14 -0
- package/src/dashboard-meta/reports-dashboard.meta.ts +6 -0
- package/src/index.ts +6 -35
- package/src/reports/datatable-wrapper/datatable-wrapper.component.tsx +54 -0
- package/src/reports/moh-240/moh-240-header.component.tsx +61 -0
- package/src/reports/moh-240/moh-240.component.tsx +68 -0
- package/src/reports/moh-240/moh-240.scss +3 -0
- package/src/reports/moh-240/sub-reports/moh-240-register.component.tsx +72 -0
- package/src/reports/moh-240/sub-reports/page-summary.component.tsx +95 -0
- package/src/reports/moh-505/moh-505-header.component.tsx +62 -0
- package/src/reports/moh-505/moh-505.component.tsx +240 -0
- package/src/reports/moh-505/moh-505.scss +3 -0
- package/src/reports/moh-705B/moh-705b.component.tsx +466 -0
- package/src/reports/moh-705B/moh-705b.scss +41 -0
- package/src/reports/moh-705a/moh-705a.component.tsx +473 -0
- package/src/reports/moh-705a/moh-705a.scss +41 -0
- package/src/reports/moh-706/moh-706-header.component.tsx +61 -0
- package/src/reports/moh-706/moh-706.component.tsx +104 -0
- package/src/reports/moh-706/moh-706.scss +30 -0
- package/src/reports/moh-706/sub-reports/bacteriology/bacteriology.component.tsx +124 -0
- package/src/reports/moh-706/sub-reports/blood-chemistry/blood-chemistry.component.tsx +318 -0
- package/src/reports/moh-706/sub-reports/drug-susceptibility-testing/drug-susceptibility-testing.component.tsx +137 -0
- package/src/reports/moh-706/sub-reports/haematology/haematology.component.tsx +179 -0
- package/src/reports/moh-706/sub-reports/histology-and-cytology/histology-and-cytology.component.tsx +88 -0
- package/src/reports/moh-706/sub-reports/parasitology/parasitology.component.tsx +121 -0
- package/src/reports/moh-706/sub-reports/serology/serology.component.tsx +47 -0
- package/src/reports/moh-706/sub-reports/specimen-referral-to-higher-levels/specimen-referral-to-higher-levels.component.tsx +39 -0
- package/src/reports/moh-706/sub-reports/urine-analysis/urine-analysis.component.tsx +108 -0
- package/src/reports/moh-710/moh-710.component.tsx +663 -0
- package/src/reports/moh-710/moh-710.scss +41 -0
- package/src/reports/moh-711/moh-711.component.tsx +121 -0
- package/src/reports/moh-711/moh711.scss +71 -0
- package/src/reports/moh-711/sections/anc.component.tsx +134 -0
- package/src/reports/moh-711/sections/cervical-cancer.component.tsx +104 -0
- package/src/reports/moh-711/sections/chanis.component.tsx +367 -0
- package/src/reports/moh-711/sections/family-planning.component.tsx +221 -0
- package/src/reports/moh-711/sections/gbv.component.tsx +115 -0
- package/src/reports/moh-711/sections/maternity.component.tsx +280 -0
- package/src/reports/moh-711/sections/medical-social-work.component.tsx +83 -0
- package/src/reports/moh-711/sections/other.component.tsx +47 -0
- package/src/reports/moh-711/sections/physiotherapy.component.tsx +61 -0
- package/src/reports/moh-711/sections/pnc.component.tsx +92 -0
- package/src/reports/moh-711/sections/post-abortion.component.tsx +42 -0
- package/src/reports/moh-711/sections/rehabilitation.component.tsx +57 -0
- package/src/reports/moh-711/sections/report-compiled-by.component.tsx +42 -0
- package/src/reports/moh-711/sections/tb-screening.component.tsx +57 -0
- package/src/reports/moh-717/moh-717.component.tsx +152 -0
- package/src/reports/moh-717/moh717.scss +150 -0
- package/src/reports/moh-717/sections/finance.component.tsx +42 -0
- package/src/reports/moh-717/sections/inpatient.component.tsx +374 -0
- package/src/reports/moh-717/sections/maternity.component.tsx +94 -0
- package/src/reports/moh-717/sections/medical-records.component.tsx +35 -0
- package/src/reports/moh-717/sections/mortuary.component.tsx +43 -0
- package/src/reports/moh-717/sections/operations.component.tsx +53 -0
- package/src/reports/moh-717/sections/orthopaedic-trauma.component.tsx +98 -0
- package/src/reports/moh-717/sections/outpatient.component.tsx +489 -0
- package/src/reports/moh-717/sections/pharmacy.component.tsx +43 -0
- package/src/reports/moh-717/sections/preparedby.component.tsx +47 -0
- package/src/reports/moh-717/sections/special-services.component.tsx +114 -0
- package/src/reports/moh-740/moh-740.component.scss +120 -0
- package/src/reports/moh-740/moh-740.component.tsx +907 -0
- package/src/reports/moh-740/moh-740.resource.ts +42 -0
- package/src/reports/moh-740/registers/moh-222-daily-register/moh-222-daily-register.tsx +6 -0
- package/src/reports/moh-740/registers/moh-270-permanent-register/moh-270-permanent-register.tsx +58 -0
- package/src/reports/moh-740/registers/moh-740-patient-list.scss +0 -0
- package/src/reports/moh-740/registers/moh-740-patient-list.tsx +43 -0
- package/src/reports/moh-740/shared/data-cell/data-cell.scss +6 -0
- package/src/reports/moh-740/shared/data-cell/data-cell.tsx +23 -0
- package/src/reports/moh-740/types/index.ts +115 -0
- package/src/reports/moh-745/moh-745.component.tsx +629 -0
- package/src/reports/moh-745/moh-745.scss +69 -0
- package/src/reports/table-wrapper/table-row-mapper.component.tsx +51 -0
- package/src/reports/table-wrapper/table-wrapper.component.tsx +21 -0
- package/src/reports/table-wrapper/table-wrapper.scss +31 -0
- package/src/resources/moh-705.resource.ts +60 -0
- package/src/resources/moh-706.resource.ts +86 -0
- package/src/resources/moh-710.resource.ts +34 -0
- package/src/resources/moh-711.resource.ts +34 -0
- package/src/resources/moh-717.resource.ts +35 -0
- package/src/resources/moh-745.resource.ts +34 -0
- package/src/root.component.tsx +30 -32
- package/src/routes.json +14 -17
- package/src/utils/get-base-url.ts +12 -0
- package/src/utils/utils.ts +36 -0
- package/dist/19.js +0 -2
- package/dist/19.js.LICENSE.txt +0 -39
- package/dist/19.js.map +0 -1
- package/dist/255.js +0 -1
- package/dist/255.js.map +0 -1
- package/dist/389.js +0 -1
- package/dist/389.js.map +0 -1
- package/dist/451.js +0 -1
- package/dist/451.js.map +0 -1
- package/dist/488.js +0 -1
- package/dist/488.js.map +0 -1
- package/dist/557.js +0 -1
- package/dist/557.js.map +0 -1
- package/dist/91.js +0 -1
- package/dist/91.js.map +0 -1
- package/dist/970.js +0 -1
- package/dist/970.js.map +0 -1
- package/src/boxes/extensions/blue-box.component.tsx +0 -15
- package/src/boxes/extensions/box.scss +0 -23
- package/src/boxes/extensions/brand-box.component.tsx +0 -15
- package/src/boxes/extensions/red-box.component.tsx +0 -15
- package/src/boxes/slot/boxes.component.tsx +0 -25
- package/src/boxes/slot/boxes.scss +0 -29
- package/src/greeter/greeter.component.tsx +0 -42
- package/src/greeter/greeter.scss +0 -20
- package/src/greeter/greeter.test.tsx +0 -28
- package/src/patient-getter/patient-getter.component.tsx +0 -40
- package/src/patient-getter/patient-getter.resource.ts +0 -39
- package/src/patient-getter/patient-getter.scss +0 -16
- package/src/patient-getter/patient-getter.test.tsx +0 -40
- package/src/resources/resources.component.tsx +0 -56
- package/src/resources/resources.scss +0 -68
- package/src/root.test.tsx +0 -51
|
@@ -1 +1 @@
|
|
|
1
|
-
var _ampath_esm_reports_app;(()=>{"use strict";var e,r,t,o,a,n,i,l,s,u,p,f,d,c,h,m,v,g,b,y,_,w={2556(e,r,t){var o={"./start":()=>t.e(
|
|
1
|
+
var _ampath_esm_reports_app;(()=>{"use strict";var e,r,t,o,a,n,i,l,s,u,p,f,d,c,h,m,v,g,b,y,_,w={2556(e,r,t){var o={"./start":()=>Promise.all([t.e(72),t.e(114),t.e(812)]).then(()=>()=>t(8812))},a=(e,r)=>(t.R=r,r=t.o(o,e)?o[e]():Promise.resolve().then(()=>{throw new Error('Module "'+e+'" does not exist in container.')}),t.R=void 0,r),n=(e,r)=>{if(t.S){var o="default",a=t.S[o];if(a&&a!==e)throw new Error("Container initialization failed as it has already been initialized with a different share scope");return t.S[o]=e,t.I(o,r)}};t.d(r,{get:()=>a,init:()=>n})}},S={};function j(e){var r=S[e];if(void 0!==r)return r.exports;var t=S[e]={id:e,exports:{}};return w[e].call(t.exports,t,t.exports,j),t.exports}j.m=w,j.c=S,j.n=e=>{var r=e&&e.__esModule?()=>e.default:()=>e;return j.d(r,{a:r}),r},r=Object.getPrototypeOf?e=>Object.getPrototypeOf(e):e=>e.__proto__,j.t=function(t,o){if(1&o&&(t=this(t)),8&o)return t;if("object"==typeof t&&t){if(4&o&&t.__esModule)return t;if(16&o&&"function"==typeof t.then)return t}var a=Object.create(null);j.r(a);var n={};e=e||[null,r({}),r([]),r(r)];for(var i=2&o&&t;("object"==typeof i||"function"==typeof i)&&!~e.indexOf(i);i=r(i))Object.getOwnPropertyNames(i).forEach(e=>n[e]=()=>t[e]);return n.default=()=>t,j.d(a,n),a},j.d=(e,r)=>{for(var t in r)j.o(r,t)&&!j.o(e,t)&&Object.defineProperty(e,t,{enumerable:!0,get:r[t]})},j.f={},j.e=e=>Promise.all(Object.keys(j.f).reduce((r,t)=>(j.f[t](e,r),r),[])),j.u=e=>e+".js",j.o=(e,r)=>Object.prototype.hasOwnProperty.call(e,r),t={},o="@ampath/esm-reports-app:",j.l=(e,r,a,n)=>{if(t[e])t[e].push(r);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")==e||p.getAttribute("data-webpack")==o+a){i=p;break}}i||(l=!0,(i=document.createElement("script")).charset="utf-8",j.nc&&i.setAttribute("nonce",j.nc),i.setAttribute("data-webpack",o+a),i.src=e),t[e]=[r];var f=(r,o)=>{i.onerror=i.onload=null,clearTimeout(d);var a=t[e];if(delete t[e],i.parentNode&&i.parentNode.removeChild(i),a&&a.forEach(e=>e(o)),r)return r(o)},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)}},j.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},(()=>{j.S={};var e={},r={};j.I=(t,o)=>{o||(o=[]);var a=r[t];if(a||(a=r[t]={}),!(o.indexOf(a)>=0)){if(o.push(a),e[t])return e[t];j.o(j.S,t)||(j.S[t]={});var n=j.S[t],i="@ampath/esm-reports-app",l=(e,r,t,o)=>{var a=n[e]=n[e]||{},l=a[r];(!l||!l.loaded&&(!o!=!l.eager?o:i>l.from))&&(a[r]={get:t,from:i,eager:!!o})},s=[];return"default"===t&&(l("@openmrs/esm-framework","9.0.3-pre.4482",()=>Promise.all([j.e(961),j.e(138),j.e(478),j.e(205),j.e(72),j.e(231),j.e(757),j.e(114)]).then(()=>()=>j(9205))),l("dayjs","1.11.20",()=>j.e(353).then(()=>()=>j(4353))),l("react-i18next","16.6.6",()=>Promise.all([j.e(478),j.e(311),j.e(72)]).then(()=>()=>j(3311))),l("react-router-dom","6.30.3",()=>Promise.all([j.e(961),j.e(282),j.e(72)]).then(()=>()=>j(282))),l("react","18.3.1",()=>j.e(540).then(()=>()=>j(6540))),l("rxjs","6.6.7",()=>j.e(184).then(()=>()=>j(3184)))),e[t]=s.length?Promise.all(s).then(()=>e[t]=1):1}}})(),(()=>{var e;globalThis.importScripts&&(e=globalThis.location+"");var r=globalThis.document;if(!e&&r&&(r.currentScript&&"SCRIPT"===r.currentScript.tagName.toUpperCase()&&(e=r.currentScript.src),!e)){var t=r.getElementsByTagName("script");if(t.length)for(var o=t.length-1;o>-1&&(!e||!/^http(s?):/.test(e));)e=t[o--].src}if(!e)throw new Error("Automatic publicPath is not supported in this browser");e=e.replace(/^blob:/,"").replace(/#.*$/,"").replace(/\?.*$/,"").replace(/\/[^\/]+$/,"/"),j.p=e})(),a=e=>{var r=e=>e.split(".").map(e=>+e==e?+e:e),t=/^([^-+]+)?(?:-([^+]+))?(?:\+(.+))?$/.exec(e),o=t[1]?r(t[1]):[];return t[2]&&(o.length++,o.push.apply(o,r(t[2]))),t[3]&&(o.push([]),o.push.apply(o,r(t[3]))),o},n=(e,r)=>{e=a(e),r=a(r);for(var t=0;;){if(t>=e.length)return t<r.length&&"u"!=(typeof r[t])[0];var o=e[t],n=(typeof o)[0];if(t>=r.length)return"u"==n;var i=r[t],l=(typeof i)[0];if(n!=l)return"o"==n&&"n"==l||"s"==l||"u"==n;if("o"!=n&&"u"!=n&&o!=i)return o<i;t++}},i=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 o=1,a=1;a<e.length;a++)o--,t+="u"==(typeof(l=e[a]))[0]?"-":(o>0?".":"")+(o=2,l);return t}var n=[];for(a=1;a<e.length;a++){var l=e[a];n.push(0===l?"not("+s()+")":1===l?"("+s()+" || "+s()+")":2===l?n.pop()+" "+n.pop():i(l))}return s();function s(){return n.pop().replace(/^\((.+)\)$/,"$1")}},l=(e,r)=>{if(0 in e){r=a(r);var t=e[0],o=t<0;o&&(t=-t-1);for(var n=0,i=1,s=!0;;i++,n++){var u,p,f=i<e.length?(typeof e[i])[0]:"";if(n>=r.length||"o"==(p=(typeof(u=r[n]))[0]))return!s||("u"==f?i>t&&!o:""==f!=o);if("u"==p){if(!s||"u"!=f)return!1}else if(s)if(f==p)if(i<=t){if(u!=e[i])return!1}else{if(o?u>e[i]:u<e[i])return!1;u!=e[i]&&(s=!1)}else if("s"!=f&&"n"!=f){if(o||i<=t)return!1;s=!1,i--}else{if(i<=t||p<f!=o)return!1;s=!1}else"s"!=f&&"n"!=f&&(s=!1,i--)}}var d=[],c=d.pop.bind(d);for(n=1;n<e.length;n++){var h=e[n];d.push(1==h?c()|c():2==h?c()&c():h?l(h,r):!c())}return!!c()},s=(e,r)=>e&&j.o(e,r),u=e=>(e.loaded=1,e.get()),p=e=>Object.keys(e).reduce((r,t)=>(e[t].eager&&(r[t]=e[t]),r),{}),f=(e,r,t)=>{var o=t?p(e[r]):e[r];return Object.keys(o).reduce((e,r)=>!e||!o[e].loaded&&n(e,r)?r:e,0)},d=(e,r,t,o)=>"Unsatisfied version "+t+" from "+(t&&e[r][t].from)+" of shared singleton module "+r+" (required "+i(o)+")",c=e=>{throw new Error(e)},h=e=>{"undefined"!=typeof console&&console.warn&&console.warn(e)},m=(e,r,t)=>t?t():((e,r)=>c("Shared module "+r+" doesn't exist in shared scope "+e))(e,r),v=(e=>function(r,t,o,a,n){var i=j.I(r);return i&&i.then&&!o?i.then(e.bind(e,r,j.S[r],t,!1,a,n)):e(r,j.S[r],t,o,a,n)})((e,r,t,o,a,n)=>{if(!s(r,t))return m(e,t,n);var i=f(r,t,o);return l(a,i)||h(d(r,t,i,a)),u(r[t][i])}),g={},b={6072:()=>v("default","react",!1,[1,18],()=>j.e(540).then(()=>()=>j(6540))),231:()=>v("default","dayjs",!1,[1,1],()=>j.e(353).then(()=>()=>j(4353))),2076:()=>v("default","react-i18next",!1,[1,16],()=>j.e(311).then(()=>()=>j(3311))),3083:()=>v("default","rxjs",!1,[1,6],()=>j.e(184).then(()=>()=>j(3184))),7114:()=>v("default","react-router-dom",!1,[1,6],()=>Promise.all([j.e(961),j.e(282)]).then(()=>()=>j(282))),2141:()=>v("default","@openmrs/esm-framework",!1,[0],()=>Promise.all([j.e(961),j.e(138),j.e(478),j.e(205),j.e(231),j.e(757)]).then(()=>()=>j(9205)))},y={72:[6072],114:[7114],231:[231],757:[2076,3083],812:[2141]},_={},j.f.consumes=(e,r)=>{j.o(y,e)&&y[e].forEach(e=>{if(j.o(g,e))return r.push(g[e]);if(!_[e]){var t=r=>{g[e]=0,j.m[e]=t=>{delete j.c[e],t.exports=r()}};_[e]=!0;var o=r=>{delete g[e],j.m[e]=t=>{throw delete j.c[e],r}};try{var a=b[e]();a.then?r.push(g[e]=a.then(t).catch(o)):t(a)}catch(e){o(e)}}})},(()=>{var e={462:0};j.f.j=(r,t)=>{var o=j.o(e,r)?e[r]:void 0;if(0!==o)if(o)t.push(o[2]);else if(/^(114|231|72|757)$/.test(r))e[r]=0;else{var a=new Promise((t,a)=>o=e[r]=[t,a]);t.push(o[2]=a);var n=j.p+j.u(r),i=new Error;j.l(n,t=>{if(j.o(e,r)&&(0!==(o=e[r])&&(e[r]=void 0),o)){var a=t&&("load"===t.type?"missing":t.type),n=t&&t.target&&t.target.src;i.message="Loading chunk "+r+" failed.\n("+a+": "+n+")",i.name="ChunkLoadError",i.type=a,i.request=n,o[1](i)}},"chunk-"+r,r)}};var r=(r,t)=>{var o,a,[n,i,l]=t,s=0;if(n.some(r=>0!==e[r])){for(o in i)j.o(i,o)&&(j.m[o]=i[o]);l&&l(j)}for(r&&r(t);s<n.length;s++)a=n[s],j.o(e,a)&&e[a]&&e[a][0](),e[a]=0},t=globalThis.webpackChunk_ampath_esm_reports_app=globalThis.webpackChunk_ampath_esm_reports_app||[];t.forEach(r.bind(null,0)),t.push=r.bind(null,t.push.bind(t))})(),j.nc=void 0;var P=j(2556);_ampath_esm_reports_app=P})();
|
|
@@ -5,26 +5,23 @@
|
|
|
5
5
|
"initial": false,
|
|
6
6
|
"entry": false,
|
|
7
7
|
"recorded": false,
|
|
8
|
-
"
|
|
9
|
-
"size": 1934211,
|
|
8
|
+
"size": 665123,
|
|
10
9
|
"sizes": {
|
|
11
|
-
"javascript":
|
|
10
|
+
"javascript": 665123
|
|
12
11
|
},
|
|
13
12
|
"names": [],
|
|
14
|
-
"idHints": [
|
|
15
|
-
"vendors"
|
|
16
|
-
],
|
|
13
|
+
"idHints": [],
|
|
17
14
|
"runtime": [
|
|
18
15
|
"@ampath/esm-reports-app",
|
|
19
16
|
"main"
|
|
20
17
|
],
|
|
21
18
|
"files": [
|
|
22
|
-
"
|
|
19
|
+
"51.js"
|
|
23
20
|
],
|
|
24
21
|
"auxiliaryFiles": [
|
|
25
|
-
"
|
|
22
|
+
"51.js.map"
|
|
26
23
|
],
|
|
27
|
-
"hash": "
|
|
24
|
+
"hash": "99915df42e569bad",
|
|
28
25
|
"childrenByOrder": {}
|
|
29
26
|
},
|
|
30
27
|
{
|
|
@@ -46,7 +43,7 @@
|
|
|
46
43
|
"55.js"
|
|
47
44
|
],
|
|
48
45
|
"auxiliaryFiles": [],
|
|
49
|
-
"hash": "
|
|
46
|
+
"hash": "a33bc5ac165a177c",
|
|
50
47
|
"childrenByOrder": {}
|
|
51
48
|
},
|
|
52
49
|
{
|
|
@@ -67,18 +64,17 @@
|
|
|
67
64
|
],
|
|
68
65
|
"files": [],
|
|
69
66
|
"auxiliaryFiles": [],
|
|
70
|
-
"hash": "
|
|
67
|
+
"hash": "ff7def32bdbd88a4",
|
|
71
68
|
"childrenByOrder": {}
|
|
72
69
|
},
|
|
73
70
|
{
|
|
74
|
-
"rendered":
|
|
71
|
+
"rendered": true,
|
|
75
72
|
"initial": false,
|
|
76
73
|
"entry": false,
|
|
77
74
|
"recorded": false,
|
|
78
|
-
"
|
|
79
|
-
"size": 42,
|
|
75
|
+
"size": 1914,
|
|
80
76
|
"sizes": {
|
|
81
|
-
"
|
|
77
|
+
"javascript": 1914
|
|
82
78
|
},
|
|
83
79
|
"names": [],
|
|
84
80
|
"idHints": [],
|
|
@@ -86,33 +82,32 @@
|
|
|
86
82
|
"@ampath/esm-reports-app",
|
|
87
83
|
"main"
|
|
88
84
|
],
|
|
89
|
-
"files": [
|
|
85
|
+
"files": [
|
|
86
|
+
"99.js"
|
|
87
|
+
],
|
|
90
88
|
"auxiliaryFiles": [],
|
|
91
|
-
"hash": "
|
|
89
|
+
"hash": "087ffabf924af840",
|
|
92
90
|
"childrenByOrder": {}
|
|
93
91
|
},
|
|
94
92
|
{
|
|
95
|
-
"rendered":
|
|
93
|
+
"rendered": false,
|
|
96
94
|
"initial": false,
|
|
97
95
|
"entry": false,
|
|
98
96
|
"recorded": false,
|
|
99
|
-
"
|
|
97
|
+
"reason": "reused as split chunk (cache group: default)",
|
|
98
|
+
"size": 42,
|
|
100
99
|
"sizes": {
|
|
101
|
-
"consume-shared": 42
|
|
102
|
-
"javascript": 3599
|
|
100
|
+
"consume-shared": 42
|
|
103
101
|
},
|
|
104
102
|
"names": [],
|
|
105
103
|
"idHints": [],
|
|
106
104
|
"runtime": [
|
|
107
|
-
"@ampath/esm-reports-app"
|
|
108
|
-
|
|
109
|
-
"files": [
|
|
110
|
-
"91.js"
|
|
111
|
-
],
|
|
112
|
-
"auxiliaryFiles": [
|
|
113
|
-
"91.js.map"
|
|
105
|
+
"@ampath/esm-reports-app",
|
|
106
|
+
"main"
|
|
114
107
|
],
|
|
115
|
-
"
|
|
108
|
+
"files": [],
|
|
109
|
+
"auxiliaryFiles": [],
|
|
110
|
+
"hash": "4edc611f1806d2da",
|
|
116
111
|
"childrenByOrder": {}
|
|
117
112
|
},
|
|
118
113
|
{
|
|
@@ -120,21 +115,26 @@
|
|
|
120
115
|
"initial": false,
|
|
121
116
|
"entry": false,
|
|
122
117
|
"recorded": false,
|
|
123
|
-
"
|
|
118
|
+
"reason": "split chunk (cache group: defaultVendors)",
|
|
119
|
+
"size": 2030697,
|
|
124
120
|
"sizes": {
|
|
125
|
-
"javascript":
|
|
121
|
+
"javascript": 2030697
|
|
126
122
|
},
|
|
127
123
|
"names": [],
|
|
128
|
-
"idHints": [
|
|
124
|
+
"idHints": [
|
|
125
|
+
"vendors"
|
|
126
|
+
],
|
|
129
127
|
"runtime": [
|
|
130
128
|
"@ampath/esm-reports-app",
|
|
131
129
|
"main"
|
|
132
130
|
],
|
|
133
131
|
"files": [
|
|
134
|
-
"
|
|
132
|
+
"138.js"
|
|
135
133
|
],
|
|
136
|
-
"auxiliaryFiles": [
|
|
137
|
-
|
|
134
|
+
"auxiliaryFiles": [
|
|
135
|
+
"138.js.map"
|
|
136
|
+
],
|
|
137
|
+
"hash": "7bfc46cd10cf9716",
|
|
138
138
|
"childrenByOrder": {}
|
|
139
139
|
},
|
|
140
140
|
{
|
|
@@ -161,7 +161,7 @@
|
|
|
161
161
|
"auxiliaryFiles": [
|
|
162
162
|
"184.js.map"
|
|
163
163
|
],
|
|
164
|
-
"hash": "
|
|
164
|
+
"hash": "57c0dc3f4837ece7",
|
|
165
165
|
"childrenByOrder": {}
|
|
166
166
|
},
|
|
167
167
|
{
|
|
@@ -183,54 +183,55 @@
|
|
|
183
183
|
"197.js"
|
|
184
184
|
],
|
|
185
185
|
"auxiliaryFiles": [],
|
|
186
|
-
"hash": "
|
|
186
|
+
"hash": "e7a396b85a7809fd",
|
|
187
187
|
"childrenByOrder": {}
|
|
188
188
|
},
|
|
189
189
|
{
|
|
190
|
-
"rendered":
|
|
190
|
+
"rendered": true,
|
|
191
191
|
"initial": false,
|
|
192
192
|
"entry": false,
|
|
193
193
|
"recorded": false,
|
|
194
|
-
"
|
|
194
|
+
"reason": "split chunk (cache group: defaultVendors)",
|
|
195
|
+
"size": 3719671,
|
|
195
196
|
"sizes": {
|
|
196
|
-
"
|
|
197
|
+
"javascript": 3719671
|
|
197
198
|
},
|
|
198
199
|
"names": [],
|
|
199
|
-
"idHints": [
|
|
200
|
+
"idHints": [
|
|
201
|
+
"vendors"
|
|
202
|
+
],
|
|
200
203
|
"runtime": [
|
|
201
204
|
"@ampath/esm-reports-app",
|
|
202
205
|
"main"
|
|
203
206
|
],
|
|
204
|
-
"files": [
|
|
205
|
-
|
|
206
|
-
|
|
207
|
+
"files": [
|
|
208
|
+
"205.js"
|
|
209
|
+
],
|
|
210
|
+
"auxiliaryFiles": [
|
|
211
|
+
"205.js.map"
|
|
212
|
+
],
|
|
213
|
+
"hash": "34a7f824903452e8",
|
|
207
214
|
"childrenByOrder": {}
|
|
208
215
|
},
|
|
209
216
|
{
|
|
210
|
-
"rendered":
|
|
217
|
+
"rendered": false,
|
|
211
218
|
"initial": false,
|
|
212
219
|
"entry": false,
|
|
213
220
|
"recorded": false,
|
|
214
|
-
"reason": "
|
|
215
|
-
"size":
|
|
221
|
+
"reason": "split chunk (cache group: default)",
|
|
222
|
+
"size": 42,
|
|
216
223
|
"sizes": {
|
|
217
|
-
"
|
|
224
|
+
"consume-shared": 42
|
|
218
225
|
},
|
|
219
226
|
"names": [],
|
|
220
|
-
"idHints": [
|
|
221
|
-
"vendors"
|
|
222
|
-
],
|
|
227
|
+
"idHints": [],
|
|
223
228
|
"runtime": [
|
|
224
229
|
"@ampath/esm-reports-app",
|
|
225
230
|
"main"
|
|
226
231
|
],
|
|
227
|
-
"files": [
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
"auxiliaryFiles": [
|
|
231
|
-
"255.js.map"
|
|
232
|
-
],
|
|
233
|
-
"hash": "c1a51035bb46b003",
|
|
232
|
+
"files": [],
|
|
233
|
+
"auxiliaryFiles": [],
|
|
234
|
+
"hash": "e5fb1b2e5c95d3a1",
|
|
234
235
|
"childrenByOrder": {}
|
|
235
236
|
},
|
|
236
237
|
{
|
|
@@ -239,9 +240,9 @@
|
|
|
239
240
|
"entry": false,
|
|
240
241
|
"recorded": false,
|
|
241
242
|
"reason": "reused as split chunk (cache group: defaultVendors)",
|
|
242
|
-
"size":
|
|
243
|
+
"size": 316104,
|
|
243
244
|
"sizes": {
|
|
244
|
-
"javascript":
|
|
245
|
+
"javascript": 316104
|
|
245
246
|
},
|
|
246
247
|
"names": [],
|
|
247
248
|
"idHints": [
|
|
@@ -257,7 +258,7 @@
|
|
|
257
258
|
"auxiliaryFiles": [
|
|
258
259
|
"282.js.map"
|
|
259
260
|
],
|
|
260
|
-
"hash": "
|
|
261
|
+
"hash": "41e975c5c256ebd8",
|
|
261
262
|
"childrenByOrder": {}
|
|
262
263
|
},
|
|
263
264
|
{
|
|
@@ -279,7 +280,7 @@
|
|
|
279
280
|
"300.js"
|
|
280
281
|
],
|
|
281
282
|
"auxiliaryFiles": [],
|
|
282
|
-
"hash": "
|
|
283
|
+
"hash": "10c6bcc90e438e61",
|
|
283
284
|
"childrenByOrder": {}
|
|
284
285
|
},
|
|
285
286
|
{
|
|
@@ -287,45 +288,26 @@
|
|
|
287
288
|
"initial": false,
|
|
288
289
|
"entry": false,
|
|
289
290
|
"recorded": false,
|
|
290
|
-
"
|
|
291
|
+
"reason": "reused as split chunk (cache group: defaultVendors)",
|
|
292
|
+
"size": 48317,
|
|
291
293
|
"sizes": {
|
|
292
|
-
"javascript":
|
|
294
|
+
"javascript": 48317
|
|
293
295
|
},
|
|
294
296
|
"names": [],
|
|
295
|
-
"idHints": [
|
|
296
|
-
|
|
297
|
-
"@ampath/esm-reports-app",
|
|
298
|
-
"main"
|
|
299
|
-
],
|
|
300
|
-
"files": [
|
|
301
|
-
"335.js"
|
|
297
|
+
"idHints": [
|
|
298
|
+
"vendors"
|
|
302
299
|
],
|
|
303
|
-
"auxiliaryFiles": [],
|
|
304
|
-
"hash": "51b4a9b32dce9eee",
|
|
305
|
-
"childrenByOrder": {}
|
|
306
|
-
},
|
|
307
|
-
{
|
|
308
|
-
"rendered": true,
|
|
309
|
-
"initial": false,
|
|
310
|
-
"entry": false,
|
|
311
|
-
"recorded": false,
|
|
312
|
-
"size": 7160,
|
|
313
|
-
"sizes": {
|
|
314
|
-
"javascript": 7160
|
|
315
|
-
},
|
|
316
|
-
"names": [],
|
|
317
|
-
"idHints": [],
|
|
318
300
|
"runtime": [
|
|
319
301
|
"@ampath/esm-reports-app",
|
|
320
302
|
"main"
|
|
321
303
|
],
|
|
322
304
|
"files": [
|
|
323
|
-
"
|
|
305
|
+
"311.js"
|
|
324
306
|
],
|
|
325
307
|
"auxiliaryFiles": [
|
|
326
|
-
"
|
|
308
|
+
"311.js.map"
|
|
327
309
|
],
|
|
328
|
-
"hash": "
|
|
310
|
+
"hash": "7b87938126ac7f3e",
|
|
329
311
|
"childrenByOrder": {}
|
|
330
312
|
},
|
|
331
313
|
{
|
|
@@ -333,9 +315,9 @@
|
|
|
333
315
|
"initial": false,
|
|
334
316
|
"entry": false,
|
|
335
317
|
"recorded": false,
|
|
336
|
-
"size":
|
|
318
|
+
"size": 1603,
|
|
337
319
|
"sizes": {
|
|
338
|
-
"javascript":
|
|
320
|
+
"javascript": 1603
|
|
339
321
|
},
|
|
340
322
|
"names": [],
|
|
341
323
|
"idHints": [],
|
|
@@ -344,12 +326,10 @@
|
|
|
344
326
|
"main"
|
|
345
327
|
],
|
|
346
328
|
"files": [
|
|
347
|
-
"
|
|
348
|
-
],
|
|
349
|
-
"auxiliaryFiles": [
|
|
350
|
-
"389.js.map"
|
|
329
|
+
"335.js"
|
|
351
330
|
],
|
|
352
|
-
"
|
|
331
|
+
"auxiliaryFiles": [],
|
|
332
|
+
"hash": "fbe02511e1e66e2d",
|
|
353
333
|
"childrenByOrder": {}
|
|
354
334
|
},
|
|
355
335
|
{
|
|
@@ -357,9 +337,9 @@
|
|
|
357
337
|
"initial": false,
|
|
358
338
|
"entry": false,
|
|
359
339
|
"recorded": false,
|
|
360
|
-
"size":
|
|
340
|
+
"size": 7160,
|
|
361
341
|
"sizes": {
|
|
362
|
-
"javascript":
|
|
342
|
+
"javascript": 7160
|
|
363
343
|
},
|
|
364
344
|
"names": [],
|
|
365
345
|
"idHints": [],
|
|
@@ -368,12 +348,12 @@
|
|
|
368
348
|
"main"
|
|
369
349
|
],
|
|
370
350
|
"files": [
|
|
371
|
-
"
|
|
351
|
+
"353.js"
|
|
372
352
|
],
|
|
373
353
|
"auxiliaryFiles": [
|
|
374
|
-
"
|
|
354
|
+
"353.js.map"
|
|
375
355
|
],
|
|
376
|
-
"hash": "
|
|
356
|
+
"hash": "1afb2778be0db00c",
|
|
377
357
|
"childrenByOrder": {}
|
|
378
358
|
},
|
|
379
359
|
{
|
|
@@ -381,11 +361,11 @@
|
|
|
381
361
|
"initial": true,
|
|
382
362
|
"entry": true,
|
|
383
363
|
"recorded": false,
|
|
384
|
-
"size":
|
|
364
|
+
"size": 20603,
|
|
385
365
|
"sizes": {
|
|
386
366
|
"javascript": 42,
|
|
387
367
|
"share-init": 252,
|
|
388
|
-
"runtime":
|
|
368
|
+
"runtime": 20309
|
|
389
369
|
},
|
|
390
370
|
"names": [
|
|
391
371
|
"@ampath/esm-reports-app"
|
|
@@ -400,7 +380,7 @@
|
|
|
400
380
|
"auxiliaryFiles": [
|
|
401
381
|
"ampath-esm-reports-app.js.map"
|
|
402
382
|
],
|
|
403
|
-
"hash": "
|
|
383
|
+
"hash": "c111f6deea10e329",
|
|
404
384
|
"childrenByOrder": {}
|
|
405
385
|
},
|
|
406
386
|
{
|
|
@@ -408,23 +388,26 @@
|
|
|
408
388
|
"initial": false,
|
|
409
389
|
"entry": false,
|
|
410
390
|
"recorded": false,
|
|
411
|
-
"
|
|
391
|
+
"reason": "split chunk (cache group: defaultVendors)",
|
|
392
|
+
"size": 85041,
|
|
412
393
|
"sizes": {
|
|
413
|
-
"javascript":
|
|
394
|
+
"javascript": 85041
|
|
414
395
|
},
|
|
415
396
|
"names": [],
|
|
416
|
-
"idHints": [
|
|
397
|
+
"idHints": [
|
|
398
|
+
"vendors"
|
|
399
|
+
],
|
|
417
400
|
"runtime": [
|
|
418
401
|
"@ampath/esm-reports-app",
|
|
419
402
|
"main"
|
|
420
403
|
],
|
|
421
404
|
"files": [
|
|
422
|
-
"
|
|
405
|
+
"478.js"
|
|
423
406
|
],
|
|
424
407
|
"auxiliaryFiles": [
|
|
425
|
-
"
|
|
408
|
+
"478.js.map"
|
|
426
409
|
],
|
|
427
|
-
"hash": "
|
|
410
|
+
"hash": "cdd065d1f6cc96b9",
|
|
428
411
|
"childrenByOrder": {}
|
|
429
412
|
},
|
|
430
413
|
{
|
|
@@ -448,7 +431,7 @@
|
|
|
448
431
|
"auxiliaryFiles": [
|
|
449
432
|
"540.js.map"
|
|
450
433
|
],
|
|
451
|
-
"hash": "
|
|
434
|
+
"hash": "e762958233ddabae",
|
|
452
435
|
"childrenByOrder": {}
|
|
453
436
|
},
|
|
454
437
|
{
|
|
@@ -456,36 +439,32 @@
|
|
|
456
439
|
"initial": false,
|
|
457
440
|
"entry": false,
|
|
458
441
|
"recorded": false,
|
|
459
|
-
"
|
|
460
|
-
"size": 3697912,
|
|
442
|
+
"size": 1385,
|
|
461
443
|
"sizes": {
|
|
462
|
-
"javascript":
|
|
444
|
+
"javascript": 1385
|
|
463
445
|
},
|
|
464
446
|
"names": [],
|
|
465
|
-
"idHints": [
|
|
466
|
-
"vendors"
|
|
467
|
-
],
|
|
447
|
+
"idHints": [],
|
|
468
448
|
"runtime": [
|
|
469
449
|
"@ampath/esm-reports-app",
|
|
470
450
|
"main"
|
|
471
451
|
],
|
|
472
452
|
"files": [
|
|
473
|
-
"
|
|
474
|
-
],
|
|
475
|
-
"auxiliaryFiles": [
|
|
476
|
-
"557.js.map"
|
|
453
|
+
"652.js"
|
|
477
454
|
],
|
|
478
|
-
"
|
|
455
|
+
"auxiliaryFiles": [],
|
|
456
|
+
"hash": "38c7cb6254f8f614",
|
|
479
457
|
"childrenByOrder": {}
|
|
480
458
|
},
|
|
481
459
|
{
|
|
482
|
-
"rendered":
|
|
460
|
+
"rendered": false,
|
|
483
461
|
"initial": false,
|
|
484
462
|
"entry": false,
|
|
485
463
|
"recorded": false,
|
|
486
|
-
"
|
|
464
|
+
"reason": "reused as split chunk (cache group: default)",
|
|
465
|
+
"size": 84,
|
|
487
466
|
"sizes": {
|
|
488
|
-
"
|
|
467
|
+
"consume-shared": 84
|
|
489
468
|
},
|
|
490
469
|
"names": [],
|
|
491
470
|
"idHints": [],
|
|
@@ -493,11 +472,9 @@
|
|
|
493
472
|
"@ampath/esm-reports-app",
|
|
494
473
|
"main"
|
|
495
474
|
],
|
|
496
|
-
"files": [
|
|
497
|
-
"652.js"
|
|
498
|
-
],
|
|
475
|
+
"files": [],
|
|
499
476
|
"auxiliaryFiles": [],
|
|
500
|
-
"hash": "
|
|
477
|
+
"hash": "971c57ecd7d42ea1",
|
|
501
478
|
"childrenByOrder": {}
|
|
502
479
|
},
|
|
503
480
|
{
|
|
@@ -505,12 +482,12 @@
|
|
|
505
482
|
"initial": true,
|
|
506
483
|
"entry": true,
|
|
507
484
|
"recorded": false,
|
|
508
|
-
"size":
|
|
485
|
+
"size": 22945,
|
|
509
486
|
"sizes": {
|
|
510
|
-
"consume-shared":
|
|
511
|
-
"javascript":
|
|
487
|
+
"consume-shared": 126,
|
|
488
|
+
"javascript": 1827,
|
|
512
489
|
"share-init": 252,
|
|
513
|
-
"runtime":
|
|
490
|
+
"runtime": 20740
|
|
514
491
|
},
|
|
515
492
|
"names": [
|
|
516
493
|
"main"
|
|
@@ -525,7 +502,7 @@
|
|
|
525
502
|
"auxiliaryFiles": [
|
|
526
503
|
"main.js.map"
|
|
527
504
|
],
|
|
528
|
-
"hash": "
|
|
505
|
+
"hash": "07d2a55b6d6ee89f",
|
|
529
506
|
"childrenByOrder": {}
|
|
530
507
|
},
|
|
531
508
|
{
|
|
@@ -533,26 +510,23 @@
|
|
|
533
510
|
"initial": false,
|
|
534
511
|
"entry": false,
|
|
535
512
|
"recorded": false,
|
|
536
|
-
"
|
|
537
|
-
"size": 137481,
|
|
513
|
+
"size": 1869,
|
|
538
514
|
"sizes": {
|
|
539
|
-
"
|
|
515
|
+
"consume-shared": 42,
|
|
516
|
+
"javascript": 1827
|
|
540
517
|
},
|
|
541
518
|
"names": [],
|
|
542
|
-
"idHints": [
|
|
543
|
-
"vendors"
|
|
544
|
-
],
|
|
519
|
+
"idHints": [],
|
|
545
520
|
"runtime": [
|
|
546
|
-
"@ampath/esm-reports-app"
|
|
547
|
-
"main"
|
|
521
|
+
"@ampath/esm-reports-app"
|
|
548
522
|
],
|
|
549
523
|
"files": [
|
|
550
|
-
"
|
|
524
|
+
"812.js"
|
|
551
525
|
],
|
|
552
526
|
"auxiliaryFiles": [
|
|
553
|
-
"
|
|
527
|
+
"812.js.map"
|
|
554
528
|
],
|
|
555
|
-
"hash": "
|
|
529
|
+
"hash": "c5bfbdad9b2b8d58",
|
|
556
530
|
"childrenByOrder": {}
|
|
557
531
|
},
|
|
558
532
|
{
|
|
@@ -560,23 +534,26 @@
|
|
|
560
534
|
"initial": false,
|
|
561
535
|
"entry": false,
|
|
562
536
|
"recorded": false,
|
|
563
|
-
"
|
|
537
|
+
"reason": "split chunk (cache group: defaultVendors)",
|
|
538
|
+
"size": 137481,
|
|
564
539
|
"sizes": {
|
|
565
|
-
"javascript":
|
|
540
|
+
"javascript": 137481
|
|
566
541
|
},
|
|
567
542
|
"names": [],
|
|
568
|
-
"idHints": [
|
|
543
|
+
"idHints": [
|
|
544
|
+
"vendors"
|
|
545
|
+
],
|
|
569
546
|
"runtime": [
|
|
570
547
|
"@ampath/esm-reports-app",
|
|
571
548
|
"main"
|
|
572
549
|
],
|
|
573
550
|
"files": [
|
|
574
|
-
"
|
|
551
|
+
"961.js"
|
|
575
552
|
],
|
|
576
553
|
"auxiliaryFiles": [
|
|
577
|
-
"
|
|
554
|
+
"961.js.map"
|
|
578
555
|
],
|
|
579
|
-
"hash": "
|
|
556
|
+
"hash": "6aa9f5e1bfcd7546",
|
|
580
557
|
"childrenByOrder": {}
|
|
581
558
|
}
|
|
582
559
|
]
|